I18n improvement: The account name of the other account in multi-split transaction is extended to conform to the name in the register.

Otherwise, the string Split from here has the ambiguity with the button
labeles Split, which is the verb, whereas here we need the noun.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18614 57a11ea4-9604-0410-9ed3-97b8803252fd
pull/1/head
Christian Stimming 17 years ago
parent 5b4100c373
commit 58397c5fc9

@ -1120,7 +1120,7 @@
(other-account (xaccSplitGetAccount
(xaccSplitGetOtherSplit split)))
(other-account-name (if (null? other-account)
(_ "Split")
(_ "Split Transaction")
(if full-names?
(gnc-account-get-full-name
other-account)

@ -139,7 +139,7 @@
(define (account-namestring account show-account-code show-account-name show-account-full-name)
;;# on multi-line splits we can get an empty ('()) account
(if (null? account)
(_ "Split")
(_ "Split Transaction")
(string-append
;; display account code?
(if show-account-code

Loading…
Cancel
Save