From: Joe Hunt Date: Sat, 12 Mar 2022 15:53:59 +0000 (+0100) Subject: translatable string typo in Purchaseing/allocations/supplier_allocate.php - Amount... X-Git-Url: https://delta.frontaccounting.com/gitweb/?p=fa-stable.git;a=commitdiff_plain;h=9f9686642183c0681c71f0de7a31ae179ea9e49f translatable string typo in Purchaseing/allocations/supplier_allocate.php - Amount ot be settled: Fixed. --- diff --git a/lang/new_language_template/LC_MESSAGES/empty.po b/lang/new_language_template/LC_MESSAGES/empty.po index 5364b163..da85fefb 100644 --- a/lang/new_language_template/LC_MESSAGES/empty.po +++ b/lang/new_language_template/LC_MESSAGES/empty.po @@ -11913,7 +11913,7 @@ msgid "Total:" msgstr "" #: purchasing/allocations/supplier_allocate.php:62 -msgid "Amount ot be settled:" +msgid "Amount to be settled:" msgstr "" #: purchasing/allocations/supplier_allocate.php:74 diff --git a/purchasing/allocations/supplier_allocate.php b/purchasing/allocations/supplier_allocate.php index d26ed61b..428bfdc6 100644 --- a/purchasing/allocations/supplier_allocate.php +++ b/purchasing/allocations/supplier_allocate.php @@ -59,7 +59,7 @@ function edit_allocations_for_transaction($type, $trans_no) if (floatcmp($cart->bank_amount, $cart->amount)) { - $total = _("Amount ot be settled:") . " " . price_format(-$cart->amount).' '.$cart->person_curr.""; + $total = _("Amount to be settled:") . " " . price_format(-$cart->amount).' '.$cart->person_curr.""; if ($cart->currency != $cart->person_curr) $total .= sprintf(" (%s %s/%s)", exrate_format($cart->bank_amount/$cart->amount), $cart->currency, $cart->person_curr); display_heading2($total);