You are here

protected property InvoiceConfirmationTest::$translations in Commerce Invoice 8.2

Translated strings used in the invoice confirmation.

Type: array

File

tests/src/Kernel/InvoiceConfirmationTest.php, line 52

Class

InvoiceConfirmationTest
Tests the sending of multilingual invoice confirmation emails.

Namespace

Drupal\Tests\commerce_invoice\Kernel

Code

protected $translations = [
  'fr' => [
    'Invoice #@number' => 'Facture #@number',
    'A new invoice has been created for you.' => 'Une nouvelle facture a été créée pour vous.',
    'Default store' => 'Magasin par défaut',
  ],
  'es' => [
    'Invoice #@number' => 'Factura #@number',
    'A new invoice has been created for you.' => 'Se ha creado una nueva factura para usted.',
    'Default store' => 'Tienda por defecto',
  ],
];