diff options
author | webchick | 2012-08-26 16:41:14 (GMT) |
---|---|---|
committer | webchick | 2012-08-26 16:41:14 (GMT) |
commit | 0295b6827008112839aa4bfd9c366c22fcf1054e (patch) | |
tree | 6006b4f83c090b816cead756d0271ff72edb00a5 | |
parent | fda2d671101bc2097e088b7031eeeb4e0e55f15e (diff) |
Issue #1756122 by Schnitzel, Bojhan: Better Names and Description for Language Negotiations.
-rw-r--r-- | core/modules/language/language.module | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/modules/language/language.module b/core/modules/language/language.module index a94876e..0a74712 100644 --- a/core/modules/language/language.module +++ b/core/modules/language/language.module @@ -367,7 +367,7 @@ function language_language_negotiation_info() { 'file' => $file, 'weight' => -8, 'name' => t('URL'), - 'description' => t('Determine the language from the URL (Path prefix or domain).'), + 'description' => t('Language from the URL (Path prefix or domain).'), 'config' => 'admin/config/regional/language/detection/url', ); @@ -380,7 +380,7 @@ function language_language_negotiation_info() { 'file' => $file, 'weight' => -6, 'name' => t('Session'), - 'description' => t('Determine the language from a request/session parameter.'), + 'description' => t('Language from a request/session parameter.'), 'config' => 'admin/config/regional/language/detection/session', ); @@ -388,8 +388,8 @@ function language_language_negotiation_info() { 'callbacks' => array('negotiation' => 'language_from_user'), 'file' => $file, 'weight' => -4, - 'name' => t('User'), - 'description' => t("Follow the user's language preference."), + 'name' => t('Account'), + 'description' => t('Account site language setting.'), ); $negotiation_info[LANGUAGE_NEGOTIATION_BROWSER] = array( @@ -398,7 +398,7 @@ function language_language_negotiation_info() { 'weight' => -2, 'cache' => 0, 'name' => t('Browser'), - 'description' => t("Determine the language from the browser's language settings."), + 'description' => t("Language from the browser's language settings."), ); $negotiation_info[LANGUAGE_NEGOTIATION_INTERFACE] = array( |