diff --git a/core/modules/config_translation/src/Tests/ConfigTranslationUiTest.php b/core/modules/config_translation/src/Tests/ConfigTranslationUiTest.php index cb55955..f2c3c7c 100644 --- a/core/modules/config_translation/src/Tests/ConfigTranslationUiTest.php +++ b/core/modules/config_translation/src/Tests/ConfigTranslationUiTest.php @@ -192,7 +192,7 @@ public function testSiteInformationTranslationUi() { $this->assertText($site_name); $this->assertText($site_slogan); - // Translate 'Site name' label in French + // Translate 'Site name' label in French. $search = array( 'string' => $site_name_label, 'langcode' => 'fr', @@ -207,18 +207,18 @@ public function testSiteInformationTranslationUi() { ); $this->drupalPostForm('admin/config/regional/translate', $edit, t('Save translations')); - // Ensure that the label is in French (and not in English) + // Ensure that the label is in French (and not in English). $this->drupalGet("fr/$translation_base_url/fr/edit"); $this->assertText($fr_site_name_label); $this->assertNoText($site_name_label); // Ensure that the label is also in French (and not in English) - // when editing another language with the interface in French + // when editing another language with the interface in French. $this->drupalGet("fr/$translation_base_url/ta/edit"); $this->assertText($fr_site_name_label); $this->assertNoText($site_name_label); - // Ensure that the label is not translated when the interface is in English + // Ensure that the label is not translated when the interface is in English. $this->drupalGet("$translation_base_url/fr/edit"); $this->assertText($site_name_label); $this->assertNoText($fr_site_name_label);