Issue #2312671 by olli: Fixed Typo langauge.
parent
6749237dcb
commit
050ce49fec
|
@ -1175,7 +1175,7 @@ function install_select_language(&$install_state) {
|
|||
// If a valid language code is set, continue with the next installation step.
|
||||
// When translations from the localization server are used, any language code
|
||||
// is accepted because the standard language list is kept in sync with the
|
||||
// langauges available at http://localize.drupal.org.
|
||||
// languages available at http://localize.drupal.org.
|
||||
// When files from the translation directory are used, we only accept
|
||||
// languages for which a file is available.
|
||||
if (!empty($install_state['parameters']['langcode'])) {
|
||||
|
|
|
@ -392,7 +392,7 @@ class LocaleUpdateTest extends LocaleUpdateBase {
|
|||
}
|
||||
|
||||
/**
|
||||
* Tests automatic translation import when a custom langauge is added.
|
||||
* Tests automatic translation import when a custom language is added.
|
||||
*/
|
||||
public function testEnableCustomLanguage() {
|
||||
// Make the hidden test modules look like a normal custom module.
|
||||
|
|
|
@ -92,7 +92,7 @@ class MenuLinkContent extends MenuLinkBase implements ContainerFactoryPluginInte
|
|||
}
|
||||
|
||||
$this->entityManager = $entity_manager;
|
||||
$this->langaugeManager = $language_manager;
|
||||
$this->languageManager = $language_manager;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -157,7 +157,7 @@ class MenuLinkContent extends MenuLinkBase implements ContainerFactoryPluginInte
|
|||
// We only need to get the title from the actual entity if it may be a
|
||||
// translation based on the current language context. This can only happen
|
||||
// if the site is configured to be multilingual.
|
||||
if ($this->langaugeManager->isMultilingual()) {
|
||||
if ($this->languageManager->isMultilingual()) {
|
||||
return $this->getEntity()->getTitle();
|
||||
}
|
||||
return $this->pluginDefinition['title'];
|
||||
|
@ -170,7 +170,7 @@ class MenuLinkContent extends MenuLinkBase implements ContainerFactoryPluginInte
|
|||
// We only need to get the description from the actual entity if it may be a
|
||||
// translation based on the current language context. This can only happen
|
||||
// if the site is configured to be multilingual.
|
||||
if ($this->langaugeManager->isMultilingual()) {
|
||||
if ($this->languageManager->isMultilingual()) {
|
||||
return $this->getEntity()->getDescription();
|
||||
}
|
||||
return $this->pluginDefinition['description'];
|
||||
|
|
|
@ -500,7 +500,7 @@ class EntityTranslationTest extends EntityLanguageTestBase {
|
|||
$this->assertEqual($build['label']['#markup'], $values[$current_langcode]['name'], 'By default the entity is rendered in the current language.');
|
||||
|
||||
$langcodes = array_combine($this->langcodes, $this->langcodes);
|
||||
// We have no translation for the $langcode2 langauge, hence the expected
|
||||
// We have no translation for the $langcode2 language, hence the expected
|
||||
// result is the topmost existing translation, that is $langcode.
|
||||
$langcodes[$langcode2] = $langcode;
|
||||
foreach ($langcodes as $desired => $expected) {
|
||||
|
|
Loading…
Reference in New Issue