function LocaleImportFunctionalTest::testConfigTranslationImportingPoFile

Same name and namespace in other branches
  1. 8.9.x core/modules/locale/tests/src/Functional/LocaleImportFunctionalTest.php \Drupal\Tests\locale\Functional\LocaleImportFunctionalTest::testConfigtranslationImportingPoFile()
  2. 10 core/modules/locale/tests/src/Functional/LocaleImportFunctionalTest.php \Drupal\Tests\locale\Functional\LocaleImportFunctionalTest::testConfigTranslationImportingPoFile()
  3. 11.x core/modules/locale/tests/src/Functional/LocaleImportFunctionalTest.php \Drupal\Tests\locale\Functional\LocaleImportFunctionalTest::testConfigTranslationImportingPoFile()

Tests .po file import with user.settings configuration.

File

core/modules/locale/tests/src/Functional/LocaleImportFunctionalTest.php, line 369

Class

LocaleImportFunctionalTest
Tests the import of locale files.

Namespace

Drupal\Tests\locale\Functional

Code

public function testConfigTranslationImportingPoFile() {
    // Set the language code.
    $langcode = 'de';
    // Import a .po file to translate.
    $this->importPoFile($this->getPoFileWithConfigDe(), [
        'langcode' => $langcode,
    ]);
    // Check that the 'Anonymous' string is translated.
    $config = \Drupal::languageManager()->getLanguageConfigOverride($langcode, 'user.settings');
    $this->assertEquals('Anonymous German', $config->get('anonymous'));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.