From 52e4ee5eb94c738c6b467c8c36c626b9fbac6e9d Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 6 Jul 2023 21:26:08 +1000 Subject: [PATCH 1/4] Updated translations --- lang/fr_CA/texts.php | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/lang/fr_CA/texts.php b/lang/fr_CA/texts.php index ac26b9e889ca..b3b83e49d287 100644 --- a/lang/fr_CA/texts.php +++ b/lang/fr_CA/texts.php @@ -2507,8 +2507,8 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette 'partial_due_date' => 'Date d\'échéance du paiement partiel', 'task_fields' => 'Champs de tâche', 'product_fields_help' => 'Glisser et déposer les champs pour changer l\'ordre', - 'custom_value1' => 'Custom Value 1', - 'custom_value2' => 'Custom Value 2', + 'custom_value1' => 'Valeur personnalisée 1', + 'custom_value2' => 'Valeur personnalisée 2', 'enable_two_factor' => 'Authentification à deux facteurs', 'enable_two_factor_help' => 'Utilisez votre téléphone pour confirmer votre identité lors de la connexion', 'two_factor_setup' => 'Configuration de l\'authentification à deux facteurs', @@ -5101,11 +5101,15 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette 'add_gateway_help_message' => 'Ajouter un passerelle de paiement (Stripe, WePay, ou PayPal) pour accepter les paiements en ligne', 'lang_Hungarian' => 'Hongrois', 'use_mobile_to_manage_plan' => 'Utilisez les paramètres de votre abonnement cellulaire pour gérer votre plan', - 'item_tax3' => 'Item Tax3', - 'item_tax_rate1' => 'Item Tax Rate 1', - 'item_tax_rate2' => 'Item Tax Rate 2', - 'item_tax_rate3' => 'Item Tax Rate 3', - 'buy_price' => 'Buy Price', + 'item_tax3' => 'Taxe 3 de l\'article', + 'item_tax_rate1' => 'Taux de taxe de d\'article 1', + 'item_tax_rate2' => 'Taux de taxe de d\'article 2', + 'item_tax_rate3' => 'Taux de taxe de d\'article 3', + 'buy_price' => 'Prix d\'achat', + 'country_Macedonia' => 'Macédoine', + 'admin_initiated_payments' => 'Paiements initiés par l\'administration', + 'admin_initiated_payments_help' => 'Permet la saisie d\'un paiement dans le portal d\'administration sans facture', + 'paid_date' => 'Date de paiement', ); From 7bb8915055326c17cc73d60d747e16c9f6b5edb2 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 6 Jul 2023 21:28:09 +1000 Subject: [PATCH 2/4] Updates for migrations --- database/migrations/2023_07_06_063512_update_designs.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/database/migrations/2023_07_06_063512_update_designs.php b/database/migrations/2023_07_06_063512_update_designs.php index 94e0b624ed74..d3e7318c64c1 100644 --- a/database/migrations/2023_07_06_063512_update_designs.php +++ b/database/migrations/2023_07_06_063512_update_designs.php @@ -19,6 +19,7 @@ return new class extends Migration if($t) { $t->full_name = 'Taiwan'; + $t->name = 'Taiwan'; $t->save(); } @@ -26,6 +27,7 @@ return new class extends Migration if($m) { $m->full_name = 'Macedonia'; + $m->name = 'Macedonia'; $m->save(); } From 92cf991182974be5208bc72279fd5ce0333614bc Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 6 Jul 2023 21:57:17 +1000 Subject: [PATCH 3/4] Generic download toast notification --- lang/en/texts.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lang/en/texts.php b/lang/en/texts.php index e8a774dd600f..d2fd84e8f9bb 100644 --- a/lang/en/texts.php +++ b/lang/en/texts.php @@ -5118,6 +5118,8 @@ $LANG = array( 'admin_initiated_payments' => 'Admin Initiated Payments', 'admin_initiated_payments_help' => 'Support entering a payment in the admin portal without an invoice', 'paid_date' => 'Paid Date', + 'downloaded_entities' => 'An email will be sent with the PDFs', + ); From e79a6dde7279fbfe4f025077fff5ec7c31d1c498 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 6 Jul 2023 22:07:02 +1000 Subject: [PATCH 4/4] v5.6.13 --- VERSION.txt | 2 +- config/ninja.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION.txt b/VERSION.txt index 60837570b607..3b338e29922d 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -5.6.12 \ No newline at end of file +5.6.13 \ No newline at end of file diff --git a/config/ninja.php b/config/ninja.php index 2a6dfaa4c16e..710297f2fe15 100644 --- a/config/ninja.php +++ b/config/ninja.php @@ -15,8 +15,8 @@ return [ 'require_https' => env('REQUIRE_HTTPS', true), 'app_url' => rtrim(env('APP_URL', ''), '/'), 'app_domain' => env('APP_DOMAIN', 'invoicing.co'), - 'app_version' => '5.6.12', - 'app_tag' => '5.6.12', + 'app_version' => '5.6.13', + 'app_tag' => '5.6.13', 'minimum_client_version' => '5.0.16', 'terms_version' => '1.0.1', 'api_secret' => env('API_SECRET', ''),