[gnome-shell] systemActions: Use Title Case
- From: Jeremy Bicha <jbicha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] systemActions: Use Title Case
- Date: Tue, 21 Nov 2017 18:32:40 +0000 (UTC)
commit 32b26390521029bbbb678c4859da8aade9fea610
Author: Jeremy Bicha <jbicha ubuntu com>
Date: Tue Aug 29 16:23:48 2017 -0400
systemActions: Use Title Case
Use Title Case for the new GNOME 3.26 System Action shortcuts,
to match basically everything else in the Activities Overview.
https://bugzilla.gnome.org/show_bug.cgi?id=786987
js/misc/systemActions.js | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/js/misc/systemActions.js b/js/misc/systemActions.js
index 778c0ea..ff81650 100644
--- a/js/misc/systemActions.js
+++ b/js/misc/systemActions.js
@@ -96,21 +96,21 @@ const SystemActions = new Lang.Class({
this._actions = new Map();
this._actions.set(POWER_OFF_ACTION_ID,
{ // Translators: The name of the power-off action in search
- name: C_("search-result", "Power off"),
+ name: C_("search-result", "Power Off"),
iconName: 'system-shutdown-symbolic',
// Translators: A list of keywords that match the power-off action, separated by
semicolons
keywords: _("power off;shutdown").split(';'),
available: false });
this._actions.set(LOCK_SCREEN_ACTION_ID,
{ // Translators: The name of the lock screen action in search
- name: C_("search-result", "Lock screen"),
+ name: C_("search-result", "Lock Screen"),
iconName: 'system-lock-screen-symbolic',
// Translators: A list of keywords that match the lock screen action, separated
by semicolons
keywords: _("lock screen").split(';'),
available: false });
this._actions.set(LOGOUT_ACTION_ID,
{ // Translators: The name of the logout action in search
- name: C_("search-result", "Log out"),
+ name: C_("search-result", "Log Out"),
iconName: 'application-exit-symbolic',
// Translators: A list of keywords that match the logout action, separated by
semicolons
keywords: _("logout;sign off").split(';'),
@@ -124,14 +124,14 @@ const SystemActions = new Lang.Class({
available: false });
this._actions.set(SWITCH_USER_ACTION_ID,
{ // Translators: The name of the switch user action in search
- name: C_("search-result", "Switch user"),
+ name: C_("search-result", "Switch User"),
iconName: 'system-switch-user-symbolic',
// Translators: A list of keywords that match the switch user action, separated
by semicolons
keywords: _("switch user").split(';'),
available: false });
this._actions.set(LOCK_ORIENTATION_ACTION_ID,
{ // Translators: The name of the lock orientation action in search
- name: C_("search-result", "Lock orientation"),
+ name: C_("search-result", "Lock Orientation"),
iconName: '',
// Translators: A list of keywords that match the lock orientation action,
separated by semicolons
keywords: _("lock orientation").split(';'),
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]