From b67bf4b761b3d73c32c3e6662c6626e30ff5e2cb Mon Sep 17 00:00:00 2001 From: Christopher Lam Date: Sun, 22 Nov 2020 21:21:58 +0800 Subject: [PATCH] [c-interface] deprecate gnc:make-string-database --- libgnucash/app-utils/c-interface.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libgnucash/app-utils/c-interface.scm b/libgnucash/app-utils/c-interface.scm index 486b4d442f..a2bb2a0122 100644 --- a/libgnucash/app-utils/c-interface.scm +++ b/libgnucash/app-utils/c-interface.scm @@ -78,6 +78,8 @@ ;; translated with gettext. (define (gnc:make-string-database) (define string-hash (make-hash-table)) + (issue-deprecation-warning "gnc:make-string-database is deprecate. record \ +translatable strings with N_ and G_.") (lambda args (match args (('lookup key) (G_ (hash-ref string-hash key)))