function LocalePluralFormatTest::getPoFileWithComplexPlural

Returns a .po file with a complex plural formula.

2 calls to LocalePluralFormatTest::getPoFileWithComplexPlural()
LocalePluralFormatTest::testGetPluralFormat in drupal/core/modules/locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php
Tests locale_get_plural() and format_plural() functionality.
LocalePluralFormatTest::testPluralEditExport in drupal/core/modules/locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php
Tests plural editing and export functionality.

File

drupal/core/modules/locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php, line 302
Definition of Drupal\locale\Tests\LocalePluralFormatTest.

Class

LocalePluralFormatTest
Tests plural format handling functionality.

Namespace

Drupal\locale\Tests

Code

function getPoFileWithComplexPlural() {
  return <<<EOF
msgid ""
msgstr ""
"Project-Id-Version: Drupal 8\\n"
"MIME-Version: 1.0\\n"
"Content-Type: text/plain; charset=UTF-8\\n"
"Content-Transfer-Encoding: 8bit\\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n"

msgid "1 hour"
msgid_plural "@count hours"
msgstr[0] "@count sat"
msgstr[1] "@count sata"
msgstr[2] "@count sati"

msgid "Monday"
msgstr "Ponedjeljak"
EOF;
}