[Gnucash-changes] r12178 - gnucash/trunk/src/report/utility-reports - And more string i18n cleanup. Dont mark a developer test file for translation -- will only confuse translators.

Christian Stimming cstim at cvs.gnucash.org
Fri Dec 23 16:34:35 EST 2005


Author: cstim
Date: 2005-12-23 16:34:35 -0500 (Fri, 23 Dec 2005)
New Revision: 12178
Trac: http://svn.gnucash.org/trac/changeset/12178

Modified:
   gnucash/trunk/src/report/utility-reports/test-graphing.scm
Log:
And more string i18n cleanup. Dont mark a developer test file for translation -- will only confuse translators.

Modified: gnucash/trunk/src/report/utility-reports/test-graphing.scm
===================================================================
--- gnucash/trunk/src/report/utility-reports/test-graphing.scm	2005-12-23 21:24:56 UTC (rev 12177)
+++ gnucash/trunk/src/report/utility-reports/test-graphing.scm	2005-12-23 21:34:35 UTC (rev 12178)
@@ -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.



More information about the gnucash-changes mailing list