[Gnucash-changes] r13101 - gnucash/trunk - Add disambiguating
prefix to the single letter column titles.
David Hampton
hampton at cvs.gnucash.org
Sat Feb 4 15:46:33 EST 2006
Author: hampton
Date: 2006-02-04 15:46:32 -0500 (Sat, 04 Feb 2006)
New Revision: 13101
Trac: http://svn.gnucash.org/trac/changeset/13101
Modified:
gnucash/trunk/ChangeLog
gnucash/trunk/src/gnome-utils/gnc-tree-view-account.c
gnucash/trunk/src/gnome-utils/gnc-tree-view-commodity.c
Log:
Add disambiguating prefix to the single letter column titles.
Modified: gnucash/trunk/ChangeLog
===================================================================
--- gnucash/trunk/ChangeLog 2006-02-04 20:36:56 UTC (rev 13100)
+++ gnucash/trunk/ChangeLog 2006-02-04 20:46:32 UTC (rev 13101)
@@ -1,5 +1,9 @@
2006-02-04 David Hampton <hampton at employees.org>
+ * src/gnome-utils/gnc-tree-view-commodity.c:
+ * src/gnome-utils/gnc-tree-view-account.c: Add disambiguating
+ prefix to the single letter column titles.
+
* src/report/stylesheets/stylesheet-fancy.scm:
* src/report/stylesheets/stylesheet-easy.scm: Dave Herman's
<dvherman at gmail.com> patch to fix #327630 by copying missing
Modified: gnucash/trunk/src/gnome-utils/gnc-tree-view-account.c
===================================================================
--- gnucash/trunk/src/gnome-utils/gnc-tree-view-account.c 2006-02-04 20:36:56 UTC (rev 13100)
+++ gnucash/trunk/src/gnome-utils/gnc-tree-view-account.c 2006-02-04 20:46:32 UTC (rev 13101)
@@ -506,7 +506,8 @@
GNC_TREE_MODEL_ACCOUNT_COL_TAX_INFO,
GNC_TREE_VIEW_COLUMN_VISIBLE_ALWAYS,
NULL);
- gnc_tree_view_add_toggle_column(view, _("Placeholder"), _("P"), "placeholder",
+ gnc_tree_view_add_toggle_column(view, _("Placeholder"), Q_("Placeholder|P"),
+ "placeholder",
GNC_TREE_MODEL_ACCOUNT_COL_PLACEHOLDER,
GNC_TREE_VIEW_COLUMN_VISIBLE_ALWAYS,
sort_by_placeholder,
Modified: gnucash/trunk/src/gnome-utils/gnc-tree-view-commodity.c
===================================================================
--- gnucash/trunk/src/gnome-utils/gnc-tree-view-commodity.c 2006-02-04 20:36:56 UTC (rev 13100)
+++ gnucash/trunk/src/gnome-utils/gnc-tree-view-commodity.c 2006-02-04 20:46:32 UTC (rev 13101)
@@ -512,7 +512,8 @@
GNC_TREE_VIEW_COLUMN_COLOR_NONE,
GNC_TREE_MODEL_COMMODITY_COL_VISIBILITY,
sort_by_fraction);
- gnc_tree_view_add_toggle_column (view, _("Get Quotes"), _("Q"), "quote_flag",
+ gnc_tree_view_add_toggle_column (view, _("Get Quotes"), Q_("Get Quotes|Q"),
+ "quote_flag",
GNC_TREE_MODEL_COMMODITY_COL_QUOTE_FLAG,
GNC_TREE_MODEL_COMMODITY_COL_VISIBILITY,
sort_by_quote_flag,
More information about the gnucash-changes
mailing list