gnucash master: Bug 797338 - Change "U+R" and "R" labels to "U+C" and "C" in Import matcher

Geert Janssens gjanssens at code.gnucash.org
Tue Feb 18 12:32:11 EST 2020


Updated	 via  https://github.com/Gnucash/gnucash/commit/8e1dba7e (commit)
	from  https://github.com/Gnucash/gnucash/commit/1f83cfaf (commit)



commit 8e1dba7eae0012f1c9d71f600ec2773e558360bf
Author: David Cousens <davidcousens at bigpond.com>
Date:   Thu Aug 15 15:32:59 2019 +1000

    Bug 797338 - Change "U+R" and "R" labels to "U+C" and "C" in Import matcher
    
    This closes #554

diff --git a/gnucash/gtkbuilder/dialog-import.glade b/gnucash/gtkbuilder/dialog-import.glade
index 458a316de..f92ab72a8 100644
--- a/gnucash/gtkbuilder/dialog-import.glade
+++ b/gnucash/gtkbuilder/dialog-import.glade
@@ -754,7 +754,7 @@
     <property name="text" translatable="yes">This transaction requires your intervention or it will NOT be imported.</property>
   </object>
   <object class="GtkTextBuffer" id="textbuffer5">
-    <property name="text" translatable="yes">Double click on the transaction to change the matching transaction to reconcile, or the destination account of the auto-balance split (if required).</property>
+    <property name="text" translatable="yes">Double click on the transaction to either change the matching transaction in GnuCash or the destination account of the auto-balance split (if required).</property>
   </object>
   <object class="GtkDialog" id="matcher_help_dialog">
     <property name="can_focus">False</property>
@@ -941,7 +941,7 @@
               <object class="GtkLabel" id="label847797">
                 <property name="visible">True</property>
                 <property name="can_focus">False</property>
-                <property name="label" translatable="yes">"U+R"</property>
+                <property name="label" translatable="yes">"U+C"</property>
               </object>
               <packing>
                 <property name="left_attach">0</property>
@@ -952,7 +952,7 @@
               <object class="GtkLabel" id="label847798">
                 <property name="visible">True</property>
                 <property name="can_focus">False</property>
-                <property name="label" translatable="yes">"R"</property>
+                <property name="label" translatable="yes">"C"</property>
               </object>
               <packing>
                 <property name="left_attach">0</property>
@@ -976,7 +976,7 @@
                 <property name="visible">True</property>
                 <property name="can_focus">False</property>
                 <property name="halign">start</property>
-                <property name="label" translatable="yes">Select "U+R" to update and reconcile a matching transaction.</property>
+                <property name="label" translatable="yes">Select "U+C" to update a matching transaction and mark it as cleared (c).</property>
               </object>
               <packing>
                 <property name="left_attach">1</property>
@@ -988,7 +988,7 @@
                 <property name="visible">True</property>
                 <property name="can_focus">False</property>
                 <property name="halign">start</property>
-                <property name="label" translatable="yes">Select "R" to reconcile a matching transaction.</property>
+                <property name="label" translatable="yes">Select "C" to mark a matching transaction as cleared (c).</property>
               </object>
               <packing>
                 <property name="left_attach">1</property>
diff --git a/gnucash/import-export/import-main-matcher.c b/gnucash/import-export/import-main-matcher.c
index bc2d7683a..a20eb4a9f 100644
--- a/gnucash/import-export/import-main-matcher.c
+++ b/gnucash/import-export/import-main-matcher.c
@@ -771,12 +771,12 @@ gnc_gen_trans_init_view (GNCImportMainMatcher *info,
                        G_CALLBACK(gnc_gen_trans_add_toggled_cb), info);
     column = add_toggle_column (view,
             /* toggle column: update existing transaction & mark it reconciled */
-            _("U+R"), DOWNLOADED_COL_ACTION_UPDATE,
+            _("U+C"), DOWNLOADED_COL_ACTION_UPDATE,
                                G_CALLBACK(gnc_gen_trans_update_toggled_cb), info);
     gtk_tree_view_column_set_visible (column, show_update);
     add_toggle_column (view,
             /* toggle column: mark existing transaction reconciled */
-            _("R"), DOWNLOADED_COL_ACTION_CLEAR,
+            _("C"), DOWNLOADED_COL_ACTION_CLEAR,
                       G_CALLBACK(gnc_gen_trans_clear_toggled_cb), info);
 
     /* The last column has multiple renderers */



Summary of changes:
 gnucash/gtkbuilder/dialog-import.glade      | 10 +++++-----
 gnucash/import-export/import-main-matcher.c |  4 ++--
 2 files changed, 7 insertions(+), 7 deletions(-)



More information about the gnucash-changes mailing list