From 659c81953cde2fa5358e369ff6fa1dda2e690a85 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 16 Mar 2021 09:02:02 +1100 Subject: [PATCH 1/3] Fixes for missing translations --- resources/lang/en/texts.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 3e4e0a91f687..64620b9e899b 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -4174,7 +4174,9 @@ $LANG = array( 'zoho' => 'Zoho', 'accounting' => 'Accounting', 'required_files_missing' => 'Please provide all CSVs.', - + 'migration_auth_label' => 'Let\'s continue by authenticating.', + 'api_secret' => 'API secret', + 'migration_api_secret_notice' => 'You can find API_SECRET in the .env file or Invoice Ninja v5. If property is missing, leave field blank.', ); return $LANG; From 9396e1103618bf1ce589b94289a2d8945142309f Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sat, 20 Mar 2021 13:49:06 +1100 Subject: [PATCH 2/3] Update texts --- resources/lang/en/texts.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 64620b9e899b..ecd6e464dde3 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -4177,6 +4177,7 @@ $LANG = array( 'migration_auth_label' => 'Let\'s continue by authenticating.', 'api_secret' => 'API secret', 'migration_api_secret_notice' => 'You can find API_SECRET in the .env file or Invoice Ninja v5. If property is missing, leave field blank.', + 'promo_code' => 'Promo code', ); return $LANG; From 50db50c30517d9cf92a61ea87033669e76b0a1ce Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 14 Apr 2021 07:23:23 +1000 Subject: [PATCH 3/3] update texts --- resources/lang/en/texts.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index ecd6e464dde3..4ecf3720832d 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -4178,6 +4178,8 @@ $LANG = array( 'api_secret' => 'API secret', 'migration_api_secret_notice' => 'You can find API_SECRET in the .env file or Invoice Ninja v5. If property is missing, leave field blank.', 'promo_code' => 'Promo code', + 'amount_greater_than_balance_v5' => 'The amount is greater than the invoice balance. You cannot overpay an invoice.', + ); return $LANG;