diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/applet.js b/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/applet.js index 01c000e2e2b..ed2c6223c0f 100644 --- a/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/applet.js +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/applet.js @@ -17,7 +17,6 @@ */ 'use strict'; -const Mainloop = imports.mainloop; const Settings = imports.ui.settings; const Applet = imports.ui.applet; const Main = imports.ui.main; @@ -25,16 +24,18 @@ const Gettext = imports.gettext; const SignalManager = imports.misc.signalManager; const Util = imports.misc.util; const { GLib, St, Clutter } = imports.gi; - const { EyeModeFactory } = require("./eyeModes.js"); +const { + AREA_DEFAULT_WIDTH, + WS_SWITCHED_UPDATE_TIMEOUT_MS, + UUID, + Optimizations, + MONITORS_CHANGED_UPDATE_TIMEOUT_MS, +} = require("./constants.js"); const { Debouncer } = require("./helpers.js"); +Gettext.bindtextdomain(UUID, GLib.get_home_dir() + "/.local/share/locale"); -const UUID = "c-eyes@anaximeno"; -const LOC_DIR = GLib.get_home_dir() + "/.local/share/locale"; -const AREA_DEFAULT_WIDTH = 28; - -Gettext.bindtextdomain(UUID, LOC_DIR); function _(text) { let loc = Gettext.dgettext(UUID, text); @@ -42,60 +43,85 @@ function _(text) { } -// Mark this for translation since it won't be -// marked by the translation tool -const _DEFAULT_TOOLTIP = _("Hey, I saw that!"); +// Mark this for translation because it will +// not be marked by the translation tool. +const _t = _("Hey, I saw that!"); class Eye extends Applet.Applet { - constructor(metadata, orientation, panelHeight, instanceId, areaWidth) { + constructor(metadata, orientation, panelHeight, instanceId) { super(orientation, panelHeight, instanceId); - this.settings = this._setup_settings(metadata.uuid, instanceId); - this.orientation = orientation; this.metadata = metadata; - this.area_width = areaWidth; - this.instance_id = instanceId; + this.instanceId = instanceId; + this.orientation = orientation; + this.settings = this._setup_settings(metadata.uuid, instanceId); this.setAllowedLayout(Applet.AllowedLayout.BOTH); this.area = new St.DrawingArea(); this.actor.add(this.area); - this.eye_painter = EyeModeFactory.createEyeMode(this.mode); - + this.eyePainter = EyeModeFactory.createEyeMode(this.mode); this.signals = new SignalManager.SignalManager(null); + this.signals.connect(global.screen, 'in-fullscreen-changed', this.on_fullscreen_changed, this); + this.signals.connect(Main.layoutManager, 'monitors-changed', + () => Util.setTimeout(this.on_property_updated.bind(this), MONITORS_CHANGED_UPDATE_TIMEOUT_MS), + this); this.signals.connect(global.screen, 'workspace-switched', () => { // If the eye is refreshed exactly during the workspace switch process it's possible that the position // of the panel is not correctly accessed, so the position of the eye cannot be estimated correctly, // resulting in the eye looking at the wrong direction, to avoid that we will give it some timeout and // wait first for the switch process to complete. - Util.setTimeout(() => this.on_property_updated(), 400); - }, this); - this.signals.connect(Main.layoutManager, 'monitors-changed', () => { - Util.setTimeout(() => this.on_property_updated(), 100); + Util.setTimeout(this.on_property_updated.bind(this), WS_SWITCHED_UPDATE_TIMEOUT_MS); }, this); + this.refresh_handler_id = 0; + this._last_mouse_x = undefined; this._last_mouse_y = undefined; this._last_eye_x = undefined; this._last_eye_y = undefined; + this.enabled = false; this.set_active(true); this.update_tooltip(); } + get repaint_interval() { + let repaint_interval = this._repaint_interval; + + if (this.optimization_mode != "manual") { + let r = Optimizations[this.optimization_mode]["repaint_interval_ms"]; + if (r != null || r != undefined) repaint_interval = r; + } + + return repaint_interval; + } + + get repaint_angle() { + let repaint_angle = this._repaint_angle; + + if (this.optimization_mode != "manual") { + let r = Optimizations[this.optimization_mode]["repaint_angle_rad"]; + if (r != null || r != undefined) repaint_angle = r; + } + + return repaint_angle; + } + _setup_settings(uuid, instanceId) { - const d = new Debouncer(); + const _d = new Debouncer(); + const bindings = [ { key: "repaint-interval", - value: "repaint_interval", - cb: d.debounce((value) => this.set_active(true), 300), + value: "_repaint_interval", + cb: _d.debounce((value) => this.set_active(true), 300), }, { key: "repaint-angle", - value: "repaint_angle", + value: "_repaint_angle", cb: null, }, { @@ -109,14 +135,14 @@ class Eye extends Applet.Applet { { key: "line-width", value: "line_width", - cb: d.debounce( + cb: _d.debounce( this.on_property_updated.bind(this), 300), }, { key: "margin", value: "margin", - cb: d.debounce( + cb: _d.debounce( this.on_property_updated.bind(this), 300), }, @@ -158,27 +184,35 @@ class Eye extends Applet.Applet { { key: "padding", value: "padding", - cb: d.debounce( + cb: _d.debounce( this.on_property_updated.bind(this), 300), }, { key: "tooltip-message", value: "tooltip_message", - cb: d.debounce((value) => { + cb: _d.debounce((value) => { this.update_tooltip(); this.on_property_updated(value); }, 100), + }, + { + key: "optimization-mode", + value: "optimization_mode", + cb: (value) => { + this.on_optimization_mode_updated(); + this.on_property_updated(value); + }, } ]; let settings = new Settings.AppletSettings(this, uuid, instanceId); - bindings.forEach( - s => settings.bind( - s.key, s.value, s.cb ? (...args) => s.cb.call(this, ...args) : null - ) - ); + bindings.forEach(s => settings.bind( + s.key, + s.value, + s.cb ? (...args) => s.cb.call(this, ...args) : null + )); return settings; } @@ -186,7 +220,7 @@ class Eye extends Applet.Applet { on_orientation_changed(orientation) { this.orientation = orientation; this.update_sizes(); - } + } on_applet_removed_from_panel(deleteConfig) { this.destroy(); @@ -219,22 +253,23 @@ class Eye extends Applet.Applet { } on_refresh_timeout() { - if (this.should_redraw()) + if (this.should_redraw()) { + // global.log(UUID, `repainting with ${this.repaint_interval}ms interval`); this.area.queue_repaint(); - return true; + } + + return GLib.SOURCE_CONTINUE; } on_eye_mode_update() { - if (!this.eye_painter || this.eye_painter.mode != this.mode) { - this.eye_painter = EyeModeFactory.createEyeMode(this.mode); + if (!this.eyePainter || this.eyePainter.mode != this.mode) { + this.eyePainter = EyeModeFactory.createEyeMode(this.mode); } } - destroy() { - this.set_active(false); - this.signals.disconnectAllSignals(); - this.area.destroy(); - this.settings.finalize(); + on_optimization_mode_updated() { + this.set_active(this.enabled); + global.log(UUID, `optimizing to ${this.optimization_mode}`); } update_sizes() { @@ -242,11 +277,11 @@ class Eye extends Applet.Applet { if (this.orientation == St.Side.LEFT || this.orientation == St.Side.RIGHT) { this.actor.set_style("padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;"); - height = (this.area_width + 2 * this.margin) * global.ui_scale; + height = (AREA_DEFAULT_WIDTH + 2 * this.margin) * global.ui_scale; width = this.panel.height; } else { this.actor.set_style("padding-left: 0px; padding-right: 0px; margin-left: 0px; margin-right: 0px;"); - width = (this.area_width + 2 * this.margin) * global.ui_scale; + width = (AREA_DEFAULT_WIDTH + 2 * this.margin) * global.ui_scale; height = this.panel.height; } @@ -254,53 +289,37 @@ class Eye extends Applet.Applet { this.area.set_height(height); } - set_active(enabled) { - this.on_property_updated(); + update_tooltip() { + this.set_applet_tooltip(_(this.tooltip_message), false); + } - if (this._update_handler) { - Mainloop.source_remove(this._update_handler); - this._update_handler = null; - } + set_active(enabled) { + this.enabled = enabled; this.signals.disconnect('repaint', this.area); + if (this.refresh_handler_id) { + GLib.source_remove(this.refresh_handler_id); + this.refresh_handler_id = 0; + } + if (enabled) { this.signals.connect(this.area, 'repaint', this.paint_eye, this); - - this._update_handler = Mainloop.timeout_add( - this.repaint_interval, this.on_refresh_timeout.bind(this) - ); - - this.area.queue_repaint(); + this.refresh_handler_id = GLib.timeout_add( + GLib.PRIORITY_DEFAULT, + this.repaint_interval, + this.on_refresh_timeout.bind(this)); + this.on_property_updated(); } - let status = enabled ? "enabled" : "disabled"; - global.log(UUID, `Eye/${this.instance_id} was ${status}!`); - } - - update_tooltip() { - this.set_applet_tooltip(_(this.tooltip_message), false); + global.log(UUID, `Eye/${this.instanceId} ${enabled ? "enabled" : "disabled"}`); } - get_area_position() { - let obj = this.area; - - let area_x = 0; - let area_y = 0; - - do { - let pos = obj.get_position(); - - if (pos) { - let [tx, ty] = pos; - area_x += tx; - area_y += ty; - } - - obj = obj.get_parent(); - } while (obj); - - return [area_x, area_y]; + destroy() { + this.set_active(false); + this.signals.disconnectAllSignals(); + this.area.destroy(); + this.settings.finalize(); } paint_eye(area) { @@ -324,7 +343,7 @@ class Eye extends Applet.Applet { pupil_color = ok ? color : pupil_color; } - this.eye_painter.drawEye(area, { + this.eyePainter.drawEye(area, { area_x: area_x, area_y: area_y, mouse_x: mouse_x, @@ -332,17 +351,35 @@ class Eye extends Applet.Applet { base_color: base_color, iris_color: iris_color, pupil_color: pupil_color, - line_width: this.line_width * global.ui_scale, padding: this.padding * global.ui_scale, - lids_fill: this.fill_lids_color_painting && - this.use_alternative_colors, - bulb_fill: this.fill_bulb_color_painting && - this.use_alternative_colors, - is_vertical: this.orientation == St.Side.LEFT || - this.orientation == St.Side.RIGHT, + line_width: this.line_width * global.ui_scale, + is_vertical: this.orientation == St.Side.LEFT || this.orientation == St.Side.RIGHT, + lids_fill: this.fill_lids_color_painting && this.use_alternative_colors, + bulb_fill: this.fill_bulb_color_painting && this.use_alternative_colors, }); } + get_area_position() { + let obj = this.area; + + let area_x = 0; + let area_y = 0; + + do { + let pos = obj.get_position(); + + if (pos) { + let [tx, ty] = pos; + area_x += tx; + area_y += ty; + } + + obj = obj.get_parent(); + } while (obj); + + return [area_x, area_y]; + } + should_redraw() { const [mouse_x, mouse_y, _] = global.get_pointer(); const [ox, oy] = this.get_area_position(); @@ -355,9 +392,9 @@ class Eye extends Applet.Applet { ) { should_redraw = false; } else if (this._last_mouse_x == undefined || - this._last_mouse_y == undefined || - this._last_eye_x != ox || - this._last_eye_y != oy + this._last_mouse_y == undefined || + this._last_eye_x != ox || + this._last_eye_y != oy ) { should_redraw = true; } else { @@ -387,5 +424,5 @@ class Eye extends Applet.Applet { } function main(metadata, orientation, panelHeight, instanceId) { - return new Eye(metadata, orientation, panelHeight, instanceId, AREA_DEFAULT_WIDTH); + return new Eye(metadata, orientation, panelHeight, instanceId); } diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/constants.js b/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/constants.js new file mode 100644 index 00000000000..272688906c5 --- /dev/null +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/constants.js @@ -0,0 +1,24 @@ +const UUID = "c-eyes@anaximeno"; + +const AREA_DEFAULT_WIDTH = 28; + +const IDLE_TIME = 1000; + +const MONITORS_CHANGED_UPDATE_TIMEOUT_MS = 100; + +const WS_SWITCHED_UPDATE_TIMEOUT_MS = 400; + +const Optimizations = Object.freeze({ + "battery": { + repaint_interval_ms: 70, + repaint_angle_rad: 0.07, + }, + "balance": { + repaint_interval_ms: 55, + repaint_angle_rad: 0.05, + }, + "performance": { + repaint_interval_ms: 30, + repaint_angle_rad: 0.01, + } +}); diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/eyeModes.js b/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/eyeModes.js index 0c53c55c520..4c482f64f58 100644 --- a/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/eyeModes.js +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/eyeModes.js @@ -166,7 +166,7 @@ class BulbMode extends EyeMode { let [top_size, lat_size] = this.topAndLatSizes(area_width, area_height, options); let eye_rad = (top_size - options.padding) / 2; - if (2 * eye_rad > lat_size) eye_rad = lat_size / 2; + if (2 * eye_rad > lat_size) eye_rad = lat_size / 2.1; const iris_rad = eye_rad * 0.6; const pupil_rad = iris_rad * 0.4; diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/pointerWatcher.js b/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/pointerWatcher.js new file mode 100644 index 00000000000..a34bfb8f98c --- /dev/null +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/pointerWatcher.js @@ -0,0 +1,122 @@ +// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- + +const { GLib, Meta } = imports.gi; +const { IDLE_TIME } = require('./constants.js'); + +// This file implements a reasonably efficient system for tracking the position +// of the mouse pointer. We simply query the pointer from the X server in a loop, +// but we turn off the polling when the user is idle. + +let _pointerWatcher = null; +function getPointerWatcher() { + if (_pointerWatcher == null) + _pointerWatcher = new PointerWatcher(); + + return _pointerWatcher; +} + +var PointerWatch = class PointerWatch { + constructor(watcher, interval, callback) { + this.watcher = watcher; + this.interval = interval; + this.callback = callback; + } + + // remove: + // remove this watch. This function may safely be called + // while the callback is executing. + remove() { + this.watcher._removeWatch(this); + } +}; + +var PointerWatcher = class PointerWatcher { + constructor() { + this._idleMonitor = Meta.IdleMonitor.get_core(); + this._idleMonitor.add_idle_watch(IDLE_TIME, this._onIdleMonitorBecameIdle.bind(this)); + this._idle = this._idleMonitor.get_idletime() > IDLE_TIME; + this._watches = []; + this.pointerX = null; + this.pointerY = null; + } + + // addWatch: + // @interval: hint as to the time resolution needed. When the user is + // not idle, the position of the pointer will be queried at least + // once every this many milliseconds. + // @callback to call when the pointer position changes - takes + // two arguments, X and Y. + // + // Set up a watch on the position of the mouse pointer. Returns a + // PointerWatch object which has a remove() method to remove the watch. + addWatch(interval, callback) { + // Avoid unreliably calling the watch for the current position + this._updatePointer(); + + let watch = new PointerWatch(this, interval, callback); + this._watches.push(watch); + this._updateTimeout(); + return watch; + } + + _removeWatch(watch) { + for (let i = 0; i < this._watches.length; i++) { + if (this._watches[i] == watch) { + this._watches.splice(i, 1); + this._updateTimeout(); + return; + } + } + } + + _onIdleMonitorBecameActive() { + this._idle = false; + this._updatePointer(); + this._updateTimeout(); + } + + _onIdleMonitorBecameIdle() { + this._idle = true; + this._idleMonitor.add_user_active_watch(this._onIdleMonitorBecameActive.bind(this)); + this._updateTimeout(); + } + + _updateTimeout() { + if (this._timeoutId) { + GLib.source_remove(this._timeoutId); + this._timeoutId = 0; + } + + if (this._idle || this._watches.length == 0) + return; + + let minInterval = this._watches[0].interval; + for (let i = 1; i < this._watches.length; i++) + minInterval = Math.min(this._watches[i].interval, minInterval); + + this._timeoutId = GLib.timeout_add(GLib.PRIORITY_DEFAULT, minInterval, + this._onTimeout.bind(this)); + GLib.Source.set_name_by_id(this._timeoutId, '[gnome-shell] this._onTimeout'); + } + + _onTimeout() { + this._updatePointer(); + return GLib.SOURCE_CONTINUE; + } + + _updatePointer() { + let [x, y] = global.get_pointer(); + if (this.pointerX == x && this.pointerY == y) + return; + + this.pointerX = x; + this.pointerY = y; + + for (let i = 0; i < this._watches.length;) { + let watch = this._watches[i]; + watch.callback(x, y); + if (watch == this._watches[i]) // guard against self-removal + i++; + } + } +}; diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/settings-schema.json b/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/settings-schema.json index 5a9f0a3d590..a59791dec20 100644 --- a/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/settings-schema.json +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/6.2/settings-schema.json @@ -1,28 +1,119 @@ { - "info": { - "type": "section", - "description": "Info" - }, - - "click-effects-moved-info": { - "type": "label", - "description": "In Cinnamon versions 6.2 and later, the click effects have been removed from this applet and relocated to a new extension called 'mouse-click-effects,' which can be installed through the Cinnamon Extensions settings module." - }, - - "general": { - "type": "section", - "description": "General" + "layout": { + "type": "layout", + "pages": [ + "general-page", + "style-page" + ], + "general-page": { + "type": "page", + "title": "General", + "sections": [ + "general-section", + "optimization-section" + ] + }, + "style-page": { + "type": "page", + "title": "Style", + "sections": [ + "styles-section", + "colors-section" + ] + }, + "general-section": { + "type": "section", + "title": "General", + "keys": [ + "tooltip-message", + "mode", + "deactivate-on-fullscreen", + "optimization-mode" + ] + }, + "optimization-section": { + "type": "section", + "dependency": "optimization-mode=manual", + "title": "Optimizations", + "keys": [ + "repaint-interval", + "repaint-angle" + ] + }, + "styles-section": { + "type": "section", + "title": "Style", + "keys": [ + "mode", + "line-width", + "padding", + "margin", + "use-alternative-colors" + ] + }, + "colors-section": { + "type": "section", + "title": "Colors", + "dependency": "use-alternative-colors=true", + "keys": [ + "base-color", + "iris-color", + "pupil-color", + "fill-lids-color-painting", + "fill-bulb-color-painting" + ] + } }, - "mode": { "type": "combobox", "default": "lids", - "description": "Mode", + "description": "Eye Mode", "options": { "Lids": "lids", "Bulb": "bulb" } }, + "tooltip-message": { + "type": "entry", + "default": "Hey, I saw that!", + "description": "Tooltip Message on Hover" + }, + "deactivate-on-fullscreen": { + "type": "checkbox", + "default": true, + "description": "Deactivate On Fullscreen" + }, + "optimization-mode": { + "type": "combobox", + "default": "balance", + "description": "Optimization Mode", + "options": { + "Battery": "battery", + "Balanced": "balance", + "Performance": "performance", + "Manual": "manual" + } + }, + "repaint-interval": { + "type": "spinbutton", + "default": 55, + "min": 5, + "max": 200, + "step": 5, + "units": "ms", + "description": "Eye Update Interval", + "tooltip": "This setting controls the time to redraw the eye again. Lower values (measured in miliseconds) result in smoother animation but require more processing power." + }, + "repaint-angle": { + "type": "spinbutton", + "default": 0.05, + "min": 0, + "max": 1, + "step": 0.05, + "units": "radians", + "description": "Eye Update Sensitivity", + "tooltip": "This setting controls the minimum angle change between mouse movements required to redraw the eye. Lower values (measured in radians) result in smoother animation but require more processing power." + }, "line-width": { "type": "spinbutton", "description": "Line Width", @@ -50,49 +141,12 @@ "units": "px", "description": "Padding" }, - "repaint-interval": { - "type": "spinbutton", - "default": 55, - "min": 5, - "max": 200, - "step": 5, - "units": "ms", - "description": "Eye Update Interval", - "tooltip": "This setting controls the time to redraw the eye again. Lower values (measured in miliseconds) result in smoother animation but require more processing power." - }, - "repaint-angle": { - "type": "spinbutton", - "default": 0.05, - "min": 0, - "max": 1, - "step": 0.05, - "units": "radians", - "description": "Eye Update Sensitivity", - "tooltip": "This setting controls the minimum angle change between mouse movements required to redraw the eye. Lower values (measured in radians) result in smoother animation but require more processing power." - }, - "tooltip-message": { - "type": "entry", - "default": "Hey, I saw that!", - "description": "Tooltip Message on Hover" - }, - "deactivate-on-fullscreen": { - "type": "checkbox", - "default": true, - "description": "Deactivate On Fullscreen" - }, "use-alternative-colors": { "type": "switch", "default": true, "description": "Use Alternative Colors for the Eye", "tooltip": "When disabled it will use the current system theme's default color for panel items." }, - - "colors": { - "type": "section", - "description": "Colors", - "dependency": "use-alternative-colors=true" - }, - "base-color": { "type": "colorchooser", "default": "#BBBBBB", diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/metadata.json b/c-eyes@anaximeno/files/c-eyes@anaximeno/metadata.json index 7435b1da5e0..59d41c937f8 100644 --- a/c-eyes@anaximeno/files/c-eyes@anaximeno/metadata.json +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/metadata.json @@ -1,5 +1,5 @@ { - "version": "2.1.4", + "version": "3.0.0", "uuid": "c-eyes@anaximeno", "name": "Cinnamon Eyes", "multiversion": true, diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/c-eyes@anaximeno.pot b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/c-eyes@anaximeno.pot index 6af1c69c2f1..a826924f167 100644 --- a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/c-eyes@anaximeno.pot +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/c-eyes@anaximeno.pot @@ -1,23 +1,23 @@ -# SOME DESCRIPTIVE TITLE. +# CINNAMON EYES # This file is put in the public domain. -# FIRST AUTHOR , YEAR. +# anaximeno, 2023 # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: c-eyes@anaximeno 2.1.3\n" +"Project-Id-Version: c-eyes@anaximeno 3.0.0\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-applets/" "issues\n" -"POT-Creation-Date: 2024-06-15 16:50-0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2024-09-22 04:46-0100\n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: 4.2/applet.js:56 5.4/applet.js:55 +#. 4.2/applet.js:56 5.4/applet.js:56 msgid "" "📢 The click effects will be removed from this applet on the version 6.2 of " "Cinnamon\n" @@ -26,19 +26,19 @@ msgid "" "on the Cinnamon Extensions settings module for versions of Cinnamon >= 5.4" msgstr "" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to deactivate the eye" msgstr "" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to activate the eye" msgstr "" -#: 4.2/applet.js:390 5.4/applet.js:386 +#. 4.2/applet.js:397 5.4/applet.js:394 msgid "TIP" msgstr "" -#: 6.2/applet.js:46 +#. 6.2/applet.js:48 msgid "Hey, I saw that!" msgstr "" @@ -66,7 +66,8 @@ msgstr "" #. 4.2->settings-schema.json->click-generic->title #. 5.4->settings-schema.json->eye-generic->title #. 5.4->settings-schema.json->click-generic->title -#. 6.2->settings-schema.json->general->description +#. 6.2->settings-schema.json->general-page->title +#. 6.2->settings-schema.json->general-section->title msgid "General" msgstr "" @@ -74,7 +75,7 @@ msgstr "" #. 4.2->settings-schema.json->click-colors->title #. 5.4->settings-schema.json->eye-colors->title #. 5.4->settings-schema.json->click-colors->title -#. 6.2->settings-schema.json->colors->description +#. 6.2->settings-schema.json->colors-section->title msgid "Colors" msgstr "" @@ -85,7 +86,6 @@ msgstr "" #. 4.2->settings-schema.json->eye-mode->description #. 5.4->settings-schema.json->eye-mode->description -#. 6.2->settings-schema.json->mode->description msgid "Mode" msgstr "" @@ -385,23 +385,54 @@ msgid "General Opacity" msgstr "" #. 5.4->settings-schema.json->click-info->title -#. 6.2->settings-schema.json->info->description msgid "Info" msgstr "" #. 5.4->settings-schema.json->click-effects-moved-on- #. cinnamon-6.2-info->description -#. 6.2->settings-schema.json->click-effects-moved-info->description msgid "" "In Cinnamon versions 6.2 and later, the click effects have been removed from " "this applet and relocated to a new extension called 'mouse-click-effects,' " "which can be installed through the Cinnamon Extensions settings module." msgstr "" +#. 6.2->settings-schema.json->style-page->title +#. 6.2->settings-schema.json->styles-section->title +msgid "Style" +msgstr "" + +#. 6.2->settings-schema.json->optimization-section->title +msgid "Optimizations" +msgstr "" + +#. 6.2->settings-schema.json->mode->description +msgid "Eye Mode" +msgstr "" + #. 6.2->settings-schema.json->tooltip-message->description msgid "Tooltip Message on Hover" msgstr "" +#. 6.2->settings-schema.json->optimization-mode->description +msgid "Optimization Mode" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Battery" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Balanced" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Performance" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Manual" +msgstr "" + #. 6.2->settings-schema.json->use-alternative-colors->description msgid "Use Alternative Colors for the Eye" msgstr "" diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/ca.po b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/ca.po index 9b210b19693..b7f66e340cc 100644 --- a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/ca.po +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/ca.po @@ -1,6 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# CINNAMON EYES # This file is put in the public domain. -# FIRST AUTHOR , YEAR. +# anaximeno, 2023 # #, fuzzy msgid "" @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: c-eyes@anaximeno 2.1.3\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-applets/" "issues\n" -"POT-Creation-Date: 2024-06-15 16:50-0100\n" +"POT-Creation-Date: 2024-09-22 04:46-0100\n" "PO-Revision-Date: 2024-07-22 00:37+0200\n" "Last-Translator: Odyssey \n" "Language-Team: \n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.4.2\n" -#: 4.2/applet.js:56 5.4/applet.js:55 +#. 4.2/applet.js:56 5.4/applet.js:56 msgid "" "📢 The click effects will be removed from this applet on the version 6.2 of " "Cinnamon\n" @@ -32,19 +32,19 @@ msgstr "" "instal·lada en l'actualitat\n" "a les opcions de les extensions de Cinnamon per versions >= 5.4" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to deactivate the eye" msgstr "cliqueu per desactivar l'ull" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to activate the eye" msgstr "cliqueu per activar l'ull" -#: 4.2/applet.js:390 5.4/applet.js:386 +#. 4.2/applet.js:397 5.4/applet.js:394 msgid "TIP" msgstr "TIP" -#: 6.2/applet.js:46 +#. 6.2/applet.js:48 msgid "Hey, I saw that!" msgstr "Ei, he vist això!" @@ -74,7 +74,8 @@ msgstr "Efectes" #. 4.2->settings-schema.json->click-generic->title #. 5.4->settings-schema.json->eye-generic->title #. 5.4->settings-schema.json->click-generic->title -#. 6.2->settings-schema.json->general->description +#. 6.2->settings-schema.json->general-page->title +#. 6.2->settings-schema.json->general-section->title msgid "General" msgstr "General" @@ -82,7 +83,7 @@ msgstr "General" #. 4.2->settings-schema.json->click-colors->title #. 5.4->settings-schema.json->eye-colors->title #. 5.4->settings-schema.json->click-colors->title -#. 6.2->settings-schema.json->colors->description +#. 6.2->settings-schema.json->colors-section->title msgid "Colors" msgstr "Colors" @@ -93,7 +94,6 @@ msgstr "Esdeveniments" #. 4.2->settings-schema.json->eye-mode->description #. 5.4->settings-schema.json->eye-mode->description -#. 6.2->settings-schema.json->mode->description msgid "Mode" msgstr "Mode" @@ -399,13 +399,11 @@ msgid "General Opacity" msgstr "Opacitat general" #. 5.4->settings-schema.json->click-info->title -#. 6.2->settings-schema.json->info->description msgid "Info" msgstr "Info" #. 5.4->settings-schema.json->click-effects-moved-on- #. cinnamon-6.2-info->description -#. 6.2->settings-schema.json->click-effects-moved-info->description msgid "" "In Cinnamon versions 6.2 and later, the click effects have been removed from " "this applet and relocated to a new extension called 'mouse-click-effects,' " @@ -415,10 +413,45 @@ msgstr "" "eliminat i han passat a formar part de l'extensió 'mouse-click-effects', que " "pot ser instal·lada des de les opcions del mòdul d'extensions de Cinnamon." +#. 6.2->settings-schema.json->style-page->title +#. 6.2->settings-schema.json->styles-section->title +msgid "Style" +msgstr "" + +#. 6.2->settings-schema.json->optimization-section->title +msgid "Optimizations" +msgstr "" + +#. 6.2->settings-schema.json->mode->description +#, fuzzy +msgid "Eye Mode" +msgstr "Mode" + #. 6.2->settings-schema.json->tooltip-message->description msgid "Tooltip Message on Hover" msgstr "Missatge de barra d'eines en passar el cursor per sobre de l'ull" +#. 6.2->settings-schema.json->optimization-mode->description +#, fuzzy +msgid "Optimization Mode" +msgstr "Mode d'animació del clic" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Battery" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Balanced" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Performance" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Manual" +msgstr "" + #. 6.2->settings-schema.json->use-alternative-colors->description msgid "Use Alternative Colors for the Eye" msgstr "Utilitzar colors alternatius per a l'ull" diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/da.po b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/da.po index c7fde1bb5aa..a9b7f5666a9 100644 --- a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/da.po +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/da.po @@ -1,14 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# CINNAMON EYES # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# anaximeno, 2023 # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-applets/" "issues\n" -"POT-Creation-Date: 2024-06-15 16:50-0100\n" +"POT-Creation-Date: 2024-09-22 04:46-0100\n" "PO-Revision-Date: 2023-12-29 08:19+0100\n" "Last-Translator: Alan Mortensen \n" "Language-Team: \n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.0.1\n" -#: 4.2/applet.js:56 5.4/applet.js:55 +#. 4.2/applet.js:56 5.4/applet.js:56 msgid "" "📢 The click effects will be removed from this applet on the version 6.2 of " "Cinnamon\n" @@ -28,19 +28,19 @@ msgid "" "on the Cinnamon Extensions settings module for versions of Cinnamon >= 5.4" msgstr "" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to deactivate the eye" msgstr "klik for at deaktivere øjet" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to activate the eye" msgstr "klik for at aktivere øjet" -#: 4.2/applet.js:390 5.4/applet.js:386 +#. 4.2/applet.js:397 5.4/applet.js:394 msgid "TIP" msgstr "TIP" -#: 6.2/applet.js:46 +#. 6.2/applet.js:48 msgid "Hey, I saw that!" msgstr "" @@ -70,7 +70,8 @@ msgstr "Effekter" #. 4.2->settings-schema.json->click-generic->title #. 5.4->settings-schema.json->eye-generic->title #. 5.4->settings-schema.json->click-generic->title -#. 6.2->settings-schema.json->general->description +#. 6.2->settings-schema.json->general-page->title +#. 6.2->settings-schema.json->general-section->title msgid "General" msgstr "Generelt" @@ -78,7 +79,7 @@ msgstr "Generelt" #. 4.2->settings-schema.json->click-colors->title #. 5.4->settings-schema.json->eye-colors->title #. 5.4->settings-schema.json->click-colors->title -#. 6.2->settings-schema.json->colors->description +#. 6.2->settings-schema.json->colors-section->title msgid "Colors" msgstr "Farver" @@ -89,7 +90,6 @@ msgstr "Hændelser" #. 4.2->settings-schema.json->eye-mode->description #. 5.4->settings-schema.json->eye-mode->description -#. 6.2->settings-schema.json->mode->description msgid "Mode" msgstr "Tilstand" @@ -390,23 +390,56 @@ msgid "General Opacity" msgstr "Generel uigennemsigtighed" #. 5.4->settings-schema.json->click-info->title -#. 6.2->settings-schema.json->info->description msgid "Info" msgstr "" #. 5.4->settings-schema.json->click-effects-moved-on- #. cinnamon-6.2-info->description -#. 6.2->settings-schema.json->click-effects-moved-info->description msgid "" "In Cinnamon versions 6.2 and later, the click effects have been removed from " "this applet and relocated to a new extension called 'mouse-click-effects,' " "which can be installed through the Cinnamon Extensions settings module." msgstr "" +#. 6.2->settings-schema.json->style-page->title +#. 6.2->settings-schema.json->styles-section->title +msgid "Style" +msgstr "" + +#. 6.2->settings-schema.json->optimization-section->title +msgid "Optimizations" +msgstr "" + +#. 6.2->settings-schema.json->mode->description +#, fuzzy +msgid "Eye Mode" +msgstr "Tilstand" + #. 6.2->settings-schema.json->tooltip-message->description msgid "Tooltip Message on Hover" msgstr "" +#. 6.2->settings-schema.json->optimization-mode->description +#, fuzzy +msgid "Optimization Mode" +msgstr "Animationstilstand ved klik" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Battery" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Balanced" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Performance" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Manual" +msgstr "" + #. 6.2->settings-schema.json->use-alternative-colors->description msgid "Use Alternative Colors for the Eye" msgstr "" diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/es.po b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/es.po index cc87e2582b1..fe9cdf117a1 100644 --- a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/es.po +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/es.po @@ -1,14 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# CINNAMON EYES # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# anaximeno, 2023 # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-applets/" "issues\n" -"POT-Creation-Date: 2024-06-15 16:50-0100\n" +"POT-Creation-Date: 2024-09-22 04:46-0100\n" "PO-Revision-Date: 2024-06-15 16:02-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.4.4\n" -#: 4.2/applet.js:56 5.4/applet.js:55 +#. 4.2/applet.js:56 5.4/applet.js:56 msgid "" "📢 The click effects will be removed from this applet on the version 6.2 of " "Cinnamon\n" @@ -34,19 +34,19 @@ msgstr "" "en el módulo de configuración de Extensiones de Cinnamon para versiones de " "Cinnamon >= 5.4" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to deactivate the eye" msgstr "haga clic para desactivar el ojo" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to activate the eye" msgstr "haga clic para activar el ojo" -#: 4.2/applet.js:390 5.4/applet.js:386 +#. 4.2/applet.js:397 5.4/applet.js:394 msgid "TIP" msgstr "TIP" -#: 6.2/applet.js:46 +#. 6.2/applet.js:48 msgid "Hey, I saw that!" msgstr "¡Oye, vi eso!" @@ -76,7 +76,8 @@ msgstr "Efectos" #. 4.2->settings-schema.json->click-generic->title #. 5.4->settings-schema.json->eye-generic->title #. 5.4->settings-schema.json->click-generic->title -#. 6.2->settings-schema.json->general->description +#. 6.2->settings-schema.json->general-page->title +#. 6.2->settings-schema.json->general-section->title msgid "General" msgstr "General" @@ -84,7 +85,7 @@ msgstr "General" #. 4.2->settings-schema.json->click-colors->title #. 5.4->settings-schema.json->eye-colors->title #. 5.4->settings-schema.json->click-colors->title -#. 6.2->settings-schema.json->colors->description +#. 6.2->settings-schema.json->colors-section->title msgid "Colors" msgstr "Colores" @@ -95,7 +96,6 @@ msgstr "Eventos" #. 4.2->settings-schema.json->eye-mode->description #. 5.4->settings-schema.json->eye-mode->description -#. 6.2->settings-schema.json->mode->description msgid "Mode" msgstr "Modo" @@ -402,13 +402,11 @@ msgid "General Opacity" msgstr "Opacidad general" #. 5.4->settings-schema.json->click-info->title -#. 6.2->settings-schema.json->info->description msgid "Info" msgstr "Información" #. 5.4->settings-schema.json->click-effects-moved-on- #. cinnamon-6.2-info->description -#. 6.2->settings-schema.json->click-effects-moved-info->description msgid "" "In Cinnamon versions 6.2 and later, the click effects have been removed from " "this applet and relocated to a new extension called 'mouse-click-effects,' " @@ -419,10 +417,45 @@ msgstr "" "'efectos de clic del mouse', que se puede instalar a través del módulo de " "configuración de Extensiones de Cinnamon." +#. 6.2->settings-schema.json->style-page->title +#. 6.2->settings-schema.json->styles-section->title +msgid "Style" +msgstr "" + +#. 6.2->settings-schema.json->optimization-section->title +msgid "Optimizations" +msgstr "" + +#. 6.2->settings-schema.json->mode->description +#, fuzzy +msgid "Eye Mode" +msgstr "Modo" + #. 6.2->settings-schema.json->tooltip-message->description msgid "Tooltip Message on Hover" msgstr "Mensaje de información sobre herramientas al pasar el mouse por encima" +#. 6.2->settings-schema.json->optimization-mode->description +#, fuzzy +msgid "Optimization Mode" +msgstr "Modo de animación del click" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Battery" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Balanced" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Performance" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Manual" +msgstr "" + #. 6.2->settings-schema.json->use-alternative-colors->description msgid "Use Alternative Colors for the Eye" msgstr "Usar colores alternativos para el ojo" diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/fr.po b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/fr.po index f8c10a5ee2f..0d271dad8ae 100644 --- a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/fr.po +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/fr.po @@ -1,14 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# CINNAMON EYES # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# anaximeno, 2023 # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-applets/" "issues\n" -"POT-Creation-Date: 2024-06-15 16:50-0100\n" +"POT-Creation-Date: 2024-09-22 04:46-0100\n" "PO-Revision-Date: 2024-06-27 16:55+0200\n" "Last-Translator: Claudiux \n" "Language-Team: \n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 3.0.1\n" -#: 4.2/applet.js:56 5.4/applet.js:55 +#. 4.2/applet.js:56 5.4/applet.js:56 msgid "" "📢 The click effects will be removed from this applet on the version 6.2 of " "Cinnamon\n" @@ -34,19 +34,19 @@ msgstr "" "dans le module de configuration des extensions Cinnamon pour les versions de " "Cinnamon >= 5.4" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to deactivate the eye" msgstr "cliquer pour désactiver l'œil" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to activate the eye" msgstr "cliquer pour activer l'œil" -#: 4.2/applet.js:390 5.4/applet.js:386 +#. 4.2/applet.js:397 5.4/applet.js:394 msgid "TIP" msgstr "Astuce" -#: 6.2/applet.js:46 +#. 6.2/applet.js:48 msgid "Hey, I saw that!" msgstr "J'ai vu ça !" @@ -74,7 +74,8 @@ msgstr "Effets" #. 4.2->settings-schema.json->click-generic->title #. 5.4->settings-schema.json->eye-generic->title #. 5.4->settings-schema.json->click-generic->title -#. 6.2->settings-schema.json->general->description +#. 6.2->settings-schema.json->general-page->title +#. 6.2->settings-schema.json->general-section->title msgid "General" msgstr "Général" @@ -82,7 +83,7 @@ msgstr "Général" #. 4.2->settings-schema.json->click-colors->title #. 5.4->settings-schema.json->eye-colors->title #. 5.4->settings-schema.json->click-colors->title -#. 6.2->settings-schema.json->colors->description +#. 6.2->settings-schema.json->colors-section->title msgid "Colors" msgstr "Couleurs" @@ -93,7 +94,6 @@ msgstr "Événements" #. 4.2->settings-schema.json->eye-mode->description #. 5.4->settings-schema.json->eye-mode->description -#. 6.2->settings-schema.json->mode->description msgid "Mode" msgstr "Mode" @@ -400,13 +400,11 @@ msgid "General Opacity" msgstr "Opacité générale" #. 5.4->settings-schema.json->click-info->title -#. 6.2->settings-schema.json->info->description msgid "Info" msgstr "Info" #. 5.4->settings-schema.json->click-effects-moved-on- #. cinnamon-6.2-info->description -#. 6.2->settings-schema.json->click-effects-moved-info->description msgid "" "In Cinnamon versions 6.2 and later, the click effects have been removed from " "this applet and relocated to a new extension called 'mouse-click-effects,' " @@ -417,10 +415,45 @@ msgstr "" "\"mouse-click-effects\", qui peut être installée via le module de " "configuration des Extensions de Cinnamon." +#. 6.2->settings-schema.json->style-page->title +#. 6.2->settings-schema.json->styles-section->title +msgid "Style" +msgstr "" + +#. 6.2->settings-schema.json->optimization-section->title +msgid "Optimizations" +msgstr "" + +#. 6.2->settings-schema.json->mode->description +#, fuzzy +msgid "Eye Mode" +msgstr "Mode" + #. 6.2->settings-schema.json->tooltip-message->description msgid "Tooltip Message on Hover" msgstr "Afficher une info-bulle au survol" +#. 6.2->settings-schema.json->optimization-mode->description +#, fuzzy +msgid "Optimization Mode" +msgstr "Mode d'animation du clic" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Battery" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Balanced" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Performance" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Manual" +msgstr "" + #. 6.2->settings-schema.json->use-alternative-colors->description msgid "Use Alternative Colors for the Eye" msgstr "Utiliser d'autres couleurs pour l'œil" diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/hu.po b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/hu.po index c86a054d790..d8fcbd2f809 100644 --- a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/hu.po +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/hu.po @@ -1,13 +1,13 @@ -# SOME DESCRIPTIVE TITLE. +# CINNAMON EYES # This file is put in the public domain. -# FIRST AUTHOR , YEAR. +# anaximeno, 2023 # msgid "" msgstr "" "Project-Id-Version: c-eyes@anaximeno 2.1.3\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-applets/" "issues\n" -"POT-Creation-Date: 2024-06-15 16:50-0100\n" +"POT-Creation-Date: 2024-09-22 04:46-0100\n" "PO-Revision-Date: 2024-07-28 07:51-0400\n" "Last-Translator: Kálmán „KAMI” Szalai \n" "Language-Team: \n" @@ -18,7 +18,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.0.1\n" -#: 4.2/applet.js:56 5.4/applet.js:55 +#. 4.2/applet.js:56 5.4/applet.js:56 msgid "" "📢 The click effects will be removed from this applet on the version 6.2 of " "Cinnamon\n" @@ -32,19 +32,19 @@ msgstr "" "telepíthető\n" "a Cinnamon Extensions beállítási modulban a Cinnamon verzióihoz >= 5.4" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to deactivate the eye" msgstr "kattintson a szem kikapcsolásához" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to activate the eye" msgstr "kattintson a szem aktiválásához" -#: 4.2/applet.js:390 5.4/applet.js:386 +#. 4.2/applet.js:397 5.4/applet.js:394 msgid "TIP" msgstr "TIP" -#: 6.2/applet.js:46 +#. 6.2/applet.js:48 msgid "Hey, I saw that!" msgstr "Hé, ezt láttam!" @@ -74,7 +74,8 @@ msgstr "Effektusok" #. 4.2->settings-schema.json->click-generic->title #. 5.4->settings-schema.json->eye-generic->title #. 5.4->settings-schema.json->click-generic->title -#. 6.2->settings-schema.json->general->description +#. 6.2->settings-schema.json->general-page->title +#. 6.2->settings-schema.json->general-section->title msgid "General" msgstr "Általános" @@ -82,7 +83,7 @@ msgstr "Általános" #. 4.2->settings-schema.json->click-colors->title #. 5.4->settings-schema.json->eye-colors->title #. 5.4->settings-schema.json->click-colors->title -#. 6.2->settings-schema.json->colors->description +#. 6.2->settings-schema.json->colors-section->title msgid "Colors" msgstr "Színek" @@ -93,7 +94,6 @@ msgstr "Események" #. 4.2->settings-schema.json->eye-mode->description #. 5.4->settings-schema.json->eye-mode->description -#. 6.2->settings-schema.json->mode->description msgid "Mode" msgstr "Üzemmód" @@ -400,13 +400,11 @@ msgid "General Opacity" msgstr "Általános átlátszatlanság" #. 5.4->settings-schema.json->click-info->title -#. 6.2->settings-schema.json->info->description msgid "Info" msgstr "információ" #. 5.4->settings-schema.json->click-effects-moved-on- #. cinnamon-6.2-info->description -#. 6.2->settings-schema.json->click-effects-moved-info->description msgid "" "In Cinnamon versions 6.2 and later, the click effects have been removed from " "this applet and relocated to a new extension called 'mouse-click-effects,' " @@ -417,10 +415,45 @@ msgstr "" "„egérkattintási effektusok” nevű bővítménybe, amely a Cinnamon Extensions " "beállítási modulján keresztül telepíthető." +#. 6.2->settings-schema.json->style-page->title +#. 6.2->settings-schema.json->styles-section->title +msgid "Style" +msgstr "" + +#. 6.2->settings-schema.json->optimization-section->title +msgid "Optimizations" +msgstr "" + +#. 6.2->settings-schema.json->mode->description +#, fuzzy +msgid "Eye Mode" +msgstr "Üzemmód" + #. 6.2->settings-schema.json->tooltip-message->description msgid "Tooltip Message on Hover" msgstr "Eszköztipp üzenet az egérmutatóval" +#. 6.2->settings-schema.json->optimization-mode->description +#, fuzzy +msgid "Optimization Mode" +msgstr "Kattintás animáció üzemmódja" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Battery" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Balanced" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Performance" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Manual" +msgstr "" + #. 6.2->settings-schema.json->use-alternative-colors->description msgid "Use Alternative Colors for the Eye" msgstr "Használjon alternatív színeket a szem számára" diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/it.po b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/it.po index 1d3550b8a77..efb96acdd29 100644 --- a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/it.po +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/it.po @@ -1,14 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# CINNAMON EYES # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# anaximeno, 2023 # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-applets/" "issues\n" -"POT-Creation-Date: 2024-06-15 16:50-0100\n" +"POT-Creation-Date: 2024-09-22 04:46-0100\n" "PO-Revision-Date: 2024-06-18 15:18+0200\n" "Last-Translator: Dragone2 \n" "Language-Team: \n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.0.1\n" -#: 4.2/applet.js:56 5.4/applet.js:55 +#. 4.2/applet.js:56 5.4/applet.js:56 msgid "" "📢 The click effects will be removed from this applet on the version 6.2 of " "Cinnamon\n" @@ -34,19 +34,19 @@ msgstr "" "nel modulo delle impostazioni delle estensioni di Cinnamon per le versioni " "di Cinnamon >= 5.4" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to deactivate the eye" msgstr "fare clic per disattivare l'occhio" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to activate the eye" msgstr "fare clic per attivare l'occhio" -#: 4.2/applet.js:390 5.4/applet.js:386 +#. 4.2/applet.js:397 5.4/applet.js:394 msgid "TIP" msgstr "SUGGERIMENTO" -#: 6.2/applet.js:46 +#. 6.2/applet.js:48 msgid "Hey, I saw that!" msgstr "Ehi, l'ho visto!" @@ -76,7 +76,8 @@ msgstr "Effeti" #. 4.2->settings-schema.json->click-generic->title #. 5.4->settings-schema.json->eye-generic->title #. 5.4->settings-schema.json->click-generic->title -#. 6.2->settings-schema.json->general->description +#. 6.2->settings-schema.json->general-page->title +#. 6.2->settings-schema.json->general-section->title msgid "General" msgstr "Generale" @@ -84,7 +85,7 @@ msgstr "Generale" #. 4.2->settings-schema.json->click-colors->title #. 5.4->settings-schema.json->eye-colors->title #. 5.4->settings-schema.json->click-colors->title -#. 6.2->settings-schema.json->colors->description +#. 6.2->settings-schema.json->colors-section->title msgid "Colors" msgstr "Colori" @@ -95,7 +96,6 @@ msgstr "Eventi" #. 4.2->settings-schema.json->eye-mode->description #. 5.4->settings-schema.json->eye-mode->description -#. 6.2->settings-schema.json->mode->description msgid "Mode" msgstr "Modalità" @@ -402,13 +402,11 @@ msgid "General Opacity" msgstr "Opacità Generale" #. 5.4->settings-schema.json->click-info->title -#. 6.2->settings-schema.json->info->description msgid "Info" msgstr "Info" #. 5.4->settings-schema.json->click-effects-moved-on- #. cinnamon-6.2-info->description -#. 6.2->settings-schema.json->click-effects-moved-info->description msgid "" "In Cinnamon versions 6.2 and later, the click effects have been removed from " "this applet and relocated to a new extension called 'mouse-click-effects,' " @@ -419,10 +417,45 @@ msgstr "" "\"effetti clic del mouse\", che può essere installata tramite il modulo " "delle impostazioni delle estensioni Cinnamon." +#. 6.2->settings-schema.json->style-page->title +#. 6.2->settings-schema.json->styles-section->title +msgid "Style" +msgstr "" + +#. 6.2->settings-schema.json->optimization-section->title +msgid "Optimizations" +msgstr "" + +#. 6.2->settings-schema.json->mode->description +#, fuzzy +msgid "Eye Mode" +msgstr "Modalità" + #. 6.2->settings-schema.json->tooltip-message->description msgid "Tooltip Message on Hover" msgstr "Messaggio di descrizione comando al passaggio del mouse" +#. 6.2->settings-schema.json->optimization-mode->description +#, fuzzy +msgid "Optimization Mode" +msgstr "Modalità Animazione al Clic" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Battery" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Balanced" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Performance" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Manual" +msgstr "" + #. 6.2->settings-schema.json->use-alternative-colors->description msgid "Use Alternative Colors for the Eye" msgstr "Usa colori alternativi per l'occhio" diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/nl.po b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/nl.po index 96db78d997e..d6c8d7945fa 100644 --- a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/nl.po +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/nl.po @@ -1,13 +1,13 @@ -# SOME DESCRIPTIVE TITLE. +# CINNAMON EYES # This file is put in the public domain. -# FIRST AUTHOR , YEAR. +# anaximeno, 2023 # msgid "" msgstr "" "Project-Id-Version: c-eyes@anaximeno 1.14.0\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-applets/" "issues\n" -"POT-Creation-Date: 2024-06-15 16:50-0100\n" +"POT-Creation-Date: 2024-09-22 04:46-0100\n" "PO-Revision-Date: 2024-07-24 10:02+0200\n" "Last-Translator: qadzek\n" "Language-Team: \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: 4.2/applet.js:56 5.4/applet.js:55 +#. 4.2/applet.js:56 5.4/applet.js:56 msgid "" "📢 The click effects will be removed from this applet on the version 6.2 of " "Cinnamon\n" @@ -31,19 +31,19 @@ msgstr "" " in het instellingenmodule voor Cinnamon-extensies voor versies van Cinnamon " ">= 5.4" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to deactivate the eye" msgstr "klik om het oog te deactiveren" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to activate the eye" msgstr "klik om het oog te activeren" -#: 4.2/applet.js:390 5.4/applet.js:386 +#. 4.2/applet.js:397 5.4/applet.js:394 msgid "TIP" msgstr "TIP" -#: 6.2/applet.js:46 +#. 6.2/applet.js:48 msgid "Hey, I saw that!" msgstr "Hé, dat heb ik gezien!" @@ -73,7 +73,8 @@ msgstr "Effecten" #. 4.2->settings-schema.json->click-generic->title #. 5.4->settings-schema.json->eye-generic->title #. 5.4->settings-schema.json->click-generic->title -#. 6.2->settings-schema.json->general->description +#. 6.2->settings-schema.json->general-page->title +#. 6.2->settings-schema.json->general-section->title msgid "General" msgstr "Algemeen" @@ -81,7 +82,7 @@ msgstr "Algemeen" #. 4.2->settings-schema.json->click-colors->title #. 5.4->settings-schema.json->eye-colors->title #. 5.4->settings-schema.json->click-colors->title -#. 6.2->settings-schema.json->colors->description +#. 6.2->settings-schema.json->colors-section->title msgid "Colors" msgstr "Kleuren" @@ -92,7 +93,6 @@ msgstr "Gebeurtenissen" #. 4.2->settings-schema.json->eye-mode->description #. 5.4->settings-schema.json->eye-mode->description -#. 6.2->settings-schema.json->mode->description msgid "Mode" msgstr "Modus" @@ -398,13 +398,11 @@ msgid "General Opacity" msgstr "Algemene ondoorzichtigheid" #. 5.4->settings-schema.json->click-info->title -#. 6.2->settings-schema.json->info->description msgid "Info" msgstr "Info" #. 5.4->settings-schema.json->click-effects-moved-on- #. cinnamon-6.2-info->description -#. 6.2->settings-schema.json->click-effects-moved-info->description msgid "" "In Cinnamon versions 6.2 and later, the click effects have been removed from " "this applet and relocated to a new extension called 'mouse-click-effects,' " @@ -415,10 +413,45 @@ msgstr "" "die kan worden geïnstalleerd via het instellingenmodule voor Cinnamon-" "extensies." +#. 6.2->settings-schema.json->style-page->title +#. 6.2->settings-schema.json->styles-section->title +msgid "Style" +msgstr "" + +#. 6.2->settings-schema.json->optimization-section->title +msgid "Optimizations" +msgstr "" + +#. 6.2->settings-schema.json->mode->description +#, fuzzy +msgid "Eye Mode" +msgstr "Modus" + #. 6.2->settings-schema.json->tooltip-message->description msgid "Tooltip Message on Hover" msgstr "Tooltip bericht bij zweven met de muis" +#. 6.2->settings-schema.json->optimization-mode->description +#, fuzzy +msgid "Optimization Mode" +msgstr "Klikanimatiemodus" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Battery" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Balanced" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Performance" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Manual" +msgstr "" + #. 6.2->settings-schema.json->use-alternative-colors->description msgid "Use Alternative Colors for the Eye" msgstr "Gebruik alternatieve kleuren voor het oog" diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/pt.po b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/pt.po index 1cbc151f1f1..52138b560fd 100644 --- a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/pt.po +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/pt.po @@ -1,15 +1,15 @@ -# SOME DESCRIPTIVE TITLE. +# CINNAMON EYES # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# anaximeno, 2023 # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-applets/" "issues\n" -"POT-Creation-Date: 2024-06-15 16:50-0100\n" -"PO-Revision-Date: 2024-06-15 16:56-0100\n" +"POT-Creation-Date: 2024-09-22 04:46-0100\n" +"PO-Revision-Date: 2024-09-22 04:48-0100\n" "Last-Translator: \n" "Language-Team: \n" "Language: pt\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.4.4\n" -#: 4.2/applet.js:56 5.4/applet.js:55 +#. 4.2/applet.js:56 5.4/applet.js:56 msgid "" "📢 The click effects will be removed from this applet on the version 6.2 of " "Cinnamon\n" @@ -33,19 +33,19 @@ msgstr "" "no módulo de definições para as extensões do Cinnamon para versões do " "Cinnamon >= 5.4" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to deactivate the eye" msgstr "clica para desativar o olho" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to activate the eye" msgstr "clica para ativar o olho" -#: 4.2/applet.js:390 5.4/applet.js:386 +#. 4.2/applet.js:397 5.4/applet.js:394 msgid "TIP" msgstr "DICA" -#: 6.2/applet.js:46 +#. 6.2/applet.js:48 msgid "Hey, I saw that!" msgstr "Ei, eu vi isso!" @@ -75,7 +75,8 @@ msgstr "Efeitos" #. 4.2->settings-schema.json->click-generic->title #. 5.4->settings-schema.json->eye-generic->title #. 5.4->settings-schema.json->click-generic->title -#. 6.2->settings-schema.json->general->description +#. 6.2->settings-schema.json->general-page->title +#. 6.2->settings-schema.json->general-section->title msgid "General" msgstr "Geral" @@ -83,7 +84,7 @@ msgstr "Geral" #. 4.2->settings-schema.json->click-colors->title #. 5.4->settings-schema.json->eye-colors->title #. 5.4->settings-schema.json->click-colors->title -#. 6.2->settings-schema.json->colors->description +#. 6.2->settings-schema.json->colors-section->title msgid "Colors" msgstr "Cores" @@ -94,7 +95,6 @@ msgstr "Eventos" #. 4.2->settings-schema.json->eye-mode->description #. 5.4->settings-schema.json->eye-mode->description -#. 6.2->settings-schema.json->mode->description msgid "Mode" msgstr "Modo" @@ -401,13 +401,11 @@ msgid "General Opacity" msgstr "Opacidade Geral" #. 5.4->settings-schema.json->click-info->title -#. 6.2->settings-schema.json->info->description msgid "Info" msgstr "Informação" #. 5.4->settings-schema.json->click-effects-moved-on- #. cinnamon-6.2-info->description -#. 6.2->settings-schema.json->click-effects-moved-info->description msgid "" "In Cinnamon versions 6.2 and later, the click effects have been removed from " "this applet and relocated to a new extension called 'mouse-click-effects,' " @@ -418,10 +416,43 @@ msgstr "" "click-effects,' que pode ser instalada através do módulo de configurações de " "Extensões do Cinnamon." +#. 6.2->settings-schema.json->style-page->title +#. 6.2->settings-schema.json->styles-section->title +msgid "Style" +msgstr "Estilo" + +#. 6.2->settings-schema.json->optimization-section->title +msgid "Optimizations" +msgstr "Optimizações" + +#. 6.2->settings-schema.json->mode->description +msgid "Eye Mode" +msgstr "Modo do Olho" + #. 6.2->settings-schema.json->tooltip-message->description msgid "Tooltip Message on Hover" msgstr "Mensagem da Dica durante a Sobreposição" +#. 6.2->settings-schema.json->optimization-mode->description +msgid "Optimization Mode" +msgstr "Modo de Animação do Clique" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Battery" +msgstr "Bateria" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Balanced" +msgstr "Balanceado" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Performance" +msgstr "Performance" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Manual" +msgstr "Manual" + #. 6.2->settings-schema.json->use-alternative-colors->description msgid "Use Alternative Colors for the Eye" msgstr "Usar Cores Alternativas para o Olho" diff --git a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/ru.po b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/ru.po index 4486ea93bb2..98af74b00f7 100644 --- a/c-eyes@anaximeno/files/c-eyes@anaximeno/po/ru.po +++ b/c-eyes@anaximeno/files/c-eyes@anaximeno/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-applets/" "issues\n" -"POT-Creation-Date: 2024-06-15 16:50-0100\n" +"POT-Creation-Date: 2024-09-22 04:46-0100\n" "PO-Revision-Date: \n" "Last-Translator: blogdron\n" "Language-Team: \n" @@ -14,7 +14,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.4.1\n" -#: 4.2/applet.js:56 5.4/applet.js:55 +#. 4.2/applet.js:56 5.4/applet.js:56 msgid "" "📢 The click effects will be removed from this applet on the version 6.2 of " "Cinnamon\n" @@ -23,19 +23,19 @@ msgid "" "on the Cinnamon Extensions settings module for versions of Cinnamon >= 5.4" msgstr "" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to deactivate the eye" msgstr "нажмите, чтобы деактивировать глаз" -#: 4.2/applet.js:389 5.4/applet.js:385 +#. 4.2/applet.js:396 5.4/applet.js:393 msgid "click to activate the eye" msgstr "нажмите, чтобы активировать глаз" -#: 4.2/applet.js:390 5.4/applet.js:386 +#. 4.2/applet.js:397 5.4/applet.js:394 msgid "TIP" msgstr "Совет" -#: 6.2/applet.js:46 +#. 6.2/applet.js:48 msgid "Hey, I saw that!" msgstr "" @@ -66,7 +66,8 @@ msgstr "Эффекты" #. 4.2->settings-schema.json->click-generic->title #. 5.4->settings-schema.json->eye-generic->title #. 5.4->settings-schema.json->click-generic->title -#. 6.2->settings-schema.json->general->description +#. 6.2->settings-schema.json->general-page->title +#. 6.2->settings-schema.json->general-section->title msgid "General" msgstr "Общие настройки" @@ -74,7 +75,7 @@ msgstr "Общие настройки" #. 4.2->settings-schema.json->click-colors->title #. 5.4->settings-schema.json->eye-colors->title #. 5.4->settings-schema.json->click-colors->title -#. 6.2->settings-schema.json->colors->description +#. 6.2->settings-schema.json->colors-section->title msgid "Colors" msgstr "Цвета" @@ -85,7 +86,6 @@ msgstr "События" #. 4.2->settings-schema.json->eye-mode->description #. 5.4->settings-schema.json->eye-mode->description -#. 6.2->settings-schema.json->mode->description msgid "Mode" msgstr "Стиль" @@ -386,23 +386,56 @@ msgid "General Opacity" msgstr "Общая Прозрачность" #. 5.4->settings-schema.json->click-info->title -#. 6.2->settings-schema.json->info->description msgid "Info" msgstr "" #. 5.4->settings-schema.json->click-effects-moved-on- #. cinnamon-6.2-info->description -#. 6.2->settings-schema.json->click-effects-moved-info->description msgid "" "In Cinnamon versions 6.2 and later, the click effects have been removed from " "this applet and relocated to a new extension called 'mouse-click-effects,' " "which can be installed through the Cinnamon Extensions settings module." msgstr "" +#. 6.2->settings-schema.json->style-page->title +#. 6.2->settings-schema.json->styles-section->title +msgid "Style" +msgstr "" + +#. 6.2->settings-schema.json->optimization-section->title +msgid "Optimizations" +msgstr "" + +#. 6.2->settings-schema.json->mode->description +#, fuzzy +msgid "Eye Mode" +msgstr "Стиль" + #. 6.2->settings-schema.json->tooltip-message->description msgid "Tooltip Message on Hover" msgstr "" +#. 6.2->settings-schema.json->optimization-mode->description +#, fuzzy +msgid "Optimization Mode" +msgstr "Режим анимации щелчка мыши" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Battery" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Balanced" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Performance" +msgstr "" + +#. 6.2->settings-schema.json->optimization-mode->options +msgid "Manual" +msgstr "" + #. 6.2->settings-schema.json->use-alternative-colors->description msgid "Use Alternative Colors for the Eye" msgstr ""