Minor i18n string improvements

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

@ -208,7 +208,7 @@
(gnc:error error-str)
(cons #f (sprintf
(_ "Transactions relating to '%s' contain \
+more than one currency. This report is not designed to cope with this possibility.") (gncOwnerGetName owner))))
more than one currency. This report is not designed to cope with this possibility.") (gncOwnerGetName owner))))
(begin
(gnc:debug "it's an old company")
(if (gnc-numeric-negative-p value)

@ -859,14 +859,14 @@
(set! date-table (make-date-table))
;; oli-custom - moved invoice number here
(gnc:html-table-append-row!
date-table (list (sprintf #f (_ "%s #") title) (gncInvoiceGetID invoice)))
(make-date-row! date-table (string-append title (_ " Date")) post-date)
(make-date-row! date-table (_ "Due Date") due-date)
date-table (list (sprintf #f "%s #" title) (gncInvoiceGetID invoice)))
(make-date-row! date-table (string-append title " " (_ "Date")) post-date)
(make-date-row! date-table (_ "Due Date") due-date)
date-table)
(gnc:make-html-text
;; oli-custom - FIXME: I have a feeling I broke a
;; translation by not using string-expand for  
(string-append title (N_ "<br>Invoice&nbsp;in&nbsp;progress...."))))))
(string-append title "<br>" (N_ "Invoice in progress..."))))))
(gnc:html-table-append-row!
helper-table

@ -690,13 +690,13 @@
(if (not (equal? post-date (cons 0 0)))
(begin
(set! date-table (make-date-table))
(make-date-row! date-table (string-append title (_ " Date")) post-date)
(make-date-row! date-table (string-append title " " (_ "Date")) post-date)
(make-date-row! date-table (_ "Due Date") due-date)
(gnc:html-document-add-object! document date-table))
(gnc:html-document-add-object!
document
(gnc:make-html-text
(N_ "Invoice in progress....")))))
(N_ "Invoice in progress...")))))
(make-break! document)
(make-break! document)

@ -404,7 +404,7 @@
(revenue-table #f) ;; gnc:html-acct-table
(expense-table #f) ;; gnc:html-acct-table
(budget-name (gnc-budget-get-name budget))
(period-for (string-append " " (_ "for Budget ") budget-name))
(period-for (string-append " " (_ "for Budget") " " budget-name))
)
;; a helper to add a line to our report

Loading…
Cancel
Save