summaryrefslogtreecommitdiff
path: root/modules/user/helpers
diff options
context:
space:
mode:
authorAndy Staudacher <andy.st@gmail.com>2009-07-02 20:49:47 -0700
committerAndy Staudacher <andy.st@gmail.com>2009-07-02 20:49:47 -0700
commit93e9efed971c1eee8e754c900972c863984e066e (patch)
tree715b1dc9df2a815b6338d823fcc61d346aead459 /modules/user/helpers
parent1c9dee93de837e7bf4a2ba038388ae1836653e0a (diff)
Use Unicode characters (looks better to translator, and fixes normalization issue in translation server)
Diffstat (limited to 'modules/user/helpers')
-rw-r--r--modules/user/helpers/user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/helpers/user.php b/modules/user/helpers/user.php
index 9e9d4ca1..a59588f8 100644
--- a/modules/user/helpers/user.php
+++ b/modules/user/helpers/user.php
@@ -82,7 +82,7 @@ class user_Core {
$locales = locale::installed();
if (count($locales) > 1) {
// Put "none" at the first position in the array
- $locales = array_merge(array("" => t("&laquo; none &raquo;")), $locales);
+ $locales = array_merge(array("" => t("« none »")), $locales);
$selected_locale = ($user && $user->locale) ? $user->locale : "";
$form->dropdown("locale")
->label(t("Language Preference"))