[Gnucash-changes] r14493 - gnucash/trunk - String fixes that have been delayed due to the string freeze.

Andreas Köhler andi5 at cvs.gnucash.org
Thu Jul 13 18:58:56 EDT 2006


Author: andi5
Date: 2006-07-13 18:58:55 -0400 (Thu, 13 Jul 2006)
New Revision: 14493
Trac: http://svn.gnucash.org/trac/changeset/14493

Modified:
   gnucash/trunk/ChangeLog
   gnucash/trunk/doc/tip_of_the_day.list.in
   gnucash/trunk/lib/libqof/backend/file/qsf-backend.c
   gnucash/trunk/src/gnome-search/search.glade
   gnucash/trunk/src/gnome-utils/druid-gnc-xml-import.c
   gnucash/trunk/src/gnome-utils/glade/preferences.glade
   gnucash/trunk/src/gnome-utils/gnc-file.c
   gnucash/trunk/src/gnome/gnc-plugin-page-account-tree.c
   gnucash/trunk/src/gnome/gnc-plugin-page-register.c
   gnucash/trunk/src/gnome/schemas/apps_gnucash_general.schemas.in
   gnucash/trunk/src/import-export/import-provider-format.glade
   gnucash/trunk/src/report/report-system/report.scm
Log:
String fixes that have been delayed due to the string freeze.


Modified: gnucash/trunk/ChangeLog
===================================================================
--- gnucash/trunk/ChangeLog	2006-07-13 21:37:59 UTC (rev 14492)
+++ gnucash/trunk/ChangeLog	2006-07-13 22:58:55 UTC (rev 14493)
@@ -1,5 +1,18 @@
 2006-07-13  Andreas Köhler  <andi5.py at gmx.net>
 
+	* doc/tip_of_the_day.list.in:
+	* lib/libqof/backend/file/qsf-backend.c:
+	* src/gnome-search/search.glade:
+	* src/gnome-utils/druid-gnc-xml-import.c:
+	* src/gnome-utils/glade/preferences.glade:
+	* src/gnome-utils/gnc-file.c:
+	* src/gnome/schemas/apps_gnucash_general.schemas.in:
+	* src/gnome/gnc-plugin-page-account-tree.c:
+	* src/gnome/gnc-plugin-page-register.c:
+	* src/import-export/import-provider-format.glade:
+	* src/report/report-system/report.scm: String fixes that have
+	  been delayed due to the string freeze.
+
 	* src/gnome/glade/account.glade: In the account dialog, do not
 	  expand the upper left entries when the window is resized.
 	  Automatic scrollbars for the notes field.

Modified: gnucash/trunk/doc/tip_of_the_day.list.in
===================================================================
--- gnucash/trunk/doc/tip_of_the_day.list.in	2006-07-13 21:37:59 UTC (rev 14492)
+++ gnucash/trunk/doc/tip_of_the_day.list.in	2006-07-13 22:58:55 UTC (rev 14493)
@@ -30,7 +30,7 @@
 
  N_( "To enter multiple-split transactions such as a paycheck with \
 multiple deductions, click the Split button in the tool bar. \
-Alternatively, in the View -> Style menu, you can choose the register \
+Alternatively, in the View menu, you can choose the register \
 style Auto-Split Ledger or Transaction Journal.")
 
  N_( "As you enter amounts in the register, you can use the GnuCash \

Modified: gnucash/trunk/lib/libqof/backend/file/qsf-backend.c
===================================================================
--- gnucash/trunk/lib/libqof/backend/file/qsf-backend.c	2006-07-13 21:37:59 UTC (rev 14492)
+++ gnucash/trunk/lib/libqof/backend/file/qsf-backend.c	2006-07-13 22:58:55 UTC (rev 14493)
@@ -117,9 +117,9 @@
 	g_free(option);
 	option = g_new0(QofBackendOption, 1);
 	option->option_name = QSF_ENCODING;
-	option->description = _("Encoding string to use when writing the XML file.");
+	option->description = _("String encoding to use when writing the XML file.");
 	option->tooltip = _("QSF defaults to UTF-8. Other encodings are supported by "
-			"passing the encoding string in this option.");
+			"passing the string encoding in this option.");
 	option->type = KVP_TYPE_STRING;
 	option->value = (gpointer)params->encoding;
 	qof_backend_prepare_option(be, option);

