diff --git a/src/PaymentPart/Translation/Translation.php b/src/PaymentPart/Translation/Translation.php index e176c6fa..dd3e0443 100644 --- a/src/PaymentPart/Translation/Translation.php +++ b/src/PaymentPart/Translation/Translation.php @@ -22,7 +22,7 @@ class Translation ], 'fr' => [ - 'paymentPart' => 'Section paiement', + 'paymentPart' => 'Section de paiement', 'creditor' => 'Compte / Payable à', 'reference' => 'Référence', 'additionalInformation' => 'Informations supplémentaires', @@ -38,7 +38,7 @@ class Translation ], 'it' => [ - 'paymentPart' => 'Sezione pagamento', + 'paymentPart' => 'Sezione di pagamento', 'creditor' => 'Conto / Pagabile a', 'reference' => 'Riferimento', 'additionalInformation' => 'Informazioni supplementari', diff --git a/tests/PaymentPart/TranslationTest.php b/tests/PaymentPart/TranslationTest.php index 73a042c3..15e5480b 100644 --- a/tests/PaymentPart/TranslationTest.php +++ b/tests/PaymentPart/TranslationTest.php @@ -20,8 +20,8 @@ public function allTranslationsProvider() { return [ ['de', ['paymentPart' => 'Zahlteil']], - ['fr', ['paymentPart' => 'Section paiement']], - ['it', ['paymentPart' => 'Sezione pagamento']], + ['fr', ['paymentPart' => 'Section de paiement']], + ['it', ['paymentPart' => 'Sezione di pagamento']], ['en', ['paymentPart' => 'Payment part']] ]; } @@ -38,8 +38,8 @@ public function singleTranslationProvider() { return [ ['de', 'paymentPart', 'Zahlteil'], - ['fr', 'paymentPart', 'Section paiement'], - ['it', 'paymentPart', 'Sezione pagamento'], + ['fr', 'paymentPart', 'Section de paiement'], + ['it', 'paymentPart', 'Sezione di pagamento'], ['en', 'paymentPart', 'Payment part'] ]; }