diff options
author | Jeremy Bicha <jbicha@ubuntu.com> | 2012-12-03 19:09:48 -0500 |
---|---|---|
committer | Jeremy Bicha <jbicha@ubuntu.com> | 2012-12-03 21:02:55 -0500 |
commit | bde2536ee72672c4cd58af7cbb3cf42a42962c21 (patch) | |
tree | 9f088707a9772ca9ceba7d4bf4264228f07191b3 /src/nautilus-list-model.c | |
parent | b9294bb0ac7d2b971ceea51b8c683e67557b1ad4 (diff) | |
download | nautilus-bde2536ee72672c4cd58af7cbb3cf42a42962c21.tar.gz |
general: Use proper Unicode ellipsis instead of three periods
https://bugzilla.gnome.org/show_bug.cgi?id=689586
Diffstat (limited to 'src/nautilus-list-model.c')
-rw-r--r-- | src/nautilus-list-model.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-list-model.c b/src/nautilus-list-model.c index 1c3589ea3..fb874841b 100644 --- a/src/nautilus-list-model.c +++ b/src/nautilus-list-model.c @@ -375,7 +375,7 @@ nautilus_list_model_get_value (GtkTreeModel *tree_model, GtkTreeIter *iter, int if (file_entry->parent->loaded) { g_value_set_string (value, _("(Empty)")); } else { - g_value_set_string (value, _("Loading...")); + g_value_set_string (value, _("Loading…")); } } } else { |