summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-12-02 00:28:43 +0000
committerDries Buytaert <dries@buytaert.net>2009-12-02 00:28:43 +0000
commit2bc5334aaefb8d1b34b7907a3a86ab7fdaa66b26 (patch)
treef82f8a25dfdec96db682b4a07807d5787ed5a608 /includes
parent54fc6e99bdb5a6fb01531c86d451ad0ddd3e84b2 (diff)
downloadbrdo-2bc5334aaefb8d1b34b7907a3a86ab7fdaa66b26.tar.gz
brdo-2bc5334aaefb8d1b34b7907a3a86ab7fdaa66b26.tar.bz2
- Patch #642010 by yoroy: shorten and reorganize help text for language stuff.
Diffstat (limited to 'includes')
-rw-r--r--includes/locale.inc5
1 files changed, 2 insertions, 3 deletions
diff --git a/includes/locale.inc b/includes/locale.inc
index 67c0429ea..1dae9c722 100644
--- a/includes/locale.inc
+++ b/includes/locale.inc
@@ -712,14 +712,13 @@ function locale_language_providers_url_form() {
$form = array();
$form['locale_language_negotiation_url_part'] = array(
- '#title' => t('URL language indicator'),
+ '#title' => t('The part of the URL that will determine the language.'),
'#type' => 'radios',
'#options' => array(
LOCALE_LANGUAGE_NEGOTIATION_URL_PREFIX => t('Path prefix'),
LOCALE_LANGUAGE_NEGOTIATION_URL_DOMAIN => t('Domain'),
),
'#default_value' => variable_get('locale_language_negotiation_url_part', LOCALE_LANGUAGE_NEGOTIATION_URL_PREFIX),
- '#description' => t('Select which part of the URL will determine the language.'),
);
$form['#redirect'] = 'admin/config/regional/language/configure';
@@ -737,7 +736,7 @@ function locale_language_providers_session_form() {
'#title' => t('Request/session parameter'),
'#type' => 'textfield',
'#default_value' => variable_get('locale_language_negotiation_session_param', 'language'),
- '#description' => t('This value will be the name of the request/session parameter which will be used to determine the desired language.'),
+ '#description' => t('Name of the request/session parameter used to determine the desired language.'),
);
$form['#redirect'] = 'admin/config/regional/language/configure';