1 locale.test LocalePluralFormatTest::getPoFileWithSimplePlural()

Returns a .po file with a simple plural formula.

File

core/modules/locale/tests/locale.test, line 682
Tests for locale.module.

Class

LocalePluralFormatTest
Tests plural index computation functionality.

Code

function getPoFileWithSimplePlural() {
  return <<< EOF
msgid ""
msgstr ""
"Project-Id-Version: Backdrop 1\\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 "1 hour"
msgid_plural "@count hours"
msgstr[0] "1 heure"
msgstr[1] "@count heures"

msgid "Monday"
msgstr "lundi"
EOF;
}