From dea9fb98fe7d75567823f69fcc518880b8c781c5 Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Sun, 25 Oct 2009 20:34:27 +0000 Subject: [PATCH] Introduce disambiguation prefix for "Deposit" action to distinguish it from the noun. The Dutch translator wrote: Would it be possible to differentiate between the instance of the _verb_ "Deposit" in src/register/ledger-core/split-register.c:2184 (the verb) and the occurrances of the _noun_ "Deposit" in src/app-utils/prefs.scm (via intl-scm/guile-strings.c:6732) and src/import-export/csv/gnc-csv-model.c:37? This would help me tremendously with my efforts. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18391 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/register/ledger-core/split-register.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/register/ledger-core/split-register.c b/src/register/ledger-core/split-register.c index 62336e33ae..0ed7496469 100644 --- a/src/register/ledger-core/split-register.c +++ b/src/register/ledger-core/split-register.c @@ -2181,7 +2181,9 @@ gnc_split_register_config_action (SplitRegister *reg) case BANK_REGISTER: /* broken ! FIXME bg */ case SEARCH_LEDGER: - gnc_combo_cell_add_menu_item (cell, _("Deposit")); + /* Translators: This string has a context prefix; the translation + must only contain the part after the | character. */ + gnc_combo_cell_add_menu_item (cell, Q_("Action Column|Deposit")); gnc_combo_cell_add_menu_item (cell, _("Withdraw")); gnc_combo_cell_add_menu_item (cell, _("Check")); gnc_combo_cell_add_menu_item (cell, _("Int"));