From 5b4100c3733d7695adf45abe10796b2ea206f2f7 Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Fri, 5 Feb 2010 20:29:57 +0000 Subject: [PATCH] I18n improvement: Add disambiguation prefix to the account code of the other account in a multi-split txn. Without the disambiguation, the string here is identical to the button labeled Split, but that one is for sure something different from here, namely the old verb vs. noun issue. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18613 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/engine/Split.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/engine/Split.c b/src/engine/Split.c index 8448e20596..4f689b725f 100644 --- a/src/engine/Split.c +++ b/src/engine/Split.c @@ -1289,7 +1289,8 @@ xaccSplitGetCorrAccountCode(const Split *sa) if (!get_corr_account_split(sa, &other_split)) { if (!split_const) - split_const = _("Split"); + /* Translators: This string has a disambiguation prefix */ + split_const = Q_("Displayed account code of the other account in a multi-split transaction|Split"); return split_const; }