[Gnucash-changes] Identified and fixed several places with
untranslated strings.
Christian Stimming
cstim at cvs.gnucash.org
Sat Nov 13 07:43:26 EST 2004
Log Message:
-----------
Identified and fixed several places with
untranslated strings.
2004-11-13 Christian Stimming <stimming at tuhh.de>
* po/POTFILES.in, src/report/report-gnome/window-report.c,
src/scm/main-window.scm: Identified and fixed several places with
untranslated strings.
Tags:
----
gnucash-1-8-branch
Modified Files:
--------------
gnucash:
ChangeLog
gnucash/po:
POTFILES.in
gnucash/src/report/report-gnome:
window-report.c
gnucash/src/scm:
main-window.scm
Revision Data
-------------
Index: ChangeLog
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/ChangeLog,v
retrieving revision 1.1461.2.368
retrieving revision 1.1461.2.369
diff -LChangeLog -LChangeLog -u -r1.1461.2.368 -r1.1461.2.369
--- ChangeLog
+++ ChangeLog
@@ -1,3 +1,9 @@
+2004-11-13 Christian Stimming <stimming at tuhh.de>
+
+ * po/POTFILES.in, src/report/report-gnome/window-report.c,
+ src/scm/main-window.scm: Identified and fixed several places with
+ untranslated strings.
+
2004-11-10 Christian Stimming <stimming at tuhh.de>
* src/engine/gnc-commodity.c, src/engine/iso-4217-currencies.scm:
Index: window-report.c
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/src/report/report-gnome/window-report.c,v
retrieving revision 1.15.2.3
retrieving revision 1.15.2.4
diff -Lsrc/report/report-gnome/window-report.c -Lsrc/report/report-gnome/window-report.c -u -r1.15.2.3 -r1.15.2.4
--- src/report/report-gnome/window-report.c
+++ src/report/report-gnome/window-report.c
@@ -1111,7 +1111,8 @@
if (ptr != SCM_BOOL_F) {
title = gh_scm2newstr(ptr, NULL);
}
- prm->win = gnc_options_dialog_new(TRUE, title);
+ /* Don't forget to translate the window title */
+ prm->win = gnc_options_dialog_new(TRUE, _(title));
if (title) {
free(title);
Index: POTFILES.in
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/po/POTFILES.in,v
retrieving revision 1.87.2.3
retrieving revision 1.87.2.4
diff -Lpo/POTFILES.in -Lpo/POTFILES.in -u -r1.87.2.3 -r1.87.2.4
--- po/POTFILES.in
+++ po/POTFILES.in
@@ -359,6 +359,7 @@
src/import-export/hbci/gnc-hbci-gettrans.c
src/import-export/hbci/dialog-daterange.c
src/import-export/hbci/gnc-hbci-transfer.c
+src/import-export/log-replay/gnc-log-replay.c
src/import-export/ofx/test/test-link.c
src/import-export/ofx/gnc-ofx-import.c
src/import-export/ofx/gncmod-ofx-import.c
Index: main-window.scm
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/src/scm/main-window.scm,v
retrieving revision 1.22.2.7
retrieving revision 1.22.2.8
diff -Lsrc/scm/main-window.scm -Lsrc/scm/main-window.scm -u -r1.22.2.7 -r1.22.2.8
--- src/scm/main-window.scm
+++ src/scm/main-window.scm
@@ -209,7 +209,7 @@
(gnc:book-kvp-changed book))
(gnc:kvp-option-dialog gnc:id-book
- slots "Book Options"
+ slots (_ "Book Options")
changed_cb)))))
(gnc:add-extension (gnc:make-separator (list "Main" "_File" "_Print")))
)
More information about the gnucash-changes
mailing list