mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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
This commit is contained in:
parent
14f3312865
commit
c277bd4d2e
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user