protected function LocaleConfigSubscriberTest::setUpLocale in Drupal 10
Same name and namespace in other branches
- 8 core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberTest.php \Drupal\Tests\locale\Kernel\LocaleConfigSubscriberTest::setUpLocale()
- 9 core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberTest.php \Drupal\Tests\locale\Kernel\LocaleConfigSubscriberTest::setUpLocale()
Sets up the locale storage strings to be in line with configuration.
File
- core/
modules/ locale/ tests/ src/ Kernel/ LocaleConfigSubscriberTest.php, line 98
Class
- LocaleConfigSubscriberTest
- Tests that shipped configuration translations are updated correctly.
Namespace
Drupal\Tests\locale\KernelCode
protected function setUpLocale() {
// Set up the locale database the same way we have in the config samples.
$this
->setUpNoTranslation('locale_test.no_translation', 'test', 'Test', 'de');
$this
->setUpTranslation('locale_test.translation', 'test', 'English test', 'German test', 'de');
$this
->setUpTranslation('locale_test.translation_multiple', 'test', 'English test', 'German test', 'de');
}