From: Joe Date: Fri, 11 Nov 2022 15:24:24 +0000 (+0100) Subject: Not translatable string in rep108. Fixed. X-Git-Url: https://delta.frontaccounting.com/gitweb/?p=fa-stable.git;a=commitdiff_plain;h=b750d151463ad2693d753c5f61ab800595014787 Not translatable string in rep108. Fixed. --- diff --git a/lang/new_language_template/LC_MESSAGES/empty.po b/lang/new_language_template/LC_MESSAGES/empty.po index 980ba1a3..6f15917e 100644 --- a/lang/new_language_template/LC_MESSAGES/empty.po +++ b/lang/new_language_template/LC_MESSAGES/empty.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-25 19:10+0200\n" +"POT-Creation-Date: 2022-11-11 16:18+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Joe Hunt \n" "Language-Team: LANGUAGE \n" @@ -12534,6 +12534,10 @@ msgstr "" msgid "as of" msgstr "" +#: reporting/rep108.php:183 +msgid "No customers with outstanding balances found" +msgstr "" + #: reporting/rep109.php:74 reporting/rep109.php:82 #: reporting/includes/doctext.inc:64 msgid "SALES ORDER" diff --git a/reporting/rep108.php b/reporting/rep108.php index abb11e7f..678885ae 100644 --- a/reporting/rep108.php +++ b/reporting/rep108.php @@ -180,7 +180,7 @@ function print_statements() } if (!isset($rep)) - display_notification("No customers with outstanding balances found"); + display_notification(_("No customers with outstanding balances found"); else if ($email == 0) $rep->End(); }