mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user