protected function DistributionProfileTranslationTest::getPo in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTranslationTest.php \Drupal\FunctionalTests\Installer\DistributionProfileTranslationTest::getPo()
Returns the string for the test .po file.
Parameters
string $langcode: The language code.
Return value
string Contents for the test .po file.
1 call to DistributionProfileTranslationTest::getPo()
- DistributionProfileTranslationTest::prepareEnvironment in core/
tests/ Drupal/ FunctionalTests/ Installer/ DistributionProfileTranslationTest.php - Prepares the current environment for running the test.
File
- core/
tests/ Drupal/ FunctionalTests/ Installer/ DistributionProfileTranslationTest.php, line 125
Class
- DistributionProfileTranslationTest
- Tests distribution profile support.
Namespace
Drupal\FunctionalTests\InstallerCode
protected function getPo($langcode) {
return <<<ENDPO
msgid ""
msgstr ""
msgid "Save and continue"
msgstr "Save and continue {<span class="php-variable">$langcode</span>}"
ENDPO;
}