[totem] all: Ellipsis changes
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [totem] all: Ellipsis changes
- Date: Fri, 14 Feb 2014 15:43:35 +0000 (UTC)
commit 16a7bd2579105f06ffdcc6dfa57e4870e9a9ee82
Author: Bastien Nocera <hadess hadess net>
Date: Fri Feb 14 16:02:39 2014 +0100
all: Ellipsis changes
Changes "..." to "…"
data/totem.ui | 6 +++---
.../brasero-disc-recorder/totem-disc-recorder.c | 6 +++---
src/plugins/chapters/chapters-list.ui | 4 ++--
src/plugins/save-file/totem-save-file.c | 2 +-
src/plugins/screenshot/totem-gallery-progress.c | 2 +-
src/plugins/screenshot/totem-screenshot-plugin.c | 2 +-
src/plugins/skipto/totem-skipto-plugin.c | 2 +-
7 files changed, 12 insertions(+), 12 deletions(-)
---
diff --git a/data/totem.ui b/data/totem.ui
index 5c3769d..16155eb 100644
--- a/data/totem.ui
+++ b/data/totem.ui
@@ -29,12 +29,12 @@
<menu id="addmenu">
<section>
<item>
- <attribute name="label" translatable="yes">Add _Local Video...</attribute>
+ <attribute name="label" translatable="yes">Add _Local Video…</attribute>
<attribute name="action">app.open</attribute>
<attribute name="accel"><Ctrl>O</attribute>
</item>
<item>
- <attribute name="label" translatable="yes">Add _Web Video...</attribute>
+ <attribute name="label" translatable="yes">Add _Web Video…</attribute>
<attribute name="action">app.open-location</attribute>
<attribute name="accel"><Ctrl>L</attribute>
</item>
@@ -100,7 +100,7 @@
<attribute name="label" translatable="yes">S_ubtitles</attribute>
<section>
<item>
- <attribute name="label" translatable="yes">_Select Text
Subtitles...</attribute>
+ <attribute name="label" translatable="yes">_Select Text
Subtitles…</attribute>
<attribute name="action">app.select-subtitle</attribute>
</item>
<section id="subtitle-download-placeholder"/>
diff --git a/src/plugins/brasero-disc-recorder/totem-disc-recorder.c
b/src/plugins/brasero-disc-recorder/totem-disc-recorder.c
index 56d4892..b250e6f 100644
--- a/src/plugins/brasero-disc-recorder/totem-disc-recorder.c
+++ b/src/plugins/brasero-disc-recorder/totem-disc-recorder.c
@@ -391,9 +391,9 @@ impl_activate (PeasActivatable *plugin)
/* Install the menu */
menu = totem_object_get_menu_section (priv->totem, "burn-placeholder");
- menu_append_hidden (G_MENU (menu), _("_Create Video Disc..."), "app.media-optical-video-new");
- menu_append_hidden (G_MENU (menu), _("Copy Vide_o DVD..."), "app.media-optical-copy");
- menu_append_hidden (G_MENU (menu), _("Copy (S)VCD..."), "app.media-optical-copy-vcd");
+ menu_append_hidden (G_MENU (menu), _("_Create Video Disc…"), "app.media-optical-video-new");
+ menu_append_hidden (G_MENU (menu), _("Copy Vide_o DVD…"), "app.media-optical-copy");
+ menu_append_hidden (G_MENU (menu), _("Copy (S)VCD…"), "app.media-optical-copy-vcd");
if (!totem_object_is_paused (priv->totem) && !totem_object_is_playing (priv->totem)) {
set_menu_items_state (pi, FALSE, FALSE, FALSE);
diff --git a/src/plugins/chapters/chapters-list.ui b/src/plugins/chapters/chapters-list.ui
index 3e0520f..8d119c4 100644
--- a/src/plugins/chapters/chapters-list.ui
+++ b/src/plugins/chapters/chapters-list.ui
@@ -86,7 +86,7 @@
<property name="sensitive">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
- <property name="tooltip_text" translatable="yes">Add Chapter...</property>
+ <property name="tooltip_text" translatable="yes">Add Chapter…</property>
<property name="relief">none</property>
<signal name="clicked" handler="add_button_clicked_cb"/>
<child>
@@ -201,7 +201,7 @@
<property name="spacing">6</property>
<child>
<object class="GtkButton" id="load_button">
- <property name="label" translatable="yes">Load Chapters...</property>
+ <property name="label" translatable="yes">Load Chapters…</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
diff --git a/src/plugins/save-file/totem-save-file.c b/src/plugins/save-file/totem-save-file.c
index 822705c..36341b9 100644
--- a/src/plugins/save-file/totem-save-file.c
+++ b/src/plugins/save-file/totem-save-file.c
@@ -282,7 +282,7 @@ impl_activate (PeasActivatable *plugin)
/* add UI */
menu = totem_object_get_menu_section (priv->totem, "save-placeholder");
- item = g_menu_item_new (_("Save a Copy..."), "app.save-as");
+ item = g_menu_item_new (_("Save a Copy…"), "app.save-as");
g_menu_item_set_attribute (item, "accel", "s", "<Primary>s");
g_menu_append_item (G_MENU (menu), item);
diff --git a/src/plugins/screenshot/totem-gallery-progress.c b/src/plugins/screenshot/totem-gallery-progress.c
index f8361ef..bd460b4 100644
--- a/src/plugins/screenshot/totem-gallery-progress.c
+++ b/src/plugins/screenshot/totem-gallery-progress.c
@@ -98,7 +98,7 @@ totem_gallery_progress_new (GPid child_pid, const gchar *output_filename)
self->priv->output_filename = g_strdup (output_filename);
/* Set up the window */
- gtk_window_set_title (GTK_WINDOW (self), _("Creating Gallery..."));
+ gtk_window_set_title (GTK_WINDOW (self), _("Creating Gallery…"));
gtk_window_set_resizable (GTK_WINDOW (self), FALSE);
gtk_dialog_add_button (GTK_DIALOG (self), _("_Cancel"), GTK_RESPONSE_CANCEL);
gtk_dialog_set_default_response (GTK_DIALOG (self), GTK_RESPONSE_CANCEL);
diff --git a/src/plugins/screenshot/totem-screenshot-plugin.c
b/src/plugins/screenshot/totem-screenshot-plugin.c
index a862d7b..ee53b6f 100644
--- a/src/plugins/screenshot/totem-screenshot-plugin.c
+++ b/src/plugins/screenshot/totem-screenshot-plugin.c
@@ -342,7 +342,7 @@ impl_activate (PeasActivatable *plugin)
g_variant_new_string ("action-disabled"));
g_menu_append_item (G_MENU (menu), item);
g_object_unref (item);
- item = g_menu_item_new (_("Create Screenshot _Gallery..."), "app.take-gallery");
+ item = g_menu_item_new (_("Create Screenshot _Gallery…"), "app.take-gallery");
g_menu_item_set_attribute_value (item, "hidden-when",
g_variant_new_string ("action-disabled"));
g_menu_append_item (G_MENU (menu), item);
diff --git a/src/plugins/skipto/totem-skipto-plugin.c b/src/plugins/skipto/totem-skipto-plugin.c
index 0494710..f459de8 100644
--- a/src/plugins/skipto/totem-skipto-plugin.c
+++ b/src/plugins/skipto/totem-skipto-plugin.c
@@ -203,7 +203,7 @@ impl_activate (PeasActivatable *plugin)
g_action_map_add_action (G_ACTION_MAP (priv->totem), G_ACTION (priv->action));
menu = totem_object_get_menu_section (priv->totem, "skipto-placeholder");
- item = g_menu_item_new (_("_Skip To..."), "app.skip-to");
+ item = g_menu_item_new (_("_Skip To…"), "app.skip-to");
g_menu_item_set_attribute (item, "accel", "s", "<Ctrl>K");
g_menu_append_item (G_MENU (menu), item);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]