I18n improvements in invoice reports: Mark last untranslated strings for translation.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19330 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming 2010-07-04 20:15:49 +00:00
parent 76b764582a
commit fae41c96b5
3 changed files with 7 additions and 7 deletions

View File

@ -101,7 +101,7 @@
(set-col (make-set-col col-vector))) (set-col (make-set-col col-vector)))
(set-col (opt-val "Display Columns" "Date") 0) (set-col (opt-val "Display Columns" "Date") 0)
(set-col (opt-val "Display Columns" "Description") 1) (set-col (opt-val "Display Columns" "Description") 1)
(set-col (opt-val "Display Columns" "Action") 2) (set-col (opt-val "Display Columns" "Charge Type") 2)
(set-col (opt-val "Display Columns" "Quantity") 3) (set-col (opt-val "Display Columns" "Quantity") 3)
(set-col (opt-val "Display Columns" "Price") 4) (set-col (opt-val "Display Columns" "Price") 4)
(set-col (opt-val "Display Columns" "Discount") 5) (set-col (opt-val "Display Columns" "Discount") 5)
@ -264,8 +264,8 @@
(gnc:register-inv-option (gnc:register-inv-option
(gnc:make-simple-boolean-option (gnc:make-simple-boolean-option
(N_ "Display Columns") (N_ "Action") (N_ "Display Columns") (N_ "Charge Type")
"g" (N_ "Display the action?") #t)) "g" (N_ "Display the charge type?") #t))
(gnc:register-inv-option (gnc:register-inv-option
(gnc:make-simple-boolean-option (gnc:make-simple-boolean-option
@ -800,7 +800,7 @@
(begin (begin
(add-html! document "<table border=0><tr>") (add-html! document "<table border=0><tr>")
(add-html! document "<td>") (add-html! document "<td>")
(add-html! document "Date: ") (add-html! document (string-append (_ "Date") ": "))
(add-html! document "</td>") (add-html! document "</td>")
(add-html! document "<td>") (add-html! document "<td>")
(add-html! document (gnc-print-date post-date)) (add-html! document (gnc-print-date post-date))
@ -808,7 +808,7 @@
(if (opt-val "Display" "Due Date") (if (opt-val "Display" "Due Date")
(begin (begin
(add-html! document "<tr><td>") (add-html! document "<tr><td>")
(add-html! document "Due: ") (add-html! document (string-append (_ "Due") ": "))
(add-html! document "</td>") (add-html! document "</td>")
(add-html! document "<td>") (add-html! document "<td>")
(add-html! document (gnc-print-date due-date)) (add-html! document (gnc-print-date due-date))

View File

@ -884,7 +884,7 @@
(set! date-table (make-date-table)) (set! date-table (make-date-table))
;; oli-custom - moved invoice number here ;; oli-custom - moved invoice number here
(gnc:html-table-append-row! (gnc:html-table-append-row!
date-table (list (sprintf #f "%s&nbsp;#" title) (gncInvoiceGetID invoice))) date-table (list (sprintf #f (_ "%s&nbsp;#") title) (gncInvoiceGetID invoice)))
(make-date-row! date-table (string-append title "&nbsp;" (_ "Date")) post-date) (make-date-row! date-table (string-append title "&nbsp;" (_ "Date")) post-date)
(make-date-row! date-table (_ "Due Date") due-date) (make-date-row! date-table (_ "Due Date") due-date)
date-table) date-table)

View File

@ -663,7 +663,7 @@
(invoice (opt-val invoice-page invoice-name)) (invoice (opt-val invoice-page invoice-name))
(owner '()) (owner '())
(references? (opt-val "Display" "References")) (references? (opt-val "Display" "References"))
(default-title (N_ "Invoice")) (default-title (_ "Invoice"))
(custom-title (opt-val invoice-page "Custom Title")) (custom-title (opt-val invoice-page "Custom Title"))
(title "") (title "")
(invoice? #f)) (invoice? #f))