i18n - Reuse strings for less translation work

This commit is contained in:
Geert Janssens 2021-03-24 13:02:39 +01:00
parent 0b6b88b771
commit a4cab54afc
4 changed files with 5 additions and 3 deletions

View File

@ -1856,7 +1856,7 @@ many months before the current month</property>
<object class="GtkBox" id="pref/general/assoc-head"> <object class="GtkBox" id="pref/general/assoc-head">
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">False</property> <property name="can_focus">False</property>
<property name="tooltip_markup" translatable="yes">Path head for Linked File Relative Paths</property> <property name="tooltip_markup" translatable="yes">Path head for Linked Files Relative Paths</property>
<child> <child>
<placeholder/> <placeholder/>
</child> </child>

View File

@ -158,7 +158,7 @@ for taxes paid on expenses, and type LIABILITY for taxes collected on sales.")
(gnc:register-option (gnc:register-option
options options
(gnc:make-multichoice-callback-option (gnc:make-multichoice-callback-option
pagename-format (N_ "Report format") pagename-format (N_ "Report Format")
"a" (G_ "Report Format") 'default "a" (G_ "Report Format") 'default
(list (vector 'default (list (vector 'default
(G_ "Default Format") (G_ "Default Format")

View File

@ -116,7 +116,7 @@
(N_ "Transaction Filter excludes matched strings")) (N_ "Transaction Filter excludes matched strings"))
(define optname-transaction-matcher-caseinsensitive (define optname-transaction-matcher-caseinsensitive
(N_ "Transaction Filter is case insensitive")) (N_ "Transaction Filter is case insensitive"))
(define optname-reconcile-status (N_ "Reconcile Status")) (define optname-reconcile-status (N_ "Reconciled Status"))
(define optname-void-transactions (N_ "Void Transactions")) (define optname-void-transactions (N_ "Void Transactions"))
(define optname-closing-transactions (N_ "Closing transactions")) (define optname-closing-transactions (N_ "Closing transactions"))

View File

@ -1824,6 +1824,7 @@ the option '~a'."))
("Common Currency" "Currency" "Common Currency") ("Common Currency" "Currency" "Common Currency")
("Show original currency amount" "Currency" "Show original currency amount") ("Show original currency amount" "Currency" "Show original currency amount")
("Report's currency" "Currency" "Report's currency") ("Report's currency" "Currency" "Report's currency")
("Reconcile Status" #f "Reconciled Status")
;; new-owner-report.scm, renamed Oct 2020 to differentiate with ;; new-owner-report.scm, renamed Oct 2020 to differentiate with
;; Document Links: ;; Document Links:
("Links" #f "Transaction Links") ("Links" #f "Transaction Links")
@ -1831,6 +1832,7 @@ the option '~a'."))
("Individual Taxes" #f "Use Detailed Tax Summary") ("Individual Taxes" #f "Use Detailed Tax Summary")
;; income-gst-statement.scm ;; income-gst-statement.scm
("default format" #f "Default Format") ("default format" #f "Default Format")
("Report format" #f "Report Format")
)) ))
(define (lookup-option section name) (define (lookup-option section name)