From 94281931e7675ae7044100bebec178738c5c04b0 Mon Sep 17 00:00:00 2001 From: Andrew Toskin Date: Sun, 18 Nov 2018 13:50:52 -0800 Subject: [PATCH] Reword labels for the bottom buttons of the top bar menu I think it makes sense to call it the Freon wiki rather than the GitHub wiki, because code hosting could change, and this wiki is specifically all about Freon. And I think adding the "Go to" phrase both clarifies what the button does, and also sorta invites the user to actually click on the button. And as for "Sensors Settings", this might be a little nit-picky, but you don't *usually* pluralize a noun when it's acting as a modifier on another noun. --- freon@UshakovVasilii_Github.yahoo.com/extension.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freon@UshakovVasilii_Github.yahoo.com/extension.js b/freon@UshakovVasilii_Github.yahoo.com/extension.js index 6152e1f..821fba6 100644 --- a/freon@UshakovVasilii_Github.yahoo.com/extension.js +++ b/freon@UshakovVasilii_Github.yahoo.com/extension.js @@ -468,14 +468,14 @@ var FreonMenuButton = new Lang.Class({ this.menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem()); let wiki = new PopupMenu.PopupBaseMenuItem(); - wiki.actor.add(new St.Label({ text: _("GitHub / WiKi") }), { expand: true, x_fill: false }); + wiki.actor.add(new St.Label({ text: _("Go to the Freon wiki") }), { expand: true, x_fill: false }); wiki.connect('activate', function () { Util.spawn(["xdg-open", "https://github.com/UshakovVasilii/gnome-shell-extension-freon/wiki"]); }); this.menu.addMenuItem(wiki); let settings = new PopupMenu.PopupBaseMenuItem(); - settings.actor.add(new St.Label({ text: _("Sensors Settings") }), { expand: true, x_fill: false }); + settings.actor.add(new St.Label({ text: _("Sensor Settings") }), { expand: true, x_fill: false }); settings.connect('activate', function () { Util.spawn(["gnome-shell-extension-prefs", Me.metadata.uuid]); });