summaryrefslogtreecommitdiff
path: root/panels/common
diff options
context:
space:
mode:
authorJeremy Bicha <jbicha@ubuntu.com>2012-12-02 15:31:40 -0500
committerJeremy Bicha <jbicha@ubuntu.com>2012-12-03 09:13:47 -0500
commitfa9ef0d5d901f7d37453be4ddab5e1db497b4044 (patch)
treec1f1aeebf07e213dd88dc429cb6d2944020cb6e3 /panels/common
parentb0c973c14c8b095161f582320db0664cf7d1fcd6 (diff)
downloadgnome-control-center-fa9ef0d5d901f7d37453be4ddab5e1db497b4044.tar.gz
common: Use the proper Unicode ellipsis (…) instead of three dots
https://bugzilla.gnome.org/show_bug.cgi?id=689497
Diffstat (limited to 'panels/common')
-rw-r--r--panels/common/cc-language-chooser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/panels/common/cc-language-chooser.c b/panels/common/cc-language-chooser.c
index 363c35893..6a885d07e 100644
--- a/panels/common/cc-language-chooser.c
+++ b/panels/common/cc-language-chooser.c
@@ -115,9 +115,9 @@ cc_add_user_languages (GtkTreeModel *model)
/* The rest of the languages */
g_hash_table_foreach (user_langs, (GHFunc) languages_foreach_cb, store);
- /* And now the "Other..." selection */
+ /* And now the "Other…" selection */
gtk_list_store_append (store, &iter);
- gtk_list_store_set (store, &iter, LOCALE_COL, NULL, DISPLAY_LOCALE_COL, _("Other..."), -1);
+ gtk_list_store_set (store, &iter, LOCALE_COL, NULL, DISPLAY_LOCALE_COL, _("Other…"), -1);
g_hash_table_destroy (user_langs);
}