Skip to content

Commit

Permalink
Add disambiguation prefix to the word Split where it is the action of…
Browse files Browse the repository at this point in the history
… a Stock Split.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18582 57a11ea4-9604-0410-9ed3-97b8803252fd
  • Loading branch information
cstim committed Jan 25, 2010
1 parent 88e0cfe commit c7e1984
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/gnome/druid-stock-split.c
Expand Up @@ -451,7 +451,8 @@ gnc_stock_split_druid_finish (GnomeDruidPage *druidpage,

xaccSplitSetAmount (split, amount);
xaccSplitMakeStockSplit (split);
xaccSplitSetAction (split, _("Split"));
/* Translators: This string has a disambiguation prefix */
xaccSplitSetAction (split, Q_("Action Column|Split"));

amount = gnc_amount_edit_get_amount (GNC_AMOUNT_EDIT (info->price_edit));
if (gnc_numeric_positive_p (amount))
Expand Down
3 changes: 2 additions & 1 deletion src/register/ledger-core/split-register.c
Expand Up @@ -2294,7 +2294,8 @@ gnc_split_register_config_action (SplitRegister *reg)
gnc_combo_cell_add_menu_item (cell, _("Income"));
/* Action: Distribution */
gnc_combo_cell_add_menu_item (cell, _("Dist"));
gnc_combo_cell_add_menu_item (cell, _("Split"));
/* Translators: This string has a disambiguation prefix */
gnc_combo_cell_add_menu_item (cell, Q_("Action Column|Split"));
break;

default:
Expand Down

0 comments on commit c7e1984

Please sign in to comment.