Modified: gnucash/trunk/src/gnome/gnc-plugin-page-account-tree.c
===================================================================
--- gnucash/trunk/src/gnome/gnc-plugin-page-account-tree.c	2006-07-13 21:37:59 UTC (rev 14492)
+++ gnucash/trunk/src/gnome/gnc-plugin-page-account-tree.c	2006-07-13 22:58:55 UTC (rev 14493)
@@ -188,7 +188,7 @@
 	{ "ScrubAction", NULL, N_("Check & Repair A_ccount"), NULL,
 	  N_("Check for and repair unbalanced transactions and orphan splits " "in this account"),
 	  G_CALLBACK (gnc_plugin_page_account_tree_cmd_scrub) },
-	{ "ScrubSubAction", NULL, N_("Check & Repair Su_baccount"), NULL,
+	{ "ScrubSubAction", NULL, N_("Check & Repair Su_baccounts"), NULL,
 	  N_("Check for and repair unbalanced transactions and orphan splits "
              "in this account and its subaccounts"),
 	  G_CALLBACK (gnc_plugin_page_account_tree_cmd_scrub_sub) },

Modified: gnucash/trunk/src/gnome/gnc-plugin-page-register.c
===================================================================
--- gnucash/trunk/src/gnome/gnc-plugin-page-register.c	2006-07-13 21:37:59 UTC (rev 14492)
+++ gnucash/trunk/src/gnome/gnc-plugin-page-register.c	2006-07-13 22:58:55 UTC (rev 14493)
@@ -241,7 +241,7 @@
 	  N_("Move to the blank transaction at the bottom of the register"),
 	  G_CALLBACK (gnc_plugin_page_register_cmd_blank_transaction) },
 	{ "EditExchangeRateAction", NULL, N_("Edit E_xchange Rate"), NULL,
-	  N_("Exit the exchange rate for the current transaction"),
+	  N_("Edit the exchange rate for the current transaction"),
 	  G_CALLBACK (gnc_plugin_page_register_cmd_exchange_rate) },
 	{ "JumpTransactionAction", GNC_STOCK_JUMP_TO, N_("_Jump"), NULL,
 	  N_("Jump to the corresponding transaction in the other account"),

Modified: gnucash/trunk/src/gnome/schemas/apps_gnucash_general.schemas.in
===================================================================
--- gnucash/trunk/src/gnome/schemas/apps_gnucash_general.schemas.in	2006-07-13 21:37:59 UTC (rev 14492)
+++ gnucash/trunk/src/gnome/schemas/apps_gnucash_general.schemas.in	2006-07-13 22:58:55 UTC (rev 14493)
@@ -335,7 +335,7 @@
       <locale name="C">
         <short>Show horizontal borders in a register</short>
         <long>
-	 Show horizontal borders between cells in a register.  If active
+	 Show horizontal borders between rows in a register.  If active
 	 the border between cells will be indicated with a heavy line.
 	 Otherwise the border between cells will not be marked.
 	</long>
@@ -351,7 +351,7 @@
       <locale name="C">
         <short>Show vertical borders in a register</short>
         <long>
-	 Show vertical borders between cells in a register.  If active
+	 Show vertical borders between columns in a register.  If active
 	 the border between cells will be indicated with a heavy line.
 	 Otherwise the border between cells will not be marked.
 	</long>

Modified: gnucash/trunk/src/gnome-search/search.glade
===================================================================
--- gnucash/trunk/src/gnome-search/search.glade	2006-07-13 21:37:59 UTC (rev 14492)
+++ gnucash/trunk/src/gnome-search/search.glade	2006-07-13 22:58:55 UTC (rev 14493)
@@ -77,7 +77,7 @@
 		      <child>
 			<widget class="GtkLabel" id="label848">
 			  <property name="visible">True</property>
-			  <property name="label" translatable="yes">_New item ...</property>
+			  <property name="label" translatable="yes">_New item...</property>
 			  <property name="use_underline">True</property>
 			  <property name="use_markup">False</property>
 			  <property name="justify">GTK_JUSTIFY_LEFT</property>

Modified: gnucash/trunk/src/gnome-utils/druid-gnc-xml-import.c
===================================================================
--- gnucash/trunk/src/gnome-utils/druid-gnc-xml-import.c	2006-07-13 21:37:59 UTC (rev 14492)
+++ gnucash/trunk/src/gnome-utils/druid-gnc-xml-import.c	2006-07-13 22:58:55 UTC (rev 14493)
@@ -689,7 +689,7 @@
   qof_session_begin (session, data->filename, TRUE, FALSE);
   io_err = qof_session_get_error (session);
   if (io_err != ERR_BACKEND_NO_ERR) {
-    message = _("The file could not be reopen.");
+    message = _("The file could not be reopened.");
     goto cleanup_parse_file;
   }
 
@@ -708,7 +708,7 @@
     goto cleanup_parse_file;
   } else if (io_err != ERR_FILEIO_NO_ENCODING) {
     /* another error, cannot handle this here */
-    message = _("The file could not be reopen.");
+    message = _("The file could not be reopened.");
     goto cleanup_parse_file;
   }
 

