diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php b/core/modules/locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php index f4a56e236766f00c5f7e9ba58b8ab83c38bc3804..8119199d7ecddfcc27d0a8cfec239c17dd452213 100644 --- a/core/modules/locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php +++ b/core/modules/locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php @@ -74,7 +74,7 @@ function testGetPluralFormat() { 1 => '@count hours', ), 'fr' => array( - 0 => '1 heure', + 0 => '@count heure', 1 => '@count heures', ), 'hr' => array( @@ -153,7 +153,7 @@ function testPluralEditExport() { // Ensure our imported translations exist in the file. $this->assertRaw("msgid \"Monday\"\nmsgstr \"lundi\"", t('French translations present in exported file.')); // Check for plural export specifically. - $this->assertRaw("msgid \"1 hour\"\nmsgid_plural \"@count hours\"\nmsgstr[0] \"1 heure\"\nmsgstr[1] \"@count heures\"", t('Plural translations exported properly.')); + $this->assertRaw("msgid \"1 hour\"\nmsgid_plural \"@count hours\"\nmsgstr[0] \"@count heure\"\nmsgstr[1] \"@count heures\"", 'Plural translations exported properly.'); // Get the Croatian translations. $this->drupalPost('admin/config/regional/translate/export', array( @@ -196,13 +196,13 @@ function testPluralEditExport() { ); $this->drupalPost('admin/config/regional/translate/translate', $search, t('Filter')); // Plural values for the langcode fr. - $this->assertText('1 heure'); + $this->assertText('@count heure'); $this->assertText('@count heures'); $this->assertNoText('2. plural form'); // Edit langcode fr translations and see if that took effect. $edit = array( - 'strings[10][translations][0]' => '1 heure edited', + 'strings[10][translations][0]' => '@count heure edited', ); $this->drupalPost($path, $edit, t('Save translations')); @@ -245,7 +245,7 @@ function testPluralEditExport() { 'langcode' => 'fr', ), t('Export')); // Check for plural export specifically. - $this->assertRaw("msgid \"1 hour\"\nmsgid_plural \"@count hours\"\nmsgstr[0] \"1 heure edited\"\nmsgstr[1] \"@count heures\"", t('Edited French plural translations for hours exported properly.')); + $this->assertRaw("msgid \"1 hour\"\nmsgid_plural \"@count hours\"\nmsgstr[0] \"@count heure edited\"\nmsgstr[1] \"@count heures\"", 'Edited French plural translations for hours exported properly.'); $this->assertRaw("msgid \"1 day\"\nmsgid_plural \"@count days\"\nmsgstr[0] \"1 jour\"\nmsgstr[1] \"@count jours\"", t('Added French plural translations for days exported properly.')); // Get the Croatian translations. @@ -288,7 +288,7 @@ function getPoFileWithSimplePlural() { msgid "1 hour" msgid_plural "@count hours" -msgstr[0] "1 heure" +msgstr[0] "@count heure" msgstr[1] "@count heures" msgid "Monday"