public function LocalePluralFormatTest::getPoFileWithMissingPlural in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/locale/src/Tests/LocalePluralFormatTest.php \Drupal\locale\Tests\LocalePluralFormatTest::getPoFileWithMissingPlural()
Returns a .po file with a missing plural formula.
1 call to LocalePluralFormatTest::getPoFileWithMissingPlural()
- LocalePluralFormatTest::testGetPluralFormat in core/
modules/ locale/ src/ Tests/ LocalePluralFormatTest.php - Tests locale_get_plural() and \Drupal::translation()->formatPlural() functionality.
File
- core/
modules/ locale/ src/ Tests/ LocalePluralFormatTest.php, line 408 - Contains \Drupal\locale\Tests\LocalePluralFormatTest.
Class
- LocalePluralFormatTest
- Tests plural handling for various languages.
Namespace
Drupal\locale\TestsCode
public function getPoFileWithMissingPlural() {
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"
msgid "Monday"
msgstr "lundi"
EOF;
}