Modified: gnucash/trunk/src/gnome-utils/glade/preferences.glade
===================================================================
--- gnucash/trunk/src/gnome-utils/glade/preferences.glade	2006-07-13 21:37:59 UTC (rev 14492)
+++ gnucash/trunk/src/gnome-utils/glade/preferences.glade	2006-07-13 22:58:55 UTC (rev 14493)
@@ -978,7 +978,7 @@
 	      <child>
 		<widget class="GtkEntry" id="gconf/general/account_separator">
 		  <property name="visible">True</property>
-		  <property name="tooltip" translatable="yes">The character that will be used between components of an account name.  Legal values are any single non-alphanumeric unicode character, or any of the following strings: &quot;colon&quot; &quot;slash&quot;, &quot;backslash&quot;, &quot;dash&quot; and &quot;period&quot;.</property>
+		  <property name="tooltip" translatable="yes">The character that will be used between components of an account name.  A legal value is any single character except letters and numbers, or any of the following strings: &quot;colon&quot; &quot;slash&quot;, &quot;backslash&quot;, &quot;dash&quot; and &quot;period&quot;.</property>
 		  <property name="can_focus">True</property>
 		  <property name="editable">True</property>
 		  <property name="visibility">True</property>
@@ -1180,7 +1180,7 @@
 	      <child>
 		<widget class="GtkLabel" id="label101">
 		  <property name="visible">True</property>
-		  <property name="label" translatable="yes">31.07.05</property>
+		  <property name="label" translatable="yes">31.07.2005</property>
 		  <property name="use_underline">False</property>
 		  <property name="use_markup">False</property>
 		  <property name="justify">GTK_JUSTIFY_LEFT</property>
@@ -1204,7 +1204,7 @@
 	      <child>
 		<widget class="GtkLabel" id="label100">
 		  <property name="visible">True</property>
-		  <property name="label" translatable="yes">31/07/05</property>
+		  <property name="label" translatable="yes">31/07/2005</property>
 		  <property name="use_underline">False</property>
 		  <property name="use_markup">False</property>
 		  <property name="justify">GTK_JUSTIFY_LEFT</property>
@@ -1228,7 +1228,7 @@
 	      <child>
 		<widget class="GtkLabel" id="label99">
 		  <property name="visible">True</property>
-		  <property name="label" translatable="yes">07/31/05</property>
+		  <property name="label" translatable="yes">07/31/2005</property>
 		  <property name="use_underline">False</property>
 		  <property name="use_markup">False</property>
 		  <property name="justify">GTK_JUSTIFY_LEFT</property>
@@ -1300,7 +1300,7 @@
 	      <child>
 		<widget class="GtkRadioButton" id="gconf/general/date_format/ce">
 		  <property name="visible">True</property>
