[gnome-terminal] menubar: Remove ellipses from preference entries



commit 0bed4523ee6c98ce61fbae40c27c8bf62fa5c976
Author: Egmont Koblinger <egmont gmail com>
Date:   Sat Jan 6 11:21:10 2018 +0100

    menubar: Remove ellipses from preference entries
    
    https://bugzilla.gnome.org/show_bug.cgi?id=792256

 src/terminal-menubar.ui |    6 +++---
 src/terminal-window.c   |    4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/src/terminal-menubar.ui b/src/terminal-menubar.ui
index eabed1d..eb96cc9 100644
--- a/src/terminal-menubar.ui
+++ b/src/terminal-menubar.ui
@@ -22,7 +22,7 @@
       <section id="new-terminal-section" />
       <section>
         <item>
-          <attribute name="label" translatable="yes">New _Profile…</attribute>
+          <attribute name="label" translatable="yes">New _Profile</attribute>
           <attribute name="action">win.new-profile</attribute>
         </item>
         <item>
@@ -85,11 +85,11 @@
       </section>
       <section>
         <item>
-          <attribute name="label" translatable="yes">P_references…</attribute>
+          <attribute name="label" translatable="yes">P_references</attribute>
           <attribute name="action">win.edit-preferences</attribute>
         </item>
         <item>
-          <attribute name="label" translatable="yes">Pr_ofile Preferences…</attribute>
+          <attribute name="label" translatable="yes">Pr_ofile Preferences</attribute>
           <attribute name="action">win.edit-profile</attribute>
         </item>
       </section>
diff --git a/src/terminal-window.c b/src/terminal-window.c
index 6328b48..5adf7d2 100644
--- a/src/terminal-window.c
+++ b/src/terminal-window.c
@@ -1822,7 +1822,7 @@ screen_show_popup_menu_cb (TerminalScreen *screen,
     g_menu_append_section (submenu5, NULL, profiles_menu);
 
     gs_unref_object GMenu *section51 = g_menu_new ();
-    g_menu_append (section51, _("_Profile Preferences…"), "win.edit-profile");
+    g_menu_append (section51, _("_Profile Preferences"), "win.edit-profile");
     g_menu_append_section (submenu5, NULL, G_MENU_MODEL (section51));
 
     gs_unref_object GMenuItem *item5 = g_menu_item_new (_("P_rofiles"), NULL);
@@ -1832,7 +1832,7 @@ screen_show_popup_menu_cb (TerminalScreen *screen,
     /* If there's only a single profile, put the Profile Preferences item in the
      * context menu itself.
      */
-    g_menu_append (section5, _("_Profile Preferences…"), "win.edit-profile");
+    g_menu_append (section5, _("_Profile Preferences"), "win.edit-profile");
   }
 
   g_menu_append_section (menu, NULL, G_MENU_MODEL (section5));


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]