Skip to content

Commit

Permalink
Merge pull request #70 from sprain/fix-translations
Browse files Browse the repository at this point in the history
Fix translations
  • Loading branch information
sprain authored Jul 14, 2020
2 parents 0582220 + 2b124f0 commit 147131e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/PaymentPart/Translation/Translation.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -38,7 +38,7 @@ class Translation
],

'it' => [
'paymentPart' => 'Sezione pagamento',
'paymentPart' => 'Sezione di pagamento',
'creditor' => 'Conto / Pagabile a',
'reference' => 'Riferimento',
'additionalInformation' => 'Informazioni supplementari',
Expand Down
8 changes: 4 additions & 4 deletions tests/PaymentPart/TranslationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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']]
];
}
Expand All @@ -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']
];
}
Expand Down

0 comments on commit 147131e

Please sign in to comment.