[yelp] Use the '…' unicode character instead of three points '...'
- From: Yosef Or Boczko <yoseforb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [yelp] Use the '…' unicode character instead of three points '...'
- Date: Tue, 17 Jun 2014 22:57:54 +0000 (UTC)
commit a754d788eb7d64a326ba48639f811621b3875a8c
Author: Yosef Or Boczko <yoseforb src gnome org>
Date: Wed Jun 18 01:55:47 2014 +0300
Use the '…' unicode character instead of three points '...'
libyelp/yelp-location-entry.c | 2 +-
libyelp/yelp-view.c | 10 +++++-----
src/yelp-window.c | 4 ++--
3 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/libyelp/yelp-location-entry.c b/libyelp/yelp-location-entry.c
index 5b970a0..30bc01b 100644
--- a/libyelp/yelp-location-entry.c
+++ b/libyelp/yelp-location-entry.c
@@ -435,7 +435,7 @@ location_entry_constructed (GObject *object)
gtk_list_store_append (priv->history, &iter);
gtk_list_store_set (priv->history, &iter,
HISTORY_COL_ICON, "edit-find-symbolic",
- HISTORY_COL_TITLE, _("Search..."),
+ HISTORY_COL_TITLE, _("Search…"),
HISTORY_COL_FLAGS, LOCATION_ENTRY_IS_SEARCH,
-1);
}
diff --git a/libyelp/yelp-view.c b/libyelp/yelp-view.c
index e3e11d3..cff086d 100644
--- a/libyelp/yelp-view.c
+++ b/libyelp/yelp-view.c
@@ -1385,18 +1385,18 @@ view_populate_popup (YelpView *view,
gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
if (image)
- item = gtk_menu_item_new_with_mnemonic (_("_Save Image As..."));
+ item = gtk_menu_item_new_with_mnemonic (_("_Save Image As…"));
else
- item = gtk_menu_item_new_with_mnemonic (_("_Save Video As..."));
+ item = gtk_menu_item_new_with_mnemonic (_("_Save Video As…"));
g_signal_connect (item, "activate",
G_CALLBACK (popup_save_image), view);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
if (nautilus_sendto) {
if (image)
- item = gtk_menu_item_new_with_mnemonic (_("S_end Image To..."));
+ item = gtk_menu_item_new_with_mnemonic (_("S_end Image To…"));
else
- item = gtk_menu_item_new_with_mnemonic (_("S_end Video To..."));
+ item = gtk_menu_item_new_with_mnemonic (_("S_end Video To…"));
g_signal_connect (item, "activate",
G_CALLBACK (popup_send_image), view);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
@@ -1425,7 +1425,7 @@ view_populate_popup (YelpView *view,
G_CALLBACK (popup_copy_code), view);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
- item = gtk_menu_item_new_with_mnemonic (_("Save Code _Block As..."));
+ item = gtk_menu_item_new_with_mnemonic (_("Save Code _Block As…"));
g_signal_connect (item, "activate",
G_CALLBACK (popup_save_code), view);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
diff --git a/src/yelp-window.c b/src/yelp-window.c
index 68262de..21cb71a 100644
--- a/src/yelp-window.c
+++ b/src/yelp-window.c
@@ -348,8 +348,8 @@ window_construct (YelpWindow *window)
menu = g_menu_new ();
section = g_menu_new ();
- g_menu_append (section, _("Find..."), "win.yelp-window-find");
- g_menu_append (section, _("Print..."), "win.yelp-view-print");
+ g_menu_append (section, _("Find…"), "win.yelp-window-find");
+ g_menu_append (section, _("Print…"), "win.yelp-view-print");
g_menu_append_section (menu, NULL, G_MENU_MODEL (section));
g_object_unref (section);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]