From a405052cd40841b2f10a5c23dc32575ac7731131 Mon Sep 17 00:00:00 2001 From: guinux Date: Sat, 27 Aug 2016 22:36:45 +0200 Subject: [PATCH] change to a shorter label for the update notification button --- po/pamac.pot | 10 +++------- src/tray.vala | 2 +- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/po/pamac.pot b/po/pamac.pot index 169e6d7..401640a 100644 --- a/po/pamac.pot +++ b/po/pamac.pot @@ -368,8 +368,9 @@ msgid_plural "%u available updates" msgstr[0] "" msgstr[1] "" -#: ../src/tray.vala -msgid "Show available updates" +#: ../src/tray.vala ../src/manager_window.vala ../resources/progress_dialog.ui +#: ../resources/manager_window.ui ../resources/updater_window.ui +msgid "Details" msgstr "" #: ../src/manager_window.vala @@ -384,11 +385,6 @@ msgstr "" msgid "Remove" msgstr "" -#: ../src/manager_window.vala ../resources/progress_dialog.ui -#: ../resources/manager_window.ui ../resources/updater_window.ui -msgid "Details" -msgstr "" - #: ../src/manager_window.vala #, c-format msgid "%u pending operation" diff --git a/src/tray.vala b/src/tray.vala index 52d70a5..c78ace9 100644 --- a/src/tray.vala +++ b/src/tray.vala @@ -227,7 +227,7 @@ namespace Pamac { try { close_notification(); notification = new Notify.Notification (_("Update Manager"), info, "system-software-update"); - notification.add_action ("default", _("Show available updates"), execute_updater); + notification.add_action ("default", _("Details"), execute_updater); notification.show (); } catch (Error e) { stderr.printf ("Notify Error: %s", e.message);