systemActions: Reindent action map

Starting an object literal with a comment throws off eslint's rules
for brace style (newline between brace and properties for both opening
and closing brace or neither) as well as indentation (fixed four-space
indent or align with the previous argument).

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/608
This commit is contained in:
Florian Müllner 2019-02-04 13:28:22 +01:00 committed by Georges Basile Stavracas Neto
parent 8c28f9a77d
commit 02db21fc55

View File

@ -83,48 +83,54 @@ const SystemActions = GObject.registerClass({
this._canHaveSuspend = true; this._canHaveSuspend = true;
this._actions = new Map(); this._actions = new Map();
this._actions.set(POWER_OFF_ACTION_ID, this._actions.set(POWER_OFF_ACTION_ID, {
{ // Translators: The name of the power-off action in search // 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', iconName: 'system-shutdown-symbolic',
// Translators: A list of keywords that match the power-off action, separated by semicolons // Translators: A list of keywords that match the power-off action, separated by semicolons
keywords: _("power off;shutdown;reboot;restart").split(/[; ]/), keywords: _("power off;shutdown;reboot;restart").split(/[; ]/),
available: false }); available: false
this._actions.set(LOCK_SCREEN_ACTION_ID, });
{ // Translators: The name of the lock screen action in search this._actions.set(LOCK_SCREEN_ACTION_ID, {
name: C_("search-result", "Lock Screen"), // Translators: The name of the lock screen action in search
iconName: 'system-lock-screen-symbolic', name: C_("search-result", "Lock Screen"),
// Translators: A list of keywords that match the lock screen action, separated by semicolons iconName: 'system-lock-screen-symbolic',
keywords: _("lock screen").split(/[; ]/), // Translators: A list of keywords that match the lock screen action, separated by semicolons
available: false }); keywords: _("lock screen").split(/[; ]/),
this._actions.set(LOGOUT_ACTION_ID, available: false
{ // Translators: The name of the logout action in search });
name: C_("search-result", "Log Out"), this._actions.set(LOGOUT_ACTION_ID, {
iconName: 'application-exit-symbolic', // Translators: The name of the logout action in search
// Translators: A list of keywords that match the logout action, separated by semicolons name: C_("search-result", "Log Out"),
keywords: _("logout;log out;sign off").split(/[; ]/), iconName: 'application-exit-symbolic',
available: false }); // Translators: A list of keywords that match the logout action, separated by semicolons
this._actions.set(SUSPEND_ACTION_ID, keywords: _("logout;log out;sign off").split(/[; ]/),
{ // Translators: The name of the suspend action in search available: false
name: C_("search-result", "Suspend"), });
iconName: 'media-playback-pause-symbolic', this._actions.set(SUSPEND_ACTION_ID, {
// Translators: A list of keywords that match the suspend action, separated by semicolons // Translators: The name of the suspend action in search
keywords: _("suspend;sleep").split(/[; ]/), name: C_("search-result", "Suspend"),
available: false }); iconName: 'media-playback-pause-symbolic',
this._actions.set(SWITCH_USER_ACTION_ID, // Translators: A list of keywords that match the suspend action, separated by semicolons
{ // Translators: The name of the switch user action in search keywords: _("suspend;sleep").split(/[; ]/),
name: C_("search-result", "Switch User"), available: false
iconName: 'system-switch-user-symbolic', });
// Translators: A list of keywords that match the switch user action, separated by semicolons this._actions.set(SWITCH_USER_ACTION_ID, {
keywords: _("switch user").split(/[; ]/), // Translators: The name of the switch user action in search
available: false }); name: C_("search-result", "Switch User"),
this._actions.set(LOCK_ORIENTATION_ACTION_ID, iconName: 'system-switch-user-symbolic',
{ // Translators: The name of the lock orientation action in search // Translators: A list of keywords that match the switch user action, separated by semicolons
name: C_("search-result", "Lock Orientation"), keywords: _("switch user").split(/[; ]/),
iconName: '', available: false
// Translators: A list of keywords that match the lock orientation action, separated by semicolons });
keywords: _("lock orientation;screen;rotation").split(/[; ]/), this._actions.set(LOCK_ORIENTATION_ACTION_ID, {
available: false }); // Translators: The name of the lock orientation action in search
name: C_("search-result", "Lock Orientation"),
iconName: '',
// Translators: A list of keywords that match the lock orientation action, separated by semicolons
keywords: _("lock orientation;screen;rotation").split(/[; ]/),
available: false
});
this._loginScreenSettings = new Gio.Settings({ schema_id: LOGIN_SCREEN_SCHEMA }); this._loginScreenSettings = new Gio.Settings({ schema_id: LOGIN_SCREEN_SCHEMA });
this._lockdownSettings = new Gio.Settings({ schema_id: LOCKDOWN_SCHEMA }); this._lockdownSettings = new Gio.Settings({ schema_id: LOCKDOWN_SCHEMA });