public function LocaleConfigSubscriberForeignTest::testLocaleUpdateActiveTranslation in Drupal 8
Same name and namespace in other branches
- 9 core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberForeignTest.php \Drupal\Tests\locale\Kernel\LocaleConfigSubscriberForeignTest::testLocaleUpdateActiveTranslation()
- 10 core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberForeignTest.php \Drupal\Tests\locale\Kernel\LocaleConfigSubscriberForeignTest::testLocaleUpdateActiveTranslation()
Tests updating community translations of shipped configuration.
File
- core/
modules/ locale/ tests/ src/ Kernel/ LocaleConfigSubscriberForeignTest.php, line 83
Class
- LocaleConfigSubscriberForeignTest
- Tests default configuration handling with a foreign default language.
Namespace
Drupal\Tests\locale\KernelCode
public function testLocaleUpdateActiveTranslation() {
$config_name = 'locale_test.translation';
$this
->saveLocaleTranslationData($config_name, 'test', 'English test', 'Updated Hungarian test', 'hu', TRUE);
$this
->assertTranslation($config_name, 'Updated Hungarian test', 'hu', FALSE);
}