function LocalePluralFormatTest::getPoFileWithSimplePlural

Same name and namespace in other branches
  1. 10 core/modules/locale/tests/src/Functional/LocalePluralFormatTest.php \Drupal\Tests\locale\Functional\LocalePluralFormatTest::getPoFileWithSimplePlural()
  2. 11.x core/modules/locale/tests/src/Functional/LocalePluralFormatTest.php \Drupal\Tests\locale\Functional\LocalePluralFormatTest::getPoFileWithSimplePlural()
  3. 9 core/modules/locale/tests/src/Functional/LocalePluralFormatTest.php \Drupal\Tests\locale\Functional\LocalePluralFormatTest::getPoFileWithSimplePlural()
  4. 8.9.x core/modules/locale/tests/src/Functional/LocalePluralFormatTest.php \Drupal\Tests\locale\Functional\LocalePluralFormatTest::getPoFileWithSimplePlural()

Returns a .po file with a simple plural formula.

1 call to LocalePluralFormatTest::getPoFileWithSimplePlural()
LocalePluralFormatTest::setUp in modules/locale/locale.test
Sets up a Drupal site for running functional and integration tests.

File

modules/locale/locale.test, line 867

Class

LocalePluralFormatTest
Tests plural index computation functionality.

Code

function getPoFileWithSimplePlural() {
  return <<<EOF
  msgid ""
  msgstr ""
  "Project-Id-Version: Drupal 7\\n"
  "MIME-Version: 1.0\\n"
  "Content-Type: text/plain; charset=UTF-8\\n"
  "Content-Transfer-Encoding: 8bit\\n"
  "Plural-Forms: nplurals=2; plural=(n!=1);\\n"
  
  msgid "One sheep"
  msgid_plural "@count sheep"
  msgstr[0] "un mouton"
  msgstr[1] "@count moutons"
  
  msgid "Monday"
  msgstr "lundi"
  EOF;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.