From c277bd4d2ea9678ba96b86cb099bb706003a183f Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Fri, 23 Dec 2005 21:34:35 +0000 Subject: [PATCH] And more string i18n cleanup. Dont mark a developer test file for translation -- will only confuse translators. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12178 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/report/utility-reports/test-graphing.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/report/utility-reports/test-graphing.scm b/src/report/utility-reports/test-graphing.scm index cb861b8515..63b123de4c 100644 --- a/src/report/utility-reports/test-graphing.scm +++ b/src/report/utility-reports/test-graphing.scm @@ -78,14 +78,14 @@ (let ((document (gnc:make-html-document))) - (gnc:html-document-set-title! document (_ "Graphs")) + (gnc:html-document-set-title! document "Graphs") (gnc:html-document-add-object! document (gnc:make-html-text (gnc:html-markup-p (gnc:html-markup/format - (_ "Sample graphs:"))))) + "Sample graphs:")))) (gnc:html-document-add-object! document @@ -110,7 +110,7 @@ (gnc:html-document-add-object! document (gnc:make-html-text - (gnc:html-markup-p (_ "Done.")))) + (gnc:html-markup-p "Done."))) document ) @@ -125,15 +125,15 @@ ;; The name of this report. This will be used, among other things, ;; for making its menu item in the main menu. You need to use the ;; untranslated value here! - 'name (N_ "Test Graphing") + 'name "Test Graphing" ;; The name in the menu ;; (only necessary if it differs from the name) - 'menu-name (N_ "Sample graphs.") + 'menu-name "Sample graphs." ;; A tip that is used to provide additional information about the ;; report to the user. - 'menu-tip (N_ "Sample graphs.") + 'menu-tip "Sample graphs." ;; A path describing where to put the report in the menu system. ;; In this case, it's going under the utility menu.