Issue #365615 follow-up by attiks, Gábor Hojtsy: Fix typos, add CHANGELOG.txt entry.

8.0.x
webchick 2012-09-06 03:42:43 -07:00
parent 295d4e45cf
commit e904f789fb
4 changed files with 4 additions and 3 deletions

View File

@ -45,6 +45,7 @@ Drupal 8.0, xxxx-xx-xx (development version)
path prefix detection is now default.
* Added HTML 5 language markup; language information added in markup in
several more places.
* Made it possible to assign external language codes to local languages.
* Simplified and added new features in interface translation:
* Made interface translation directly accessible from language list.
* Centralized interface translation import to one directory.

View File

@ -883,7 +883,7 @@ function language_negotiation_configure_browser_form($form, &$form_state) {
);
$form['new_mapping']['drupal_langcode'] = array(
'#type' => 'select',
'#title' => t('Drupal langauge'),
'#title' => t('Drupal language'),
'#options' => $language_options,
'#default_value' => '',
);

View File

@ -84,7 +84,7 @@ class LanguageConfigurationTest extends WebTestBase {
$this->drupalPost(NULL, $edit, t('Save configuration'));
$this->assertFieldByXPath('//input[@name="prefix[fr]"]', 'french', 'French path prefix has changed.');
// Check that prefix of non default langauge cannot be changed to
// Check that prefix of non default language cannot be changed to
// empty string.
$edit = array(
'prefix[en]' => '',

View File

@ -76,7 +76,7 @@ class LanguageDependencyInjectionTest extends WebTestBase {
// Initialize the language system.
drupal_language_initialize();
// The langauge system creates a Language object which contains the
// The language system creates a Language object which contains the
// same properties as the new default language object.
$expected = new Language($new_language_default);
$result = language(LANGUAGE_TYPE_INTERFACE);