summaryrefslogtreecommitdiff
path: root/modules/user/helpers/user_theme.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-09-04 20:28:46 -0700
committerBharat Mediratta <bharat@menalto.com>2009-09-04 20:28:46 -0700
commita25640f9b26c75e14109f07fcc4863adc300f062 (patch)
tree2ba95e70412639ccdd3489ca4fd2fd10818d49b2 /modules/user/helpers/user_theme.php
parentbca7080debcdf67bc0b35e67f2697e56414b5159 (diff)
Shorten the name in the block so that it doesn't wrap.
Use &laquo; and &raquo; in the << none >> text.
Diffstat (limited to 'modules/user/helpers/user_theme.php')
-rw-r--r--modules/user/helpers/user_theme.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/user/helpers/user_theme.php b/modules/user/helpers/user_theme.php
index 5b973ef3..184a2bc9 100644
--- a/modules/user/helpers/user_theme.php
+++ b/modules/user/helpers/user_theme.php
@@ -42,9 +42,10 @@ class user_theme_Core {
if (count($locales) > 1) {
$block = new Block();
$block->css_id = "gUserLanguageBlock";
- $block->title = t("Select Language Preference");
+ $block->title = t("Language Preference");
$block->content = new View("user_languages_block.html");
- $block->content->installed_locales = array_merge(array("" => t("« none »")), $locales);
+ $block->content->installed_locales =
+ array_merge(array("" => t("&laquo; none &raquo;")), $locales);
$block->content->selected = (string) user::cookie_locale();
return $block;
}