-		  <property name="tooltip" translatable="yes">Use the date format comon in continental Europe.</property>
+		  <property name="tooltip" translatable="yes">Use the date format common in continental Europe.</property>
 		  <property name="can_focus">True</property>
 		  <property name="label" translatable="yes">_Europe:</property>
 		  <property name="use_underline">True</property>
@@ -3078,9 +3078,9 @@
 	      <child>
 		<widget class="GtkRadioButton" id="gconf/general/toolbar_style/both_horiz">
 		  <property name="visible">True</property>
-		  <property name="tooltip" translatable="yes">Display toolbar items with the text label beside the icon.  Labels are only shown for the most frequently used items.</property>
+		  <property name="tooltip" translatable="yes">Display toolbar items with the text label beside the icon.  Labels are only shown for the most important items.</property>
 		  <property name="can_focus">True</property>
-		  <property name="label" translatable="yes">Text besi_de icons</property>
+		  <property name="label" translatable="yes">Priority text besi_de icons</property>
 		  <property name="use_underline">True</property>
 		  <property name="relief">GTK_RELIEF_NORMAL</property>
 		  <property name="focus_on_click">True</property>

Modified: gnucash/trunk/src/gnome-utils/gnc-file.c
===================================================================
--- gnucash/trunk/src/gnome-utils/gnc-file.c	2006-07-13 21:37:59 UTC (rev 14492)
+++ gnucash/trunk/src/gnome-utils/gnc-file.c	2006-07-13 22:58:55 UTC (rev 14493)
@@ -437,7 +437,7 @@
       break;
 
     case ERR_FILEIO_WRITE_ERROR:
-      fmt = _("Could not write to file %s Check that you have "
+      fmt = _("Could not write to file %s.  Check that you have "
               "permission to write to this file and that "
               "there is sufficient space to create it.");
       gnc_error_dialog(parent, fmt, newfile);

Modified: gnucash/trunk/src/import-export/import-provider-format.glade
===================================================================
--- gnucash/trunk/src/import-export/import-provider-format.glade	2006-07-13 21:37:59 UTC (rev 14492)
+++ gnucash/trunk/src/import-export/import-provider-format.glade	2006-07-13 22:58:55 UTC (rev 14493)
@@ -38,7 +38,7 @@
 	      <property name="visible">True</property>
 	      <property name="label" translatable="yes">The QIF file format does not specify which order the day, month, and year components of a date are printed.  In most cases, it is possible to automatically determine which format is in use in a particular file. However, in the file you have just imported there exist more than one possible format that fits the data.  
 
-Please select a date format for the file.  QIF files created by European software are likely  to be in &quot;d-m-y&quot; or day-month-year format, where US QIF files are likely to be &quot;m-d-y&quot; or month-year-day.    
+Please select a date format for the file.  QIF files created by European software are likely  to be in &quot;d-m-y&quot; or day-month-year format, where US QIF files are likely to be &quot;m-d-y&quot; or month-day-year.    
 </property>
 	      <property name="use_underline">False</property>
 	      <property name="use_markup">False</property>

Modified: gnucash/trunk/src/report/report-system/report.scm
===================================================================
--- gnucash/trunk/src/report/report-system/report.scm	2006-07-13 21:37:59 UTC (rev 14492)
+++ gnucash/trunk/src/report/report-system/report.scm	2006-07-13 22:58:55 UTC (rev 14493)
@@ -98,8 +98,8 @@
 	      (hash-set! *gnc:_report-templates_*
 			 (gnc:report-template-name report-rec) report-rec)
 	      (begin
-		(gnc:error "Refusing to add custom report with the same name as an existing report.")
-		(gnc:error "Please edit your saved-reports file and delete the section for: " name)
+		(gnc:error (_ "Refusing to add custom report with the same name as an existing report."))
+		(gnc:error (_ "Please edit your saved-reports file and delete the section for: " name))
 		)))
         (gnc:warn "gnc:define-report: bad report"))))
 



More information about the gnucash-changes mailing list