reverted: --- b/core/modules/language/src/Element/LanguageConfiguration.php +++ a/core/modules/language/src/Element/LanguageConfiguration.php @@ -97,7 +97,7 @@ protected static function getDefaultOptions() { $language_options = array( LanguageInterface::LANGCODE_SITE_DEFAULT => t("Site's default language (!language)", array('!language' => static::languageManager()->getDefaultLanguage()->getName())), + 'current_interface' => t('Current interface language'), - 'current_interface' => t('!type language selected for page', array('!type' => t('User interface text'))), 'authors_default' => t("Author's preferred language"), ); diff -u b/core/modules/views/src/Plugin/views/PluginBase.php b/core/modules/views/src/Plugin/views/PluginBase.php --- b/core/modules/views/src/Plugin/views/PluginBase.php +++ b/core/modules/views/src/Plugin/views/PluginBase.php @@ -524,7 +524,7 @@ // The entity languages should come first, if requested. if ($flags & PluginBase::INCLUDE_ENTITY) { - $list['***LANGUAGE_entity_translation***'] = $this->t('Content language of view row'); + $list['***LANGUAGE_entity_translation***'] = $this->t('Language of content in view row'); $list['***LANGUAGE_entity_default***'] = $this->t('Original language of content in view row'); } diff -u b/core/modules/views_ui/src/Tests/ViewEditTest.php b/core/modules/views_ui/src/Tests/ViewEditTest.php --- b/core/modules/views_ui/src/Tests/ViewEditTest.php +++ b/core/modules/views_ui/src/Tests/ViewEditTest.php @@ -106,7 +106,7 @@ $langcode_url = 'admin/structure/views/nojs/display/' . $view_name . '/' . $display . '/rendering_language'; $this->assertNoLinkByHref($langcode_url); $this->assertNoLink(t('!type language selected for page', array('!type' => t('Content')))); - $this->assertNoLink(t('Content language of view row')); + $this->assertNoLink(t('Language of content in view row')); } // Make the site multilingual and test the options again. @@ -123,12 +123,12 @@ if ($view_name == 'test_view') { $this->assertNoLinkByHref($langcode_url); $this->assertNoLink(t('!type language selected for page', array('!type' => t('Content')))); - $this->assertNoLink(t('Content language of view row')); + $this->assertNoLink(t('Language of content in view row')); } else { $this->assertLinkByHref($langcode_url); $this->assertNoLink(t('!type language selected for page', array('!type' => t('Content')))); - $this->assertLink(t('Content language of view row')); + $this->assertLink(t('Language of content in view row')); } $this->drupalGet($langcode_url);