diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-09-08 15:36:30 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-09-08 15:36:30 +0000 |
commit | 4c26ea31ee7ff2d36e08d4d3295c8048e2d4745e (patch) | |
tree | a157c53b1c36c582dd6c5860aa0f8e2d69d546e5 | |
parent | af884c3888c9db680fa11b8fd7804265f4c71960 (diff) | |
download | brdo-4c26ea31ee7ff2d36e08d4d3295c8048e2d4745e.tar.gz brdo-4c26ea31ee7ff2d36e08d4d3295c8048e2d4745e.tar.bz2 |
#305436 by lelutin and Damien Tournoud: Fix broken closing tag.
-rw-r--r-- | modules/locale/locale.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/locale/locale.module b/modules/locale/locale.module index 6bfbfb30b..54cea750f 100644 --- a/modules/locale/locale.module +++ b/modules/locale/locale.module @@ -51,7 +51,7 @@ function locale_help($path, $arg) { $output = '<p>' . t("Language negotiation settings determine the site's presentation language. Available options include:") . '</p>'; $output .= '<ul><li>' . t('<strong>None.</strong> The default language is used for site presentation, though users may (optionally) select a preferred language on the <em>My Account</em> page. (User language preferences will be used for site e-mails, if available.)') . '</li>'; $output .= '<li>' . t('<strong>Path prefix only.</strong> The presentation language is determined by examining the path for a language code or other custom string that matches the path prefix (if any) specified for each language. If a suitable prefix is not identified, the default language is used. <em>Example: "example.com/de/contact" sets presentation language to German based on the use of "de" within the path.</em>') . '</li>'; - $output .= '<li>' . t("<strong>Path prefix with language fallback.</strong> The presentation language is determined by examining the path for a language code or other custom string that matches the path prefix (if any) specified for each language. If a suitable prefix is not identified, the display language is determined by the user's language preferences from the <em>My Account</em> page, or by the browser's language settings. If a presentation language cannot be determined, the default language is used.") . '</t>'; + $output .= '<li>' . t("<strong>Path prefix with language fallback.</strong> The presentation language is determined by examining the path for a language code or other custom string that matches the path prefix (if any) specified for each language. If a suitable prefix is not identified, the display language is determined by the user's language preferences from the <em>My Account</em> page, or by the browser's language settings. If a presentation language cannot be determined, the default language is used.") . '</li>'; $output .= '<li>' . t('<strong>Domain name only.</strong> The presentation language is determined by examining the domain used to access the site, and comparing it to the language domain (if any) specified for each language. If a match is not identified, the default language is used. <em>Example: "http://de.example.com/contact" sets presentation language to German based on the use of "http://de.example.com" in the domain.</em>') . '</li></ul>'; $output .= '<p>' . t('The path prefix or domain name for a language may be set by editing the <a href="@languages">available languages</a>. In the absence of an appropriate match, the site is displayed in the <a href="@languages">default language</a>.', array('@languages' => url('admin/settings/language'))) . '</p>'; return $output; |