mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
I18n fix of concatenated expression.
We must not concatenate a word expression from different strings. Instead, we must translate each expression separately. Pointed out by Mark Haanen. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18530 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
a0703becbf
commit
e939dd3f77
@ -2269,11 +2269,12 @@ ld_create_sxes( LoanDruidData *ldd )
|
||||
{
|
||||
GString *payMainTxnDesc = g_string_sized_new( 32 );
|
||||
g_string_printf( payMainTxnDesc,
|
||||
"%s - %s%s",
|
||||
"%s - %s",
|
||||
ldd->ld.repMemo,
|
||||
( ldd->ld.escrowAcct == NULL
|
||||
? "" : _("Escrow ") ),
|
||||
_("Payment") );
|
||||
? _("Payment")
|
||||
: _("Escrow Payment") )
|
||||
);
|
||||
|
||||
gnc_ttinfo_set_description( paymentSX->mainTxn,
|
||||
payMainTxnDesc->str );
|
||||
|
Loading…
Reference in New Issue
Block a user