mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
String improvements, as pointed out by Clytie Siddall.
This changeset does not add any untranslated strings and does not change any existing translated strings. It can directly be back-ported. BP git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16703 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
669a26cf7f
commit
05df54193f
@ -824,7 +824,7 @@ year(s)</property>
|
||||
<widget class="GtkButton" id="SampleButton">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">button1</property>
|
||||
<property name="label" translatable="no">button1</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="focus_on_click">True</property>
|
||||
@ -840,7 +840,7 @@ year(s)</property>
|
||||
<widget class="GtkToggleButton" id="SampleToggleButton">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">togglebutton1</property>
|
||||
<property name="label" translatable="no">togglebutton1</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="focus_on_click">True</property>
|
||||
@ -858,7 +858,7 @@ year(s)</property>
|
||||
<widget class="GtkCheckButton" id="SampleCheckButton">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">checkbutton1</property>
|
||||
<property name="label" translatable="no">checkbutton1</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="focus_on_click">True</property>
|
||||
@ -877,7 +877,7 @@ year(s)</property>
|
||||
<widget class="GtkRadioButton" id="SampleRadioButton">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">radiobutton1</property>
|
||||
<property name="label" translatable="no">radiobutton1</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="focus_on_click">True</property>
|
||||
|
@ -160,7 +160,7 @@
|
||||
<default>1.0</default>
|
||||
<locale name="C">
|
||||
<short>Default to 'new search' if fewer than this number of items is returned</short>
|
||||
<long>Default to 'new search' if fewer than this number of items is returned.</long>
|
||||
<long>Default to 'new search' if fewer than this number of items is returned</long>
|
||||
</locale>
|
||||
</schema>
|
||||
|
||||
|
@ -137,6 +137,9 @@
|
||||
(list->vector
|
||||
(list '2nd-est (N_ "2nd Est Tax Quarter") (N_ "Apr 1 - May 31")))
|
||||
(list->vector
|
||||
;; Translators: The US tax quarters are different from
|
||||
;; actual year's quarters! See the definition of
|
||||
;; tax-qtr-real-qtr-year variable above.
|
||||
(list '3rd-est (N_ "3rd Est Tax Quarter") (N_ "Jun 1 - Aug 31")))
|
||||
(list->vector
|
||||
(list '4th-est (N_ "4th Est Tax Quarter") (N_ "Sep 1 - Dec 31")))
|
||||
@ -283,7 +286,7 @@
|
||||
'()
|
||||
(cons (gnc:make-html-table-header-cell/markup
|
||||
"number-header"
|
||||
(_ "Sub-")
|
||||
"Sub-"
|
||||
(number->string (- max-level 1)))
|
||||
(make-sub-headers (- max-level 1)))))
|
||||
|
||||
|
@ -121,6 +121,9 @@
|
||||
(list->vector
|
||||
(list '2nd-est (N_ "2nd Est Tax Quarter") (N_ "Apr 1 - May 31")))
|
||||
(list->vector
|
||||
;; Translators: The US tax quarters are different from
|
||||
;; actual year's quarters! See the definition of
|
||||
;; tax-qtr-real-qtr-year variable above.
|
||||
(list '3rd-est (N_ "3rd Est Tax Quarter") (N_ "Jun 1 - Aug 31")))
|
||||
(list->vector
|
||||
(list '4th-est (N_ "4th Est Tax Quarter") (N_ "Sep 1 - Dec 31")))
|
||||
@ -134,6 +137,9 @@
|
||||
(N_ "Apr 1 - May 31, Last year")))
|
||||
(list->vector
|
||||
(list '3rd-last (N_ "Last Yr 3rd Est Tax Qtr")
|
||||
;; Translators: The US tax quarters are different from
|
||||
;; actual year's quarters! See the definition of
|
||||
;; tax-qtr-real-qtr-year variable above.
|
||||
(N_ "Jun 1 - Aug 31, Last year")))
|
||||
(list->vector
|
||||
(list '4th-last (N_ "Last Yr 4th Est Tax Qtr")
|
||||
@ -267,7 +273,7 @@
|
||||
'()
|
||||
(cons (gnc:make-html-table-header-cell/markup
|
||||
"number-header"
|
||||
(_ "Sub-")
|
||||
"Sub-"
|
||||
(number->string (- max-level 1)))
|
||||
(make-sub-headers (- max-level 1)))))
|
||||
|
||||
|
@ -169,7 +169,7 @@
|
||||
(string->symbol (gnc:html-style-sheet-name ss))
|
||||
(gnc:html-style-sheet-name ss)
|
||||
(string-append (gnc:html-style-sheet-name ss)
|
||||
(_ " Stylesheet"))))
|
||||
" " (_ "Stylesheet"))))
|
||||
(gnc:get-html-style-sheets)))))
|
||||
|
||||
(if (procedure? generator)
|
||||
|
Loading…
Reference in New Issue
Block a user