From f16ba3c1c1762c155a3e341471cda73c84f14ad1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Fri, 26 Aug 2022 19:24:11 +0200 Subject: [PATCH 001/212] Remove harmless error with paint signals --- src/effects/paint_signals.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/effects/paint_signals.js b/src/effects/paint_signals.js index 4c3437d0..8c836fd2 100644 --- a/src/effects/paint_signals.js +++ b/src/effects/paint_signals.js @@ -29,6 +29,24 @@ var PaintSignals = class PaintSignals { } catch (e) { } }); + // remove the actor from buffer when it is destroyed + if ( + actor.connect && + ( + !(actor instanceof GObject.Object) || + GObject.signal_lookup('destroy', actor) + ) + ) + this.connections.connect(actor, 'destroy', () => { + this.buffer.forEach(infos => { + if (infos.actor === actor) { + // remove from buffer + let index = this.buffer.indexOf(infos); + this.buffer.splice(index, 1); + } + }); + }); + this.buffer.push(infos); } From 45bc343d705955038a53c36dde9426422c6c0958 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Fri, 26 Aug 2022 19:34:07 +0200 Subject: [PATCH 002/212] Add an option to change the opacity of the applications This option is for the moment only general, it may be expanded later to be applied per-application. The default application blur preferences has also been changed in order to minimize the blur darkness. --- resources/ui/applications.ui | 27 +++++++++++++++ ...shell.extensions.blur-my-shell.gschema.xml | 9 +++-- src/components/applications.js | 34 ++++++++++++++----- src/conveniences/keys.js | 1 + src/extension.js | 8 +++++ src/preferences/applications.js | 5 +++ 6 files changed, 74 insertions(+), 10 deletions(-) diff --git a/resources/ui/applications.ui b/resources/ui/applications.ui index 2615bc01..6992f6eb 100644 --- a/resources/ui/applications.ui +++ b/resources/ui/applications.ui @@ -21,6 +21,27 @@ + + + Opacity + The opacity of the window on top of the blur effect, a higher value will be more legible. + opacity + + + + center + true + 200px + true + right + horizontal + 0 + opacity + + + + + Enable all by default @@ -113,4 +134,10 @@ Not recommended because of performance and stability issues. + + + 25 + 255 + 1 + \ No newline at end of file diff --git a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml index d6ccd9c6..30da0aad 100644 --- a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml +++ b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml @@ -264,7 +264,7 @@ - false + true Boolean, whether to customize the blur effect sigma/brightness or use general values @@ -274,7 +274,7 @@ - 0.6 + 1. Brightness to use for the blur effect @@ -292,6 +292,11 @@ 0. Lightness of the noise added to the blur effect + + + 230 + Opacity of the window actor on top of the blur effect + false diff --git a/src/components/applications.js b/src/components/applications.js index b9050548..66ae51af 100644 --- a/src/components/applications.js +++ b/src/components/applications.js @@ -302,8 +302,12 @@ var ApplicationsBlur = class ApplicationsBlur { this.paint_signals.disconnect_all(); } + // insert the blurred widget window_actor.insert_child_at_index(blur_actor, 0); + // set the window actor's opacity + this.set_window_opacity(window_actor, this.prefs.applications.OPACITY); + // register the blur actor/effect blur_actor['blur_provider_pid'] = pid; this.blur_actor_map.set(pid, blur_actor); @@ -329,6 +333,14 @@ var ApplicationsBlur = class ApplicationsBlur { ); } + /// Set the opacity of the window actor that sits on top of the blur effect. + set_window_opacity(window_actor, opacity) { + window_actor.get_children().forEach(child => { + if (child.name !== "blur-actor") + child.opacity = opacity; + }); + } + // Compute the offset constraints for a blur actor relative to the size and // position of the target window compute_offset(meta_window) { @@ -385,25 +397,21 @@ var ApplicationsBlur = class ApplicationsBlur { remove_blur(pid) { this._log(`removing blur for pid ${pid}`); - // global.window_group is null when restarting the shell, causing an - // innocent crash - if (global.window_group == null) - return; - - let meta_window = this.window_map.get(pid); // disconnect needed signals and untrack window if (meta_window) { this.window_map.delete(pid); + let window_actor = meta_window.get_compositor_private(); // remove blur actor and untrack it let blur_actor = this.blur_actor_map.get(pid); if (blur_actor) { this.blur_actor_map.delete(pid); - let window_actor = meta_window.get_compositor_private(); - if (window_actor) + if (window_actor) { + this.set_window_opacity(window_actor, 255); window_actor.remove_child(blur_actor); + } } } } @@ -421,6 +429,16 @@ var ApplicationsBlur = class ApplicationsBlur { this.paint_signals.disconnect_all(); } + /// Update the opacity of all window actors. + set_opacity() { + let opacity = this.prefs.applications.OPACITY; + + this.window_map.forEach(((meta_window, _pid) => { + let window_actor = meta_window.get_compositor_private(); + this.set_window_opacity(window_actor, opacity); + })); + } + /// Updates each blur effect to use new sigma value // FIXME set_sigma and set_brightness are called when the extension is // loaded and when sigma is changed, and do not respect the per-app diff --git a/src/conveniences/keys.js b/src/conveniences/keys.js index d6176077..a6203364 100644 --- a/src/conveniences/keys.js +++ b/src/conveniences/keys.js @@ -81,6 +81,7 @@ var Keys = [ { type: Type.C, name: "color" }, { type: Type.D, name: "noise-amount" }, { type: Type.D, name: "noise-lightness" }, + { type: Type.I, name: "opacity" }, { type: Type.B, name: "enable-all" }, { type: Type.AS, name: "whitelist" }, { type: Type.AS, name: "blacklist" }, diff --git a/src/extension.js b/src/extension.js index 7e7d400e..851c5c09 100644 --- a/src/extension.js +++ b/src/extension.js @@ -350,6 +350,14 @@ class Extension { } }); + // application opacity changed + this._prefs.applications.OPACITY_changed(_ => { + if (this._prefs.applications.BLUR) + this._applications_blur.set_opacity( + this._prefs.applications.OPACITY + ); + }); + // application enable-all changed this._prefs.applications.ENABLE_ALL_changed(_ => { if (this._prefs.applications.BLUR) diff --git a/src/preferences/applications.js b/src/preferences/applications.js index 39cb75b9..373dff51 100644 --- a/src/preferences/applications.js +++ b/src/preferences/applications.js @@ -15,6 +15,7 @@ var Applications = GObject.registerClass({ InternalChildren: [ 'blur', 'customize', + 'opacity', 'enable_all', 'whitelist', 'add_window_whitelist', @@ -31,6 +32,10 @@ var Applications = GObject.registerClass({ 'blur', this._blur, 'state', Gio.SettingsBindFlags.DEFAULT ); + this.preferences.applications.settings.bind( + 'opacity', this._opacity, 'value', + Gio.SettingsBindFlags.DEFAULT + ); this.preferences.applications.settings.bind( 'enable-all', this._enable_all, 'state', Gio.SettingsBindFlags.DEFAULT From d43f04a4989cbb2d6e0d5ea441b6bfc4e9b0e25e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Fri, 26 Aug 2022 20:00:57 +0200 Subject: [PATCH 003/212] Add an option to disable clipped redraws This entirely removes artefacts in the blur effect --- resources/ui/general.ui | 5 ++- ...shell.extensions.blur-my-shell.gschema.xml | 2 +- src/components/appfolders.js | 4 +- src/components/applications.js | 2 +- src/extension.js | 41 +++++++++++++++++-- 5 files changed, 45 insertions(+), 9 deletions(-) diff --git a/resources/ui/general.ui b/resources/ui/general.ui index b1473001..3070213d 100644 --- a/resources/ui/general.ui +++ b/resources/ui/general.ui @@ -133,7 +133,9 @@ Hack level - Changes the behaviour of dynamic blur effect. Default value is very recommended. + Changes the behaviour of dynamic blur effect. +Default value is very recommended, unless you use application blur in which case “No artefact” is better. +This option will entirely disable clipped redraws from GNOME shell, and may impact performances significantly but will entirely fix the blur effect. hack_level @@ -226,6 +228,7 @@ High performances Default High quality + No artefacts \ No newline at end of file diff --git a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml index 30da0aad..d8cb6ca9 100644 --- a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml +++ b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml @@ -35,7 +35,7 @@ 1 - Level of hacks to use (from 0 to 2) + Level of hacks to use (from 0 to 3, 3 disabling clipped redraws entirely) diff --git a/src/components/appfolders.js b/src/components/appfolders.js index c28741d5..f271a87c 100644 --- a/src/components/appfolders.js +++ b/src/components/appfolders.js @@ -147,7 +147,7 @@ var AppFoldersBlur = class AppFoldersBlur { blur_appfolders() { let appDisplay = Main.overview._overview.controls._appDisplay; - if (this.prefs.HACKS_LEVEL >= 1) + if (this.prefs.HACKS_LEVEL === 1 || this.prefs.HACKS_LEVEL === 2) this._log(`appfolders hack level ${this.prefs.HACKS_LEVEL}`); appDisplay._folderIcons.forEach(icon => { @@ -194,7 +194,7 @@ var AppFoldersBlur = class AppFoldersBlur { // // [1]: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2857 - if (this.prefs.HACKS_LEVEL >= 1) { + if (this.prefs.HACKS_LEVEL === 1 || this.prefs.HACKS_LEVEL === 2) { this.paint_signals.disconnect_all_for_actor(icon._dialog); this.paint_signals.connect(icon._dialog, blur_effect); } else { diff --git a/src/components/applications.js b/src/components/applications.js index 66ae51af..3dcf2c8d 100644 --- a/src/components/applications.js +++ b/src/components/applications.js @@ -293,7 +293,7 @@ var ApplicationsBlur = class ApplicationsBlur { ); // if hacks are selected, force to repaint the window - if (this.prefs.HACKS_LEVEL >= 1) { + if (this.prefs.HACKS_LEVEL === 1 || this.prefs.HACKS_LEVEL === 2) { this._log("applications hack level 1 or 2"); this.paint_signals.disconnect_all(); diff --git a/src/extension.js b/src/extension.js index 851c5c09..e4f986e8 100644 --- a/src/extension.js +++ b/src/extension.js @@ -1,6 +1,6 @@ 'use strict'; -const { St, Shell, Gio, Gtk } = imports.gi; +const { St, Shell, Gio, Gtk, Meta, Clutter } = imports.gi; const Main = imports.ui.main; const Me = imports.misc.extensionUtils.getCurrentExtension(); @@ -73,6 +73,10 @@ class Extension { this._applications_blur = new Applications.ApplicationsBlur(...init()); this._screenshot_blur = new Screenshot.ScreenshotBlur(...init()); + // maybe disable clipped redraw + + this._update_clipped_redraws(); + // connect each component to preferences change this._connect_to_settings(); @@ -138,6 +142,10 @@ class Extension { }); this._connections = []; + // remove the clipped redraws flag + + this._reenable_clipped_redraws(); + // remove the extension from GJS's global delete global.blur_my_shell; @@ -147,8 +155,8 @@ class Extension { this._prefs = null; } - /// Restart the extension - restart() { + /// Restart the extension. + _restart() { this._log("restarting..."); this.disable(); @@ -157,6 +165,31 @@ class Extension { this._log("restarted."); } + /// Add or remove the clutter debug flag to disable clipped redraws. + /// This will entirely fix the blur effect, but should not be used except if + /// the user really needs it, as clipped redraws are a huge performance + /// boost for the compositor. + _update_clipped_redraws() { + if (this._prefs.HACKS_LEVEL === 3) + this._disable_clipped_redraws(); + else + this._reenable_clipped_redraws(); + } + + /// Add the Clutter debug flag. + _disable_clipped_redraws() { + Meta.add_clutter_debug_flags( + null, Clutter.DrawDebugFlag.DISABLE_CLIPPED_REDRAWS, null + ); + } + + /// Remove the Clutter debug flag. + _reenable_clipped_redraws() { + Meta.remove_clutter_debug_flags( + null, Clutter.DrawDebugFlag.DISABLE_CLIPPED_REDRAWS, null + ); + } + /// Enables every component needed, should be called when the shell is /// entirely loaded as the `enable` methods interact with it. _enable_components() { @@ -219,7 +252,7 @@ class Extension { // restart the extension when hacks level is changed, easier than // restarting individual components and should not happen often either - this._prefs.HACKS_LEVEL_changed(_ => this.restart()); + this._prefs.HACKS_LEVEL_changed(_ => this._restart()); // connect each component to use the proper sigma/brightness/color From 2f3af78aec62d55f3b7a389bea50fa66402e3489 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sat, 27 Aug 2022 17:46:26 +0200 Subject: [PATCH 004/212] Improve preferences labels --- resources/ui/applications.ui | 4 +++- resources/ui/general.ui | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/resources/ui/applications.ui b/resources/ui/applications.ui index 6992f6eb..9d645529 100644 --- a/resources/ui/applications.ui +++ b/resources/ui/applications.ui @@ -8,7 +8,9 @@ Applications blur (beta) - Add blur to the applications. This is still a beta functionnality, is quite buggy and is only applied to the apps that ask it, or to the ones set in the whitelist below. + Add blur to the applications. This is still a beta functionnality. +To get the best results possible, make sure to choose option “No artefact” in the “General → Hack level” preference. + center diff --git a/resources/ui/general.ui b/resources/ui/general.ui index 3070213d..c02f3ff7 100644 --- a/resources/ui/general.ui +++ b/resources/ui/general.ui @@ -228,7 +228,7 @@ This option will entirely disable clipped redraws from GNOME shell, and may impa High performances Default High quality - No artefacts + No artefact \ No newline at end of file From 1a185a0a224d20e33da33118f4796e708b73e014 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sat, 27 Aug 2022 18:07:47 +0200 Subject: [PATCH 005/212] Remove blur on dialogs --- src/components/applications.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/applications.js b/src/components/applications.js index 3dcf2c8d..acf2f7d7 100644 --- a/src/components/applications.js +++ b/src/components/applications.js @@ -139,6 +139,11 @@ var ApplicationsBlur = class ApplicationsBlur { && ((enable_all && !blacklist.includes(window_wm_class)) || (!enable_all && whitelist.includes(window_wm_class)) ) + && [ + Meta.FrameType.NORMAL, + Meta.FrameType.DIALOG, + Meta.FrameType.MODAL_DIALOG + ].includes(meta_window.get_frame_type()) ) { this._log(`application ${pid} listed, blurring it`); From ecda35c639d040e1492ed14b25b8843144e66822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sat, 27 Aug 2022 18:50:10 +0200 Subject: [PATCH 006/212] Show blur of windows on next workspaces when switching --- src/components/overview.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/components/overview.js b/src/components/overview.js index 62432b32..223650e5 100644 --- a/src/components/overview.js +++ b/src/components/overview.js @@ -64,6 +64,7 @@ var OverviewBlur = class OverviewBlur { this._original_PrepareSwitch = wac_proto._prepareWorkspaceSwitch; this._original_FinishSwitch = wac_proto._finishWorkspaceSwitch; + const w_m = global.workspace_manager; const outer_this = this; // create a blurred background actor for each monitor during a workspace @@ -72,6 +73,17 @@ var OverviewBlur = class OverviewBlur { outer_this._log("prepare workspace switch"); outer_this._original_PrepareSwitch.apply(this, params); + // this permits to show the blur behind windows that are on + // workspaces on the left and right + if (outer_this.prefs.applications.BLUR) { + let ws_index = w_m.get_active_workspace_index(); + [ws_index - 1, ws_index + 1].forEach( + i => w_m.get_workspace_by_index(i)?.list_windows().forEach( + window => window.get_compositor_private().show() + ) + ); + } + Main.layoutManager.monitors.forEach(monitor => { if ( !( @@ -99,6 +111,15 @@ var OverviewBlur = class OverviewBlur { outer_this._log("finish workspace switch"); outer_this._original_FinishSwitch.apply(this, params); + // this hides windows that are not on the current workspace + if (outer_this.prefs.applications.BLUR) + for (let i = 0; i < w_m.get_n_workspaces(); i++) { + if (i != w_m.get_active_workspace_index()) + w_m.get_workspace_by_index(i)?.list_windows().forEach( + window => window.get_compositor_private().hide() + ); + } + outer_this._workspace_switch_bg_actors.forEach(actor => { actor.destroy(); }); From 9268781cdcf0e9c87d9f5deac82341f8ee24a3a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sat, 27 Aug 2022 21:00:55 +0200 Subject: [PATCH 007/212] Add a way to blur windows on workspace viewer in overview --- resources/ui/applications.ui | 17 +++++ ...shell.extensions.blur-my-shell.gschema.xml | 5 ++ src/components/applications.js | 75 ++++++++++++++++++- src/components/overview.js | 8 +- src/conveniences/keys.js | 1 + src/extension.js | 6 ++ src/preferences/applications.js | 5 ++ 7 files changed, 114 insertions(+), 3 deletions(-) diff --git a/resources/ui/applications.ui b/resources/ui/applications.ui index 9d645529..3dff71d6 100644 --- a/resources/ui/applications.ui +++ b/resources/ui/applications.ui @@ -44,6 +44,23 @@ To get the best results possible, make sure to choose option “No artefact” i + + + + Blur on overview + Forces the blur to be properly shown on all workspaces on overview. +This may cause some latency or performance issues. + blur_on_overview + + + + + center + + + + + Enable all by default diff --git a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml index d8cb6ca9..d3dd46de 100644 --- a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml +++ b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml @@ -297,6 +297,11 @@ 230 Opacity of the window actor on top of the blur effect + + + false + Wether or not to blur applications on the overview + false diff --git a/src/components/applications.js b/src/components/applications.js index acf2f7d7..7b813402 100644 --- a/src/components/applications.js +++ b/src/components/applications.js @@ -1,6 +1,7 @@ 'use strict'; const { Shell, Clutter, Meta, GLib } = imports.gi; +const Main = imports.ui.main; const Me = imports.misc.extensionUtils.getCurrentExtension(); const { PaintSignals } = Me.imports.effects.paint_signals; @@ -41,6 +42,45 @@ var ApplicationsBlur = class ApplicationsBlur { } } ); + + this.connect_to_overview(); + } + + /// Connect to the overview being opened/closed to force the blur being + /// shown on every window of the workspaces viewer. + connect_to_overview() { + this.connections.disconnect_all_for(Main.overview); + + if (this.prefs.applications.BLUR_ON_OVERVIEW) { + // when the overview is opened, show every window actors (which + // allows the blur to be shown too) + this.connections.connect( + Main.overview, 'showing', + _ => this.window_map.forEach((meta_window, _pid) => { + let window_actor = meta_window.get_compositor_private(); + window_actor.show(); + }) + ); + + // when the overview is closed, hide every actor that is not on the + // current workspace (to mimic the original behaviour) + this.connections.connect( + Main.overview, 'hidden', + _ => { + let active_workspace = + global.workspace_manager.get_active_workspace(); + + this.window_map.forEach((meta_window, _pid) => { + let window_actor = meta_window.get_compositor_private(); + + if ( + meta_window.get_workspace() !== active_workspace + ) + window_actor.hide(); + }); + } + ); + } } /// Iterate through all existing windows and add blur as needed. @@ -310,6 +350,10 @@ var ApplicationsBlur = class ApplicationsBlur { // insert the blurred widget window_actor.insert_child_at_index(blur_actor, 0); + // make sure window is blurred in overview + if (this.prefs.applications.BLUR_ON_OVERVIEW) + this.enforce_window_visibility_on_overview_for(window_actor); + // set the window actor's opacity this.set_window_opacity(window_actor, this.prefs.applications.OPACITY); @@ -338,6 +382,30 @@ var ApplicationsBlur = class ApplicationsBlur { ); } + /// Makes sure that, when the overview is visible, the window actor will + /// stay visible no matter what. + /// We can instead hide the last child of the window actor, which will + /// improve performances without hiding the blur effect. + enforce_window_visibility_on_overview_for(window_actor) { + this.connections.connect(window_actor, 'notify::visible', + _ => { + if (this.prefs.applications.BLUR_ON_OVERVIEW) { + if ( + !window_actor.visible + && Main.overview.visible + ) { + window_actor.show(); + window_actor.get_last_child().hide(); + } + else if ( + window_actor.visible + ) + window_actor.get_last_child().show(); + } + } + ); + } + /// Set the opacity of the window actor that sits on top of the blur effect. set_window_opacity(window_actor, opacity) { window_actor.get_children().forEach(child => { @@ -408,14 +476,19 @@ var ApplicationsBlur = class ApplicationsBlur { this.window_map.delete(pid); let window_actor = meta_window.get_compositor_private(); - // remove blur actor and untrack it let blur_actor = this.blur_actor_map.get(pid); if (blur_actor) { this.blur_actor_map.delete(pid); if (window_actor) { + // reset the opacity this.set_window_opacity(window_actor, 255); + + // remove the blurred actor window_actor.remove_child(blur_actor); + + // disconnect the signals about overview animation etc + this.connections.disconnect_all_for(window_actor); } } } diff --git a/src/components/overview.js b/src/components/overview.js index 223650e5..35347c4b 100644 --- a/src/components/overview.js +++ b/src/components/overview.js @@ -75,7 +75,9 @@ var OverviewBlur = class OverviewBlur { // this permits to show the blur behind windows that are on // workspaces on the left and right - if (outer_this.prefs.applications.BLUR) { + if ( + outer_this.prefs.applications.BLUR + ) { let ws_index = w_m.get_active_workspace_index(); [ws_index - 1, ws_index + 1].forEach( i => w_m.get_workspace_by_index(i)?.list_windows().forEach( @@ -112,7 +114,9 @@ var OverviewBlur = class OverviewBlur { outer_this._original_FinishSwitch.apply(this, params); // this hides windows that are not on the current workspace - if (outer_this.prefs.applications.BLUR) + if ( + outer_this.prefs.applications.BLUR + ) for (let i = 0; i < w_m.get_n_workspaces(); i++) { if (i != w_m.get_active_workspace_index()) w_m.get_workspace_by_index(i)?.list_windows().forEach( diff --git a/src/conveniences/keys.js b/src/conveniences/keys.js index a6203364..e474ded4 100644 --- a/src/conveniences/keys.js +++ b/src/conveniences/keys.js @@ -82,6 +82,7 @@ var Keys = [ { type: Type.D, name: "noise-amount" }, { type: Type.D, name: "noise-lightness" }, { type: Type.I, name: "opacity" }, + { type: Type.B, name: "blur-on-overview" }, { type: Type.B, name: "enable-all" }, { type: Type.AS, name: "whitelist" }, { type: Type.AS, name: "blacklist" }, diff --git a/src/extension.js b/src/extension.js index e4f986e8..1281e32d 100644 --- a/src/extension.js +++ b/src/extension.js @@ -391,6 +391,12 @@ class Extension { ); }); + // application blur-on-overview changed + this._prefs.applications.BLUR_ON_OVERVIEW_changed(_ => { + if (this._prefs.applications.BLUR) + this._applications_blur.connect_to_overview(); + }); + // application enable-all changed this._prefs.applications.ENABLE_ALL_changed(_ => { if (this._prefs.applications.BLUR) diff --git a/src/preferences/applications.js b/src/preferences/applications.js index 373dff51..67c668a1 100644 --- a/src/preferences/applications.js +++ b/src/preferences/applications.js @@ -16,6 +16,7 @@ var Applications = GObject.registerClass({ 'blur', 'customize', 'opacity', + 'blur_on_overview', 'enable_all', 'whitelist', 'add_window_whitelist', @@ -36,6 +37,10 @@ var Applications = GObject.registerClass({ 'opacity', this._opacity, 'value', Gio.SettingsBindFlags.DEFAULT ); + this.preferences.applications.settings.bind( + 'blur-on-overview', this._blur_on_overview, 'state', + Gio.SettingsBindFlags.DEFAULT + ); this.preferences.applications.settings.bind( 'enable-all', this._enable_all, 'state', Gio.SettingsBindFlags.DEFAULT From 5bbf1cd3072ed9f76eadfff9642ca99aa7b535a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sat, 27 Aug 2022 21:06:26 +0200 Subject: [PATCH 008/212] Version 43 --- metadata.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata.json b/metadata.json index 39c0da26..86111c99 100644 --- a/metadata.json +++ b/metadata.json @@ -10,5 +10,5 @@ "original-authors": [ "me@aunetx.dev" ], - "version": 42 + "version": 43 } \ No newline at end of file From 1307c1ed2b2db437f3ea0cf98c8eedb9b96da9f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sat, 27 Aug 2022 21:07:45 +0200 Subject: [PATCH 009/212] Update pot files --- po/LINGUAS | 2 + po/ar.po | 130 +++++++++++++++++++--------- po/blur-my-shell@aunetx.pot | 106 +++++++++++++++-------- po/cs.po | 136 ++++++++++++++++++++--------- po/de.po | 152 +++++++++++++++++++++++---------- po/es.po | 148 ++++++++++++++++++++++---------- po/fr.po | 138 +++++++++++++++++++++--------- po/hu.po | 122 ++++++++++++++++++-------- po/it.po | 147 +++++++++++++++++++++---------- po/ko.po | 110 ++++++++++++++++-------- po/nb_NO.po | 135 ++++++++++++++++++++--------- po/nl.po | 151 ++++++++++++++++++++++---------- po/pl.po | 131 +++++++++++++++++++--------- po/pt.po | 110 ++++++++++++++++-------- po/ru.po | 140 ++++++++++++++++++++---------- po/ta.po | 166 ++++++++++++++++++++++++------------ po/tr.po | 145 +++++++++++++++++++++---------- po/zh_Hans.po | 142 +++++++++++++++++++++--------- 18 files changed, 1614 insertions(+), 697 deletions(-) diff --git a/po/LINGUAS b/po/LINGUAS index 9342022e..5dc22ad7 100644 --- a/po/LINGUAS +++ b/po/LINGUAS @@ -5,9 +5,11 @@ es fr hu it +ko nb_NO nl pl +pt ru ta tr diff --git a/po/ar.po b/po/ar.po index fcd10b30..ece51025 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-20 15:00+0200\n" +"POT-Creation-Date: 2022-08-27 21:07+0200\n" "PO-Revision-Date: 2022-05-27 11:40+0000\n" "Last-Translator: fawaz006 \n" "Language-Team: Arabic \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: applications.ui:5 @@ -27,38 +27,59 @@ msgstr "" #: applications.ui:11 msgid "" -"Add blur to the applications. This is still a beta functionnality, is quite " -"buggy and is only applied to the apps that ask it, or to the ones set in the " -"whitelist below." +"Add blur to the applications. This is still a beta functionnality.\n" +"To get the best results possible, make sure to choose option “No artefact” " +"in the “General → Hack level” preference.\n" +" " msgstr "" -#: applications.ui:26 +#: applications.ui:28 +msgid "Opacity" +msgstr "" + +#: applications.ui:29 +msgid "" +"The opacity of the window on top of the blur effect, a higher value will be " +"more legible." +msgstr "" + +#: applications.ui:50 +msgid "Blur on overview" +msgstr "" + +#: applications.ui:51 +msgid "" +"Forces the blur to be properly shown on all workspaces on overview.\n" +"This may cause some latency or performance issues." +msgstr "" + +#: applications.ui:66 msgid "Enable all by default" msgstr "" -#: applications.ui:27 +#: applications.ui:67 msgid "" -"Adds blur behind all windows by default. Not recommended because of " -"performance and stability issues." +"Adds blur behind all windows by default.\n" +"Not recommended because of performance and stability issues." msgstr "" -#: applications.ui:43 +#: applications.ui:84 msgid "Whitelist" msgstr "" -#: applications.ui:44 +#: applications.ui:85 msgid "A list of windows to blur." msgstr "" -#: applications.ui:62 applications.ui:99 +#: applications.ui:103 applications.ui:140 msgid "Add Window" msgstr "" -#: applications.ui:80 +#: applications.ui:121 msgid "Blacklist" msgstr "" -#: applications.ui:81 +#: applications.ui:122 msgid "A list of windows not to blur." msgstr "" @@ -139,7 +160,7 @@ msgstr "" msgid "Blur the background of the Dash to Dock extension, if it is used." msgstr "" -#: dash.ui:26 +#: dash.ui:26 panel.ui:56 msgid "Override background" msgstr "" @@ -193,57 +214,64 @@ msgstr "" #: general.ui:136 msgid "" -"Changes the behaviour of dynamic blur effect. Default value is very " -"recommended." +"Changes the behaviour of dynamic blur effect.\n" +"Default value is very recommended, unless you use application blur in which " +"case “No artefact” is better.\n" +"This option will entirely disable clipped redraws from GNOME shell, and may " +"impact performances significantly but will entirely fix the blur effect." msgstr "" -#: general.ui:149 +#: general.ui:151 msgid "Debug" msgstr "" -#: general.ui:150 +#: general.ui:152 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." msgstr "" -#: general.ui:165 +#: general.ui:167 msgid "Reset preferences" msgstr "" -#: general.ui:166 +#: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." msgstr "" -#: general.ui:185 +#: general.ui:187 msgid "Reset" msgstr "" -#: general.ui:189 +#: general.ui:228 msgid "High performances" msgstr "" -#: general.ui:190 +#: general.ui:229 msgid "Default" msgstr "" -#: general.ui:191 +#: general.ui:230 msgid "High quality" msgstr "" -#: menu.ui:12 +#: general.ui:231 +msgid "No artefact" +msgstr "" + +#: menu.ui:6 msgid "Project page" msgstr "" -#: menu.ui:16 +#: menu.ui:10 msgid "Report a Bug" msgstr "" -#: menu.ui:20 +#: menu.ui:14 msgid "License" msgstr "" -#: menu.ui:24 +#: menu.ui:18 msgid "Donate" msgstr "" @@ -349,27 +377,33 @@ msgstr "" msgid "Disables the blur from the panel when entering the overview." msgstr "" -#: panel.ui:56 +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" + +#: panel.ui:64 msgid "Disable when a window is near" msgstr "" -#: panel.ui:57 -msgid "Disables the blur from the panel when a window is near it." +#: panel.ui:65 +msgid "Disables the transparency of the panel when a window is near it." msgstr "" -#: panel.ui:73 +#: panel.ui:82 msgid "Compatibility" msgstr "" -#: panel.ui:74 +#: panel.ui:83 msgid "Various options to provide compatibility with other extensions." msgstr "" -#: panel.ui:78 +#: panel.ui:88 msgid "Hidetopbar extension" msgstr "" -#: panel.ui:79 +#: panel.ui:89 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" diff --git a/po/cs.po b/po/cs.po index 03f42927..95d1e6c7 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-20 15:00+0200\n" +"POT-Creation-Date: 2022-08-27 21:07+0200\n" "PO-Revision-Date: 2022-07-26 16:23+0000\n" "Last-Translator: vikdevelop \n" "Language-Team: Czech \n" "Language-Team: German \n" "Language-Team: Spanish \n" "Language-Team: French \n" "Language-Team: Hungarian \n" "Language-Team: Italian \n" "Language-Team: Korean \n" "Language-Team: Norwegian Bokmål \n" -"Language-Team: Dutch \n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,43 +29,59 @@ msgstr "Toepassingen vervagen (bèta)" #: applications.ui:11 msgid "" -"Add blur to the applications. This is still a beta functionnality, is quite " -"buggy and is only applied to the apps that ask it, or to the ones set in the " -"whitelist below." +"Add blur to the applications. This is still a beta functionnality.\n" +"To get the best results possible, make sure to choose option “No artefact” " +"in the “General → Hack level” preference.\n" +" " msgstr "" -"Vervaging toevoegen aan toepassingen. Deze functionaliteit is nog niet " -"stabiel, en wordt alleen toegepast op toepassingen die er om vragen of in de " -"lijst hieronder staan." -#: applications.ui:26 +#: applications.ui:28 +msgid "Opacity" +msgstr "" + +#: applications.ui:29 +msgid "" +"The opacity of the window on top of the blur effect, a higher value will be " +"more legible." +msgstr "" + +#: applications.ui:50 +msgid "Blur on overview" +msgstr "" + +#: applications.ui:51 +msgid "" +"Forces the blur to be properly shown on all workspaces on overview.\n" +"This may cause some latency or performance issues." +msgstr "" + +#: applications.ui:66 msgid "Enable all by default" msgstr "Alle standaard inschakelen" -#: applications.ui:27 +#: applications.ui:67 msgid "" -"Adds blur behind all windows by default. Not recommended because of " -"performance and stability issues." +"Adds blur behind all windows by default.\n" +"Not recommended because of performance and stability issues." msgstr "" -"Past standaard vervaging toe achter alle vensters. Niet aanbevolen vanwege " -"prestatie- en stabiliteitsproblemen." -#: applications.ui:43 +#: applications.ui:84 msgid "Whitelist" msgstr "Witte lijst" -#: applications.ui:44 +#: applications.ui:85 msgid "A list of windows to blur." msgstr "Een lijst van vensters om te vervagen." -#: applications.ui:62 applications.ui:99 +#: applications.ui:103 applications.ui:140 msgid "Add Window" msgstr "Venster toevoegen" -#: applications.ui:80 +#: applications.ui:121 msgid "Blacklist" msgstr "Zwarte lijst" -#: applications.ui:81 +#: applications.ui:122 msgid "A list of windows not to blur." msgstr "Een lijst van vensters om niet te vervagen." @@ -158,7 +174,7 @@ msgstr "" "De achtergrond van de Dash to Dock-uitbreiding vervagen, als deze wordt " "gebruikt." -#: dash.ui:26 +#: dash.ui:26 panel.ui:56 msgid "Override background" msgstr "Achtergrond overschrijven" @@ -220,17 +236,18 @@ msgstr "Hack-niveau" #: general.ui:136 msgid "" -"Changes the behaviour of dynamic blur effect. Default value is very " -"recommended." +"Changes the behaviour of dynamic blur effect.\n" +"Default value is very recommended, unless you use application blur in which " +"case “No artefact” is better.\n" +"This option will entirely disable clipped redraws from GNOME shell, and may " +"impact performances significantly but will entirely fix the blur effect." msgstr "" -"Het gedrag van het dynamische vervagingseffect aanpassen. De standaardwaarde " -"wordt sterk aangeraden." -#: general.ui:149 +#: general.ui:151 msgid "Debug" msgstr "Foutopsporing" -#: general.ui:150 +#: general.ui:152 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." @@ -238,35 +255,47 @@ msgstr "" "De logboeken van de uitbreiding uitgebreider maken, activeer wanneer u een " "probleem gaat melden." -#: general.ui:189 +#: general.ui:167 +msgid "Reset preferences" +msgstr "Voorkeuren opnieuw instellen" + +#: general.ui:168 +msgid "Resets preferences of Blur my Shell irreversibly." +msgstr "" + +#: general.ui:187 +msgid "Reset" +msgstr "" + +#: general.ui:228 msgid "High performances" msgstr "Hoge prestaties" -#: general.ui:190 +#: general.ui:229 msgid "Default" msgstr "Standaard" -#: general.ui:191 +#: general.ui:230 msgid "High quality" msgstr "Hoge kwaliteit" -#: menu.ui:6 -msgid "Reset preferences" -msgstr "Voorkeuren opnieuw instellen" +#: general.ui:231 +msgid "No artefact" +msgstr "" -#: menu.ui:12 +#: menu.ui:6 msgid "Project page" msgstr "Projectpagina" -#: menu.ui:16 +#: menu.ui:10 msgid "Report a Bug" msgstr "Een probleem melden" -#: menu.ui:20 +#: menu.ui:14 msgid "License" msgstr "Licentie" -#: menu.ui:24 +#: menu.ui:18 msgid "Donate" msgstr "Doneren" @@ -381,28 +410,33 @@ msgstr "" "De vervaging van het paneel uitschakelen wanneer het overzicht wordt " "geactiveerd." -#: panel.ui:56 +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" + +#: panel.ui:64 msgid "Disable when a window is near" msgstr "Uitschakelen wanneer een venster dichtbij is" -#: panel.ui:57 -msgid "Disables the blur from the panel when a window is near it." +#: panel.ui:65 +msgid "Disables the transparency of the panel when a window is near it." msgstr "" -"Vervaging van het paneel uitschakelen wanneer een venster dichtbij komt." -#: panel.ui:73 +#: panel.ui:82 msgid "Compatibility" msgstr "Compatibiliteit" -#: panel.ui:74 +#: panel.ui:83 msgid "Various options to provide compatibility with other extensions." msgstr "Verschillende opties voor compatibiliteit met andere uitbreidingen." -#: panel.ui:78 +#: panel.ui:88 msgid "Hidetopbar extension" msgstr "Hide Top Bar-uitbreiding" -#: panel.ui:79 +#: panel.ui:89 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" "De vervaging in het overzicht niet uitschakelen, best samen gebruikt met " @@ -420,6 +454,33 @@ msgstr "Venster selecteren" msgid "Pick a window or select it by its classname." msgstr "Kies een venster of selecteer deze bij hun klassenaam." +#~ msgid "" +#~ "Add blur to the applications. This is still a beta functionnality, is " +#~ "quite buggy and is only applied to the apps that ask it, or to the ones " +#~ "set in the whitelist below." +#~ msgstr "" +#~ "Vervaging toevoegen aan toepassingen. Deze functionaliteit is nog niet " +#~ "stabiel, en wordt alleen toegepast op toepassingen die er om vragen of in " +#~ "de lijst hieronder staan." + +#~ msgid "" +#~ "Adds blur behind all windows by default. Not recommended because of " +#~ "performance and stability issues." +#~ msgstr "" +#~ "Past standaard vervaging toe achter alle vensters. Niet aanbevolen " +#~ "vanwege prestatie- en stabiliteitsproblemen." + +#~ msgid "" +#~ "Changes the behaviour of dynamic blur effect. Default value is very " +#~ "recommended." +#~ msgstr "" +#~ "Het gedrag van het dynamische vervagingseffect aanpassen. De " +#~ "standaardwaarde wordt sterk aangeraden." + +#~ msgid "Disables the blur from the panel when a window is near it." +#~ msgstr "" +#~ "Vervaging van het paneel uitschakelen wanneer een venster dichtbij komt." + #~ msgid "" #~ "A list of the applications to blur, one per line. To get an application " #~ "class name, under xorg you can use `xprop|grep WM_CLASS` and paste the " diff --git a/po/pl.po b/po/pl.po index 83cc85fa..71d1b5d5 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-20 15:00+0200\n" +"POT-Creation-Date: 2022-08-27 21:07+0200\n" "PO-Revision-Date: 2022-05-29 12:18+0000\n" "Last-Translator: Rali Boińskx \n" "Language-Team: Polish \n" "Language-Team: \n" @@ -29,43 +29,59 @@ msgstr "Размытие приложений (бета)" #: applications.ui:11 msgid "" -"Add blur to the applications. This is still a beta functionnality, is quite " -"buggy and is only applied to the apps that ask it, or to the ones set in the " -"whitelist below." +"Add blur to the applications. This is still a beta functionnality.\n" +"To get the best results possible, make sure to choose option “No artefact” " +"in the “General → Hack level” preference.\n" +" " msgstr "" -"Добавляет размытие приложений. Это пока бета-функция, она довольно глючная и " -"применяется только к тем приложениям, которые просят об этом, или к тем, " -"которые заданы в белом списке ниже." -#: applications.ui:26 +#: applications.ui:28 +msgid "Opacity" +msgstr "" + +#: applications.ui:29 +msgid "" +"The opacity of the window on top of the blur effect, a higher value will be " +"more legible." +msgstr "" + +#: applications.ui:50 +msgid "Blur on overview" +msgstr "" + +#: applications.ui:51 +msgid "" +"Forces the blur to be properly shown on all workspaces on overview.\n" +"This may cause some latency or performance issues." +msgstr "" + +#: applications.ui:66 msgid "Enable all by default" msgstr "Включить для всех по умолчанию" -#: applications.ui:27 +#: applications.ui:67 msgid "" -"Adds blur behind all windows by default. Not recommended because of " -"performance and stability issues." +"Adds blur behind all windows by default.\n" +"Not recommended because of performance and stability issues." msgstr "" -"По умолчанию добавляет размытие для всех окон. Не рекомендуется из-за " -"проблем с производительностью и стабильностью." -#: applications.ui:43 +#: applications.ui:84 msgid "Whitelist" msgstr "Белый список" -#: applications.ui:44 +#: applications.ui:85 msgid "A list of windows to blur." msgstr "Список окон для размытия." -#: applications.ui:62 applications.ui:99 +#: applications.ui:103 applications.ui:140 msgid "Add Window" msgstr "Добавить окно" -#: applications.ui:80 +#: applications.ui:121 msgid "Blacklist" msgstr "Черный список" -#: applications.ui:81 +#: applications.ui:122 msgid "A list of windows not to blur." msgstr "Список окон, которые не нужно размывать." @@ -156,7 +172,7 @@ msgstr "Размытие \"Dash to Dock\"" msgid "Blur the background of the Dash to Dock extension, if it is used." msgstr "Размытие фона расширения Dash to Dock, если оно используется." -#: dash.ui:26 +#: dash.ui:26 panel.ui:56 msgid "Override background" msgstr "Переопределить фон" @@ -215,17 +231,18 @@ msgstr "Уровень взлома" #: general.ui:136 msgid "" -"Changes the behaviour of dynamic blur effect. Default value is very " -"recommended." +"Changes the behaviour of dynamic blur effect.\n" +"Default value is very recommended, unless you use application blur in which " +"case “No artefact” is better.\n" +"This option will entirely disable clipped redraws from GNOME shell, and may " +"impact performances significantly but will entirely fix the blur effect." msgstr "" -"Изменяет поведение эффекта динамического размытия. Значение по умолчанию " -"является очень рекомендуемым." -#: general.ui:149 +#: general.ui:151 msgid "Debug" msgstr "Отладка" -#: general.ui:150 +#: general.ui:152 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." @@ -233,43 +250,47 @@ msgstr "" "Делает работу расширения подробной в журналах, активируется, когда вам нужно " "сообщить о проблеме." -#: general.ui:165 +#: general.ui:167 msgid "Reset preferences" msgstr "Сброс настроек" -#: general.ui:166 +#: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." msgstr "Необратимо сбрасывает настройки Blur my Shell." -#: general.ui:185 +#: general.ui:187 msgid "Reset" msgstr "Сбросить" -#: general.ui:189 +#: general.ui:228 msgid "High performances" msgstr "Высокая производительность" -#: general.ui:190 +#: general.ui:229 msgid "Default" msgstr "По умолчанию" -#: general.ui:191 +#: general.ui:230 msgid "High quality" msgstr "Высокое качество" -#: menu.ui:12 +#: general.ui:231 +msgid "No artefact" +msgstr "" + +#: menu.ui:6 msgid "Project page" msgstr "Страница проекта" -#: menu.ui:16 +#: menu.ui:10 msgid "Report a Bug" msgstr "Сообщить об ошибке" -#: menu.ui:20 +#: menu.ui:14 msgid "License" msgstr "Лицензия" -#: menu.ui:24 +#: menu.ui:18 msgid "Donate" msgstr "Пожертвовать" @@ -382,27 +403,33 @@ msgstr "" msgid "Disables the blur from the panel when entering the overview." msgstr "Отключает размытие верхней панели при входе в Обзор." -#: panel.ui:56 +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" + +#: panel.ui:64 msgid "Disable when a window is near" msgstr "Отключить, когда рядом находится окно" -#: panel.ui:57 -msgid "Disables the blur from the panel when a window is near it." -msgstr "Отключает размытие верхней панели, когда рядом с ней находится окно." +#: panel.ui:65 +msgid "Disables the transparency of the panel when a window is near it." +msgstr "" -#: panel.ui:73 +#: panel.ui:82 msgid "Compatibility" msgstr "Совместимость" -#: panel.ui:74 +#: panel.ui:83 msgid "Various options to provide compatibility with other extensions." msgstr "Различные опции для обеспечения совместимости с другими расширениями." -#: panel.ui:78 +#: panel.ui:88 msgid "Hidetopbar extension" msgstr "Расширение \"Hidetopbar\"" -#: panel.ui:79 +#: panel.ui:89 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" "Не отключает размытие в Обзоре, лучше всего использовать со статическим " @@ -420,6 +447,33 @@ msgstr "Выбрать окно" msgid "Pick a window or select it by its classname." msgstr "Выберите окно или выделите его по имени класса." +#~ msgid "" +#~ "Add blur to the applications. This is still a beta functionnality, is " +#~ "quite buggy and is only applied to the apps that ask it, or to the ones " +#~ "set in the whitelist below." +#~ msgstr "" +#~ "Добавляет размытие приложений. Это пока бета-функция, она довольно " +#~ "глючная и применяется только к тем приложениям, которые просят об этом, " +#~ "или к тем, которые заданы в белом списке ниже." + +#~ msgid "" +#~ "Adds blur behind all windows by default. Not recommended because of " +#~ "performance and stability issues." +#~ msgstr "" +#~ "По умолчанию добавляет размытие для всех окон. Не рекомендуется из-за " +#~ "проблем с производительностью и стабильностью." + +#~ msgid "" +#~ "Changes the behaviour of dynamic blur effect. Default value is very " +#~ "recommended." +#~ msgstr "" +#~ "Изменяет поведение эффекта динамического размытия. Значение по умолчанию " +#~ "является очень рекомендуемым." + +#~ msgid "Disables the blur from the panel when a window is near it." +#~ msgstr "" +#~ "Отключает размытие верхней панели, когда рядом с ней находится окно." + #~ msgid "" #~ "A list of the applications to blur, one per line. To get an application " #~ "class name, under xorg you can use `xprop|grep WM_CLASS` and paste the " diff --git a/po/ta.po b/po/ta.po index 69934671..ccf59a6f 100644 --- a/po/ta.po +++ b/po/ta.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-20 15:00+0200\n" +"POT-Creation-Date: 2022-08-27 21:07+0200\n" "PO-Revision-Date: 2022-08-23 16:15+0000\n" "Last-Translator: K.B.Dharun Krishna \n" -"Language-Team: Tamil \n" +"Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,43 +29,59 @@ msgstr "பயன்பாடுகள் மங்கலாக்குதல #: applications.ui:11 msgid "" -"Add blur to the applications. This is still a beta functionnality, is quite " -"buggy and is only applied to the apps that ask it, or to the ones set in the " -"whitelist below." +"Add blur to the applications. This is still a beta functionnality.\n" +"To get the best results possible, make sure to choose option “No artefact” " +"in the “General → Hack level” preference.\n" +" " msgstr "" -"பயன்பாடுகளில் மங்கலைச் சேர்க்கவும். இது இன்னும் ஒரு பீட்டா செயல்பாடாகும், மிகவும் தரமற்றதாக " -"உள்ளது மற்றும் அதைக் கேட்கும் பயன்பாடுகள் அல்லது கீழே உள்ள அனுமதிப்பட்டியலில் " -"அமைக்கப்பட்டுள்ளவற்றுக்கு மட்டுமே இது பொருந்தும்." -#: applications.ui:26 +#: applications.ui:28 +msgid "Opacity" +msgstr "" + +#: applications.ui:29 +msgid "" +"The opacity of the window on top of the blur effect, a higher value will be " +"more legible." +msgstr "" + +#: applications.ui:50 +msgid "Blur on overview" +msgstr "" + +#: applications.ui:51 +msgid "" +"Forces the blur to be properly shown on all workspaces on overview.\n" +"This may cause some latency or performance issues." +msgstr "" + +#: applications.ui:66 msgid "Enable all by default" msgstr "முன்னிருப்பாக அனைத்தையும் இயக்கு" -#: applications.ui:27 +#: applications.ui:67 msgid "" -"Adds blur behind all windows by default. Not recommended because of " -"performance and stability issues." +"Adds blur behind all windows by default.\n" +"Not recommended because of performance and stability issues." msgstr "" -"முன்னிருப்பாக அனைத்து சாளரங்களுக்கும் பின்னால் மங்கலைச் சேர்க்கிறது. " -"செயல்திறன் மற்றும் நிலைத்தன்மை சிக்கல்கள் காரணமாக பரிந்துரைக்கப்படவில்லை." -#: applications.ui:26 +#: applications.ui:84 msgid "Whitelist" msgstr "அனுமதிப்பட்டியல்" -#: applications.ui:44 +#: applications.ui:85 msgid "A list of windows to blur." msgstr "மங்கலாக்க வேண்டிய சாளரங்களின் பட்டியல்." -#: applications.ui:62 applications.ui:99 +#: applications.ui:103 applications.ui:140 msgid "Add Window" msgstr "சாளரத்தைச் சேர்க்கவும்" -#: applications.ui:80 +#: applications.ui:121 msgid "Blacklist" msgstr "பிளாக்லிஸ்ட்" -#: applications.ui:81 +#: applications.ui:122 msgid "A list of windows not to blur." msgstr "மங்கலாக்கப்படக் கூடாத சாளரங்களின் பட்டியல்." @@ -152,7 +168,7 @@ msgstr "டேஷ் டு டாக் மங்கல்" msgid "Blur the background of the Dash to Dock extension, if it is used." msgstr "டாஷ் டு டாக் நீட்டிப்பு பயன்படுத்தப்பட்டால் அதன் பின்புலத்தை மங்கலாக்குங்கள்." -#: dash.ui:26 +#: dash.ui:26 panel.ui:56 msgid "Override background" msgstr "பின்னணியை மேலெழுதவும்" @@ -211,17 +227,18 @@ msgstr "ஹேக் லெவல்" #: general.ui:136 msgid "" -"Changes the behaviour of dynamic blur effect. Default value is very " -"recommended." +"Changes the behaviour of dynamic blur effect.\n" +"Default value is very recommended, unless you use application blur in which " +"case “No artefact” is better.\n" +"This option will entirely disable clipped redraws from GNOME shell, and may " +"impact performances significantly but will entirely fix the blur effect." msgstr "" -"டைனமிக் மங்கலான விளைவின் நடத்தையை மாற்றுகிறது. இயல்புநிலை மதிப்பு மிகவும் " -"பரிந்துரைக்கப்படுகிறது." -#: general.ui:149 +#: general.ui:151 msgid "Debug" msgstr "பிழைத்திருத்தம் செய்" -#: general.ui:150 +#: general.ui:152 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." @@ -229,21 +246,33 @@ msgstr "" "பதிவுகளில் நீட்டிப்பை வாய்மொழியாக மாற்றுகிறது, சிக்கலைப் புகாரளிக்க வேண்டியிருக்கும் " "போது செயல்படுத்தவும்." -#: general.ui:189 +#: general.ui:167 +msgid "Reset preferences" +msgstr "விருப்பங்களை மீட்டமைக்கவும்" + +#: general.ui:168 +msgid "Resets preferences of Blur my Shell irreversibly." +msgstr "" + +#: general.ui:187 +msgid "Reset" +msgstr "" + +#: general.ui:228 msgid "High performances" msgstr "உயர் செயல்திறன்" -#: general.ui:190 +#: general.ui:229 msgid "Default" msgstr "இயல்புநிலை" -#: general.ui:191 +#: general.ui:230 msgid "High quality" msgstr "உயர் தரம்" -#: menu.ui:6 -msgid "Reset preferences" -msgstr "விருப்பங்களை மீட்டமைக்கவும்" +#: general.ui:231 +msgid "No artefact" +msgstr "" #: menu.ui:6 msgid "Project page" @@ -365,27 +394,33 @@ msgstr "நிலையான மங்கலான படத்தைப் ப msgid "Disables the blur from the panel when entering the overview." msgstr "மேலோட்டப் பார்வையை உள்ளிடும்போது பேனலில் இருந்து மங்கலானதை முடக்கும்." -#: panel.ui:56 +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" + +#: panel.ui:64 msgid "Disable when a window is near" msgstr "ஒரு சாளரம் அருகில் இருக்கும்போது முடக்கவும்" -#: panel.ui:57 -msgid "Disables the blur from the panel when a window is near it." -msgstr "ஒரு சாளரம் அதன் அருகில் இருக்கும்போது பேனலில் இருந்து மங்கலானதை முடக்குகிறது." +#: panel.ui:65 +msgid "Disables the transparency of the panel when a window is near it." +msgstr "" -#: panel.ui:73 +#: panel.ui:82 msgid "Compatibility" msgstr "இணக்கத்தன்மை" -#: panel.ui:74 +#: panel.ui:83 msgid "Various options to provide compatibility with other extensions." msgstr "பிற நீட்டிப்புகளுடன் இணக்கத்தன்மையை வழங்க பல்வேறு விருப்பங்கள்." -#: panel.ui:78 +#: panel.ui:88 msgid "Hidetopbar extension" msgstr "ஹைடோப்பார் நீட்டிப்பு" -#: panel.ui:79 +#: panel.ui:89 msgid "Does not disable the blur in overview, best used with static blur." msgstr "மேலோட்டத்தில் மங்கலை முடக்காது, நிலையான மங்கலுடன் சிறப்பாகப் பயன்படுத்தப்படுகிறது." @@ -399,15 +434,40 @@ msgstr "சாளரத்தைத் தேர்ந்தெடுக்க #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" -"ஒரு சாளரத்தைத் தேர்ந்தெடுக்கவும் அல்லது அதன் வகுப்புப் பெயரால் " -"தேர்ந்தெடுக்கவும்." - -#: applications.ui:27 -msgid "" -"A list of the applications to blur, one per line. To get an application " -"class name, under xorg you can use `xprop|grep WM_CLASS` and paste the last " -"name here." -msgstr "" -"மங்கலாக்க வேண்டிய பயன்பாடுகளின் பட்டியல், வரிக்கு ஒன்று. பயன்பாட்டு வகுப்பின் பெயரைப் பெற, " -"xorg இன் கீழ் நீங்கள் `xprop|grep WM_CLASS` ஐப் பயன்படுத்தி கடைசி பெயரை இங்கே ஒட்டலாம்." +msgstr "ஒரு சாளரத்தைத் தேர்ந்தெடுக்கவும் அல்லது அதன் வகுப்புப் பெயரால் தேர்ந்தெடுக்கவும்." + +#~ msgid "" +#~ "Add blur to the applications. This is still a beta functionnality, is " +#~ "quite buggy and is only applied to the apps that ask it, or to the ones " +#~ "set in the whitelist below." +#~ msgstr "" +#~ "பயன்பாடுகளில் மங்கலைச் சேர்க்கவும். இது இன்னும் ஒரு பீட்டா செயல்பாடாகும், மிகவும் " +#~ "தரமற்றதாக உள்ளது மற்றும் அதைக் கேட்கும் பயன்பாடுகள் அல்லது கீழே உள்ள அனுமதிப்பட்டியலில் " +#~ "அமைக்கப்பட்டுள்ளவற்றுக்கு மட்டுமே இது பொருந்தும்." + +#~ msgid "" +#~ "Adds blur behind all windows by default. Not recommended because of " +#~ "performance and stability issues." +#~ msgstr "" +#~ "முன்னிருப்பாக அனைத்து சாளரங்களுக்கும் பின்னால் மங்கலைச் சேர்க்கிறது. செயல்திறன் மற்றும் " +#~ "நிலைத்தன்மை சிக்கல்கள் காரணமாக பரிந்துரைக்கப்படவில்லை." + +#~ msgid "" +#~ "Changes the behaviour of dynamic blur effect. Default value is very " +#~ "recommended." +#~ msgstr "" +#~ "டைனமிக் மங்கலான விளைவின் நடத்தையை மாற்றுகிறது. இயல்புநிலை மதிப்பு மிகவும் " +#~ "பரிந்துரைக்கப்படுகிறது." + +#~ msgid "Disables the blur from the panel when a window is near it." +#~ msgstr "" +#~ "ஒரு சாளரம் அதன் அருகில் இருக்கும்போது பேனலில் இருந்து மங்கலானதை முடக்குகிறது." + +#~ msgid "" +#~ "A list of the applications to blur, one per line. To get an application " +#~ "class name, under xorg you can use `xprop|grep WM_CLASS` and paste the " +#~ "last name here." +#~ msgstr "" +#~ "மங்கலாக்க வேண்டிய பயன்பாடுகளின் பட்டியல், வரிக்கு ஒன்று. பயன்பாட்டு வகுப்பின் பெயரைப் " +#~ "பெற, xorg இன் கீழ் நீங்கள் `xprop|grep WM_CLASS` ஐப் பயன்படுத்தி கடைசி பெயரை இங்கே " +#~ "ஒட்டலாம்." diff --git a/po/tr.po b/po/tr.po index ebecb4fd..b0d7fda5 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-20 15:00+0200\n" +"POT-Creation-Date: 2022-08-27 21:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -26,41 +26,59 @@ msgstr "Uygulama bulanıklığı (beta)" #: applications.ui:11 msgid "" -"Add blur to the applications. This is still a beta functionnality, is quite " -"buggy and is only applied to the apps that ask it, or to the ones set in the " -"whitelist below." +"Add blur to the applications. This is still a beta functionnality.\n" +"To get the best results possible, make sure to choose option “No artefact” " +"in the “General → Hack level” preference.\n" +" " msgstr "" -"Uygulamalara bulanıklık ekleyin. Bu hâlâ bir beta işlevidir, oldukça " -"sorunludur ve yalnızca bunu isteyen uygulamalara veya aşağıdaki beyaz " -"listede belirtilenlere uygulanır." -#: applications.ui:26 +#: applications.ui:28 +msgid "Opacity" +msgstr "" + +#: applications.ui:29 +msgid "" +"The opacity of the window on top of the blur effect, a higher value will be " +"more legible." +msgstr "" + +#: applications.ui:50 +msgid "Blur on overview" +msgstr "" + +#: applications.ui:51 +msgid "" +"Forces the blur to be properly shown on all workspaces on overview.\n" +"This may cause some latency or performance issues." +msgstr "" + +#: applications.ui:66 msgid "Enable all by default" msgstr "" -#: applications.ui:27 +#: applications.ui:67 msgid "" -"Adds blur behind all windows by default. Not recommended because of " -"performance and stability issues." +"Adds blur behind all windows by default.\n" +"Not recommended because of performance and stability issues." msgstr "" -#: applications.ui:26 +#: applications.ui:84 msgid "Whitelist" msgstr "Beyaz Liste" -#: applications.ui:44 +#: applications.ui:85 msgid "A list of windows to blur." msgstr "" -#: applications.ui:62 applications.ui:99 +#: applications.ui:103 applications.ui:140 msgid "Add Window" msgstr "" -#: applications.ui:80 +#: applications.ui:121 msgid "Blacklist" msgstr "" -#: applications.ui:81 +#: applications.ui:122 msgid "A list of windows not to blur." msgstr "" @@ -151,7 +169,7 @@ msgstr "Dash to Dock bulanıklığı" msgid "Blur the background of the Dash to Dock extension, if it is used." msgstr "Kullanılıyorsa, Dash to Dock uzantısının arka planını bulanıklaştır." -#: dash.ui:26 +#: dash.ui:26 panel.ui:56 msgid "Override background" msgstr "Arkaplanı geçersiz kıl" @@ -211,17 +229,18 @@ msgstr "Hack seviyesi" #: general.ui:136 msgid "" -"Changes the behaviour of dynamic blur effect. Default value is very " -"recommended." +"Changes the behaviour of dynamic blur effect.\n" +"Default value is very recommended, unless you use application blur in which " +"case “No artefact” is better.\n" +"This option will entirely disable clipped redraws from GNOME shell, and may " +"impact performances significantly but will entirely fix the blur effect." msgstr "" -"Dinamik bulanıklık efektinin davranışını değiştirir. Varsayılan değer " -"şiddetle tavsiye edilir." -#: general.ui:149 +#: general.ui:151 msgid "Debug" msgstr "Hata ayıklama" -#: general.ui:150 +#: general.ui:152 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." @@ -229,20 +248,32 @@ msgstr "" "Uzantının detaylı günlük kaydını yapar, bir sorunu bildirmeniz gerektiğinde " "etkinleştirin." -#: general.ui:189 +#: general.ui:167 +msgid "Reset preferences" +msgstr "" + +#: general.ui:168 +msgid "Resets preferences of Blur my Shell irreversibly." +msgstr "" + +#: general.ui:187 +msgid "Reset" +msgstr "" + +#: general.ui:228 msgid "High performances" msgstr "Yüksek performans" -#: general.ui:190 +#: general.ui:229 msgid "Default" msgstr "Varsayılan" -#: general.ui:191 +#: general.ui:230 msgid "High quality" msgstr "Yüksek kalite" -#: menu.ui:6 -msgid "Reset preferences" +#: general.ui:231 +msgid "No artefact" msgstr "" #: menu.ui:6 @@ -369,28 +400,33 @@ msgstr "Statik bulanık bir görüntü kullanır, daha performanslı ve kararlı msgid "Disables the blur from the panel when entering the overview." msgstr "Genel görünüme girerken panelden bulanıklığı kaldırır." -#: panel.ui:56 +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" + +#: panel.ui:64 msgid "Disable when a window is near" msgstr "Bir pencere yakınken devre dışı bırak" -#: panel.ui:57 -msgid "Disables the blur from the panel when a window is near it." +#: panel.ui:65 +msgid "Disables the transparency of the panel when a window is near it." msgstr "" -"Yakınında bir pencere olduğunda paneldeki bulanıklığı devre dışı bırakır." -#: panel.ui:73 +#: panel.ui:82 msgid "Compatibility" msgstr "Uyumluluk" -#: panel.ui:74 +#: panel.ui:83 msgid "Various options to provide compatibility with other extensions." msgstr "Diğer uzantılarla uyumluluğu sağlamak için çeşitli seçenekler." -#: panel.ui:78 +#: panel.ui:88 msgid "Hidetopbar extension" msgstr "Hidetopbar uzantısı" -#: panel.ui:79 +#: panel.ui:89 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" "Genel görünümde bulanıklığı devre dışı bırakmaz, en iyi statik bulanıklıkla " @@ -408,12 +444,31 @@ msgstr "" msgid "Pick a window or select it by its classname." msgstr "" -#: applications.ui:27 -msgid "" -"A list of the applications to blur, one per line. To get an application " -"class name, under xorg you can use `xprop|grep WM_CLASS` and paste the last " -"name here." -msgstr "" -"Her satırda bir tane olacak şekilde bulanıklaştırılacak uygulamaların " -"listesi. Bir uygulamanın sınıf adını almak için xorg altında `xprop|grep " -"WM_CLASS` komutunu kullanabilir ve son ismi buraya yapıştırabilirsiniz." +#~ msgid "" +#~ "Add blur to the applications. This is still a beta functionnality, is " +#~ "quite buggy and is only applied to the apps that ask it, or to the ones " +#~ "set in the whitelist below." +#~ msgstr "" +#~ "Uygulamalara bulanıklık ekleyin. Bu hâlâ bir beta işlevidir, oldukça " +#~ "sorunludur ve yalnızca bunu isteyen uygulamalara veya aşağıdaki beyaz " +#~ "listede belirtilenlere uygulanır." + +#~ msgid "" +#~ "Changes the behaviour of dynamic blur effect. Default value is very " +#~ "recommended." +#~ msgstr "" +#~ "Dinamik bulanıklık efektinin davranışını değiştirir. Varsayılan değer " +#~ "şiddetle tavsiye edilir." + +#~ msgid "Disables the blur from the panel when a window is near it." +#~ msgstr "" +#~ "Yakınında bir pencere olduğunda paneldeki bulanıklığı devre dışı bırakır." + +#~ msgid "" +#~ "A list of the applications to blur, one per line. To get an application " +#~ "class name, under xorg you can use `xprop|grep WM_CLASS` and paste the " +#~ "last name here." +#~ msgstr "" +#~ "Her satırda bir tane olacak şekilde bulanıklaştırılacak uygulamaların " +#~ "listesi. Bir uygulamanın sınıf adını almak için xorg altında `xprop|grep " +#~ "WM_CLASS` komutunu kullanabilir ve son ismi buraya yapıştırabilirsiniz." diff --git a/po/zh_Hans.po b/po/zh_Hans.po index 92e65738..fe988141 100644 --- a/po/zh_Hans.po +++ b/po/zh_Hans.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-20 15:00+0200\n" +"POT-Creation-Date: 2022-08-27 21:07+0200\n" "PO-Revision-Date: 2022-08-23 16:15+0000\n" "Last-Translator: yangyangdaji <1504305527@qq.com>\n" "Language-Team: Chinese (Simplified) Date: Wed, 24 Aug 2022 13:59:36 +0000 Subject: [PATCH 010/212] Translated using Weblate (Portuguese) Currently translated at 23.8% (20 of 84 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pt/ --- po/pt.po | 109 +++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 73 insertions(+), 36 deletions(-) diff --git a/po/pt.po b/po/pt.po index 6f06538b..784b6eb7 100644 --- a/po/pt.po +++ b/po/pt.po @@ -18,11 +18,11 @@ msgstr "" #: applications.ui:5 msgid "Applications" -msgstr "" +msgstr "Aplicações" #: applications.ui:10 msgid "Applications blur (beta)" -msgstr "" +msgstr "Desfocar aplicações (beta)" #: applications.ui:11 msgid "" @@ -52,9 +52,9 @@ msgid "" "This may cause some latency or performance issues." msgstr "" -#: applications.ui:66 +#: applications.ui:26 msgid "Enable all by default" -msgstr "" +msgstr "Habilitar tudo por padrão" #: applications.ui:67 msgid "" @@ -62,76 +62,85 @@ msgid "" "Not recommended because of performance and stability issues." msgstr "" -#: applications.ui:84 +#: applications.ui:43 msgid "Whitelist" -msgstr "" +msgstr "Lista liberada" -#: applications.ui:85 +#: applications.ui:44 msgid "A list of windows to blur." -msgstr "" +msgstr "Lista de janelas para desfocar." -#: applications.ui:103 applications.ui:140 +#: applications.ui:62 applications.ui:99 msgid "Add Window" -msgstr "" +msgstr "Adicionar janela" -#: applications.ui:121 +#: applications.ui:80 msgid "Blacklist" -msgstr "" +msgstr "Lista bloqueada" -#: applications.ui:122 +#: applications.ui:81 msgid "A list of windows not to blur." -msgstr "" +msgstr "Lista de janelas que não serão desfocadas." #: customize-row.ui:4 msgid "Customize properties" -msgstr "" +msgstr "Customizar propriedades" #: customize-row.ui:5 msgid "" "Uses customized blur properties, instead of the ones set in the General page." msgstr "" +"Usa propriedades customizadas de desfoque ao invés das definidas nas " +"propriedades gerais." #: customize-row.ui:10 general.ui:15 msgid "Sigma" -msgstr "" +msgstr "Sigma" #: customize-row.ui:11 general.ui:16 msgid "The intensity of the blur." -msgstr "" +msgstr "Intensidade do desfoque." #: customize-row.ui:31 general.ui:35 msgid "Brightness" -msgstr "" +msgstr "Brilho" #: customize-row.ui:32 general.ui:36 msgid "" "The brightness of the blur effect, a high value might make the text harder " "to read." msgstr "" +"O brilho do efeito de desfoque, um valor alto pode tornar o texto difícil de " +"ler." #: customize-row.ui:52 general.ui:55 msgid "Color" -msgstr "" +msgstr "Cor" #: customize-row.ui:53 general.ui:56 msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." msgstr "" +"Altera a cor do desfoque. A opacidade da cor controla o quanto esta é " +"misturada ao efeito de desfoque." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" -msgstr "" +msgstr "Quantidade de ruído" #: customize-row.ui:72 general.ui:74 msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." msgstr "" +"A quantidade de ruído a adicionar ao efeito de desfoque, útil em telas de " +"baixo contraste ou para efeito estético." #: customize-row.ui:92 general.ui:94 +#, fuzzy msgid "Noise lightness" -msgstr "" +msgstr "Quantidade de ruído" #: customize-row.ui:93 general.ui:95 msgid "The lightness of the noise added to the blur effect." @@ -220,17 +229,17 @@ msgid "" "impact performances significantly but will entirely fix the blur effect." msgstr "" -#: general.ui:151 +#: general.ui:151 general.ui:149 msgid "Debug" msgstr "" -#: general.ui:152 +#: general.ui:152 general.ui:150 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." msgstr "" -#: general.ui:167 +#: general.ui:167 menu.ui:6 msgid "Reset preferences" msgstr "" @@ -242,15 +251,15 @@ msgstr "" msgid "Reset" msgstr "" -#: general.ui:228 +#: general.ui:228 general.ui:189 msgid "High performances" msgstr "" -#: general.ui:229 +#: general.ui:229 general.ui:190 msgid "Default" msgstr "" -#: general.ui:230 +#: general.ui:230 general.ui:191 msgid "High quality" msgstr "" @@ -258,19 +267,19 @@ msgstr "" msgid "No artefact" msgstr "" -#: menu.ui:6 +#: menu.ui:6 menu.ui:12 msgid "Project page" msgstr "" -#: menu.ui:10 +#: menu.ui:10 menu.ui:16 msgid "Report a Bug" msgstr "" -#: menu.ui:14 +#: menu.ui:14 menu.ui:20 msgid "License" msgstr "" -#: menu.ui:18 +#: menu.ui:18 menu.ui:24 msgid "Donate" msgstr "" @@ -382,7 +391,7 @@ msgid "" "Recommended unless you want to customize your GNOME theme." msgstr "" -#: panel.ui:64 +#: panel.ui:64 panel.ui:56 msgid "Disable when a window is near" msgstr "" @@ -390,19 +399,19 @@ msgstr "" msgid "Disables the transparency of the panel when a window is near it." msgstr "" -#: panel.ui:82 +#: panel.ui:82 panel.ui:73 msgid "Compatibility" msgstr "" -#: panel.ui:83 +#: panel.ui:83 panel.ui:74 msgid "Various options to provide compatibility with other extensions." msgstr "" -#: panel.ui:88 +#: panel.ui:88 panel.ui:78 msgid "Hidetopbar extension" msgstr "" -#: panel.ui:89 +#: panel.ui:89 panel.ui:79 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" @@ -417,3 +426,31 @@ msgstr "" #: window-row.ui:9 msgid "Pick a window or select it by its classname." msgstr "" + +#: applications.ui:11 +msgid "" +"Add blur to the applications. This is still a beta functionnality, is quite " +"buggy and is only applied to the apps that ask it, or to the ones set in the " +"whitelist below." +msgstr "" +"Adiciona desfoque às aplicações. Esta funcionalidade ainda está em \"beta\", " +"possui diversos bugs e é aplicada somente às aplicações que solicitarem ou " +"as que estiverem na lista abaixo." + +#: applications.ui:27 +msgid "" +"Adds blur behind all windows by default. Not recommended because of " +"performance and stability issues." +msgstr "" +"Adiciona desfoque atrás de todas as janelas por padrão. Não recomendado pois " +"pode ocasionar problemas de estabilidade e performance." + +#: general.ui:136 +msgid "" +"Changes the behaviour of dynamic blur effect. Default value is very " +"recommended." +msgstr "" + +#: panel.ui:57 +msgid "Disables the blur from the panel when a window is near it." +msgstr "" From ae480a70ff006645549ef12723b02183c542ca2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paulo=20Vin=C3=ADcius=20Bettio?= Date: Fri, 26 Aug 2022 21:52:08 +0000 Subject: [PATCH 011/212] Translated using Weblate (Portuguese) Currently translated at 100.0% (84 of 84 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pt/ --- po/pt.po | 160 +++++++++++++++++++++++++++++++------------------------ 1 file changed, 91 insertions(+), 69 deletions(-) diff --git a/po/pt.po b/po/pt.po index 784b6eb7..d2e15194 100644 --- a/po/pt.po +++ b/po/pt.po @@ -138,87 +138,94 @@ msgstr "" "baixo contraste ou para efeito estético." #: customize-row.ui:92 general.ui:94 -#, fuzzy msgid "Noise lightness" -msgstr "Quantidade de ruído" +msgstr "Claridade do Ruído" #: customize-row.ui:93 general.ui:95 msgid "The lightness of the noise added to the blur effect." -msgstr "" +msgstr "A claridade do ruído adicionada ao efeito de desfoque." #: customize-row.ui:113 msgid "Notice" -msgstr "" +msgstr "Aviso" #: customize-row.ui:114 msgid "" "Noise and color can't be activated on dynamically blurred components, such " "as this one." msgstr "" +"Ruído e cores não podem ser ativados em componentes desfocados de forma " +"dinâmica, como esse." #: dash.ui:5 msgid "Dash" -msgstr "" +msgstr "Dash" #: dash.ui:10 msgid "Dash to Dock blur" -msgstr "" +msgstr "Desfoque do Dash to Dock" #: dash.ui:11 msgid "Blur the background of the Dash to Dock extension, if it is used." -msgstr "" +msgstr "Desfoca o plano de fundo da extensão Dash to Dock, caso seja usado." -#: dash.ui:26 panel.ui:56 +#: dash.ui:26 msgid "Override background" -msgstr "" +msgstr "Sobrepor plano de fundo" #: dash.ui:27 msgid "" "Makes the background semi-transparent, disable this to use Dash to Dock " "preferences instead." msgstr "" +"Deixa o plano de fundo semitransparente. Desative isso para utilizar as " +"preferências do Dash to Dock." #: dash.ui:41 panel.ui:41 msgid "Disable in overview" -msgstr "" +msgstr "Desativar na visão geral" #: dash.ui:42 msgid "Disables the blur from Dash to Dock when entering the overview." -msgstr "" +msgstr "Desativa o desfoque do Dash to Dock ao entrar na visão geral." #: general.ui:5 msgid "General" -msgstr "" +msgstr "Geral" #: general.ui:10 msgid "Blur preferences" -msgstr "" +msgstr "Preferências de desfoque" #: general.ui:11 msgid "Global blur preferences, used by all components by default." msgstr "" +"Preferências globais de desfoque, utilizadas por todos os componentes por " +"padrão." #: general.ui:117 msgid "Performances" -msgstr "" +msgstr "Desempenhos" #: general.ui:118 msgid "Various options to tweak the performances." -msgstr "" +msgstr "Várias opções para ajustar o desempenho." #: general.ui:122 msgid "Color and noise effects" -msgstr "" +msgstr "Efeitos de cor e ruído" #: general.ui:123 msgid "" "Permits to disable globally the use of noise and color effects, this may " "improve performances for low-end graphic." msgstr "" +"Desativa globalmente o uso de efeitos de ruído e cor. Isso pode melhorar o " +"desempenho em dispositivos mais fracos." #: general.ui:135 msgid "Hack level" -msgstr "" +msgstr "Nível do hack" #: general.ui:136 msgid "" @@ -229,19 +236,21 @@ msgid "" "impact performances significantly but will entirely fix the blur effect." msgstr "" -#: general.ui:151 general.ui:149 +#: general.ui:149 msgid "Debug" -msgstr "" +msgstr "Depuração" -#: general.ui:152 general.ui:150 +#: general.ui:150 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." msgstr "" +"Deixa os logs da extensão no modo verbose. Ative quando precisar reportar um " +"problema." -#: general.ui:167 menu.ui:6 +#: menu.ui:6 msgid "Reset preferences" -msgstr "" +msgstr "Redefinir preferências" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." @@ -251,139 +260,148 @@ msgstr "" msgid "Reset" msgstr "" -#: general.ui:228 general.ui:189 +#: general.ui:189 msgid "High performances" -msgstr "" +msgstr "Alta performance" -#: general.ui:229 general.ui:190 +#: general.ui:190 msgid "Default" -msgstr "" +msgstr "Padrão" -#: general.ui:230 general.ui:191 +#: general.ui:191 msgid "High quality" -msgstr "" +msgstr "Alta qualidade" #: general.ui:231 msgid "No artefact" msgstr "" -#: menu.ui:6 menu.ui:12 +#: menu.ui:12 msgid "Project page" -msgstr "" +msgstr "Página do projeto" -#: menu.ui:10 menu.ui:16 +#: menu.ui:16 msgid "Report a Bug" -msgstr "" +msgstr "Reportar um Bug" -#: menu.ui:14 menu.ui:20 +#: menu.ui:20 msgid "License" -msgstr "" +msgstr "Licença" -#: menu.ui:18 menu.ui:24 +#: menu.ui:24 msgid "Donate" -msgstr "" +msgstr "Doar" #: other.ui:5 msgid "Other" -msgstr "" +msgstr "Outros" #: other.ui:10 msgid "Lockscreen blur" -msgstr "" +msgstr "Desfoque da tela de bloqueio" #: other.ui:11 msgid "Change the blur of the lockscreen to use this extension's preferences." msgstr "" +"Altera o desfoque da tela de bloqueio para utilizar as preferências dessa " +"extensão." #: other.ui:28 msgid "Screenshot blur" -msgstr "" +msgstr "Desfoque da captura de tela" #: other.ui:29 msgid "Add blur to the background of the window selector in the screenshot UI." msgstr "" +"Adiciona desfoque ao plano de fundo do seletor de janelas na interface da " +"captura de tela." #: other.ui:46 msgid "Window list extension blur" -msgstr "" +msgstr "Desfoque da extensão Window List" #: other.ui:47 msgid "Make the window-list extension blurred, if it is used." -msgstr "" +msgstr "Torna a extensão Window List desfocada, caso seja usada." #: overview.ui:5 msgid "Overview" -msgstr "" +msgstr "Visão Geral" #: overview.ui:10 msgid "Background blur" -msgstr "" +msgstr "Desfoque do plano de fundo" #: overview.ui:11 msgid "Add blur to the overview background, using the wallpaper picture." msgstr "" +"Desfoca o plano de fundo da visão geral utilizando a imagem do papel de " +"parede." #: overview.ui:26 msgid "Overview components style" -msgstr "" +msgstr "Estilo dos componentes da visão geral" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " "applications folders." msgstr "" +"O efeito semitransparente para a dash, barra de pesquisa/resultados e pastas " +"de aplicativos." #: overview.ui:44 msgid "Applications folder blur" -msgstr "" +msgstr "Desfoque nas pastas de aplicativos" #: overview.ui:45 msgid "Makes the background of folder icons blurred." -msgstr "" +msgstr "Torna o plano de fundo da pasta de aplicativos desfocado." #: overview.ui:60 msgid "Dialog opacity" -msgstr "" +msgstr "Opacidade do diálogo" #: overview.ui:61 msgid "The opacity of the applications folder popup." -msgstr "" +msgstr "A opacidade do popup da pasta de aplicativos." #: overview.ui:85 msgid "Do not style" -msgstr "" +msgstr "Não estilizar" #: overview.ui:86 msgid "Light" -msgstr "" +msgstr "Claro" #: overview.ui:87 msgid "Dark" -msgstr "" +msgstr "Escuro" #: panel.ui:5 msgid "Panel" -msgstr "" +msgstr "Painel" #: panel.ui:10 msgid "Panel blur" -msgstr "" +msgstr "Desfoque do painel" #: panel.ui:11 msgid "Blur the top panel using the background image." -msgstr "" +msgstr "Desfoca o painel superior utilizando a imagem de fundo." #: panel.ui:26 msgid "Static blur" -msgstr "" +msgstr "Desfoque estático" #: panel.ui:27 msgid "Uses a static blurred image, more performant and stable." msgstr "" +"Utiliza uma imagem desfocada estática. Maior desempenho e estabilidade." #: panel.ui:42 msgid "Disables the blur from the panel when entering the overview." -msgstr "" +msgstr "Desativa o desfoque do painel quando entrar na visão geral." #: panel.ui:57 msgid "" @@ -391,41 +409,43 @@ msgid "" "Recommended unless you want to customize your GNOME theme." msgstr "" -#: panel.ui:64 panel.ui:56 +#: panel.ui:56 msgid "Disable when a window is near" -msgstr "" +msgstr "Desativar quando uma janela estiver próxima" #: panel.ui:65 msgid "Disables the transparency of the panel when a window is near it." msgstr "" -#: panel.ui:82 panel.ui:73 +#: panel.ui:73 msgid "Compatibility" -msgstr "" +msgstr "Compatibilidade" -#: panel.ui:83 panel.ui:74 +#: panel.ui:74 msgid "Various options to provide compatibility with other extensions." -msgstr "" +msgstr "Várias opções para providenciar compatibilidade com outras extensões." -#: panel.ui:88 panel.ui:78 +#: panel.ui:78 msgid "Hidetopbar extension" -msgstr "" +msgstr "Extensão Hidetopbar" -#: panel.ui:89 panel.ui:79 +#: panel.ui:79 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" +"Não desativa o desfoque na visão geral. Funciona melhor com o desfoque " +"estático." #: window-row.ui:4 msgid "Window Name" -msgstr "" +msgstr "Nome da janela" #: window-row.ui:8 msgid "Select window" -msgstr "" +msgstr "Selecionar janela" #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" +msgstr "Escolha uma janela ou a selecione pela sua classname." #: applications.ui:11 msgid "" @@ -450,7 +470,9 @@ msgid "" "Changes the behaviour of dynamic blur effect. Default value is very " "recommended." msgstr "" +"Muda o comportamento do efeito dinâmico de desfoque. O valor padrão é " +"recomendado." #: panel.ui:57 msgid "Disables the blur from the panel when a window is near it." -msgstr "" +msgstr "Desativa o desfoque do painel quando uma janela estiver próxima a ele." From 1d8bd46398c856fd38f1a3a9bc764f5a4d380f99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93scar=20Fern=C3=A1ndez=20D=C3=ADaz?= Date: Sun, 28 Aug 2022 09:17:55 +0000 Subject: [PATCH 012/212] Translated using Weblate (Spanish) Currently translated at 100.0% (92 of 92 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/es/ --- po/es.po | 35 ++++++++++++++++++++++++++++------- 1 file changed, 28 insertions(+), 7 deletions(-) diff --git a/po/es.po b/po/es.po index 42c98aa1..becc7356 100644 --- a/po/es.po +++ b/po/es.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-08-23 16:15+0000\n" +"PO-Revision-Date: 2022-08-28 10:33+0000\n" "Last-Translator: Óscar Fernández Díaz \n" "Language-Team: Spanish \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" #: applications.ui:5 msgid "Applications" @@ -34,26 +34,36 @@ msgid "" "in the “General → Hack level” preference.\n" " " msgstr "" +"Añadir desenfoque a las aplicaciones. Esto es todavía una funcionalidad beta." +"\n" +"Para obtener los mejores resultados posibles, asegúrese de elegir la opción " +"\"Sin artefactos\" en la preferencia \"General → Nivel de desenfoque\".\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Opacidad" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"La opacidad de la ventana sobre el efecto de desenfoque, un valor más alto " +"será más legible." #: applications.ui:50 msgid "Blur on overview" -msgstr "" +msgstr "Desenfoque en la vista general" #: applications.ui:51 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Fuerza a que el desenfoque se muestre correctamente en todos los espacios de " +"trabajo en la vista general.\n" +"Esto puede causar algunos problemas de latencia o rendimiento." #: applications.ui:66 msgid "Enable all by default" @@ -64,6 +74,8 @@ msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Añade desenfoque detrás de todas las ventanas por defecto.\n" +"No se recomienda por problemas de rendimiento y estabilidad." #: applications.ui:84 msgid "Whitelist" @@ -238,6 +250,12 @@ msgid "" "This option will entirely disable clipped redraws from GNOME shell, and may " "impact performances significantly but will entirely fix the blur effect." msgstr "" +"Cambia el comportamiento del efecto de desenfoque dinámico.\n" +"El valor predeterminado es muy recomendable, a menos que use el desenfoque " +"de aplicación, en cuyo caso es mejor \"Sin artefacto\".\n" +"Esta opción desactivará por completo los redibujos recortados del shell de " +"Gnome, y puede afectar al rendimiento de forma significativa, pero arreglará " +"por completo el efecto de desenfoque." #: general.ui:151 msgid "Debug" @@ -257,11 +275,11 @@ msgstr "Restablecer preferencias" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "Restablece las preferencias de Blur my Shell de forma irreversible." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Restablecer" #: general.ui:228 msgid "High performances" @@ -277,7 +295,7 @@ msgstr "Alta calidad" #: general.ui:231 msgid "No artefact" -msgstr "" +msgstr "Sin artefacto" #: menu.ui:6 msgid "Project page" @@ -410,6 +428,8 @@ msgid "" "Override the background of the panel to use a transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Sobrescribe el fondo del panel para usar uno transparente.\n" +"Recomendado a menos que quiera personalizar su tema de Gnome." #: panel.ui:64 msgid "Disable when a window is near" @@ -418,6 +438,7 @@ msgstr "Desactivar cuando una ventana está cerca" #: panel.ui:65 msgid "Disables the transparency of the panel when a window is near it." msgstr "" +"Desactiva la transparencia del panel cuando una ventana está cerca de él." #: panel.ui:82 msgid "Compatibility" From 3ecb805dc3201b7025dcf52f55502fc34f23b1a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sat, 27 Aug 2022 20:36:44 +0000 Subject: [PATCH 013/212] Translated using Weblate (French) Currently translated at 100.0% (92 of 92 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/fr/ --- po/fr.po | 53 ++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 36 insertions(+), 17 deletions(-) diff --git a/po/fr.po b/po/fr.po index ff310a63..4baec76f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-06-01 22:15+0000\n" +"PO-Revision-Date: 2022-08-28 10:33+0000\n" "Last-Translator: Aurélien Hamy \n" "Language-Team: French \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.13-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" "X-Poedit-Basepath: ../resources/ui\n" "X-Poedit-SearchPath-0: .\n" @@ -36,36 +36,47 @@ msgid "" "in the “General → Hack level” preference.\n" " " msgstr "" +"Ajoute du flou aux applications. C'est une fonctionnalité bêta.\n" +"Pour obtenir les meilleurs résultats possibles, choisissez l'option « Pas " +"d'artéfact » dans l'onglet « General → Astuces de performances »\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Opacité" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"L'opacité de la fenêtre au dessus de l'effet de flou, une valeur plus haute " +"sera plus lisible." #: applications.ui:50 msgid "Blur on overview" -msgstr "" +msgstr "Floute dans l'aperçu" #: applications.ui:51 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Force le flou à être proprement montré sur tous les espaces de travail de " +"l'aperçu.\n" +"Cela peut causer des problèmes de latence ou de performance." #: applications.ui:66 msgid "Enable all by default" -msgstr "" +msgstr "Active tout par défaut" #: applications.ui:67 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Ajoute du flou derrière toutes les fenêtres par défaut.\n" +"Non recommandé en raison de problèmes de performance et de stabilité." #: applications.ui:84 msgid "Whitelist" @@ -73,19 +84,19 @@ msgstr "Liste blanche" #: applications.ui:85 msgid "A list of windows to blur." -msgstr "" +msgstr "Une liste d'applications à flouter." #: applications.ui:103 applications.ui:140 msgid "Add Window" -msgstr "" +msgstr "Ajouter une fenêtre" #: applications.ui:121 msgid "Blacklist" -msgstr "" +msgstr "Liste noire" #: applications.ui:122 msgid "A list of windows not to blur." -msgstr "" +msgstr "Une liste d'applications à ne pas flouter." #: customize-row.ui:4 msgid "Customize properties" @@ -241,6 +252,12 @@ msgid "" "This option will entirely disable clipped redraws from GNOME shell, and may " "impact performances significantly but will entirely fix the blur effect." msgstr "" +"Change le comportement de l'effet de flou dynamique.\n" +"La valeur par défaut est très recommandée, sauf si vous floutez les " +"applications, auquel cas « Pas d'artefact » est meilleur.\n" +"Cette option désactivera entièrement les repeintes partielles de GNOME " +"shell, et pourrait impacter les performances mais réglera entièrement " +"l'effet de flou." #: general.ui:151 msgid "Debug" @@ -256,15 +273,15 @@ msgstr "" #: general.ui:167 msgid "Reset preferences" -msgstr "" +msgstr "Remise à zéro des préférences" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "Remet à zéro les préférences de Blur my Shell de manière irréversible." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Réinitialiser" #: general.ui:228 msgid "High performances" @@ -280,7 +297,7 @@ msgstr "Haute qualité" #: general.ui:231 msgid "No artefact" -msgstr "" +msgstr "Pas d'artéfact" #: menu.ui:6 msgid "Project page" @@ -413,6 +430,8 @@ msgid "" "Override the background of the panel to use a transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Passe outre le fond du panneau pour utiliser un fond transparent.\n" +"Recommandé sauf si vous voulez personnaliser votre thème GNOME." #: panel.ui:64 msgid "Disable when a window is near" @@ -420,7 +439,7 @@ msgstr "Désactiver lorsqu'une fenêtre est proche" #: panel.ui:65 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "Désactive la transparence du panneau lorsqu'une fenêtre est proche." #: panel.ui:82 msgid "Compatibility" @@ -444,15 +463,15 @@ msgstr "" #: window-row.ui:4 msgid "Window Name" -msgstr "" +msgstr "Nom de la fenêtre" #: window-row.ui:8 msgid "Select window" -msgstr "" +msgstr "Choix de la fenêtre" #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" +msgstr "Choisissez une fenêtre ou sélectionnez-la par son nom de classe." #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality, is " From 38ed67216b7e043fcb5fa706c2e095905561fccc Mon Sep 17 00:00:00 2001 From: albanobattistella Date: Sun, 28 Aug 2022 08:44:18 +0000 Subject: [PATCH 014/212] Translated using Weblate (Italian) Currently translated at 100.0% (92 of 92 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/it/ --- po/it.po | 38 ++++++++++++++++++++++++++++++-------- 1 file changed, 30 insertions(+), 8 deletions(-) diff --git a/po/it.po b/po/it.po index 2b307f2e..0b6f824f 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-08-24 13:52+0000\n" +"PO-Revision-Date: 2022-08-28 10:33+0000\n" "Last-Translator: albanobattistella \n" "Language-Team: Italian \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" #: applications.ui:5 msgid "Applications" @@ -34,26 +34,37 @@ msgid "" "in the “General → Hack level” preference.\n" " " msgstr "" +"Aggiunge la sfocatura alle applicazioni. Si tratta ancora di una " +"funzionalità beta.\n" +"Per ottenere i migliori risultati possibili, assicuratevi di scegliere " +"l'opzione \"Nessun artefatto\" nelle preferenze \"Generale → Livello hack\"." +"\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Opacità" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"L'opacità della finestra sopra l'effetto di sfocatura; un valore più alto " +"sarà più leggibile." #: applications.ui:50 msgid "Blur on overview" -msgstr "" +msgstr "Sfocatura nella panoramica" #: applications.ui:51 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Forza la sfocatura a essere visualizzata correttamente su tutti gli spazi di " +"lavoro nella panoramica.\n" +"Ciò può causare problemi di latenza o di prestazioni." #: applications.ui:66 msgid "Enable all by default" @@ -64,6 +75,9 @@ msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Aggiunge la sfocatura dietro tutte le finestre per impostazione predefinita." +"\n" +"Sconsigliato per problemi di prestazioni e stabilità." #: applications.ui:84 msgid "Whitelist" @@ -239,6 +253,12 @@ msgid "" "This option will entirely disable clipped redraws from GNOME shell, and may " "impact performances significantly but will entirely fix the blur effect." msgstr "" +"Modifica il comportamento dell'effetto di sfocatura dinamica.\n" +"Il valore predefinito è molto consigliato, a meno che non si utilizzi la " +"sfocatura delle applicazioni, nel qual caso è meglio \"Nessun artefatto\".\n" +"Questa opzione disabilita completamente i ridisegni ritagliati dalla shell " +"di GNOME e può avere un impatto significativo sulle prestazioni, ma risolve " +"completamente l'effetto di sfocatura." #: general.ui:151 msgid "Debug" @@ -258,11 +278,11 @@ msgstr "Ripristina le preferenze" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "Resetta le preferenze di Blur my Shell in modo irreversibile." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Resettare" #: general.ui:228 msgid "High performances" @@ -278,7 +298,7 @@ msgstr "Alta qualità" #: general.ui:231 msgid "No artefact" -msgstr "" +msgstr "Nessun artefatto" #: menu.ui:6 msgid "Project page" @@ -411,6 +431,8 @@ msgid "" "Override the background of the panel to use a transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Sovrascrive lo sfondo del pannello per utilizzarne uno trasparente.\n" +"Consigliato a meno che non si voglia personalizzare il tema di GNOME." #: panel.ui:64 msgid "Disable when a window is near" @@ -418,7 +440,7 @@ msgstr "Disattiva quando una finestra è vicina" #: panel.ui:65 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "Disattiva la trasparenza del pannello quando una finestra è vicina." #: panel.ui:82 msgid "Compatibility" From 274d1455f0fae144e41623d3c09aad3bbd1eb55d Mon Sep 17 00:00:00 2001 From: Park Seonu Date: Sun, 28 Aug 2022 09:53:54 +0000 Subject: [PATCH 015/212] Translated using Weblate (Korean) Currently translated at 40.2% (37 of 92 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ko/ --- po/ko.po | 78 ++++++++++++++++++++++++++++++++------------------------ 1 file changed, 45 insertions(+), 33 deletions(-) diff --git a/po/ko.po b/po/ko.po index 74a3fe5e..3f7f291a 100644 --- a/po/ko.po +++ b/po/ko.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-08-23 16:15+0000\n" +"PO-Revision-Date: 2022-08-28 10:33+0000\n" "Last-Translator: Park Seonu \n" "Language-Team: Korean \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.14-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" #: applications.ui:5 msgid "Applications" @@ -34,36 +34,44 @@ msgid "" "in the “General → Hack level” preference.\n" " " msgstr "" +"어플리케이션에 블러를 추가합니다. 이 기능은 아직 베타입니다. \n" +"최상의 결과를 얻으려면, 설정의 \"일반 → 개선 방식\" 을 \"아티펙트 없음\" " +"으로 선택해야 합니다.\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "불투명도" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." -msgstr "" +msgstr "블러 효과 위의 창의 불투명도 값이 높을수록 더 읽기 쉽습니다." #: applications.ui:50 msgid "Blur on overview" -msgstr "" +msgstr "오버뷰 모드 블러" #: applications.ui:51 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"오버뷰 모드의 모든 작업 영역에 블러 효과가 제대로 표시되도록 합니다.\n" +"이로 인해 일부 지연 또는 성능 문제가 발생할 수 있습니다." #: applications.ui:66 msgid "Enable all by default" -msgstr "" +msgstr "기본적으로 모두 활성화" #: applications.ui:67 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"블러 효과를 기본적으로 모든 창에 추가합니다.\n" +"성능 및 안정성 문제로 인해 권장하지 않습니다." #: applications.ui:84 msgid "Whitelist" @@ -71,122 +79,126 @@ msgstr "화이트리스트" #: applications.ui:85 msgid "A list of windows to blur." -msgstr "" +msgstr "블러 효과를 추가할 창의 목록." #: applications.ui:103 applications.ui:140 msgid "Add Window" -msgstr "" +msgstr "창 추가" #: applications.ui:121 msgid "Blacklist" -msgstr "" +msgstr "블랙리스트" #: applications.ui:122 msgid "A list of windows not to blur." -msgstr "" +msgstr "블러 효과를 추가하지 않을 창 목록." #: customize-row.ui:4 msgid "Customize properties" -msgstr "" +msgstr "속성 사용자 정의" #: customize-row.ui:5 msgid "" "Uses customized blur properties, instead of the ones set in the General page." -msgstr "" +msgstr "일반 페이지에서 설정한 속성 대신 사용자 정의된 블러 속성을 사용합니다." #: customize-row.ui:10 general.ui:15 msgid "Sigma" -msgstr "" +msgstr "시그마" #: customize-row.ui:11 general.ui:16 msgid "The intensity of the blur." -msgstr "" +msgstr "블러 효과의 강도." #: customize-row.ui:31 general.ui:35 msgid "Brightness" -msgstr "" +msgstr "밝기" #: customize-row.ui:32 general.ui:36 msgid "" "The brightness of the blur effect, a high value might make the text harder " "to read." -msgstr "" +msgstr "블러 효과의 밝기, 높은 값은 텍스트를 읽기 어렵게 만들 수 있습니다." #: customize-row.ui:52 general.ui:55 msgid "Color" -msgstr "" +msgstr "색상" #: customize-row.ui:53 general.ui:56 msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." -msgstr "" +msgstr "블러의 색상을 변경합니다, 색상의 불투명도는 블러 효과의 혼합되는 정도를 " +"설정합니다." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" -msgstr "" +msgstr "노이즈 값" #: customize-row.ui:72 general.ui:74 msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." -msgstr "" +msgstr "블러 효과에 추가할 노이즈의 양으로, 대비가 낮은 화면이나 미적 목적에 " +"유용합니다." #: customize-row.ui:92 general.ui:94 msgid "Noise lightness" -msgstr "" +msgstr "노이즈 밝기" #: customize-row.ui:93 general.ui:95 msgid "The lightness of the noise added to the blur effect." -msgstr "" +msgstr "블러 효과에 추가될 노이즈의 밝기." #: customize-row.ui:113 msgid "Notice" -msgstr "" +msgstr "알림" #: customize-row.ui:114 msgid "" "Noise and color can't be activated on dynamically blurred components, such " "as this one." -msgstr "" +msgstr "노이즈 및 색상은 이와 같이 동적으로 흐리게 처리된 구성 요소에서 활성화할 수 " +"없습니다." #: dash.ui:5 msgid "Dash" -msgstr "" +msgstr "대시보드" #: dash.ui:10 msgid "Dash to Dock blur" -msgstr "" +msgstr "Dash to Dock 블러" #: dash.ui:11 msgid "Blur the background of the Dash to Dock extension, if it is used." -msgstr "" +msgstr "Dash to Dock 확장 프로그램이 사용되는 경우 배경을 흐리게 처리합니다." #: dash.ui:26 panel.ui:56 msgid "Override background" -msgstr "" +msgstr "배경 오버라이드" #: dash.ui:27 msgid "" "Makes the background semi-transparent, disable this to use Dash to Dock " "preferences instead." -msgstr "" +msgstr "배경을 반투명하게 만들고 Dash to Dock 기본 설정을 대신 사용하려면 이 옵션을 " +"비활성화합니다." #: dash.ui:41 panel.ui:41 msgid "Disable in overview" -msgstr "" +msgstr "오버뷰 모드에서 비활성화" #: dash.ui:42 msgid "Disables the blur from Dash to Dock when entering the overview." -msgstr "" +msgstr "Dash to Dock 이 오버뷰 모드에 들어가면 블러 효과를 비활성화합니다." #: general.ui:5 msgid "General" -msgstr "" +msgstr "일반" #: general.ui:10 msgid "Blur preferences" -msgstr "" +msgstr "블러 환경 설정" #: general.ui:11 msgid "Global blur preferences, used by all components by default." From bab3178ef74dc628bf397b0ed33c52bcdca7a273 Mon Sep 17 00:00:00 2001 From: Alexmelman88 <99257010+Alexmelman88@users.noreply.github.com> Date: Sun, 28 Aug 2022 13:47:52 +0300 Subject: [PATCH 016/212] Add files via upload --- po/ru.po | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/po/ru.po b/po/ru.po index d7b252a4..18d1bf8a 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-08-25 13:51+0300\n" +"PO-Revision-Date: 2022-08-28 13:45+0300\n" "Last-Translator: Aleksandr Melman \n" "Language-Team: \n" "Language: ru_RU\n" @@ -34,26 +34,34 @@ msgid "" "in the “General → Hack level” preference.\n" " " msgstr "" +"Добавляет размытие к приложениям. Это все еще бета-функционал.\n" +"Чтобы получить наилучшие результаты, убедитесь, что выбрали опцию \"Без " +"артефактов\" в настройке \"Общие → Уровень взлома\".\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Непрозрачность" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"Непрозрачность окна поверх эффекта размытия, более высокое значение будет " +"более четким." #: applications.ui:50 msgid "Blur on overview" -msgstr "" +msgstr "Размытие в Обзоре" #: applications.ui:51 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Заставляет размытие правильно отображаться на всех рабочих столах в Обзоре.\n" +"Это может вызвать некоторые задержки или проблемы с производительностью." #: applications.ui:66 msgid "Enable all by default" @@ -64,6 +72,8 @@ msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"По умолчанию добавляет размытие для всех окон.\n" +"Не рекомендуется из-за проблем с производительностью и стабильностью." #: applications.ui:84 msgid "Whitelist" @@ -237,6 +247,12 @@ msgid "" "This option will entirely disable clipped redraws from GNOME shell, and may " "impact performances significantly but will entirely fix the blur effect." msgstr "" +"Изменяет поведение эффекта динамического размытия.\n" +"Значение по умолчанию очень рекомендуется, если только вы не используете " +"размытие приложений, в этом случае лучше выбрать \"Без артефактов\".\n" +"Эта опция полностью отключает обрезанные перерисовки из оболочки GNOME, что " +"может значительно повлиять на производительность, но полностью исправляет " +"эффект размытия." #: general.ui:151 msgid "Debug" @@ -276,7 +292,7 @@ msgstr "Высокое качество" #: general.ui:231 msgid "No artefact" -msgstr "" +msgstr "Без артефактов" #: menu.ui:6 msgid "Project page" @@ -408,6 +424,8 @@ msgid "" "Override the background of the panel to use a transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Переопределяет фон верхней панели, чтобы использовать прозрачный фон.\n" +"Рекомендуется, если вы не хотите настраивать тему GNOME." #: panel.ui:64 msgid "Disable when a window is near" @@ -416,6 +434,7 @@ msgstr "Отключить, когда рядом находится окно" #: panel.ui:65 msgid "Disables the transparency of the panel when a window is near it." msgstr "" +"Отключает прозрачность верхней панели, когда рядом с ней находится окно." #: panel.ui:82 msgid "Compatibility" From 93d4b9f56a15c294ad08000f94f18a1a2e4d1262 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sun, 28 Aug 2022 23:57:50 +0200 Subject: [PATCH 017/212] Correct window blur allocation on wayland and scaled monitors --- src/components/applications.js | 65 ++++++++++++++++------------------ 1 file changed, 30 insertions(+), 35 deletions(-) diff --git a/src/components/applications.js b/src/components/applications.js index 7b813402..c040451b 100644 --- a/src/components/applications.js +++ b/src/components/applications.js @@ -142,16 +142,15 @@ var ApplicationsBlur = class ApplicationsBlur { ); } - // update the offset constraints when the window size changes + // update the position and size when the window size changes this.connections.connect(meta_window, 'size-changed', () => { if (this.blur_actor_map.has(pid)) { - let offset = this.compute_offset(meta_window); + let allocation = this.compute_allocation(meta_window); let blur_actor = this.blur_actor_map.get(pid); - let constraints = blur_actor.get_constraints(); - blur_actor.x = offset.x; - blur_actor.y = offset.y; - constraints[0].offset = offset.width; - constraints[1].offset = offset.height; + blur_actor.x = allocation.x; + blur_actor.y = allocation.y; + blur_actor.width = allocation.width; + blur_actor.height = allocation.height; } }); @@ -414,44 +413,40 @@ var ApplicationsBlur = class ApplicationsBlur { }); } - // Compute the offset constraints for a blur actor relative to the size and - // position of the target window - compute_offset(meta_window) { + /// Compute the size and position for a blur actor. + /// On wayland, it seems like we need to divide by the scale to get the + /// correct result. + compute_allocation(meta_window) { + const is_wayland = Meta.is_wayland_compositor(); + const monitor_index = meta_window.get_monitor(); + const scale = is_wayland + ? Main.layoutManager.monitors[monitor_index].geometry_scale + : 1; + let frame = meta_window.get_frame_rect(); let buffer = meta_window.get_buffer_rect(); + return { - x: frame.x - buffer.x, - y: frame.y - buffer.y, - width: frame.width - buffer.width, - height: frame.height - buffer.height + x: (frame.x - buffer.x) / scale, + y: (frame.y - buffer.y) / scale, + width: frame.width / scale, + height: frame.height / scale }; } /// Returns a new already blurred widget, configured to follow the size and /// position of its target window. create_blur_actor(meta_window, window_actor, blur_effect) { - // create the constraints in size and position to its target window - let offset = this.compute_offset(meta_window); - - let constraint_width = new Clutter.BindConstraint({ - source: window_actor, - coordinate: Clutter.BindCoordinate.WIDTH, - offset: offset.width + // compute the size and position + let allocation = this.compute_allocation(meta_window); + + // create the actor + let blur_actor = new Clutter.Actor({ + x: allocation.x, + y: allocation.y, + width: allocation.width, + height: allocation.height }); - let constraint_height = new Clutter.BindConstraint({ - source: window_actor, - coordinate: Clutter.BindCoordinate.HEIGHT, - offset: offset.height - }); - - // create the actor and add the constraints - let blur_actor = new Clutter.Actor(); - blur_actor.add_constraint(constraint_width); - blur_actor.add_constraint(constraint_height); - - // set position - blur_actor.x = offset.x; - blur_actor.y = offset.y; // add the effect blur_actor.add_effect_with_name('blur-effect', blur_effect); From 48e7ef0dcb4a5b41f3cadf57eae134308ed619f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sun, 28 Aug 2022 23:59:15 +0200 Subject: [PATCH 018/212] Blacklist Plank by default --- schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml index d3dd46de..c56f1dbb 100644 --- a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml +++ b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml @@ -314,7 +314,7 @@ - [] + ["Plank"] List of applications not to blur From 2ef6caac8eadee3a7293d4c59ee5abf863c2d422 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sun, 28 Aug 2022 23:59:59 +0200 Subject: [PATCH 019/212] Make sure that original prototypes are replaced --- src/components/overview.js | 149 ++++++++++++++++++++----------------- 1 file changed, 79 insertions(+), 70 deletions(-) diff --git a/src/components/overview.js b/src/components/overview.js index 35347c4b..110d0484 100644 --- a/src/components/overview.js +++ b/src/components/overview.js @@ -55,80 +55,85 @@ var OverviewBlur = class OverviewBlur { // update backgrounds when the component is enabled this.update_backgrounds(); - this.enabled = true; // part for the workspace animation switch - // store original workspace switching methods for restoring them on - // disable() - this._original_PrepareSwitch = wac_proto._prepareWorkspaceSwitch; - this._original_FinishSwitch = wac_proto._finishWorkspaceSwitch; - - const w_m = global.workspace_manager; - const outer_this = this; - - // create a blurred background actor for each monitor during a workspace - // switch - wac_proto._prepareWorkspaceSwitch = function (...params) { - outer_this._log("prepare workspace switch"); - outer_this._original_PrepareSwitch.apply(this, params); - - // this permits to show the blur behind windows that are on - // workspaces on the left and right - if ( - outer_this.prefs.applications.BLUR - ) { - let ws_index = w_m.get_active_workspace_index(); - [ws_index - 1, ws_index + 1].forEach( - i => w_m.get_workspace_by_index(i)?.list_windows().forEach( - window => window.get_compositor_private().show() - ) - ); - } - - Main.layoutManager.monitors.forEach(monitor => { + // make sure not to do this part if the extension was enabled prior, as + // the functions would call themselves and cause infinite recursion + if (!this.enabled) { + // store original workspace switching methods for restoring them on + // disable() + this._original_PrepareSwitch = wac_proto._prepareWorkspaceSwitch; + this._original_FinishSwitch = wac_proto._finishWorkspaceSwitch; + + const w_m = global.workspace_manager; + const outer_this = this; + + // create a blurred background actor for each monitor during a workspace + // switch + wac_proto._prepareWorkspaceSwitch = function (...params) { + outer_this._log("prepare workspace switch"); + outer_this._original_PrepareSwitch.apply(this, params); + + // this permits to show the blur behind windows that are on + // workspaces on the left and right if ( - !( - Meta.prefs_get_workspaces_only_on_primary() && - (monitor !== Main.layoutManager.primaryMonitor) - ) + outer_this.prefs.applications.BLUR ) { - const bg_actor = outer_this.create_background_actor( - monitor + let ws_index = w_m.get_active_workspace_index(); + [ws_index - 1, ws_index + 1].forEach( + i => w_m.get_workspace_by_index(i)?.list_windows().forEach( + window => window.get_compositor_private().show() + ) ); + } - Main.uiGroup.insert_child_above( - bg_actor, - global.window_group - ); + Main.layoutManager.monitors.forEach(monitor => { + if ( + !( + Meta.prefs_get_workspaces_only_on_primary() && + (monitor !== Main.layoutManager.primaryMonitor) + ) + ) { + const bg_actor = outer_this.create_background_actor( + monitor + ); - // store the actors so that we can delete them later - outer_this._workspace_switch_bg_actors.push(bg_actor); - } - }); - }; - - // remove the workspace-switch actors when the switch is done - wac_proto._finishWorkspaceSwitch = function (...params) { - outer_this._log("finish workspace switch"); - outer_this._original_FinishSwitch.apply(this, params); - - // this hides windows that are not on the current workspace - if ( - outer_this.prefs.applications.BLUR - ) - for (let i = 0; i < w_m.get_n_workspaces(); i++) { - if (i != w_m.get_active_workspace_index()) - w_m.get_workspace_by_index(i)?.list_windows().forEach( - window => window.get_compositor_private().hide() + Main.uiGroup.insert_child_above( + bg_actor, + global.window_group ); - } - outer_this._workspace_switch_bg_actors.forEach(actor => { - actor.destroy(); - }); - outer_this._workspace_switch_bg_actors = []; - }; + // store the actors so that we can delete them later + outer_this._workspace_switch_bg_actors.push(bg_actor); + } + }); + }; + + // remove the workspace-switch actors when the switch is done + wac_proto._finishWorkspaceSwitch = function (...params) { + outer_this._log("finish workspace switch"); + outer_this._original_FinishSwitch.apply(this, params); + + // this hides windows that are not on the current workspace + if ( + outer_this.prefs.applications.BLUR + ) + for (let i = 0; i < w_m.get_n_workspaces(); i++) { + if (i != w_m.get_active_workspace_index()) + w_m.get_workspace_by_index(i)?.list_windows().forEach( + window => window.get_compositor_private().hide() + ); + } + + outer_this._workspace_switch_bg_actors.forEach(actor => { + actor.destroy(); + }); + outer_this._workspace_switch_bg_actors = []; + }; + } + + this.enabled = true; } update_backgrounds() { @@ -271,15 +276,19 @@ var OverviewBlur = class OverviewBlur { Main.uiGroup.remove_style_class_name("bms-overview-components-light"); Main.uiGroup.remove_style_class_name("bms-overview-components-dark"); + // make sure to absolutely not do this if the component was not enabled + // prior, as this would cause infinite recursion + if (this.enabled) { + // restore original behavior + if (this._original_PrepareSwitch) + wac_proto._prepareWorkspaceSwitch = this._original_PrepareSwitch; + if (this._original_FinishSwitch) + wac_proto._finishWorkspaceSwitch = this._original_FinishSwitch; + } + this.effects = []; this.connections.disconnect_all(); this.enabled = false; - - // restore original behavior - if (this._original_PrepareSwitch && this._original_FinishSwitch) { - wac_proto._prepareWorkspaceSwitch = this._original_PrepareSwitch; - wac_proto._finishWorkspaceSwitch = this._original_FinishSwitch; - } } _log(str) { From 58a3de5634eaafd4b84d53aed3a7d333af740860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Mon, 29 Aug 2022 00:07:29 +0200 Subject: [PATCH 020/212] Correct window row selector width --- resources/ui/window-row.ui | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/ui/window-row.ui b/resources/ui/window-row.ui index 6cf82bbb..c0eb2ec1 100644 --- a/resources/ui/window-row.ui +++ b/resources/ui/window-row.ui @@ -12,6 +12,7 @@ center true + 175px From f67dbee9caa1ea34089a535e1c3cf4df318c64b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Mon, 29 Aug 2022 01:18:21 +0200 Subject: [PATCH 021/212] Finalized preferences reset behaviour, simplified code --- src/conveniences/settings.js | 7 +- src/preferences/applications.js | 118 +++++++++++++++++--------------- src/preferences/dash.js | 17 +++-- src/preferences/general.js | 18 +++-- src/preferences/other.js | 22 +++--- src/preferences/overview.js | 20 +++--- src/preferences/panel.js | 22 +++--- src/prefs.js | 16 ++--- 8 files changed, 124 insertions(+), 116 deletions(-) diff --git a/src/conveniences/settings.js b/src/conveniences/settings.js index d62569fc..5c07472f 100644 --- a/src/conveniences/settings.js +++ b/src/conveniences/settings.js @@ -1,6 +1,7 @@ 'use strict'; const { Gio, GLib } = imports.gi; +const Signals = imports.signals; const ExtensionUtils = imports.misc.extensionUtils; @@ -153,6 +154,8 @@ var Prefs = class Prefs { component[property_name + '_reset'](); }); }); + + this.emit('reset', true); } /// From the gschema name, returns the name of the associated property on @@ -177,4 +180,6 @@ var Prefs = class Prefs { }); }); } -}; \ No newline at end of file +}; + +Signals.addSignalMethods(Prefs.prototype); \ No newline at end of file diff --git a/src/preferences/applications.js b/src/preferences/applications.js index 67c668a1..466906f8 100644 --- a/src/preferences/applications.js +++ b/src/preferences/applications.js @@ -4,11 +4,28 @@ const { Adw, GLib, GObject, Gio } = imports.gi; const ExtensionUtils = imports.misc.extensionUtils; const Me = ExtensionUtils.getCurrentExtension(); -const { Prefs } = Me.imports.conveniences.settings; -const { Keys } = Me.imports.conveniences.keys; const { WindowRow } = Me.imports.preferences.window_row; +const make_array = prefs_group => { + let list_box = prefs_group + .get_first_child() + .get_last_child() + .get_first_child(); + + let elements = []; + let i = 0; + let element = list_box.get_row_at_index(i); + while (element) { + elements.push(element); + i++; + element = list_box.get_row_at_index(i); + } + + return elements; +}; + + var Applications = GObject.registerClass({ GTypeName: 'Applications', Template: `file://${GLib.build_filenamev([Me.path, 'ui', 'applications.ui'])}`, @@ -24,10 +41,10 @@ var Applications = GObject.registerClass({ 'add_window_blacklist' ], }, class Applications extends Adw.PreferencesPage { - constructor(props = {}) { - super(props); + constructor(preferences) { + super({}); - this.preferences = new Prefs(Keys); + this.preferences = preferences; this.preferences.applications.settings.bind( 'blur', this._blur, 'state', @@ -62,16 +79,6 @@ var Applications = GObject.registerClass({ this._whitelist.visible = false; this._blacklist.visible = !this._whitelist.visible; - // the Gtk.ListBox which contains the widgets - this._whitelist_elements = this._whitelist - .get_first_child() - .get_last_child() - .get_first_child(); - this._blacklist_elements = this._blacklist - .get_first_child() - .get_last_child() - .get_first_child(); - // listen to app addition this._add_window_whitelist.connect('clicked', _ => this.add_to_whitelist() @@ -81,32 +88,51 @@ var Applications = GObject.registerClass({ ); // add initial applications + this.add_widgets_from_lists(); + + this.preferences.connect('reset', _ => { + this.remove_all_widgets(); + this.add_widgets_from_lists(); + }); + } + + // A way to retriew the whitelist widgets. + get _whitelist_elements() { + return make_array(this._whitelist); + } + + // A way to retriew the blacklist widgets. + get _blacklist_elements() { + return make_array(this._blacklist); + } + + add_widgets_from_lists() { this.preferences.applications.WHITELIST.forEach( app_name => this.add_to_whitelist(app_name) ); + this.preferences.applications.BLACKLIST.forEach( app_name => this.add_to_blacklist(app_name) ); + } close_all_expanded() { - let i = 0; - let element_w = this._whitelist_elements.get_row_at_index(i); - while (element_w) { - element_w.set_expanded(false); - - i += 1; - element_w = this._whitelist_elements.get_row_at_index(i); - } - - let j = 0; - let element_b = this._blacklist_elements.get_row_at_index(i); - while (element_b) { - element_b.set_expanded(false); - - i += 1; - element_b = this._blacklist_elements.get_row_at_index(i); - } + this._whitelist_elements.forEach( + element => element.set_expanded(false) + ); + this._blacklist_elements.forEach( + element => element.set_expanded(false) + ); + } + + remove_all_widgets() { + this._whitelist_elements.forEach( + element => this._whitelist.remove(element) + ); + this._blacklist_elements.forEach( + element => this._blacklist.remove(element) + ); } add_to_whitelist(app_name = null) { @@ -120,33 +146,17 @@ var Applications = GObject.registerClass({ } update_whitelist_titles() { - let i = 0; - let element = this._whitelist_elements.get_row_at_index(i); - let titles = []; - while (element) { - let title = element._window_class.buffer.text; - if (title != "") - titles.push(title); - - i += 1; - element = this._whitelist_elements.get_row_at_index(i); - } + let titles = this._whitelist_elements + .map(element => element._window_class.buffer.text) + .filter(title => title != ""); this.preferences.applications.WHITELIST = titles; } update_blacklist_titles() { - let i = 0; - let element = this._blacklist_elements.get_row_at_index(i); - let titles = []; - while (element) { - let title = element._window_class.buffer.text; - if (title != "") - titles.push(title); - - i += 1; - element = this._blacklist_elements.get_row_at_index(i); - } + let titles = this._blacklist_elements + .map(element => element._window_class.buffer.text) + .filter(title => title != ""); this.preferences.applications.BLACKLIST = titles; } diff --git a/src/preferences/dash.js b/src/preferences/dash.js index bab5d464..be0e6b1e 100644 --- a/src/preferences/dash.js +++ b/src/preferences/dash.js @@ -4,8 +4,7 @@ const { Adw, GLib, GObject, Gio } = imports.gi; const ExtensionUtils = imports.misc.extensionUtils; const Me = ExtensionUtils.getCurrentExtension(); -const { Prefs } = Me.imports.conveniences.settings; -const { Keys } = Me.imports.conveniences.keys; + var Dash = GObject.registerClass({ GTypeName: 'Dash', @@ -17,24 +16,24 @@ var Dash = GObject.registerClass({ 'unblur_in_overview' ], }, class Dash extends Adw.PreferencesPage { - constructor(props = {}) { - super(props); + constructor(preferences) { + super({}); - const Preferences = new Prefs(Keys); + this.preferences = preferences; - Preferences.dash_to_dock.settings.bind( + this.preferences.dash_to_dock.settings.bind( 'blur', this._blur, 'state', Gio.SettingsBindFlags.DEFAULT ); - Preferences.dash_to_dock.settings.bind( + this.preferences.dash_to_dock.settings.bind( 'override-background', this._override_background, 'state', Gio.SettingsBindFlags.DEFAULT ); - Preferences.dash_to_dock.settings.bind( + this.preferences.dash_to_dock.settings.bind( 'unblur-in-overview', this._unblur_in_overview, 'state', Gio.SettingsBindFlags.DEFAULT ); - this._customize.connect_to(Preferences.dash_to_dock, false); + this._customize.connect_to(this.preferences.dash_to_dock, false); } }); \ No newline at end of file diff --git a/src/preferences/general.js b/src/preferences/general.js index 398bdc16..74f494a9 100644 --- a/src/preferences/general.js +++ b/src/preferences/general.js @@ -4,8 +4,6 @@ const { Adw, GLib, GObject, Gio } = imports.gi; const ExtensionUtils = imports.misc.extensionUtils; const Me = ExtensionUtils.getCurrentExtension(); -const { Prefs } = Me.imports.conveniences.settings; -const { Keys } = Me.imports.conveniences.keys; const { CustomizeRow } = Me.imports.preferences.customize_row; @@ -27,26 +25,26 @@ var General = GObject.registerClass({ 'reset' ], }, class General extends Adw.PreferencesPage { - constructor(props = {}) { - super(props); + constructor(preferences) { + super({}); - const Preferences = new Prefs(Keys); + this.preferences = preferences; - CustomizeRow.prototype.connect_to.call(this, Preferences); + CustomizeRow.prototype.connect_to.call(this, this.preferences); - Preferences.settings.bind( + this.preferences.settings.bind( 'color-and-noise', this._color_and_noise, 'state', Gio.SettingsBindFlags.DEFAULT ); - Preferences.settings.bind( + this.preferences.settings.bind( 'hacks-level', this._hack_level, 'selected', Gio.SettingsBindFlags.DEFAULT ); - Preferences.settings.bind( + this.preferences.settings.bind( 'debug', this._debug, 'state', Gio.SettingsBindFlags.DEFAULT ); - this._reset.connect('clicked', _ => Preferences.reset()); + this._reset.connect('clicked', _ => this.preferences.reset()); } }); \ No newline at end of file diff --git a/src/preferences/other.js b/src/preferences/other.js index ad5fb9ff..4ba3a884 100644 --- a/src/preferences/other.js +++ b/src/preferences/other.js @@ -4,8 +4,6 @@ const { Adw, GLib, GObject, Gio } = imports.gi; const ExtensionUtils = imports.misc.extensionUtils; const Me = ExtensionUtils.getCurrentExtension(); -const { Prefs } = Me.imports.conveniences.settings; -const { Keys } = Me.imports.conveniences.keys; var Other = GObject.registerClass({ @@ -22,30 +20,32 @@ var Other = GObject.registerClass({ 'window_list_customize', ], }, class Overview extends Adw.PreferencesPage { - constructor(props = {}) { - super(props); + constructor(preferences) { + super({}); - const Preferences = new Prefs(Keys); + this.preferences = preferences; - Preferences.lockscreen.settings.bind( + this.preferences.lockscreen.settings.bind( 'blur', this._lockscreen_blur, 'state', Gio.SettingsBindFlags.DEFAULT ); - this._lockscreen_customize.connect_to(Preferences.lockscreen); + this._lockscreen_customize.connect_to(this.preferences.lockscreen); - Preferences.screenshot.settings.bind( + this.preferences.screenshot.settings.bind( 'blur', this._screenshot_blur, 'state', Gio.SettingsBindFlags.DEFAULT ); - this._screenshot_customize.connect_to(Preferences.screenshot); + this._screenshot_customize.connect_to(this.preferences.screenshot); - Preferences.window_list.settings.bind( + this.preferences.window_list.settings.bind( 'blur', this._window_list_blur, 'state', Gio.SettingsBindFlags.DEFAULT ); - this._window_list_customize.connect_to(Preferences.window_list, false); + this._window_list_customize.connect_to( + this.preferences.window_list, false + ); } }); \ No newline at end of file diff --git a/src/preferences/overview.js b/src/preferences/overview.js index e5ce916f..c2f751c7 100644 --- a/src/preferences/overview.js +++ b/src/preferences/overview.js @@ -4,8 +4,6 @@ const { Adw, GLib, GObject, Gio } = imports.gi; const ExtensionUtils = imports.misc.extensionUtils; const Me = ExtensionUtils.getCurrentExtension(); -const { Prefs } = Me.imports.conveniences.settings; -const { Keys } = Me.imports.conveniences.keys; var Overview = GObject.registerClass({ @@ -21,31 +19,31 @@ var Overview = GObject.registerClass({ 'appfolder_dialog_opacity' ], }, class Overview extends Adw.PreferencesPage { - constructor(props = {}) { - super(props); + constructor(preferences) { + super({}); - const Preferences = new Prefs(Keys); + this.preferences = preferences; - Preferences.overview.settings.bind( + this.preferences.overview.settings.bind( 'blur', this._overview_blur, 'state', Gio.SettingsBindFlags.DEFAULT ); - Preferences.overview.settings.bind( + this.preferences.overview.settings.bind( 'style-components', this._overview_style_components, 'selected', Gio.SettingsBindFlags.DEFAULT ); - this._overview_customize.connect_to(Preferences.overview); + this._overview_customize.connect_to(this.preferences.overview); - Preferences.appfolder.settings.bind( + this.preferences.appfolder.settings.bind( 'blur', this._appfolder_blur, 'state', Gio.SettingsBindFlags.DEFAULT ); - Preferences.appfolder.settings.bind( + this.preferences.appfolder.settings.bind( 'dialog-opacity', this._appfolder_dialog_opacity, 'value', Gio.SettingsBindFlags.DEFAULT ); - this._appfolder_customize.connect_to(Preferences.appfolder, false); + this._appfolder_customize.connect_to(this.preferences.appfolder, false); } }); \ No newline at end of file diff --git a/src/preferences/panel.js b/src/preferences/panel.js index 0f7ebc6e..44dd11e8 100644 --- a/src/preferences/panel.js +++ b/src/preferences/panel.js @@ -4,8 +4,6 @@ const { Adw, GLib, GObject, Gio } = imports.gi; const ExtensionUtils = imports.misc.extensionUtils; const Me = ExtensionUtils.getCurrentExtension(); -const { Prefs } = Me.imports.conveniences.settings; -const { Keys } = Me.imports.conveniences.keys; var Panel = GObject.registerClass({ @@ -21,37 +19,37 @@ var Panel = GObject.registerClass({ 'hidetopbar_compatibility' ], }, class Panel extends Adw.PreferencesPage { - constructor(props = {}) { - super(props); + constructor(preferences) { + super({}); - const Preferences = new Prefs(Keys); + this.preferences = preferences; - Preferences.panel.settings.bind( + this.preferences.panel.settings.bind( 'blur', this._blur, 'state', Gio.SettingsBindFlags.DEFAULT ); - Preferences.panel.settings.bind( + this.preferences.panel.settings.bind( 'static-blur', this._static_blur, 'state', Gio.SettingsBindFlags.DEFAULT ); - Preferences.panel.settings.bind( + this.preferences.panel.settings.bind( 'unblur-in-overview', this._unblur_in_overview, 'state', Gio.SettingsBindFlags.DEFAULT ); - Preferences.panel.settings.bind( + this.preferences.panel.settings.bind( 'override-background', this._override_background, 'enable-expansion', Gio.SettingsBindFlags.DEFAULT ); - Preferences.panel.settings.bind( + this.preferences.panel.settings.bind( 'override-background-dynamically', this._override_background_dynamically, 'state', Gio.SettingsBindFlags.DEFAULT ); - this._customize.connect_to(Preferences.panel, this._static_blur); + this._customize.connect_to(this.preferences.panel, this._static_blur); - Preferences.hidetopbar.settings.bind( + this.preferences.hidetopbar.settings.bind( 'compatibility', this._hidetopbar_compatibility, 'state', Gio.SettingsBindFlags.DEFAULT ); diff --git a/src/prefs.js b/src/prefs.js index 9a364487..0f33b75a 100644 --- a/src/prefs.js +++ b/src/prefs.js @@ -7,8 +7,6 @@ const Me = ExtensionUtils.getCurrentExtension(); const { Prefs } = Me.imports.conveniences.settings; const { Keys } = Me.imports.conveniences.keys; -const Preferences = new Prefs(Keys); - const { addMenu } = Me.imports.preferences.menu; const { CustomizeRow } = Me.imports.preferences.customize_row; const { WindowRow } = Me.imports.preferences.window_row; @@ -32,12 +30,14 @@ function init() { function fillPreferencesWindow(window) { addMenu(window); - window.add(new General); - window.add(new Panel); - window.add(new Overview); - window.add(new Dash); - window.add(new Applications); - window.add(new Other); + const preferences = new Prefs(Keys); + + window.add(new General(preferences)); + window.add(new Panel(preferences)); + window.add(new Overview(preferences)); + window.add(new Dash(preferences)); + window.add(new Applications(preferences)); + window.add(new Other(preferences)); window.search_enabled = true; } From 87b4d23280901ef39ec9ff6eed619fce3573ab5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Mon, 29 Aug 2022 01:40:54 +0200 Subject: [PATCH 022/212] Add sensitivity binding for opacity --- resources/ui/applications.ui | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/ui/applications.ui b/resources/ui/applications.ui index 3dff71d6..178ab5df 100644 --- a/resources/ui/applications.ui +++ b/resources/ui/applications.ui @@ -28,6 +28,7 @@ To get the best results possible, make sure to choose option “No artefact” i Opacity The opacity of the window on top of the blur effect, a higher value will be more legible. opacity + From 21d4bbde15acf7c3bf348f7375a12f7b14c3ab6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Mon, 29 Aug 2022 13:08:03 +0200 Subject: [PATCH 023/212] Add a way to notify the user if the picking is not working extension-wise --- resources/ui/window-row.ui | 4 ++ src/dbus/client.js | 16 ++++++ src/dbus/iface.xml | 2 + src/dbus/services.js | 40 +++++++------- src/preferences/applications.js | 8 +-- src/preferences/window_row.js | 92 +++++++++++++++++++++------------ src/prefs.js | 2 +- 7 files changed, 109 insertions(+), 55 deletions(-) diff --git a/resources/ui/window-row.ui b/resources/ui/window-row.ui index c0eb2ec1..c4d8201c 100644 --- a/resources/ui/window-row.ui +++ b/resources/ui/window-row.ui @@ -36,4 +36,8 @@ + + + Could not pick window, make sure that the extension is enabled. + \ No newline at end of file diff --git a/src/dbus/client.js b/src/dbus/client.js index 510e4474..1aae9bb9 100644 --- a/src/dbus/client.js +++ b/src/dbus/client.js @@ -24,6 +24,22 @@ function pick() { ); } +/// Connect to DBus 'picking' signal, which will be emitted when the inspector +/// is picking a window. +function on_picking(cb) { + const id = Gio.DBus.session.signal_subscribe( + bus_name, + iface_name, + 'picking', + obj_path, + null, + Gio.DBusSignalFlags.NONE, + _ => { + cb(); + Gio.DBus.session.signal_unsubscribe(id); + } + ); +} /// Connect to DBus 'picked' signal, which will be emitted when a window is /// picked. diff --git a/src/dbus/iface.xml b/src/dbus/iface.xml index 5dc8190f..4f298ad1 100644 --- a/src/dbus/iface.xml +++ b/src/dbus/iface.xml @@ -2,6 +2,8 @@ + + diff --git a/src/dbus/services.js b/src/dbus/services.js index 955a07a0..bfd7e3be 100644 --- a/src/dbus/services.js +++ b/src/dbus/services.js @@ -22,19 +22,28 @@ var ApplicationsService = class ApplicationsService { /// Pick Window for Preferences Page, exported to DBus client. pick() { - // emit `picked` signal, send wm_class - const _send_wm_class = (wm_class) => { + // emit `picking` signal to know we are listening + const send_picking_signal = _ => + this.DBusImpl.emit_signal( + 'picking', + null + ); + + // emit `picked` signal to send wm_class + const send_picked_signal = wm_class => this.DBusImpl.emit_signal( 'picked', new GLib.Variant('(s)', [wm_class]) ); - }; + + // notify the preferences that we are listening + send_picking_signal(); // A very interesting way to pick a window: // 1. Open LookingGlass to mask all event handles of window // 2. Use inspector to pick window, thats is also lookingGlass do // 3. Close LookingGlass when done - // It will restore event handles of window + // It will restore event handles of window // open then hide LookingGlass const looking_class = Main.createLookingGlass(); @@ -48,32 +57,27 @@ var ApplicationsService = class ApplicationsService { const effect_name = 'lookingGlass_RedBorderEffect'; target .get_effects() - .filter((e) => e.toString().includes(effect_name)) - .forEach((e) => target.remove_effect(e)); + .filter(e => e.toString().includes(effect_name)) + .forEach(e => target.remove_effect(e)); // get wm_class_instance property of window, then pass it to DBus // client const type_str = target.toString(); let actor = target; - if (type_str.includes('MetaSurfaceActor')) { + if (type_str.includes('MetaSurfaceActor')) actor = target.get_parent(); - } - if (!actor.toString().includes('WindowActor')) { - _send_wm_class('window-not-found'); - return; - } + if (!actor.toString().includes('WindowActor')) + return send_picked_signal('window-not-found'); - _send_wm_class( - // TODO find the benefit of `get_wm_class_instance` + send_picked_signal( actor.meta_window.get_wm_class() ?? 'window-not-found' ); }); - inspector.connect('closed', () => { - // close LookingGlass When we done - looking_class.close(); - }); + + // close LookingGlass when we're done + inspector.connect('closed', _ => looking_class.close()); } export() { diff --git a/src/preferences/applications.js b/src/preferences/applications.js index 466906f8..9c012971 100644 --- a/src/preferences/applications.js +++ b/src/preferences/applications.js @@ -41,8 +41,9 @@ var Applications = GObject.registerClass({ 'add_window_blacklist' ], }, class Applications extends Adw.PreferencesPage { - constructor(preferences) { + constructor(preferences, preferences_window) { super({}); + this._preferences_window = preferences_window; this.preferences = preferences; @@ -75,11 +76,12 @@ var Applications = GObject.registerClass({ GObject.BindingFlags.DEFAULT ); + // make sure that blacklist / whitelist is correctly hidden if (this._enable_all.active) this._whitelist.visible = false; this._blacklist.visible = !this._whitelist.visible; - // listen to app addition + // listen to app row addition this._add_window_whitelist.connect('clicked', _ => this.add_to_whitelist() ); @@ -117,7 +119,7 @@ var Applications = GObject.registerClass({ } - close_all_expanded() { + close_all_expanded_rows() { this._whitelist_elements.forEach( element => element.set_expanded(false) ); diff --git a/src/preferences/window_row.js b/src/preferences/window_row.js index f9d96016..9415c8ee 100644 --- a/src/preferences/window_row.js +++ b/src/preferences/window_row.js @@ -4,7 +4,7 @@ const { Adw, GLib, GObject, Gio, Gtk } = imports.gi; const ExtensionUtils = imports.misc.extensionUtils; const Me = ExtensionUtils.getCurrentExtension(); -const { pick, on_picked } = Me.imports.dbus.client; +const { pick, on_picking, on_picked } = Me.imports.dbus.client; var WindowRow = GObject.registerClass({ @@ -12,18 +12,17 @@ var WindowRow = GObject.registerClass({ Template: `file://${GLib.build_filenamev([Me.path, 'ui', 'window-row.ui'])}`, InternalChildren: [ 'window_picker', - 'window_class' + 'window_class', + 'picking_failure_toast' ], }, class WindowRow extends Adw.ExpanderRow { constructor(list, app_page, app_name) { super({}); - this._is_whitelist = list == 'whitelist'; + this._list = list; this._app_page = app_page; - this._app_name = app_name; // add a 'remove' button before the text let action_row = this.child.get_first_child().get_first_child(); - let remove_button = new Gtk.Button({ 'icon-name': 'remove-window-symbolic', 'width-request': 38, @@ -33,50 +32,77 @@ var WindowRow = GObject.registerClass({ }); remove_button.add_css_class('circular'); remove_button.add_css_class('flat'); - - remove_button.connect('clicked', _ => { - if (this._is_whitelist) - this._app_page.remove_from_whitelist(this); - else - this._app_page.remove_from_blacklist(this); - }); - action_row.add_prefix(remove_button); - // bind window name to text buffer + // connect the button to the whitelist / blacklist removal + remove_button.connect('clicked', _ => this._remove_row()); + + // bind row title to text buffer this._window_class.buffer.bind_property( 'text', this, 'title', Gio.SettingsBindFlags.BIDIRECTIONNAL ); - // set application name if it exists, else open the revealer to focus - if (this._app_name) { - this._window_class.buffer.text = this._app_name; - } else { - this._app_page.close_all_expanded(); + // set application name if it exists, or open the revealer and pick one + if (app_name) + this._window_class.buffer.text = app_name; + else { + app_page.close_all_expanded_rows(); this.set_expanded(true); - this.do_pick_window(); + this._do_pick_window(true); } - this._window_picker.connect('clicked', _ => this.do_pick_window()); + // pick a window when the picker button is clicked + this._window_picker.connect('clicked', _ => this._do_pick_window()); - // update list on buffer change - this._window_class.connect('changed', _ => { - if (this._is_whitelist) - this._app_page.update_whitelist_titles(this); - else - this._app_page.update_blacklist_titles(this); - }); + // update list on text buffer change + this._window_class.connect('changed', + _ => this._update_rows_titles() + ); + } + + _remove_row() { + this._app_page["remove_from_" + this._list](this); } - do_pick_window() { + _update_rows_titles() { + this._app_page["update_" + this._list + "_titles"](this); + } + + _do_pick_window(remove_if_failed = false) { + // a mechanism to know if the extension is listening correcly + let has_responded = false; + let should_take_answer = true; + setTimeout(_ => { + if (!has_responded) { + // show toast about failure + this._app_page._preferences_window.add_toast( + this._picking_failure_toast + ); + + // prevent title from changing with later picks + should_take_answer = false; + + // remove row if asked + if (remove_if_failed) + this._remove_row(); + } + }, 15); + + on_picking(_ => + has_responded = true + ); + on_picked(wm_class => { - if (wm_class == 'window-not-found') { - log("Can't pick window from here"); - return; + if (should_take_answer) { + if (wm_class == 'window-not-found') { + log("Can't pick window from here"); + return; + } + this._window_class.buffer.text = wm_class; } - this._window_class.buffer.text = wm_class; }); + pick(); } }); diff --git a/src/prefs.js b/src/prefs.js index 0f33b75a..10dc0800 100644 --- a/src/prefs.js +++ b/src/prefs.js @@ -36,7 +36,7 @@ function fillPreferencesWindow(window) { window.add(new Panel(preferences)); window.add(new Overview(preferences)); window.add(new Dash(preferences)); - window.add(new Applications(preferences)); + window.add(new Applications(preferences, window)); window.add(new Other(preferences)); window.search_enabled = true; From 8d0828ee4579f0f22e09c44f61b5af0169f350bd Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Sat, 3 Sep 2022 22:20:40 +0530 Subject: [PATCH 024/212] ta.po: Add First Author --- po/ta.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ta.po b/po/ta.po index ccf59a6f..67da789d 100644 --- a/po/ta.po +++ b/po/ta.po @@ -1,7 +1,7 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Blur-my-shell Tamil PO Translation. +# Copyright (C) 2022 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the blur-my-shell@aunetx package. -# FIRST AUTHOR , YEAR. +# K.B.Dharun Krishna , 2022. # msgid "" msgstr "" From 2496cdccdecc883339c974c22256553ec4e3e5d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sat, 10 Sep 2022 17:18:40 +0200 Subject: [PATCH 025/212] Fix "Disable when window is near" for Panel doesn't work with Desktop Icons NG (DING) #341 --- src/components/panel.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/components/panel.js b/src/components/panel.js index fcfd8760..8d0d9b4b 100644 --- a/src/components/panel.js +++ b/src/components/panel.js @@ -506,11 +506,13 @@ var PanelBlur = class PanelBlur { // get all the windows in the active workspace that are visible const workspace = global.workspace_manager.get_active_workspace(); - const windows = workspace.list_windows().filter(meta_window => { - return meta_window.showing_on_its_workspace() - && !meta_window.is_hidden() - && meta_window.get_window_type() !== Meta.WindowType.DESKTOP; - }); + const windows = workspace.list_windows().filter(meta_window => + meta_window.showing_on_its_workspace() + && !meta_window.is_hidden() + && meta_window.get_window_type() !== Meta.WindowType.DESKTOP + // exclude Desktop Icons NG + && meta_window.get_gtk_application_id() !== "com.rastersoft.ding" + ); // check if at least one window is near enough to each panel and act // accordingly From df47d2e82433dd1a7bdd7fcf12e7c3a94e203002 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nat=C3=A1lia=20Mendes=20Carlos?= Date: Sat, 10 Sep 2022 15:40:39 -0300 Subject: [PATCH 026/212] add translation to Brazilian Portuguese --- po/pt.po | 39 ++++++++++++++++++++++++++++++--------- 1 file changed, 30 insertions(+), 9 deletions(-) diff --git a/po/pt.po b/po/pt.po index d2e15194..72f6f2b2 100644 --- a/po/pt.po +++ b/po/pt.po @@ -2,19 +2,22 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the blur-my-shell@aunetx package. # FIRST AUTHOR , YEAR. +# Natália Mendes Carlos , 2022. # msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: pt\n" +"PO-Revision-Date: 2022-09-10 15:39-0300\n" +"Last-Translator: Natália Mendes Carlos \n" +"Language-Team: Brazilian Portuguese \n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"X-Generator: Gtranslator 41.0\n" #: applications.ui:5 msgid "Applications" @@ -31,26 +34,33 @@ msgid "" "in the “General → Hack level” preference.\n" " " msgstr "" +"Adiciona o desfoque às aplicações. É ainda uma funcionalidade beta.\n" +"Para obter os melhores resultados possíveis, escolha a opção \"Sem " +"artefato\" em \"Geral→ nível Hack\" preferência." #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Opacidade" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"A opacidade da janela com o efeito de desfoque, um valor maior será legível." #: applications.ui:50 msgid "Blur on overview" -msgstr "" +msgstr "Desfoque geral" #: applications.ui:51 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Força o desfoque a ser propriamente mostrado em todo o espaço de trabalho " +"por um todo.\n" +"Isso pode causar lentidão relativa à performance." #: applications.ui:26 msgid "Enable all by default" @@ -61,6 +71,8 @@ msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Adiciona desfoque por trás de todas as janelas por padrão.\n" +"Não é recomendada por conta de problemas com estabilidade e performance." #: applications.ui:43 msgid "Whitelist" @@ -235,6 +247,12 @@ msgid "" "This option will entirely disable clipped redraws from GNOME shell, and may " "impact performances significantly but will entirely fix the blur effect." msgstr "" +"Mudanças no comportamento do efeito de desfoque dinâmico.\n" +"Valor padrão é fortemente recomendado, a menos que você use a aplicação de " +"desfoque, caso em que \"Sem artefato\" é melhor.\n" +"Essa opção desabilitará completamente imagens recortadas do GNOME shell, o " +"que pode impactar na performance significativamente, mas concertará o efeito " +"de desfoque." #: general.ui:149 msgid "Debug" @@ -255,10 +273,11 @@ msgstr "Redefinir preferências" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." msgstr "" +"Desfaz as preferências de desfoque do Blur-my-Shell de maneira irreversível." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Redefinir" #: general.ui:189 msgid "High performances" @@ -274,7 +293,7 @@ msgstr "Alta qualidade" #: general.ui:231 msgid "No artefact" -msgstr "" +msgstr "Sem artefato" #: menu.ui:12 msgid "Project page" @@ -408,6 +427,8 @@ msgid "" "Override the background of the panel to use a transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Anula o plano de fundo de painel com outro transparente.\n" +"Recomendado a menos que você queira customizar o tema do seu GNOME." #: panel.ui:56 msgid "Disable when a window is near" @@ -415,7 +436,7 @@ msgstr "Desativar quando uma janela estiver próxima" #: panel.ui:65 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "Desabilita a transparência do painel quando uma janela está próxima" #: panel.ui:73 msgid "Compatibility" From 4050b8c5bda1f05ff6c734de5b8121b578f83105 Mon Sep 17 00:00:00 2001 From: Philip Goto Date: Mon, 29 Aug 2022 09:15:49 +0000 Subject: [PATCH 027/212] Translated using Weblate (Dutch) Currently translated at 92.3% (85 of 92 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/nl/ --- po/nl.po | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/po/nl.po b/po/nl.po index c02eafe6..ff528ae8 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-08-23 16:15+0000\n" +"PO-Revision-Date: 2022-08-30 21:21+0000\n" "Last-Translator: Philip Goto \n" -"Language-Team: Dutch \n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" #: applications.ui:5 msgid "Applications" @@ -37,7 +37,7 @@ msgstr "" #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Ondoorzichtigheid" #: applications.ui:29 msgid "" @@ -47,7 +47,7 @@ msgstr "" #: applications.ui:50 msgid "Blur on overview" -msgstr "" +msgstr "Vervaging in overzicht" #: applications.ui:51 msgid "" @@ -261,11 +261,11 @@ msgstr "Voorkeuren opnieuw instellen" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "Herstelt voorkeuren van Blur my Shell onomkeerbaar." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Resetten" #: general.ui:228 msgid "High performances" @@ -281,7 +281,7 @@ msgstr "Hoge kwaliteit" #: general.ui:231 msgid "No artefact" -msgstr "" +msgstr "Geen artefact" #: menu.ui:6 msgid "Project page" From e6d37e1054e0210f3e6a2a32b4c881f680256101 Mon Sep 17 00:00:00 2001 From: Park Seonu Date: Sun, 28 Aug 2022 10:41:16 +0000 Subject: [PATCH 028/212] Translated using Weblate (Korean) Currently translated at 46.7% (43 of 92 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ko/ --- po/ko.po | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/po/ko.po b/po/ko.po index 3f7f291a..cd8d5af0 100644 --- a/po/ko.po +++ b/po/ko.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-08-28 10:33+0000\n" +"PO-Revision-Date: 2022-08-30 21:21+0000\n" "Last-Translator: Park Seonu \n" "Language-Team: Korean \n" @@ -202,29 +202,30 @@ msgstr "블러 환경 설정" #: general.ui:11 msgid "Global blur preferences, used by all components by default." -msgstr "" +msgstr "글로벌 블러 환경설정, 모든 컴포넌트에서 기본값으로 사용됩니다." #: general.ui:117 msgid "Performances" -msgstr "" +msgstr "성능" #: general.ui:118 msgid "Various options to tweak the performances." -msgstr "" +msgstr "성능을 조정하는 다양한 옵션들." #: general.ui:122 msgid "Color and noise effects" -msgstr "" +msgstr "색상과 노이즈 효과" #: general.ui:123 msgid "" "Permits to disable globally the use of noise and color effects, this may " "improve performances for low-end graphic." -msgstr "" +msgstr "노이즈 및 색상 효과의 사용을 전역적으로 비활성화할 수 있습니다. 이는 저사양 " +"그래픽 환경에서의 성능을 향상시킬 수 있습니다." #: general.ui:135 msgid "Hack level" -msgstr "" +msgstr "성능 수준" #: general.ui:136 msgid "" From ba4f7f12c776d724c9ff3b3640dcac95bb3afa15 Mon Sep 17 00:00:00 2001 From: yangyangdaji <1504305527@qq.com> Date: Thu, 1 Sep 2022 01:00:08 +0000 Subject: [PATCH 029/212] Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (92 of 92 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/zh_Hans/ --- po/zh_Hans.po | 31 ++++++++++++++++++++++--------- 1 file changed, 22 insertions(+), 9 deletions(-) diff --git a/po/zh_Hans.po b/po/zh_Hans.po index fe988141..317aaffc 100644 --- a/po/zh_Hans.po +++ b/po/zh_Hans.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-08-23 16:15+0000\n" +"PO-Revision-Date: 2022-09-02 01:23+0000\n" "Last-Translator: yangyangdaji <1504305527@qq.com>\n" "Language-Team: Chinese (Simplified) \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.14-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" #: applications.ui:5 msgid "Applications" @@ -34,26 +34,31 @@ msgid "" "in the “General → Hack level” preference.\n" " " msgstr "" +"为应用程序添加模糊。这仍然是一个测试版功能。\n" +"为了获得可能的最佳结果,请确保在“常规→黑客级别”首选项中选择“无伪影”选项。\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "不透明度" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." -msgstr "" +msgstr "窗口的不透明度放在模糊效果之上,值越高越清晰。" #: applications.ui:50 msgid "Blur on overview" -msgstr "" +msgstr "概述上的模糊" #: applications.ui:51 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"强制模糊在概览的所有工作区上正确显示。\n" +"这可能会导致一些延迟或性能问题。" #: applications.ui:66 msgid "Enable all by default" @@ -64,6 +69,8 @@ msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"默认情况下,在所有窗口后面添加模糊。\n" +"由于性能和稳定性问题,不建议这样做。" #: applications.ui:84 msgid "Whitelist" @@ -222,6 +229,10 @@ msgid "" "This option will entirely disable clipped redraws from GNOME shell, and may " "impact performances significantly but will entirely fix the blur effect." msgstr "" +"更改动态模糊效果的行为。\n" +"非常推荐使用默认值,除非您使用应用程序模糊,在这种情况下,“无伪影”更好。\n" +"此选项将完全禁用从 GNOME shell " +"剪切的重绘,并且可能会显著影响性能,但会完全修复模糊效果。" #: general.ui:151 msgid "Debug" @@ -239,11 +250,11 @@ msgstr "重置首选项" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "不可逆转地重置 Blur my Shell 的首选项。" #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "重置" #: general.ui:228 msgid "High performances" @@ -259,7 +270,7 @@ msgstr "高品质" #: general.ui:231 msgid "No artefact" -msgstr "" +msgstr "无伪影" #: menu.ui:6 msgid "Project page" @@ -384,6 +395,8 @@ msgid "" "Override the background of the panel to use a transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"覆盖面板的背景以使用透明面板。\n" +"建议使用,除非你想自定义 GNOME 主题。" #: panel.ui:64 msgid "Disable when a window is near" @@ -391,7 +404,7 @@ msgstr "当窗口接近时禁用" #: panel.ui:65 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "当窗口靠近面板时禁用面板的透明度。" #: panel.ui:82 msgid "Compatibility" From 7cb567de4895d8bbc357a56acd373f2705f0a3c9 Mon Sep 17 00:00:00 2001 From: vikdevelop Date: Wed, 31 Aug 2022 09:07:17 +0000 Subject: [PATCH 030/212] Translated using Weblate (Czech) Currently translated at 100.0% (92 of 92 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/cs/ --- po/cs.po | 55 ++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 36 insertions(+), 19 deletions(-) diff --git a/po/cs.po b/po/cs.po index 95d1e6c7..4d5177d1 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-07-26 16:23+0000\n" +"PO-Revision-Date: 2022-09-02 01:23+0000\n" "Last-Translator: vikdevelop \n" -"Language-Team: Czech \n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.14-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" #: applications.ui:5 msgid "Applications" @@ -34,36 +34,46 @@ msgid "" "in the “General → Hack level” preference.\n" " " msgstr "" +"Přidejte do aplikací rozostření. Jedná se stále beta funkci.\n" +"Chcete-li získat co nejlepší výsledky, vyberte možnost „Žádný artefakt“ v " +"předvolbě „Obecné → Úroveň hackování“.\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Neprůhlednost" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"Neprůhlednost okna v horní části efektu rozmazání, vyšší hodnota bude " +"čitelnější." #: applications.ui:50 msgid "Blur on overview" -msgstr "" +msgstr "Rozostření v přehledu" #: applications.ui:51 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Vynutí správné zobrazení rozmazání na všech pracovních plochách v přehledu.\n" +"To může způsobit určité zpoždění nebo problémy s výkonem." #: applications.ui:66 msgid "Enable all by default" -msgstr "" +msgstr "Ve výchozím nastavení povolit vše" #: applications.ui:67 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Ve výchozím nastavení přidá rozmazání za všechna okna.\n" +"Nedoporučuje se kvůli problémům s výkonem a stabilitou." #: applications.ui:84 msgid "Whitelist" @@ -71,19 +81,19 @@ msgstr "Seznam povolených" #: applications.ui:85 msgid "A list of windows to blur." -msgstr "" +msgstr "Seznam oken k rozmazání." #: applications.ui:103 applications.ui:140 msgid "Add Window" -msgstr "" +msgstr "Přidat okno" #: applications.ui:121 msgid "Blacklist" -msgstr "" +msgstr "Černá listina" #: applications.ui:122 msgid "A list of windows not to blur." -msgstr "" +msgstr "Seznam oken, která se nemají rozmazávat." #: customize-row.ui:4 msgid "Customize properties" @@ -237,6 +247,11 @@ msgid "" "This option will entirely disable clipped redraws from GNOME shell, and may " "impact performances significantly but will entirely fix the blur effect." msgstr "" +"Změní chování efektu dynamického rozostření.\n" +"Výchozí hodnota je velmi doporučená, pokud nepoužíváte aplikační rozostření, " +"v takovém případě je lepší \"Bez artefaktu\".\n" +"Tato volba zcela zakáže oříznuté překreslování ze shellu GNOME a může mít " +"značný dopad na výkon, ale zcela opraví efekt rozmazání." #: general.ui:151 msgid "Debug" @@ -252,15 +267,15 @@ msgstr "" #: general.ui:167 msgid "Reset preferences" -msgstr "" +msgstr "Resetovat předvolby" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "Nevratně resetuje předvolby funkce Blur my Shell." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Resetovat" #: general.ui:228 msgid "High performances" @@ -276,7 +291,7 @@ msgstr "Vysoká kvalita" #: general.ui:231 msgid "No artefact" -msgstr "" +msgstr "Žádný artefakt" #: menu.ui:6 msgid "Project page" @@ -406,6 +421,8 @@ msgid "" "Override the background of the panel to use a transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Přepište pozadí panelu na průhledné.\n" +"Doporučujeme, pokud si nechcete přizpůsobit téma GNOME." #: panel.ui:64 msgid "Disable when a window is near" @@ -413,7 +430,7 @@ msgstr "Zakázat, když je okno v blízkosti" #: panel.ui:65 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "Zakáže průhlednost panelu, pokud se v jeho blízkosti nachází okno." #: panel.ui:82 msgid "Compatibility" @@ -434,15 +451,15 @@ msgstr "" #: window-row.ui:4 msgid "Window Name" -msgstr "" +msgstr "Název okna" #: window-row.ui:8 msgid "Select window" -msgstr "" +msgstr "Vybrat okno" #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" +msgstr "Vyberte okno nebo jej vyberte podle názvu třídy." #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality, is " From 16806d874b49ec0594d5079094a3ce0e21cb9d67 Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Sat, 3 Sep 2022 16:38:25 +0000 Subject: [PATCH 031/212] Translated using Weblate (Tamil) Currently translated at 100.0% (92 of 92 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ta/ --- po/ta.po | 40 ++++++++++++++++++++++++++++++---------- 1 file changed, 30 insertions(+), 10 deletions(-) diff --git a/po/ta.po b/po/ta.po index ccf59a6f..13cb7ce9 100644 --- a/po/ta.po +++ b/po/ta.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-08-23 16:15+0000\n" +"PO-Revision-Date: 2022-09-04 17:21+0000\n" "Last-Translator: K.B.Dharun Krishna \n" -"Language-Team: Tamil \n" +"Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" #: applications.ui:5 msgid "Applications" @@ -34,26 +34,35 @@ msgid "" "in the “General → Hack level” preference.\n" " " msgstr "" +"பயன்பாடுகளில் மங்கலைச் சேர்க்கவும். இது இன்னும் பீட்டா செயல்பாடுதான்.\n" +"சாத்தியமான சிறந்த முடிவுகளைப் பெற, \"பொது → ஹேக் லெவல்\" விருப்பத்தேர்வில் " +"\"கலைப்பொருள் இல்லை\" என்ற விருப்பத்தைத் தேர்ந்தெடுக்கவும்.\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "ஒளிபுகாநிலை" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"மங்கலான விளைவின் மேல் உள்ள சாளரத்தின் ஒளிபுகாநிலை, அதிக மதிப்பு இன்னும் " +"தெளிவாகத் தெரியும்." #: applications.ui:50 msgid "Blur on overview" -msgstr "" +msgstr "மேலோட்டப் பார்வையில் மங்கலாக்கு" #: applications.ui:51 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"மேலோட்டத்தில் அனைத்து பணியிடங்களிலும் மங்கலானது சரியாகக் காட்டப்பட வேண்டும்." +"\n" +"இது சில தாமதம் அல்லது செயல்திறன் சிக்கல்களை ஏற்படுத்தலாம்." #: applications.ui:66 msgid "Enable all by default" @@ -64,6 +73,9 @@ msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"முன்னிருப்பாக எல்லா சாளரங்களுக்கும் பின்னால் மங்கலைச் சேர்க்கிறது.\n" +"செயல்திறன் மற்றும் நிலைப்புத்தன்மை பிரச்சனைகள் காரணமாக " +"பரிந்துரைக்கப்படவில்லை." #: applications.ui:84 msgid "Whitelist" @@ -233,6 +245,12 @@ msgid "" "This option will entirely disable clipped redraws from GNOME shell, and may " "impact performances significantly but will entirely fix the blur effect." msgstr "" +"டைனமிக் மங்கலான விளைவின் நடத்தையை மாற்றுகிறது.\n" +"இயல்புநிலை மதிப்பு மிகவும் பரிந்துரைக்கப்படுகிறது, நீங்கள் பயன்பாட்டு " +"மங்கலைப் பயன்படுத்தாவிட்டால், \"கலைப்பொருள் இல்லை\" சிறந்தது.\n" +"இந்த விருப்பம் க்னோம் ஷெல்லில் இருந்து க்ளிப் செய்யப்பட்ட மறு வரைவுகளை " +"முழுவதுமாக முடக்கும், மேலும் செயல்திறனை கணிசமாக பாதிக்கலாம் ஆனால் மங்கலான " +"விளைவை முழுவதுமாக சரிசெய்யும்." #: general.ui:151 msgid "Debug" @@ -252,11 +270,11 @@ msgstr "விருப்பங்களை மீட்டமைக்கவ #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "மங்கலான எனது ஷெல்லின் விருப்பங்களை மீளமுடியாமல் மீட்டமைக்கிறது." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "மீட்டமைக்கவும்" #: general.ui:228 msgid "High performances" @@ -272,7 +290,7 @@ msgstr "உயர் தரம்" #: general.ui:231 msgid "No artefact" -msgstr "" +msgstr "கலைப்பொருள் இல்லை" #: menu.ui:6 msgid "Project page" @@ -399,6 +417,8 @@ msgid "" "Override the background of the panel to use a transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"வெளிப்படையான ஒன்றைப் பயன்படுத்த பேனலின் பின்னணியை மேலெழுதவும்.\n" +"உங்கள் க்னோம் தீம் தனிப்பயனாக்க விரும்பினால் தவிர பரிந்துரைக்கப்படுகிறது." #: panel.ui:64 msgid "Disable when a window is near" @@ -406,7 +426,7 @@ msgstr "ஒரு சாளரம் அருகில் இருக்கு #: panel.ui:65 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "சாளரம் அருகில் இருக்கும்போது பேனலின் வெளிப்படைத்தன்மையை முடக்குகிறது." #: panel.ui:82 msgid "Compatibility" From d609ac324b2f5c54ff8d42ef68aa3effe9ee4fac Mon Sep 17 00:00:00 2001 From: Philip Goto Date: Tue, 6 Sep 2022 20:31:33 +0000 Subject: [PATCH 032/212] Translated using Weblate (Dutch) Currently translated at 100.0% (92 of 92 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/nl/ --- po/nl.po | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/po/nl.po b/po/nl.po index ff528ae8..64a420b1 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-08-30 21:21+0000\n" +"PO-Revision-Date: 2022-09-07 21:22+0000\n" "Last-Translator: Philip Goto \n" "Language-Team: Dutch \n" @@ -34,6 +34,10 @@ msgid "" "in the “General → Hack level” preference.\n" " " msgstr "" +"Voegt vervanging toe aan toepassingen. Dit is nog bèta-functionaliteit.\n" +"Zorg ervoor dat ‘Algemeen’ → ‘Hack-niveau’ is ingesteld op ‘Geen artefacten’ " +"voor de beste resultaten.\n" +" " #: applications.ui:28 msgid "Opacity" @@ -44,6 +48,8 @@ msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"De ondoorzichtigheid van het venster boven het vervagingseffect. Een hogere " +"waarde zal vensters beter leesbaar maken." #: applications.ui:50 msgid "Blur on overview" @@ -54,6 +60,9 @@ msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Forceert dat de vervaging correct wordt weergegeven op alle werkbladen in " +"het overzicht. \n" +"Dit kan vertraging of prestatieproblemen veroorzaken." #: applications.ui:66 msgid "Enable all by default" @@ -64,6 +73,8 @@ msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Voegt standaard vervaging achter alle vensters toe.\n" +"Niet aanbevolen vanwege prestatie- of stabiliteitsproblemen." #: applications.ui:84 msgid "Whitelist" @@ -242,6 +253,12 @@ msgid "" "This option will entirely disable clipped redraws from GNOME shell, and may " "impact performances significantly but will entirely fix the blur effect." msgstr "" +"Past het gedrag van het dynamische vervagingseffect aan.\n" +"Standaardwaarde wordt zeer aanbevolen, tenzij u gebruik maakt van " +"toepassingsvervaging. In dit geval is ‘Geen artefacten’ beter.\n" +"Deze optie zal gedeeltelijke schermupdates volledig uitschakelen. Dit zal de " +"prestaties aanzienlijk verslechteren, maar zorgt er ook voor dat het " +"vervagingseffect perfect werkt." #: general.ui:151 msgid "Debug" @@ -415,6 +432,8 @@ msgid "" "Override the background of the panel to use a transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Vervangt de paneelachtergrond met een doorzichtige versie.\n" +"Aanbevolen tenzij u uw GNOME-thema wilt personaliseren." #: panel.ui:64 msgid "Disable when a window is near" @@ -423,6 +442,8 @@ msgstr "Uitschakelen wanneer een venster dichtbij is" #: panel.ui:65 msgid "Disables the transparency of the panel when a window is near it." msgstr "" +"Schakelt de doorzichtigheid van het paneel uit wanneer een venster in de " +"buurt komt." #: panel.ui:82 msgid "Compatibility" From 74fed0524fbe25dd511cc2bf9b1310bf86a50be6 Mon Sep 17 00:00:00 2001 From: saulo marcos Date: Sat, 10 Sep 2022 01:07:32 +0000 Subject: [PATCH 033/212] Translated using Weblate (Portuguese) Currently translated at 88.5% (85 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pt/ --- po/pt.po | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/po/pt.po b/po/pt.po index d2e15194..2d377baf 100644 --- a/po/pt.po +++ b/po/pt.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2022-09-11 01:21+0000\n" +"Last-Translator: saulo marcos \n" +"Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.14.1-dev\n" #: applications.ui:5 msgid "Applications" @@ -34,7 +37,7 @@ msgstr "" #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Opacidade" #: applications.ui:29 msgid "" From 0cc7220a0d3542b188243acb818d322000cecbec Mon Sep 17 00:00:00 2001 From: waddle5 Date: Mon, 12 Sep 2022 07:28:45 +0000 Subject: [PATCH 034/212] Translated using Weblate (German) Currently translated at 100.0% (92 of 92 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 50 ++++++++++++++++++++++++++++++++++---------------- 1 file changed, 34 insertions(+), 16 deletions(-) diff --git a/po/de.po b/po/de.po index df0d7913..58166782 100644 --- a/po/de.po +++ b/po/de.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-08-23 16:15+0000\n" -"Last-Translator: Leonhard \n" +"PO-Revision-Date: 2022-09-13 08:18+0000\n" +"Last-Translator: waddle5 \n" "Language-Team: German \n" "Language: de\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" #: applications.ui:5 msgid "Applications" @@ -34,29 +34,38 @@ msgid "" "in the “General → Hack level” preference.\n" " " msgstr "" +"Füge Unschärfe zu den Anwendungen hinzu. Dies ist noch eine beta Funktion.\n" +"Um das bestmögliche Ergebnis zu bekommen, stellen Sie sicher, dass Sie die " +"Option \"Keine Artefakte\" in der Einstellung \"Allgemein -> Hack-Level\" " +"ausgewählt haben.\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Deckkraft" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"Die Deckkraft des Fensters über dem Unschärfeeffekt, ein höherer Wert wird " +"besser lesbar sein." #: applications.ui:50 msgid "Blur on overview" -msgstr "" +msgstr "Unschärfe in der Übersicht" #: applications.ui:51 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Zwingt die Unschärfe in allen Arbeitsbereichen in der Übersicht richtig " +"angezeigt zu werden.\n" +"Das kann zu Latenz- oder Leistungsproblemen führen." #: applications.ui:66 -#, fuzzy msgid "Enable all by default" msgstr "Standardmäßig alle aktivieren" @@ -65,29 +74,28 @@ msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Fügt standardmäßig Unschärfe hinter allen Fenstern hinzu.\n" +"Wegen Leistungs- und Stabilitätsproblemen nicht empfohlen." #: applications.ui:84 msgid "Whitelist" msgstr "Whitelist" #: applications.ui:85 -#, fuzzy msgid "A list of windows to blur." -msgstr "Eine Liste unscharf zu machender Fenster." +msgstr "Eine Liste der mit dem Unschärfeeffekt zu versehenden Fenster." #: applications.ui:103 applications.ui:140 msgid "Add Window" msgstr "Fenster hinzufügen" #: applications.ui:121 -#, fuzzy msgid "Blacklist" msgstr "Blacklist" #: applications.ui:122 -#, fuzzy msgid "A list of windows not to blur." -msgstr "Eine Liste nicht unscharf zu machender Fenster." +msgstr "Eine Liste der nicht mit dem Unschärfeeffekt zu versehenden Fenster." #: customize-row.ui:4 msgid "Customize properties" @@ -181,7 +189,7 @@ msgstr "" #: dash.ui:26 panel.ui:56 msgid "Override background" -msgstr "Überschreiben des Hintergrunds" +msgstr "Hintergrund überschreiben" #: dash.ui:27 msgid "" @@ -247,6 +255,12 @@ msgid "" "This option will entirely disable clipped redraws from GNOME shell, and may " "impact performances significantly but will entirely fix the blur effect." msgstr "" +"Verändert das Verhalten des dynamischen Unschärfeeffekts.\n" +"Der Standardwert wird dringend empfohlen, außer es wird Anwendungsunschärfe " +"verwendet, in diesem Fall ist \"Keine Artefakte\" die bessere Wahl.\n" +"Mit dieser Option wird die Funktion \"clipped redraws\" der GNOME Shell " +"deaktiviert und sie kann die Leistung erheblich beeinflussen, sie wird aber " +"den Unschärffeeffekt vollständig beheben." #: general.ui:151 msgid "Debug" @@ -266,11 +280,11 @@ msgstr "Einstellungen zurücksetzen" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "Setzt die Einstellungen von Blur my Shell unwiederbringlich zurück." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Zurücksetzen" #: general.ui:228 msgid "High performances" @@ -286,7 +300,7 @@ msgstr "Hohe Qualität" #: general.ui:231 msgid "No artefact" -msgstr "" +msgstr "Keine Artefakte" #: menu.ui:6 msgid "Project page" @@ -420,6 +434,8 @@ msgid "" "Override the background of the panel to use a transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Überschreibe den Hintergrund des Panels, um einen durchsichtigen zu nutzen.\n" +"Empfohlen außer Sie wollen Ihr GNOME-Theme anpassen." #: panel.ui:64 msgid "Disable when a window is near" @@ -428,6 +444,8 @@ msgstr "Deaktiviert wenn ein Fenster in der Nähe ist" #: panel.ui:65 msgid "Disables the transparency of the panel when a window is near it." msgstr "" +"Deaktiviert die Transparenz des Panels, wenn sich ein Fenster in der Nähe " +"befindet." #: panel.ui:82 msgid "Compatibility" @@ -459,7 +477,7 @@ msgstr "Fenster auswählen" #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" +msgstr "Wähle ein Fenster aus oder wähle es über seinen Klassennamen." #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality, is " From 8ff7fc671a5d487c1c37be08133782322c2a8db6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Victor=20Dias=20Rodrigues?= Date: Sun, 18 Sep 2022 04:40:13 +0000 Subject: [PATCH 035/212] Translated using Weblate (Portuguese) Currently translated at 90.6% (87 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pt/ --- po/pt.po | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/po/pt.po b/po/pt.po index 2d377baf..63fb6639 100644 --- a/po/pt.po +++ b/po/pt.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-09-11 01:21+0000\n" -"Last-Translator: saulo marcos \n" +"PO-Revision-Date: 2022-09-18 04:40+0000\n" +"Last-Translator: José Victor Dias Rodrigues \n" "Language-Team: Portuguese \n" "Language: pt\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.14.1-dev\n" +"X-Generator: Weblate 4.14.1\n" #: applications.ui:5 msgid "Applications" @@ -34,6 +34,10 @@ msgid "" "in the “General → Hack level” preference.\n" " " msgstr "" +"Aplique desfoque em aplicativos. Esta função ainda esta em beta.\n" +"Para conseguir os melhores resultados possíveis, tenha certeza de escolher a " +"opção \"Sem artefatos\" na configuração em \"Geral → Hack level\"\n" +" " #: applications.ui:28 msgid "Opacity" @@ -44,6 +48,8 @@ msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"A opacidade da janela em cima do efeito de desfoque, um valor mais alto terá " +"melhor leitura." #: applications.ui:50 msgid "Blur on overview" From 57e7d23d0170a2d5f6cda3d6fc57d8c569fd9daf Mon Sep 17 00:00:00 2001 From: saulo marcos Date: Sun, 18 Sep 2022 04:40:39 +0000 Subject: [PATCH 036/212] Translated using Weblate (Portuguese) Currently translated at 90.6% (87 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pt/ --- po/pt.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/pt.po b/po/pt.po index 63fb6639..c2aa08d6 100644 --- a/po/pt.po +++ b/po/pt.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-09-18 04:40+0000\n" -"Last-Translator: José Victor Dias Rodrigues \n" +"PO-Revision-Date: 2022-09-18 04:41+0000\n" +"Last-Translator: saulo marcos \n" "Language-Team: Portuguese \n" "Language: pt\n" @@ -48,8 +48,8 @@ msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" -"A opacidade da janela em cima do efeito de desfoque, um valor mais alto terá " -"melhor leitura." +"A opacidade da janela em cima do efeito de desfoque com um valor maior " +"ficará mais legível" #: applications.ui:50 msgid "Blur on overview" From 36858964dc208a71e6f5c98c3ea6440529c5a432 Mon Sep 17 00:00:00 2001 From: Arun Date: Mon, 19 Sep 2022 03:56:24 +0000 Subject: [PATCH 037/212] Translated using Weblate (Tamil) Currently translated at 100.0% (92 of 92 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ta/ --- po/ta.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/ta.po b/po/ta.po index 13cb7ce9..09b32488 100644 --- a/po/ta.po +++ b/po/ta.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-09-04 17:21+0000\n" -"Last-Translator: K.B.Dharun Krishna \n" +"PO-Revision-Date: 2022-09-19 04:15+0000\n" +"Last-Translator: Arun \n" "Language-Team: Tamil \n" "Language: ta\n" @@ -17,11 +17,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1-dev\n" +"X-Generator: Weblate 4.14.1\n" #: applications.ui:5 msgid "Applications" -msgstr "விண்ணப்பங்கள்" +msgstr "பயன்பாடுகள்" #: applications.ui:10 msgid "Applications blur (beta)" From c4c1c8035fbb6c546e94950f6a5a3a9f144870a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Victor=20Dias=20Rodrigues?= Date: Sun, 18 Sep 2022 04:44:43 +0000 Subject: [PATCH 038/212] Translated using Weblate (Portuguese) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pt/ --- po/pt.po | 31 ++++++++++++++++++++++--------- 1 file changed, 22 insertions(+), 9 deletions(-) diff --git a/po/pt.po b/po/pt.po index c2aa08d6..b2bed1fd 100644 --- a/po/pt.po +++ b/po/pt.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-09-18 04:41+0000\n" -"Last-Translator: saulo marcos \n" +"PO-Revision-Date: 2022-09-19 04:15+0000\n" +"Last-Translator: José Victor Dias Rodrigues \n" "Language-Team: Portuguese \n" "Language: pt\n" @@ -48,18 +48,21 @@ msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" -"A opacidade da janela em cima do efeito de desfoque com um valor maior " -"ficará mais legível" +"A opacidade da janela em cima do efeito de desfoque, com um valor maior " +"ficará mais legível." #: applications.ui:50 msgid "Blur on overview" -msgstr "" +msgstr "Desfoque no panorama de atividades" #: applications.ui:51 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Força o desfoque a ser mostrado corretamente em todos os espaços de " +"trabalhos no panorama de atividade.\n" +"Isso pode causar latência ou problemas de performance." #: applications.ui:26 msgid "Enable all by default" @@ -70,6 +73,8 @@ msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Adiciona desfoque atrás de todas as janelas por padrão.\n" +"Não é recomendado por causa de problemas com performance e estabilidade." #: applications.ui:43 msgid "Whitelist" @@ -244,6 +249,12 @@ msgid "" "This option will entirely disable clipped redraws from GNOME shell, and may " "impact performances significantly but will entirely fix the blur effect." msgstr "" +"Muda o comportamento do desfoque dinâmico.\n" +"O valor padrão é altamente recomendado, a menos que você use o desfoque de " +"aplicativo que no caso \"Sem artefatos\" é melhor.\n" +"Essa opção vai completamente desativar o redesenho pelo shell do GNOME, e " +"isso pode ter impactos significativos na performance mas vai concertar o " +"problema com o efeito de desfoque." #: general.ui:149 msgid "Debug" @@ -263,11 +274,11 @@ msgstr "Redefinir preferências" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "Redefina as preferências do \"Blur my Shell\" irreversivelmente." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Redefinir" #: general.ui:189 msgid "High performances" @@ -283,7 +294,7 @@ msgstr "Alta qualidade" #: general.ui:231 msgid "No artefact" -msgstr "" +msgstr "Sem artefato" #: menu.ui:12 msgid "Project page" @@ -417,6 +428,8 @@ msgid "" "Override the background of the panel to use a transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Sobrescreva o plano de fundo do painel para usar um painel transparente.\n" +"Recomendado a menos que você queira customizar o seu tema do GNOME." #: panel.ui:56 msgid "Disable when a window is near" @@ -424,7 +437,7 @@ msgstr "Desativar quando uma janela estiver próxima" #: panel.ui:65 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "Desativa a transparência quando uma janela esta perto do painel." #: panel.ui:73 msgid "Compatibility" From 77be4360d353a25e38286817ca48a99fabe868fe Mon Sep 17 00:00:00 2001 From: Karol Lademan Date: Wed, 21 Sep 2022 09:11:58 +0000 Subject: [PATCH 039/212] Translated using Weblate (Polish) Currently translated at 100.0% (92 of 92 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pl/ --- po/pl.po | 58 +++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 38 insertions(+), 20 deletions(-) diff --git a/po/pl.po b/po/pl.po index 71d1b5d5..8d4552d7 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-27 21:07+0200\n" -"PO-Revision-Date: 2022-05-29 12:18+0000\n" -"Last-Translator: Rali Boińskx \n" +"PO-Revision-Date: 2022-09-22 10:19+0000\n" +"Last-Translator: Karol Lademan \n" "Language-Team: Polish \n" "Language: pl\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.13-dev\n" +"X-Generator: Weblate 4.14.1\n" #: applications.ui:5 msgid "Applications" @@ -35,36 +35,47 @@ msgid "" "in the “General → Hack level” preference.\n" " " msgstr "" +"Dodaj rozmycie tła do aplikacji. To wciąż testowa funkcjonalność.\n" +"Aby otrzymać najlepsze możliwe efekty, upewij się, że wybrano opcje \"Zero " +"artefaktów\" w ustawieniach \"Główne -> Poziom hakowania\"\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Nieprzeźroczystość" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"Nieprzeźroczystość okna, na które dodano rozmycie, większa wartość będzie " +"bardziej czytelna." #: applications.ui:50 msgid "Blur on overview" -msgstr "" +msgstr "Rozmycie widoku podglądu" #: applications.ui:51 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Wymusza poprawne wyświetlanie rozmycia na wszystkich obszarach roboczych " +"podglądu.\n" +"Może powodować problemy z opóźnieniem lub wydajnością." #: applications.ui:66 msgid "Enable all by default" -msgstr "" +msgstr "Włącz domyślnie" #: applications.ui:67 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Dodaje domślnie rozmycie za wszystkimi oknami.\n" +"Niepolecane z powodu na problemy z wydajnością i stabilnością." #: applications.ui:84 msgid "Whitelist" @@ -72,19 +83,19 @@ msgstr "Biała lista" #: applications.ui:85 msgid "A list of windows to blur." -msgstr "" +msgstr "Lista okien do rozmycia." #: applications.ui:103 applications.ui:140 msgid "Add Window" -msgstr "" +msgstr "Dodaj okno" #: applications.ui:121 msgid "Blacklist" -msgstr "" +msgstr "Czarna lista" #: applications.ui:122 msgid "A list of windows not to blur." -msgstr "" +msgstr "Lista okien bez rozmycia." #: customize-row.ui:4 msgid "Customize properties" @@ -230,7 +241,7 @@ msgstr "" #: general.ui:135 msgid "Hack level" -msgstr "Poziom wykombinowania" +msgstr "Poziom hakowania" #: general.ui:136 msgid "" @@ -240,6 +251,11 @@ msgid "" "This option will entirely disable clipped redraws from GNOME shell, and may " "impact performances significantly but will entirely fix the blur effect." msgstr "" +"Zmienia zachowanie efektu dynamicznego rozmycia.\n" +"Wartość domyślna jest bardzo zalecana, chyba że używasz rozmycia aplikacji, " +"w którym to przypadku lepsza jest opcja \"Zero artefaktów\".\n" +"Ta opcja całkowicie wyłączy przycięte przerysowania z powłoki GNOME, co może " +"znacząco wpłynąć na wydajność, ale całkowicie naprawi efekt rozmycia." #: general.ui:151 msgid "Debug" @@ -255,15 +271,15 @@ msgstr "" #: general.ui:167 msgid "Reset preferences" -msgstr "" +msgstr "Zresetuj ustawienia" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "Resetuje ustawienia Blur my Shell bezpowrotnie." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Resetuj" #: general.ui:228 msgid "High performances" @@ -279,7 +295,7 @@ msgstr "Wysoka jakość" #: general.ui:231 msgid "No artefact" -msgstr "" +msgstr "Zero artefaktów" #: menu.ui:6 msgid "Project page" @@ -410,14 +426,16 @@ msgid "" "Override the background of the panel to use a transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Zastąp tło panelu, aby użyć przezroczystego.\n" +"Zalecane, chyba że chcesz dostosować swój motyw GNOME." #: panel.ui:64 msgid "Disable when a window is near" -msgstr "" +msgstr "Wyłącz, gdy okno znajduje się w pobliżu" #: panel.ui:65 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "Wyłącza przezroczystość panelu, gdy w jego pobliżu znajduje się okno." #: panel.ui:82 msgid "Compatibility" @@ -439,15 +457,15 @@ msgstr "" #: window-row.ui:4 msgid "Window Name" -msgstr "" +msgstr "Nazwa okna" #: window-row.ui:8 msgid "Select window" -msgstr "" +msgstr "Wybierz okno" #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" +msgstr "Wybierz okno lub zaznacz je po nazwie klasy." #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality, is " From f90b6c9f54a7f300e48ebd958fc48d6e75e0b105 Mon Sep 17 00:00:00 2001 From: Marcelo Vilas Boas Correa Filho <51462138+marcelovbcfilho@users.noreply.github.com> Date: Thu, 22 Sep 2022 09:30:49 -0300 Subject: [PATCH 040/212] Update shell versions to support Gnome 43 --- metadata.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/metadata.json b/metadata.json index 86111c99..f237a493 100644 --- a/metadata.json +++ b/metadata.json @@ -2,7 +2,8 @@ "description": "Adds a blur look to different parts of the GNOME Shell, including the top panel, dash and overview.\n\nYou can support my work by sponsoring me on:\n- github: https://github.com/sponsors/aunetx\n- ko-fi: https://ko-fi.com/aunetx\n\nNote: if the extension shows an error after updating, please make sure to restart your session to see if it persists. This is due to a bug in gnome shell, which I can't fix by myself.", "name": "Blur my Shell", "shell-version": [ - "42" + "42", + "43" ], "url": "https://github.com/aunetx/gnome-shell-extension-blur-my-shell", "uuid": "blur-my-shell@aunetx", @@ -11,4 +12,4 @@ "me@aunetx.dev" ], "version": 43 -} \ No newline at end of file +} From 1e7948ed7abf41c11a4942cfe2cebdc114b2c9c6 Mon Sep 17 00:00:00 2001 From: dgmarie <0001dgmarie@gmail.com> Date: Sat, 17 Sep 2022 20:16:33 -0400 Subject: [PATCH 041/212] Allow switching between light and dark style for app folder dialog More consistenty with the other overview components --- resources/ui/overview.ui | 26 +- ...shell.extensions.blur-my-shell.gschema.xml | 8 +- src/components/appfolders.js | 34 +- src/conveniences/keys.js | 2 +- src/extension.js | 7 +- src/preferences/overview.js | 4 +- src/stylesheet.css | 434 +----------------- 7 files changed, 69 insertions(+), 446 deletions(-) diff --git a/resources/ui/overview.ui b/resources/ui/overview.ui index 8345ea58..9d62a446 100644 --- a/resources/ui/overview.ui +++ b/resources/ui/overview.ui @@ -57,21 +57,15 @@ - Dialog opacity - The opacity of the applications folder popup. - appfolder_dialog_opacity_scale + Applications folder dialogs style + The semi-transparent style for the applications folder dialogs. + appfolder_style_dialogs - + center - true - 200px - true - right - horizontal - 2 - appfolder_dialog_opacity + appfolder_style_dialogs_model @@ -88,9 +82,11 @@ - - 0.0 - 1.0 - 0.01 + + + Do not style + Light + Dark + \ No newline at end of file diff --git a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml index c56f1dbb..3cdb06c7 100644 --- a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml +++ b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml @@ -135,10 +135,10 @@ 0. Lightness of the noise added to the blur effect - - - 0.0 - Opacity of the appfolder dialog to use + + + 1 + Enum to select the style of the appfolder dialogs (0 not styled, 1 light, 2 dark) diff --git a/src/components/appfolders.js b/src/components/appfolders.js index f271a87c..e8d207c9 100644 --- a/src/components/appfolders.js +++ b/src/components/appfolders.js @@ -170,13 +170,25 @@ var AppFoldersBlur = class AppFoldersBlur { icon._dialog.remove_effect_by_name("appfolder-blur"); icon._dialog.add_effect(blur_effect); - // change appfolder dialog opacity - - let opacity = 100 * this.prefs.appfolder.DIALOG_OPACITY; - - icon._dialog._viewBox.set_style_class_name( - `app-folder-dialog transparent-app-folder-dialogs-${opacity}` - ); + switch (this.prefs.appfolder.STYLE_DIALOGS) { + case 1: + this._log("set appfolder dialogs light classname"); + icon._dialog._viewBox.remove_style_class_name("appfolder-dialogs-dark"); + icon._dialog._viewBox.add_style_class_name("appfolder-dialogs-light"); + break; + + case 2: + this._log("set appfolder dialogs dark classname"); + icon._dialog._viewBox.remove_style_class_name("appfolder-dialogs-light"); + icon._dialog._viewBox.add_style_class_name("appfolder-dialogs-dark"); + break; + + default: + this._log("remove appfolder dialogs classname"); + icon._dialog._viewBox.remove_style_class_name("appfolder-dialogs-light"); + icon._dialog._viewBox.remove_style_class_name("appfolder-dialogs-dark"); + break; + } // finally override the builtin functions @@ -241,12 +253,10 @@ var AppFoldersBlur = class AppFoldersBlur { appDisplay._folderIcons.forEach(icon => { if (icon._dialog) { - let opacity = 100 * this.prefs.appfolder.DIALOG_OPACITY; - icon._dialog.remove_effect_by_name("appfolder-blur"); - icon._dialog._viewBox.remove_style_class_name( - `transparent-app-folder-dialogs-${opacity}` - ); + icon._dialog._viewBox.remove_style_class_name("blurred-appfolders"); + icon._dialog._viewBox.remove_style_class_name("bms-appfolder-dialogs-light"); + icon._dialog._viewBox.remove_style_class_name("bms-appfolder-dialogs-dark"); } }); diff --git a/src/conveniences/keys.js b/src/conveniences/keys.js index e474ded4..37b309c1 100644 --- a/src/conveniences/keys.js +++ b/src/conveniences/keys.js @@ -40,7 +40,7 @@ var Keys = [ { type: Type.C, name: "color" }, { type: Type.D, name: "noise-amount" }, { type: Type.D, name: "noise-lightness" }, - { type: Type.D, name: "dialog-opacity" }, + { type: Type.I, name: "style-dialogs" }, ] }, { diff --git a/src/extension.js b/src/extension.js index 1281e32d..80c9ddae 100644 --- a/src/extension.js +++ b/src/extension.js @@ -292,10 +292,11 @@ class Extension { } }); - // changed dialog opacity - this._prefs.appfolder.DIALOG_OPACITY_changed(() => { - if (this._prefs.appfolder.BLUR) + // appfolder dialogs style changed + this._prefs.appfolder.STYLE_DIALOGS_changed(() => { + if (this._prefs.appfolder.BLUR) { this._appfolder_blur.blur_appfolders(); + } }); diff --git a/src/preferences/overview.js b/src/preferences/overview.js index c2f751c7..f60b61e5 100644 --- a/src/preferences/overview.js +++ b/src/preferences/overview.js @@ -16,7 +16,7 @@ var Overview = GObject.registerClass({ 'appfolder_blur', 'appfolder_customize', - 'appfolder_dialog_opacity' + 'appfolder_style_dialogs' ], }, class Overview extends Adw.PreferencesPage { constructor(preferences) { @@ -40,7 +40,7 @@ var Overview = GObject.registerClass({ Gio.SettingsBindFlags.DEFAULT ); this.preferences.appfolder.settings.bind( - 'dialog-opacity', this._appfolder_dialog_opacity, 'value', + 'style-dialogs', this._appfolder_style_dialogs, 'selected', Gio.SettingsBindFlags.DEFAULT ); diff --git a/src/stylesheet.css b/src/stylesheet.css index ccee142a..67a0074f 100644 --- a/src/stylesheet.css +++ b/src/stylesheet.css @@ -56,6 +56,22 @@ background-color: rgba(200, 200, 200, 0.2); } +/* +* Style the appfolder dialogs with a light color when it has class +* `.appfolder-dialogs-light` +*/ + +.appfolder-dialogs-light { + background-color: rgba(200, 200, 200, 0.2); +} + +.appfolder-dialogs-light .folder-name-entry { + color: white; + background-color: rgba(200, 200, 200, 0.2); + border: 0; + box-shadow: none; +} + /* * Style the overview components with a dark color, when the UI group has class * `.bms-overview-components-dark` @@ -96,418 +112,18 @@ background-color: rgba(100, 100, 100, 0.35); } -/* ! Generated from now on */ - /* -* Generated styles for the app-folder dialogs background. -* -* python generator: -* -* for e in range(0,101):print(".transparent-app-folder-dialogs-"+str(e)+"\n{background-color:rgba(0,0,0,"+str(round(e/100,2))+");}") -* -* TODO change the preferences to simply have the choice [transparent|light|dark] +* Style the appfolder dialogs with a dark color when it has class +* `.appfolder-dialogs-dark` */ -.transparent-app-folder-dialogs-0 { - background-color: rgba(0, 0, 0, 0.0); -} - -.transparent-app-folder-dialogs-1 { - background-color: rgba(0, 0, 0, 0.01); -} - -.transparent-app-folder-dialogs-2 { - background-color: rgba(0, 0, 0, 0.02); -} - -.transparent-app-folder-dialogs-3 { - background-color: rgba(0, 0, 0, 0.03); -} - -.transparent-app-folder-dialogs-4 { - background-color: rgba(0, 0, 0, 0.04); -} - -.transparent-app-folder-dialogs-5 { - background-color: rgba(0, 0, 0, 0.05); -} - -.transparent-app-folder-dialogs-6 { - background-color: rgba(0, 0, 0, 0.06); -} - -.transparent-app-folder-dialogs-7 { - background-color: rgba(0, 0, 0, 0.07); -} - -.transparent-app-folder-dialogs-8 { - background-color: rgba(0, 0, 0, 0.08); -} - -.transparent-app-folder-dialogs-9 { - background-color: rgba(0, 0, 0, 0.09); -} - -.transparent-app-folder-dialogs-10 { - background-color: rgba(0, 0, 0, 0.1); -} - -.transparent-app-folder-dialogs-11 { - background-color: rgba(0, 0, 0, 0.11); -} - -.transparent-app-folder-dialogs-12 { - background-color: rgba(0, 0, 0, 0.12); -} - -.transparent-app-folder-dialogs-13 { - background-color: rgba(0, 0, 0, 0.13); -} - -.transparent-app-folder-dialogs-14 { - background-color: rgba(0, 0, 0, 0.14); -} - -.transparent-app-folder-dialogs-15 { - background-color: rgba(0, 0, 0, 0.15); -} - -.transparent-app-folder-dialogs-16 { - background-color: rgba(0, 0, 0, 0.16); -} - -.transparent-app-folder-dialogs-17 { - background-color: rgba(0, 0, 0, 0.17); -} - -.transparent-app-folder-dialogs-18 { - background-color: rgba(0, 0, 0, 0.18); -} - -.transparent-app-folder-dialogs-19 { - background-color: rgba(0, 0, 0, 0.19); -} - -.transparent-app-folder-dialogs-20 { - background-color: rgba(0, 0, 0, 0.2); -} - -.transparent-app-folder-dialogs-21 { - background-color: rgba(0, 0, 0, 0.21); -} - -.transparent-app-folder-dialogs-22 { - background-color: rgba(0, 0, 0, 0.22); -} - -.transparent-app-folder-dialogs-23 { - background-color: rgba(0, 0, 0, 0.23); -} - -.transparent-app-folder-dialogs-24 { - background-color: rgba(0, 0, 0, 0.24); -} - -.transparent-app-folder-dialogs-25 { - background-color: rgba(0, 0, 0, 0.25); -} - -.transparent-app-folder-dialogs-26 { - background-color: rgba(0, 0, 0, 0.26); -} - -.transparent-app-folder-dialogs-27 { - background-color: rgba(0, 0, 0, 0.27); -} - -.transparent-app-folder-dialogs-28 { - background-color: rgba(0, 0, 0, 0.28); -} - -.transparent-app-folder-dialogs-29 { - background-color: rgba(0, 0, 0, 0.29); -} - -.transparent-app-folder-dialogs-30 { - background-color: rgba(0, 0, 0, 0.3); -} - -.transparent-app-folder-dialogs-31 { - background-color: rgba(0, 0, 0, 0.31); -} - -.transparent-app-folder-dialogs-32 { - background-color: rgba(0, 0, 0, 0.32); -} - -.transparent-app-folder-dialogs-33 { - background-color: rgba(0, 0, 0, 0.33); -} - -.transparent-app-folder-dialogs-34 { - background-color: rgba(0, 0, 0, 0.34); -} - -.transparent-app-folder-dialogs-35 { - background-color: rgba(0, 0, 0, 0.35); -} - -.transparent-app-folder-dialogs-36 { - background-color: rgba(0, 0, 0, 0.36); -} - -.transparent-app-folder-dialogs-37 { - background-color: rgba(0, 0, 0, 0.37); -} - -.transparent-app-folder-dialogs-38 { - background-color: rgba(0, 0, 0, 0.38); -} - -.transparent-app-folder-dialogs-39 { - background-color: rgba(0, 0, 0, 0.39); -} - -.transparent-app-folder-dialogs-40 { - background-color: rgba(0, 0, 0, 0.4); -} - -.transparent-app-folder-dialogs-41 { - background-color: rgba(0, 0, 0, 0.41); -} - -.transparent-app-folder-dialogs-42 { - background-color: rgba(0, 0, 0, 0.42); -} - -.transparent-app-folder-dialogs-43 { - background-color: rgba(0, 0, 0, 0.43); -} - -.transparent-app-folder-dialogs-44 { - background-color: rgba(0, 0, 0, 0.44); -} - -.transparent-app-folder-dialogs-45 { - background-color: rgba(0, 0, 0, 0.45); -} - -.transparent-app-folder-dialogs-46 { - background-color: rgba(0, 0, 0, 0.46); -} - -.transparent-app-folder-dialogs-47 { - background-color: rgba(0, 0, 0, 0.47); -} - -.transparent-app-folder-dialogs-48 { - background-color: rgba(0, 0, 0, 0.48); -} - -.transparent-app-folder-dialogs-49 { - background-color: rgba(0, 0, 0, 0.49); -} - -.transparent-app-folder-dialogs-50 { - background-color: rgba(0, 0, 0, 0.5); -} - -.transparent-app-folder-dialogs-51 { - background-color: rgba(0, 0, 0, 0.51); -} - -.transparent-app-folder-dialogs-52 { - background-color: rgba(0, 0, 0, 0.52); -} - -.transparent-app-folder-dialogs-53 { - background-color: rgba(0, 0, 0, 0.53); -} - -.transparent-app-folder-dialogs-54 { - background-color: rgba(0, 0, 0, 0.54); -} - -.transparent-app-folder-dialogs-55 { - background-color: rgba(0, 0, 0, 0.55); -} - -.transparent-app-folder-dialogs-56 { - background-color: rgba(0, 0, 0, 0.56); -} - -.transparent-app-folder-dialogs-57 { - background-color: rgba(0, 0, 0, 0.57); -} - -.transparent-app-folder-dialogs-58 { - background-color: rgba(0, 0, 0, 0.58); -} - -.transparent-app-folder-dialogs-59 { - background-color: rgba(0, 0, 0, 0.59); -} - -.transparent-app-folder-dialogs-60 { - background-color: rgba(0, 0, 0, 0.6); -} - -.transparent-app-folder-dialogs-61 { - background-color: rgba(0, 0, 0, 0.61); -} - -.transparent-app-folder-dialogs-62 { - background-color: rgba(0, 0, 0, 0.62); -} - -.transparent-app-folder-dialogs-63 { - background-color: rgba(0, 0, 0, 0.63); -} - -.transparent-app-folder-dialogs-64 { - background-color: rgba(0, 0, 0, 0.64); -} - -.transparent-app-folder-dialogs-65 { - background-color: rgba(0, 0, 0, 0.65); -} - -.transparent-app-folder-dialogs-66 { - background-color: rgba(0, 0, 0, 0.66); -} - -.transparent-app-folder-dialogs-67 { - background-color: rgba(0, 0, 0, 0.67); -} - -.transparent-app-folder-dialogs-68 { - background-color: rgba(0, 0, 0, 0.68); -} - -.transparent-app-folder-dialogs-69 { - background-color: rgba(0, 0, 0, 0.69); -} - -.transparent-app-folder-dialogs-70 { - background-color: rgba(0, 0, 0, 0.7); -} - -.transparent-app-folder-dialogs-71 { - background-color: rgba(0, 0, 0, 0.71); -} - -.transparent-app-folder-dialogs-72 { - background-color: rgba(0, 0, 0, 0.72); -} - -.transparent-app-folder-dialogs-73 { - background-color: rgba(0, 0, 0, 0.73); -} - -.transparent-app-folder-dialogs-74 { - background-color: rgba(0, 0, 0, 0.74); -} - -.transparent-app-folder-dialogs-75 { - background-color: rgba(0, 0, 0, 0.75); -} - -.transparent-app-folder-dialogs-76 { - background-color: rgba(0, 0, 0, 0.76); -} - -.transparent-app-folder-dialogs-77 { - background-color: rgba(0, 0, 0, 0.77); -} - -.transparent-app-folder-dialogs-78 { - background-color: rgba(0, 0, 0, 0.78); -} - -.transparent-app-folder-dialogs-79 { - background-color: rgba(0, 0, 0, 0.79); -} - -.transparent-app-folder-dialogs-80 { - background-color: rgba(0, 0, 0, 0.8); -} - -.transparent-app-folder-dialogs-81 { - background-color: rgba(0, 0, 0, 0.81); -} - -.transparent-app-folder-dialogs-82 { - background-color: rgba(0, 0, 0, 0.82); -} - -.transparent-app-folder-dialogs-83 { - background-color: rgba(0, 0, 0, 0.83); -} - -.transparent-app-folder-dialogs-84 { - background-color: rgba(0, 0, 0, 0.84); -} - -.transparent-app-folder-dialogs-85 { - background-color: rgba(0, 0, 0, 0.85); -} - -.transparent-app-folder-dialogs-86 { - background-color: rgba(0, 0, 0, 0.86); -} - -.transparent-app-folder-dialogs-87 { - background-color: rgba(0, 0, 0, 0.87); -} - -.transparent-app-folder-dialogs-88 { - background-color: rgba(0, 0, 0, 0.88); -} - -.transparent-app-folder-dialogs-89 { - background-color: rgba(0, 0, 0, 0.89); -} - -.transparent-app-folder-dialogs-90 { - background-color: rgba(0, 0, 0, 0.9); -} - -.transparent-app-folder-dialogs-91 { - background-color: rgba(0, 0, 0, 0.91); -} - -.transparent-app-folder-dialogs-92 { - background-color: rgba(0, 0, 0, 0.92); -} - -.transparent-app-folder-dialogs-93 { - background-color: rgba(0, 0, 0, 0.93); -} - -.transparent-app-folder-dialogs-94 { - background-color: rgba(0, 0, 0, 0.94); -} - -.transparent-app-folder-dialogs-95 { - background-color: rgba(0, 0, 0, 0.95); -} - -.transparent-app-folder-dialogs-96 { - background-color: rgba(0, 0, 0, 0.96); -} - -.transparent-app-folder-dialogs-97 { - background-color: rgba(0, 0, 0, 0.97); -} - -.transparent-app-folder-dialogs-98 { - background-color: rgba(0, 0, 0, 0.98); -} - -.transparent-app-folder-dialogs-99 { - background-color: rgba(0, 0, 0, 0.99); +.appfolder-dialogs-dark { + background-color: rgba(100, 100, 100, 0.35); } -.transparent-app-folder-dialogs-100 { - background-color: rgba(0, 0, 0, 1.0); +.appfolder-dialogs-dark .folder-name-entry { + color: white; + background-color: rgba(100, 100, 100, 0.35); + border: 0; + box-shadow: none; } \ No newline at end of file From 38430f82577e24ba1fa6be4dd9c5153082b287d4 Mon Sep 17 00:00:00 2001 From: dgmarie <0001dgmarie@gmail.com> Date: Sat, 17 Sep 2022 20:17:18 -0400 Subject: [PATCH 042/212] Remove padding from stylesheet because it breaks some shell themes Just make the search entry's border color transparent instead --- src/stylesheet.css | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/stylesheet.css b/src/stylesheet.css index 67a0074f..c3947dba 100644 --- a/src/stylesheet.css +++ b/src/stylesheet.css @@ -26,10 +26,9 @@ } .bms-overview-components-light .search-entry { - padding: 10px; color: white; background-color: rgba(200, 200, 200, 0.2); - border: 0; + border-color: transparent; box-shadow: none; } @@ -82,10 +81,9 @@ } .bms-overview-components-dark .search-entry { - padding: 10px; color: white; background-color: rgba(100, 100, 100, 0.35); - border: 0; + border-color: transparent; box-shadow: none; } From 483b5c9dd02c6c0408d98ffcfa31099c7c48211c Mon Sep 17 00:00:00 2001 From: dgmarie <0001dgmarie@gmail.com> Date: Sun, 18 Sep 2022 13:44:33 -0400 Subject: [PATCH 043/212] Hide and show blur on Dash to Dock at correct times Makes the animation look a lot more fluid --- src/components/dash_to_dock.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/dash_to_dock.js b/src/components/dash_to_dock.js index 650911e7..264568c4 100644 --- a/src/components/dash_to_dock.js +++ b/src/components/dash_to_dock.js @@ -239,10 +239,10 @@ var DashBlur = class DashBlur { if (this.prefs.dash_to_dock.UNBLUR_IN_OVERVIEW) { this.connections.connect( - Main.overview, 'shown', this.hide.bind(this) + Main.overview, 'showing', this.hide.bind(this) ); this.connections.connect( - Main.overview, 'hiding', this.show.bind(this) + Main.overview, 'hidden', this.show.bind(this) ); } }; From dc3acb880f88d5c07ffeb4715b1b17d894495997 Mon Sep 17 00:00:00 2001 From: dgmarie <0001dgmarie@gmail.com> Date: Sun, 18 Sep 2022 15:17:42 -0400 Subject: [PATCH 044/212] Fix some grammar and spelling issues --- resources/ui/applications.ui | 4 ++-- resources/ui/general.ui | 14 +++++++------- resources/ui/overview.ui | 10 +++++----- src/components/appfolders.js | 4 ++-- src/components/dash_to_dock.js | 4 ++-- src/components/panel.js | 4 ++-- src/components/window_list.js | 4 ++-- 7 files changed, 22 insertions(+), 22 deletions(-) diff --git a/resources/ui/applications.ui b/resources/ui/applications.ui index 178ab5df..0b4b83ca 100644 --- a/resources/ui/applications.ui +++ b/resources/ui/applications.ui @@ -8,8 +8,8 @@ Applications blur (beta) - Add blur to the applications. This is still a beta functionnality. -To get the best results possible, make sure to choose option “No artefact” in the “General → Hack level” preference. + Adds blur to the applications. This is still beta functionality. +To get the best results possible, make sure to choose the option “No artifact” in the “General → Hack level” preference. diff --git a/resources/ui/general.ui b/resources/ui/general.ui index c02f3ff7..73c6b297 100644 --- a/resources/ui/general.ui +++ b/resources/ui/general.ui @@ -114,13 +114,13 @@ - Performances - Various options to tweak the performances. + Performance + Various options to tweak the performance. Color and noise effects - Permits to disable globally the use of noise and color effects, this may improve performances for low-end graphic. + Globally disables noise and color effects which may improve performance on low-end systems. color_and_noise @@ -133,9 +133,9 @@ Hack level - Changes the behaviour of dynamic blur effect. -Default value is very recommended, unless you use application blur in which case “No artefact” is better. -This option will entirely disable clipped redraws from GNOME shell, and may impact performances significantly but will entirely fix the blur effect. + Changes the behaviour of the dynamic blur effect. +The default value is highly recommended unless you use application blur, in which case “No artifact” is better. +This option will entirely disable clipped redraws in GNOME shell, and may impact performance significantly but will completely fix the blur effect. hack_level @@ -228,7 +228,7 @@ This option will entirely disable clipped redraws from GNOME shell, and may impa High performances Default High quality - No artefact + No artifact \ No newline at end of file diff --git a/resources/ui/overview.ui b/resources/ui/overview.ui index 9d62a446..a26a893e 100644 --- a/resources/ui/overview.ui +++ b/resources/ui/overview.ui @@ -24,7 +24,7 @@ Overview components style - The semi-transparent style for the dash, search entry/results, and applications folders. + The semi-transparent style for the dash, search entry/results, and application folders. overview_style_components @@ -41,8 +41,8 @@ - Applications folder blur - Makes the background of folder icons blurred. + Application folder blur + Makes the background of application folder dialogs blurred. center @@ -57,8 +57,8 @@ - Applications folder dialogs style - The semi-transparent style for the applications folder dialogs. + Application folder dialogs style + The semi-transparent style for the application folder dialogs. appfolder_style_dialogs diff --git a/src/components/appfolders.js b/src/components/appfolders.js index e8d207c9..ad527dc8 100644 --- a/src/components/appfolders.js +++ b/src/components/appfolders.js @@ -201,8 +201,8 @@ var AppFoldersBlur = class AppFoldersBlur { //`Shell.BlurEffect` does not repaint when shadows are under it. [1] // // This does not entirely fix this bug (shadows caused by windows - // still cause artefacts), but it prevents the shadows of the panel - // buttons to cause artefacts on the panel itself + // still cause artifacts), but it prevents the shadows of the panel + // buttons to cause artifacts on the panel itself // // [1]: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2857 diff --git a/src/components/dash_to_dock.js b/src/components/dash_to_dock.js index 264568c4..2b2da091 100644 --- a/src/components/dash_to_dock.js +++ b/src/components/dash_to_dock.js @@ -169,8 +169,8 @@ var DashBlur = class DashBlur { //`Shell.BlurEffect` does not repaint when shadows are under it. [1] // // This does not entirely fix this bug (shadows caused by windows - // still cause artefacts), but it prevents the shadows of the panel - // buttons to cause artefacts on the panel itself + // still cause artifacts), but it prevents the shadows of the panel + // buttons to cause artifacts on the panel itself // // [1]: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2857 diff --git a/src/components/panel.js b/src/components/panel.js index 8d0d9b4b..97fe0f58 100644 --- a/src/components/panel.js +++ b/src/components/panel.js @@ -260,8 +260,8 @@ var PanelBlur = class PanelBlur { //`Shell.BlurEffect` does not repaint when shadows are under it. [1] // // This does not entirely fix this bug (shadows caused by windows - // still cause artefacts), but it prevents the shadows of the panel - // buttons to cause artefacts on the panel itself + // still cause artifacts), but it prevents the shadows of the panel + // buttons to cause artifacts on the panel itself // // [1]: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2857 diff --git a/src/components/window_list.js b/src/components/window_list.js index 574a857c..94883daa 100644 --- a/src/components/window_list.js +++ b/src/components/window_list.js @@ -78,8 +78,8 @@ var WindowListBlur = class WindowListBlur { //`Shell.BlurEffect` does not repaint when shadows are under it. [1] // // This does not entirely fix this bug (shadows caused by windows - // still cause artefacts), but it prevents the shadows of the panel - // buttons to cause artefacts on the panel itself + // still cause artifacts), but it prevents the shadows of the panel + // buttons to cause artifacts on the panel itself // // [1]: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2857 From 72bc6913de46cd04b93ddb8dbcbec3791706a213 Mon Sep 17 00:00:00 2001 From: dgmarie <0001dgmarie@gmail.com> Date: Mon, 19 Sep 2022 08:51:08 -0400 Subject: [PATCH 045/212] Add light and dark styles to panel With this you can make the panel the same color as dash to dock, so if they are touching it doesn't look weird --- resources/ui/panel.ui | 25 ++++++++++++- ...shell.extensions.blur-my-shell.gschema.xml | 5 +++ src/components/panel.js | 35 ++++++++++++++++--- src/conveniences/keys.js | 1 + src/extension.js | 6 ++++ src/preferences/panel.js | 5 +++ src/stylesheet.css | 20 +++++++++++ 7 files changed, 92 insertions(+), 5 deletions(-) diff --git a/resources/ui/panel.ui b/resources/ui/panel.ui index 530bc62d..3979f8e6 100644 --- a/resources/ui/panel.ui +++ b/resources/ui/panel.ui @@ -54,11 +54,26 @@ Override background - Override the background of the panel to use a transparent one. + Override the background of the panel to use a transparent or semi-transparent one. Recommended unless you want to customize your GNOME theme. true + + + Background style + The transparent/semi-transparent style for the panel background. + style_panel + + + + center + style_panel_model + + + + + Disable when a window is near @@ -100,4 +115,12 @@ Recommended unless you want to customize your GNOME theme. + + + + Transparent + Light + Dark + + \ No newline at end of file diff --git a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml index 3cdb06c7..9b0da572 100644 --- a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml +++ b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml @@ -194,6 +194,11 @@ true Boolean, whether to override the background or not + + + 0 + Enum to select the style of the panel (0 transparent, 1 light, 2 dark) + false diff --git a/src/components/panel.js b/src/components/panel.js index 97fe0f58..04fd0f31 100644 --- a/src/components/panel.js +++ b/src/components/panel.js @@ -552,14 +552,41 @@ var PanelBlur = class PanelBlur { /// Choose wether or not the panel background should be overriden, in /// respect to its argument and the `override-background` setting. set_should_override_panel(actors, should_override) { + let panel = actors.widgets.panel; if ( this.prefs.panel.OVERRIDE_BACKGROUND && should_override - ) - actors.widgets.panel.add_style_class_name('transparent-panel'); - else - actors.widgets.panel.remove_style_class_name('transparent-panel'); + ) { + switch (this.prefs.panel.STYLE_PANEL) { + case 1: + this._log("set panel light classname"); + panel.remove_style_class_name('transparent-panel'); + panel.remove_style_class_name('dark-panel'); + panel.add_style_class_name('light-panel'); + break; + + case 2: + this._log("set panel dark classname"); + panel.remove_style_class_name('transparent-panel'); + panel.remove_style_class_name('light-panel'); + panel.add_style_class_name('dark-panel'); + break; + + default: + this._log("set panel transparent classname"); + panel.remove_style_class_name('light-panel'); + panel.remove_style_class_name('dark-panel'); + panel.add_style_class_name('transparent-panel'); + break; + } + } + else { + this._log("remove panel classname"); + panel.remove_style_class_name('transparent-panel'); + panel.remove_style_class_name('light-panel'); + panel.remove_style_class_name('dark-panel'); + } } /// Fixes a bug where the blur is washed away when changing the sigma, or diff --git a/src/conveniences/keys.js b/src/conveniences/keys.js index 37b309c1..46660e9c 100644 --- a/src/conveniences/keys.js +++ b/src/conveniences/keys.js @@ -55,6 +55,7 @@ var Keys = [ { type: Type.B, name: "static-blur" }, { type: Type.B, name: "unblur-in-overview" }, { type: Type.B, name: "override-background" }, + { type: Type.I, name: "style-panel" }, { type: Type.B, name: "override-background-dynamically" }, ] }, diff --git a/src/extension.js b/src/extension.js index 80c9ddae..8555c637 100644 --- a/src/extension.js +++ b/src/extension.js @@ -335,6 +335,12 @@ class Extension { this._panel_blur.connect_to_windows_and_overview(); }); + // panel style changed + this._prefs.panel.STYLE_PANEL_changed(() => { + if (this._prefs.panel.BLUR) + this._panel_blur.connect_to_windows_and_overview(); + }); + // panel background's dynamic overriding toggled on/off this._prefs.panel.OVERRIDE_BACKGROUND_DYNAMICALLY_changed(() => { if (this._prefs.panel.BLUR) diff --git a/src/preferences/panel.js b/src/preferences/panel.js index 44dd11e8..e127febf 100644 --- a/src/preferences/panel.js +++ b/src/preferences/panel.js @@ -15,6 +15,7 @@ var Panel = GObject.registerClass({ 'static_blur', 'unblur_in_overview', 'override_background', + 'style_panel', 'override_background_dynamically', 'hidetopbar_compatibility' ], @@ -41,6 +42,10 @@ var Panel = GObject.registerClass({ this._override_background, 'enable-expansion', Gio.SettingsBindFlags.DEFAULT ); + this.preferences.panel.settings.bind( + 'style-panel', this._style_panel, 'selected', + Gio.SettingsBindFlags.DEFAULT + ); this.preferences.panel.settings.bind( 'override-background-dynamically', this._override_background_dynamically, 'state', diff --git a/src/stylesheet.css b/src/stylesheet.css index c3947dba..2b2b3211 100644 --- a/src/stylesheet.css +++ b/src/stylesheet.css @@ -16,6 +16,16 @@ background-color: transparent !important; } +/* +* Style the panel with a light color when it has the class +* `.light-panel` +*/ + +#panel.light-panel { + background-color: rgba(200, 200, 200, 0.2); + transition-duration: 500ms; +} + /* * Style the overview components with a light color, when the UI group has class * `.bms-overview-components-light` @@ -71,6 +81,16 @@ box-shadow: none; } +/* +* Style the panel with a dark color when it has the class +* `.dark-panel` +*/ + +#panel.dark-panel { + background-color: rgba(100, 100, 100, 0.35); + transition-duration: 500ms; +} + /* * Style the overview components with a dark color, when the UI group has class * `.bms-overview-components-dark` From ffec26072dadd50ed2f3dbdcd467aee3b480ae13 Mon Sep 17 00:00:00 2001 From: dgmarie <0001dgmarie@gmail.com> Date: Mon, 19 Sep 2022 14:53:17 -0400 Subject: [PATCH 046/212] Style more states for app folder and remove accent border on drop Adwaita styles all of these states by default --- src/stylesheet.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/stylesheet.css b/src/stylesheet.css index 2b2b3211..765a94ee 100644 --- a/src/stylesheet.css +++ b/src/stylesheet.css @@ -56,11 +56,25 @@ background-color: transparent; } +.bms-overview-components-light .app-folder .overview-icon { + border-color: transparent; +} + .bms-overview-components-light .app-folder:hover .overview-icon, .bms-overview-components-light .app-folder:focus .overview-icon { background-color: rgba(230, 230, 230, 0.2); } +.bms-overview-components-light .app-folder:active .overview-icon, +.bms-overview-components-light .app-folder:focus:hover .overview-icon, +.bms-overview-components-light .app-folder:drop .overview-icon { + background-color: rgba(230, 230, 230, 0.25); +} + +.bms-overview-components-light .app-folder:focus:active .overview-icon { + background-color: rgba(230, 230, 230, 0.3); +} + .bms-overview-components-light .dash-background { background-color: rgba(200, 200, 200, 0.2); } @@ -121,11 +135,25 @@ background-color: transparent; } +.bms-overview-components-dark .app-folder .overview-icon { + border-color: transparent; +} + .bms-overview-components-dark .app-folder:hover .overview-icon, .bms-overview-components-dark .app-folder:focus .overview-icon { background-color: rgba(120, 120, 120, 0.35); } +.bms-overview-components-dark .app-folder:active .overview-icon, +.bms-overview-components-dark .app-folder:focus:hover .overview-icon, +.bms-overview-components-dark .app-folder:drop .overview-icon { + background-color: rgba(120, 120, 120, 0.4); +} + +.bms-overview-components-dark .app-folder:focus:active .overview-icon { + background-color: rgba(120, 120, 120, 0.45); +} + .bms-overview-components-dark .dash-background { background-color: rgba(100, 100, 100, 0.35); } From 44de56c707abbe9d31db509e8e652876fe349378 Mon Sep 17 00:00:00 2001 From: dgmarie <0001dgmarie@gmail.com> Date: Wed, 21 Sep 2022 11:49:03 -0400 Subject: [PATCH 047/212] Allow changing style of Dash to Dock With this it won't just use whatever style is set for overview components User can set a transparent, light, or dark style, with light being the default --- resources/ui/dash.ui | 27 +++++++++++++--- ...shell.extensions.blur-my-shell.gschema.xml | 5 +++ src/components/dash_to_dock.js | 31 +++++++++++++++++-- src/conveniences/keys.js | 1 + src/extension.js | 6 ++++ src/preferences/dash.js | 8 ++++- src/stylesheet.css | 26 +++++++++++----- 7 files changed, 87 insertions(+), 17 deletions(-) diff --git a/resources/ui/dash.ui b/resources/ui/dash.ui index 71695780..5eac21b9 100644 --- a/resources/ui/dash.ui +++ b/resources/ui/dash.ui @@ -22,15 +22,24 @@ - + Override background - Makes the background semi-transparent, disable this to use Dash to Dock preferences instead. - override_background + Makes the background either transparent or semi-transparent, disable this to use Dash to Dock preferences instead. + true - - center + + Background style + The transparent/semi-transparent style for the dock background. + style_dash_to_dock + + + + center + style_dash_to_dock_model + + @@ -53,4 +62,12 @@ + + + + Transparent + Light + Dark + + \ No newline at end of file diff --git a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml index 9b0da572..1d83b08e 100644 --- a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml +++ b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml @@ -253,6 +253,11 @@ true Boolean, whether to override the background or not + + + 1 + Enum to select the style of dash to dock (0 transparent, 1 light, 2 dark) + false diff --git a/src/components/dash_to_dock.js b/src/components/dash_to_dock.js index 2b2da091..842bec87 100644 --- a/src/components/dash_to_dock.js +++ b/src/components/dash_to_dock.js @@ -27,7 +27,9 @@ class DashInfos { this._log("removing blur from dash"); this.dash.get_parent().remove_child(this.background_parent); this.dash._background.style = this.old_style; - this.dash.remove_style_class_name('blurred-dash'); + this.dash.remove_style_class_name('light-dash'); + this.dash.remove_style_class_name('dark-dash'); + this.dash.remove_style_class_name('transparent-dash'); }); dash_blur.connections.connect(dash_blur, 'update-sigma', () => { @@ -40,12 +42,35 @@ class DashInfos { dash_blur.connections.connect(dash_blur, 'override-background', () => { this.dash._background.style = null; - this.dash.set_style_class_name('blurred-dash'); + switch (this.prefs.dash_to_dock.STYLE_DASH_TO_DOCK) { + case 1: + this._log("set dash to dock light classname"); + this.dash.remove_style_class_name('transparent-dash'); + this.dash.remove_style_class_name('dark-dash'); + this.dash.set_style_class_name('light-dash'); + break; + + case 2: + this._log("set dash to dock dark classname"); + this.dash.remove_style_class_name('transparent-dash'); + this.dash.remove_style_class_name('light-dash'); + this.dash.set_style_class_name('dark-dash'); + break; + + default: + this._log("set dash to dock transparent classname"); + this.dash.remove_style_class_name('light-dash'); + this.dash.remove_style_class_name('dark-dash'); + this.dash.set_style_class_name('transparent-dash'); + break; + } }); dash_blur.connections.connect(dash_blur, 'reset-background', () => { this.dash._background.style = this.old_style; - this.dash.remove_style_class_name('blurred-dash'); + this.dash.remove_style_class_name('light-dash'); + this.dash.remove_style_class_name('dark-dash'); + this.dash.remove_style_class_name('transparent-dash'); }); dash_blur.connections.connect(dash_blur, 'show', () => { diff --git a/src/conveniences/keys.js b/src/conveniences/keys.js index 46660e9c..beaa8e91 100644 --- a/src/conveniences/keys.js +++ b/src/conveniences/keys.js @@ -71,6 +71,7 @@ var Keys = [ { type: Type.B, name: "static-blur" }, { type: Type.B, name: "unblur-in-overview" }, { type: Type.B, name: "override-background" }, + { type: Type.I, name: "style-dash-to-dock" }, ] }, { diff --git a/src/extension.js b/src/extension.js index 8555c637..f7457e9c 100644 --- a/src/extension.js +++ b/src/extension.js @@ -372,6 +372,12 @@ class Extension { this._dash_to_dock_blur.update_background(); }); + // dash-to-dock style changed + this._prefs.dash_to_dock.STYLE_DASH_TO_DOCK_changed(() => { + if (this._prefs.dash_to_dock.BLUR) + this._dash_to_dock_blur.update_background(); + }); + // dash-to-dock blur's overview connection toggled on/off this._prefs.dash_to_dock.UNBLUR_IN_OVERVIEW_changed(() => { if (this._prefs.dash_to_dock.BLUR) diff --git a/src/preferences/dash.js b/src/preferences/dash.js index be0e6b1e..b00181bd 100644 --- a/src/preferences/dash.js +++ b/src/preferences/dash.js @@ -13,6 +13,7 @@ var Dash = GObject.registerClass({ 'blur', 'customize', 'override_background', + 'style_dash_to_dock', 'unblur_in_overview' ], }, class Dash extends Adw.PreferencesPage { @@ -26,7 +27,12 @@ var Dash = GObject.registerClass({ Gio.SettingsBindFlags.DEFAULT ); this.preferences.dash_to_dock.settings.bind( - 'override-background', this._override_background, 'state', + 'override-background', + this._override_background, 'enable-expansion', + Gio.SettingsBindFlags.DEFAULT + ); + this.preferences.dash_to_dock.settings.bind( + 'style-dash-to-dock', this._style_dash_to_dock, 'selected', Gio.SettingsBindFlags.DEFAULT ); this.preferences.dash_to_dock.settings.bind( diff --git a/src/stylesheet.css b/src/stylesheet.css index 765a94ee..43e52b92 100644 --- a/src/stylesheet.css +++ b/src/stylesheet.css @@ -12,7 +12,7 @@ background-color: transparent !important; } -.blurred-dash .dash-background { +.transparent-dash .dash-background { background-color: transparent !important; } @@ -27,14 +27,19 @@ } /* -* Style the overview components with a light color, when the UI group has class -* `.bms-overview-components-light` +* Style Dash to Dock with a light color when it has the class +* `.light-dash` */ -.bms-overview-components-light .blurred-dash .dash-background { +.light-dash .dash-background { background-color: rgba(200, 200, 200, 0.2) !important; } +/* +* Style the overview components with a light color, when the UI group has class +* `.bms-overview-components-light` +*/ + .bms-overview-components-light .search-entry { color: white; background-color: rgba(200, 200, 200, 0.2); @@ -106,14 +111,19 @@ } /* -* Style the overview components with a dark color, when the UI group has class -* `.bms-overview-components-dark` +* Style Dash to Dock with a dark color when it has the class +* `.dark-dash` */ -.bms-overview-components-dark .blurred-dash .dash-background { +.dark-dash .dash-background { background-color: rgba(100, 100, 100, 0.35) !important; } +/* +* Style the overview components with a dark color, when the UI group has class +* `.bms-overview-components-dark` +*/ + .bms-overview-components-dark .search-entry { color: white; background-color: rgba(100, 100, 100, 0.35); @@ -154,7 +164,7 @@ background-color: rgba(120, 120, 120, 0.45); } -.bms-overview-components-dark .dash-background { +.bms-overview-components-dark .dash-background{ background-color: rgba(100, 100, 100, 0.35); } From 78d7a56418f0202c35f9a4a60814c091359f244e Mon Sep 17 00:00:00 2001 From: dgmarie <0001dgmarie@gmail.com> Date: Wed, 21 Sep 2022 16:33:40 -0400 Subject: [PATCH 048/212] Fix dash to dock background being overidden even when not wanted by user --- src/stylesheet.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/stylesheet.css b/src/stylesheet.css index 43e52b92..1b382e26 100644 --- a/src/stylesheet.css +++ b/src/stylesheet.css @@ -80,7 +80,8 @@ background-color: rgba(230, 230, 230, 0.3); } -.bms-overview-components-light .dash-background { +/* This shouldn't apply to Dash to Dock */ +.bms-overview-components-light StBoxLayout > StWidget > #dash > .dash-background { background-color: rgba(200, 200, 200, 0.2); } @@ -164,7 +165,8 @@ background-color: rgba(120, 120, 120, 0.45); } -.bms-overview-components-dark .dash-background{ +/* This shouldn't apply to Dash to Dock */ +.bms-overview-components-dark StBoxLayout > StWidget > #dash > .dash-background{ background-color: rgba(100, 100, 100, 0.35); } From 0af5de8ae174366753ce199df1f8a8f31f64734b Mon Sep 17 00:00:00 2001 From: dgmarie <0001dgmarie@gmail.com> Date: Thu, 22 Sep 2022 11:41:53 -0400 Subject: [PATCH 049/212] Try to load dash to dock blur early Without this it will always be blurred on overview after startup --- src/extension.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/extension.js b/src/extension.js index f7457e9c..a26f8eea 100644 --- a/src/extension.js +++ b/src/extension.js @@ -100,6 +100,10 @@ class Extension { if (this._prefs.overview.BLUR && !this._overview_blur.enabled) this._overview_blur.enable(); } catch (e) { } + try { + if (this._prefs.dash_to_dock.BLUR && !this._dash_to_dock_blur.enabled) + this._dash_to_dock_blur.enable(); + } catch (e) { } try { if (this._prefs.panel.BLUR && !this._panel_blur.enabled) this._panel_blur.enable(); @@ -198,9 +202,8 @@ class Extension { if (this._prefs.panel.BLUR && !this._panel_blur.enabled) this._panel_blur.enable(); - if (this._prefs.dash_to_dock.BLUR) { + if (this._prefs.dash_to_dock.BLUR && !this._dash_to_dock_blur.enabled) this._dash_to_dock_blur.enable(); - } if (this._prefs.overview.BLUR && !this._overview_blur.enabled) this._overview_blur.enable(); From 939671bceeb2fade60151e4aed845f68b1e65b42 Mon Sep 17 00:00:00 2001 From: Josef Gottlander Date: Fri, 30 Sep 2022 15:18:55 +0200 Subject: [PATCH 050/212] Added translation using Weblate (Swedish) --- po/sv.po | 419 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 419 insertions(+) create mode 100644 po/sv.po diff --git a/po/sv.po b/po/sv.po new file mode 100644 index 00000000..ef9c144e --- /dev/null +++ b/po/sv.po @@ -0,0 +1,419 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the blur-my-shell@aunetx package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: blur-my-shell@aunetx\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-08-27 21:07+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications.ui:5 +msgid "Applications" +msgstr "" + +#: applications.ui:10 +msgid "Applications blur (beta)" +msgstr "" + +#: applications.ui:11 +msgid "" +"Add blur to the applications. This is still a beta functionnality.\n" +"To get the best results possible, make sure to choose option “No artefact” " +"in the “General → Hack level” preference.\n" +" " +msgstr "" + +#: applications.ui:28 +msgid "Opacity" +msgstr "" + +#: applications.ui:29 +msgid "" +"The opacity of the window on top of the blur effect, a higher value will be " +"more legible." +msgstr "" + +#: applications.ui:50 +msgid "Blur on overview" +msgstr "" + +#: applications.ui:51 +msgid "" +"Forces the blur to be properly shown on all workspaces on overview.\n" +"This may cause some latency or performance issues." +msgstr "" + +#: applications.ui:66 +msgid "Enable all by default" +msgstr "" + +#: applications.ui:67 +msgid "" +"Adds blur behind all windows by default.\n" +"Not recommended because of performance and stability issues." +msgstr "" + +#: applications.ui:84 +msgid "Whitelist" +msgstr "" + +#: applications.ui:85 +msgid "A list of windows to blur." +msgstr "" + +#: applications.ui:103 applications.ui:140 +msgid "Add Window" +msgstr "" + +#: applications.ui:121 +msgid "Blacklist" +msgstr "" + +#: applications.ui:122 +msgid "A list of windows not to blur." +msgstr "" + +#: customize-row.ui:4 +msgid "Customize properties" +msgstr "" + +#: customize-row.ui:5 +msgid "" +"Uses customized blur properties, instead of the ones set in the General page." +msgstr "" + +#: customize-row.ui:10 general.ui:15 +msgid "Sigma" +msgstr "" + +#: customize-row.ui:11 general.ui:16 +msgid "The intensity of the blur." +msgstr "" + +#: customize-row.ui:31 general.ui:35 +msgid "Brightness" +msgstr "" + +#: customize-row.ui:32 general.ui:36 +msgid "" +"The brightness of the blur effect, a high value might make the text harder " +"to read." +msgstr "" + +#: customize-row.ui:52 general.ui:55 +msgid "Color" +msgstr "" + +#: customize-row.ui:53 general.ui:56 +msgid "" +"Changes the color of the blur. The opacity of the color controls how much it " +"is blended into the blur effect." +msgstr "" + +#: customize-row.ui:71 general.ui:73 +msgid "Noise amount" +msgstr "" + +#: customize-row.ui:72 general.ui:74 +msgid "" +"The amount of noise to add to the blur effect, useful on low-contrast " +"screens or for aesthetic purpose." +msgstr "" + +#: customize-row.ui:92 general.ui:94 +msgid "Noise lightness" +msgstr "" + +#: customize-row.ui:93 general.ui:95 +msgid "The lightness of the noise added to the blur effect." +msgstr "" + +#: customize-row.ui:113 +msgid "Notice" +msgstr "" + +#: customize-row.ui:114 +msgid "" +"Noise and color can't be activated on dynamically blurred components, such " +"as this one." +msgstr "" + +#: dash.ui:5 +msgid "Dash" +msgstr "" + +#: dash.ui:10 +msgid "Dash to Dock blur" +msgstr "" + +#: dash.ui:11 +msgid "Blur the background of the Dash to Dock extension, if it is used." +msgstr "" + +#: dash.ui:26 panel.ui:56 +msgid "Override background" +msgstr "" + +#: dash.ui:27 +msgid "" +"Makes the background semi-transparent, disable this to use Dash to Dock " +"preferences instead." +msgstr "" + +#: dash.ui:41 panel.ui:41 +msgid "Disable in overview" +msgstr "" + +#: dash.ui:42 +msgid "Disables the blur from Dash to Dock when entering the overview." +msgstr "" + +#: general.ui:5 +msgid "General" +msgstr "" + +#: general.ui:10 +msgid "Blur preferences" +msgstr "" + +#: general.ui:11 +msgid "Global blur preferences, used by all components by default." +msgstr "" + +#: general.ui:117 +msgid "Performances" +msgstr "" + +#: general.ui:118 +msgid "Various options to tweak the performances." +msgstr "" + +#: general.ui:122 +msgid "Color and noise effects" +msgstr "" + +#: general.ui:123 +msgid "" +"Permits to disable globally the use of noise and color effects, this may " +"improve performances for low-end graphic." +msgstr "" + +#: general.ui:135 +msgid "Hack level" +msgstr "" + +#: general.ui:136 +msgid "" +"Changes the behaviour of dynamic blur effect.\n" +"Default value is very recommended, unless you use application blur in which " +"case “No artefact” is better.\n" +"This option will entirely disable clipped redraws from GNOME shell, and may " +"impact performances significantly but will entirely fix the blur effect." +msgstr "" + +#: general.ui:151 +msgid "Debug" +msgstr "" + +#: general.ui:152 +msgid "" +"Makes the extension verbose in logs, activate when you need to report an " +"issue." +msgstr "" + +#: general.ui:167 +msgid "Reset preferences" +msgstr "" + +#: general.ui:168 +msgid "Resets preferences of Blur my Shell irreversibly." +msgstr "" + +#: general.ui:187 +msgid "Reset" +msgstr "" + +#: general.ui:228 +msgid "High performances" +msgstr "" + +#: general.ui:229 +msgid "Default" +msgstr "" + +#: general.ui:230 +msgid "High quality" +msgstr "" + +#: general.ui:231 +msgid "No artefact" +msgstr "" + +#: menu.ui:6 +msgid "Project page" +msgstr "" + +#: menu.ui:10 +msgid "Report a Bug" +msgstr "" + +#: menu.ui:14 +msgid "License" +msgstr "" + +#: menu.ui:18 +msgid "Donate" +msgstr "" + +#: other.ui:5 +msgid "Other" +msgstr "" + +#: other.ui:10 +msgid "Lockscreen blur" +msgstr "" + +#: other.ui:11 +msgid "Change the blur of the lockscreen to use this extension's preferences." +msgstr "" + +#: other.ui:28 +msgid "Screenshot blur" +msgstr "" + +#: other.ui:29 +msgid "Add blur to the background of the window selector in the screenshot UI." +msgstr "" + +#: other.ui:46 +msgid "Window list extension blur" +msgstr "" + +#: other.ui:47 +msgid "Make the window-list extension blurred, if it is used." +msgstr "" + +#: overview.ui:5 +msgid "Overview" +msgstr "" + +#: overview.ui:10 +msgid "Background blur" +msgstr "" + +#: overview.ui:11 +msgid "Add blur to the overview background, using the wallpaper picture." +msgstr "" + +#: overview.ui:26 +msgid "Overview components style" +msgstr "" + +#: overview.ui:27 +msgid "" +"The semi-transparent style for the dash, search entry/results, and " +"applications folders." +msgstr "" + +#: overview.ui:44 +msgid "Applications folder blur" +msgstr "" + +#: overview.ui:45 +msgid "Makes the background of folder icons blurred." +msgstr "" + +#: overview.ui:60 +msgid "Dialog opacity" +msgstr "" + +#: overview.ui:61 +msgid "The opacity of the applications folder popup." +msgstr "" + +#: overview.ui:85 +msgid "Do not style" +msgstr "" + +#: overview.ui:86 +msgid "Light" +msgstr "" + +#: overview.ui:87 +msgid "Dark" +msgstr "" + +#: panel.ui:5 +msgid "Panel" +msgstr "" + +#: panel.ui:10 +msgid "Panel blur" +msgstr "" + +#: panel.ui:11 +msgid "Blur the top panel using the background image." +msgstr "" + +#: panel.ui:26 +msgid "Static blur" +msgstr "" + +#: panel.ui:27 +msgid "Uses a static blurred image, more performant and stable." +msgstr "" + +#: panel.ui:42 +msgid "Disables the blur from the panel when entering the overview." +msgstr "" + +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" + +#: panel.ui:64 +msgid "Disable when a window is near" +msgstr "" + +#: panel.ui:65 +msgid "Disables the transparency of the panel when a window is near it." +msgstr "" + +#: panel.ui:82 +msgid "Compatibility" +msgstr "" + +#: panel.ui:83 +msgid "Various options to provide compatibility with other extensions." +msgstr "" + +#: panel.ui:88 +msgid "Hidetopbar extension" +msgstr "" + +#: panel.ui:89 +msgid "Does not disable the blur in overview, best used with static blur." +msgstr "" + +#: window-row.ui:4 +msgid "Window Name" +msgstr "" + +#: window-row.ui:8 +msgid "Select window" +msgstr "" + +#: window-row.ui:9 +msgid "Pick a window or select it by its classname." +msgstr "" From b7f767767c81a9df0b35f0836e7659fed0547cc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sat, 1 Oct 2022 17:40:39 +0200 Subject: [PATCH 051/212] Make some technical changes to the styles --- resources/ui/overview.ui | 2 + ...shell.extensions.blur-my-shell.gschema.xml | 4 +- src/components/appfolders.js | 39 ++-- src/components/dash_to_dock.js | 55 +++-- src/components/overview.js | 40 ++-- src/components/panel.js | 44 ++-- src/extension.js | 6 +- src/stylesheet.css | 214 ++++++++++++------ 8 files changed, 225 insertions(+), 179 deletions(-) diff --git a/resources/ui/overview.ui b/resources/ui/overview.ui index a26a893e..191c70ba 100644 --- a/resources/ui/overview.ui +++ b/resources/ui/overview.ui @@ -79,12 +79,14 @@ Do not style Light Dark + Transparent Do not style + Transparent Light Dark diff --git a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml index 1d83b08e..5d326d6b 100644 --- a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml +++ b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml @@ -94,7 +94,7 @@ 1 - Enum to select the style of the components in overview (0 not styled, 1 light, 2 dark) + Enum to select the style of the components in overview (0 not styled, 1 light, 2 dark, 3 transparent) @@ -138,7 +138,7 @@ 1 - Enum to select the style of the appfolder dialogs (0 not styled, 1 light, 2 dark) + Enum to select the style of the appfolder dialogs (0 not styled, 1 transparent, 2 light, 3 dark) diff --git a/src/components/appfolders.js b/src/components/appfolders.js index ad527dc8..b69f49e5 100644 --- a/src/components/appfolders.js +++ b/src/components/appfolders.js @@ -11,6 +11,13 @@ const transparent = Clutter.Color.from_pixel(0x00000000); const FOLDER_DIALOG_ANIMATION_TIME = 200; const FRAME_UPDATE_PERIOD = 16; +const DIALOGS_STYLES = [ + "", + "appfolder-dialogs-transparent", + "appfolder-dialogs-light", + "appfolder-dialogs-dark" +]; + let original_zoomAndFadeIn = null; let original_zoomAndFadeOut = null; let sigma; @@ -170,25 +177,13 @@ var AppFoldersBlur = class AppFoldersBlur { icon._dialog.remove_effect_by_name("appfolder-blur"); icon._dialog.add_effect(blur_effect); - switch (this.prefs.appfolder.STYLE_DIALOGS) { - case 1: - this._log("set appfolder dialogs light classname"); - icon._dialog._viewBox.remove_style_class_name("appfolder-dialogs-dark"); - icon._dialog._viewBox.add_style_class_name("appfolder-dialogs-light"); - break; - - case 2: - this._log("set appfolder dialogs dark classname"); - icon._dialog._viewBox.remove_style_class_name("appfolder-dialogs-light"); - icon._dialog._viewBox.add_style_class_name("appfolder-dialogs-dark"); - break; - - default: - this._log("remove appfolder dialogs classname"); - icon._dialog._viewBox.remove_style_class_name("appfolder-dialogs-light"); - icon._dialog._viewBox.remove_style_class_name("appfolder-dialogs-dark"); - break; - } + DIALOGS_STYLES.forEach( + style => icon._dialog._viewBox.remove_style_class_name(style) + ); + + icon._dialog._viewBox.add_style_class_name( + DIALOGS_STYLES[this.prefs.appfolder.STYLE_DIALOGS] + ); // finally override the builtin functions @@ -254,9 +249,9 @@ var AppFoldersBlur = class AppFoldersBlur { appDisplay._folderIcons.forEach(icon => { if (icon._dialog) { icon._dialog.remove_effect_by_name("appfolder-blur"); - icon._dialog._viewBox.remove_style_class_name("blurred-appfolders"); - icon._dialog._viewBox.remove_style_class_name("bms-appfolder-dialogs-light"); - icon._dialog._viewBox.remove_style_class_name("bms-appfolder-dialogs-dark"); + DIALOGS_STYLES.forEach( + s => icon._dialog._viewBox.remove_style_class_name(s) + ); } }); diff --git a/src/components/dash_to_dock.js b/src/components/dash_to_dock.js index 842bec87..a4bdfadd 100644 --- a/src/components/dash_to_dock.js +++ b/src/components/dash_to_dock.js @@ -7,6 +7,12 @@ const Signals = imports.signals; const Me = imports.misc.extensionUtils.getCurrentExtension(); const { PaintSignals } = Me.imports.effects.paint_signals; +const DASH_STYLES = [ + "transparent-dash", + "light-dash", + "dark-dash" +]; + /// This type of object is created for every dash found, and talks to the main /// DashBlur thanks to signals. @@ -27,9 +33,10 @@ class DashInfos { this._log("removing blur from dash"); this.dash.get_parent().remove_child(this.background_parent); this.dash._background.style = this.old_style; - this.dash.remove_style_class_name('light-dash'); - this.dash.remove_style_class_name('dark-dash'); - this.dash.remove_style_class_name('transparent-dash'); + + DASH_STYLES.forEach( + style => this.dash.remove_style_class_name(style) + ); }); dash_blur.connections.connect(dash_blur, 'update-sigma', () => { @@ -42,35 +49,22 @@ class DashInfos { dash_blur.connections.connect(dash_blur, 'override-background', () => { this.dash._background.style = null; - switch (this.prefs.dash_to_dock.STYLE_DASH_TO_DOCK) { - case 1: - this._log("set dash to dock light classname"); - this.dash.remove_style_class_name('transparent-dash'); - this.dash.remove_style_class_name('dark-dash'); - this.dash.set_style_class_name('light-dash'); - break; - - case 2: - this._log("set dash to dock dark classname"); - this.dash.remove_style_class_name('transparent-dash'); - this.dash.remove_style_class_name('light-dash'); - this.dash.set_style_class_name('dark-dash'); - break; - - default: - this._log("set dash to dock transparent classname"); - this.dash.remove_style_class_name('light-dash'); - this.dash.remove_style_class_name('dark-dash'); - this.dash.set_style_class_name('transparent-dash'); - break; - } + + DASH_STYLES.forEach( + style => this.dash.remove_style_class_name(style) + ); + + this.dash.set_style_class_name( + DASH_STYLES[this.prefs.dash_to_dock.STYLE_DASH_TO_DOCK] + ); }); dash_blur.connections.connect(dash_blur, 'reset-background', () => { this.dash._background.style = this.old_style; - this.dash.remove_style_class_name('light-dash'); - this.dash.remove_style_class_name('dark-dash'); - this.dash.remove_style_class_name('transparent-dash'); + + DASH_STYLES.forEach( + style => this.dash.remove_style_class_name(style) + ); }); dash_blur.connections.connect(dash_blur, 'show', () => { @@ -100,6 +94,7 @@ var DashBlur = class DashBlur { this.brightness = this.prefs.dash_to_dock.CUSTOMIZE ? this.prefs.dash_to_dock.BRIGHTNESS : this.prefs.BRIGHTNESS; + this.enabled = false; } enable() { @@ -113,6 +108,8 @@ var DashBlur = class DashBlur { this.blur_existing_dashes(); this.connect_to_overview(); + + this.enabled = true; } // Finds all existing dashes on every monitor, and call `try_blur` on them @@ -303,6 +300,8 @@ var DashBlur = class DashBlur { this.dashes = []; this.connections.disconnect_all(); + + this.enabled = false; } show() { diff --git a/src/components/overview.js b/src/components/overview.js index 110d0484..42178224 100644 --- a/src/components/overview.js +++ b/src/components/overview.js @@ -10,6 +10,14 @@ const Me = imports.misc.extensionUtils.getCurrentExtension(); const ColorEffect = Me.imports.effects.color_effect.ColorEffect; const NoiseEffect = Me.imports.effects.noise_effect.NoiseEffect; +const OVERVIEW_COMPONENTS_STYLE = [ + "", + "overview-components-light", + "overview-components-dark", + "overview-components-transparent" +]; + + var OverviewBlur = class OverviewBlur { constructor(connections, prefs) { this.connections = connections; @@ -213,26 +221,13 @@ var OverviewBlur = class OverviewBlur { /// Updates the classname to style overview components with semi-transparent /// backgrounds. update_components_classname() { - let group = Main.uiGroup; - switch (this.prefs.overview.STYLE_COMPONENTS) { - case 1: - this._log("set overview components light classname"); - group.remove_style_class_name("bms-overview-components-dark"); - group.add_style_class_name("bms-overview-components-light"); - break; - - case 2: - this._log("set overview components dark classname"); - group.remove_style_class_name("bms-overview-components-light"); - group.add_style_class_name("bms-overview-components-dark"); - break; - - default: - this._log("remove overview components classname"); - group.remove_style_class_name("bms-overview-components-light"); - group.remove_style_class_name("bms-overview-components-dark"); - break; - } + OVERVIEW_COMPONENTS_STYLE.forEach( + style => Main.uiGroup.remove_style_class_name(style) + ); + + Main.uiGroup.add_style_class_name( + OVERVIEW_COMPONENTS_STYLE[this.prefs.overview.STYLE_COMPONENTS] + ); } set_sigma(s) { @@ -273,8 +268,9 @@ var OverviewBlur = class OverviewBlur { } }); Main.uiGroup.remove_style_class_name("blurred-overview"); - Main.uiGroup.remove_style_class_name("bms-overview-components-light"); - Main.uiGroup.remove_style_class_name("bms-overview-components-dark"); + OVERVIEW_COMPONENTS_STYLE.forEach( + style => Main.uiGroup.remove_style_class_name(style) + ); // make sure to absolutely not do this if the component was not enabled // prior, as this would cause infinite recursion diff --git a/src/components/panel.js b/src/components/panel.js index 04fd0f31..6342fc6b 100644 --- a/src/components/panel.js +++ b/src/components/panel.js @@ -10,6 +10,13 @@ const NoiseEffect = Me.imports.effects.noise_effect.NoiseEffect; const DASH_TO_PANEL_UUID = 'dash-to-panel@jderose9.github.com'; +const PANEL_STYLES = [ + "transparent-panel", + "light-panel", + "dark-panel" +]; + + var PanelBlur = class PanelBlur { constructor(connections, prefs) { this.connections = connections; @@ -553,40 +560,17 @@ var PanelBlur = class PanelBlur { /// respect to its argument and the `override-background` setting. set_should_override_panel(actors, should_override) { let panel = actors.widgets.panel; + + PANEL_STYLES.forEach(style => panel.remove_style_class_name(style)); + if ( this.prefs.panel.OVERRIDE_BACKGROUND && should_override - ) { - switch (this.prefs.panel.STYLE_PANEL) { - case 1: - this._log("set panel light classname"); - panel.remove_style_class_name('transparent-panel'); - panel.remove_style_class_name('dark-panel'); - panel.add_style_class_name('light-panel'); - break; - - case 2: - this._log("set panel dark classname"); - panel.remove_style_class_name('transparent-panel'); - panel.remove_style_class_name('light-panel'); - panel.add_style_class_name('dark-panel'); - break; - - default: - this._log("set panel transparent classname"); - panel.remove_style_class_name('light-panel'); - panel.remove_style_class_name('dark-panel'); - panel.add_style_class_name('transparent-panel'); - break; - } - } - else { - this._log("remove panel classname"); - panel.remove_style_class_name('transparent-panel'); - panel.remove_style_class_name('light-panel'); - panel.remove_style_class_name('dark-panel'); - } + ) + panel.add_style_class_name( + PANEL_STYLES[this.prefs.panel.STYLE_PANEL] + ); } /// Fixes a bug where the blur is washed away when changing the sigma, or diff --git a/src/extension.js b/src/extension.js index a26f8eea..d8de89e9 100644 --- a/src/extension.js +++ b/src/extension.js @@ -101,7 +101,8 @@ class Extension { this._overview_blur.enable(); } catch (e) { } try { - if (this._prefs.dash_to_dock.BLUR && !this._dash_to_dock_blur.enabled) + if (this._prefs.dash_to_dock.BLUR + && !this._dash_to_dock_blur.enabled) this._dash_to_dock_blur.enable(); } catch (e) { } try { @@ -297,9 +298,8 @@ class Extension { // appfolder dialogs style changed this._prefs.appfolder.STYLE_DIALOGS_changed(() => { - if (this._prefs.appfolder.BLUR) { + if (this._prefs.appfolder.BLUR) this._appfolder_blur.blur_appfolders(); - } }); diff --git a/src/stylesheet.css b/src/stylesheet.css index 1b382e26..dbe5f37f 100644 --- a/src/stylesheet.css +++ b/src/stylesheet.css @@ -1,177 +1,247 @@ +/*** PANEL ***/ + /* -* Makes transparent some backgrounds, in order to see the blur behind. -* The panel, workspace separator and dash-to-dock (if set) are targeted. +* `.transparent-panel` */ - #panel.transparent-panel { background: transparent; transition-duration: 500ms; } -.blurred-overview .workspace-animation { - background-color: transparent !important; -} - -.transparent-dash .dash-background { - background-color: transparent !important; +/* +* `.dark-panel` +*/ +#panel.dark-panel { + background-color: rgba(100, 100, 100, 0.35); + transition-duration: 500ms; } /* -* Style the panel with a light color when it has the class * `.light-panel` */ - #panel.light-panel { background-color: rgba(200, 200, 200, 0.2); transition-duration: 500ms; } + +/*** DASH ***/ + /* -* Style Dash to Dock with a light color when it has the class -* `.light-dash` +* `.transparent-dash` */ +.transparent-dash .dash-background { + background-color: transparent !important; +} +/* +* `.light-dash` +*/ .light-dash .dash-background { background-color: rgba(200, 200, 200, 0.2) !important; } /* -* Style the overview components with a light color, when the UI group has class -* `.bms-overview-components-light` +* `.dark-dash` +*/ +.dark-dash .dash-background { + background-color: rgba(100, 100, 100, 0.35) !important; +} + + +/*** OVERVIEW ***/ + +/* +* Add transparency to the workspace animation (between workspaces) +*/ +.blurred-overview .workspace-animation { + background-color: transparent !important; +} + + +/* +* `.overview-components-transparent` */ -.bms-overview-components-light .search-entry { +.overview-components-transparent .search-entry { color: white; - background-color: rgba(200, 200, 200, 0.2); + background-color: rgba(0, 0, 0, 0); border-color: transparent; box-shadow: none; } -.bms-overview-components-light .search-entry .search-entry-icon { +.overview-components-transparent .search-entry .search-entry-icon { color: rgba(255, 255, 255, 0.65); } -.bms-overview-components-light .search-section-content, -.bms-overview-components-light .app-folder .overview-icon { - background-color: rgba(200, 200, 200, 0.2); +.overview-components-transparent .search-section-content, +.overview-components-transparent .app-folder .overview-icon { + background-color: rgba(0, 0, 0, 0); } /* prevents the extension from interfering with Just Perfection */ -.bms-overview-components-light.just-perfection .search-section-content { +.overview-components-transparent.just-perfection .search-section-content { background-color: transparent; } -.bms-overview-components-light .app-folder .overview-icon { +.overview-components-transparent .app-folder .overview-icon { border-color: transparent; } -.bms-overview-components-light .app-folder:hover .overview-icon, -.bms-overview-components-light .app-folder:focus .overview-icon { - background-color: rgba(230, 230, 230, 0.2); +.overview-components-transparent .app-folder:hover .overview-icon, +.overview-components-transparent .app-folder:focus .overview-icon { + background-color: rgba(230, 230, 230, 0.08); } -.bms-overview-components-light .app-folder:active .overview-icon, -.bms-overview-components-light .app-folder:focus:hover .overview-icon, -.bms-overview-components-light .app-folder:drop .overview-icon { - background-color: rgba(230, 230, 230, 0.25); +.overview-components-transparent .app-folder:active .overview-icon, +.overview-components-transparent .app-folder:focus:hover .overview-icon, +.overview-components-transparent .app-folder:drop .overview-icon { + background-color: rgba(230, 230, 230, 0.12); } -.bms-overview-components-light .app-folder:focus:active .overview-icon { - background-color: rgba(230, 230, 230, 0.3); +.overview-components-transparent .app-folder:focus:active .overview-icon { + background-color: rgba(230, 230, 230, 0.15); } -/* This shouldn't apply to Dash to Dock */ -.bms-overview-components-light StBoxLayout > StWidget > #dash > .dash-background { - background-color: rgba(200, 200, 200, 0.2); +/* this shouldn't apply to Dash to Dock */ +.overview-components-transparent StBoxLayout>StWidget>#dash>.dash-background { + background-color: rgba(0, 0, 0, 0); } /* -* Style the appfolder dialogs with a light color when it has class -* `.appfolder-dialogs-light` +* `.overview-components-light` */ -.appfolder-dialogs-light { +.overview-components-light .search-entry { + color: white; background-color: rgba(200, 200, 200, 0.2); + border-color: transparent; + box-shadow: none; } -.appfolder-dialogs-light .folder-name-entry { - color: white; +.overview-components-light .search-entry .search-entry-icon { + color: rgba(255, 255, 255, 0.65); +} + +.overview-components-light .search-section-content, +.overview-components-light .app-folder .overview-icon { background-color: rgba(200, 200, 200, 0.2); - border: 0; - box-shadow: none; } -/* -* Style the panel with a dark color when it has the class -* `.dark-panel` -*/ +/* prevents the extension from interfering with Just Perfection */ +.overview-components-light.just-perfection .search-section-content { + background-color: transparent; +} -#panel.dark-panel { - background-color: rgba(100, 100, 100, 0.35); - transition-duration: 500ms; +.overview-components-light .app-folder .overview-icon { + border-color: transparent; } -/* -* Style Dash to Dock with a dark color when it has the class -* `.dark-dash` -*/ +.overview-components-light .app-folder:hover .overview-icon, +.overview-components-light .app-folder:focus .overview-icon { + background-color: rgba(230, 230, 230, 0.2); +} -.dark-dash .dash-background { - background-color: rgba(100, 100, 100, 0.35) !important; +.overview-components-light .app-folder:active .overview-icon, +.overview-components-light .app-folder:focus:hover .overview-icon, +.overview-components-light .app-folder:drop .overview-icon { + background-color: rgba(230, 230, 230, 0.25); +} + +.overview-components-light .app-folder:focus:active .overview-icon { + background-color: rgba(230, 230, 230, 0.3); } +/* this shouldn't apply to Dash to Dock */ +.overview-components-light StBoxLayout>StWidget>#dash>.dash-background { + background-color: rgba(200, 200, 200, 0.2); +} + + /* -* Style the overview components with a dark color, when the UI group has class -* `.bms-overview-components-dark` +* `.overview-components-dark` */ -.bms-overview-components-dark .search-entry { +.overview-components-dark .search-entry { color: white; background-color: rgba(100, 100, 100, 0.35); border-color: transparent; box-shadow: none; } -.bms-overview-components-dark .search-entry .search-entry-icon { +.overview-components-dark .search-entry .search-entry-icon { color: rgba(255, 255, 255, 0.65); } -.bms-overview-components-dark .search-section-content, -.bms-overview-components-dark .app-folder .overview-icon { +.overview-components-dark .search-section-content, +.overview-components-dark .app-folder .overview-icon { background-color: rgba(100, 100, 100, 0.35); } /* prevents the extension from interfering with Just Perfection */ -.bms-overview-components-dark.just-perfection .search-section-content { +.overview-components-dark.just-perfection .search-section-content { background-color: transparent; } -.bms-overview-components-dark .app-folder .overview-icon { +.overview-components-dark .app-folder .overview-icon { border-color: transparent; } -.bms-overview-components-dark .app-folder:hover .overview-icon, -.bms-overview-components-dark .app-folder:focus .overview-icon { +.overview-components-dark .app-folder:hover .overview-icon, +.overview-components-dark .app-folder:focus .overview-icon { background-color: rgba(120, 120, 120, 0.35); } -.bms-overview-components-dark .app-folder:active .overview-icon, -.bms-overview-components-dark .app-folder:focus:hover .overview-icon, -.bms-overview-components-dark .app-folder:drop .overview-icon { +.overview-components-dark .app-folder:active .overview-icon, +.overview-components-dark .app-folder:focus:hover .overview-icon, +.overview-components-dark .app-folder:drop .overview-icon { background-color: rgba(120, 120, 120, 0.4); } -.bms-overview-components-dark .app-folder:focus:active .overview-icon { +.overview-components-dark .app-folder:focus:active .overview-icon { background-color: rgba(120, 120, 120, 0.45); } -/* This shouldn't apply to Dash to Dock */ -.bms-overview-components-dark StBoxLayout > StWidget > #dash > .dash-background{ +/* this shouldn't apply to Dash to Dock */ +.overview-components-dark StBoxLayout>StWidget>#dash>.dash-background { background-color: rgba(100, 100, 100, 0.35); } + +/*** APPFOLDER DIALOG ***/ + +/* +* `.appfolder-dialogs-transparent` +*/ + +.appfolder-dialogs-transparent { + background-color: rgba(0, 0, 0, 0); +} + +.appfolder-dialogs-transparent .folder-name-entry { + color: white; + background-color: rgba(0, 0, 0, 0); + border: 0; + box-shadow: none; +} + +/* +* `.appfolder-dialogs-light` +*/ + +.appfolder-dialogs-light { + background-color: rgba(200, 200, 200, 0.2); +} + +.appfolder-dialogs-light .folder-name-entry { + color: white; + background-color: rgba(200, 200, 200, 0.2); + border: 0; + box-shadow: none; +} + + /* -* Style the appfolder dialogs with a dark color when it has class * `.appfolder-dialogs-dark` */ From 440539cf928eabb5aa062e265b8e5293595f0df7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sat, 1 Oct 2022 17:43:08 +0200 Subject: [PATCH 052/212] Update pot files --- po/LINGUAS | 1 + po/ar.po | 159 ++++++++++++------- po/blur-my-shell@aunetx.pot | 113 ++++++++------ po/cs.po | 221 +++++++++++++++++--------- po/de.po | 229 ++++++++++++++++++--------- po/es.po | 225 ++++++++++++++++++--------- po/fr.po | 224 ++++++++++++++++++--------- po/hu.po | 113 ++++++++------ po/it.po | 232 ++++++++++++++++++---------- po/ko.po | 171 +++++++++++++-------- po/nb_NO.po | 181 ++++++++++++++-------- po/nl.po | 226 ++++++++++++++++++--------- po/pl.po | 219 +++++++++++++++++--------- po/pt.po | 299 ++++++++++++++++++++++-------------- po/ru.po | 220 +++++++++++++++++--------- po/sv.po | 113 ++++++++------ po/ta.po | 234 ++++++++++++++++++---------- po/tr.po | 170 +++++++++++++------- po/zh_Hans.po | 209 +++++++++++++++++-------- 19 files changed, 2311 insertions(+), 1248 deletions(-) diff --git a/po/LINGUAS b/po/LINGUAS index 5dc22ad7..9f065ce6 100644 --- a/po/LINGUAS +++ b/po/LINGUAS @@ -11,6 +11,7 @@ nl pl pt ru +sv ta tr zh_Hans diff --git a/po/ar.po b/po/ar.po index ece51025..c948a1a4 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-27 21:07+0200\n" +"POT-Creation-Date: 2022-10-01 17:42+0200\n" "PO-Revision-Date: 2022-05-27 11:40+0000\n" "Last-Translator: fawaz006 \n" "Language-Team: Arabic \n" "Language-Team: LANGUAGE \n" @@ -27,9 +27,9 @@ msgstr "" #: applications.ui:11 msgid "" -"Add blur to the applications. This is still a beta functionnality.\n" -"To get the best results possible, make sure to choose option “No artefact” " -"in the “General → Hack level” preference.\n" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" " " msgstr "" @@ -43,43 +43,43 @@ msgid "" "more legible." msgstr "" -#: applications.ui:50 +#: applications.ui:51 msgid "Blur on overview" msgstr "" -#: applications.ui:51 +#: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" -#: applications.ui:66 +#: applications.ui:67 msgid "Enable all by default" msgstr "" -#: applications.ui:67 +#: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" -#: applications.ui:84 +#: applications.ui:85 msgid "Whitelist" msgstr "" -#: applications.ui:85 +#: applications.ui:86 msgid "A list of windows to blur." msgstr "" -#: applications.ui:103 applications.ui:140 +#: applications.ui:104 applications.ui:141 msgid "Add Window" msgstr "" -#: applications.ui:121 +#: applications.ui:122 msgid "Blacklist" msgstr "" -#: applications.ui:122 +#: applications.ui:123 msgid "A list of windows not to blur." msgstr "" @@ -166,18 +166,38 @@ msgstr "" #: dash.ui:27 msgid "" -"Makes the background semi-transparent, disable this to use Dash to Dock " -"preferences instead." +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." msgstr "" -#: dash.ui:41 panel.ui:41 +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." +msgstr "" + +#: dash.ui:50 panel.ui:41 msgid "Disable in overview" msgstr "" -#: dash.ui:42 +#: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "" +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +msgid "Light" +msgstr "" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +msgid "Dark" +msgstr "" + #: general.ui:5 msgid "General" msgstr "" @@ -191,11 +211,11 @@ msgid "Global blur preferences, used by all components by default." msgstr "" #: general.ui:117 -msgid "Performances" +msgid "Performance" msgstr "" #: general.ui:118 -msgid "Various options to tweak the performances." +msgid "Various options to tweak the performance." msgstr "" #: general.ui:122 @@ -204,8 +224,8 @@ msgstr "" #: general.ui:123 msgid "" -"Permits to disable globally the use of noise and color effects, this may " -"improve performances for low-end graphic." +"Globally disables noise and color effects which may improve performance on " +"low-end systems." msgstr "" #: general.ui:135 @@ -214,11 +234,11 @@ msgstr "" #: general.ui:136 msgid "" -"Changes the behaviour of dynamic blur effect.\n" -"Default value is very recommended, unless you use application blur in which " -"case “No artefact” is better.\n" -"This option will entirely disable clipped redraws from GNOME shell, and may " -"impact performances significantly but will entirely fix the blur effect." +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." msgstr "" #: general.ui:151 @@ -256,7 +276,7 @@ msgid "High quality" msgstr "" #: general.ui:231 -msgid "No artefact" +msgid "No artifact" msgstr "" #: menu.ui:6 @@ -322,37 +342,29 @@ msgstr "" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " -"applications folders." +"application folders." msgstr "" #: overview.ui:44 -msgid "Applications folder blur" +msgid "Application folder blur" msgstr "" #: overview.ui:45 -msgid "Makes the background of folder icons blurred." +msgid "Makes the background of application folder dialogs blurred." msgstr "" #: overview.ui:60 -msgid "Dialog opacity" +msgid "Application folder dialogs style" msgstr "" #: overview.ui:61 -msgid "The opacity of the applications folder popup." +msgid "The semi-transparent style for the application folder dialogs." msgstr "" -#: overview.ui:85 +#: overview.ui:79 overview.ui:88 msgid "Do not style" msgstr "" -#: overview.ui:86 -msgid "Light" -msgstr "" - -#: overview.ui:87 -msgid "Dark" -msgstr "" - #: panel.ui:5 msgid "Panel" msgstr "" @@ -379,31 +391,36 @@ msgstr "" #: panel.ui:57 msgid "" -"Override the background of the panel to use a transparent one.\n" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" -#: panel.ui:64 +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 msgid "Disable when a window is near" msgstr "" -#: panel.ui:65 +#: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." msgstr "" -#: panel.ui:82 +#: panel.ui:97 msgid "Compatibility" msgstr "" -#: panel.ui:83 +#: panel.ui:98 msgid "Various options to provide compatibility with other extensions." msgstr "" -#: panel.ui:88 +#: panel.ui:103 msgid "Hidetopbar extension" msgstr "" -#: panel.ui:89 +#: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" diff --git a/po/cs.po b/po/cs.po index 4d5177d1..acaa31e7 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-27 21:07+0200\n" +"POT-Creation-Date: 2022-10-01 17:42+0200\n" "PO-Revision-Date: 2022-09-02 01:23+0000\n" "Last-Translator: vikdevelop \n" -"Language-Team: Czech \n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,15 +29,11 @@ msgstr "Rozostření aplikací (beta)" #: applications.ui:11 msgid "" -"Add blur to the applications. This is still a beta functionnality.\n" -"To get the best results possible, make sure to choose option “No artefact” " -"in the “General → Hack level” preference.\n" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" " " msgstr "" -"Přidejte do aplikací rozostření. Jedná se stále beta funkci.\n" -"Chcete-li získat co nejlepší výsledky, vyberte možnost „Žádný artefakt“ v " -"předvolbě „Obecné → Úroveň hackování“.\n" -" " #: applications.ui:28 msgid "Opacity" @@ -51,11 +47,11 @@ msgstr "" "Neprůhlednost okna v horní části efektu rozmazání, vyšší hodnota bude " "čitelnější." -#: applications.ui:50 +#: applications.ui:51 msgid "Blur on overview" msgstr "Rozostření v přehledu" -#: applications.ui:51 +#: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." @@ -63,11 +59,11 @@ msgstr "" "Vynutí správné zobrazení rozmazání na všech pracovních plochách v přehledu.\n" "To může způsobit určité zpoždění nebo problémy s výkonem." -#: applications.ui:66 +#: applications.ui:67 msgid "Enable all by default" msgstr "Ve výchozím nastavení povolit vše" -#: applications.ui:67 +#: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." @@ -75,23 +71,23 @@ msgstr "" "Ve výchozím nastavení přidá rozmazání za všechna okna.\n" "Nedoporučuje se kvůli problémům s výkonem a stabilitou." -#: applications.ui:84 +#: applications.ui:85 msgid "Whitelist" msgstr "Seznam povolených" -#: applications.ui:85 +#: applications.ui:86 msgid "A list of windows to blur." msgstr "Seznam oken k rozmazání." -#: applications.ui:103 applications.ui:140 +#: applications.ui:104 applications.ui:141 msgid "Add Window" msgstr "Přidat okno" -#: applications.ui:121 +#: applications.ui:122 msgid "Blacklist" msgstr "Černá listina" -#: applications.ui:122 +#: applications.ui:123 msgid "A list of windows not to blur." msgstr "Seznam oken, která se nemají rozmazávat." @@ -187,20 +183,38 @@ msgstr "Přepsat pozadí" #: dash.ui:27 msgid "" -"Makes the background semi-transparent, disable this to use Dash to Dock " -"preferences instead." +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." msgstr "" -"Vytvoří poloprůhledné pozadí, pokud chcete místo toho použít předvolby Dash " -"to Dock, zakažte tuto funkci." -#: dash.ui:41 panel.ui:41 +#: dash.ui:50 panel.ui:41 msgid "Disable in overview" msgstr "Zakázat v přehledu" -#: dash.ui:42 +#: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "Zakáže rozmazání z Dashe do doku při vstupu do přehledu." +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +msgid "Light" +msgstr "Světlý" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +msgid "Dark" +msgstr "Tmavý" + #: general.ui:5 msgid "General" msgstr "Obecné" @@ -216,12 +230,12 @@ msgstr "" "komponenty." #: general.ui:117 -msgid "Performances" -msgstr "Představení" +msgid "Performance" +msgstr "" #: general.ui:118 -msgid "Various options to tweak the performances." -msgstr "Různé možnosti nastavení výkonů." +msgid "Various options to tweak the performance." +msgstr "" #: general.ui:122 msgid "Color and noise effects" @@ -229,11 +243,9 @@ msgstr "Barevné a šumové efekty" #: general.ui:123 msgid "" -"Permits to disable globally the use of noise and color effects, this may " -"improve performances for low-end graphic." +"Globally disables noise and color effects which may improve performance on " +"low-end systems." msgstr "" -"Umožňuje globálně zakázat použití šumu a barevných efektů, což může zlepšit " -"výkon u grafiky nižší třídy." #: general.ui:135 msgid "Hack level" @@ -241,17 +253,12 @@ msgstr "Úroveň hackování" #: general.ui:136 msgid "" -"Changes the behaviour of dynamic blur effect.\n" -"Default value is very recommended, unless you use application blur in which " -"case “No artefact” is better.\n" -"This option will entirely disable clipped redraws from GNOME shell, and may " -"impact performances significantly but will entirely fix the blur effect." +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." msgstr "" -"Změní chování efektu dynamického rozostření.\n" -"Výchozí hodnota je velmi doporučená, pokud nepoužíváte aplikační rozostření, " -"v takovém případě je lepší \"Bez artefaktu\".\n" -"Tato volba zcela zakáže oříznuté překreslování ze shellu GNOME a může mít " -"značný dopad na výkon, ale zcela opraví efekt rozmazání." #: general.ui:151 msgid "Debug" @@ -290,8 +297,8 @@ msgid "High quality" msgstr "Vysoká kvalita" #: general.ui:231 -msgid "No artefact" -msgstr "Žádný artefakt" +msgid "No artifact" +msgstr "" #: menu.ui:6 msgid "Project page" @@ -360,38 +367,29 @@ msgstr "Přehled stylu komponent" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " -"applications folders." +"application folders." msgstr "" -"Poloprůhledný styl pro Dash, položku/výsledky vyhledávání a složky aplikací." #: overview.ui:44 -msgid "Applications folder blur" -msgstr "Rozmazání složky s aplikacemi" +msgid "Application folder blur" +msgstr "" #: overview.ui:45 -msgid "Makes the background of folder icons blurred." -msgstr "Rozostří pozadí ikon složek." +msgid "Makes the background of application folder dialogs blurred." +msgstr "" #: overview.ui:60 -msgid "Dialog opacity" -msgstr "Neprůhlednost dialogu" +msgid "Application folder dialogs style" +msgstr "" #: overview.ui:61 -msgid "The opacity of the applications folder popup." -msgstr "Neprůhlednost vyskakovacího okna složky s aplikacemi." +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" -#: overview.ui:85 +#: overview.ui:79 overview.ui:88 msgid "Do not style" msgstr "Nestylizujte" -#: overview.ui:86 -msgid "Light" -msgstr "Světlý" - -#: overview.ui:87 -msgid "Dark" -msgstr "Tmavý" - #: panel.ui:5 msgid "Panel" msgstr "Panel" @@ -418,33 +416,36 @@ msgstr "Zakáže rozmazání panelu při vstupu do přehledu." #: panel.ui:57 msgid "" -"Override the background of the panel to use a transparent one.\n" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" -"Přepište pozadí panelu na průhledné.\n" -"Doporučujeme, pokud si nechcete přizpůsobit téma GNOME." -#: panel.ui:64 +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 msgid "Disable when a window is near" msgstr "Zakázat, když je okno v blízkosti" -#: panel.ui:65 +#: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." msgstr "Zakáže průhlednost panelu, pokud se v jeho blízkosti nachází okno." -#: panel.ui:82 +#: panel.ui:97 msgid "Compatibility" msgstr "Kompatibilita" -#: panel.ui:83 +#: panel.ui:98 msgid "Various options to provide compatibility with other extensions." msgstr "Různé možnosti pro zajištění kompatibility s jinými rozšířeními." -#: panel.ui:88 +#: panel.ui:103 msgid "Hidetopbar extension" msgstr "Rozšíření Skrýt horní lištu" -#: panel.ui:89 +#: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" "Nevypíná rozostření v přehledu, nejlépe se používá se statickým rozostřením." @@ -461,6 +462,80 @@ msgstr "Vybrat okno" msgid "Pick a window or select it by its classname." msgstr "Vyberte okno nebo jej vyberte podle názvu třídy." +#~ msgid "" +#~ "Add blur to the applications. This is still a beta functionnality.\n" +#~ "To get the best results possible, make sure to choose option “No " +#~ "artefact” in the “General → Hack level” preference.\n" +#~ " " +#~ msgstr "" +#~ "Přidejte do aplikací rozostření. Jedná se stále beta funkci.\n" +#~ "Chcete-li získat co nejlepší výsledky, vyberte možnost „Žádný artefakt“ v " +#~ "předvolbě „Obecné → Úroveň hackování“.\n" +#~ " " + +#~ msgid "" +#~ "Makes the background semi-transparent, disable this to use Dash to Dock " +#~ "preferences instead." +#~ msgstr "" +#~ "Vytvoří poloprůhledné pozadí, pokud chcete místo toho použít předvolby " +#~ "Dash to Dock, zakažte tuto funkci." + +#~ msgid "Performances" +#~ msgstr "Představení" + +#~ msgid "Various options to tweak the performances." +#~ msgstr "Různé možnosti nastavení výkonů." + +#~ msgid "" +#~ "Permits to disable globally the use of noise and color effects, this may " +#~ "improve performances for low-end graphic." +#~ msgstr "" +#~ "Umožňuje globálně zakázat použití šumu a barevných efektů, což může " +#~ "zlepšit výkon u grafiky nižší třídy." + +#~ msgid "" +#~ "Changes the behaviour of dynamic blur effect.\n" +#~ "Default value is very recommended, unless you use application blur in " +#~ "which case “No artefact” is better.\n" +#~ "This option will entirely disable clipped redraws from GNOME shell, and " +#~ "may impact performances significantly but will entirely fix the blur " +#~ "effect." +#~ msgstr "" +#~ "Změní chování efektu dynamického rozostření.\n" +#~ "Výchozí hodnota je velmi doporučená, pokud nepoužíváte aplikační " +#~ "rozostření, v takovém případě je lepší \"Bez artefaktu\".\n" +#~ "Tato volba zcela zakáže oříznuté překreslování ze shellu GNOME a může mít " +#~ "značný dopad na výkon, ale zcela opraví efekt rozmazání." + +#~ msgid "No artefact" +#~ msgstr "Žádný artefakt" + +#~ msgid "" +#~ "The semi-transparent style for the dash, search entry/results, and " +#~ "applications folders." +#~ msgstr "" +#~ "Poloprůhledný styl pro Dash, položku/výsledky vyhledávání a složky " +#~ "aplikací." + +#~ msgid "Applications folder blur" +#~ msgstr "Rozmazání složky s aplikacemi" + +#~ msgid "Makes the background of folder icons blurred." +#~ msgstr "Rozostří pozadí ikon složek." + +#~ msgid "Dialog opacity" +#~ msgstr "Neprůhlednost dialogu" + +#~ msgid "The opacity of the applications folder popup." +#~ msgstr "Neprůhlednost vyskakovacího okna složky s aplikacemi." + +#~ msgid "" +#~ "Override the background of the panel to use a transparent one.\n" +#~ "Recommended unless you want to customize your GNOME theme." +#~ msgstr "" +#~ "Přepište pozadí panelu na průhledné.\n" +#~ "Doporučujeme, pokud si nechcete přizpůsobit téma GNOME." + #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality, is " #~ "quite buggy and is only applied to the apps that ask it, or to the ones " diff --git a/po/de.po b/po/de.po index 58166782..a991ddc8 100644 --- a/po/de.po +++ b/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-27 21:07+0200\n" +"POT-Creation-Date: 2022-10-01 17:42+0200\n" "PO-Revision-Date: 2022-09-13 08:18+0000\n" "Last-Translator: waddle5 \n" "Language-Team: German Hack-Level\" " -"ausgewählt haben.\n" -" " #: applications.ui:28 msgid "Opacity" @@ -52,11 +47,11 @@ msgstr "" "Die Deckkraft des Fensters über dem Unschärfeeffekt, ein höherer Wert wird " "besser lesbar sein." -#: applications.ui:50 +#: applications.ui:51 msgid "Blur on overview" msgstr "Unschärfe in der Übersicht" -#: applications.ui:51 +#: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." @@ -65,11 +60,11 @@ msgstr "" "angezeigt zu werden.\n" "Das kann zu Latenz- oder Leistungsproblemen führen." -#: applications.ui:66 +#: applications.ui:67 msgid "Enable all by default" msgstr "Standardmäßig alle aktivieren" -#: applications.ui:67 +#: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." @@ -77,23 +72,23 @@ msgstr "" "Fügt standardmäßig Unschärfe hinter allen Fenstern hinzu.\n" "Wegen Leistungs- und Stabilitätsproblemen nicht empfohlen." -#: applications.ui:84 +#: applications.ui:85 msgid "Whitelist" msgstr "Whitelist" -#: applications.ui:85 +#: applications.ui:86 msgid "A list of windows to blur." msgstr "Eine Liste der mit dem Unschärfeeffekt zu versehenden Fenster." -#: applications.ui:103 applications.ui:140 +#: applications.ui:104 applications.ui:141 msgid "Add Window" msgstr "Fenster hinzufügen" -#: applications.ui:121 +#: applications.ui:122 msgid "Blacklist" msgstr "Blacklist" -#: applications.ui:122 +#: applications.ui:123 msgid "A list of windows not to blur." msgstr "Eine Liste der nicht mit dem Unschärfeeffekt zu versehenden Fenster." @@ -193,21 +188,39 @@ msgstr "Hintergrund überschreiben" #: dash.ui:27 msgid "" -"Makes the background semi-transparent, disable this to use Dash to Dock " -"preferences instead." +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." msgstr "" -"Macht den Hintergrund halbtransparent, deaktivieren Sie dies, um stattdessen " -"die Dash to Dock-Einstellungen zu verwenden." -#: dash.ui:41 panel.ui:41 +#: dash.ui:50 panel.ui:41 msgid "Disable in overview" msgstr "In der Übersicht deaktivieren" -#: dash.ui:42 +#: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "" "Deaktiviert die Unschärfe von Dash to Dock beim Aufrufen der Übersicht." +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +msgid "Light" +msgstr "Hell" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +msgid "Dark" +msgstr "Dunkel" + #: general.ui:5 msgid "General" msgstr "Allgemein" @@ -223,12 +236,12 @@ msgstr "" "verwendet werden." #: general.ui:117 -msgid "Performances" -msgstr "Leistung" +msgid "Performance" +msgstr "" #: general.ui:118 -msgid "Various options to tweak the performances." -msgstr "Diverse Optionen zur Optimierung der Leistungen." +msgid "Various options to tweak the performance." +msgstr "" #: general.ui:122 msgid "Color and noise effects" @@ -236,12 +249,9 @@ msgstr "Farb- und Rauscheffekte" #: general.ui:123 msgid "" -"Permits to disable globally the use of noise and color effects, this may " -"improve performances for low-end graphic." +"Globally disables noise and color effects which may improve performance on " +"low-end systems." msgstr "" -"Ermöglicht es, die Verwendung von Rausch- und Farbeffekten global zu " -"deaktivieren, um die Performance bei leistungsschwachen Grafikkarten zu " -"verbessern." #: general.ui:135 msgid "Hack level" @@ -249,18 +259,12 @@ msgstr "Hack-Level" #: general.ui:136 msgid "" -"Changes the behaviour of dynamic blur effect.\n" -"Default value is very recommended, unless you use application blur in which " -"case “No artefact” is better.\n" -"This option will entirely disable clipped redraws from GNOME shell, and may " -"impact performances significantly but will entirely fix the blur effect." -msgstr "" -"Verändert das Verhalten des dynamischen Unschärfeeffekts.\n" -"Der Standardwert wird dringend empfohlen, außer es wird Anwendungsunschärfe " -"verwendet, in diesem Fall ist \"Keine Artefakte\" die bessere Wahl.\n" -"Mit dieser Option wird die Funktion \"clipped redraws\" der GNOME Shell " -"deaktiviert und sie kann die Leistung erheblich beeinflussen, sie wird aber " -"den Unschärffeeffekt vollständig beheben." +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." +msgstr "" #: general.ui:151 msgid "Debug" @@ -299,8 +303,8 @@ msgid "High quality" msgstr "Hohe Qualität" #: general.ui:231 -msgid "No artefact" -msgstr "Keine Artefakte" +msgid "No artifact" +msgstr "" #: menu.ui:6 msgid "Project page" @@ -371,39 +375,29 @@ msgstr "Übersicht Komponenten Stil" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " -"applications folders." +"application folders." msgstr "" -"Der halbtransparente Stil für das Dash, die Sucheinträge/-ergebnisse und die " -"Anwendungsordner." #: overview.ui:44 -msgid "Applications folder blur" -msgstr "Anwendungsordner Unschärfe" +msgid "Application folder blur" +msgstr "" #: overview.ui:45 -msgid "Makes the background of folder icons blurred." -msgstr "Macht den Hintergrund von Ordner Icons unscharf." +msgid "Makes the background of application folder dialogs blurred." +msgstr "" #: overview.ui:60 -msgid "Dialog opacity" -msgstr "Dialog Deckkraft" +msgid "Application folder dialogs style" +msgstr "" #: overview.ui:61 -msgid "The opacity of the applications folder popup." -msgstr "Die Deckkraft des Anwendungsordner-Popups." +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" -#: overview.ui:85 +#: overview.ui:79 overview.ui:88 msgid "Do not style" msgstr "Keinen Effekt anwenden" -#: overview.ui:86 -msgid "Light" -msgstr "Hell" - -#: overview.ui:87 -msgid "Dark" -msgstr "Dunkel" - #: panel.ui:5 msgid "Panel" msgstr "Panel" @@ -431,37 +425,40 @@ msgstr "Deaktiviert die Unschärfe des Panels beim Aufrufen der Übersicht." #: panel.ui:57 msgid "" -"Override the background of the panel to use a transparent one.\n" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" -"Überschreibe den Hintergrund des Panels, um einen durchsichtigen zu nutzen.\n" -"Empfohlen außer Sie wollen Ihr GNOME-Theme anpassen." -#: panel.ui:64 +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 msgid "Disable when a window is near" msgstr "Deaktiviert wenn ein Fenster in der Nähe ist" -#: panel.ui:65 +#: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." msgstr "" "Deaktiviert die Transparenz des Panels, wenn sich ein Fenster in der Nähe " "befindet." -#: panel.ui:82 +#: panel.ui:97 msgid "Compatibility" msgstr "Kompatibilität" -#: panel.ui:83 +#: panel.ui:98 msgid "Various options to provide compatibility with other extensions." msgstr "" "Verschiedene Optionen zur Sicherstellung der Kompatibilität mit anderen " "Erweiterungen." -#: panel.ui:88 +#: panel.ui:103 msgid "Hidetopbar extension" msgstr "Hidetopbar Erweiterung" -#: panel.ui:89 +#: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" "Deaktiviert die Unschärfe in der Übersicht nicht. Am besten mit statischer " @@ -479,6 +476,86 @@ msgstr "Fenster auswählen" msgid "Pick a window or select it by its classname." msgstr "Wähle ein Fenster aus oder wähle es über seinen Klassennamen." +#~ msgid "" +#~ "Add blur to the applications. This is still a beta functionnality.\n" +#~ "To get the best results possible, make sure to choose option “No " +#~ "artefact” in the “General → Hack level” preference.\n" +#~ " " +#~ msgstr "" +#~ "Füge Unschärfe zu den Anwendungen hinzu. Dies ist noch eine beta " +#~ "Funktion.\n" +#~ "Um das bestmögliche Ergebnis zu bekommen, stellen Sie sicher, dass Sie " +#~ "die Option \"Keine Artefakte\" in der Einstellung \"Allgemein -> Hack-" +#~ "Level\" ausgewählt haben.\n" +#~ " " + +#~ msgid "" +#~ "Makes the background semi-transparent, disable this to use Dash to Dock " +#~ "preferences instead." +#~ msgstr "" +#~ "Macht den Hintergrund halbtransparent, deaktivieren Sie dies, um " +#~ "stattdessen die Dash to Dock-Einstellungen zu verwenden." + +#~ msgid "Performances" +#~ msgstr "Leistung" + +#~ msgid "Various options to tweak the performances." +#~ msgstr "Diverse Optionen zur Optimierung der Leistungen." + +#~ msgid "" +#~ "Permits to disable globally the use of noise and color effects, this may " +#~ "improve performances for low-end graphic." +#~ msgstr "" +#~ "Ermöglicht es, die Verwendung von Rausch- und Farbeffekten global zu " +#~ "deaktivieren, um die Performance bei leistungsschwachen Grafikkarten zu " +#~ "verbessern." + +#~ msgid "" +#~ "Changes the behaviour of dynamic blur effect.\n" +#~ "Default value is very recommended, unless you use application blur in " +#~ "which case “No artefact” is better.\n" +#~ "This option will entirely disable clipped redraws from GNOME shell, and " +#~ "may impact performances significantly but will entirely fix the blur " +#~ "effect." +#~ msgstr "" +#~ "Verändert das Verhalten des dynamischen Unschärfeeffekts.\n" +#~ "Der Standardwert wird dringend empfohlen, außer es wird " +#~ "Anwendungsunschärfe verwendet, in diesem Fall ist \"Keine Artefakte\" die " +#~ "bessere Wahl.\n" +#~ "Mit dieser Option wird die Funktion \"clipped redraws\" der GNOME Shell " +#~ "deaktiviert und sie kann die Leistung erheblich beeinflussen, sie wird " +#~ "aber den Unschärffeeffekt vollständig beheben." + +#~ msgid "No artefact" +#~ msgstr "Keine Artefakte" + +#~ msgid "" +#~ "The semi-transparent style for the dash, search entry/results, and " +#~ "applications folders." +#~ msgstr "" +#~ "Der halbtransparente Stil für das Dash, die Sucheinträge/-ergebnisse und " +#~ "die Anwendungsordner." + +#~ msgid "Applications folder blur" +#~ msgstr "Anwendungsordner Unschärfe" + +#~ msgid "Makes the background of folder icons blurred." +#~ msgstr "Macht den Hintergrund von Ordner Icons unscharf." + +#~ msgid "Dialog opacity" +#~ msgstr "Dialog Deckkraft" + +#~ msgid "The opacity of the applications folder popup." +#~ msgstr "Die Deckkraft des Anwendungsordner-Popups." + +#~ msgid "" +#~ "Override the background of the panel to use a transparent one.\n" +#~ "Recommended unless you want to customize your GNOME theme." +#~ msgstr "" +#~ "Überschreibe den Hintergrund des Panels, um einen durchsichtigen zu " +#~ "nutzen.\n" +#~ "Empfohlen außer Sie wollen Ihr GNOME-Theme anpassen." + #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality, is " #~ "quite buggy and is only applied to the apps that ask it, or to the ones " diff --git a/po/es.po b/po/es.po index becc7356..eea157a0 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-27 21:07+0200\n" +"POT-Creation-Date: 2022-10-01 17:42+0200\n" "PO-Revision-Date: 2022-08-28 10:33+0000\n" "Last-Translator: Óscar Fernández Díaz \n" "Language-Team: Spanish \n" "Language-Team: French \n" "Language-Team: Hungarian \n" "Language-Team: Italian \n" "Language-Team: Korean \n" "Language-Team: Norwegian Bokmål \n" -"Language-Team: Dutch \n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,15 +29,11 @@ msgstr "Toepassingen vervagen (bèta)" #: applications.ui:11 msgid "" -"Add blur to the applications. This is still a beta functionnality.\n" -"To get the best results possible, make sure to choose option “No artefact” " -"in the “General → Hack level” preference.\n" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" " " msgstr "" -"Voegt vervanging toe aan toepassingen. Dit is nog bèta-functionaliteit.\n" -"Zorg ervoor dat ‘Algemeen’ → ‘Hack-niveau’ is ingesteld op ‘Geen artefacten’ " -"voor de beste resultaten.\n" -" " #: applications.ui:28 msgid "Opacity" @@ -51,11 +47,11 @@ msgstr "" "De ondoorzichtigheid van het venster boven het vervagingseffect. Een hogere " "waarde zal vensters beter leesbaar maken." -#: applications.ui:50 +#: applications.ui:51 msgid "Blur on overview" msgstr "Vervaging in overzicht" -#: applications.ui:51 +#: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." @@ -64,11 +60,11 @@ msgstr "" "het overzicht. \n" "Dit kan vertraging of prestatieproblemen veroorzaken." -#: applications.ui:66 +#: applications.ui:67 msgid "Enable all by default" msgstr "Alle standaard inschakelen" -#: applications.ui:67 +#: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." @@ -76,23 +72,23 @@ msgstr "" "Voegt standaard vervaging achter alle vensters toe.\n" "Niet aanbevolen vanwege prestatie- of stabiliteitsproblemen." -#: applications.ui:84 +#: applications.ui:85 msgid "Whitelist" msgstr "Witte lijst" -#: applications.ui:85 +#: applications.ui:86 msgid "A list of windows to blur." msgstr "Een lijst van vensters om te vervagen." -#: applications.ui:103 applications.ui:140 +#: applications.ui:104 applications.ui:141 msgid "Add Window" msgstr "Venster toevoegen" -#: applications.ui:121 +#: applications.ui:122 msgid "Blacklist" msgstr "Zwarte lijst" -#: applications.ui:122 +#: applications.ui:123 msgid "A list of windows not to blur." msgstr "Een lijst van vensters om niet te vervagen." @@ -191,22 +187,40 @@ msgstr "Achtergrond overschrijven" #: dash.ui:27 msgid "" -"Makes the background semi-transparent, disable this to use Dash to Dock " -"preferences instead." +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." msgstr "" -"De achtergrond halfdoorzichtig maken. Schakel dit uit om de voorkeuren van " -"Dash to Dock te gebruiken." -#: dash.ui:41 panel.ui:41 +#: dash.ui:50 panel.ui:41 msgid "Disable in overview" msgstr "Uitschakelen in overzicht" -#: dash.ui:42 +#: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "" "De vervaging van Dash to Dock uitschakelen wanneer het overzicht wordt " "geactiveerd." +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +msgid "Light" +msgstr "Licht" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +msgid "Dark" +msgstr "Donker" + #: general.ui:5 msgid "General" msgstr "Algemeen" @@ -222,12 +236,12 @@ msgstr "" "gebruikt." #: general.ui:117 -msgid "Performances" -msgstr "Prestaties" +msgid "Performance" +msgstr "" #: general.ui:118 -msgid "Various options to tweak the performances." -msgstr "Verschillende opties om de prestaties aan te passen." +msgid "Various options to tweak the performance." +msgstr "" #: general.ui:122 msgid "Color and noise effects" @@ -235,11 +249,9 @@ msgstr "Kleur- en ruiseffecten" #: general.ui:123 msgid "" -"Permits to disable globally the use of noise and color effects, this may " -"improve performances for low-end graphic." +"Globally disables noise and color effects which may improve performance on " +"low-end systems." msgstr "" -"Toestaan dat ruis- en kleureffecten globaal worden uitgeschakeld, dit kan de " -"prestaties voor zwakke systemen verbeteren." #: general.ui:135 msgid "Hack level" @@ -247,18 +259,12 @@ msgstr "Hack-niveau" #: general.ui:136 msgid "" -"Changes the behaviour of dynamic blur effect.\n" -"Default value is very recommended, unless you use application blur in which " -"case “No artefact” is better.\n" -"This option will entirely disable clipped redraws from GNOME shell, and may " -"impact performances significantly but will entirely fix the blur effect." -msgstr "" -"Past het gedrag van het dynamische vervagingseffect aan.\n" -"Standaardwaarde wordt zeer aanbevolen, tenzij u gebruik maakt van " -"toepassingsvervaging. In dit geval is ‘Geen artefacten’ beter.\n" -"Deze optie zal gedeeltelijke schermupdates volledig uitschakelen. Dit zal de " -"prestaties aanzienlijk verslechteren, maar zorgt er ook voor dat het " -"vervagingseffect perfect werkt." +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." +msgstr "" #: general.ui:151 msgid "Debug" @@ -297,8 +303,8 @@ msgid "High quality" msgstr "Hoge kwaliteit" #: general.ui:231 -msgid "No artefact" -msgstr "Geen artefact" +msgid "No artifact" +msgstr "" #: menu.ui:6 msgid "Project page" @@ -367,39 +373,29 @@ msgstr "Stijl van overzichtscomponenten" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " -"applications folders." +"application folders." msgstr "" -"De halfdoorzichtige stijl voor de dash, zoekbalk en -resultaten, en " -"toepassingsmappen." #: overview.ui:44 -msgid "Applications folder blur" -msgstr "Vervaging van toepassingsmappen" +msgid "Application folder blur" +msgstr "" #: overview.ui:45 -msgid "Makes the background of folder icons blurred." -msgstr "De achtergrond van mappictogrammen vervagen." +msgid "Makes the background of application folder dialogs blurred." +msgstr "" #: overview.ui:60 -msgid "Dialog opacity" -msgstr "Ondoorzichtigheid van dialogen" +msgid "Application folder dialogs style" +msgstr "" #: overview.ui:61 -msgid "The opacity of the applications folder popup." -msgstr "De ondoorzichtigheid van de toepassingsmap-popup." +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" -#: overview.ui:85 +#: overview.ui:79 overview.ui:88 msgid "Do not style" msgstr "Niet stijlen" -#: overview.ui:86 -msgid "Light" -msgstr "Licht" - -#: overview.ui:87 -msgid "Dark" -msgstr "Donker" - #: panel.ui:5 msgid "Panel" msgstr "Paneel" @@ -429,35 +425,38 @@ msgstr "" #: panel.ui:57 msgid "" -"Override the background of the panel to use a transparent one.\n" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" -"Vervangt de paneelachtergrond met een doorzichtige versie.\n" -"Aanbevolen tenzij u uw GNOME-thema wilt personaliseren." -#: panel.ui:64 +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 msgid "Disable when a window is near" msgstr "Uitschakelen wanneer een venster dichtbij is" -#: panel.ui:65 +#: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." msgstr "" "Schakelt de doorzichtigheid van het paneel uit wanneer een venster in de " "buurt komt." -#: panel.ui:82 +#: panel.ui:97 msgid "Compatibility" msgstr "Compatibiliteit" -#: panel.ui:83 +#: panel.ui:98 msgid "Various options to provide compatibility with other extensions." msgstr "Verschillende opties voor compatibiliteit met andere uitbreidingen." -#: panel.ui:88 +#: panel.ui:103 msgid "Hidetopbar extension" msgstr "Hide Top Bar-uitbreiding" -#: panel.ui:89 +#: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" "De vervaging in het overzicht niet uitschakelen, best samen gebruikt met " @@ -475,6 +474,81 @@ msgstr "Venster selecteren" msgid "Pick a window or select it by its classname." msgstr "Kies een venster of selecteer deze bij hun klassenaam." +#~ msgid "" +#~ "Add blur to the applications. This is still a beta functionnality.\n" +#~ "To get the best results possible, make sure to choose option “No " +#~ "artefact” in the “General → Hack level” preference.\n" +#~ " " +#~ msgstr "" +#~ "Voegt vervanging toe aan toepassingen. Dit is nog bèta-functionaliteit.\n" +#~ "Zorg ervoor dat ‘Algemeen’ → ‘Hack-niveau’ is ingesteld op ‘Geen " +#~ "artefacten’ voor de beste resultaten.\n" +#~ " " + +#~ msgid "" +#~ "Makes the background semi-transparent, disable this to use Dash to Dock " +#~ "preferences instead." +#~ msgstr "" +#~ "De achtergrond halfdoorzichtig maken. Schakel dit uit om de voorkeuren " +#~ "van Dash to Dock te gebruiken." + +#~ msgid "Performances" +#~ msgstr "Prestaties" + +#~ msgid "Various options to tweak the performances." +#~ msgstr "Verschillende opties om de prestaties aan te passen." + +#~ msgid "" +#~ "Permits to disable globally the use of noise and color effects, this may " +#~ "improve performances for low-end graphic." +#~ msgstr "" +#~ "Toestaan dat ruis- en kleureffecten globaal worden uitgeschakeld, dit kan " +#~ "de prestaties voor zwakke systemen verbeteren." + +#~ msgid "" +#~ "Changes the behaviour of dynamic blur effect.\n" +#~ "Default value is very recommended, unless you use application blur in " +#~ "which case “No artefact” is better.\n" +#~ "This option will entirely disable clipped redraws from GNOME shell, and " +#~ "may impact performances significantly but will entirely fix the blur " +#~ "effect." +#~ msgstr "" +#~ "Past het gedrag van het dynamische vervagingseffect aan.\n" +#~ "Standaardwaarde wordt zeer aanbevolen, tenzij u gebruik maakt van " +#~ "toepassingsvervaging. In dit geval is ‘Geen artefacten’ beter.\n" +#~ "Deze optie zal gedeeltelijke schermupdates volledig uitschakelen. Dit zal " +#~ "de prestaties aanzienlijk verslechteren, maar zorgt er ook voor dat het " +#~ "vervagingseffect perfect werkt." + +#~ msgid "No artefact" +#~ msgstr "Geen artefact" + +#~ msgid "" +#~ "The semi-transparent style for the dash, search entry/results, and " +#~ "applications folders." +#~ msgstr "" +#~ "De halfdoorzichtige stijl voor de dash, zoekbalk en -resultaten, en " +#~ "toepassingsmappen." + +#~ msgid "Applications folder blur" +#~ msgstr "Vervaging van toepassingsmappen" + +#~ msgid "Makes the background of folder icons blurred." +#~ msgstr "De achtergrond van mappictogrammen vervagen." + +#~ msgid "Dialog opacity" +#~ msgstr "Ondoorzichtigheid van dialogen" + +#~ msgid "The opacity of the applications folder popup." +#~ msgstr "De ondoorzichtigheid van de toepassingsmap-popup." + +#~ msgid "" +#~ "Override the background of the panel to use a transparent one.\n" +#~ "Recommended unless you want to customize your GNOME theme." +#~ msgstr "" +#~ "Vervangt de paneelachtergrond met een doorzichtige versie.\n" +#~ "Aanbevolen tenzij u uw GNOME-thema wilt personaliseren." + #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality, is " #~ "quite buggy and is only applied to the apps that ask it, or to the ones " diff --git a/po/pl.po b/po/pl.po index 8d4552d7..9f580464 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-27 21:07+0200\n" +"POT-Creation-Date: 2022-10-01 17:42+0200\n" "PO-Revision-Date: 2022-09-22 10:19+0000\n" "Last-Translator: Karol Lademan \n" "Language-Team: Polish Poziom hakowania\"\n" -" " #: applications.ui:28 msgid "Opacity" @@ -52,11 +48,11 @@ msgstr "" "Nieprzeźroczystość okna, na które dodano rozmycie, większa wartość będzie " "bardziej czytelna." -#: applications.ui:50 +#: applications.ui:51 msgid "Blur on overview" msgstr "Rozmycie widoku podglądu" -#: applications.ui:51 +#: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." @@ -65,11 +61,11 @@ msgstr "" "podglądu.\n" "Może powodować problemy z opóźnieniem lub wydajnością." -#: applications.ui:66 +#: applications.ui:67 msgid "Enable all by default" msgstr "Włącz domyślnie" -#: applications.ui:67 +#: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." @@ -77,23 +73,23 @@ msgstr "" "Dodaje domślnie rozmycie za wszystkimi oknami.\n" "Niepolecane z powodu na problemy z wydajnością i stabilnością." -#: applications.ui:84 +#: applications.ui:85 msgid "Whitelist" msgstr "Biała lista" -#: applications.ui:85 +#: applications.ui:86 msgid "A list of windows to blur." msgstr "Lista okien do rozmycia." -#: applications.ui:103 applications.ui:140 +#: applications.ui:104 applications.ui:141 msgid "Add Window" msgstr "Dodaj okno" -#: applications.ui:121 +#: applications.ui:122 msgid "Blacklist" msgstr "Czarna lista" -#: applications.ui:122 +#: applications.ui:123 msgid "A list of windows not to blur." msgstr "Lista okien bez rozmycia." @@ -189,22 +185,40 @@ msgstr "Nadpisz tło" #: dash.ui:27 msgid "" -"Makes the background semi-transparent, disable this to use Dash to Dock " -"preferences instead." +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." msgstr "" -"Czyni tło półprzeźroczystym; wyłącz tę opcję aby używać preferencji " -"rozszerzenia Dash to Dock." -#: dash.ui:41 panel.ui:41 +#: dash.ui:50 panel.ui:41 msgid "Disable in overview" msgstr "Wyłączone w ekranie podglądu" -#: dash.ui:42 +#: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "" "Wyłącza rozmazywanie rozszerzenia Dash to Dock podczas przechodzenia do " "ekranu podglądu." +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +msgid "Light" +msgstr "Lekki" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +msgid "Dark" +msgstr "Ciemny" + #: general.ui:5 msgid "General" msgstr "Ogólne" @@ -220,12 +234,12 @@ msgstr "" "komponenty." #: general.ui:117 -msgid "Performances" -msgstr "Wydajność" +msgid "Performance" +msgstr "" #: general.ui:118 -msgid "Various options to tweak the performances." -msgstr "Różne opcje dostrajania wydajności." +msgid "Various options to tweak the performance." +msgstr "" #: general.ui:122 msgid "Color and noise effects" @@ -233,11 +247,9 @@ msgstr "Efekty koloru i szumu" #: general.ui:123 msgid "" -"Permits to disable globally the use of noise and color effects, this may " -"improve performances for low-end graphic." +"Globally disables noise and color effects which may improve performance on " +"low-end systems." msgstr "" -"Pozwala globalnie wyłączyć efekt szumu i koloru; może poprawić to wydajność " -"na słabszych graficznie urządzeniach." #: general.ui:135 msgid "Hack level" @@ -245,17 +257,12 @@ msgstr "Poziom hakowania" #: general.ui:136 msgid "" -"Changes the behaviour of dynamic blur effect.\n" -"Default value is very recommended, unless you use application blur in which " -"case “No artefact” is better.\n" -"This option will entirely disable clipped redraws from GNOME shell, and may " -"impact performances significantly but will entirely fix the blur effect." -msgstr "" -"Zmienia zachowanie efektu dynamicznego rozmycia.\n" -"Wartość domyślna jest bardzo zalecana, chyba że używasz rozmycia aplikacji, " -"w którym to przypadku lepsza jest opcja \"Zero artefaktów\".\n" -"Ta opcja całkowicie wyłączy przycięte przerysowania z powłoki GNOME, co może " -"znacząco wpłynąć na wydajność, ale całkowicie naprawi efekt rozmycia." +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." +msgstr "" #: general.ui:151 msgid "Debug" @@ -294,8 +301,8 @@ msgid "High quality" msgstr "Wysoka jakość" #: general.ui:231 -msgid "No artefact" -msgstr "Zero artefaktów" +msgid "No artifact" +msgstr "" #: menu.ui:6 msgid "Project page" @@ -364,38 +371,29 @@ msgstr "Styl komponentów podglądu" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " -"applications folders." +"application folders." msgstr "" -"Półprzeźroczysty styl dasha, wyszukiwania i wyników oraz folderów aplikacji." #: overview.ui:44 -msgid "Applications folder blur" -msgstr "Rozmazywanie folderów aplikacji" +msgid "Application folder blur" +msgstr "" #: overview.ui:45 -msgid "Makes the background of folder icons blurred." -msgstr "Sprawia, że tło folderów aplikacji jest rozmazywane." +msgid "Makes the background of application folder dialogs blurred." +msgstr "" #: overview.ui:60 -msgid "Dialog opacity" -msgstr "Nieprzeźroczystość dialogów" +msgid "Application folder dialogs style" +msgstr "" #: overview.ui:61 -msgid "The opacity of the applications folder popup." -msgstr "Nieprzeźroczystość okienka folderów aplikacji." +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" -#: overview.ui:85 +#: overview.ui:79 overview.ui:88 msgid "Do not style" msgstr "Nie styluj" -#: overview.ui:86 -msgid "Light" -msgstr "Lekki" - -#: overview.ui:87 -msgid "Dark" -msgstr "Ciemny" - #: panel.ui:5 msgid "Panel" msgstr "Pasek" @@ -423,33 +421,36 @@ msgstr "Wyłącza rozmazywanie paska podczas przechodzenia do ekranu podglądu." #: panel.ui:57 msgid "" -"Override the background of the panel to use a transparent one.\n" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" -"Zastąp tło panelu, aby użyć przezroczystego.\n" -"Zalecane, chyba że chcesz dostosować swój motyw GNOME." -#: panel.ui:64 +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 msgid "Disable when a window is near" msgstr "Wyłącz, gdy okno znajduje się w pobliżu" -#: panel.ui:65 +#: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." msgstr "Wyłącza przezroczystość panelu, gdy w jego pobliżu znajduje się okno." -#: panel.ui:82 +#: panel.ui:97 msgid "Compatibility" msgstr "Kompatybilność" -#: panel.ui:83 +#: panel.ui:98 msgid "Various options to provide compatibility with other extensions." msgstr "Różne opcje zachowania kompatybilności z innymi rozszerzeniami." -#: panel.ui:88 +#: panel.ui:103 msgid "Hidetopbar extension" msgstr "Rozszerzenie Hidetopbar" -#: panel.ui:89 +#: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" "Nie wyłącza rozmazywania w ekranie podglądu; opcja najbardziej przydatna " @@ -467,6 +468,80 @@ msgstr "Wybierz okno" msgid "Pick a window or select it by its classname." msgstr "Wybierz okno lub zaznacz je po nazwie klasy." +#~ msgid "" +#~ "Add blur to the applications. This is still a beta functionnality.\n" +#~ "To get the best results possible, make sure to choose option “No " +#~ "artefact” in the “General → Hack level” preference.\n" +#~ " " +#~ msgstr "" +#~ "Dodaj rozmycie tła do aplikacji. To wciąż testowa funkcjonalność.\n" +#~ "Aby otrzymać najlepsze możliwe efekty, upewij się, że wybrano opcje " +#~ "\"Zero artefaktów\" w ustawieniach \"Główne -> Poziom hakowania\"\n" +#~ " " + +#~ msgid "" +#~ "Makes the background semi-transparent, disable this to use Dash to Dock " +#~ "preferences instead." +#~ msgstr "" +#~ "Czyni tło półprzeźroczystym; wyłącz tę opcję aby używać preferencji " +#~ "rozszerzenia Dash to Dock." + +#~ msgid "Performances" +#~ msgstr "Wydajność" + +#~ msgid "Various options to tweak the performances." +#~ msgstr "Różne opcje dostrajania wydajności." + +#~ msgid "" +#~ "Permits to disable globally the use of noise and color effects, this may " +#~ "improve performances for low-end graphic." +#~ msgstr "" +#~ "Pozwala globalnie wyłączyć efekt szumu i koloru; może poprawić to " +#~ "wydajność na słabszych graficznie urządzeniach." + +#~ msgid "" +#~ "Changes the behaviour of dynamic blur effect.\n" +#~ "Default value is very recommended, unless you use application blur in " +#~ "which case “No artefact” is better.\n" +#~ "This option will entirely disable clipped redraws from GNOME shell, and " +#~ "may impact performances significantly but will entirely fix the blur " +#~ "effect." +#~ msgstr "" +#~ "Zmienia zachowanie efektu dynamicznego rozmycia.\n" +#~ "Wartość domyślna jest bardzo zalecana, chyba że używasz rozmycia " +#~ "aplikacji, w którym to przypadku lepsza jest opcja \"Zero artefaktów\".\n" +#~ "Ta opcja całkowicie wyłączy przycięte przerysowania z powłoki GNOME, co " +#~ "może znacząco wpłynąć na wydajność, ale całkowicie naprawi efekt rozmycia." + +#~ msgid "No artefact" +#~ msgstr "Zero artefaktów" + +#~ msgid "" +#~ "The semi-transparent style for the dash, search entry/results, and " +#~ "applications folders." +#~ msgstr "" +#~ "Półprzeźroczysty styl dasha, wyszukiwania i wyników oraz folderów " +#~ "aplikacji." + +#~ msgid "Applications folder blur" +#~ msgstr "Rozmazywanie folderów aplikacji" + +#~ msgid "Makes the background of folder icons blurred." +#~ msgstr "Sprawia, że tło folderów aplikacji jest rozmazywane." + +#~ msgid "Dialog opacity" +#~ msgstr "Nieprzeźroczystość dialogów" + +#~ msgid "The opacity of the applications folder popup." +#~ msgstr "Nieprzeźroczystość okienka folderów aplikacji." + +#~ msgid "" +#~ "Override the background of the panel to use a transparent one.\n" +#~ "Recommended unless you want to customize your GNOME theme." +#~ msgstr "" +#~ "Zastąp tło panelu, aby użyć przezroczystego.\n" +#~ "Zalecane, chyba że chcesz dostosować swój motyw GNOME." + #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality, is " #~ "quite buggy and is only applied to the apps that ask it, or to the ones " diff --git a/po/pt.po b/po/pt.po index 72f6f2b2..25f1f323 100644 --- a/po/pt.po +++ b/po/pt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-27 21:07+0200\n" +"POT-Creation-Date: 2022-10-01 17:42+0200\n" "PO-Revision-Date: 2022-09-10 15:39-0300\n" "Last-Translator: Natália Mendes Carlos \n" "Language-Team: Brazilian Portuguese \n" @@ -29,14 +29,11 @@ msgstr "Desfocar aplicações (beta)" #: applications.ui:11 msgid "" -"Add blur to the applications. This is still a beta functionnality.\n" -"To get the best results possible, make sure to choose option “No artefact” " -"in the “General → Hack level” preference.\n" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" " " msgstr "" -"Adiciona o desfoque às aplicações. É ainda uma funcionalidade beta.\n" -"Para obter os melhores resultados possíveis, escolha a opção \"Sem " -"artefato\" em \"Geral→ nível Hack\" preferência." #: applications.ui:28 msgid "Opacity" @@ -49,11 +46,11 @@ msgid "" msgstr "" "A opacidade da janela com o efeito de desfoque, um valor maior será legível." -#: applications.ui:50 +#: applications.ui:51 msgid "Blur on overview" msgstr "Desfoque geral" -#: applications.ui:51 +#: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." @@ -62,11 +59,11 @@ msgstr "" "por um todo.\n" "Isso pode causar lentidão relativa à performance." -#: applications.ui:26 +#: applications.ui:67 msgid "Enable all by default" msgstr "Habilitar tudo por padrão" -#: applications.ui:67 +#: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." @@ -74,23 +71,23 @@ msgstr "" "Adiciona desfoque por trás de todas as janelas por padrão.\n" "Não é recomendada por conta de problemas com estabilidade e performance." -#: applications.ui:43 +#: applications.ui:85 msgid "Whitelist" msgstr "Lista liberada" -#: applications.ui:44 +#: applications.ui:86 msgid "A list of windows to blur." msgstr "Lista de janelas para desfocar." -#: applications.ui:62 applications.ui:99 +#: applications.ui:104 applications.ui:141 msgid "Add Window" msgstr "Adicionar janela" -#: applications.ui:80 +#: applications.ui:122 msgid "Blacklist" msgstr "Lista bloqueada" -#: applications.ui:81 +#: applications.ui:123 msgid "A list of windows not to blur." msgstr "Lista de janelas que não serão desfocadas." @@ -181,26 +178,44 @@ msgstr "Desfoque do Dash to Dock" msgid "Blur the background of the Dash to Dock extension, if it is used." msgstr "Desfoca o plano de fundo da extensão Dash to Dock, caso seja usado." -#: dash.ui:26 +#: dash.ui:26 panel.ui:56 msgid "Override background" msgstr "Sobrepor plano de fundo" #: dash.ui:27 msgid "" -"Makes the background semi-transparent, disable this to use Dash to Dock " -"preferences instead." +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." msgstr "" -"Deixa o plano de fundo semitransparente. Desative isso para utilizar as " -"preferências do Dash to Dock." -#: dash.ui:41 panel.ui:41 +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." +msgstr "" + +#: dash.ui:50 panel.ui:41 msgid "Disable in overview" msgstr "Desativar na visão geral" -#: dash.ui:42 +#: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "Desativa o desfoque do Dash to Dock ao entrar na visão geral." +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +msgid "Light" +msgstr "Claro" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +msgid "Dark" +msgstr "Escuro" + #: general.ui:5 msgid "General" msgstr "Geral" @@ -216,12 +231,12 @@ msgstr "" "padrão." #: general.ui:117 -msgid "Performances" -msgstr "Desempenhos" +msgid "Performance" +msgstr "" #: general.ui:118 -msgid "Various options to tweak the performances." -msgstr "Várias opções para ajustar o desempenho." +msgid "Various options to tweak the performance." +msgstr "" #: general.ui:122 msgid "Color and noise effects" @@ -229,11 +244,9 @@ msgstr "Efeitos de cor e ruído" #: general.ui:123 msgid "" -"Permits to disable globally the use of noise and color effects, this may " -"improve performances for low-end graphic." +"Globally disables noise and color effects which may improve performance on " +"low-end systems." msgstr "" -"Desativa globalmente o uso de efeitos de ruído e cor. Isso pode melhorar o " -"desempenho em dispositivos mais fracos." #: general.ui:135 msgid "Hack level" @@ -241,24 +254,18 @@ msgstr "Nível do hack" #: general.ui:136 msgid "" -"Changes the behaviour of dynamic blur effect.\n" -"Default value is very recommended, unless you use application blur in which " -"case “No artefact” is better.\n" -"This option will entirely disable clipped redraws from GNOME shell, and may " -"impact performances significantly but will entirely fix the blur effect." -msgstr "" -"Mudanças no comportamento do efeito de desfoque dinâmico.\n" -"Valor padrão é fortemente recomendado, a menos que você use a aplicação de " -"desfoque, caso em que \"Sem artefato\" é melhor.\n" -"Essa opção desabilitará completamente imagens recortadas do GNOME shell, o " -"que pode impactar na performance significativamente, mas concertará o efeito " -"de desfoque." - -#: general.ui:149 +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." +msgstr "" + +#: general.ui:151 msgid "Debug" msgstr "Depuração" -#: general.ui:150 +#: general.ui:152 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." @@ -266,7 +273,7 @@ msgstr "" "Deixa os logs da extensão no modo verbose. Ative quando precisar reportar um " "problema." -#: menu.ui:6 +#: general.ui:167 msgid "Reset preferences" msgstr "Redefinir preferências" @@ -279,35 +286,35 @@ msgstr "" msgid "Reset" msgstr "Redefinir" -#: general.ui:189 +#: general.ui:228 msgid "High performances" msgstr "Alta performance" -#: general.ui:190 +#: general.ui:229 msgid "Default" msgstr "Padrão" -#: general.ui:191 +#: general.ui:230 msgid "High quality" msgstr "Alta qualidade" #: general.ui:231 -msgid "No artefact" -msgstr "Sem artefato" +msgid "No artifact" +msgstr "" -#: menu.ui:12 +#: menu.ui:6 msgid "Project page" msgstr "Página do projeto" -#: menu.ui:16 +#: menu.ui:10 msgid "Report a Bug" msgstr "Reportar um Bug" -#: menu.ui:20 +#: menu.ui:14 msgid "License" msgstr "Licença" -#: menu.ui:24 +#: menu.ui:18 msgid "Donate" msgstr "Doar" @@ -364,39 +371,29 @@ msgstr "Estilo dos componentes da visão geral" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " -"applications folders." +"application folders." msgstr "" -"O efeito semitransparente para a dash, barra de pesquisa/resultados e pastas " -"de aplicativos." #: overview.ui:44 -msgid "Applications folder blur" -msgstr "Desfoque nas pastas de aplicativos" +msgid "Application folder blur" +msgstr "" #: overview.ui:45 -msgid "Makes the background of folder icons blurred." -msgstr "Torna o plano de fundo da pasta de aplicativos desfocado." +msgid "Makes the background of application folder dialogs blurred." +msgstr "" #: overview.ui:60 -msgid "Dialog opacity" -msgstr "Opacidade do diálogo" +msgid "Application folder dialogs style" +msgstr "" #: overview.ui:61 -msgid "The opacity of the applications folder popup." -msgstr "A opacidade do popup da pasta de aplicativos." +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" -#: overview.ui:85 +#: overview.ui:79 overview.ui:88 msgid "Do not style" msgstr "Não estilizar" -#: overview.ui:86 -msgid "Light" -msgstr "Claro" - -#: overview.ui:87 -msgid "Dark" -msgstr "Escuro" - #: panel.ui:5 msgid "Panel" msgstr "Painel" @@ -424,33 +421,36 @@ msgstr "Desativa o desfoque do painel quando entrar na visão geral." #: panel.ui:57 msgid "" -"Override the background of the panel to use a transparent one.\n" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" -"Anula o plano de fundo de painel com outro transparente.\n" -"Recomendado a menos que você queira customizar o tema do seu GNOME." -#: panel.ui:56 +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 msgid "Disable when a window is near" msgstr "Desativar quando uma janela estiver próxima" -#: panel.ui:65 +#: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." msgstr "Desabilita a transparência do painel quando uma janela está próxima" -#: panel.ui:73 +#: panel.ui:97 msgid "Compatibility" msgstr "Compatibilidade" -#: panel.ui:74 +#: panel.ui:98 msgid "Various options to provide compatibility with other extensions." msgstr "Várias opções para providenciar compatibilidade com outras extensões." -#: panel.ui:78 +#: panel.ui:103 msgid "Hidetopbar extension" msgstr "Extensão Hidetopbar" -#: panel.ui:79 +#: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" "Não desativa o desfoque na visão geral. Funciona melhor com o desfoque " @@ -468,32 +468,103 @@ msgstr "Selecionar janela" msgid "Pick a window or select it by its classname." msgstr "Escolha uma janela ou a selecione pela sua classname." -#: applications.ui:11 -msgid "" -"Add blur to the applications. This is still a beta functionnality, is quite " -"buggy and is only applied to the apps that ask it, or to the ones set in the " -"whitelist below." -msgstr "" -"Adiciona desfoque às aplicações. Esta funcionalidade ainda está em \"beta\", " -"possui diversos bugs e é aplicada somente às aplicações que solicitarem ou " -"as que estiverem na lista abaixo." - -#: applications.ui:27 -msgid "" -"Adds blur behind all windows by default. Not recommended because of " -"performance and stability issues." -msgstr "" -"Adiciona desfoque atrás de todas as janelas por padrão. Não recomendado pois " -"pode ocasionar problemas de estabilidade e performance." - -#: general.ui:136 -msgid "" -"Changes the behaviour of dynamic blur effect. Default value is very " -"recommended." -msgstr "" -"Muda o comportamento do efeito dinâmico de desfoque. O valor padrão é " -"recomendado." - -#: panel.ui:57 -msgid "Disables the blur from the panel when a window is near it." -msgstr "Desativa o desfoque do painel quando uma janela estiver próxima a ele." +#~ msgid "" +#~ "Add blur to the applications. This is still a beta functionnality.\n" +#~ "To get the best results possible, make sure to choose option “No " +#~ "artefact” in the “General → Hack level” preference.\n" +#~ " " +#~ msgstr "" +#~ "Adiciona o desfoque às aplicações. É ainda uma funcionalidade beta.\n" +#~ "Para obter os melhores resultados possíveis, escolha a opção \"Sem " +#~ "artefato\" em \"Geral→ nível Hack\" preferência." + +#~ msgid "" +#~ "Makes the background semi-transparent, disable this to use Dash to Dock " +#~ "preferences instead." +#~ msgstr "" +#~ "Deixa o plano de fundo semitransparente. Desative isso para utilizar as " +#~ "preferências do Dash to Dock." + +#~ msgid "Performances" +#~ msgstr "Desempenhos" + +#~ msgid "Various options to tweak the performances." +#~ msgstr "Várias opções para ajustar o desempenho." + +#~ msgid "" +#~ "Permits to disable globally the use of noise and color effects, this may " +#~ "improve performances for low-end graphic." +#~ msgstr "" +#~ "Desativa globalmente o uso de efeitos de ruído e cor. Isso pode melhorar " +#~ "o desempenho em dispositivos mais fracos." + +#~ msgid "" +#~ "Changes the behaviour of dynamic blur effect.\n" +#~ "Default value is very recommended, unless you use application blur in " +#~ "which case “No artefact” is better.\n" +#~ "This option will entirely disable clipped redraws from GNOME shell, and " +#~ "may impact performances significantly but will entirely fix the blur " +#~ "effect." +#~ msgstr "" +#~ "Mudanças no comportamento do efeito de desfoque dinâmico.\n" +#~ "Valor padrão é fortemente recomendado, a menos que você use a aplicação " +#~ "de desfoque, caso em que \"Sem artefato\" é melhor.\n" +#~ "Essa opção desabilitará completamente imagens recortadas do GNOME shell, " +#~ "o que pode impactar na performance significativamente, mas concertará o " +#~ "efeito de desfoque." + +#~ msgid "No artefact" +#~ msgstr "Sem artefato" + +#~ msgid "" +#~ "The semi-transparent style for the dash, search entry/results, and " +#~ "applications folders." +#~ msgstr "" +#~ "O efeito semitransparente para a dash, barra de pesquisa/resultados e " +#~ "pastas de aplicativos." + +#~ msgid "Applications folder blur" +#~ msgstr "Desfoque nas pastas de aplicativos" + +#~ msgid "Makes the background of folder icons blurred." +#~ msgstr "Torna o plano de fundo da pasta de aplicativos desfocado." + +#~ msgid "Dialog opacity" +#~ msgstr "Opacidade do diálogo" + +#~ msgid "The opacity of the applications folder popup." +#~ msgstr "A opacidade do popup da pasta de aplicativos." + +#~ msgid "" +#~ "Override the background of the panel to use a transparent one.\n" +#~ "Recommended unless you want to customize your GNOME theme." +#~ msgstr "" +#~ "Anula o plano de fundo de painel com outro transparente.\n" +#~ "Recomendado a menos que você queira customizar o tema do seu GNOME." + +#~ msgid "" +#~ "Add blur to the applications. This is still a beta functionnality, is " +#~ "quite buggy and is only applied to the apps that ask it, or to the ones " +#~ "set in the whitelist below." +#~ msgstr "" +#~ "Adiciona desfoque às aplicações. Esta funcionalidade ainda está em " +#~ "\"beta\", possui diversos bugs e é aplicada somente às aplicações que " +#~ "solicitarem ou as que estiverem na lista abaixo." + +#~ msgid "" +#~ "Adds blur behind all windows by default. Not recommended because of " +#~ "performance and stability issues." +#~ msgstr "" +#~ "Adiciona desfoque atrás de todas as janelas por padrão. Não recomendado " +#~ "pois pode ocasionar problemas de estabilidade e performance." + +#~ msgid "" +#~ "Changes the behaviour of dynamic blur effect. Default value is very " +#~ "recommended." +#~ msgstr "" +#~ "Muda o comportamento do efeito dinâmico de desfoque. O valor padrão é " +#~ "recomendado." + +#~ msgid "Disables the blur from the panel when a window is near it." +#~ msgstr "" +#~ "Desativa o desfoque do painel quando uma janela estiver próxima a ele." diff --git a/po/ru.po b/po/ru.po index 18d1bf8a..20861d51 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-27 21:07+0200\n" +"POT-Creation-Date: 2022-10-01 17:42+0200\n" "PO-Revision-Date: 2022-08-28 13:45+0300\n" "Last-Translator: Aleksandr Melman \n" "Language-Team: \n" @@ -29,15 +29,11 @@ msgstr "Размытие приложений (бета)" #: applications.ui:11 msgid "" -"Add blur to the applications. This is still a beta functionnality.\n" -"To get the best results possible, make sure to choose option “No artefact” " -"in the “General → Hack level” preference.\n" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" " " msgstr "" -"Добавляет размытие к приложениям. Это все еще бета-функционал.\n" -"Чтобы получить наилучшие результаты, убедитесь, что выбрали опцию \"Без " -"артефактов\" в настройке \"Общие → Уровень взлома\".\n" -" " #: applications.ui:28 msgid "Opacity" @@ -51,11 +47,11 @@ msgstr "" "Непрозрачность окна поверх эффекта размытия, более высокое значение будет " "более четким." -#: applications.ui:50 +#: applications.ui:51 msgid "Blur on overview" msgstr "Размытие в Обзоре" -#: applications.ui:51 +#: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." @@ -63,11 +59,11 @@ msgstr "" "Заставляет размытие правильно отображаться на всех рабочих столах в Обзоре.\n" "Это может вызвать некоторые задержки или проблемы с производительностью." -#: applications.ui:66 +#: applications.ui:67 msgid "Enable all by default" msgstr "Включить для всех по умолчанию" -#: applications.ui:67 +#: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." @@ -75,23 +71,23 @@ msgstr "" "По умолчанию добавляет размытие для всех окон.\n" "Не рекомендуется из-за проблем с производительностью и стабильностью." -#: applications.ui:84 +#: applications.ui:85 msgid "Whitelist" msgstr "Белый список" -#: applications.ui:85 +#: applications.ui:86 msgid "A list of windows to blur." msgstr "Список окон для размытия." -#: applications.ui:103 applications.ui:140 +#: applications.ui:104 applications.ui:141 msgid "Add Window" msgstr "Добавить окно" -#: applications.ui:121 +#: applications.ui:122 msgid "Blacklist" msgstr "Черный список" -#: applications.ui:122 +#: applications.ui:123 msgid "A list of windows not to blur." msgstr "Список окон, которые не нужно размывать." @@ -188,20 +184,38 @@ msgstr "Переопределить фон" #: dash.ui:27 msgid "" -"Makes the background semi-transparent, disable this to use Dash to Dock " -"preferences instead." +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." msgstr "" -"Делает фон полупрозрачным, отключите его, чтобы вместо него использовать " -"настройки Dash to Dock." -#: dash.ui:41 panel.ui:41 +#: dash.ui:50 panel.ui:41 msgid "Disable in overview" msgstr "Отключить в Обзоре" -#: dash.ui:42 +#: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "Отключает размытие из Dash to Dock при входе в Обзор." +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +msgid "Light" +msgstr "Светлый" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +msgid "Dark" +msgstr "Темный" + #: general.ui:5 msgid "General" msgstr "Общие" @@ -216,12 +230,12 @@ msgstr "" "Глобальные настройки размытия, используемые всеми компонентами по умолчанию." #: general.ui:117 -msgid "Performances" -msgstr "Производительность" +msgid "Performance" +msgstr "" #: general.ui:118 -msgid "Various options to tweak the performances." -msgstr "Различные опции для настройки производительности." +msgid "Various options to tweak the performance." +msgstr "" #: general.ui:122 msgid "Color and noise effects" @@ -229,11 +243,9 @@ msgstr "Цветовые и шумовые эффекты" #: general.ui:123 msgid "" -"Permits to disable globally the use of noise and color effects, this may " -"improve performances for low-end graphic." +"Globally disables noise and color effects which may improve performance on " +"low-end systems." msgstr "" -"Позволяют глобально отключить использование шумовых и цветовых эффектов, это " -"может улучшить производительность для графики низкого уровня." #: general.ui:135 msgid "Hack level" @@ -241,18 +253,12 @@ msgstr "Уровень взлома" #: general.ui:136 msgid "" -"Changes the behaviour of dynamic blur effect.\n" -"Default value is very recommended, unless you use application blur in which " -"case “No artefact” is better.\n" -"This option will entirely disable clipped redraws from GNOME shell, and may " -"impact performances significantly but will entirely fix the blur effect." -msgstr "" -"Изменяет поведение эффекта динамического размытия.\n" -"Значение по умолчанию очень рекомендуется, если только вы не используете " -"размытие приложений, в этом случае лучше выбрать \"Без артефактов\".\n" -"Эта опция полностью отключает обрезанные перерисовки из оболочки GNOME, что " -"может значительно повлиять на производительность, но полностью исправляет " -"эффект размытия." +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." +msgstr "" #: general.ui:151 msgid "Debug" @@ -291,8 +297,8 @@ msgid "High quality" msgstr "Высокое качество" #: general.ui:231 -msgid "No artefact" -msgstr "Без артефактов" +msgid "No artifact" +msgstr "" #: menu.ui:6 msgid "Project page" @@ -361,38 +367,29 @@ msgstr "Стилизация компонентов Обзора" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " -"applications folders." +"application folders." msgstr "" -"Делает панель приложений, поиск и значок папки приложений полупрозрачными." #: overview.ui:44 -msgid "Applications folder blur" -msgstr "Размытие папки приложений" +msgid "Application folder blur" +msgstr "" #: overview.ui:45 -msgid "Makes the background of folder icons blurred." -msgstr "Делает фон значков папок размытым." +msgid "Makes the background of application folder dialogs blurred." +msgstr "" #: overview.ui:60 -msgid "Dialog opacity" -msgstr "Непрозрачность диалогового окна" +msgid "Application folder dialogs style" +msgstr "" #: overview.ui:61 -msgid "The opacity of the applications folder popup." -msgstr "Непрозрачность всплывающего окна папки приложений." +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" -#: overview.ui:85 +#: overview.ui:79 overview.ui:88 msgid "Do not style" msgstr "Не стилизовать" -#: overview.ui:86 -msgid "Light" -msgstr "Светлый" - -#: overview.ui:87 -msgid "Dark" -msgstr "Темный" - #: panel.ui:5 msgid "Panel" msgstr "Верхняя панель" @@ -421,34 +418,37 @@ msgstr "Отключает размытие верхней панели при #: panel.ui:57 msgid "" -"Override the background of the panel to use a transparent one.\n" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" -"Переопределяет фон верхней панели, чтобы использовать прозрачный фон.\n" -"Рекомендуется, если вы не хотите настраивать тему GNOME." -#: panel.ui:64 +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 msgid "Disable when a window is near" msgstr "Отключить, когда рядом находится окно" -#: panel.ui:65 +#: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." msgstr "" "Отключает прозрачность верхней панели, когда рядом с ней находится окно." -#: panel.ui:82 +#: panel.ui:97 msgid "Compatibility" msgstr "Совместимость" -#: panel.ui:83 +#: panel.ui:98 msgid "Various options to provide compatibility with other extensions." msgstr "Различные опции для обеспечения совместимости с другими расширениями." -#: panel.ui:88 +#: panel.ui:103 msgid "Hidetopbar extension" msgstr "Расширение \"Hidetopbar\"" -#: panel.ui:89 +#: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" "Не отключает размытие в Обзоре, лучше всего использовать со статическим " @@ -466,6 +466,80 @@ msgstr "Выбрать окно" msgid "Pick a window or select it by its classname." msgstr "Выберите окно или выделите его по имени класса." +#~ msgid "" +#~ "Add blur to the applications. This is still a beta functionnality.\n" +#~ "To get the best results possible, make sure to choose option “No " +#~ "artefact” in the “General → Hack level” preference.\n" +#~ " " +#~ msgstr "" +#~ "Добавляет размытие к приложениям. Это все еще бета-функционал.\n" +#~ "Чтобы получить наилучшие результаты, убедитесь, что выбрали опцию \"Без " +#~ "артефактов\" в настройке \"Общие → Уровень взлома\".\n" +#~ " " + +#~ msgid "" +#~ "Makes the background semi-transparent, disable this to use Dash to Dock " +#~ "preferences instead." +#~ msgstr "" +#~ "Делает фон полупрозрачным, отключите его, чтобы вместо него использовать " +#~ "настройки Dash to Dock." + +#~ msgid "Performances" +#~ msgstr "Производительность" + +#~ msgid "Various options to tweak the performances." +#~ msgstr "Различные опции для настройки производительности." + +#~ msgid "" +#~ "Permits to disable globally the use of noise and color effects, this may " +#~ "improve performances for low-end graphic." +#~ msgstr "" +#~ "Позволяют глобально отключить использование шумовых и цветовых эффектов, " +#~ "это может улучшить производительность для графики низкого уровня." + +#~ msgid "" +#~ "Changes the behaviour of dynamic blur effect.\n" +#~ "Default value is very recommended, unless you use application blur in " +#~ "which case “No artefact” is better.\n" +#~ "This option will entirely disable clipped redraws from GNOME shell, and " +#~ "may impact performances significantly but will entirely fix the blur " +#~ "effect." +#~ msgstr "" +#~ "Изменяет поведение эффекта динамического размытия.\n" +#~ "Значение по умолчанию очень рекомендуется, если только вы не используете " +#~ "размытие приложений, в этом случае лучше выбрать \"Без артефактов\".\n" +#~ "Эта опция полностью отключает обрезанные перерисовки из оболочки GNOME, " +#~ "что может значительно повлиять на производительность, но полностью " +#~ "исправляет эффект размытия." + +#~ msgid "No artefact" +#~ msgstr "Без артефактов" + +#~ msgid "" +#~ "The semi-transparent style for the dash, search entry/results, and " +#~ "applications folders." +#~ msgstr "" +#~ "Делает панель приложений, поиск и значок папки приложений полупрозрачными." + +#~ msgid "Applications folder blur" +#~ msgstr "Размытие папки приложений" + +#~ msgid "Makes the background of folder icons blurred." +#~ msgstr "Делает фон значков папок размытым." + +#~ msgid "Dialog opacity" +#~ msgstr "Непрозрачность диалогового окна" + +#~ msgid "The opacity of the applications folder popup." +#~ msgstr "Непрозрачность всплывающего окна папки приложений." + +#~ msgid "" +#~ "Override the background of the panel to use a transparent one.\n" +#~ "Recommended unless you want to customize your GNOME theme." +#~ msgstr "" +#~ "Переопределяет фон верхней панели, чтобы использовать прозрачный фон.\n" +#~ "Рекомендуется, если вы не хотите настраивать тему GNOME." + #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality, is " #~ "quite buggy and is only applied to the apps that ask it, or to the ones " diff --git a/po/sv.po b/po/sv.po index ef9c144e..6d3d2819 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-27 21:07+0200\n" +"POT-Creation-Date: 2022-10-01 17:42+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -26,9 +26,9 @@ msgstr "" #: applications.ui:11 msgid "" -"Add blur to the applications. This is still a beta functionnality.\n" -"To get the best results possible, make sure to choose option “No artefact” " -"in the “General → Hack level” preference.\n" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" " " msgstr "" @@ -42,43 +42,43 @@ msgid "" "more legible." msgstr "" -#: applications.ui:50 +#: applications.ui:51 msgid "Blur on overview" msgstr "" -#: applications.ui:51 +#: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" -#: applications.ui:66 +#: applications.ui:67 msgid "Enable all by default" msgstr "" -#: applications.ui:67 +#: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" -#: applications.ui:84 +#: applications.ui:85 msgid "Whitelist" msgstr "" -#: applications.ui:85 +#: applications.ui:86 msgid "A list of windows to blur." msgstr "" -#: applications.ui:103 applications.ui:140 +#: applications.ui:104 applications.ui:141 msgid "Add Window" msgstr "" -#: applications.ui:121 +#: applications.ui:122 msgid "Blacklist" msgstr "" -#: applications.ui:122 +#: applications.ui:123 msgid "A list of windows not to blur." msgstr "" @@ -165,18 +165,38 @@ msgstr "" #: dash.ui:27 msgid "" -"Makes the background semi-transparent, disable this to use Dash to Dock " -"preferences instead." +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." msgstr "" -#: dash.ui:41 panel.ui:41 +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." +msgstr "" + +#: dash.ui:50 panel.ui:41 msgid "Disable in overview" msgstr "" -#: dash.ui:42 +#: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "" +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +msgid "Light" +msgstr "" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +msgid "Dark" +msgstr "" + #: general.ui:5 msgid "General" msgstr "" @@ -190,11 +210,11 @@ msgid "Global blur preferences, used by all components by default." msgstr "" #: general.ui:117 -msgid "Performances" +msgid "Performance" msgstr "" #: general.ui:118 -msgid "Various options to tweak the performances." +msgid "Various options to tweak the performance." msgstr "" #: general.ui:122 @@ -203,8 +223,8 @@ msgstr "" #: general.ui:123 msgid "" -"Permits to disable globally the use of noise and color effects, this may " -"improve performances for low-end graphic." +"Globally disables noise and color effects which may improve performance on " +"low-end systems." msgstr "" #: general.ui:135 @@ -213,11 +233,11 @@ msgstr "" #: general.ui:136 msgid "" -"Changes the behaviour of dynamic blur effect.\n" -"Default value is very recommended, unless you use application blur in which " -"case “No artefact” is better.\n" -"This option will entirely disable clipped redraws from GNOME shell, and may " -"impact performances significantly but will entirely fix the blur effect." +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." msgstr "" #: general.ui:151 @@ -255,7 +275,7 @@ msgid "High quality" msgstr "" #: general.ui:231 -msgid "No artefact" +msgid "No artifact" msgstr "" #: menu.ui:6 @@ -321,37 +341,29 @@ msgstr "" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " -"applications folders." +"application folders." msgstr "" #: overview.ui:44 -msgid "Applications folder blur" +msgid "Application folder blur" msgstr "" #: overview.ui:45 -msgid "Makes the background of folder icons blurred." +msgid "Makes the background of application folder dialogs blurred." msgstr "" #: overview.ui:60 -msgid "Dialog opacity" +msgid "Application folder dialogs style" msgstr "" #: overview.ui:61 -msgid "The opacity of the applications folder popup." +msgid "The semi-transparent style for the application folder dialogs." msgstr "" -#: overview.ui:85 +#: overview.ui:79 overview.ui:88 msgid "Do not style" msgstr "" -#: overview.ui:86 -msgid "Light" -msgstr "" - -#: overview.ui:87 -msgid "Dark" -msgstr "" - #: panel.ui:5 msgid "Panel" msgstr "" @@ -378,31 +390,36 @@ msgstr "" #: panel.ui:57 msgid "" -"Override the background of the panel to use a transparent one.\n" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" -#: panel.ui:64 +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 msgid "Disable when a window is near" msgstr "" -#: panel.ui:65 +#: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." msgstr "" -#: panel.ui:82 +#: panel.ui:97 msgid "Compatibility" msgstr "" -#: panel.ui:83 +#: panel.ui:98 msgid "Various options to provide compatibility with other extensions." msgstr "" -#: panel.ui:88 +#: panel.ui:103 msgid "Hidetopbar extension" msgstr "" -#: panel.ui:89 +#: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" diff --git a/po/ta.po b/po/ta.po index 93eb6977..93499f8f 100644 --- a/po/ta.po +++ b/po/ta.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-27 21:07+0200\n" +"POT-Creation-Date: 2022-10-01 17:42+0200\n" "PO-Revision-Date: 2022-09-19 04:15+0000\n" "Last-Translator: Arun \n" -"Language-Team: Tamil \n" +"Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,15 +29,11 @@ msgstr "பயன்பாடுகள் மங்கலாக்குதல #: applications.ui:11 msgid "" -"Add blur to the applications. This is still a beta functionnality.\n" -"To get the best results possible, make sure to choose option “No artefact” " -"in the “General → Hack level” preference.\n" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" " " msgstr "" -"பயன்பாடுகளில் மங்கலைச் சேர்க்கவும். இது இன்னும் பீட்டா செயல்பாடுதான்.\n" -"சாத்தியமான சிறந்த முடிவுகளைப் பெற, \"பொது → ஹேக் லெவல்\" விருப்பத்தேர்வில் " -"\"கலைப்பொருள் இல்லை\" என்ற விருப்பத்தைத் தேர்ந்தெடுக்கவும்.\n" -" " #: applications.ui:28 msgid "Opacity" @@ -48,52 +44,50 @@ msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" -"மங்கலான விளைவின் மேல் உள்ள சாளரத்தின் ஒளிபுகாநிலை, அதிக மதிப்பு இன்னும் " -"தெளிவாகத் தெரியும்." +"மங்கலான விளைவின் மேல் உள்ள சாளரத்தின் ஒளிபுகாநிலை, அதிக மதிப்பு இன்னும் தெளிவாகத் " +"தெரியும்." -#: applications.ui:50 +#: applications.ui:51 msgid "Blur on overview" msgstr "மேலோட்டப் பார்வையில் மங்கலாக்கு" -#: applications.ui:51 +#: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" -"மேலோட்டத்தில் அனைத்து பணியிடங்களிலும் மங்கலானது சரியாகக் காட்டப்பட வேண்டும்." -"\n" +"மேலோட்டத்தில் அனைத்து பணியிடங்களிலும் மங்கலானது சரியாகக் காட்டப்பட வேண்டும்.\n" "இது சில தாமதம் அல்லது செயல்திறன் சிக்கல்களை ஏற்படுத்தலாம்." -#: applications.ui:66 +#: applications.ui:67 msgid "Enable all by default" msgstr "முன்னிருப்பாக அனைத்தையும் இயக்கு" -#: applications.ui:67 +#: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" "முன்னிருப்பாக எல்லா சாளரங்களுக்கும் பின்னால் மங்கலைச் சேர்க்கிறது.\n" -"செயல்திறன் மற்றும் நிலைப்புத்தன்மை பிரச்சனைகள் காரணமாக " -"பரிந்துரைக்கப்படவில்லை." +"செயல்திறன் மற்றும் நிலைப்புத்தன்மை பிரச்சனைகள் காரணமாக பரிந்துரைக்கப்படவில்லை." -#: applications.ui:84 +#: applications.ui:85 msgid "Whitelist" msgstr "அனுமதிப்பட்டியல்" -#: applications.ui:85 +#: applications.ui:86 msgid "A list of windows to blur." msgstr "மங்கலாக்க வேண்டிய சாளரங்களின் பட்டியல்." -#: applications.ui:103 applications.ui:140 +#: applications.ui:104 applications.ui:141 msgid "Add Window" msgstr "சாளரத்தைச் சேர்க்கவும்" -#: applications.ui:121 +#: applications.ui:122 msgid "Blacklist" msgstr "பிளாக்லிஸ்ட்" -#: applications.ui:122 +#: applications.ui:123 msgid "A list of windows not to blur." msgstr "மங்கலாக்கப்படக் கூடாத சாளரங்களின் பட்டியல்." @@ -186,20 +180,38 @@ msgstr "பின்னணியை மேலெழுதவும்" #: dash.ui:27 msgid "" -"Makes the background semi-transparent, disable this to use Dash to Dock " -"preferences instead." +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." msgstr "" -"பின்னணியை அரை-வெளிப்படையாக்குகிறது, அதற்குப் பதிலாக டாஷ் டு டாக் விருப்பங்களைப் " -"பயன்படுத்த இதை முடக்கவும்." -#: dash.ui:41 panel.ui:41 +#: dash.ui:50 panel.ui:41 msgid "Disable in overview" msgstr "மேலோட்டத்தில் முடக்கு" -#: dash.ui:42 +#: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "மேலோட்டத்தை உள்ளிடும்போது டாஷ் முதல் டாக் வரை மங்கலை முடக்குகிறது." +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +msgid "Light" +msgstr "ஒளி" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +msgid "Dark" +msgstr "இருள்" + #: general.ui:5 msgid "General" msgstr "பொது" @@ -214,12 +226,12 @@ msgstr "" "உலகளாவிய மங்கலான விருப்பத்தேர்வுகள், இயல்பாகவே அனைத்து கூறுகளாலும் பயன்படுத்தப்படுகின்றன." #: general.ui:117 -msgid "Performances" -msgstr "செயல்திறன்" +msgid "Performance" +msgstr "" #: general.ui:118 -msgid "Various options to tweak the performances." -msgstr "செயல்திறனை மாற்ற பல்வேறு விருப்பங்கள்." +msgid "Various options to tweak the performance." +msgstr "" #: general.ui:122 msgid "Color and noise effects" @@ -227,11 +239,9 @@ msgstr "நிறம் மற்றும் இரைச்சல் விள #: general.ui:123 msgid "" -"Permits to disable globally the use of noise and color effects, this may " -"improve performances for low-end graphic." +"Globally disables noise and color effects which may improve performance on " +"low-end systems." msgstr "" -"சத்தம் மற்றும் வண்ண விளைவுகளின் பயன்பாட்டை உலகளவில் முடக்குவதற்கு அனுமதி அளிக்கிறது, இது " -"குறைந்த-இறுதி வரைகலையின் செயல்திறனை மேம்படுத்தலாம்." #: general.ui:135 msgid "Hack level" @@ -239,18 +249,12 @@ msgstr "ஹேக் லெவல்" #: general.ui:136 msgid "" -"Changes the behaviour of dynamic blur effect.\n" -"Default value is very recommended, unless you use application blur in which " -"case “No artefact” is better.\n" -"This option will entirely disable clipped redraws from GNOME shell, and may " -"impact performances significantly but will entirely fix the blur effect." +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." msgstr "" -"டைனமிக் மங்கலான விளைவின் நடத்தையை மாற்றுகிறது.\n" -"இயல்புநிலை மதிப்பு மிகவும் பரிந்துரைக்கப்படுகிறது, நீங்கள் பயன்பாட்டு " -"மங்கலைப் பயன்படுத்தாவிட்டால், \"கலைப்பொருள் இல்லை\" சிறந்தது.\n" -"இந்த விருப்பம் க்னோம் ஷெல்லில் இருந்து க்ளிப் செய்யப்பட்ட மறு வரைவுகளை " -"முழுவதுமாக முடக்கும், மேலும் செயல்திறனை கணிசமாக பாதிக்கலாம் ஆனால் மங்கலான " -"விளைவை முழுவதுமாக சரிசெய்யும்." #: general.ui:151 msgid "Debug" @@ -289,8 +293,8 @@ msgid "High quality" msgstr "உயர் தரம்" #: general.ui:231 -msgid "No artefact" -msgstr "கலைப்பொருள் இல்லை" +msgid "No artifact" +msgstr "" #: menu.ui:6 msgid "Project page" @@ -355,39 +359,29 @@ msgstr "மேலோட்டக் கூறுகளின் பாணி" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " -"applications folders." +"application folders." msgstr "" -"கோடு, தேடல் நுழைவு/முடிவுகள் மற்றும் பயன்பாடுகள் கோப்புறைகளுக்கான அரை-வெளிப்படையான " -"பாணி." #: overview.ui:44 -msgid "Applications folder blur" -msgstr "பயன்பாடுகளின் கோப்புறை மங்கலாகிறது" +msgid "Application folder blur" +msgstr "" #: overview.ui:45 -msgid "Makes the background of folder icons blurred." -msgstr "கோப்புறை ஐகான்களின் பின்னணியை மங்கலாக்குகிறது." +msgid "Makes the background of application folder dialogs blurred." +msgstr "" #: overview.ui:60 -msgid "Dialog opacity" -msgstr "உரையாடல் ஒளிபுகாநிலை" +msgid "Application folder dialogs style" +msgstr "" #: overview.ui:61 -msgid "The opacity of the applications folder popup." -msgstr "பயன்பாடுகள் கோப்புறை பாப்அப்பின் ஒளிபுகாநிலை." +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" -#: overview.ui:85 +#: overview.ui:79 overview.ui:88 msgid "Do not style" msgstr "ஸ்டைல் வேண்டாம்" -#: overview.ui:86 -msgid "Light" -msgstr "ஒளி" - -#: overview.ui:87 -msgid "Dark" -msgstr "இருள்" - #: panel.ui:5 msgid "Panel" msgstr "பேனல்" @@ -414,33 +408,36 @@ msgstr "மேலோட்டப் பார்வையை உள்ளிட #: panel.ui:57 msgid "" -"Override the background of the panel to use a transparent one.\n" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" -"வெளிப்படையான ஒன்றைப் பயன்படுத்த பேனலின் பின்னணியை மேலெழுதவும்.\n" -"உங்கள் க்னோம் தீம் தனிப்பயனாக்க விரும்பினால் தவிர பரிந்துரைக்கப்படுகிறது." -#: panel.ui:64 +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 msgid "Disable when a window is near" msgstr "ஒரு சாளரம் அருகில் இருக்கும்போது முடக்கவும்" -#: panel.ui:65 +#: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." msgstr "சாளரம் அருகில் இருக்கும்போது பேனலின் வெளிப்படைத்தன்மையை முடக்குகிறது." -#: panel.ui:82 +#: panel.ui:97 msgid "Compatibility" msgstr "இணக்கத்தன்மை" -#: panel.ui:83 +#: panel.ui:98 msgid "Various options to provide compatibility with other extensions." msgstr "பிற நீட்டிப்புகளுடன் இணக்கத்தன்மையை வழங்க பல்வேறு விருப்பங்கள்." -#: panel.ui:88 +#: panel.ui:103 msgid "Hidetopbar extension" msgstr "ஹைடோப்பார் நீட்டிப்பு" -#: panel.ui:89 +#: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "மேலோட்டத்தில் மங்கலை முடக்காது, நிலையான மங்கலுடன் சிறப்பாகப் பயன்படுத்தப்படுகிறது." @@ -456,6 +453,81 @@ msgstr "சாளரத்தைத் தேர்ந்தெடுக்க msgid "Pick a window or select it by its classname." msgstr "ஒரு சாளரத்தைத் தேர்ந்தெடுக்கவும் அல்லது அதன் வகுப்புப் பெயரால் தேர்ந்தெடுக்கவும்." +#~ msgid "" +#~ "Add blur to the applications. This is still a beta functionnality.\n" +#~ "To get the best results possible, make sure to choose option “No " +#~ "artefact” in the “General → Hack level” preference.\n" +#~ " " +#~ msgstr "" +#~ "பயன்பாடுகளில் மங்கலைச் சேர்க்கவும். இது இன்னும் பீட்டா செயல்பாடுதான்.\n" +#~ "சாத்தியமான சிறந்த முடிவுகளைப் பெற, \"பொது → ஹேக் லெவல்\" விருப்பத்தேர்வில் " +#~ "\"கலைப்பொருள் இல்லை\" என்ற விருப்பத்தைத் தேர்ந்தெடுக்கவும்.\n" +#~ " " + +#~ msgid "" +#~ "Makes the background semi-transparent, disable this to use Dash to Dock " +#~ "preferences instead." +#~ msgstr "" +#~ "பின்னணியை அரை-வெளிப்படையாக்குகிறது, அதற்குப் பதிலாக டாஷ் டு டாக் விருப்பங்களைப் " +#~ "பயன்படுத்த இதை முடக்கவும்." + +#~ msgid "Performances" +#~ msgstr "செயல்திறன்" + +#~ msgid "Various options to tweak the performances." +#~ msgstr "செயல்திறனை மாற்ற பல்வேறு விருப்பங்கள்." + +#~ msgid "" +#~ "Permits to disable globally the use of noise and color effects, this may " +#~ "improve performances for low-end graphic." +#~ msgstr "" +#~ "சத்தம் மற்றும் வண்ண விளைவுகளின் பயன்பாட்டை உலகளவில் முடக்குவதற்கு அனுமதி அளிக்கிறது, " +#~ "இது குறைந்த-இறுதி வரைகலையின் செயல்திறனை மேம்படுத்தலாம்." + +#~ msgid "" +#~ "Changes the behaviour of dynamic blur effect.\n" +#~ "Default value is very recommended, unless you use application blur in " +#~ "which case “No artefact” is better.\n" +#~ "This option will entirely disable clipped redraws from GNOME shell, and " +#~ "may impact performances significantly but will entirely fix the blur " +#~ "effect." +#~ msgstr "" +#~ "டைனமிக் மங்கலான விளைவின் நடத்தையை மாற்றுகிறது.\n" +#~ "இயல்புநிலை மதிப்பு மிகவும் பரிந்துரைக்கப்படுகிறது, நீங்கள் பயன்பாட்டு மங்கலைப் " +#~ "பயன்படுத்தாவிட்டால், \"கலைப்பொருள் இல்லை\" சிறந்தது.\n" +#~ "இந்த விருப்பம் க்னோம் ஷெல்லில் இருந்து க்ளிப் செய்யப்பட்ட மறு வரைவுகளை முழுவதுமாக " +#~ "முடக்கும், மேலும் செயல்திறனை கணிசமாக பாதிக்கலாம் ஆனால் மங்கலான விளைவை முழுவதுமாக " +#~ "சரிசெய்யும்." + +#~ msgid "No artefact" +#~ msgstr "கலைப்பொருள் இல்லை" + +#~ msgid "" +#~ "The semi-transparent style for the dash, search entry/results, and " +#~ "applications folders." +#~ msgstr "" +#~ "கோடு, தேடல் நுழைவு/முடிவுகள் மற்றும் பயன்பாடுகள் கோப்புறைகளுக்கான அரை-வெளிப்படையான " +#~ "பாணி." + +#~ msgid "Applications folder blur" +#~ msgstr "பயன்பாடுகளின் கோப்புறை மங்கலாகிறது" + +#~ msgid "Makes the background of folder icons blurred." +#~ msgstr "கோப்புறை ஐகான்களின் பின்னணியை மங்கலாக்குகிறது." + +#~ msgid "Dialog opacity" +#~ msgstr "உரையாடல் ஒளிபுகாநிலை" + +#~ msgid "The opacity of the applications folder popup." +#~ msgstr "பயன்பாடுகள் கோப்புறை பாப்அப்பின் ஒளிபுகாநிலை." + +#~ msgid "" +#~ "Override the background of the panel to use a transparent one.\n" +#~ "Recommended unless you want to customize your GNOME theme." +#~ msgstr "" +#~ "வெளிப்படையான ஒன்றைப் பயன்படுத்த பேனலின் பின்னணியை மேலெழுதவும்.\n" +#~ "உங்கள் க்னோம் தீம் தனிப்பயனாக்க விரும்பினால் தவிர பரிந்துரைக்கப்படுகிறது." + #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality, is " #~ "quite buggy and is only applied to the apps that ask it, or to the ones " diff --git a/po/tr.po b/po/tr.po index b0d7fda5..a02ec4c4 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-27 21:07+0200\n" +"POT-Creation-Date: 2022-10-01 17:42+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -26,9 +26,9 @@ msgstr "Uygulama bulanıklığı (beta)" #: applications.ui:11 msgid "" -"Add blur to the applications. This is still a beta functionnality.\n" -"To get the best results possible, make sure to choose option “No artefact” " -"in the “General → Hack level” preference.\n" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" " " msgstr "" @@ -42,43 +42,43 @@ msgid "" "more legible." msgstr "" -#: applications.ui:50 +#: applications.ui:51 msgid "Blur on overview" msgstr "" -#: applications.ui:51 +#: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" -#: applications.ui:66 +#: applications.ui:67 msgid "Enable all by default" msgstr "" -#: applications.ui:67 +#: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" -#: applications.ui:84 +#: applications.ui:85 msgid "Whitelist" msgstr "Beyaz Liste" -#: applications.ui:85 +#: applications.ui:86 msgid "A list of windows to blur." msgstr "" -#: applications.ui:103 applications.ui:140 +#: applications.ui:104 applications.ui:141 msgid "Add Window" msgstr "" -#: applications.ui:121 +#: applications.ui:122 msgid "Blacklist" msgstr "" -#: applications.ui:122 +#: applications.ui:123 msgid "A list of windows not to blur." msgstr "" @@ -175,20 +175,38 @@ msgstr "Arkaplanı geçersiz kıl" #: dash.ui:27 msgid "" -"Makes the background semi-transparent, disable this to use Dash to Dock " -"preferences instead." +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" msgstr "" -"Arka planı yarı saydam yapar, Dash to Dock tercihlerini kullanmak için bunu " -"devre dışı bırakın." -#: dash.ui:41 panel.ui:41 +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." +msgstr "" + +#: dash.ui:50 panel.ui:41 msgid "Disable in overview" msgstr "Genel görünümde devre dışı bırak" -#: dash.ui:42 +#: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "Genel bakışa geçişte Dash to Dock bulanıklığını devre dışı bırakır." +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +msgid "Light" +msgstr "Aydınlık" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +msgid "Dark" +msgstr "Karanlık" + #: general.ui:5 msgid "General" msgstr "Genel" @@ -204,12 +222,12 @@ msgstr "" "tercihleri." #: general.ui:117 -msgid "Performances" -msgstr "Performans" +msgid "Performance" +msgstr "" #: general.ui:118 -msgid "Various options to tweak the performances." -msgstr "Performansı ayarlamak için çeşitli seçenekler." +msgid "Various options to tweak the performance." +msgstr "" #: general.ui:122 msgid "Color and noise effects" @@ -217,11 +235,9 @@ msgstr "Renk ve pürüz efektleri" #: general.ui:123 msgid "" -"Permits to disable globally the use of noise and color effects, this may " -"improve performances for low-end graphic." +"Globally disables noise and color effects which may improve performance on " +"low-end systems." msgstr "" -"Gürültü ve renk efektlerinin kullanımını genel olarak devre dışı bırakmaya " -"izin verir; bu, düşük kaliteli grafikler için performansları iyileştirebilir." #: general.ui:135 msgid "Hack level" @@ -229,11 +245,11 @@ msgstr "Hack seviyesi" #: general.ui:136 msgid "" -"Changes the behaviour of dynamic blur effect.\n" -"Default value is very recommended, unless you use application blur in which " -"case “No artefact” is better.\n" -"This option will entirely disable clipped redraws from GNOME shell, and may " -"impact performances significantly but will entirely fix the blur effect." +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." msgstr "" #: general.ui:151 @@ -273,7 +289,7 @@ msgid "High quality" msgstr "Yüksek kalite" #: general.ui:231 -msgid "No artefact" +msgid "No artifact" msgstr "" #: menu.ui:6 @@ -344,38 +360,29 @@ msgstr "Genel görünüm bileşen stili" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " -"applications folders." +"application folders." msgstr "" -"Rıhtım, arama girişi/sonuçları ve uygulama klasörleri için yarı saydam stil." #: overview.ui:44 -msgid "Applications folder blur" -msgstr "Uygulama klasörü bulanıklığı" +msgid "Application folder blur" +msgstr "" #: overview.ui:45 -msgid "Makes the background of folder icons blurred." -msgstr "Klasör simgelerinin arka planını bulanıklaştırır." +msgid "Makes the background of application folder dialogs blurred." +msgstr "" #: overview.ui:60 -msgid "Dialog opacity" -msgstr "İletişim penceresi opaklığı" +msgid "Application folder dialogs style" +msgstr "" #: overview.ui:61 -msgid "The opacity of the applications folder popup." -msgstr "Uygulama klasörü açılır penceresinin opaklığı." +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" -#: overview.ui:85 +#: overview.ui:79 overview.ui:88 msgid "Do not style" msgstr "Stil yapma" -#: overview.ui:86 -msgid "Light" -msgstr "Aydınlık" - -#: overview.ui:87 -msgid "Dark" -msgstr "Karanlık" - #: panel.ui:5 msgid "Panel" msgstr "Panel" @@ -402,31 +409,36 @@ msgstr "Genel görünüme girerken panelden bulanıklığı kaldırır." #: panel.ui:57 msgid "" -"Override the background of the panel to use a transparent one.\n" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" -#: panel.ui:64 +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 msgid "Disable when a window is near" msgstr "Bir pencere yakınken devre dışı bırak" -#: panel.ui:65 +#: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." msgstr "" -#: panel.ui:82 +#: panel.ui:97 msgid "Compatibility" msgstr "Uyumluluk" -#: panel.ui:83 +#: panel.ui:98 msgid "Various options to provide compatibility with other extensions." msgstr "Diğer uzantılarla uyumluluğu sağlamak için çeşitli seçenekler." -#: panel.ui:88 +#: panel.ui:103 msgid "Hidetopbar extension" msgstr "Hidetopbar uzantısı" -#: panel.ui:89 +#: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" "Genel görünümde bulanıklığı devre dışı bırakmaz, en iyi statik bulanıklıkla " @@ -444,6 +456,46 @@ msgstr "" msgid "Pick a window or select it by its classname." msgstr "" +#~ msgid "" +#~ "Makes the background semi-transparent, disable this to use Dash to Dock " +#~ "preferences instead." +#~ msgstr "" +#~ "Arka planı yarı saydam yapar, Dash to Dock tercihlerini kullanmak için " +#~ "bunu devre dışı bırakın." + +#~ msgid "Performances" +#~ msgstr "Performans" + +#~ msgid "Various options to tweak the performances." +#~ msgstr "Performansı ayarlamak için çeşitli seçenekler." + +#~ msgid "" +#~ "Permits to disable globally the use of noise and color effects, this may " +#~ "improve performances for low-end graphic." +#~ msgstr "" +#~ "Gürültü ve renk efektlerinin kullanımını genel olarak devre dışı " +#~ "bırakmaya izin verir; bu, düşük kaliteli grafikler için performansları " +#~ "iyileştirebilir." + +#~ msgid "" +#~ "The semi-transparent style for the dash, search entry/results, and " +#~ "applications folders." +#~ msgstr "" +#~ "Rıhtım, arama girişi/sonuçları ve uygulama klasörleri için yarı saydam " +#~ "stil." + +#~ msgid "Applications folder blur" +#~ msgstr "Uygulama klasörü bulanıklığı" + +#~ msgid "Makes the background of folder icons blurred." +#~ msgstr "Klasör simgelerinin arka planını bulanıklaştırır." + +#~ msgid "Dialog opacity" +#~ msgstr "İletişim penceresi opaklığı" + +#~ msgid "The opacity of the applications folder popup." +#~ msgstr "Uygulama klasörü açılır penceresinin opaklığı." + #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality, is " #~ "quite buggy and is only applied to the apps that ask it, or to the ones " diff --git a/po/zh_Hans.po b/po/zh_Hans.po index 317aaffc..907cf3ad 100644 --- a/po/zh_Hans.po +++ b/po/zh_Hans.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-27 21:07+0200\n" +"POT-Creation-Date: 2022-10-01 17:42+0200\n" "PO-Revision-Date: 2022-09-02 01:23+0000\n" "Last-Translator: yangyangdaji <1504305527@qq.com>\n" "Language-Team: Chinese (Simplified) Date: Sat, 1 Oct 2022 17:48:59 +0200 Subject: [PATCH 053/212] Try fixing #352 --- src/components/panel.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/panel.js b/src/components/panel.js index 6342fc6b..5df17564 100644 --- a/src/components/panel.js +++ b/src/components/panel.js @@ -142,6 +142,8 @@ var PanelBlur = class PanelBlur { } let monitor = this.find_monitor_for(panel); + if (!monitor) + return; let background_parent = new St.Widget({ name: 'topbar-blurred-background-parent', @@ -320,6 +322,8 @@ var PanelBlur = class PanelBlur { let panel_box = actors.widgets.panel_box; let background = actors.widgets.background; let monitor = this.find_monitor_for(panel); + if (!monitor) + return; let [width, height] = panel_box.get_size(); background.width = width; From c412499e2d4e3152dd802431e496bfcba774231d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sat, 1 Oct 2022 18:30:56 +0200 Subject: [PATCH 054/212] Update readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index af247a96..cdd422d4 100644 --- a/README.md +++ b/README.md @@ -126,6 +126,7 @@ gsettings set org.gnome.desktop.background picture-opacity 99 && gsettings set o The current extension supports these GNOME Shell versions: +- 43 -- `master` branch - 42 -- `master` branch Up to version 29, Blur my Shell supports GNOME Shell versions: From 985635dbf428d68a17fe5ff18376bb6fbf37fa18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sat, 1 Oct 2022 18:31:57 +0200 Subject: [PATCH 055/212] Version 44 --- metadata.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata.json b/metadata.json index f237a493..d83c5871 100644 --- a/metadata.json +++ b/metadata.json @@ -11,5 +11,5 @@ "original-authors": [ "me@aunetx.dev" ], - "version": 43 -} + "version": 44 +} \ No newline at end of file From d171a27c5a68d020229b59d978f17a690aa129fc Mon Sep 17 00:00:00 2001 From: Alexmelman88 <99257010+Alexmelman88@users.noreply.github.com> Date: Sat, 1 Oct 2022 20:51:44 +0300 Subject: [PATCH 056/212] Add files via upload --- po/ru.po | 46 ++++++++++++++++++++++++++++++++-------------- 1 file changed, 32 insertions(+), 14 deletions(-) diff --git a/po/ru.po b/po/ru.po index 20861d51..83095495 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-10-01 17:42+0200\n" -"PO-Revision-Date: 2022-08-28 13:45+0300\n" +"PO-Revision-Date: 2022-10-01 20:38+0300\n" "Last-Translator: Aleksandr Melman \n" "Language-Team: \n" "Language: ru_RU\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" -"X-Generator: Poedit 3.1\n" +"X-Generator: Poedit 3.1.1\n" #: applications.ui:5 msgid "Applications" @@ -34,6 +34,10 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Добавляет размытие к приложениям. Это все еще бета-версия функции.\n" +"Чтобы получить наилучшие результаты, убедитесь, что выбрали опцию \"Без " +"артефактов\" в настройках \"Общие → Уровень взлома\".\n" +" " #: applications.ui:28 msgid "Opacity" @@ -187,14 +191,16 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Делает фон прозрачным или полупрозрачным, отключите его, чтобы вместо него " +"использовать настройки Dash to Dock." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Стиль фона" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "Прозрачный/полупрозрачный стиль для фона панели приложений." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" @@ -206,7 +212,7 @@ msgstr "Отключает размытие из Dash to Dock при входе #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "Прозрачный" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" @@ -231,11 +237,11 @@ msgstr "" #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Производительность" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Различные опции для настройки производительности." #: general.ui:122 msgid "Color and noise effects" @@ -246,6 +252,8 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"Глобально отключает шумовые и цветовые эффекты, что может повысить " +"производительность на системах низкого класса." #: general.ui:135 msgid "Hack level" @@ -259,6 +267,13 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Изменяет поведение эффекта динамического размытия.\n" +"Настоятельно рекомендуется использовать значение по умолчанию, если вы не " +"используете размытие приложения, в противном случае лучше выбрать значение " +"\"Без артефактов\".\n" +"Эта опция полностью отключает обрезанные перерисовки в оболочке GNOME, что " +"может значительно повлиять на производительность, но полностью исправляет " +"эффект размытия." #: general.ui:151 msgid "Debug" @@ -298,7 +313,7 @@ msgstr "Высокое качество" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Без артефактов" #: menu.ui:6 msgid "Project page" @@ -368,23 +383,23 @@ msgstr "Стилизация компонентов Обзора" msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." -msgstr "" +msgstr "Полупрозрачный стиль для панели приложений, поиска и папок приложений." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Размытие папки приложений" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "Делает фон диалоговых окон папок приложений размытым." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Стиль диалоговых окон папок приложений" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." -msgstr "" +msgstr "Полупрозрачный стиль для диалоговых окон папок приложений." #: overview.ui:79 overview.ui:88 msgid "Do not style" @@ -422,10 +437,13 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Переопределяет фон верхней панели, чтобы использовать прозрачный или " +"полупрозрачный фон.\n" +"Рекомендуется, если вы не хотите настраивать тему GNOME." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "Прозрачный/полупрозрачный стиль для фона панели." #: panel.ui:79 msgid "Disable when a window is near" From bc0169436810a638d6f758e5b11c9a43e64f285f Mon Sep 17 00:00:00 2001 From: Alexmelman88 <99257010+Alexmelman88@users.noreply.github.com> Date: Sat, 1 Oct 2022 21:01:22 +0300 Subject: [PATCH 057/212] Add files via upload --- po/ru.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ru.po b/po/ru.po index 83095495..4e0c2199 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-10-01 17:42+0200\n" -"PO-Revision-Date: 2022-10-01 20:38+0300\n" +"PO-Revision-Date: 2022-10-01 20:58+0300\n" "Last-Translator: Aleksandr Melman \n" "Language-Team: \n" "Language: ru_RU\n" @@ -269,7 +269,7 @@ msgid "" msgstr "" "Изменяет поведение эффекта динамического размытия.\n" "Настоятельно рекомендуется использовать значение по умолчанию, если вы не " -"используете размытие приложения, в противном случае лучше выбрать значение " +"используете размытие приложений, в противном случае лучше выбрать значение " "\"Без артефактов\".\n" "Эта опция полностью отключает обрезанные перерисовки в оболочке GNOME, что " "может значительно повлиять на производительность, но полностью исправляет " @@ -443,7 +443,7 @@ msgstr "" #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "Прозрачный/полупрозрачный стиль для фона панели." +msgstr "Прозрачный/полупрозрачный стиль для фона верхней панели." #: panel.ui:79 msgid "Disable when a window is near" From 49b4840715b1f986f4f3ffd7d5a9eb274fe145b9 Mon Sep 17 00:00:00 2001 From: vikdevelop Date: Sat, 1 Oct 2022 17:08:53 +0000 Subject: [PATCH 058/212] Translated using Weblate (Czech) Currently translated at 100.0% (92 of 92 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/cs/ --- po/cs.po | 176 +++++++++++++++++++++++++++++-------------------------- 1 file changed, 94 insertions(+), 82 deletions(-) diff --git a/po/cs.po b/po/cs.po index acaa31e7..785824e6 100644 --- a/po/cs.po +++ b/po/cs.po @@ -47,11 +47,11 @@ msgstr "" "Neprůhlednost okna v horní části efektu rozmazání, vyšší hodnota bude " "čitelnější." -#: applications.ui:51 +#: applications.ui:51 applications.ui:50 msgid "Blur on overview" msgstr "Rozostření v přehledu" -#: applications.ui:52 +#: applications.ui:52 applications.ui:51 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." @@ -59,11 +59,11 @@ msgstr "" "Vynutí správné zobrazení rozmazání na všech pracovních plochách v přehledu.\n" "To může způsobit určité zpoždění nebo problémy s výkonem." -#: applications.ui:67 +#: applications.ui:67 applications.ui:66 msgid "Enable all by default" msgstr "Ve výchozím nastavení povolit vše" -#: applications.ui:68 +#: applications.ui:68 applications.ui:67 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." @@ -71,23 +71,24 @@ msgstr "" "Ve výchozím nastavení přidá rozmazání za všechna okna.\n" "Nedoporučuje se kvůli problémům s výkonem a stabilitou." -#: applications.ui:85 +#: applications.ui:85 applications.ui:84 msgid "Whitelist" msgstr "Seznam povolených" -#: applications.ui:86 +#: applications.ui:86 applications.ui:85 msgid "A list of windows to blur." msgstr "Seznam oken k rozmazání." -#: applications.ui:104 applications.ui:141 +#: applications.ui:104 applications.ui:141 applications.ui:103 +#: applications.ui:140 msgid "Add Window" msgstr "Přidat okno" -#: applications.ui:122 +#: applications.ui:122 applications.ui:121 msgid "Blacklist" msgstr "Černá listina" -#: applications.ui:123 +#: applications.ui:123 applications.ui:122 msgid "A list of windows not to blur." msgstr "Seznam oken, která se nemají rozmazávat." @@ -195,11 +196,11 @@ msgstr "" msgid "The transparent/semi-transparent style for the dock background." msgstr "" -#: dash.ui:50 panel.ui:41 +#: dash.ui:50 panel.ui:41 dash.ui:41 msgid "Disable in overview" msgstr "Zakázat v přehledu" -#: dash.ui:51 +#: dash.ui:51 dash.ui:42 msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "Zakáže rozmazání z Dashe do doku při vstupu do přehledu." @@ -207,11 +208,11 @@ msgstr "Zakáže rozmazání z Dashe do doku při vstupu do přehledu." msgid "Transparent" msgstr "" -#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 overview.ui:86 msgid "Light" msgstr "Světlý" -#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 overview.ui:87 msgid "Dark" msgstr "Tmavý" @@ -278,7 +279,7 @@ msgstr "Resetovat předvolby" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "Nevratně resetuje předvolby funkce Blur my Shell." +msgstr "Nevratně resetuje předvolby Blur my Shell." #: general.ui:187 msgid "Reset" @@ -386,7 +387,7 @@ msgstr "" msgid "The semi-transparent style for the application folder dialogs." msgstr "" -#: overview.ui:79 overview.ui:88 +#: overview.ui:79 overview.ui:88 overview.ui:85 msgid "Do not style" msgstr "Nestylizujte" @@ -425,27 +426,27 @@ msgstr "" msgid "The transparent/semi-transparent style for the panel background." msgstr "" -#: panel.ui:79 +#: panel.ui:79 panel.ui:64 msgid "Disable when a window is near" msgstr "Zakázat, když je okno v blízkosti" -#: panel.ui:80 +#: panel.ui:80 panel.ui:65 msgid "Disables the transparency of the panel when a window is near it." msgstr "Zakáže průhlednost panelu, pokud se v jeho blízkosti nachází okno." -#: panel.ui:97 +#: panel.ui:97 panel.ui:82 msgid "Compatibility" msgstr "Kompatibilita" -#: panel.ui:98 +#: panel.ui:98 panel.ui:83 msgid "Various options to provide compatibility with other extensions." msgstr "Různé možnosti pro zajištění kompatibility s jinými rozšířeními." -#: panel.ui:103 +#: panel.ui:103 panel.ui:88 msgid "Hidetopbar extension" msgstr "Rozšíření Skrýt horní lištu" -#: panel.ui:104 +#: panel.ui:104 panel.ui:89 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" "Nevypíná rozostření v přehledu, nejlépe se používá se statickým rozostřením." @@ -462,79 +463,90 @@ msgstr "Vybrat okno" msgid "Pick a window or select it by its classname." msgstr "Vyberte okno nebo jej vyberte podle názvu třídy." -#~ msgid "" -#~ "Add blur to the applications. This is still a beta functionnality.\n" -#~ "To get the best results possible, make sure to choose option “No " -#~ "artefact” in the “General → Hack level” preference.\n" -#~ " " -#~ msgstr "" -#~ "Přidejte do aplikací rozostření. Jedná se stále beta funkci.\n" -#~ "Chcete-li získat co nejlepší výsledky, vyberte možnost „Žádný artefakt“ v " -#~ "předvolbě „Obecné → Úroveň hackování“.\n" -#~ " " +#: applications.ui:11 +msgid "" +"Add blur to the applications. This is still a beta functionnality.\n" +"To get the best results possible, make sure to choose option “No artefact” " +"in the “General → Hack level” preference.\n" +" " +msgstr "" +"Přidejte do aplikací rozostření. Jedná se stále beta funkci.\n" +"Chcete-li získat co nejlepší výsledky, vyberte možnost „Žádný artefakt“ v " +"předvolbě „Obecné → Úroveň hackování“.\n" +" " -#~ msgid "" -#~ "Makes the background semi-transparent, disable this to use Dash to Dock " -#~ "preferences instead." -#~ msgstr "" -#~ "Vytvoří poloprůhledné pozadí, pokud chcete místo toho použít předvolby " -#~ "Dash to Dock, zakažte tuto funkci." +#: dash.ui:27 +msgid "" +"Makes the background semi-transparent, disable this to use Dash to Dock " +"preferences instead." +msgstr "" +"Vytvoří poloprůhledné pozadí, pokud chcete místo toho použít předvolby Dash " +"to Dock, zakažte tuto funkci." -#~ msgid "Performances" -#~ msgstr "Představení" +#: general.ui:117 +msgid "Performances" +msgstr "Představení" -#~ msgid "Various options to tweak the performances." -#~ msgstr "Různé možnosti nastavení výkonů." +#: general.ui:118 +msgid "Various options to tweak the performances." +msgstr "Různé možnosti nastavení výkonů." -#~ msgid "" -#~ "Permits to disable globally the use of noise and color effects, this may " -#~ "improve performances for low-end graphic." -#~ msgstr "" -#~ "Umožňuje globálně zakázat použití šumu a barevných efektů, což může " -#~ "zlepšit výkon u grafiky nižší třídy." +#: general.ui:123 +msgid "" +"Permits to disable globally the use of noise and color effects, this may " +"improve performances for low-end graphic." +msgstr "" +"Umožňuje globálně zakázat použití šumu a barevných efektů, což může zlepšit " +"výkon u grafiky nižší třídy." -#~ msgid "" -#~ "Changes the behaviour of dynamic blur effect.\n" -#~ "Default value is very recommended, unless you use application blur in " -#~ "which case “No artefact” is better.\n" -#~ "This option will entirely disable clipped redraws from GNOME shell, and " -#~ "may impact performances significantly but will entirely fix the blur " -#~ "effect." -#~ msgstr "" -#~ "Změní chování efektu dynamického rozostření.\n" -#~ "Výchozí hodnota je velmi doporučená, pokud nepoužíváte aplikační " -#~ "rozostření, v takovém případě je lepší \"Bez artefaktu\".\n" -#~ "Tato volba zcela zakáže oříznuté překreslování ze shellu GNOME a může mít " -#~ "značný dopad na výkon, ale zcela opraví efekt rozmazání." +#: general.ui:136 +msgid "" +"Changes the behaviour of dynamic blur effect.\n" +"Default value is very recommended, unless you use application blur in which " +"case “No artefact” is better.\n" +"This option will entirely disable clipped redraws from GNOME shell, and may " +"impact performances significantly but will entirely fix the blur effect." +msgstr "" +"Změní chování efektu dynamického rozostření.\n" +"Výchozí hodnota je velmi doporučená, pokud nepoužíváte aplikační rozostření, " +"v takovém případě je lepší \"Bez artefaktu\".\n" +"Tato volba zcela zakáže oříznuté překreslování ze shellu GNOME a může mít " +"značný dopad na výkon, ale zcela opraví efekt rozmazání." -#~ msgid "No artefact" -#~ msgstr "Žádný artefakt" +#: general.ui:231 +msgid "No artefact" +msgstr "Žádný artefakt" -#~ msgid "" -#~ "The semi-transparent style for the dash, search entry/results, and " -#~ "applications folders." -#~ msgstr "" -#~ "Poloprůhledný styl pro Dash, položku/výsledky vyhledávání a složky " -#~ "aplikací." +#: overview.ui:27 +msgid "" +"The semi-transparent style for the dash, search entry/results, and " +"applications folders." +msgstr "" +"Poloprůhledný styl pro Dash, položku/výsledky vyhledávání a složky aplikací." -#~ msgid "Applications folder blur" -#~ msgstr "Rozmazání složky s aplikacemi" +#: overview.ui:44 +msgid "Applications folder blur" +msgstr "Rozmazání složky s aplikacemi" -#~ msgid "Makes the background of folder icons blurred." -#~ msgstr "Rozostří pozadí ikon složek." +#: overview.ui:45 +msgid "Makes the background of folder icons blurred." +msgstr "Rozostří pozadí ikon složek." -#~ msgid "Dialog opacity" -#~ msgstr "Neprůhlednost dialogu" +#: overview.ui:60 +msgid "Dialog opacity" +msgstr "Neprůhlednost dialogu" -#~ msgid "The opacity of the applications folder popup." -#~ msgstr "Neprůhlednost vyskakovacího okna složky s aplikacemi." +#: overview.ui:61 +msgid "The opacity of the applications folder popup." +msgstr "Neprůhlednost vyskakovacího okna složky s aplikacemi." -#~ msgid "" -#~ "Override the background of the panel to use a transparent one.\n" -#~ "Recommended unless you want to customize your GNOME theme." -#~ msgstr "" -#~ "Přepište pozadí panelu na průhledné.\n" -#~ "Doporučujeme, pokud si nechcete přizpůsobit téma GNOME." +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" +"Přepište pozadí panelu na průhledné.\n" +"Doporučujeme, pokud si nechcete přizpůsobit téma GNOME." #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality, is " From ccc230b5f83031e93f66820e86f3b83cff1f6656 Mon Sep 17 00:00:00 2001 From: val Date: Mon, 3 Oct 2022 17:43:17 +0000 Subject: [PATCH 059/212] Translated using Weblate (French) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/fr/ --- po/fr.po | 72 ++++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 49 insertions(+), 23 deletions(-) diff --git a/po/fr.po b/po/fr.po index fc5aebce..7571a7e8 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-10-01 17:42+0200\n" -"PO-Revision-Date: 2022-08-28 10:33+0000\n" -"Last-Translator: Aurélien Hamy \n" +"PO-Revision-Date: 2022-10-04 18:20+0000\n" +"Last-Translator: val \n" "Language-Team: French \n" "Language: fr\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.14.1-dev\n" +"X-Generator: Weblate 4.14.1\n" "X-Poedit-Basepath: ../resources/ui\n" "X-Poedit-SearchPath-0: .\n" @@ -27,7 +27,7 @@ msgstr "Applications" #: applications.ui:10 msgid "Applications blur (beta)" -msgstr "Flou d'applications (bêta)" +msgstr "Flou des applications (bêta)" #: applications.ui:11 msgid "" @@ -36,6 +36,10 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Ajoute du flou aux applications. Ceci est une fonctionnalité bêta.\n" +"Pour obtenir les meilleurs résultats possibles, assurez vous de choisir " +"l'option \"Sans artefact\" pour le paramètre “Général → Hack level”.\n" +" " #: applications.ui:28 msgid "Opacity" @@ -58,8 +62,8 @@ msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" -"Force le flou à être proprement montré sur tous les espaces de travail de " -"l'aperçu.\n" +"Force le flou à être correctement affiché sur tous les espaces de travail du " +"mode aperçu.\n" "Cela peut causer des problèmes de latence ou de performance." #: applications.ui:67 @@ -80,7 +84,7 @@ msgstr "Liste blanche" #: applications.ui:86 msgid "A list of windows to blur." -msgstr "Une liste d'applications à flouter." +msgstr "Une liste de fenêtres à flouter." #: applications.ui:104 applications.ui:141 msgid "Add Window" @@ -96,7 +100,7 @@ msgstr "Une liste d'applications à ne pas flouter." #: customize-row.ui:4 msgid "Customize properties" -msgstr "Personnaliser les paramètres" +msgstr "Éditer les paramètres" #: customize-row.ui:5 msgid "" @@ -146,7 +150,7 @@ msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." msgstr "" -"La quantité de bruit visuel à ajouter au flou, pratique pour des écrans à " +"La quantité de bruit visuel à ajouter au flou, utile pour des écrans à " "faible contraste ou dans un but esthétique." #: customize-row.ui:92 general.ui:94 @@ -171,7 +175,7 @@ msgstr "" #: dash.ui:5 msgid "Dash" -msgstr "Tiroir" +msgstr "Barre d'applications" #: dash.ui:10 msgid "Dash to Dock blur" @@ -190,14 +194,18 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Rend le fond soit transparent ou semi-transparent, désactivez ceci pour que " +"les préférences Dash to Dock soit utilisées." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Style du fond" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." msgstr "" +"Le style transparent/semi-transparent pour le fond de la barre " +"d'applications." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" @@ -209,7 +217,7 @@ msgstr "Désactiver le flou de Dash to Dock lorsqu'on ouvre l'aperçu." #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "Transparent" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" @@ -235,11 +243,11 @@ msgstr "" #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Performance" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Options multiples pour ajuster les performances." #: general.ui:122 msgid "Color and noise effects" @@ -250,6 +258,8 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"Désactive globalement les effets de bruit et de couleur ce qui peut " +"améliorer les performances pour des systèmes bas de gamme." #: general.ui:135 msgid "Hack level" @@ -263,6 +273,12 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Change le comportement de l’effet de flou dynamique.\n" +"La valeur par défaut est hautement recommandée à moins que vous n'ayez " +"activé le flou d'application, dans ce cas \"Sans artefact\" conseillé.\n" +"Cette option désactivera entièrement les actualisations saccadées dans GNOME " +"shell, et pourrait impacter significativement les performances mais " +"corrigera complètement l'effet de flou." #: general.ui:151 msgid "Debug" @@ -302,7 +318,7 @@ msgstr "Haute qualité" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Sans artefact" #: menu.ui:6 msgid "Project page" @@ -375,22 +391,25 @@ msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" +"Le style semi-transparent pour le barre d'applications, le menu de " +"recherche, et les dossiers dans le menu des applications." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Flou des dossiers dans le menu des applications" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "Rend le fond des dossiers dans le menu des applications flouté." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Style des dossiers dans le menu des applications" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." msgstr "" +"Le style semi-transparent pour les dossiers dans le menu des applications." #: overview.ui:79 overview.ui:88 msgid "Do not style" @@ -398,15 +417,15 @@ msgstr "Ne pas appliquer de thème" #: panel.ui:5 msgid "Panel" -msgstr "Panneau" +msgstr "Barre supérieure" #: panel.ui:10 msgid "Panel blur" -msgstr "Flou du panneau" +msgstr "Flou de la barre supérieure" #: panel.ui:11 msgid "Blur the top panel using the background image." -msgstr "Floute le panneau du haut en utilisant l'image de fond d'écran." +msgstr "Floute la barre supérieure en utilisant l'image de fond d'écran." #: panel.ui:26 msgid "Static blur" @@ -418,7 +437,8 @@ msgstr "Utilise une image statique, plus stable et performant." #: panel.ui:42 msgid "Disables the blur from the panel when entering the overview." -msgstr "Désactive le flou du panneau lorsqu'on est dans l'aperçu." +msgstr "" +"Désactive le flou du de la barre supérieure lorsqu'on est dans l'aperçu." #: panel.ui:57 msgid "" @@ -426,10 +446,14 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Remplacer le fond de la barre supérieure par un fond transparent/semi-" +"transparent.\n" +"Recommandé à moins que vous vouliez personnaliser votre thème GNOME." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." msgstr "" +"Le style transparent/semi-transparent pour le fond de la barre supérieure." #: panel.ui:79 msgid "Disable when a window is near" @@ -437,7 +461,9 @@ msgstr "Désactiver lorsqu'une fenêtre est proche" #: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." -msgstr "Désactive la transparence du panneau lorsqu'une fenêtre est proche." +msgstr "" +"Désactive la transparence de la barre supérieure lorsqu'une fenêtre est " +"proche." #: panel.ui:97 msgid "Compatibility" From f2480139657e990e9d8c1043d2db0c922ff272ab Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Wed, 5 Oct 2022 05:11:41 +0000 Subject: [PATCH 060/212] Translated using Weblate (Tamil) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ta/ --- po/ta.po | 49 ++++++++++++++++++++++++++++++++++--------------- 1 file changed, 34 insertions(+), 15 deletions(-) diff --git a/po/ta.po b/po/ta.po index 93499f8f..d999bee6 100644 --- a/po/ta.po +++ b/po/ta.po @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-10-01 17:42+0200\n" -"PO-Revision-Date: 2022-09-19 04:15+0000\n" -"Last-Translator: Arun \n" -"Language-Team: Tamil \n" +"PO-Revision-Date: 2022-10-06 06:16+0000\n" +"Last-Translator: K.B.Dharun Krishna \n" +"Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,6 +34,10 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"பயன்பாட்டில் மங்கலைச் சேர்க்கவும். இது இன்னும் பீட்டா செயல்பாடு. \n" +"சாத்தியமான சிறந்த முடிவுகளைப் பெற, \"பொது → ஹேக் லெவல்\" விருப்பத்தேர்வில் " +"\"ஆர்ட்டிஃபாக்ட் இல்லை\" என்ற விருப்பத்தைத் தேர்வுசெய்யவும்.\n" +" " #: applications.ui:28 msgid "Opacity" @@ -183,14 +187,16 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"பின்னணியை வெளிப்படையானதாகவோ அல்லது அரை-வெளிப்படையாகவோ மாற்றுகிறது, அதற்குப் " +"பதிலாக டாஷ் டு டாக் விருப்பங்களைப் பயன்படுத்த இதை முடக்கவும்." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "பின்னணி நடை" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "கப்பல்துறை பின்னணிக்கான வெளிப்படையான/அரை-வெளிப்படையான பாணி." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" @@ -202,7 +208,7 @@ msgstr "மேலோட்டத்தை உள்ளிடும்போத #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "வெளிப்படை" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" @@ -227,11 +233,11 @@ msgstr "" #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "செயலாக்கம்" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "செயல்திறனை மாற்றுவதற்கான பல்வேறு விருப்பங்கள்." #: general.ui:122 msgid "Color and noise effects" @@ -242,6 +248,8 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"உலகளவில் சத்தம் மற்றும் வண்ண விளைவுகளை முடக்குகிறது, இது குறைந்த-இறுதி " +"அமைப்புகளில் செயல்திறனை மேம்படுத்தலாம்." #: general.ui:135 msgid "Hack level" @@ -255,6 +263,12 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"டைனமிக் மங்கலான விளைவின் நடத்தையை மாற்றுகிறது. \n" +"நீங்கள் பயன்பாட்டு மங்கலைப் பயன்படுத்தாத வரை, இயல்புநிலை மதிப்பு மிகவும் " +"பரிந்துரைக்கப்படுகிறது, இதில் \"கலைப்பொருள் இல்லை\" என்பது சிறந்தது. \n" +"இந்த விருப்பம் GNOME ஷெல்லில் கிளிப் செய்யப்பட்ட ரீடிராக்களை முழுவதுமாக " +"முடக்கும், மேலும் செயல்திறனை கணிசமாக பாதிக்கலாம் ஆனால் மங்கலான விளைவை " +"முழுமையாக சரி செய்யும்." #: general.ui:151 msgid "Debug" @@ -294,7 +308,7 @@ msgstr "உயர் தரம்" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "கலைப்பொருள் இல்லை" #: menu.ui:6 msgid "Project page" @@ -361,22 +375,24 @@ msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" +"கோடு, தேடல் உள்ளீடு/முடிவுகள் மற்றும் பயன்பாட்டுக் கோப்புறைகளுக்கான " +"அரை-வெளிப்படையான பாணி." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "பயன்பாட்டுக் கோப்புறை மங்கல்" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "பயன்பாட்டு கோப்புறை உரையாடலின் பின்னணியை மங்கலாக்கும்." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "பயன்பாட்டு கோப்புறை உரையாடல்கள் நடை" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." -msgstr "" +msgstr "பயன்பாட்டு கோப்புறை உரையாடல்களுக்கான அரை-வெளிப்படையான பாணி." #: overview.ui:79 overview.ui:88 msgid "Do not style" @@ -412,10 +428,13 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"வெளிப்படையான அல்லது அரை-வெளிப்படையான ஒன்றைப் பயன்படுத்த பேனலின் பின்னணியை " +"மேலெழுதவும். \n" +"உங்கள் GNOME தீம் தனிப்பயனாக்க விரும்பினால் தவிர பரிந்துரைக்கப்படுகிறது." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "பேனல் பின்னணிக்கான வெளிப்படையான/அரை-வெளிப்படையான பாணி." #: panel.ui:79 msgid "Disable when a window is near" From 6e74a8c653d39a9060e37a163224913dd5e1fd89 Mon Sep 17 00:00:00 2001 From: albanobattistella Date: Sat, 8 Oct 2022 12:38:04 +0000 Subject: [PATCH 061/212] Translated using Weblate (Italian) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/it/ --- po/it.po | 47 ++++++++++++++++++++++++++++++++++++----------- 1 file changed, 36 insertions(+), 11 deletions(-) diff --git a/po/it.po b/po/it.po index 1ff33ca2..1b348449 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-10-01 17:42+0200\n" -"PO-Revision-Date: 2022-08-28 10:33+0000\n" +"PO-Revision-Date: 2022-10-10 17:59+0000\n" "Last-Translator: albanobattistella \n" "Language-Team: Italian \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1-dev\n" +"X-Generator: Weblate 4.14.1\n" #: applications.ui:5 msgid "Applications" @@ -34,6 +34,12 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Aggiunge sfocatura alle applicazioni. Questa è ancora una funzionalità beta." +"\n" +"Per ottenere i migliori risultati possibili, assicurati di scegliere " +"l'opzione \"Nessun artefatto\" nella preferenza \"Generale → Livello di " +"hack\".\n" +" " #: applications.ui:28 msgid "Opacity" @@ -189,14 +195,16 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Rende lo sfondo trasparente o semitrasparente, disabilitalo per utilizzare " +"invece le preferenze Dash to Dock." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Stile di sfondo" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "Lo stile trasparente/semitrasparente per lo sfondo del dock." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" @@ -209,7 +217,7 @@ msgstr "" #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "Trasparente" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" @@ -235,11 +243,11 @@ msgstr "" #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Prestazioni" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Varie opzioni per modificare le prestazioni." #: general.ui:122 msgid "Color and noise effects" @@ -250,6 +258,8 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"Disattiva globalmente il rumore e gli effetti di colore che possono " +"migliorare le prestazioni sui sistemi di fascia bassa." #: general.ui:135 msgid "Hack level" @@ -263,6 +273,12 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Modifica il comportamento dell'effetto di sfocatura dinamica.\n" +"Il valore predefinito è altamente raccomandato a meno che non utilizzi la " +"sfocatura dell'applicazione, nel qual caso \"Nessun artefatto\" è meglio.\n" +"Questa opzione disabiliterà completamente i ridisegni ritagliati nella shell " +"di GNOME e potrebbe influire in modo significativo sulle prestazioni, ma " +"risolverà completamente l'effetto sfocato." #: general.ui:151 msgid "Debug" @@ -302,7 +318,7 @@ msgstr "Alta qualità" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Nessun artefatto" #: menu.ui:6 msgid "Project page" @@ -375,22 +391,28 @@ msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" +"Lo stile semitrasparente per la dash, la voce/risultati di ricerca e le " +"cartelle dell'applicazione." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Sfocatura cartella applicazione" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." msgstr "" +"Rende sfocato lo sfondo delle finestre di dialogo delle cartelle " +"dell'applicazione." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Stile finestre di dialogo cartella dell'applicazione" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." msgstr "" +"Lo stile semitrasparente per le finestre di dialogo delle cartelle " +"dell'applicazione." #: overview.ui:79 overview.ui:88 msgid "Do not style" @@ -426,10 +448,13 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Sostituisci lo sfondo del pannello per utilizzarne uno trasparente o " +"semitrasparente.\n" +"Consigliato a meno che tu non voglia personalizzare il tuo tema GNOME." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "Lo stile trasparente/semitrasparente per lo sfondo del pannello." #: panel.ui:79 msgid "Disable when a window is near" From 49b1952924da289b55333c847b5820fd8e7c3d33 Mon Sep 17 00:00:00 2001 From: vikdevelop Date: Sat, 8 Oct 2022 14:42:35 +0000 Subject: [PATCH 062/212] Translated using Weblate (Czech) Currently translated at 100.0% (109 of 109 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/cs/ --- po/cs.po | 47 ++++++++++++++++++++++++++++++++--------------- 1 file changed, 32 insertions(+), 15 deletions(-) diff --git a/po/cs.po b/po/cs.po index 785824e6..b08942fa 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-10-01 17:42+0200\n" -"PO-Revision-Date: 2022-09-02 01:23+0000\n" +"PO-Revision-Date: 2022-10-10 17:59+0000\n" "Last-Translator: vikdevelop \n" -"Language-Team: Czech \n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.14.1-dev\n" +"X-Generator: Weblate 4.14.1\n" #: applications.ui:5 msgid "Applications" @@ -34,6 +34,10 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Přidá do aplikací rozmazání. Jedná se stále o funkci beta.\n" +"Chcete-li dosáhnout co nejlepších výsledků, nezapomeňte v předvolbách " +"\"Obecné → Úroveň hacku\" vybrat možnost \"Bez artefaktu\".\n" +" " #: applications.ui:28 msgid "Opacity" @@ -187,14 +191,16 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Nastaví pozadí jako průhledné nebo poloprůhledné, pokud chcete místo toho " +"použít předvolby Dash to Dock, zakažte tuto funkci." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Styl pozadí" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "Průhledný/poloprůhledný styl pozadí doku." #: dash.ui:50 panel.ui:41 dash.ui:41 msgid "Disable in overview" @@ -206,7 +212,7 @@ msgstr "Zakáže rozmazání z Dashe do doku při vstupu do přehledu." #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "Transparentní" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 overview.ui:86 msgid "Light" @@ -232,11 +238,11 @@ msgstr "" #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Výkon" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Různé možnosti nastavení výkonu." #: general.ui:122 msgid "Color and noise effects" @@ -247,6 +253,8 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"Globálně vypne efekty šumu a barev, což může zlepšit výkon na low-endových " +"systémech." #: general.ui:135 msgid "Hack level" @@ -260,6 +268,11 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Změní chování efektu dynamického rozostření.\n" +"Výchozí hodnota je velmi doporučována, pokud nepoužíváte rozostření " +"aplikací, v takovém případě je lepší volba \"Bez artefaktu\".\n" +"Tato volba zcela zakáže oříznuté překreslování v prostředí GNOME shell a " +"může mít značný dopad na výkon, ale zcela vyřeší efekt rozmazání." #: general.ui:151 msgid "Debug" @@ -299,7 +312,7 @@ msgstr "Vysoká kvalita" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Žádný artefakt" #: menu.ui:6 msgid "Project page" @@ -370,22 +383,24 @@ msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" +"Poloprůhledný styl pro pomlčku, položku/výsledky vyhledávání a složky " +"aplikací." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Rozmazání složky aplikace" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "Rozostří pozadí dialogových oken složek aplikací." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Styl dialogových oken složek aplikací" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." -msgstr "" +msgstr "Poloprůhledný styl pro dialogová okna složek aplikací." #: overview.ui:79 overview.ui:88 overview.ui:85 msgid "Do not style" @@ -421,10 +436,12 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Přepište pozadí panelu tak, aby bylo průhledné nebo poloprůhledné.\n" +"Doporučujeme, pokud si nechcete přizpůsobit téma GNOME." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "Průhledný/poloprůhledný styl pozadí panelu." #: panel.ui:79 panel.ui:64 msgid "Disable when a window is near" From 5d78e78d4397d1ddb28d1931c3e383f593e798ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20K=C3=B6rmendi?= Date: Wed, 23 Nov 2022 11:24:57 +0100 Subject: [PATCH 063/212] add hungarian translation --- po/hu.po | 193 ++++++++++++++++++++++++++++++++----------------------- 1 file changed, 112 insertions(+), 81 deletions(-) diff --git a/po/hu.po b/po/hu.po index 1826e270..8987df90 100644 --- a/po/hu.po +++ b/po/hu.po @@ -25,7 +25,7 @@ msgstr "Alkalmazások" #: applications.ui:10 msgid "Applications blur (beta)" -msgstr "Alkalmazások elhomályosítása (beta)" +msgstr "Alkalmazások homályosítása (béta)" #: applications.ui:11 msgid "" @@ -34,36 +34,46 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Elhomályosítja az alkalmazásokat. Ez még béta funkcionalitás.\n" +"A legjobb eredmény elérése érdekében válaszd a "Nincs artifact"-ot " +"az "Általános → Átalakítás szintje" beállításnál.\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Opacitás" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"Az ablak opacitása a homályosításon felül. A magasabb érték olvashatóbbat " +"eredményez." #: applications.ui:51 msgid "Blur on overview" -msgstr "" +msgstr "Homályosítás áttekintés nézetben" #: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Kényszeríti a homályosítás megjelenítését a munkaterületeken az áttekintés nézetben.\n" +"Teljesítménybeli problémát okozhat." #: applications.ui:67 msgid "Enable all by default" -msgstr "" +msgstr "Minden engedélyezése alapértelmezésként" #: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Minden ablak homályosítása alapértelmezésként.\n" +"Teljesítménybeli és stabilitási problémák miatt nem javasolt." #: applications.ui:85 msgid "Whitelist" @@ -71,37 +81,38 @@ msgstr "Fehérlista" #: applications.ui:86 msgid "A list of windows to blur." -msgstr "" +msgstr "Elhomályosítandó ablakok listája." #: applications.ui:104 applications.ui:141 msgid "Add Window" -msgstr "" +msgstr "Ablak hozzáadása" #: applications.ui:122 msgid "Blacklist" -msgstr "" +msgstr "Feketelista" #: applications.ui:123 msgid "A list of windows not to blur." -msgstr "" +msgstr "Nem elhomályosítandó ablakok listája." #: customize-row.ui:4 #, fuzzy msgid "Customize properties" -msgstr "Beállítások személyre szabása" +msgstr "Beállítások testreszabása" #: customize-row.ui:5 msgid "" "Uses customized blur properties, instead of the ones set in the General page." msgstr "" +"Testreszabott homályosítási beállításokat használ az általánosak helyett." #: customize-row.ui:10 general.ui:15 msgid "Sigma" -msgstr "" +msgstr "Szigma" #: customize-row.ui:11 general.ui:16 msgid "The intensity of the blur." -msgstr "Az elhomályosítás erőssége." +msgstr "A homályosítás intenzitása." #: customize-row.ui:31 general.ui:35 msgid "Brightness" @@ -112,8 +123,7 @@ msgid "" "The brightness of the blur effect, a high value might make the text harder " "to read." msgstr "" -"Az elhomályosítás fényereje, egy magas érték nehezebbé teheti a szövegek " -"olvasását." +"A homályosítás fényereje. A magasabb érték nehezebbé teheti a szövegek olvasását." #: customize-row.ui:52 general.ui:55 msgid "Color" @@ -124,16 +134,20 @@ msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." msgstr "" +"A homályosítás színét módosítja. A szín opacitása szabályozza, hogy mennyire olvad " +"a homályosításba." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" -msgstr "" +msgstr "Zajszint" #: customize-row.ui:72 general.ui:74 msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." msgstr "" +"A homályosítás zajszintje. Alacsony kontrasztú képernyőknél, vagy " +"az esztétika miatt hasznos." #: customize-row.ui:92 general.ui:94 msgid "Noise lightness" @@ -145,97 +159,103 @@ msgstr "" #: customize-row.ui:113 msgid "Notice" -msgstr "" +msgstr "Értesítés" #: customize-row.ui:114 msgid "" "Noise and color can't be activated on dynamically blurred components, such " "as this one." msgstr "" +"Zaj és szín nem aktiválható a dinamikusan homályosított komponenseken, mint " +"például ez." #: dash.ui:5 msgid "Dash" -msgstr "" +msgstr "Dash" #: dash.ui:10 msgid "Dash to Dock blur" -msgstr "" +msgstr "Dash to Dock homályosítása" #: dash.ui:11 msgid "Blur the background of the Dash to Dock extension, if it is used." -msgstr "" +msgstr "A Dash to Dock kiegészítés használata esetén a hátterének elhomályosítása." #: dash.ui:26 panel.ui:56 msgid "Override background" -msgstr "" +msgstr "Háttér felülírása" #: dash.ui:27 msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"A hátteret áttetszővé, vagy részben áttetszővé teszi. Kapcsold ki a " +"Dash to Dock beállítások használatához." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Háttér stílus" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "A dokk hátterének áttetsző / részben áttetsző stílusa." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" -msgstr "" +msgstr "Kikapcsolás áttekintés nézetben" #: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." -msgstr "" +msgstr "Áttekintés nézetben kikapcsolja a Dash to Dock homályosítását." #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "Áttetsző" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" -msgstr "" +msgstr "Világos" #: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 msgid "Dark" -msgstr "" +msgstr "Sötét" #: general.ui:5 msgid "General" -msgstr "" +msgstr "Általános" #: general.ui:10 msgid "Blur preferences" -msgstr "" +msgstr "Homályosítás beállításai" #: general.ui:11 msgid "Global blur preferences, used by all components by default." -msgstr "" +msgstr "Általános homályosítás beállítások. Minden komponens alapértelmezettként használja." #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Teljesítmény" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Különböző beállítások a teljesítmény javításához." #: general.ui:122 msgid "Color and noise effects" -msgstr "" +msgstr "Szín és zaj hatás" #: general.ui:123 msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"A zaj és szín hatásokat általánosan kikapcsolja, ami javíthatja a teljesítményt " +"a gyengébb rendszereken." #: general.ui:135 msgid "Hack level" -msgstr "" +msgstr "Átalakítás szintje" #: general.ui:136 msgid "" @@ -245,154 +265,162 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Megváltoztatja a dinamikus homályosítás hatás magatartását.\n" +"Az alapértelmezett érték erősen javasolt, kivéve ha alkalmazás homályosítást használsz, " +"mert akkor a "Nincs artifact" jobb.\n" +"Ez a beállítás teljesen kikapcsolja a "clipped redraw"-kat a GNOME shell-ben, és " +"jelentősen befolyásolhatja a teljesítményt, de teljesen kijavítja a homályosító hatást." #: general.ui:151 msgid "Debug" -msgstr "" +msgstr "Debug" #: general.ui:152 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." msgstr "" +"A kiegészítés logjait részletessé teszi. Aktiváld, ha problémát szeretnél " +"bejelenteni." #: general.ui:167 msgid "Reset preferences" -msgstr "" +msgstr "Alaphelyzetbe állítás" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "Visszafordíthatatlanul visszaállítja a Blur my Shell beállításait." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Visszaállítás" #: general.ui:228 msgid "High performances" -msgstr "" +msgstr "Nagy teljesítmény" #: general.ui:229 msgid "Default" -msgstr "" +msgstr "Alapértelmezett" #: general.ui:230 msgid "High quality" -msgstr "" +msgstr "Magas minőség" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Nincs artifact" #: menu.ui:6 msgid "Project page" -msgstr "" +msgstr "Projekt oldal" #: menu.ui:10 msgid "Report a Bug" -msgstr "" +msgstr "Bug jelentése" #: menu.ui:14 msgid "License" -msgstr "" +msgstr "Licenc" #: menu.ui:18 msgid "Donate" -msgstr "" +msgstr "Adományozás" #: other.ui:5 msgid "Other" -msgstr "" +msgstr "Egyéb" #: other.ui:10 msgid "Lockscreen blur" -msgstr "" +msgstr "Záróképernyő homályosítása" #: other.ui:11 msgid "Change the blur of the lockscreen to use this extension's preferences." -msgstr "" +msgstr "Megváltoztatja a záróképernyő homályosítását, hogy a kiegészítés beállításait használja." #: other.ui:28 msgid "Screenshot blur" -msgstr "" +msgstr "Képernyőkép homályosítása" #: other.ui:29 msgid "Add blur to the background of the window selector in the screenshot UI." -msgstr "" +msgstr "Homályosítja az ablak választó hátterét a képernyőkép UI-n." #: other.ui:46 msgid "Window list extension blur" -msgstr "" +msgstr "Window list kiegészítés homályosítása" #: other.ui:47 msgid "Make the window-list extension blurred, if it is used." -msgstr "" +msgstr "A Window-list kiegészítést homályosítja, ha használatban van." #: overview.ui:5 msgid "Overview" -msgstr "" +msgstr "Áttekintés" #: overview.ui:10 msgid "Background blur" -msgstr "" +msgstr "Háttér homályosítása" #: overview.ui:11 msgid "Add blur to the overview background, using the wallpaper picture." -msgstr "" +msgstr "Elhomályosítja az áttekintés nézet hátterét a háttérkép használatával." #: overview.ui:26 msgid "Overview components style" -msgstr "" +msgstr "Áttekintés nézet komponensek stílusa" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." -msgstr "" +msgstr "Áttetsző / részben áttetsző stílus a dash-hez, kereséshez / eredményekhez, " +"és az alkalmazás mappákhoz." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Alkalmazás mappa homályosítása" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "Elhomályosítja az alkalmazás mappa párbeszéd ablakának hátterét." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Alkalmazás mappa párbeszéd ablak stílusa" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." -msgstr "" +msgstr "Áttetsző / részben áttetsző stílus az alkalmazás mappa párbeszéd ablakához." #: overview.ui:79 overview.ui:88 msgid "Do not style" -msgstr "" +msgstr "Ne módosuljon" #: panel.ui:5 msgid "Panel" -msgstr "" +msgstr "Panel" #: panel.ui:10 msgid "Panel blur" -msgstr "" +msgstr "Panel homályosítása" #: panel.ui:11 msgid "Blur the top panel using the background image." -msgstr "" +msgstr "A felső panel homályosítása a háttérkép használatával." #: panel.ui:26 msgid "Static blur" -msgstr "" +msgstr "Statikus homályosítás" #: panel.ui:27 msgid "Uses a static blurred image, more performant and stable." -msgstr "" +msgstr "Statikus homályosított képet használjon. Gyorsabb és stabilabb." #: panel.ui:42 msgid "Disables the blur from the panel when entering the overview." -msgstr "" +msgstr "Kikapcsolja a felső panel homályosítását az áttekintés nézetbe lépéskor." #: panel.ui:57 msgid "" @@ -400,52 +428,55 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Felülírja a felső panel hátterét, hogy áttetszőt, vagy részben " +"áttetszőt használjon.\n" +"Ajánlott, kivéve, ha személyre akarod szabni a GNOME témád." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "A felső panel hátterének áttetsző / részben áttetsző stílusa." #: panel.ui:79 msgid "Disable when a window is near" -msgstr "" +msgstr "Kikapcsolás, ha ablak van a közelben" #: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "Kikapcsolja a panel áttetszőségét, ha ablak van a közelében." #: panel.ui:97 msgid "Compatibility" -msgstr "" +msgstr "Kompatibilitás" #: panel.ui:98 msgid "Various options to provide compatibility with other extensions." -msgstr "" +msgstr "Különböző beállítások más kiegészítések kompatibilitásának biztosításához." #: panel.ui:103 msgid "Hidetopbar extension" -msgstr "" +msgstr "Hidetopbar kiegészítés" #: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." -msgstr "" +msgstr "Nem kapcsolja ki a homályosítást áttekintés nézetben. Statikus homályosítással a legjobb." #: window-row.ui:4 msgid "Window Name" -msgstr "" +msgstr "Ablak Név" #: window-row.ui:8 msgid "Select window" -msgstr "" +msgstr "Válasszon ablakot" #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" +msgstr "Ablak választása, vagy kiválasztás az osztály alapján." #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality, is " #~ "quite buggy and is only applied to the apps that ask it, or to the ones " #~ "set in the whitelist below." #~ msgstr "" -#~ "Elhomályosítás az alkalmazásokhoz. Ez még beta funkció, problémák " -#~ "merülhetnek fel, illetve csak azok az alkalmazások használják, amelyek " -#~ "szeretnék, vagy a lenti fehérlistán szerepelnek." +#~ "Alkalmazások elhomályosítása. Ez még béta funkció, úgyhogy problémák " +#~ "merülhetnek fel, és csak azokra az alkalmazásokra van használva, amelyek " +#~ "kérik, vagy a lenti fehérlistán szerepelnek." From cc78eca9397d0227489ea54a43332f36170c2bf9 Mon Sep 17 00:00:00 2001 From: Korbs Date: Wed, 21 Dec 2022 18:18:53 -0500 Subject: [PATCH 064/212] Use Glasstron Clarity for Electron applications --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cdd422d4..7c4b1be5 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,7 @@ This is a beta functionnality, however you can test it by either: - under Xorg, you can do it by typing `xprop -f _MUTTER_HINTS 8s -set _MUTTER_HINTS blur-provider=sigma:60,brightness:0.6`, and with the sigma and brightness you want - integrating it with your application if you're the developper - you must set the window's property `_MUTTER_HINTS` to `blur-provider=sigma:...,brightness:...`; if you do not set them the application will use default blurring settings from Blur my Shell - - for Electron applications, you can try building it with [Glasstron](https://github.com/AryToNeX/Glasstron) + - for Electron applications, you can try building it with [Glasstron Clarity]([https://github.com/AryToNeX/Glasstron](https://www.npmjs.com/package/glasstron-clarity)) ### Force overview blur update From f2163375d23fa61320aeca252fa3c8b2017ec879 Mon Sep 17 00:00:00 2001 From: Korbs Date: Wed, 21 Dec 2022 18:22:22 -0500 Subject: [PATCH 065/212] Fix typo in Glasstron link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c4b1be5..87db4958 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,7 @@ This is a beta functionnality, however you can test it by either: - under Xorg, you can do it by typing `xprop -f _MUTTER_HINTS 8s -set _MUTTER_HINTS blur-provider=sigma:60,brightness:0.6`, and with the sigma and brightness you want - integrating it with your application if you're the developper - you must set the window's property `_MUTTER_HINTS` to `blur-provider=sigma:...,brightness:...`; if you do not set them the application will use default blurring settings from Blur my Shell - - for Electron applications, you can try building it with [Glasstron Clarity]([https://github.com/AryToNeX/Glasstron](https://www.npmjs.com/package/glasstron-clarity)) + - for Electron applications, you can try building it with [Glasstron Clarity](https://www.npmjs.com/package/glasstron-clarity) ### Force overview blur update From c5654a0cfd1eae83ca46435fbc3e268e1b3dbe62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Fri, 23 Dec 2022 00:59:13 +0100 Subject: [PATCH 066/212] Update README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 87db4958..c55a320d 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,20 @@ A GNOME Shell extension that adds a blur look to different parts of the GNOME Sh [](https://hosted.weblate.org/engage/blur-my-shell/) +--- + +***Notice*** + +I (aunetx) am currently quite busy and I won't be able to do a lot of changes in this extension for the following months (probably until fall 2023)... You can consider this extension in low maintenance mode, I will still do important releases (for GNOME 44 etc) but no new features for the moment, and I won't be able to reply to every openend issue (even though I read them all in case). + +Especially, consider the application blur to be in alpha state, because it is even broken for me so I don't think it works for anybody else... If someone wants to spend time fixing it, I will gladly merge pull requests. The dash-to-dock blur seems quite broken too, although I don't even know to what extent. + +I am deeply sorry about all the problems that may arise, do not hesitate to open pull requests if needed and I will try to find motivation to answer them at some point :) + +Sincerely, Aurélien + +--- + Functionalities: - apply a blur effect to different components of the shell: From 6d69454dd1478f67fca256bc4fc586e01722714b Mon Sep 17 00:00:00 2001 From: Christian Schendel Date: Fri, 23 Dec 2022 10:28:23 +0100 Subject: [PATCH 067/212] Add some necessary escape-characters to hu.po Double quotes need to be escaped --- po/hu.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/hu.po b/po/hu.po index 8987df90..6d895055 100644 --- a/po/hu.po +++ b/po/hu.po @@ -35,8 +35,8 @@ msgid "" " " msgstr "" "Elhomályosítja az alkalmazásokat. Ez még béta funkcionalitás.\n" -"A legjobb eredmény elérése érdekében válaszd a "Nincs artifact"-ot " -"az "Általános → Átalakítás szintje" beállításnál.\n" +"A legjobb eredmény elérése érdekében válaszd a \"Nincs artifact\"-ot " +"az \"Általános → Átalakítás szintje\" beállításnál.\n" " " #: applications.ui:28 @@ -267,8 +267,8 @@ msgid "" msgstr "" "Megváltoztatja a dinamikus homályosítás hatás magatartását.\n" "Az alapértelmezett érték erősen javasolt, kivéve ha alkalmazás homályosítást használsz, " -"mert akkor a "Nincs artifact" jobb.\n" -"Ez a beállítás teljesen kikapcsolja a "clipped redraw"-kat a GNOME shell-ben, és " +"mert akkor a \"Nincs artifact\" jobb.\n" +"Ez a beállítás teljesen kikapcsolja a \"clipped redraw\"-kat a GNOME shell-ben, és " "jelentősen befolyásolhatja a teljesítményt, de teljesen kijavítja a homályosító hatást." #: general.ui:151 From 4906b3ce04eddcfd52a9db51f9a616409bf0204e Mon Sep 17 00:00:00 2001 From: 1amSti1ck Date: Wed, 28 Dec 2022 04:05:43 +0300 Subject: [PATCH 068/212] remove borders and box-shadows from folder dialogs and search sections in overview --- src/stylesheet.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/stylesheet.css b/src/stylesheet.css index dbe5f37f..f7366881 100644 --- a/src/stylesheet.css +++ b/src/stylesheet.css @@ -74,6 +74,11 @@ color: rgba(255, 255, 255, 0.65); } +.overview-components-transparent .search-section-content { + border: none; + box-shadow: none; +} + .overview-components-transparent .search-section-content, .overview-components-transparent .app-folder .overview-icon { background-color: rgba(0, 0, 0, 0); @@ -123,6 +128,11 @@ color: rgba(255, 255, 255, 0.65); } +.overview-components-light .search-section-content { + border: none; + box-shadow: none; +} + .overview-components-light .search-section-content, .overview-components-light .app-folder .overview-icon { background-color: rgba(200, 200, 200, 0.2); @@ -173,6 +183,11 @@ color: rgba(255, 255, 255, 0.65); } +.overview-components-dark .search-section-content { + border: none; + box-shadow: none; +} + .overview-components-dark .search-section-content, .overview-components-dark .app-folder .overview-icon { background-color: rgba(100, 100, 100, 0.35); @@ -216,6 +231,8 @@ .appfolder-dialogs-transparent { background-color: rgba(0, 0, 0, 0); + border: none; + box-shadow: none; } .appfolder-dialogs-transparent .folder-name-entry { @@ -231,6 +248,8 @@ .appfolder-dialogs-light { background-color: rgba(200, 200, 200, 0.2); + border: none; + box-shadow: none; } .appfolder-dialogs-light .folder-name-entry { @@ -247,6 +266,8 @@ .appfolder-dialogs-dark { background-color: rgba(100, 100, 100, 0.35); + border: none; + box-shadow: none; } .appfolder-dialogs-dark .folder-name-entry { From ffff315913cccb2d72b4ad86cef935ceab0d5c69 Mon Sep 17 00:00:00 2001 From: gallegonovato Date: Fri, 30 Dec 2022 14:50:43 +0000 Subject: [PATCH 069/212] Translated using Weblate (Spanish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/es/ --- po/es.po | 44 +++++++++++++++++++++++++++++++++----------- 1 file changed, 33 insertions(+), 11 deletions(-) diff --git a/po/es.po b/po/es.po index eea157a0..d973adbd 100644 --- a/po/es.po +++ b/po/es.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-10-01 17:42+0200\n" -"PO-Revision-Date: 2022-08-28 10:33+0000\n" -"Last-Translator: Óscar Fernández Díaz \n" +"PO-Revision-Date: 2022-12-31 15:51+0000\n" +"Last-Translator: gallegonovato \n" "Language-Team: Spanish \n" "Language: es\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1-dev\n" +"X-Generator: Weblate 4.15.1-dev\n" #: applications.ui:5 msgid "Applications" @@ -34,6 +34,10 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Añade desenfoque a las aplicaciones. Esta funcionalidad aún es beta.\n" +"Para obtener los mejores resultados posibles, asegúrese de elegir la opción " +"\"Sin artefacto\" en las preferencias \"General → Nivel de hackeo\".\n" +" " #: applications.ui:28 msgid "Opacity" @@ -188,14 +192,18 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Hace que el fondo sea transparente o semitransparente; desactívelo para " +"utilizar las preferencias de Dash to Dock." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Estilo del fondo" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." msgstr "" +"El estilo transparente/semitransparente para el fondo de la barra de " +"aplicaciones." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" @@ -207,7 +215,7 @@ msgstr "Desactiva el desenfoque de Dash a Dock al entrar en la vista general." #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "Transparente" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" @@ -233,11 +241,11 @@ msgstr "" #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Rendimiento" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Varias opciones para mejorar el rendimiento." #: general.ui:122 msgid "Color and noise effects" @@ -248,6 +256,8 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"Desactiva globalmente los efectos de ruido y color, lo que puede mejorar el " +"rendimiento en sistemas de gama baja." #: general.ui:135 msgid "Hack level" @@ -261,6 +271,12 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Cambia el comportamiento del efecto del desenfoque dinámico.\n" +"El valor por defecto es altamente recomendado a menos que use desenfoque de " +"aplicación, en cuyo caso \"Sin artefacto\" es mejor.\n" +"Esta opción deshabilitará por completo los redibujados recortados en el " +"shell de GNOME, y puede afectar significativamente al rendimiento, pero " +"arreglará por completo el efecto de desenfoque." #: general.ui:151 msgid "Debug" @@ -300,7 +316,7 @@ msgstr "Alta calidad" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Sin artefactos" #: menu.ui:6 msgid "Project page" @@ -373,22 +389,26 @@ msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" +"El estilo semitransparente para el guión, la entrada de búsqueda/resultados " +"y las carpetas de aplicaciones." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Desenfoque de la carpeta de la aplicación" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." msgstr "" +"Difumina el fondo de los cuadros de diálogo de las carpetas de aplicaciones." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Estilo de los diálogos de las carpetas de las aplicaciones" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." msgstr "" +"El estilo semitransparente para los diálogos de la carpeta de la aplicación." #: overview.ui:79 overview.ui:88 msgid "Do not style" @@ -424,10 +444,12 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Anula el fondo del panel para usar uno transparente o semitransparente.\n" +"Recomendado a menos que quieras personalizar tu tema de GNOME." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "El estilo transparente/semitransparente para el fondo del panel." #: panel.ui:79 msgid "Disable when a window is near" From 764914f4304f20d7212f338bc3f93a01d43ece29 Mon Sep 17 00:00:00 2001 From: Philip Goto Date: Fri, 30 Dec 2022 14:37:35 +0000 Subject: [PATCH 070/212] Translated using Weblate (Dutch) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/nl/ --- po/nl.po | 53 +++++++++++++++++++++++++++++++++++------------------ 1 file changed, 35 insertions(+), 18 deletions(-) diff --git a/po/nl.po b/po/nl.po index ffa47a68..e5b52476 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8,24 +8,24 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-10-01 17:42+0200\n" -"PO-Revision-Date: 2022-09-07 21:22+0000\n" +"PO-Revision-Date: 2022-12-31 15:51+0000\n" "Last-Translator: Philip Goto \n" -"Language-Team: Dutch \n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1-dev\n" +"X-Generator: Weblate 4.15.1-dev\n" #: applications.ui:5 msgid "Applications" -msgstr "Toepassingen" +msgstr "Apps" #: applications.ui:10 msgid "Applications blur (beta)" -msgstr "Toepassingen vervagen (bèta)" +msgstr "Apps vervagen (bèta)" #: applications.ui:11 msgid "" @@ -34,6 +34,10 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Voegt vervaging toe aan apps. Dit is nog bèta-functionaliteit.\n" +"Om de best mogelijke resultaten te krijgen, zorg ervoor dat u de optie ‘Geen " +"artefacten’ kiest in de voorkeur ‘Algemeen → Hackniveau’.\n" +" " #: applications.ui:28 msgid "Opacity" @@ -190,14 +194,16 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Maakt de achtergrond doorzichtig of halfdoorzichtig, schakel dit uit om in " +"plaats hiervan voorkeuren van Dash to Dock te gebruiken." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Achtergrondstijl" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "De (half)doorzichtige stijl voor de dock-achtergrond." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" @@ -211,7 +217,7 @@ msgstr "" #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "Doorzichtig" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" @@ -237,11 +243,11 @@ msgstr "" #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Prestaties" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Verscheidene opties om te prestaties af te stellen." #: general.ui:122 msgid "Color and noise effects" @@ -252,6 +258,8 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"Schakelt ruis en kleureffecten globaal uit voor betere prestaties op " +"zwakkere systemen." #: general.ui:135 msgid "Hack level" @@ -265,6 +273,12 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Verandert het gedrag van het dynamische vervagingseffect.\n" +"De standaardwaarde wordt sterk aanbevolen tenzij u app-vervaging gebruikt, " +"in welk geval ‘Geen artefact’ beter is.\n" +"Deze optie schakelt gedeeltelijke updates in GNOME shell volledig uit en kan " +"de prestaties aanzienlijk beïnvloeden, maar zal het vervagingseffect correct " +"laten werken." #: general.ui:151 msgid "Debug" @@ -304,7 +318,7 @@ msgstr "Hoge kwaliteit" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Geen artefacten" #: menu.ui:6 msgid "Project page" @@ -374,23 +388,23 @@ msgstr "Stijl van overzichtscomponenten" msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." -msgstr "" +msgstr "De halfdoorzichtige stijl voor de dash, zoekelementen en app-mappen." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Vervaging van app-map" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "Vervaagt de achtergrond van app-mapdialogen." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Dialoogstijl van app-map" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." -msgstr "" +msgstr "De halfdoorzichtige stijl voor de app-mapdialogen." #: overview.ui:79 overview.ui:88 msgid "Do not style" @@ -429,10 +443,13 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Overschrijft de achtergrond van het paneel met een (half)doorzichtige " +"variant.\n" +"Aanbevolen tenzij u uw GNOME-thema wilt aanpassen." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "De (half)doorzichtige stijl voor de paneelachtergrond." #: panel.ui:79 msgid "Disable when a window is near" From 733686c4a7c8cd81507214805443b1770b27c246 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Mon, 2 Jan 2023 02:53:32 +0100 Subject: [PATCH 071/212] Update translations --- po/ar.po | 2 +- po/blur-my-shell@aunetx.pot | 2 +- po/cs.po | 180 +++++++++++++++++------------------- po/de.po | 2 +- po/es.po | 2 +- po/fr.po | 2 +- po/hu.po | 68 ++++++++------ po/it.po | 6 +- po/ko.po | 2 +- po/nb_NO.po | 2 +- po/nl.po | 6 +- po/pl.po | 2 +- po/pt.po | 2 +- po/ru.po | 2 +- po/sv.po | 2 +- po/ta.po | 23 +++-- po/tr.po | 2 +- po/zh_Hans.po | 2 +- 18 files changed, 155 insertions(+), 154 deletions(-) diff --git a/po/ar.po b/po/ar.po index c948a1a4..47dda7f7 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-01 17:42+0200\n" +"POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2022-05-27 11:40+0000\n" "Last-Translator: fawaz006 \n" "Language-Team: Arabic \n" "Language-Team: LANGUAGE \n" diff --git a/po/cs.po b/po/cs.po index b08942fa..04a017cd 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-01 17:42+0200\n" +"POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2022-10-10 17:59+0000\n" "Last-Translator: vikdevelop \n" -"Language-Team: Czech \n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,11 +51,11 @@ msgstr "" "Neprůhlednost okna v horní části efektu rozmazání, vyšší hodnota bude " "čitelnější." -#: applications.ui:51 applications.ui:50 +#: applications.ui:51 msgid "Blur on overview" msgstr "Rozostření v přehledu" -#: applications.ui:52 applications.ui:51 +#: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." @@ -63,11 +63,11 @@ msgstr "" "Vynutí správné zobrazení rozmazání na všech pracovních plochách v přehledu.\n" "To může způsobit určité zpoždění nebo problémy s výkonem." -#: applications.ui:67 applications.ui:66 +#: applications.ui:67 msgid "Enable all by default" msgstr "Ve výchozím nastavení povolit vše" -#: applications.ui:68 applications.ui:67 +#: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." @@ -75,24 +75,23 @@ msgstr "" "Ve výchozím nastavení přidá rozmazání za všechna okna.\n" "Nedoporučuje se kvůli problémům s výkonem a stabilitou." -#: applications.ui:85 applications.ui:84 +#: applications.ui:85 msgid "Whitelist" msgstr "Seznam povolených" -#: applications.ui:86 applications.ui:85 +#: applications.ui:86 msgid "A list of windows to blur." msgstr "Seznam oken k rozmazání." -#: applications.ui:104 applications.ui:141 applications.ui:103 -#: applications.ui:140 +#: applications.ui:104 applications.ui:141 msgid "Add Window" msgstr "Přidat okno" -#: applications.ui:122 applications.ui:121 +#: applications.ui:122 msgid "Blacklist" msgstr "Černá listina" -#: applications.ui:123 applications.ui:122 +#: applications.ui:123 msgid "A list of windows not to blur." msgstr "Seznam oken, která se nemají rozmazávat." @@ -202,11 +201,11 @@ msgstr "Styl pozadí" msgid "The transparent/semi-transparent style for the dock background." msgstr "Průhledný/poloprůhledný styl pozadí doku." -#: dash.ui:50 panel.ui:41 dash.ui:41 +#: dash.ui:50 panel.ui:41 msgid "Disable in overview" msgstr "Zakázat v přehledu" -#: dash.ui:51 dash.ui:42 +#: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "Zakáže rozmazání z Dashe do doku při vstupu do přehledu." @@ -214,11 +213,11 @@ msgstr "Zakáže rozmazání z Dashe do doku při vstupu do přehledu." msgid "Transparent" msgstr "Transparentní" -#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 overview.ui:86 +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" msgstr "Světlý" -#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 overview.ui:87 +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 msgid "Dark" msgstr "Tmavý" @@ -402,7 +401,7 @@ msgstr "Styl dialogových oken složek aplikací" msgid "The semi-transparent style for the application folder dialogs." msgstr "Poloprůhledný styl pro dialogová okna složek aplikací." -#: overview.ui:79 overview.ui:88 overview.ui:85 +#: overview.ui:79 overview.ui:88 msgid "Do not style" msgstr "Nestylizujte" @@ -443,27 +442,27 @@ msgstr "" msgid "The transparent/semi-transparent style for the panel background." msgstr "Průhledný/poloprůhledný styl pozadí panelu." -#: panel.ui:79 panel.ui:64 +#: panel.ui:79 msgid "Disable when a window is near" msgstr "Zakázat, když je okno v blízkosti" -#: panel.ui:80 panel.ui:65 +#: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." msgstr "Zakáže průhlednost panelu, pokud se v jeho blízkosti nachází okno." -#: panel.ui:97 panel.ui:82 +#: panel.ui:97 msgid "Compatibility" msgstr "Kompatibilita" -#: panel.ui:98 panel.ui:83 +#: panel.ui:98 msgid "Various options to provide compatibility with other extensions." msgstr "Různé možnosti pro zajištění kompatibility s jinými rozšířeními." -#: panel.ui:103 panel.ui:88 +#: panel.ui:103 msgid "Hidetopbar extension" msgstr "Rozšíření Skrýt horní lištu" -#: panel.ui:104 panel.ui:89 +#: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" "Nevypíná rozostření v přehledu, nejlépe se používá se statickým rozostřením." @@ -480,90 +479,79 @@ msgstr "Vybrat okno" msgid "Pick a window or select it by its classname." msgstr "Vyberte okno nebo jej vyberte podle názvu třídy." -#: applications.ui:11 -msgid "" -"Add blur to the applications. This is still a beta functionnality.\n" -"To get the best results possible, make sure to choose option “No artefact” " -"in the “General → Hack level” preference.\n" -" " -msgstr "" -"Přidejte do aplikací rozostření. Jedná se stále beta funkci.\n" -"Chcete-li získat co nejlepší výsledky, vyberte možnost „Žádný artefakt“ v " -"předvolbě „Obecné → Úroveň hackování“.\n" -" " +#~ msgid "" +#~ "Add blur to the applications. This is still a beta functionnality.\n" +#~ "To get the best results possible, make sure to choose option “No " +#~ "artefact” in the “General → Hack level” preference.\n" +#~ " " +#~ msgstr "" +#~ "Přidejte do aplikací rozostření. Jedná se stále beta funkci.\n" +#~ "Chcete-li získat co nejlepší výsledky, vyberte možnost „Žádný artefakt“ v " +#~ "předvolbě „Obecné → Úroveň hackování“.\n" +#~ " " -#: dash.ui:27 -msgid "" -"Makes the background semi-transparent, disable this to use Dash to Dock " -"preferences instead." -msgstr "" -"Vytvoří poloprůhledné pozadí, pokud chcete místo toho použít předvolby Dash " -"to Dock, zakažte tuto funkci." +#~ msgid "" +#~ "Makes the background semi-transparent, disable this to use Dash to Dock " +#~ "preferences instead." +#~ msgstr "" +#~ "Vytvoří poloprůhledné pozadí, pokud chcete místo toho použít předvolby " +#~ "Dash to Dock, zakažte tuto funkci." -#: general.ui:117 -msgid "Performances" -msgstr "Představení" +#~ msgid "Performances" +#~ msgstr "Představení" -#: general.ui:118 -msgid "Various options to tweak the performances." -msgstr "Různé možnosti nastavení výkonů." +#~ msgid "Various options to tweak the performances." +#~ msgstr "Různé možnosti nastavení výkonů." -#: general.ui:123 -msgid "" -"Permits to disable globally the use of noise and color effects, this may " -"improve performances for low-end graphic." -msgstr "" -"Umožňuje globálně zakázat použití šumu a barevných efektů, což může zlepšit " -"výkon u grafiky nižší třídy." +#~ msgid "" +#~ "Permits to disable globally the use of noise and color effects, this may " +#~ "improve performances for low-end graphic." +#~ msgstr "" +#~ "Umožňuje globálně zakázat použití šumu a barevných efektů, což může " +#~ "zlepšit výkon u grafiky nižší třídy." -#: general.ui:136 -msgid "" -"Changes the behaviour of dynamic blur effect.\n" -"Default value is very recommended, unless you use application blur in which " -"case “No artefact” is better.\n" -"This option will entirely disable clipped redraws from GNOME shell, and may " -"impact performances significantly but will entirely fix the blur effect." -msgstr "" -"Změní chování efektu dynamického rozostření.\n" -"Výchozí hodnota je velmi doporučená, pokud nepoužíváte aplikační rozostření, " -"v takovém případě je lepší \"Bez artefaktu\".\n" -"Tato volba zcela zakáže oříznuté překreslování ze shellu GNOME a může mít " -"značný dopad na výkon, ale zcela opraví efekt rozmazání." +#~ msgid "" +#~ "Changes the behaviour of dynamic blur effect.\n" +#~ "Default value is very recommended, unless you use application blur in " +#~ "which case “No artefact” is better.\n" +#~ "This option will entirely disable clipped redraws from GNOME shell, and " +#~ "may impact performances significantly but will entirely fix the blur " +#~ "effect." +#~ msgstr "" +#~ "Změní chování efektu dynamického rozostření.\n" +#~ "Výchozí hodnota je velmi doporučená, pokud nepoužíváte aplikační " +#~ "rozostření, v takovém případě je lepší \"Bez artefaktu\".\n" +#~ "Tato volba zcela zakáže oříznuté překreslování ze shellu GNOME a může mít " +#~ "značný dopad na výkon, ale zcela opraví efekt rozmazání." -#: general.ui:231 -msgid "No artefact" -msgstr "Žádný artefakt" +#~ msgid "No artefact" +#~ msgstr "Žádný artefakt" -#: overview.ui:27 -msgid "" -"The semi-transparent style for the dash, search entry/results, and " -"applications folders." -msgstr "" -"Poloprůhledný styl pro Dash, položku/výsledky vyhledávání a složky aplikací." +#~ msgid "" +#~ "The semi-transparent style for the dash, search entry/results, and " +#~ "applications folders." +#~ msgstr "" +#~ "Poloprůhledný styl pro Dash, položku/výsledky vyhledávání a složky " +#~ "aplikací." -#: overview.ui:44 -msgid "Applications folder blur" -msgstr "Rozmazání složky s aplikacemi" +#~ msgid "Applications folder blur" +#~ msgstr "Rozmazání složky s aplikacemi" -#: overview.ui:45 -msgid "Makes the background of folder icons blurred." -msgstr "Rozostří pozadí ikon složek." +#~ msgid "Makes the background of folder icons blurred." +#~ msgstr "Rozostří pozadí ikon složek." -#: overview.ui:60 -msgid "Dialog opacity" -msgstr "Neprůhlednost dialogu" +#~ msgid "Dialog opacity" +#~ msgstr "Neprůhlednost dialogu" -#: overview.ui:61 -msgid "The opacity of the applications folder popup." -msgstr "Neprůhlednost vyskakovacího okna složky s aplikacemi." +#~ msgid "The opacity of the applications folder popup." +#~ msgstr "Neprůhlednost vyskakovacího okna složky s aplikacemi." -#: panel.ui:57 -msgid "" -"Override the background of the panel to use a transparent one.\n" -"Recommended unless you want to customize your GNOME theme." -msgstr "" -"Přepište pozadí panelu na průhledné.\n" -"Doporučujeme, pokud si nechcete přizpůsobit téma GNOME." +#~ msgid "" +#~ "Override the background of the panel to use a transparent one.\n" +#~ "Recommended unless you want to customize your GNOME theme." +#~ msgstr "" +#~ "Přepište pozadí panelu na průhledné.\n" +#~ "Doporučujeme, pokud si nechcete přizpůsobit téma GNOME." #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality, is " diff --git a/po/de.po b/po/de.po index a991ddc8..065dcfae 100644 --- a/po/de.po +++ b/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-01 17:42+0200\n" +"POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2022-09-13 08:18+0000\n" "Last-Translator: waddle5 \n" "Language-Team: German \n" "Language-Team: Spanish \n" "Language-Team: French \n" "Language-Team: Hungarian \n" "Language-Team: Italian \n" "Language-Team: Korean \n" "Language-Team: Norwegian Bokmål \n" -"Language-Team: Dutch \n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/po/pl.po b/po/pl.po index 9f580464..2b80342c 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-01 17:42+0200\n" +"POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2022-09-22 10:19+0000\n" "Last-Translator: Karol Lademan \n" "Language-Team: Polish \n" "Language-Team: Brazilian Portuguese \n" diff --git a/po/ru.po b/po/ru.po index 4e0c2199..31bad7c9 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-01 17:42+0200\n" +"POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2022-10-01 20:58+0300\n" "Last-Translator: Aleksandr Melman \n" "Language-Team: \n" diff --git a/po/sv.po b/po/sv.po index 6d3d2819..689749d7 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-01 17:42+0200\n" +"POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/ta.po b/po/ta.po index d999bee6..6f5ff320 100644 --- a/po/ta.po +++ b/po/ta.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-01 17:42+0200\n" +"POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2022-10-06 06:16+0000\n" "Last-Translator: K.B.Dharun Krishna \n" -"Language-Team: Tamil \n" +"Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -187,8 +187,8 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" -"பின்னணியை வெளிப்படையானதாகவோ அல்லது அரை-வெளிப்படையாகவோ மாற்றுகிறது, அதற்குப் " -"பதிலாக டாஷ் டு டாக் விருப்பங்களைப் பயன்படுத்த இதை முடக்கவும்." +"பின்னணியை வெளிப்படையானதாகவோ அல்லது அரை-வெளிப்படையாகவோ மாற்றுகிறது, அதற்குப் பதிலாக " +"டாஷ் டு டாக் விருப்பங்களைப் பயன்படுத்த இதை முடக்கவும்." #: dash.ui:33 panel.ui:64 msgid "Background style" @@ -248,8 +248,8 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" -"உலகளவில் சத்தம் மற்றும் வண்ண விளைவுகளை முடக்குகிறது, இது குறைந்த-இறுதி " -"அமைப்புகளில் செயல்திறனை மேம்படுத்தலாம்." +"உலகளவில் சத்தம் மற்றும் வண்ண விளைவுகளை முடக்குகிறது, இது குறைந்த-இறுதி அமைப்புகளில் " +"செயல்திறனை மேம்படுத்தலாம்." #: general.ui:135 msgid "Hack level" @@ -266,9 +266,8 @@ msgstr "" "டைனமிக் மங்கலான விளைவின் நடத்தையை மாற்றுகிறது. \n" "நீங்கள் பயன்பாட்டு மங்கலைப் பயன்படுத்தாத வரை, இயல்புநிலை மதிப்பு மிகவும் " "பரிந்துரைக்கப்படுகிறது, இதில் \"கலைப்பொருள் இல்லை\" என்பது சிறந்தது. \n" -"இந்த விருப்பம் GNOME ஷெல்லில் கிளிப் செய்யப்பட்ட ரீடிராக்களை முழுவதுமாக " -"முடக்கும், மேலும் செயல்திறனை கணிசமாக பாதிக்கலாம் ஆனால் மங்கலான விளைவை " -"முழுமையாக சரி செய்யும்." +"இந்த விருப்பம் GNOME ஷெல்லில் கிளிப் செய்யப்பட்ட ரீடிராக்களை முழுவதுமாக முடக்கும், மேலும் " +"செயல்திறனை கணிசமாக பாதிக்கலாம் ஆனால் மங்கலான விளைவை முழுமையாக சரி செய்யும்." #: general.ui:151 msgid "Debug" @@ -375,8 +374,8 @@ msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" -"கோடு, தேடல் உள்ளீடு/முடிவுகள் மற்றும் பயன்பாட்டுக் கோப்புறைகளுக்கான " -"அரை-வெளிப்படையான பாணி." +"கோடு, தேடல் உள்ளீடு/முடிவுகள் மற்றும் பயன்பாட்டுக் கோப்புறைகளுக்கான அரை-வெளிப்படையான " +"பாணி." #: overview.ui:44 msgid "Application folder blur" diff --git a/po/tr.po b/po/tr.po index a02ec4c4..4de77763 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-01 17:42+0200\n" +"POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/zh_Hans.po b/po/zh_Hans.po index 907cf3ad..12b8b3db 100644 --- a/po/zh_Hans.po +++ b/po/zh_Hans.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-01 17:42+0200\n" +"POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2022-09-02 01:23+0000\n" "Last-Translator: yangyangdaji <1504305527@qq.com>\n" "Language-Team: Chinese (Simplified) Date: Mon, 2 Jan 2023 14:41:18 +0000 Subject: [PATCH 072/212] Translated using Weblate (German) Currently translated at 86.4% (83 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/po/de.po b/po/de.po index 065dcfae..aba8afa7 100644 --- a/po/de.po +++ b/po/de.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2022-09-13 08:18+0000\n" -"Last-Translator: waddle5 \n" +"PO-Revision-Date: 2023-01-03 14:52+0000\n" +"Last-Translator: Davd Klkn \n" "Language-Team: German \n" "Language: de\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1-dev\n" +"X-Generator: Weblate 4.15.1-dev\n" #: applications.ui:5 msgid "Applications" @@ -34,6 +34,11 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Fügt Anwendungen einen Unschärfe-Effekt hinzu. Derzeit noch in der Beta-" +"Version.\n" +"Um die bestmöglichen Resultate zu erzielen, wählen Sie die Option \"Keine " +"Artefakte\" unter \"Allgemein → Hack Level\" aus.\n" +" " #: applications.ui:28 msgid "Opacity" @@ -211,7 +216,7 @@ msgstr "" #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "Transparent" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" @@ -237,7 +242,7 @@ msgstr "" #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Leistung" #: general.ui:118 msgid "Various options to tweak the performance." @@ -304,7 +309,7 @@ msgstr "Hohe Qualität" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Keine Artefakte" #: menu.ui:6 msgid "Project page" From 4ca353deb43bbdc3c43af11b8fea00588507b4bb Mon Sep 17 00:00:00 2001 From: Ujhhgtg Date: Thu, 12 Jan 2023 03:26:19 +0000 Subject: [PATCH 073/212] Translated using Weblate (Chinese (Simplified)) Currently translated at 83.3% (80 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/zh_Hans/ --- po/zh_Hans.po | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/po/zh_Hans.po b/po/zh_Hans.po index 12b8b3db..84d9f23d 100644 --- a/po/zh_Hans.po +++ b/po/zh_Hans.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2022-09-02 01:23+0000\n" -"Last-Translator: yangyangdaji <1504305527@qq.com>\n" +"PO-Revision-Date: 2023-01-13 03:52+0000\n" +"Last-Translator: Ujhhgtg \n" "Language-Team: Chinese (Simplified) \n" "Language: zh_Hans\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.14.1-dev\n" +"X-Generator: Weblate 4.15.1-dev\n" #: applications.ui:5 msgid "Applications" @@ -34,6 +34,9 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"对应用程序添加模糊效果。这是一个仍处于测试阶段的功能。\n" +"若想获得最佳效果,记得将 Hack 级别设置为\n" +" " #: applications.ui:28 msgid "Opacity" From 0c6884d76020101a396ca042c56c6163957a02ae Mon Sep 17 00:00:00 2001 From: Ujhhgtg Date: Fri, 13 Jan 2023 06:06:19 +0000 Subject: [PATCH 074/212] Translated using Weblate (Chinese (Simplified)) Currently translated at 87.5% (84 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/zh_Hans/ --- po/zh_Hans.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/zh_Hans.po b/po/zh_Hans.po index 84d9f23d..e085ee77 100644 --- a/po/zh_Hans.po +++ b/po/zh_Hans.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-01-13 03:52+0000\n" +"PO-Revision-Date: 2023-01-14 06:51+0000\n" "Last-Translator: Ujhhgtg \n" "Language-Team: Chinese (Simplified) \n" @@ -181,7 +181,7 @@ msgstr "" #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "背景样式" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." @@ -197,7 +197,7 @@ msgstr "在进入总览时禁用 Dash to Dock 的模糊。" #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "透明" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" @@ -221,7 +221,7 @@ msgstr "全局模糊首选项,默认被所有组件使用。" #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "性能" #: general.ui:118 msgid "Various options to tweak the performance." @@ -356,7 +356,7 @@ msgstr "" #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "应用程序文件夹模糊" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." From 3b0d10c72fad9c542081de374e32a652e1a5c077 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93scar=20Fern=C3=A1ndez=20D=C3=ADaz?= Date: Sat, 14 Jan 2023 09:59:32 +0000 Subject: [PATCH 075/212] Translated using Weblate (Spanish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/es/ --- po/es.po | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/po/es.po b/po/es.po index 94c2e9e4..8fc6e66b 100644 --- a/po/es.po +++ b/po/es.po @@ -8,8 +8,9 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2022-12-31 15:51+0000\n" -"Last-Translator: gallegonovato \n" +"PO-Revision-Date: 2023-01-15 13:52+0000\n" +"Last-Translator: Óscar Fernández Díaz \n" "Language-Team: Spanish \n" "Language: es\n" @@ -34,9 +35,9 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" -"Añade desenfoque a las aplicaciones. Esta funcionalidad aún es beta.\n" +"Añade desenfoque a las aplicaciones. Esta funcionalidad aún está en beta.\n" "Para obtener los mejores resultados posibles, asegúrese de elegir la opción " -"\"Sin artefacto\" en las preferencias \"General → Nivel de hackeo\".\n" +"\"Sin artefactos\" en las preferencias \"General → Nivel de hackeo\".\n" " " #: applications.ui:28 @@ -192,8 +193,8 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" -"Hace que el fondo sea transparente o semitransparente; desactívelo para " -"utilizar las preferencias de Dash to Dock." +"Hace que el fondo sea transparente o semitransparente; desactívelo para usar " +"las preferencias de Dash to Dock." #: dash.ui:33 panel.ui:64 msgid "Background style" @@ -272,11 +273,11 @@ msgid "" "impact performance significantly but will completely fix the blur effect." msgstr "" "Cambia el comportamiento del efecto del desenfoque dinámico.\n" -"El valor por defecto es altamente recomendado a menos que use desenfoque de " -"aplicación, en cuyo caso \"Sin artefacto\" es mejor.\n" -"Esta opción deshabilitará por completo los redibujados recortados en el " -"shell de GNOME, y puede afectar significativamente al rendimiento, pero " -"arreglará por completo el efecto de desenfoque." +"El valor predeterminado es altamente recomendado a menos que use desenfoque " +"de aplicación, en cuyo caso \"Sin artefactos\" es mejor.\n" +"Esta opción desactivará por completo los redibujados recortados en el shell " +"de GNOME, y puede afectar significativamente al rendimiento, pero arreglará " +"por completo el efecto de desenfoque." #: general.ui:151 msgid "Debug" From 906adee0486de936e7683db7377928bcf3d52c0e Mon Sep 17 00:00:00 2001 From: Ali Aljishi Date: Sat, 14 Jan 2023 13:05:32 +0000 Subject: [PATCH 076/212] Translated using Weblate (Arabic) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ar/ --- po/ar.po | 178 +++++++++++++++++++++++++++++++------------------------ 1 file changed, 99 insertions(+), 79 deletions(-) diff --git a/po/ar.po b/po/ar.po index 47dda7f7..2c42c040 100644 --- a/po/ar.po +++ b/po/ar.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2022-05-27 11:40+0000\n" -"Last-Translator: fawaz006 \n" +"PO-Revision-Date: 2023-01-15 13:52+0000\n" +"Last-Translator: Ali Aljishi \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.13-dev\n" +"X-Generator: Weblate 4.15.1-dev\n" "X-Poedit-Basepath: ../resources/ui\n" "X-Poedit-SearchPath-0: .\n" @@ -28,7 +28,7 @@ msgstr "التطبيقات" #: applications.ui:10 msgid "Applications blur (beta)" -msgstr "ضبابية التطبيقات (تجريبي)" +msgstr "تضبيب التطبيقات (تجريبي)" #: applications.ui:11 msgid "" @@ -37,36 +37,44 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"يضبِّب التطبيقات. لا يزال هذا الخيار تجريبًّا.\n" +"عليك اختيار الإعداد «بلا أثر» في تفضيل «عام ← مستوى التعديل» لتحصل على أفضل " +"النتائج.\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "العتمة" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." -msgstr "" +msgstr "عتمة النافذة أعلى تأثيرِ التضبيب. ستكون القيم العليا أوضح." #: applications.ui:51 msgid "Blur on overview" -msgstr "" +msgstr "ضبِّب النظرة العامَّة" #: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"يفرض تضبيب كلِّ مساحات العمل في النظرة العامَّة.\n" +"قد يسبِّب مشاكل في الأداء أو زمن الوصول." #: applications.ui:67 msgid "Enable all by default" -msgstr "" +msgstr "مكِّن الكلَّ مبدئيًّا" #: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"يضيف التضبيب خلف كلِّ النوافذ مبدئيًّا.\n" +"لا يُستحسن لأنه يسبِّب مشاكل في الأداء والثبات." #: applications.ui:85 msgid "Whitelist" @@ -74,36 +82,36 @@ msgstr "القائمة البيضاء" #: applications.ui:86 msgid "A list of windows to blur." -msgstr "" +msgstr "قائمة النوافذ التي تضبَّب." #: applications.ui:104 applications.ui:141 msgid "Add Window" -msgstr "" +msgstr "أضِف نافذةً" #: applications.ui:122 msgid "Blacklist" -msgstr "" +msgstr "القائمة السوداء" #: applications.ui:123 msgid "A list of windows not to blur." -msgstr "" +msgstr "قائمة النوافذ التي لا تضبَّب." #: customize-row.ui:4 msgid "Customize properties" -msgstr "تخصيص الخصائص" +msgstr "خصِّص الخصائص" #: customize-row.ui:5 msgid "" "Uses customized blur properties, instead of the ones set in the General page." -msgstr "أستخدام خصائص الضبابية المخصصة، بدلاً من تلك المعينة في الصفحة العامة." +msgstr "استخدم خصائص تضبيب مخصَّصة، بدلًا من تلك المعيَّنة في صفحة «عام»." #: customize-row.ui:10 general.ui:15 msgid "Sigma" -msgstr "سيجما" +msgstr "سِجما" #: customize-row.ui:11 general.ui:16 msgid "The intensity of the blur." -msgstr "شدة الضبابية." +msgstr "شدَّة التضبيب." #: customize-row.ui:31 general.ui:35 msgid "Brightness" @@ -113,7 +121,7 @@ msgstr "السطوع" msgid "" "The brightness of the blur effect, a high value might make the text harder " "to read." -msgstr "سطوع الضبابية، القيمة العالية قد تجعل النص أكثر صعوبة في القراءة." +msgstr "سطوع التضبيب، تصعِّب القيم العليا قراءة النصوص." #: customize-row.ui:52 general.ui:55 msgid "Color" @@ -123,77 +131,80 @@ msgstr "اللون" msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." -msgstr "" +msgstr "يغيِّر لون التضبيب، تتحكَّم عتمة اللون في امتزاجه مع تأثير التضبيب." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" -msgstr "" +msgstr "مقدار الضجيج" #: customize-row.ui:72 general.ui:74 msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." msgstr "" +"مقدار الضجيج المضاف لتأثير التضبيب. مفيد للشاشات متدنيِّة التباين لأسباب " +"جماليَّة." #: customize-row.ui:92 general.ui:94 msgid "Noise lightness" -msgstr "" +msgstr "إضاءة الضجيج" #: customize-row.ui:93 general.ui:95 msgid "The lightness of the noise added to the blur effect." -msgstr "" +msgstr "إضاءة الضجيج المضاف لتأثير التضبيب." #: customize-row.ui:113 msgid "Notice" -msgstr "" +msgstr "ملاحظة" #: customize-row.ui:114 msgid "" "Noise and color can't be activated on dynamically blurred components, such " "as this one." -msgstr "" +msgstr "لا يمكن تفعيل الضجيج واللون على المكوِّنات المضبَّبة ديناميكيًّا، كهذا." #: dash.ui:5 msgid "Dash" -msgstr "المشغل" +msgstr "شَرطة" #: dash.ui:10 msgid "Dash to Dock blur" -msgstr "ضبابية Dash to Dock" +msgstr "تضبيب Dash to Dock" #: dash.ui:11 msgid "Blur the background of the Dash to Dock extension, if it is used." -msgstr "تعتيم خلفية الأضافة Dash to Dock، إذا تم استخدامها." +msgstr "ضبِّب خلفيَّة امتداد Dash to Dock إن كان مستخدمًا." #: dash.ui:26 panel.ui:56 msgid "Override background" -msgstr "تجاوز الخلفية" +msgstr "تجاوز الخلفيَّة" #: dash.ui:27 msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"يجعل الخلفيَّة شفَّافةً أو شبه شفَّافة. عطِّل هذا لتستخدم تفضيل Dash to Dock." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "أسلوب الخلفيَّة" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "أسلوب خلفيَّة المرسى الشفَّاف أو شبه الشفَّاف." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" -msgstr "تعطيل في overview" +msgstr "عطِّل في النظرة العامَّة" #: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." -msgstr "تعطيل الضبابية من Dash to Dock عند الدخول إلى overview." +msgstr "يعطِّل تضبيب Dash to Dock في النظرة العامَّة." #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "شفَّاف" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" @@ -209,33 +220,35 @@ msgstr "عام" #: general.ui:10 msgid "Blur preferences" -msgstr "تفضيلات الضبابية" +msgstr "تفضيلات التضبيب" #: general.ui:11 msgid "Global blur preferences, used by all components by default." -msgstr "تفضيلات الضبابية العامة، تُستخدم بواسطة جميع المكونات افتراضيًا." +msgstr "التفضيلات العامَّة للتضبيب. تستخدمها كل المكوِّنات مبدئيًّا." #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "الأداء" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "خيارات عدَّة لتطويع الأداء." #: general.ui:122 msgid "Color and noise effects" -msgstr "" +msgstr "تأثيرات اللون والضجيج" #: general.ui:123 msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"يعطِّل تأثيرات الضجيج واللون عموميًّا. قد يحسِّن هذا الأداء في الأنظمة ضعيفة " +"العتاد." #: general.ui:135 msgid "Hack level" -msgstr "مستوى الاختراق" +msgstr "مستوى التعديل" #: general.ui:136 msgid "" @@ -245,36 +258,41 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"يغيِّر تصرُّف تأثير التضبيب الديناميكيِّ.\n" +"تُستحسن القيمة المبدئيَّة حالما لم تستخدم تضبيب التطبيقات، حيث أنَّ «بلا أثر»" +" أفضل حينها.\n" +"سيعطِّل هذا الخيار إعادة الرسم المقصوصة في صدفة جنوم تمامًا، وقد يؤثِّر على " +"الأداء بشكل معتبر، ولكنَّه سيُصلح تأثير التضبيب كليًّا." #: general.ui:151 msgid "Debug" -msgstr "تصحيح الأخطاء" +msgstr "التنقيح" #: general.ui:152 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." -msgstr "يجعل الامتداد مطولًا في سجلات ، وينشط عندما تحتاج إلى الإبلاغ عن مشكلة." +msgstr "يطنِّب الامتداد في السجلَّات، فعِّله إذا أردت التبليغ عن علَّة." #: general.ui:167 msgid "Reset preferences" -msgstr "" +msgstr "صفِّر التفضيلات" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "يصفِّر تفضيلات «ضبِّب صدفتي» نهائيًّا." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "صفِّر" #: general.ui:228 msgid "High performances" -msgstr "أداء عالي" +msgstr "التأديات العالية" #: general.ui:229 msgid "Default" -msgstr "الافتراضي" +msgstr "مبدئيٌّ" #: general.ui:230 msgid "High quality" @@ -282,7 +300,7 @@ msgstr "جودة عالية" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "بلا أثر" #: menu.ui:6 msgid "Project page" @@ -290,15 +308,15 @@ msgstr "صفحة المشروع" #: menu.ui:10 msgid "Report a Bug" -msgstr "الإبلاغ عن خلل" +msgstr "بلِّغ عن علَّة" #: menu.ui:14 msgid "License" -msgstr "الرخصة" +msgstr "الترخيص" #: menu.ui:18 msgid "Donate" -msgstr "تبرع" +msgstr "تبرَّع" #: other.ui:5 msgid "Other" @@ -306,69 +324,69 @@ msgstr "آخر" #: other.ui:10 msgid "Lockscreen blur" -msgstr "ضبابية قُفْل الشاشة" +msgstr "تضبيب شاشة القفل" #: other.ui:11 msgid "Change the blur of the lockscreen to use this extension's preferences." -msgstr "قم بتغيير ضبابية شاشة القُفْل لاستخدام تفضيلات هذا الامتداد." +msgstr "غيِّر تضبيب شاشة القفل لتستخدم تفضيل هذا الامتداد." #: other.ui:28 msgid "Screenshot blur" -msgstr "ضبابية لقطة شاشة" +msgstr "تضبيب لقطة شاشة" #: other.ui:29 msgid "Add blur to the background of the window selector in the screenshot UI." -msgstr "أضف ضبابية إلى خلفية محدد النافذة في واجهة لقطة الشاشة." +msgstr "ضبِّب خلفيَّة محدِّد النوافذ في واجهة لقطة الشاشة." #: other.ui:46 msgid "Window list extension blur" -msgstr "تمويه امتداد قائمة النوافذ" +msgstr "تضبيب امتداد قائمة-النوافذ" #: other.ui:47 msgid "Make the window-list extension blurred, if it is used." -msgstr "اجعل امتداد قائمة النوافذ ضبابي، إذا تم استخدامه." +msgstr "ضبِّب امتداد قائمة-النوافذ إن كان مستخدمًا." #: overview.ui:5 msgid "Overview" -msgstr "النظرة العامة" +msgstr "النظرة العامَّة" #: overview.ui:10 msgid "Background blur" -msgstr "ضبابية الخلفية" +msgstr "تضبيب الخلفية" #: overview.ui:11 msgid "Add blur to the overview background, using the wallpaper picture." -msgstr "أضف ضبابية إلى خلفية الملخص باستخدام الخلفية." +msgstr "ضبِّب خلفيَّة النظرة العامَّة باستخدام صورة خلفيَّة الشاشة." #: overview.ui:26 msgid "Overview components style" -msgstr "نظرة عامة على نمط المكونات" +msgstr "أسلوب مكوِّنات النظرة العامَّة" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." -msgstr "" +msgstr "الأسلوب الشبه شفَّاف للشَّرطة ومدخلات\\نتائج البحث ومجلَّدات التطبيقات." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "تضبيب مجلَّد التطبيق" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "يضبِّب خلفيَّة مربعات حوار مجلَّد التطبيق." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "أسلوب مربَّعات حوار مجلَّد التطبيق" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." -msgstr "" +msgstr "الأسلوب الشبه شفَّاف لمربَّعات حوار مجلَّد التطبيق." #: overview.ui:79 overview.ui:88 msgid "Do not style" -msgstr "لا تصمم" +msgstr "لا تطبِّق الأسلوب" #: panel.ui:5 msgid "Panel" @@ -376,23 +394,23 @@ msgstr "لوحة" #: panel.ui:10 msgid "Panel blur" -msgstr "ضبابية الوحة" +msgstr "تضبيب اللوحة" #: panel.ui:11 msgid "Blur the top panel using the background image." -msgstr "تغير ضبابية اللوحة العلوية باستخدام صورة الخلفية." +msgstr "ضبِّب اللوحة العليا باستخدام صورة الخلفيَّة." #: panel.ui:26 msgid "Static blur" -msgstr "ضبابية ثابتة" +msgstr "تضبيب ثابت" #: panel.ui:27 msgid "Uses a static blurred image, more performant and stable." -msgstr "يستخدم صورة ثابتة ضبابية وأكثر أداءً واستقرارًا." +msgstr "يستخدم صورةً بتضبيب ثابت، يؤدِّي هذا لاستقرار وأداء أفضل." #: panel.ui:42 msgid "Disables the blur from the panel when entering the overview." -msgstr "تعطيل التمويه من اللوحة عند الدخول إلى النظرة العامة." +msgstr "يعطِّل تضبيب اللوحة في النظرة العامَّة." #: panel.ui:57 msgid "" @@ -400,18 +418,20 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"تجاوَز خلفيَّة اللوحة لتستخدم خلفيَّةً شفَّافةً أو شبه شفَّافة.\n" +"يُستحسن إلا ما إذا أردت تخصيص سمة جنوم." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "أسلوب خلفيَّة اللوحة الشفَّاف\\شبه الشفَّاف." #: panel.ui:79 msgid "Disable when a window is near" -msgstr "" +msgstr "عطِّل إذا اقتربت نافذة" #: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "يعطِّل شفافيَّة اللوحة عند اقتراب نافذة منها." #: panel.ui:97 msgid "Compatibility" @@ -419,28 +439,28 @@ msgstr "التوافق" #: panel.ui:98 msgid "Various options to provide compatibility with other extensions." -msgstr "خيارات متنوعة لتوفير التوافق مع الأضافات الأخرى." +msgstr "خيارات عدَّة للتوافق مع الامتدادات الأخرى." #: panel.ui:103 msgid "Hidetopbar extension" -msgstr "تمديد Hidetopbar" +msgstr "امتداد Hidetopbar" #: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" -"لا يعطل الضبابية في النظرة العامة، وأفضل استخدام له مع الضبابية الثابت." +"لا يعطِّل التضبيب في النظرة العامَّة، الأفضل استخدامه مع التضبيب الثابت." #: window-row.ui:4 msgid "Window Name" -msgstr "" +msgstr "اسم النافذة" #: window-row.ui:8 msgid "Select window" -msgstr "" +msgstr "حدِّد نافذةً" #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" +msgstr "اختر نافذة أو حدِّدها باستخدام اسم صنفها." #~ msgid "" #~ "Makes the background semi-transparent, disable this to use Dash to Dock " From f55f7820c88da28ed943e2df83348c90a16161c2 Mon Sep 17 00:00:00 2001 From: Ujhhgtg Date: Mon, 16 Jan 2023 08:28:28 +0000 Subject: [PATCH 077/212] Translated using Weblate (Chinese (Simplified)) Currently translated at 88.5% (85 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/zh_Hans/ --- po/zh_Hans.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_Hans.po b/po/zh_Hans.po index e085ee77..f9944b34 100644 --- a/po/zh_Hans.po +++ b/po/zh_Hans.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-01-14 06:51+0000\n" +"PO-Revision-Date: 2023-01-17 08:53+0000\n" "Last-Translator: Ujhhgtg \n" "Language-Team: Chinese (Simplified) \n" @@ -177,7 +177,7 @@ msgstr "覆盖背景" msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." -msgstr "" +msgstr "使背景透明或半透明,禁用此选项以改用 Dash to Dock 的首选项。" #: dash.ui:33 panel.ui:64 msgid "Background style" From ba32ddcaca438756574795d0d32f8fecb59cc88e Mon Sep 17 00:00:00 2001 From: Karol Lademan Date: Tue, 31 Jan 2023 19:53:55 +0000 Subject: [PATCH 078/212] Translated using Weblate (Polish) Currently translated at 83.3% (80 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pl/ --- po/pl.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/pl.po b/po/pl.po index 2b80342c..17c8557f 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2022-09-22 10:19+0000\n" +"PO-Revision-Date: 2023-02-01 21:01+0000\n" "Last-Translator: Karol Lademan \n" "Language-Team: Polish \n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.16-dev\n" #: applications.ui:5 msgid "Applications" @@ -191,7 +191,7 @@ msgstr "" #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Styl tła" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." From 3cde5bbe5733ac6388bd54397d754be48b77bf01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sabri=20=C3=9Cnal?= Date: Fri, 17 Feb 2023 22:06:27 +0000 Subject: [PATCH 079/212] Translated using Weblate (Turkish) Currently translated at 67.7% (65 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/tr/ --- po/tr.po | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/po/tr.po b/po/tr.po index 4de77763..9a9c50c3 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-02-18 22:39+0000\n" +"Last-Translator: Sabri Ünal \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.16-dev\n" #: applications.ui:5 msgid "Applications" @@ -34,17 +37,19 @@ msgstr "" #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Matlık" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"Bulanıklaştırma efektinin üstündeki pencerenin matlığı, daha yüksek bir " +"değer daha okunaklı olacaktır." #: applications.ui:51 msgid "Blur on overview" -msgstr "" +msgstr "Genel görünümde bulanıklık" #: applications.ui:52 msgid "" From da55b60b15033940dd086eb1557dd6a67133f6bc Mon Sep 17 00:00:00 2001 From: Vander Date: Sun, 19 Feb 2023 17:10:57 +0000 Subject: [PATCH 080/212] Translated using Weblate (Portuguese) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pt/ --- po/pt.po | 55 +++++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 39 insertions(+), 16 deletions(-) diff --git a/po/pt.po b/po/pt.po index 9ebd517f..617c020a 100644 --- a/po/pt.po +++ b/po/pt.po @@ -9,15 +9,16 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2022-09-10 15:39-0300\n" -"Last-Translator: Natália Mendes Carlos \n" -"Language-Team: Brazilian Portuguese \n" -"Language: pt_BR\n" +"PO-Revision-Date: 2023-02-20 17:38+0000\n" +"Last-Translator: Vander \n" +"Language-Team: Portuguese \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" -"X-Generator: Gtranslator 41.0\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.16-dev\n" #: applications.ui:5 msgid "Applications" @@ -34,6 +35,10 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Adiciona desfoque aos aplicativos. Ainda em estágio de testes.\n" +"Para ter os melhores resultados possíveis, certifique-se de escolher a opção " +"\"Sem artefatos\" em \"Geral → Nível do hack\" nas preferências.\n" +" " #: applications.ui:28 msgid "Opacity" @@ -187,14 +192,16 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Torna o plano de fundo transparente ou semitransparente, desative isso para " +"usar as preferências do Dash to Dock." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Estilo do plano de fundo" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "O estilo transparente/semitransparente para o plano de fundo do dock." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" @@ -206,7 +213,7 @@ msgstr "Desativa o desfoque do Dash to Dock ao entrar na visão geral." #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "Transparente" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" @@ -232,11 +239,11 @@ msgstr "" #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Desempenho" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Opções variadas para ajustar o desempenho." #: general.ui:122 msgid "Color and noise effects" @@ -247,6 +254,8 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"Desativa globalmente os efeitos de ruído e cor que podem melhorar o " +"desempenho em sistemas de baixo custo." #: general.ui:135 msgid "Hack level" @@ -260,6 +269,12 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Altera o comportamento do efeito de desfoque dinâmico.\n" +"O valor padrão é altamente recomendado, a menos que você use o desfoque de " +"aplicações, caso em que “Sem artefato” é melhor.\n" +"Esta opção desabilitará totalmente os redesenhos recortados no shell do " +"GNOME e pode afetar significativamente o desempenho, mas corrigirá " +"completamente o efeito de desfoque." #: general.ui:151 msgid "Debug" @@ -300,7 +315,7 @@ msgstr "Alta qualidade" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Sem artefato" #: menu.ui:6 msgid "Project page" @@ -373,22 +388,27 @@ msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" +"O estilo semitransparente para o dash, entrada/resultados de pesquisa e " +"pastas de aplicativos." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Desfoque da pasta do aplicativo" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." msgstr "" +"Torna o plano de fundo das caixas de diálogo da pasta do aplicativo " +"desfocado." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Estilo das caixas de diálogo da pasta do aplicativo" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." msgstr "" +"O estilo semitransparente para as caixas de diálogo da pasta do aplicativo." #: overview.ui:79 overview.ui:88 msgid "Do not style" @@ -425,10 +445,13 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Substitua o plano de fundo do painel para usar um transparente ou " +"semitransparente.\n" +"Recomendado, a menos que você queira personalizar seu tema GNOME." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "O estilo transparente/semitransparente para o plano de fundo do painel." #: panel.ui:79 msgid "Disable when a window is near" @@ -436,7 +459,7 @@ msgstr "Desativar quando uma janela estiver próxima" #: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." -msgstr "Desabilita a transparência do painel quando uma janela está próxima" +msgstr "Desabilita a transparência do painel quando uma janela está próxima." #: panel.ui:97 msgid "Compatibility" From 845c709644a1d9b118e722d730d554c74791477c Mon Sep 17 00:00:00 2001 From: Temuri Doghonadze Date: Tue, 21 Feb 2023 12:21:06 +0100 Subject: [PATCH 081/212] Added translation using Weblate (Georgian) --- po/ka.po | 436 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 436 insertions(+) create mode 100644 po/ka.po diff --git a/po/ka.po b/po/ka.po new file mode 100644 index 00000000..f6204804 --- /dev/null +++ b/po/ka.po @@ -0,0 +1,436 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the blur-my-shell@aunetx package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: blur-my-shell@aunetx\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-02 02:53+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications.ui:5 +msgid "Applications" +msgstr "" + +#: applications.ui:10 +msgid "Applications blur (beta)" +msgstr "" + +#: applications.ui:11 +msgid "" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" +" " +msgstr "" + +#: applications.ui:28 +msgid "Opacity" +msgstr "" + +#: applications.ui:29 +msgid "" +"The opacity of the window on top of the blur effect, a higher value will be " +"more legible." +msgstr "" + +#: applications.ui:51 +msgid "Blur on overview" +msgstr "" + +#: applications.ui:52 +msgid "" +"Forces the blur to be properly shown on all workspaces on overview.\n" +"This may cause some latency or performance issues." +msgstr "" + +#: applications.ui:67 +msgid "Enable all by default" +msgstr "" + +#: applications.ui:68 +msgid "" +"Adds blur behind all windows by default.\n" +"Not recommended because of performance and stability issues." +msgstr "" + +#: applications.ui:85 +msgid "Whitelist" +msgstr "" + +#: applications.ui:86 +msgid "A list of windows to blur." +msgstr "" + +#: applications.ui:104 applications.ui:141 +msgid "Add Window" +msgstr "" + +#: applications.ui:122 +msgid "Blacklist" +msgstr "" + +#: applications.ui:123 +msgid "A list of windows not to blur." +msgstr "" + +#: customize-row.ui:4 +msgid "Customize properties" +msgstr "" + +#: customize-row.ui:5 +msgid "" +"Uses customized blur properties, instead of the ones set in the General page." +msgstr "" + +#: customize-row.ui:10 general.ui:15 +msgid "Sigma" +msgstr "" + +#: customize-row.ui:11 general.ui:16 +msgid "The intensity of the blur." +msgstr "" + +#: customize-row.ui:31 general.ui:35 +msgid "Brightness" +msgstr "" + +#: customize-row.ui:32 general.ui:36 +msgid "" +"The brightness of the blur effect, a high value might make the text harder " +"to read." +msgstr "" + +#: customize-row.ui:52 general.ui:55 +msgid "Color" +msgstr "" + +#: customize-row.ui:53 general.ui:56 +msgid "" +"Changes the color of the blur. The opacity of the color controls how much it " +"is blended into the blur effect." +msgstr "" + +#: customize-row.ui:71 general.ui:73 +msgid "Noise amount" +msgstr "" + +#: customize-row.ui:72 general.ui:74 +msgid "" +"The amount of noise to add to the blur effect, useful on low-contrast " +"screens or for aesthetic purpose." +msgstr "" + +#: customize-row.ui:92 general.ui:94 +msgid "Noise lightness" +msgstr "" + +#: customize-row.ui:93 general.ui:95 +msgid "The lightness of the noise added to the blur effect." +msgstr "" + +#: customize-row.ui:113 +msgid "Notice" +msgstr "" + +#: customize-row.ui:114 +msgid "" +"Noise and color can't be activated on dynamically blurred components, such " +"as this one." +msgstr "" + +#: dash.ui:5 +msgid "Dash" +msgstr "" + +#: dash.ui:10 +msgid "Dash to Dock blur" +msgstr "" + +#: dash.ui:11 +msgid "Blur the background of the Dash to Dock extension, if it is used." +msgstr "" + +#: dash.ui:26 panel.ui:56 +msgid "Override background" +msgstr "" + +#: dash.ui:27 +msgid "" +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." +msgstr "" + +#: dash.ui:50 panel.ui:41 +msgid "Disable in overview" +msgstr "" + +#: dash.ui:51 +msgid "Disables the blur from Dash to Dock when entering the overview." +msgstr "" + +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +msgid "Light" +msgstr "" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +msgid "Dark" +msgstr "" + +#: general.ui:5 +msgid "General" +msgstr "" + +#: general.ui:10 +msgid "Blur preferences" +msgstr "" + +#: general.ui:11 +msgid "Global blur preferences, used by all components by default." +msgstr "" + +#: general.ui:117 +msgid "Performance" +msgstr "" + +#: general.ui:118 +msgid "Various options to tweak the performance." +msgstr "" + +#: general.ui:122 +msgid "Color and noise effects" +msgstr "" + +#: general.ui:123 +msgid "" +"Globally disables noise and color effects which may improve performance on " +"low-end systems." +msgstr "" + +#: general.ui:135 +msgid "Hack level" +msgstr "" + +#: general.ui:136 +msgid "" +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." +msgstr "" + +#: general.ui:151 +msgid "Debug" +msgstr "" + +#: general.ui:152 +msgid "" +"Makes the extension verbose in logs, activate when you need to report an " +"issue." +msgstr "" + +#: general.ui:167 +msgid "Reset preferences" +msgstr "" + +#: general.ui:168 +msgid "Resets preferences of Blur my Shell irreversibly." +msgstr "" + +#: general.ui:187 +msgid "Reset" +msgstr "" + +#: general.ui:228 +msgid "High performances" +msgstr "" + +#: general.ui:229 +msgid "Default" +msgstr "" + +#: general.ui:230 +msgid "High quality" +msgstr "" + +#: general.ui:231 +msgid "No artifact" +msgstr "" + +#: menu.ui:6 +msgid "Project page" +msgstr "" + +#: menu.ui:10 +msgid "Report a Bug" +msgstr "" + +#: menu.ui:14 +msgid "License" +msgstr "" + +#: menu.ui:18 +msgid "Donate" +msgstr "" + +#: other.ui:5 +msgid "Other" +msgstr "" + +#: other.ui:10 +msgid "Lockscreen blur" +msgstr "" + +#: other.ui:11 +msgid "Change the blur of the lockscreen to use this extension's preferences." +msgstr "" + +#: other.ui:28 +msgid "Screenshot blur" +msgstr "" + +#: other.ui:29 +msgid "Add blur to the background of the window selector in the screenshot UI." +msgstr "" + +#: other.ui:46 +msgid "Window list extension blur" +msgstr "" + +#: other.ui:47 +msgid "Make the window-list extension blurred, if it is used." +msgstr "" + +#: overview.ui:5 +msgid "Overview" +msgstr "" + +#: overview.ui:10 +msgid "Background blur" +msgstr "" + +#: overview.ui:11 +msgid "Add blur to the overview background, using the wallpaper picture." +msgstr "" + +#: overview.ui:26 +msgid "Overview components style" +msgstr "" + +#: overview.ui:27 +msgid "" +"The semi-transparent style for the dash, search entry/results, and " +"application folders." +msgstr "" + +#: overview.ui:44 +msgid "Application folder blur" +msgstr "" + +#: overview.ui:45 +msgid "Makes the background of application folder dialogs blurred." +msgstr "" + +#: overview.ui:60 +msgid "Application folder dialogs style" +msgstr "" + +#: overview.ui:61 +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" + +#: overview.ui:79 overview.ui:88 +msgid "Do not style" +msgstr "" + +#: panel.ui:5 +msgid "Panel" +msgstr "" + +#: panel.ui:10 +msgid "Panel blur" +msgstr "" + +#: panel.ui:11 +msgid "Blur the top panel using the background image." +msgstr "" + +#: panel.ui:26 +msgid "Static blur" +msgstr "" + +#: panel.ui:27 +msgid "Uses a static blurred image, more performant and stable." +msgstr "" + +#: panel.ui:42 +msgid "Disables the blur from the panel when entering the overview." +msgstr "" + +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" + +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 +msgid "Disable when a window is near" +msgstr "" + +#: panel.ui:80 +msgid "Disables the transparency of the panel when a window is near it." +msgstr "" + +#: panel.ui:97 +msgid "Compatibility" +msgstr "" + +#: panel.ui:98 +msgid "Various options to provide compatibility with other extensions." +msgstr "" + +#: panel.ui:103 +msgid "Hidetopbar extension" +msgstr "" + +#: panel.ui:104 +msgid "Does not disable the blur in overview, best used with static blur." +msgstr "" + +#: window-row.ui:4 +msgid "Window Name" +msgstr "" + +#: window-row.ui:8 +msgid "Select window" +msgstr "" + +#: window-row.ui:9 +msgid "Pick a window or select it by its classname." +msgstr "" From a1ea2b7404facefb9120db88ff64ad68ef370bf1 Mon Sep 17 00:00:00 2001 From: Temuri Doghonadze Date: Tue, 21 Feb 2023 11:23:05 +0000 Subject: [PATCH 082/212] Translated using Weblate (Georgian) Currently translated at 40.6% (39 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ka/ --- po/ka.po | 87 +++++++++++++++++++++++++++++--------------------------- 1 file changed, 45 insertions(+), 42 deletions(-) diff --git a/po/ka.po b/po/ka.po index f6204804..3e83dd3d 100644 --- a/po/ka.po +++ b/po/ka.po @@ -8,17 +8,20 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-02-22 11:35+0000\n" +"Last-Translator: Temuri Doghonadze \n" +"Language-Team: Georgian \n" "Language: ka\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.16-dev\n" #: applications.ui:5 msgid "Applications" -msgstr "" +msgstr "აპლიკაციები" #: applications.ui:10 msgid "Applications blur (beta)" @@ -34,7 +37,7 @@ msgstr "" #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "_გაუმჭვირვალობა" #: applications.ui:29 msgid "" @@ -64,7 +67,7 @@ msgstr "" #: applications.ui:85 msgid "Whitelist" -msgstr "" +msgstr "თეთრი სია" #: applications.ui:86 msgid "A list of windows to blur." @@ -72,11 +75,11 @@ msgstr "" #: applications.ui:104 applications.ui:141 msgid "Add Window" -msgstr "" +msgstr "ფანჯრის დამატება" #: applications.ui:122 msgid "Blacklist" -msgstr "" +msgstr "შავი სია" #: applications.ui:123 msgid "A list of windows not to blur." @@ -84,7 +87,7 @@ msgstr "" #: customize-row.ui:4 msgid "Customize properties" -msgstr "" +msgstr "თვისებების მორგება" #: customize-row.ui:5 msgid "" @@ -93,15 +96,15 @@ msgstr "" #: customize-row.ui:10 general.ui:15 msgid "Sigma" -msgstr "" +msgstr "სიგმა" #: customize-row.ui:11 general.ui:16 msgid "The intensity of the blur." -msgstr "" +msgstr "დაბინდვის ინტენსივობა." #: customize-row.ui:31 general.ui:35 msgid "Brightness" -msgstr "" +msgstr "სიკაშკაშე" #: customize-row.ui:32 general.ui:36 msgid "" @@ -111,7 +114,7 @@ msgstr "" #: customize-row.ui:52 general.ui:55 msgid "Color" -msgstr "" +msgstr "ფერი" #: customize-row.ui:53 general.ui:56 msgid "" @@ -121,7 +124,7 @@ msgstr "" #: customize-row.ui:71 general.ui:73 msgid "Noise amount" -msgstr "" +msgstr "ხმაურის ოდენობა" #: customize-row.ui:72 general.ui:74 msgid "" @@ -131,7 +134,7 @@ msgstr "" #: customize-row.ui:92 general.ui:94 msgid "Noise lightness" -msgstr "" +msgstr "ხმაურის სიმსუბუქე" #: customize-row.ui:93 general.ui:95 msgid "The lightness of the noise added to the blur effect." @@ -139,7 +142,7 @@ msgstr "" #: customize-row.ui:113 msgid "Notice" -msgstr "" +msgstr "გაფრთხილება" #: customize-row.ui:114 msgid "" @@ -149,7 +152,7 @@ msgstr "" #: dash.ui:5 msgid "Dash" -msgstr "" +msgstr "პანელი" #: dash.ui:10 msgid "Dash to Dock blur" @@ -161,7 +164,7 @@ msgstr "" #: dash.ui:26 panel.ui:56 msgid "Override background" -msgstr "" +msgstr "ფონის გადაფარვა" #: dash.ui:27 msgid "" @@ -171,7 +174,7 @@ msgstr "" #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "ფონის სტილი" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." @@ -187,19 +190,19 @@ msgstr "" #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "გამჭვირვალე" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" -msgstr "" +msgstr "ღია" #: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 msgid "Dark" -msgstr "" +msgstr "ბნელი" #: general.ui:5 msgid "General" -msgstr "" +msgstr "მთავარი" #: general.ui:10 msgid "Blur preferences" @@ -211,7 +214,7 @@ msgstr "" #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "წარმადობა" #: general.ui:118 msgid "Various options to tweak the performance." @@ -242,7 +245,7 @@ msgstr "" #: general.ui:151 msgid "Debug" -msgstr "" +msgstr "გამართვა" #: general.ui:152 msgid "" @@ -260,47 +263,47 @@ msgstr "" #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "თავიდან" #: general.ui:228 msgid "High performances" -msgstr "" +msgstr "მაღალი წარმადობა" #: general.ui:229 msgid "Default" -msgstr "" +msgstr "ნაგულისხმები" #: general.ui:230 msgid "High quality" -msgstr "" +msgstr "მაღალი ხარისხი" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "არტეფაქტის გარეშე" #: menu.ui:6 msgid "Project page" -msgstr "" +msgstr "პროექტის გვერდი" #: menu.ui:10 msgid "Report a Bug" -msgstr "" +msgstr "შეცდომის პატაკი" #: menu.ui:14 msgid "License" -msgstr "" +msgstr "ლიცენზია" #: menu.ui:18 msgid "Donate" -msgstr "" +msgstr "შემოწირულობა" #: other.ui:5 msgid "Other" -msgstr "" +msgstr "სხვა" #: other.ui:10 msgid "Lockscreen blur" -msgstr "" +msgstr "ჩაკეტილი ეკრანის დაბინდვა" #: other.ui:11 msgid "Change the blur of the lockscreen to use this extension's preferences." @@ -324,11 +327,11 @@ msgstr "" #: overview.ui:5 msgid "Overview" -msgstr "" +msgstr "მიმოხილვა" #: overview.ui:10 msgid "Background blur" -msgstr "" +msgstr "ფონის დაბინდვა" #: overview.ui:11 msgid "Add blur to the overview background, using the wallpaper picture." @@ -366,7 +369,7 @@ msgstr "" #: panel.ui:5 msgid "Panel" -msgstr "" +msgstr "ზოლი" #: panel.ui:10 msgid "Panel blur" @@ -409,7 +412,7 @@ msgstr "" #: panel.ui:97 msgid "Compatibility" -msgstr "" +msgstr "თავსებადობა" #: panel.ui:98 msgid "Various options to provide compatibility with other extensions." @@ -425,11 +428,11 @@ msgstr "" #: window-row.ui:4 msgid "Window Name" -msgstr "" +msgstr "ფანჯრის სახელი" #: window-row.ui:8 msgid "Select window" -msgstr "" +msgstr "ფანჯრის არჩევა" #: window-row.ui:9 msgid "Pick a window or select it by its classname." From cbfe5e5ab0a845f40d20cbce94939b9c1722f90c Mon Sep 17 00:00:00 2001 From: derarchitekt Date: Thu, 23 Feb 2023 20:15:05 +0000 Subject: [PATCH 083/212] Translated using Weblate (German) Currently translated at 91.6% (88 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/po/de.po b/po/de.po index aba8afa7..c54850a2 100644 --- a/po/de.po +++ b/po/de.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-01-03 14:52+0000\n" -"Last-Translator: Davd Klkn \n" +"PO-Revision-Date: 2023-02-24 20:39+0000\n" +"Last-Translator: derarchitekt \n" "Language-Team: German \n" "Language: de\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.15.1-dev\n" +"X-Generator: Weblate 4.16-dev\n" #: applications.ui:5 msgid "Applications" @@ -196,14 +196,16 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Macht den Hintergrund entweder transparent oder semitransparent. " +"Deaktivieren um stattdessen die Dash to Dock Einstellungen zu verwenden" #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Hintergrundstil" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "Transparenz/Semitransparenz Stil für den Dock Hintergrund." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" @@ -246,7 +248,7 @@ msgstr "Leistung" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Verschiedene Optionen um die Performance anzupassen." #: general.ui:122 msgid "Color and noise effects" @@ -257,6 +259,8 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"Deaktiviert Rausch und Farb-Effekte global, um die Performance " +"leistungsschwachen Systemen möglicherweise zu verbessern." #: general.ui:135 msgid "Hack level" From 2fc8db2a93cbc26f8ea1f5a9bc38b67d24ef6944 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sabri=20=C3=9Cnal?= Date: Sat, 4 Mar 2023 13:03:44 +0000 Subject: [PATCH 084/212] Translated using Weblate (Turkish) Currently translated at 72.9% (70 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/tr/ --- po/tr.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/po/tr.po b/po/tr.po index 9a9c50c3..5c15920c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-02-18 22:39+0000\n" +"PO-Revision-Date: 2023-03-05 13:41+0000\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.16-dev\n" +"X-Generator: Weblate 4.16.2-dev\n" #: applications.ui:5 msgid "Applications" @@ -77,7 +77,7 @@ msgstr "" #: applications.ui:104 applications.ui:141 msgid "Add Window" -msgstr "" +msgstr "Pencere Ekle" #: applications.ui:122 msgid "Blacklist" @@ -186,7 +186,7 @@ msgstr "" #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Arka plan biçemi" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." @@ -202,7 +202,7 @@ msgstr "Genel bakışa geçişte Dash to Dock bulanıklığını devre dışı b #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "Şeffaf" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" @@ -228,11 +228,11 @@ msgstr "" #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Performans" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Performansı ayarlamak için çeşitli seçenekler." #: general.ui:122 msgid "Color and noise effects" From 6c2c97262fbcb5478d4230102e74af75ca77f0e6 Mon Sep 17 00:00:00 2001 From: Andus Date: Mon, 6 Mar 2023 16:36:54 +0000 Subject: [PATCH 085/212] Translated using Weblate (Polish) Currently translated at 85.4% (82 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pl/ --- po/pl.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/pl.po b/po/pl.po index 17c8557f..4c3e5ac1 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-02-01 21:01+0000\n" -"Last-Translator: Karol Lademan \n" +"PO-Revision-Date: 2023-03-06 16:36+0000\n" +"Last-Translator: Andus \n" "Language-Team: Polish \n" "Language: pl\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.16-dev\n" +"X-Generator: Weblate 4.16.2-dev\n" #: applications.ui:5 msgid "Applications" @@ -195,7 +195,7 @@ msgstr "Styl tła" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "Przezroczysty/półprzezroczysty styl tła docka." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" @@ -209,7 +209,7 @@ msgstr "" #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "Przezroczysty" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" From a7bb8c3375b3d2fec8ae10629ce0e04506a0a866 Mon Sep 17 00:00:00 2001 From: Andus Date: Mon, 6 Mar 2023 16:41:31 +0000 Subject: [PATCH 086/212] Translated using Weblate (Polish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pl/ --- po/pl.po | 42 +++++++++++++++++++++++++++++------------- 1 file changed, 29 insertions(+), 13 deletions(-) diff --git a/po/pl.po b/po/pl.po index 4c3e5ac1..954fb1e0 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-03-06 16:36+0000\n" +"PO-Revision-Date: 2023-03-07 17:41+0000\n" "Last-Translator: Andus \n" "Language-Team: Polish \n" @@ -35,6 +35,10 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Dodaje rozmazania do aplikacji. To wciąż jest funkcja beta.\n" +"By dostać najlepsze rezultaty, upewnij się żeby wybrać opcje \"Brak " +"artefaktu\" w preferencji \"Generalne → Poziom hackowania\"\n" +" " #: applications.ui:28 msgid "Opacity" @@ -188,6 +192,8 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Sprawia, że tło jest przezroczyste lub półprzezroczyste, wyłącz tę opcję, " +"aby zamiast tego użyć preferencji Dash to Dock." #: dash.ui:33 panel.ui:64 msgid "Background style" @@ -235,11 +241,11 @@ msgstr "" #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Wydajność" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Różne opcje w celu poprawy wydajności." #: general.ui:122 msgid "Color and noise effects" @@ -250,6 +256,8 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"Globalnie wyłącza efekty szumu i kolorów. Może poprawić wydajność na " +"urządzeniach o niskiej wydajności." #: general.ui:135 msgid "Hack level" @@ -263,6 +271,11 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Zmienia zachowanie dynamicznego efektu rozmazania.\n" +"W większości przypadków zalecane jest pozostawienie domyślnej wartości. W " +"przypadku rozmazania aplikacji zalecana jest opcja \"bez artefaktów\".\n" +"Ta opcja wyłączy całkowicie częściowe przerysowania w GNOME i może znacznie " +"wpłynąć na wydajność, ale całkowicie naprawi efekt rozmazania." #: general.ui:151 msgid "Debug" @@ -302,7 +315,7 @@ msgstr "Wysoka jakość" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Bez artefaktów" #: menu.ui:6 msgid "Project page" @@ -373,22 +386,23 @@ msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" +"Półprzezroczysty styl dasha, pola/wyników wyszukiwania i folderów aplikacji." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Rozmycie folderów aplikacji" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "Tworzy efekt rozmycia na tle folderów aplikacji." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Styl dialogów folderów aplikacji" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." -msgstr "" +msgstr "Półprzezroczysty styl dialogów folderów aplikacji." #: overview.ui:79 overview.ui:88 msgid "Do not style" @@ -396,15 +410,15 @@ msgstr "Nie styluj" #: panel.ui:5 msgid "Panel" -msgstr "Pasek" +msgstr "Panel" #: panel.ui:10 msgid "Panel blur" -msgstr "Rozmazywanie paska" +msgstr "Rozmazywanie panelu" #: panel.ui:11 msgid "Blur the top panel using the background image." -msgstr "Rozmazuje górny pasek korzystając z obrazka tapety." +msgstr "Rozmazuje górny panel korzystając z obrazka tapety." #: panel.ui:26 msgid "Static blur" @@ -417,7 +431,7 @@ msgstr "" #: panel.ui:42 msgid "Disables the blur from the panel when entering the overview." -msgstr "Wyłącza rozmazywanie paska podczas przechodzenia do ekranu podglądu." +msgstr "Wyłącza rozmazywanie panelu podczas przechodzenia do ekranu podglądu." #: panel.ui:57 msgid "" @@ -425,10 +439,12 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Zastępuje tło panelu przezroczystym lub półprzezroczystym.\n" +"Zalecane, chyba że chcesz dostosować swój motyw powłoki GNOME." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "Pprzezroczysty/półprzezroczysty styl tła panelu." #: panel.ui:79 msgid "Disable when a window is near" From 0c95e9504b81e61a3e8526fb841b4eb1a2bffe52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Schr=C3=B6der?= Date: Sat, 18 Mar 2023 20:40:09 +0000 Subject: [PATCH 087/212] Translated using Weblate (German) Currently translated at 98.9% (95 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/po/de.po b/po/de.po index c54850a2..464d9ad5 100644 --- a/po/de.po +++ b/po/de.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-02-24 20:39+0000\n" -"Last-Translator: derarchitekt \n" +"PO-Revision-Date: 2023-03-19 21:38+0000\n" +"Last-Translator: Jan Schröder \n" "Language-Team: German \n" "Language: de\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.16-dev\n" +"X-Generator: Weblate 4.16.2-dev\n" #: applications.ui:5 msgid "Applications" @@ -274,6 +274,12 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Ändert das Verhalten des dynamischen Weichzeichnungseffekts.\n" +"Der Standardwert wird dringend empfohlen, es sei denn, Sie verwenden " +"Anwendungsunschärfe, in diesem Fall ist „Kein Artefakt“ besser.\n" +"Diese Option deaktiviert vollständig die abgeschnittenen Neuzeichnungen in " +"der GNOME-Shell und kann die Leistung erheblich beeinträchtigen, behebt " +"jedoch vollständig Probleme mit dem Weichzeichnungseffekt." #: general.ui:151 msgid "Debug" @@ -386,22 +392,24 @@ msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" +"Der halbtransparente Stil für das Dash, Suchfeld/-ergebnisse und die " +"Anwendungsordner." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Unschärfe des Anwendungsordners" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "Macht den Hintergrund des Anwendungsordnerdialoges unscharf." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Stil der Anwendungsordnerdialoge" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." -msgstr "" +msgstr "Der halbtransparente Stil des Anwendungsordnerdialogs." #: overview.ui:79 overview.ui:88 msgid "Do not style" @@ -438,6 +446,9 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Überschreibt den Hintergrund des Panels um ihn (halb-)transparent zu machen." +"\n" +"Empfohlen sofern du dein GNOME Thema bearbeiten möchtest." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." From e5a30b385af64cbf4ae1fa46e7a64feb8e42bd29 Mon Sep 17 00:00:00 2001 From: nanashi <54083498+nanashi-1@users.noreply.github.com> Date: Wed, 22 Mar 2023 15:00:31 +0800 Subject: [PATCH 088/212] add gnome shell version 44 to metadata --- metadata.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/metadata.json b/metadata.json index d83c5871..dfe84bc5 100644 --- a/metadata.json +++ b/metadata.json @@ -3,7 +3,8 @@ "name": "Blur my Shell", "shell-version": [ "42", - "43" + "43", + "44" ], "url": "https://github.com/aunetx/gnome-shell-extension-blur-my-shell", "uuid": "blur-my-shell@aunetx", @@ -12,4 +13,4 @@ "me@aunetx.dev" ], "version": 44 -} \ No newline at end of file +} From 0b40fcf9450739cc9db95e4d22392dbf736de212 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sun, 26 Mar 2023 09:56:10 +0200 Subject: [PATCH 089/212] Update metadata.json From b05ce0c547e48dddc0d99cad69b8a453553afc9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Tue, 25 Apr 2023 22:28:02 +0200 Subject: [PATCH 090/212] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c55a320d..ffc803b9 100644 --- a/README.md +++ b/README.md @@ -140,6 +140,7 @@ gsettings set org.gnome.desktop.background picture-opacity 99 && gsettings set o The current extension supports these GNOME Shell versions: +- 44 -- `master` branch - 43 -- `master` branch - 42 -- `master` branch From 3f65007121d5bf47379e31b692b07acdfa12c5e9 Mon Sep 17 00:00:00 2001 From: Artur O Date: Tue, 28 Mar 2023 00:44:16 +0000 Subject: [PATCH 091/212] Translated using Weblate (Swedish) Currently translated at 1.0% (1 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/sv/ --- po/sv.po | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/po/sv.po b/po/sv.po index 689749d7..23c713db 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,17 +8,20 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-03-28 00:44+0000\n" +"Last-Translator: \"Artur O.\" \n" +"Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17-dev\n" #: applications.ui:5 msgid "Applications" -msgstr "" +msgstr "Applikationer" #: applications.ui:10 msgid "Applications blur (beta)" From 3005a71852018a78a532882ff94cb17b074e6805 Mon Sep 17 00:00:00 2001 From: Artur O Date: Tue, 28 Mar 2023 01:07:47 +0000 Subject: [PATCH 092/212] Translated using Weblate (Swedish) Currently translated at 12.5% (12 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/sv/ --- po/sv.po | 72 +++++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 53 insertions(+), 19 deletions(-) diff --git a/po/sv.po b/po/sv.po index 23c713db..9e291ed1 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-03-28 00:44+0000\n" +"PO-Revision-Date: 2023-03-29 01:43+0000\n" "Last-Translator: \"Artur O.\" \n" "Language-Team: Swedish \n" @@ -25,7 +25,7 @@ msgstr "Applikationer" #: applications.ui:10 msgid "Applications blur (beta)" -msgstr "" +msgstr "Applikation oskärpa (beta)" #: applications.ui:11 msgid "" @@ -34,115 +34,149 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Lägger oskärpa till applikationer. Detta är fortfarande beta funktionalitet." +"\n" +"För bästa resultat, se till att välja \"Ingen artefakt\" under \"Generella " +"inställningar → Hack nivå\"\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Opacitet" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"Fönstrets opacitet efter oskärpa effekten har applicerats, ett högre värde " +"gör fönstret mer läsbart." #: applications.ui:51 msgid "Blur on overview" -msgstr "" +msgstr "Oskärpa på översikt" #: applications.ui:52 +#, fuzzy msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Tvingar oskärpan att visas korrekt på alla arbetsytor på översikt.\n" +"Detta kan orsaka vissa latens- eller prestandaproblem." #: applications.ui:67 +#, fuzzy msgid "Enable all by default" -msgstr "" +msgstr "Aktivera alla som standard" #: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Lägger till oskärpa bakom alla fönster som standard.\n" +"Rekommenderas inte på grund av prestanda och stabilitetsproblem." #: applications.ui:85 +#, fuzzy msgid "Whitelist" -msgstr "" +msgstr "Vitlista" #: applications.ui:86 +#, fuzzy msgid "A list of windows to blur." -msgstr "" +msgstr "En lista över fönster som ska suddas ut." #: applications.ui:104 applications.ui:141 +#, fuzzy msgid "Add Window" -msgstr "" +msgstr "Lägg till fönster" #: applications.ui:122 +#, fuzzy msgid "Blacklist" -msgstr "" +msgstr "Svartlista" #: applications.ui:123 +#, fuzzy msgid "A list of windows not to blur." -msgstr "" +msgstr "En lista över fönster som inte ska suddas ut." #: customize-row.ui:4 +#, fuzzy msgid "Customize properties" -msgstr "" +msgstr "Anpassa egenskaper" #: customize-row.ui:5 +#, fuzzy msgid "" "Uses customized blur properties, instead of the ones set in the General page." msgstr "" +"Använder anpassade egenskaper för oskärpa i stället för de som anges på " +"sidan Allmänt." #: customize-row.ui:10 general.ui:15 +#, fuzzy msgid "Sigma" -msgstr "" +msgstr "Sigma" #: customize-row.ui:11 general.ui:16 +#, fuzzy msgid "The intensity of the blur." -msgstr "" +msgstr "Oskärpans intensitet." #: customize-row.ui:31 general.ui:35 +#, fuzzy msgid "Brightness" -msgstr "" +msgstr "Ljusstyrka" #: customize-row.ui:32 general.ui:36 +#, fuzzy msgid "" "The brightness of the blur effect, a high value might make the text harder " "to read." msgstr "" +"Ljusstyrkan på oskärpa effekten, ett högt värde kan göra texten svårare att " +"läsa." #: customize-row.ui:52 general.ui:55 +#, fuzzy msgid "Color" -msgstr "" +msgstr "Färg" #: customize-row.ui:53 general.ui:56 +#, fuzzy msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." msgstr "" +"Ändrar färgen på oskärpan. Färgens opacitet styr hur mycket den blandas in i " +"oskärpa effekten." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" -msgstr "" +msgstr "Brusmängd" #: customize-row.ui:72 general.ui:74 msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." msgstr "" +"Mängden brus som ska läggas till i oskärpa effekten, användbart på skärmar " +"med låg kontrast eller för estetiska ändamål." #: customize-row.ui:92 general.ui:94 msgid "Noise lightness" -msgstr "" +msgstr "Brus-ljustyrka" #: customize-row.ui:93 general.ui:95 msgid "The lightness of the noise added to the blur effect." -msgstr "" +msgstr "Brusets ljushet till oskärpa effekten." #: customize-row.ui:113 msgid "Notice" -msgstr "" +msgstr "Notis" #: customize-row.ui:114 msgid "" From 13875aed5cb2f92ee65fa42f8c126b895f355078 Mon Sep 17 00:00:00 2001 From: Davd Klkn Date: Sat, 1 Apr 2023 18:38:28 +0000 Subject: [PATCH 093/212] Translated using Weblate (German) Currently translated at 98.9% (95 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/de.po b/po/de.po index 464d9ad5..44809aaa 100644 --- a/po/de.po +++ b/po/de.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-03-19 21:38+0000\n" -"Last-Translator: Jan Schröder \n" +"PO-Revision-Date: 2023-04-01 18:40+0000\n" +"Last-Translator: Davd Klkn \n" "Language-Team: German \n" "Language: de\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.16.2-dev\n" +"X-Generator: Weblate 4.17-dev\n" #: applications.ui:5 msgid "Applications" @@ -248,7 +248,7 @@ msgstr "Leistung" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "Verschiedene Optionen um die Performance anzupassen." +msgstr "Verschiedene Optionen zur Leistungsoptimierung." #: general.ui:122 msgid "Color and noise effects" From 4d7d4bc980d29879d99b370b58e3a9353d8b5fe4 Mon Sep 17 00:00:00 2001 From: WebSnke Date: Sat, 1 Apr 2023 18:40:57 +0000 Subject: [PATCH 094/212] Translated using Weblate (German) Currently translated at 98.9% (95 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/de.po b/po/de.po index 44809aaa..cf6523c5 100644 --- a/po/de.po +++ b/po/de.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-04-01 18:40+0000\n" -"Last-Translator: Davd Klkn \n" +"PO-Revision-Date: 2023-04-02 19:40+0000\n" +"Last-Translator: WebSnke \n" "Language-Team: German \n" "Language: de\n" @@ -259,8 +259,8 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" -"Deaktiviert Rausch und Farb-Effekte global, um die Performance " -"leistungsschwachen Systemen möglicherweise zu verbessern." +"Deaktiviert Rausch- und Farb-Effekte global, um die Leistung auf " +"leistungsschwachen Systemen zu verbessern." #: general.ui:135 msgid "Hack level" From 5f9847ba3c690078ad895b7a3c418411f25e6ee9 Mon Sep 17 00:00:00 2001 From: chtholine Date: Mon, 10 Apr 2023 20:30:23 +0200 Subject: [PATCH 095/212] Added translation using Weblate (Ukrainian) --- po/uk.po | 436 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 436 insertions(+) create mode 100644 po/uk.po diff --git a/po/uk.po b/po/uk.po new file mode 100644 index 00000000..c8316236 --- /dev/null +++ b/po/uk.po @@ -0,0 +1,436 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the blur-my-shell@aunetx package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: blur-my-shell@aunetx\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-02 02:53+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications.ui:5 +msgid "Applications" +msgstr "" + +#: applications.ui:10 +msgid "Applications blur (beta)" +msgstr "" + +#: applications.ui:11 +msgid "" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" +" " +msgstr "" + +#: applications.ui:28 +msgid "Opacity" +msgstr "" + +#: applications.ui:29 +msgid "" +"The opacity of the window on top of the blur effect, a higher value will be " +"more legible." +msgstr "" + +#: applications.ui:51 +msgid "Blur on overview" +msgstr "" + +#: applications.ui:52 +msgid "" +"Forces the blur to be properly shown on all workspaces on overview.\n" +"This may cause some latency or performance issues." +msgstr "" + +#: applications.ui:67 +msgid "Enable all by default" +msgstr "" + +#: applications.ui:68 +msgid "" +"Adds blur behind all windows by default.\n" +"Not recommended because of performance and stability issues." +msgstr "" + +#: applications.ui:85 +msgid "Whitelist" +msgstr "" + +#: applications.ui:86 +msgid "A list of windows to blur." +msgstr "" + +#: applications.ui:104 applications.ui:141 +msgid "Add Window" +msgstr "" + +#: applications.ui:122 +msgid "Blacklist" +msgstr "" + +#: applications.ui:123 +msgid "A list of windows not to blur." +msgstr "" + +#: customize-row.ui:4 +msgid "Customize properties" +msgstr "" + +#: customize-row.ui:5 +msgid "" +"Uses customized blur properties, instead of the ones set in the General page." +msgstr "" + +#: customize-row.ui:10 general.ui:15 +msgid "Sigma" +msgstr "" + +#: customize-row.ui:11 general.ui:16 +msgid "The intensity of the blur." +msgstr "" + +#: customize-row.ui:31 general.ui:35 +msgid "Brightness" +msgstr "" + +#: customize-row.ui:32 general.ui:36 +msgid "" +"The brightness of the blur effect, a high value might make the text harder " +"to read." +msgstr "" + +#: customize-row.ui:52 general.ui:55 +msgid "Color" +msgstr "" + +#: customize-row.ui:53 general.ui:56 +msgid "" +"Changes the color of the blur. The opacity of the color controls how much it " +"is blended into the blur effect." +msgstr "" + +#: customize-row.ui:71 general.ui:73 +msgid "Noise amount" +msgstr "" + +#: customize-row.ui:72 general.ui:74 +msgid "" +"The amount of noise to add to the blur effect, useful on low-contrast " +"screens or for aesthetic purpose." +msgstr "" + +#: customize-row.ui:92 general.ui:94 +msgid "Noise lightness" +msgstr "" + +#: customize-row.ui:93 general.ui:95 +msgid "The lightness of the noise added to the blur effect." +msgstr "" + +#: customize-row.ui:113 +msgid "Notice" +msgstr "" + +#: customize-row.ui:114 +msgid "" +"Noise and color can't be activated on dynamically blurred components, such " +"as this one." +msgstr "" + +#: dash.ui:5 +msgid "Dash" +msgstr "" + +#: dash.ui:10 +msgid "Dash to Dock blur" +msgstr "" + +#: dash.ui:11 +msgid "Blur the background of the Dash to Dock extension, if it is used." +msgstr "" + +#: dash.ui:26 panel.ui:56 +msgid "Override background" +msgstr "" + +#: dash.ui:27 +msgid "" +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." +msgstr "" + +#: dash.ui:50 panel.ui:41 +msgid "Disable in overview" +msgstr "" + +#: dash.ui:51 +msgid "Disables the blur from Dash to Dock when entering the overview." +msgstr "" + +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +msgid "Light" +msgstr "" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +msgid "Dark" +msgstr "" + +#: general.ui:5 +msgid "General" +msgstr "" + +#: general.ui:10 +msgid "Blur preferences" +msgstr "" + +#: general.ui:11 +msgid "Global blur preferences, used by all components by default." +msgstr "" + +#: general.ui:117 +msgid "Performance" +msgstr "" + +#: general.ui:118 +msgid "Various options to tweak the performance." +msgstr "" + +#: general.ui:122 +msgid "Color and noise effects" +msgstr "" + +#: general.ui:123 +msgid "" +"Globally disables noise and color effects which may improve performance on " +"low-end systems." +msgstr "" + +#: general.ui:135 +msgid "Hack level" +msgstr "" + +#: general.ui:136 +msgid "" +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." +msgstr "" + +#: general.ui:151 +msgid "Debug" +msgstr "" + +#: general.ui:152 +msgid "" +"Makes the extension verbose in logs, activate when you need to report an " +"issue." +msgstr "" + +#: general.ui:167 +msgid "Reset preferences" +msgstr "" + +#: general.ui:168 +msgid "Resets preferences of Blur my Shell irreversibly." +msgstr "" + +#: general.ui:187 +msgid "Reset" +msgstr "" + +#: general.ui:228 +msgid "High performances" +msgstr "" + +#: general.ui:229 +msgid "Default" +msgstr "" + +#: general.ui:230 +msgid "High quality" +msgstr "" + +#: general.ui:231 +msgid "No artifact" +msgstr "" + +#: menu.ui:6 +msgid "Project page" +msgstr "" + +#: menu.ui:10 +msgid "Report a Bug" +msgstr "" + +#: menu.ui:14 +msgid "License" +msgstr "" + +#: menu.ui:18 +msgid "Donate" +msgstr "" + +#: other.ui:5 +msgid "Other" +msgstr "" + +#: other.ui:10 +msgid "Lockscreen blur" +msgstr "" + +#: other.ui:11 +msgid "Change the blur of the lockscreen to use this extension's preferences." +msgstr "" + +#: other.ui:28 +msgid "Screenshot blur" +msgstr "" + +#: other.ui:29 +msgid "Add blur to the background of the window selector in the screenshot UI." +msgstr "" + +#: other.ui:46 +msgid "Window list extension blur" +msgstr "" + +#: other.ui:47 +msgid "Make the window-list extension blurred, if it is used." +msgstr "" + +#: overview.ui:5 +msgid "Overview" +msgstr "" + +#: overview.ui:10 +msgid "Background blur" +msgstr "" + +#: overview.ui:11 +msgid "Add blur to the overview background, using the wallpaper picture." +msgstr "" + +#: overview.ui:26 +msgid "Overview components style" +msgstr "" + +#: overview.ui:27 +msgid "" +"The semi-transparent style for the dash, search entry/results, and " +"application folders." +msgstr "" + +#: overview.ui:44 +msgid "Application folder blur" +msgstr "" + +#: overview.ui:45 +msgid "Makes the background of application folder dialogs blurred." +msgstr "" + +#: overview.ui:60 +msgid "Application folder dialogs style" +msgstr "" + +#: overview.ui:61 +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" + +#: overview.ui:79 overview.ui:88 +msgid "Do not style" +msgstr "" + +#: panel.ui:5 +msgid "Panel" +msgstr "" + +#: panel.ui:10 +msgid "Panel blur" +msgstr "" + +#: panel.ui:11 +msgid "Blur the top panel using the background image." +msgstr "" + +#: panel.ui:26 +msgid "Static blur" +msgstr "" + +#: panel.ui:27 +msgid "Uses a static blurred image, more performant and stable." +msgstr "" + +#: panel.ui:42 +msgid "Disables the blur from the panel when entering the overview." +msgstr "" + +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" + +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 +msgid "Disable when a window is near" +msgstr "" + +#: panel.ui:80 +msgid "Disables the transparency of the panel when a window is near it." +msgstr "" + +#: panel.ui:97 +msgid "Compatibility" +msgstr "" + +#: panel.ui:98 +msgid "Various options to provide compatibility with other extensions." +msgstr "" + +#: panel.ui:103 +msgid "Hidetopbar extension" +msgstr "" + +#: panel.ui:104 +msgid "Does not disable the blur in overview, best used with static blur." +msgstr "" + +#: window-row.ui:4 +msgid "Window Name" +msgstr "" + +#: window-row.ui:8 +msgid "Select window" +msgstr "" + +#: window-row.ui:9 +msgid "Pick a window or select it by its classname." +msgstr "" From d7bcd82a0c824b5316ac51528529bfe791dd80eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Weigend?= Date: Tue, 11 Apr 2023 13:33:02 +0000 Subject: [PATCH 096/212] Translated using Weblate (German) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/po/de.po b/po/de.po index cf6523c5..e2a1dd20 100644 --- a/po/de.po +++ b/po/de.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-04-02 19:40+0000\n" -"Last-Translator: WebSnke \n" +"PO-Revision-Date: 2023-04-12 13:48+0000\n" +"Last-Translator: Jörn Weigend \n" "Language-Team: German \n" "Language: de\n" @@ -196,8 +196,8 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" -"Macht den Hintergrund entweder transparent oder semitransparent. " -"Deaktivieren um stattdessen die Dash to Dock Einstellungen zu verwenden" +"Macht den Hintergrund transparent oder halbtransparent. Deaktivieren um " +"stattdessen Dash to Dock Einstellungen zu verwenden." #: dash.ui:33 panel.ui:64 msgid "Background style" @@ -259,8 +259,8 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" -"Deaktiviert Rausch- und Farb-Effekte global, um die Leistung auf " -"leistungsschwachen Systemen zu verbessern." +"Deaktiviert Rausch- und Farbeffekte global, um die Leistung auf schwächeren " +"Systemen zu verbessern." #: general.ui:135 msgid "Hack level" @@ -277,9 +277,9 @@ msgstr "" "Ändert das Verhalten des dynamischen Weichzeichnungseffekts.\n" "Der Standardwert wird dringend empfohlen, es sei denn, Sie verwenden " "Anwendungsunschärfe, in diesem Fall ist „Kein Artefakt“ besser.\n" -"Diese Option deaktiviert vollständig die abgeschnittenen Neuzeichnungen in " -"der GNOME-Shell und kann die Leistung erheblich beeinträchtigen, behebt " -"jedoch vollständig Probleme mit dem Weichzeichnungseffekt." +"Diese Option deaktiviert das teilweise Neuzeichnen in der GNOME-Shell " +"komplett und kann die Leistung erheblich beeinträchtigen, optimiert jedoch " +"vollständig den Weichzeichnungseffekt." #: general.ui:151 msgid "Debug" @@ -452,7 +452,7 @@ msgstr "" #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "Halb-/Transparenter Stil für Leisten-Hintergrund." #: panel.ui:79 msgid "Disable when a window is near" From 0ed21b40345d8a8da00825b66ffb6a003bd14264 Mon Sep 17 00:00:00 2001 From: chtholine Date: Mon, 10 Apr 2023 18:59:21 +0000 Subject: [PATCH 097/212] Translated using Weblate (Ukrainian) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/uk/ --- po/uk.po | 204 +++++++++++++++++++++++++++++++++---------------------- 1 file changed, 124 insertions(+), 80 deletions(-) diff --git a/po/uk.po b/po/uk.po index c8316236..b05462b1 100644 --- a/po/uk.po +++ b/po/uk.po @@ -8,21 +8,25 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-04-12 13:48+0000\n" +"Last-Translator: chtholine \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.17-dev\n" #: applications.ui:5 msgid "Applications" -msgstr "" +msgstr "Застосунки" #: applications.ui:10 msgid "Applications blur (beta)" -msgstr "" +msgstr "Розмиття застосунків (бета)" #: applications.ui:11 msgid "" @@ -31,205 +35,229 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Надає розмиття застосункам. Це все ще бета-версія функції.\n" +"Щоб отримати найкращі результати, переконайтеся, що ви вибрали опцію \"Без " +"артефактів\" у налаштуваннях \"Загальні → Рівень злому\".\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Непрозорість" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"Непрозорість вікна поверх ефекту розмиття, більше значення буде більш чітким." #: applications.ui:51 msgid "Blur on overview" -msgstr "" +msgstr "Розмиття при огляді" #: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Примушує коректно відображати розмиття на всіх робочих областях огляду.\n" +"Це може спричинити деякі затримки або проблеми з продуктивністю." #: applications.ui:67 msgid "Enable all by default" -msgstr "" +msgstr "Застосувати для всіх за замовчуванням" #: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Додає розмиття за всіма вікнами за замовчуванням.\n" +"Не рекомендується через проблеми з продуктивністю та стабільністю." #: applications.ui:85 msgid "Whitelist" -msgstr "" +msgstr "Білий список" #: applications.ui:86 msgid "A list of windows to blur." -msgstr "" +msgstr "Список вікон для розмиття." #: applications.ui:104 applications.ui:141 msgid "Add Window" -msgstr "" +msgstr "Додати вікно" #: applications.ui:122 msgid "Blacklist" -msgstr "" +msgstr "Чорний список" #: applications.ui:123 msgid "A list of windows not to blur." -msgstr "" +msgstr "Список вікон без розмиття." #: customize-row.ui:4 msgid "Customize properties" -msgstr "" +msgstr "Налаштування властивостей" #: customize-row.ui:5 msgid "" "Uses customized blur properties, instead of the ones set in the General page." msgstr "" +"Використовує користувацькі параметри замість встановлених на сторінці " +"Загальні." #: customize-row.ui:10 general.ui:15 msgid "Sigma" -msgstr "" +msgstr "Сигма" #: customize-row.ui:11 general.ui:16 msgid "The intensity of the blur." -msgstr "" +msgstr "Інтенсивність розмиття." #: customize-row.ui:31 general.ui:35 msgid "Brightness" -msgstr "" +msgstr "Яскравість" #: customize-row.ui:32 general.ui:36 msgid "" "The brightness of the blur effect, a high value might make the text harder " "to read." msgstr "" +"Яскравість ефекту розмиття, високе значення може ускладнити читабельність." #: customize-row.ui:52 general.ui:55 msgid "Color" -msgstr "" +msgstr "Колір" #: customize-row.ui:53 general.ui:56 msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." msgstr "" +"Змінює колір розмиття. Непрозорість кольору визначає, наскільки він " +"зливається з ефектом розмиття." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" -msgstr "" +msgstr "Рівень шуму" #: customize-row.ui:72 general.ui:74 msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." msgstr "" +"Рівень шуму для ефекту розмиття, корисний на екранах із низьким контрастом " +"або в естетичних цілях." #: customize-row.ui:92 general.ui:94 msgid "Noise lightness" -msgstr "" +msgstr "Легкість шуму" #: customize-row.ui:93 general.ui:95 msgid "The lightness of the noise added to the blur effect." -msgstr "" +msgstr "Легкість шуму доданого до ефекту розмиття." #: customize-row.ui:113 msgid "Notice" -msgstr "" +msgstr "Увага" #: customize-row.ui:114 msgid "" "Noise and color can't be activated on dynamically blurred components, such " "as this one." msgstr "" +"Шум і колір не можна активувати на динамічно розмитих компонентах, таких як " +"цей." #: dash.ui:5 msgid "Dash" -msgstr "" +msgstr "Панель застосунків" #: dash.ui:10 msgid "Dash to Dock blur" -msgstr "" +msgstr "Розмиття Dash to Dock" #: dash.ui:11 msgid "Blur the background of the Dash to Dock extension, if it is used." -msgstr "" +msgstr "Розмиття фону розширення Dash to Dock при використанні." #: dash.ui:26 panel.ui:56 msgid "Override background" -msgstr "" +msgstr "Перевизначення фону" #: dash.ui:27 msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Робить фон прозорим або напівпрозорим, вимкніть цю опцію, щоб " +"використовувати параметри Dash to Dock." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Стиль фону" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "Прозорий/напівпрозорий стиль для фону Dash to Dock." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" -msgstr "" +msgstr "Вимкнути в огляді" #: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." -msgstr "" +msgstr "Вимикає розмиття Dash to Dock при вході в огляд." #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "Прозорий" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" -msgstr "" +msgstr "Cвітлий" #: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 msgid "Dark" -msgstr "" +msgstr "Темний" #: general.ui:5 msgid "General" -msgstr "" +msgstr "Загальні" #: general.ui:10 msgid "Blur preferences" -msgstr "" +msgstr "Налаштування розмиття" #: general.ui:11 msgid "Global blur preferences, used by all components by default." msgstr "" +"Глобальні налаштування розмиття, що використовуються всіма компонентами за " +"замовчуванням." #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Продуктивність" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Опції налаштування продуктивності." #: general.ui:122 msgid "Color and noise effects" -msgstr "" +msgstr "Кольорові та шумові ефекти" #: general.ui:123 msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"Глобально вимикає шумові та кольорові ефекти, що може покращити " +"продуктивність на малопотужних системах." #: general.ui:135 msgid "Hack level" -msgstr "" +msgstr "Рівень злому" #: general.ui:136 msgid "" @@ -239,154 +267,166 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Змінює поведінку ефекту динамічного розмиття.\n" +"Наполегливо рекомендується залишити значення за замовчуванням. При " +"використанні розмиття додатків краще вибрати \"Без артефактів\".\n" +"Цей параметр повністю вимкне обрізані перемальовування у оболонці GNOME, що " +"може суттєво вплинути на продуктивність, але повністю виправить ефект " +"розмиття." #: general.ui:151 msgid "Debug" -msgstr "" +msgstr "Налагодження" #: general.ui:152 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." msgstr "" +"Робить розширення докладним у логах, активується, коли потрібно повідомити " +"про проблему." #: general.ui:167 msgid "Reset preferences" -msgstr "" +msgstr "Скинути налаштування" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "Необоротно скидає налаштування Blur my Shell." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Скидання" #: general.ui:228 msgid "High performances" -msgstr "" +msgstr "Висока продуктивність" #: general.ui:229 msgid "Default" -msgstr "" +msgstr "За замовчуванням" #: general.ui:230 msgid "High quality" -msgstr "" +msgstr "Висока якість" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Відсутність артефакту" #: menu.ui:6 msgid "Project page" -msgstr "" +msgstr "Сторінка проекту" #: menu.ui:10 msgid "Report a Bug" -msgstr "" +msgstr "Повідомити про помилку" #: menu.ui:14 msgid "License" -msgstr "" +msgstr "Ліцензія" #: menu.ui:18 msgid "Donate" -msgstr "" +msgstr "Подяка" #: other.ui:5 msgid "Other" -msgstr "" +msgstr "Інше" #: other.ui:10 msgid "Lockscreen blur" -msgstr "" +msgstr "Розмиття екрана блокування" #: other.ui:11 msgid "Change the blur of the lockscreen to use this extension's preferences." msgstr "" +"Зміна розмиття екрана блокування для використання налаштувань цього " +"розширення." #: other.ui:28 msgid "Screenshot blur" -msgstr "" +msgstr "Розмиття знімку екрана" #: other.ui:29 msgid "Add blur to the background of the window selector in the screenshot UI." -msgstr "" +msgstr "Додавання розмиття до фону виділеного вікна в інтерфейсі знімку екрана." #: other.ui:46 msgid "Window list extension blur" -msgstr "" +msgstr "Розмиття розширення Window List" #: other.ui:47 msgid "Make the window-list extension blurred, if it is used." -msgstr "" +msgstr "Розмиття розширення Window List при його використанні." #: overview.ui:5 msgid "Overview" -msgstr "" +msgstr "Огляд" #: overview.ui:10 msgid "Background blur" -msgstr "" +msgstr "Розмиття фону" #: overview.ui:11 msgid "Add blur to the overview background, using the wallpaper picture." -msgstr "" +msgstr "Розмиття фону огляду, використовуючи зображення шпалер." #: overview.ui:26 msgid "Overview components style" -msgstr "" +msgstr "Стиль компонентів огляду" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" +"Напівпрозорий стиль для панелі застосунків, пошуку та папок застосунків." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Розмиття папки застосунків" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "Розмиття фону папок застосунків." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Стиль діалогових вікон папок застосунків" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." -msgstr "" +msgstr "Напівпрозорий стиль для діалогових вікон папок застосунків." #: overview.ui:79 overview.ui:88 msgid "Do not style" -msgstr "" +msgstr "Не стилізувати" #: panel.ui:5 msgid "Panel" -msgstr "" +msgstr "Верхня панель" #: panel.ui:10 msgid "Panel blur" -msgstr "" +msgstr "Розмиття верхньої панелі" #: panel.ui:11 msgid "Blur the top panel using the background image." -msgstr "" +msgstr "Розмиття верхньої панелі за допомогою фонового зображення." #: panel.ui:26 msgid "Static blur" -msgstr "" +msgstr "Статичне розмиття" #: panel.ui:27 msgid "Uses a static blurred image, more performant and stable." msgstr "" +"Використання статичного розмитого зображення, більш продуктивне та стабільне." #: panel.ui:42 msgid "Disables the blur from the panel when entering the overview." -msgstr "" +msgstr "Вимикає розмиття верхньої панелі під час входу в огляд." #: panel.ui:57 msgid "" @@ -394,43 +434,47 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Замінює тло панелі на прозоре або напівпрозоре.\n" +"Рекомендується, якщо ви не хочете змінювати тему GNOME." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "Прозорий/напівпрозорий стиль для фону верхньої панелі." #: panel.ui:79 msgid "Disable when a window is near" -msgstr "" +msgstr "Вимкнути, коли вікно поруч" #: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "Вимикнення прозорості панелі, коли біля неї знаходиться вікно." #: panel.ui:97 msgid "Compatibility" -msgstr "" +msgstr "Сумісність" #: panel.ui:98 msgid "Various options to provide compatibility with other extensions." -msgstr "" +msgstr "Опції для забезпечення сумісності з іншими розширеннями." #: panel.ui:103 msgid "Hidetopbar extension" -msgstr "" +msgstr "Розширення Hidetopbar" #: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" +"Не вимикає розмиття в огляді, найкраще використовувати зі статичним " +"розмиттям." #: window-row.ui:4 msgid "Window Name" -msgstr "" +msgstr "Назва вікна" #: window-row.ui:8 msgid "Select window" -msgstr "" +msgstr "Обрати вікно" #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" +msgstr "Виберіть вікно або знайдіть за назвою класу." From f07f0056b75fa91d80846684c1b0e60113b0771d Mon Sep 17 00:00:00 2001 From: jolupa Date: Thu, 4 May 2023 22:34:15 +0200 Subject: [PATCH 098/212] Added translation using Weblate (Catalan) --- po/ca.po | 436 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 436 insertions(+) create mode 100644 po/ca.po diff --git a/po/ca.po b/po/ca.po new file mode 100644 index 00000000..52e1aee4 --- /dev/null +++ b/po/ca.po @@ -0,0 +1,436 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the blur-my-shell@aunetx package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: blur-my-shell@aunetx\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-02 02:53+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications.ui:5 +msgid "Applications" +msgstr "" + +#: applications.ui:10 +msgid "Applications blur (beta)" +msgstr "" + +#: applications.ui:11 +msgid "" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" +" " +msgstr "" + +#: applications.ui:28 +msgid "Opacity" +msgstr "" + +#: applications.ui:29 +msgid "" +"The opacity of the window on top of the blur effect, a higher value will be " +"more legible." +msgstr "" + +#: applications.ui:51 +msgid "Blur on overview" +msgstr "" + +#: applications.ui:52 +msgid "" +"Forces the blur to be properly shown on all workspaces on overview.\n" +"This may cause some latency or performance issues." +msgstr "" + +#: applications.ui:67 +msgid "Enable all by default" +msgstr "" + +#: applications.ui:68 +msgid "" +"Adds blur behind all windows by default.\n" +"Not recommended because of performance and stability issues." +msgstr "" + +#: applications.ui:85 +msgid "Whitelist" +msgstr "" + +#: applications.ui:86 +msgid "A list of windows to blur." +msgstr "" + +#: applications.ui:104 applications.ui:141 +msgid "Add Window" +msgstr "" + +#: applications.ui:122 +msgid "Blacklist" +msgstr "" + +#: applications.ui:123 +msgid "A list of windows not to blur." +msgstr "" + +#: customize-row.ui:4 +msgid "Customize properties" +msgstr "" + +#: customize-row.ui:5 +msgid "" +"Uses customized blur properties, instead of the ones set in the General page." +msgstr "" + +#: customize-row.ui:10 general.ui:15 +msgid "Sigma" +msgstr "" + +#: customize-row.ui:11 general.ui:16 +msgid "The intensity of the blur." +msgstr "" + +#: customize-row.ui:31 general.ui:35 +msgid "Brightness" +msgstr "" + +#: customize-row.ui:32 general.ui:36 +msgid "" +"The brightness of the blur effect, a high value might make the text harder " +"to read." +msgstr "" + +#: customize-row.ui:52 general.ui:55 +msgid "Color" +msgstr "" + +#: customize-row.ui:53 general.ui:56 +msgid "" +"Changes the color of the blur. The opacity of the color controls how much it " +"is blended into the blur effect." +msgstr "" + +#: customize-row.ui:71 general.ui:73 +msgid "Noise amount" +msgstr "" + +#: customize-row.ui:72 general.ui:74 +msgid "" +"The amount of noise to add to the blur effect, useful on low-contrast " +"screens or for aesthetic purpose." +msgstr "" + +#: customize-row.ui:92 general.ui:94 +msgid "Noise lightness" +msgstr "" + +#: customize-row.ui:93 general.ui:95 +msgid "The lightness of the noise added to the blur effect." +msgstr "" + +#: customize-row.ui:113 +msgid "Notice" +msgstr "" + +#: customize-row.ui:114 +msgid "" +"Noise and color can't be activated on dynamically blurred components, such " +"as this one." +msgstr "" + +#: dash.ui:5 +msgid "Dash" +msgstr "" + +#: dash.ui:10 +msgid "Dash to Dock blur" +msgstr "" + +#: dash.ui:11 +msgid "Blur the background of the Dash to Dock extension, if it is used." +msgstr "" + +#: dash.ui:26 panel.ui:56 +msgid "Override background" +msgstr "" + +#: dash.ui:27 +msgid "" +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." +msgstr "" + +#: dash.ui:50 panel.ui:41 +msgid "Disable in overview" +msgstr "" + +#: dash.ui:51 +msgid "Disables the blur from Dash to Dock when entering the overview." +msgstr "" + +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +msgid "Light" +msgstr "" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +msgid "Dark" +msgstr "" + +#: general.ui:5 +msgid "General" +msgstr "" + +#: general.ui:10 +msgid "Blur preferences" +msgstr "" + +#: general.ui:11 +msgid "Global blur preferences, used by all components by default." +msgstr "" + +#: general.ui:117 +msgid "Performance" +msgstr "" + +#: general.ui:118 +msgid "Various options to tweak the performance." +msgstr "" + +#: general.ui:122 +msgid "Color and noise effects" +msgstr "" + +#: general.ui:123 +msgid "" +"Globally disables noise and color effects which may improve performance on " +"low-end systems." +msgstr "" + +#: general.ui:135 +msgid "Hack level" +msgstr "" + +#: general.ui:136 +msgid "" +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." +msgstr "" + +#: general.ui:151 +msgid "Debug" +msgstr "" + +#: general.ui:152 +msgid "" +"Makes the extension verbose in logs, activate when you need to report an " +"issue." +msgstr "" + +#: general.ui:167 +msgid "Reset preferences" +msgstr "" + +#: general.ui:168 +msgid "Resets preferences of Blur my Shell irreversibly." +msgstr "" + +#: general.ui:187 +msgid "Reset" +msgstr "" + +#: general.ui:228 +msgid "High performances" +msgstr "" + +#: general.ui:229 +msgid "Default" +msgstr "" + +#: general.ui:230 +msgid "High quality" +msgstr "" + +#: general.ui:231 +msgid "No artifact" +msgstr "" + +#: menu.ui:6 +msgid "Project page" +msgstr "" + +#: menu.ui:10 +msgid "Report a Bug" +msgstr "" + +#: menu.ui:14 +msgid "License" +msgstr "" + +#: menu.ui:18 +msgid "Donate" +msgstr "" + +#: other.ui:5 +msgid "Other" +msgstr "" + +#: other.ui:10 +msgid "Lockscreen blur" +msgstr "" + +#: other.ui:11 +msgid "Change the blur of the lockscreen to use this extension's preferences." +msgstr "" + +#: other.ui:28 +msgid "Screenshot blur" +msgstr "" + +#: other.ui:29 +msgid "Add blur to the background of the window selector in the screenshot UI." +msgstr "" + +#: other.ui:46 +msgid "Window list extension blur" +msgstr "" + +#: other.ui:47 +msgid "Make the window-list extension blurred, if it is used." +msgstr "" + +#: overview.ui:5 +msgid "Overview" +msgstr "" + +#: overview.ui:10 +msgid "Background blur" +msgstr "" + +#: overview.ui:11 +msgid "Add blur to the overview background, using the wallpaper picture." +msgstr "" + +#: overview.ui:26 +msgid "Overview components style" +msgstr "" + +#: overview.ui:27 +msgid "" +"The semi-transparent style for the dash, search entry/results, and " +"application folders." +msgstr "" + +#: overview.ui:44 +msgid "Application folder blur" +msgstr "" + +#: overview.ui:45 +msgid "Makes the background of application folder dialogs blurred." +msgstr "" + +#: overview.ui:60 +msgid "Application folder dialogs style" +msgstr "" + +#: overview.ui:61 +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" + +#: overview.ui:79 overview.ui:88 +msgid "Do not style" +msgstr "" + +#: panel.ui:5 +msgid "Panel" +msgstr "" + +#: panel.ui:10 +msgid "Panel blur" +msgstr "" + +#: panel.ui:11 +msgid "Blur the top panel using the background image." +msgstr "" + +#: panel.ui:26 +msgid "Static blur" +msgstr "" + +#: panel.ui:27 +msgid "Uses a static blurred image, more performant and stable." +msgstr "" + +#: panel.ui:42 +msgid "Disables the blur from the panel when entering the overview." +msgstr "" + +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" + +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 +msgid "Disable when a window is near" +msgstr "" + +#: panel.ui:80 +msgid "Disables the transparency of the panel when a window is near it." +msgstr "" + +#: panel.ui:97 +msgid "Compatibility" +msgstr "" + +#: panel.ui:98 +msgid "Various options to provide compatibility with other extensions." +msgstr "" + +#: panel.ui:103 +msgid "Hidetopbar extension" +msgstr "" + +#: panel.ui:104 +msgid "Does not disable the blur in overview, best used with static blur." +msgstr "" + +#: window-row.ui:4 +msgid "Window Name" +msgstr "" + +#: window-row.ui:8 +msgid "Select window" +msgstr "" + +#: window-row.ui:9 +msgid "Pick a window or select it by its classname." +msgstr "" From dbbaf9f1fe5ccd53601d3eab808b3cba53bcd537 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Fri, 5 May 2023 21:23:52 +0200 Subject: [PATCH 099/212] Fix solid line under panel --- src/stylesheet.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stylesheet.css b/src/stylesheet.css index f7366881..725c0982 100644 --- a/src/stylesheet.css +++ b/src/stylesheet.css @@ -13,6 +13,7 @@ */ #panel.dark-panel { background-color: rgba(100, 100, 100, 0.35); + box-shadow: none; transition-duration: 500ms; } @@ -21,6 +22,7 @@ */ #panel.light-panel { background-color: rgba(200, 200, 200, 0.2); + box-shadow: none; transition-duration: 500ms; } From fd845b1babfe2b3e1b81288c41aa5185479933be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Fri, 5 May 2023 21:57:35 +0200 Subject: [PATCH 100/212] Fix #406 --- src/effects/noise_effect.glsl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/effects/noise_effect.glsl b/src/effects/noise_effect.glsl index 9140f33d..6d701b60 100644 --- a/src/effects/noise_effect.glsl +++ b/src/effects/noise_effect.glsl @@ -6,7 +6,9 @@ float PHI = 1.61803398874989484820459; float SEED = 24; float noise_gen(in vec2 xy) { - return fract(tan(distance(xy * PHI, xy) * SEED) * xy.x); + float r = fract(tan(distance(xy * PHI, xy) * SEED) * xy.x); + r = r != r ? 0.0 : r; + return r; } void main() { From 457f9e2d56e6fc43bbb5810681e343f9beaad5a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Fri, 5 May 2023 22:00:11 +0200 Subject: [PATCH 101/212] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ffc803b9..37850b84 100644 --- a/README.md +++ b/README.md @@ -169,4 +169,4 @@ And lastly, thank you, kind visitor -- this is a fun project to manage :) ## License -This program is distributed under the terms of the GNU General Public License, version 2 or later. +This program is distributed under the terms of the GNU General Public License, version 3 or later. From d2b12668256607ac612391637e1c5107a510a74a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Fri, 5 May 2023 22:25:00 +0200 Subject: [PATCH 102/212] Add contrasted option for panel --- metadata.json | 4 +- resources/ui/panel.ui | 1 + ...shell.extensions.blur-my-shell.gschema.xml | 2 +- src/components/panel.js | 3 +- src/stylesheet.css | 41 +++++++++++++++++++ 5 files changed, 47 insertions(+), 4 deletions(-) diff --git a/metadata.json b/metadata.json index dfe84bc5..f87b2130 100644 --- a/metadata.json +++ b/metadata.json @@ -12,5 +12,5 @@ "original-authors": [ "me@aunetx.dev" ], - "version": 44 -} + "version": 45 +} \ No newline at end of file diff --git a/resources/ui/panel.ui b/resources/ui/panel.ui index 3979f8e6..c0dffcaa 100644 --- a/resources/ui/panel.ui +++ b/resources/ui/panel.ui @@ -121,6 +121,7 @@ Recommended unless you want to customize your GNOME theme. Transparent Light Dark + Contrasted \ No newline at end of file diff --git a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml index 5d326d6b..ace961ab 100644 --- a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml +++ b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml @@ -197,7 +197,7 @@ 0 - Enum to select the style of the panel (0 transparent, 1 light, 2 dark) + Enum to select the style of the panel (0 transparent, 1 light, 2 dark, 3 contrasted) diff --git a/src/components/panel.js b/src/components/panel.js index 5df17564..8c7dc127 100644 --- a/src/components/panel.js +++ b/src/components/panel.js @@ -13,7 +13,8 @@ const DASH_TO_PANEL_UUID = 'dash-to-panel@jderose9.github.com'; const PANEL_STYLES = [ "transparent-panel", "light-panel", - "dark-panel" + "dark-panel", + "contrasted-panel" ]; diff --git a/src/stylesheet.css b/src/stylesheet.css index 725c0982..a3449839 100644 --- a/src/stylesheet.css +++ b/src/stylesheet.css @@ -26,6 +26,47 @@ transition-duration: 500ms; } +/* +* `.contrasted-panel` +*/ +#panel.contrasted-panel { + background-color: transparent; + box-shadow: none; + transition-duration: 500ms; +} + +.contrasted-panel .panel-button, +.contrasted-panel .clock, +.contrasted-panel .clock-display StIcon { + color: #ffffff; + border-radius: 14px; + border: 3px solid transparent; + background-color: rgba(0, 0, 0, 0.8); + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03); +} + + +.contrasted-panel .clock-display StIcon { + padding: 8px; + margin: 0; +} + +.contrasted-panel .panel-button:hover, +.contrasted-panel .panel-button:hover .clock { + color: #ffffff; + background-color: rgba(0, 0, 0, 0.8); +} + +.contrasted-panel .clock-display { + background-color: transparent !important; + box-shadow: none !important; + border: none !important; +} + +.contrasted-panel .clock { + margin: 0 !important; +} + /*** DASH ***/ From c5b7f1640f4d6dba45757133df52160804b6e456 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Fri, 5 May 2023 22:28:27 +0200 Subject: [PATCH 103/212] Version 46 --- metadata.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata.json b/metadata.json index f87b2130..5047dab2 100644 --- a/metadata.json +++ b/metadata.json @@ -12,5 +12,5 @@ "original-authors": [ "me@aunetx.dev" ], - "version": 45 + "version": 46 } \ No newline at end of file From 71a745f610d322a76103792b8bae0e9320fe9775 Mon Sep 17 00:00:00 2001 From: jolupa Date: Thu, 4 May 2023 20:35:18 +0000 Subject: [PATCH 104/212] Translated using Weblate (Catalan) Currently translated at 6.2% (6 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ca/ --- po/ca.po | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/po/ca.po b/po/ca.po index 52e1aee4..36b72ecb 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,21 +8,24 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-05-05 21:50+0000\n" +"Last-Translator: jolupa \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18-dev\n" #: applications.ui:5 msgid "Applications" -msgstr "" +msgstr "Aplicacions" #: applications.ui:10 msgid "Applications blur (beta)" -msgstr "" +msgstr "Aplicacions de desenfocament (beta)" #: applications.ui:11 msgid "" @@ -31,20 +34,27 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Afegeix desenfocament a les aplicacions. Aquesta funcionalitat encara es " +"troba en proves.\n" +"Per obtenir els millors resultats assegurat d'escollir la opció \"Sense " +"artefactes\" a les preferències \"General → Nivell de hacking\"\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Opacitat" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"La opacitat de la finestra a sobre de l'efecte de desenfocament, un valor " +"alt permetrà una millor visualització." #: applications.ui:51 msgid "Blur on overview" -msgstr "" +msgstr "Desenfocament a la vista general" #: applications.ui:52 msgid "" From f25de1347ed4e3408adfd738ea7d4011dd138ee9 Mon Sep 17 00:00:00 2001 From: Oman Luka Date: Sat, 6 May 2023 09:11:32 +0200 Subject: [PATCH 105/212] Added translation using Weblate (Slovenian) --- po/sl.po | 436 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 436 insertions(+) create mode 100644 po/sl.po diff --git a/po/sl.po b/po/sl.po new file mode 100644 index 00000000..9a2cd182 --- /dev/null +++ b/po/sl.po @@ -0,0 +1,436 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the blur-my-shell@aunetx package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: blur-my-shell@aunetx\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-02 02:53+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications.ui:5 +msgid "Applications" +msgstr "" + +#: applications.ui:10 +msgid "Applications blur (beta)" +msgstr "" + +#: applications.ui:11 +msgid "" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" +" " +msgstr "" + +#: applications.ui:28 +msgid "Opacity" +msgstr "" + +#: applications.ui:29 +msgid "" +"The opacity of the window on top of the blur effect, a higher value will be " +"more legible." +msgstr "" + +#: applications.ui:51 +msgid "Blur on overview" +msgstr "" + +#: applications.ui:52 +msgid "" +"Forces the blur to be properly shown on all workspaces on overview.\n" +"This may cause some latency or performance issues." +msgstr "" + +#: applications.ui:67 +msgid "Enable all by default" +msgstr "" + +#: applications.ui:68 +msgid "" +"Adds blur behind all windows by default.\n" +"Not recommended because of performance and stability issues." +msgstr "" + +#: applications.ui:85 +msgid "Whitelist" +msgstr "" + +#: applications.ui:86 +msgid "A list of windows to blur." +msgstr "" + +#: applications.ui:104 applications.ui:141 +msgid "Add Window" +msgstr "" + +#: applications.ui:122 +msgid "Blacklist" +msgstr "" + +#: applications.ui:123 +msgid "A list of windows not to blur." +msgstr "" + +#: customize-row.ui:4 +msgid "Customize properties" +msgstr "" + +#: customize-row.ui:5 +msgid "" +"Uses customized blur properties, instead of the ones set in the General page." +msgstr "" + +#: customize-row.ui:10 general.ui:15 +msgid "Sigma" +msgstr "" + +#: customize-row.ui:11 general.ui:16 +msgid "The intensity of the blur." +msgstr "" + +#: customize-row.ui:31 general.ui:35 +msgid "Brightness" +msgstr "" + +#: customize-row.ui:32 general.ui:36 +msgid "" +"The brightness of the blur effect, a high value might make the text harder " +"to read." +msgstr "" + +#: customize-row.ui:52 general.ui:55 +msgid "Color" +msgstr "" + +#: customize-row.ui:53 general.ui:56 +msgid "" +"Changes the color of the blur. The opacity of the color controls how much it " +"is blended into the blur effect." +msgstr "" + +#: customize-row.ui:71 general.ui:73 +msgid "Noise amount" +msgstr "" + +#: customize-row.ui:72 general.ui:74 +msgid "" +"The amount of noise to add to the blur effect, useful on low-contrast " +"screens or for aesthetic purpose." +msgstr "" + +#: customize-row.ui:92 general.ui:94 +msgid "Noise lightness" +msgstr "" + +#: customize-row.ui:93 general.ui:95 +msgid "The lightness of the noise added to the blur effect." +msgstr "" + +#: customize-row.ui:113 +msgid "Notice" +msgstr "" + +#: customize-row.ui:114 +msgid "" +"Noise and color can't be activated on dynamically blurred components, such " +"as this one." +msgstr "" + +#: dash.ui:5 +msgid "Dash" +msgstr "" + +#: dash.ui:10 +msgid "Dash to Dock blur" +msgstr "" + +#: dash.ui:11 +msgid "Blur the background of the Dash to Dock extension, if it is used." +msgstr "" + +#: dash.ui:26 panel.ui:56 +msgid "Override background" +msgstr "" + +#: dash.ui:27 +msgid "" +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." +msgstr "" + +#: dash.ui:50 panel.ui:41 +msgid "Disable in overview" +msgstr "" + +#: dash.ui:51 +msgid "Disables the blur from Dash to Dock when entering the overview." +msgstr "" + +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +msgid "Light" +msgstr "" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +msgid "Dark" +msgstr "" + +#: general.ui:5 +msgid "General" +msgstr "" + +#: general.ui:10 +msgid "Blur preferences" +msgstr "" + +#: general.ui:11 +msgid "Global blur preferences, used by all components by default." +msgstr "" + +#: general.ui:117 +msgid "Performance" +msgstr "" + +#: general.ui:118 +msgid "Various options to tweak the performance." +msgstr "" + +#: general.ui:122 +msgid "Color and noise effects" +msgstr "" + +#: general.ui:123 +msgid "" +"Globally disables noise and color effects which may improve performance on " +"low-end systems." +msgstr "" + +#: general.ui:135 +msgid "Hack level" +msgstr "" + +#: general.ui:136 +msgid "" +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." +msgstr "" + +#: general.ui:151 +msgid "Debug" +msgstr "" + +#: general.ui:152 +msgid "" +"Makes the extension verbose in logs, activate when you need to report an " +"issue." +msgstr "" + +#: general.ui:167 +msgid "Reset preferences" +msgstr "" + +#: general.ui:168 +msgid "Resets preferences of Blur my Shell irreversibly." +msgstr "" + +#: general.ui:187 +msgid "Reset" +msgstr "" + +#: general.ui:228 +msgid "High performances" +msgstr "" + +#: general.ui:229 +msgid "Default" +msgstr "" + +#: general.ui:230 +msgid "High quality" +msgstr "" + +#: general.ui:231 +msgid "No artifact" +msgstr "" + +#: menu.ui:6 +msgid "Project page" +msgstr "" + +#: menu.ui:10 +msgid "Report a Bug" +msgstr "" + +#: menu.ui:14 +msgid "License" +msgstr "" + +#: menu.ui:18 +msgid "Donate" +msgstr "" + +#: other.ui:5 +msgid "Other" +msgstr "" + +#: other.ui:10 +msgid "Lockscreen blur" +msgstr "" + +#: other.ui:11 +msgid "Change the blur of the lockscreen to use this extension's preferences." +msgstr "" + +#: other.ui:28 +msgid "Screenshot blur" +msgstr "" + +#: other.ui:29 +msgid "Add blur to the background of the window selector in the screenshot UI." +msgstr "" + +#: other.ui:46 +msgid "Window list extension blur" +msgstr "" + +#: other.ui:47 +msgid "Make the window-list extension blurred, if it is used." +msgstr "" + +#: overview.ui:5 +msgid "Overview" +msgstr "" + +#: overview.ui:10 +msgid "Background blur" +msgstr "" + +#: overview.ui:11 +msgid "Add blur to the overview background, using the wallpaper picture." +msgstr "" + +#: overview.ui:26 +msgid "Overview components style" +msgstr "" + +#: overview.ui:27 +msgid "" +"The semi-transparent style for the dash, search entry/results, and " +"application folders." +msgstr "" + +#: overview.ui:44 +msgid "Application folder blur" +msgstr "" + +#: overview.ui:45 +msgid "Makes the background of application folder dialogs blurred." +msgstr "" + +#: overview.ui:60 +msgid "Application folder dialogs style" +msgstr "" + +#: overview.ui:61 +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" + +#: overview.ui:79 overview.ui:88 +msgid "Do not style" +msgstr "" + +#: panel.ui:5 +msgid "Panel" +msgstr "" + +#: panel.ui:10 +msgid "Panel blur" +msgstr "" + +#: panel.ui:11 +msgid "Blur the top panel using the background image." +msgstr "" + +#: panel.ui:26 +msgid "Static blur" +msgstr "" + +#: panel.ui:27 +msgid "Uses a static blurred image, more performant and stable." +msgstr "" + +#: panel.ui:42 +msgid "Disables the blur from the panel when entering the overview." +msgstr "" + +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" + +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 +msgid "Disable when a window is near" +msgstr "" + +#: panel.ui:80 +msgid "Disables the transparency of the panel when a window is near it." +msgstr "" + +#: panel.ui:97 +msgid "Compatibility" +msgstr "" + +#: panel.ui:98 +msgid "Various options to provide compatibility with other extensions." +msgstr "" + +#: panel.ui:103 +msgid "Hidetopbar extension" +msgstr "" + +#: panel.ui:104 +msgid "Does not disable the blur in overview, best used with static blur." +msgstr "" + +#: window-row.ui:4 +msgid "Window Name" +msgstr "" + +#: window-row.ui:8 +msgid "Select window" +msgstr "" + +#: window-row.ui:9 +msgid "Pick a window or select it by its classname." +msgstr "" From ce14a0f37da6e4d6b1106778e82b85e891c45a24 Mon Sep 17 00:00:00 2001 From: Oman Luka Date: Sat, 6 May 2023 07:31:01 +0000 Subject: [PATCH 106/212] Translated using Weblate (Slovenian) Currently translated at 9.3% (9 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/sl/ --- po/sl.po | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/po/sl.po b/po/sl.po index 9a2cd182..30e7c63a 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8,21 +8,25 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-05-07 07:50+0000\n" +"Last-Translator: Oman Luka \n" +"Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 4.18-dev\n" #: applications.ui:5 msgid "Applications" -msgstr "" +msgstr "Aplikacije" #: applications.ui:10 msgid "Applications blur (beta)" -msgstr "" +msgstr "Zamegljenost aplikacij (beta)" #: applications.ui:11 msgid "" @@ -31,36 +35,46 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Aplikacijam doda zamegljenost. Ta funkcionalnost je še vedno v fazi beta.\n" +"Za najboljše rezultate izberite med možnostmi \"Splošno → Stopnja " +"prilagajanja\" opcijo \"Brez tujkov\".\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Motnost" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"Motnost okna, ki gradi na učinku zameglitve, višja vrednost bo bolj zaznavna." #: applications.ui:51 msgid "Blur on overview" -msgstr "" +msgstr "Moten predogled" #: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Prisili zamegljenost, da je pravilno prikazana na vseh delovnih površinah v " +"pregledu.\n" +"To lahko povzroči počasnejše prikazovanje elementov ali težave z delovanjem." #: applications.ui:67 msgid "Enable all by default" -msgstr "" +msgstr "Privzeto omogoči vse" #: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Privzeto doda zamegljenost na vsa prikazana okna.\n" +"Zaradi težav z zmogljivostjo in stabilnostjo tega ne možnosti ne priporočamo." #: applications.ui:85 msgid "Whitelist" From 0789c36cf2b51f5c75ab924693b72c36eb63213f Mon Sep 17 00:00:00 2001 From: Oman Luka Date: Wed, 10 May 2023 20:32:06 +0000 Subject: [PATCH 107/212] Translated using Weblate (Slovenian) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/sl/ --- po/sl.po | 182 ++++++++++++++++++++++++++++++++----------------------- 1 file changed, 107 insertions(+), 75 deletions(-) diff --git a/po/sl.po b/po/sl.po index 30e7c63a..e08c1a83 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-05-07 07:50+0000\n" +"PO-Revision-Date: 2023-05-12 15:53+0000\n" "Last-Translator: Oman Luka \n" "Language-Team: Slovenian \n" @@ -35,7 +35,7 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" -"Aplikacijam doda zamegljenost. Ta funkcionalnost je še vedno v fazi beta.\n" +"Aplikacijam doda zameglitev. Ta funkcionalnost je še vedno v fazi beta.\n" "Za najboljše rezultate izberite med možnostmi \"Splošno → Stopnja " "prilagajanja\" opcijo \"Brez tujkov\".\n" " " @@ -60,7 +60,7 @@ msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" -"Prisili zamegljenost, da je pravilno prikazana na vseh delovnih površinah v " +"Prisili zameglitev, da je pravilno prikazana na vseh delovnih površinah v " "pregledu.\n" "To lahko povzroči počasnejše prikazovanje elementov ali težave z delovanjem." @@ -73,177 +73,192 @@ msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" -"Privzeto doda zamegljenost na vsa prikazana okna.\n" +"Privzeto doda zameglitev na vsa prikazana okna.\n" "Zaradi težav z zmogljivostjo in stabilnostjo tega ne možnosti ne priporočamo." #: applications.ui:85 msgid "Whitelist" -msgstr "" +msgstr "Seznam dovoljenih" #: applications.ui:86 msgid "A list of windows to blur." -msgstr "" +msgstr "Seznam oken, ki jih bomo zameglili." #: applications.ui:104 applications.ui:141 msgid "Add Window" -msgstr "" +msgstr "Dodaj okno" #: applications.ui:122 msgid "Blacklist" -msgstr "" +msgstr "Seznam izločenih" #: applications.ui:123 msgid "A list of windows not to blur." -msgstr "" +msgstr "Seznam oken, ki jih ne bomo zameglili." #: customize-row.ui:4 msgid "Customize properties" -msgstr "" +msgstr "Prilagodite lastnosti" #: customize-row.ui:5 msgid "" "Uses customized blur properties, instead of the ones set in the General page." msgstr "" +"Namesto lastnosti zameglitve, ki so nastavljena na strani \"Splošno\" " +"uporabi prilagojene lastnosti." #: customize-row.ui:10 general.ui:15 msgid "Sigma" -msgstr "" +msgstr "Sigma" #: customize-row.ui:11 general.ui:16 msgid "The intensity of the blur." -msgstr "" +msgstr "Jakost zameglitve." #: customize-row.ui:31 general.ui:35 msgid "Brightness" -msgstr "" +msgstr "Svetlost" #: customize-row.ui:32 general.ui:36 msgid "" "The brightness of the blur effect, a high value might make the text harder " "to read." msgstr "" +"Svetlost efekta zameglitve, višja vrednost lahko povzroči, da je besedilo " +"težje berljivo." #: customize-row.ui:52 general.ui:55 msgid "Color" -msgstr "" +msgstr "Barva" #: customize-row.ui:53 general.ui:56 msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." msgstr "" +"Spremeni barvo zameglitve. Prosojnost barve nadzoruje, kako je vključena v " +"efekt zameglitve." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" -msgstr "" +msgstr "Količina šuma" #: customize-row.ui:72 general.ui:74 msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." msgstr "" +"Količina šuma, ki je dodan efektu zameglitve; uporabno za estetski namen na " +"ekranih z nizkim kontrastom." #: customize-row.ui:92 general.ui:94 msgid "Noise lightness" -msgstr "" +msgstr "Svetlost šuma" #: customize-row.ui:93 general.ui:95 msgid "The lightness of the noise added to the blur effect." -msgstr "" +msgstr "Svetlost šuma, ki je dodan efektu zameglitve." #: customize-row.ui:113 msgid "Notice" -msgstr "" +msgstr "Zaznamek" #: customize-row.ui:114 msgid "" "Noise and color can't be activated on dynamically blurred components, such " "as this one." msgstr "" +"Šum in barva ne moreta biti aktivirana na dinamično zamegljenihi delih, kot " +"te slednji." #: dash.ui:5 msgid "Dash" -msgstr "" +msgstr "Nadzorna plošča" #: dash.ui:10 msgid "Dash to Dock blur" -msgstr "" +msgstr "Zameglitev razširitve \"Dash to Dock\"" #: dash.ui:11 msgid "Blur the background of the Dash to Dock extension, if it is used." -msgstr "" +msgstr "Zameglitev ozadja razširitve \"Dash to Dock\", če je uporabljena." #: dash.ui:26 panel.ui:56 msgid "Override background" -msgstr "" +msgstr "Prepiši ozadje" #: dash.ui:27 msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Napravi ozadje bodisi prozorno ali polprozorno, onemogočite, da uporabite " +"možnosti nastavljene pri razširitvi \"Dash to Dock\"." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Stil ozadja" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "Prozoren ali polprozoren stil ozadja vrstice." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" -msgstr "" +msgstr "Onemogoči v pregledu" #: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." -msgstr "" +msgstr "Onemogoči zameglitev \"Dash do Dock\" razširitve pri vstopu v pregled." #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "Prozoren" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" -msgstr "" +msgstr "Svetel" #: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 msgid "Dark" -msgstr "" +msgstr "Temen" #: general.ui:5 msgid "General" -msgstr "" +msgstr "Splošen" #: general.ui:10 msgid "Blur preferences" -msgstr "" +msgstr "Lastnosti zameglitve" #: general.ui:11 msgid "Global blur preferences, used by all components by default." msgstr "" +"Globalne nastavitve zameglitve, ki jih privzeto uporabljajo vse komponente." #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Zmogljivost" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Različne možnosti za prilagoditev delovanja." #: general.ui:122 msgid "Color and noise effects" -msgstr "" +msgstr "Učinki barve in šuma" #: general.ui:123 msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"Globalno onemogoči učinke šuma in barve, kar lahko izboljša zmogljivost v " +"sistemih nižje zmogljivosti." #: general.ui:135 msgid "Hack level" -msgstr "" +msgstr "Stopnja trikov" #: general.ui:136 msgid "" @@ -253,154 +268,167 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Spremeni obnašanje učinka dinamične zameglitve.\n" +"Priporočamo privzeto vrednost, razen če uporabljate zameglitev aplikacije; v " +"tem primeru je boljša možnost »Brez tujkov«.\n" +"Ta možnost bo v celoti onemogočila motnje v ponovnem nalaganju lupine GNOME, " +"lahko vpliva na zmogljivost, vendar bo popolnoma popravila učinek " +"zamegljenosti." #: general.ui:151 msgid "Debug" -msgstr "" +msgstr "Razhroščevanje" #: general.ui:152 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." msgstr "" +"Povzroči številne zapise razširitve v dnevnikih; aktivirati, kadar želite " +"prijaviti napako." #: general.ui:167 msgid "Reset preferences" -msgstr "" +msgstr "Ponastavi nastavitve" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "Nepovratno povrne nastavitve razširitve \"Blur my Shell\"." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Ponastavi" #: general.ui:228 msgid "High performances" -msgstr "" +msgstr "Visoka zmogljivost" #: general.ui:229 msgid "Default" -msgstr "" +msgstr "Privzeto" #: general.ui:230 msgid "High quality" -msgstr "" +msgstr "Visoka kvaliteta" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Brez tujkov" #: menu.ui:6 msgid "Project page" -msgstr "" +msgstr "Projektna stran" #: menu.ui:10 msgid "Report a Bug" -msgstr "" +msgstr "Javi napako" #: menu.ui:14 msgid "License" -msgstr "" +msgstr "Licenca" #: menu.ui:18 msgid "Donate" -msgstr "" +msgstr "Podari" #: other.ui:5 msgid "Other" -msgstr "" +msgstr "Drugo" #: other.ui:10 msgid "Lockscreen blur" -msgstr "" +msgstr "Zameglitev prijavnega okna" #: other.ui:11 msgid "Change the blur of the lockscreen to use this extension's preferences." msgstr "" +"Spremeni zameglitev prijavnega okna tako, da uporablja nastavitve razširitve." #: other.ui:28 msgid "Screenshot blur" -msgstr "" +msgstr "Zameglitev zaslonske slike" #: other.ui:29 msgid "Add blur to the background of the window selector in the screenshot UI." msgstr "" +"Dodaj zameglitev v ozadnje izbirnika okna v grafičnem vmesniku zaslonske " +"slike." #: other.ui:46 msgid "Window list extension blur" -msgstr "" +msgstr "Seznam oken, ki naj jih zamegli" #: other.ui:47 msgid "Make the window-list extension blurred, if it is used." -msgstr "" +msgstr "Če je v uporabi, zamegli seznam oken razširitev." #: overview.ui:5 msgid "Overview" -msgstr "" +msgstr "Pregled" #: overview.ui:10 msgid "Background blur" -msgstr "" +msgstr "Zameglitev ozadnja" #: overview.ui:11 msgid "Add blur to the overview background, using the wallpaper picture." -msgstr "" +msgstr "Zamegli ozadje v pregledu, pri čemer uporabi sliko ozadja." #: overview.ui:26 msgid "Overview components style" -msgstr "" +msgstr "Stil komponente pregleda" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" +"Delno prosojen stil plošče, iskalnega vnosa/rezultatov in mape z " +"aplikacijami." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Zamegljenost mape aplikacij" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "Naredi ozadje mape aplikacij zamegljen." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Stil dialogov mape aplikacij" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." -msgstr "" +msgstr "Delno prosojen stil dialogov mape aplikacij." #: overview.ui:79 overview.ui:88 msgid "Do not style" -msgstr "" +msgstr "Ne oblikuj" #: panel.ui:5 msgid "Panel" -msgstr "" +msgstr "Plošča" #: panel.ui:10 msgid "Panel blur" -msgstr "" +msgstr "Zamegljenost plošče" #: panel.ui:11 msgid "Blur the top panel using the background image." -msgstr "" +msgstr "Zamegli vrhnjo plošo z uporabo slike ozadja." #: panel.ui:26 msgid "Static blur" -msgstr "" +msgstr "Statična zameglitev" #: panel.ui:27 msgid "Uses a static blurred image, more performant and stable." -msgstr "" +msgstr "Uporabi statično zamegljeno sliko; boljša zmogljivost in stabilnost." #: panel.ui:42 msgid "Disables the blur from the panel when entering the overview." -msgstr "" +msgstr "Onemogoči zameglitev plošče ko vstopamo v pregled." #: panel.ui:57 msgid "" @@ -408,43 +436,47 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Preglasite ozadje plošče, če želite uporabiti prozorno ali polprosojno.\n" +"Priporočeno, razen če želite prilagoditi svojo temo GNOME." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "Prozoren/polprosojen slog za ozadje plošče." #: panel.ui:79 msgid "Disable when a window is near" -msgstr "" +msgstr "Onemogoči, ko je v okolici okno" #: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "Onemogoči prosojnost plošče, ko je blizu nje okno." #: panel.ui:97 msgid "Compatibility" -msgstr "" +msgstr "Združljivost" #: panel.ui:98 msgid "Various options to provide compatibility with other extensions." msgstr "" +"Različne možnosti za zagotavljanje združljivosti z drugimi razširitvami." #: panel.ui:103 msgid "Hidetopbar extension" -msgstr "" +msgstr "Razširitev \"HideTopBar\"" #: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" +"Ne onemogoči zameglitve pregleda, najbolj uporabno s statično zameglitvijo." #: window-row.ui:4 msgid "Window Name" -msgstr "" +msgstr "Ime okna" #: window-row.ui:8 msgid "Select window" -msgstr "" +msgstr "Izberi okno" #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" +msgstr "Izberi okno ali ga označi z uporabo njegovega razreda." From 13d8fbf824ef88da757724b397e301e24e95029f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sabri=20=C3=9Cnal?= Date: Sat, 13 May 2023 21:22:43 +0000 Subject: [PATCH 108/212] Translated using Weblate (Turkish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/tr/ --- po/tr.po | 100 ++++++++++++++++++++++++++++++++++--------------------- 1 file changed, 62 insertions(+), 38 deletions(-) diff --git a/po/tr.po b/po/tr.po index 5c15920c..35545dc1 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-03-05 13:41+0000\n" +"PO-Revision-Date: 2023-05-14 21:51+0000\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.16.2-dev\n" +"X-Generator: Weblate 4.18-dev\n" #: applications.ui:5 msgid "Applications" @@ -34,6 +34,10 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Uygulamalara bulanıklık ekler. Bu hala beta işlevselliğidir.\n" +"Mümkün olan en iyi sonuçları elde etmek için, \"Genel → Hack düzeyi\" " +"tercihinde \"Artefakt yok\" seçeneğini seçtiğinizden emin olun.\n" +" " #: applications.ui:28 msgid "Opacity" @@ -44,8 +48,8 @@ msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" -"Bulanıklaştırma efektinin üstündeki pencerenin matlığı, daha yüksek bir " -"değer daha okunaklı olacaktır." +"Bulanıklaştırma etkisinin üstündeki pencerenin matlığı, daha yüksek değer " +"daha okunaklı olacaktır." #: applications.ui:51 msgid "Blur on overview" @@ -56,16 +60,21 @@ msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Bulanıklığın genel görünümdeki tüm çalışma alanlarında düzgün şekilde " +"gösterilmesini zorlar.\n" +"Bu, bazı gecikme veya performans sorunlarına neden olabilir." #: applications.ui:67 msgid "Enable all by default" -msgstr "" +msgstr "Öntanımlı olarak tümünü etkinleştir" #: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Öntanımlı olarak tüm pencerelerin arkasına bulanıklık ekler.\n" +"Performans ve kararlılık sorunları nedeniyle önerilmez." #: applications.ui:85 msgid "Whitelist" @@ -73,7 +82,7 @@ msgstr "Beyaz Liste" #: applications.ui:86 msgid "A list of windows to blur." -msgstr "" +msgstr "Bulanıklaştırılacak pencerelerin listesi." #: applications.ui:104 applications.ui:141 msgid "Add Window" @@ -81,11 +90,11 @@ msgstr "Pencere Ekle" #: applications.ui:122 msgid "Blacklist" -msgstr "" +msgstr "Kara liste" #: applications.ui:123 msgid "A list of windows not to blur." -msgstr "" +msgstr "Bulanıklaştırılmaması gereken pencerelerin listesi." #: customize-row.ui:4 msgid "Customize properties" @@ -115,7 +124,7 @@ msgid "" "The brightness of the blur effect, a high value might make the text harder " "to read." msgstr "" -"Bulanıklık efektinin parlaklığı, yüksek bir değer metnin okunmasını " +"Bulanıklık etkisinin parlaklığı, yüksek değer metnin okunmasını " "zorlaştırabilir." #: customize-row.ui:52 general.ui:55 @@ -127,28 +136,28 @@ msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." msgstr "" -"Bulanıklığın rengini değiştirir. Rengin opaklığı, bulanıklık efektiyle ne " -"kadar karıştırılacağını kontrol eder." +"Bulanıklığın rengini değiştirir. Rengin matlığı, bulanıklık etkisiyle ne " +"kadar karıştırılacağını denetler." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" -msgstr "Pürüz miktarı" +msgstr "Gürültü miktarı" #: customize-row.ui:72 general.ui:74 msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." msgstr "" -"Bulanıklık efektinin pürüz miktarı, düşük kontrastlı ekranlarda veya estetik " -"amaçlar için yararlıdır." +"Bulanıklık etkisinin gürültü miktarı, düşük karşıtlıklı ekranlarda veya " +"estetik amaçlar için yararlıdır." #: customize-row.ui:92 general.ui:94 msgid "Noise lightness" -msgstr "Pürüz hafifliği" +msgstr "Gürültü hafifliği" #: customize-row.ui:93 general.ui:95 msgid "The lightness of the noise added to the blur effect." -msgstr "Bulanıklık efektine eklenen pürüzün hafifliği." +msgstr "Bulanıklık etkisine eklenen gürültünün hafifliği." #: customize-row.ui:113 msgid "Notice" @@ -183,6 +192,8 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Arka planını saydam veya yarı saydam hale getirir, Dash to Dock kullanmak " +"için bunu devre dışı bırakın." #: dash.ui:33 panel.ui:64 msgid "Background style" @@ -190,7 +201,7 @@ msgstr "Arka plan biçemi" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "Rıhtım arka planı için saydam/yarı saydam biçem." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" @@ -202,15 +213,15 @@ msgstr "Genel bakışa geçişte Dash to Dock bulanıklığını devre dışı b #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "Şeffaf" +msgstr "Saydam" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" -msgstr "Aydınlık" +msgstr "Açık" #: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 msgid "Dark" -msgstr "Karanlık" +msgstr "Koyu" #: general.ui:5 msgid "General" @@ -236,17 +247,19 @@ msgstr "Performansı ayarlamak için çeşitli seçenekler." #: general.ui:122 msgid "Color and noise effects" -msgstr "Renk ve pürüz efektleri" +msgstr "Renk ve gürültü etkileri" #: general.ui:123 msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"Düşük özellikli sistemlerde performansı artırabilecek gürültü ve renk " +"etkilerini küresel olarak devre dışı bırakır." #: general.ui:135 msgid "Hack level" -msgstr "Hack seviyesi" +msgstr "Hack düzeyi" #: general.ui:136 msgid "" @@ -256,6 +269,12 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Dinamik bulanıklaştırma etkisinin davranışını değiştirir.\n" +"Uygulama bulanıklığı kullanmadığınız sürece öntanımlı değer şiddetle tavsiye " +"edilir, bu durumda \"Artifakt Yok\" daha iyidir.\n" +"Bu seçenek GNOME kabuğunda kırpılmış yeniden çizimleri tamamen devre dışı " +"bırakır ve performansı önemli ölçüde etkileyebilir, ancak bulanıklık " +"etkisini tamamen düzeltir." #: general.ui:151 msgid "Debug" @@ -271,15 +290,15 @@ msgstr "" #: general.ui:167 msgid "Reset preferences" -msgstr "" +msgstr "Tercihleri sıfırla" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "Blur my Shell tercihlerini geri döndürülemez şekilde sıfırlar." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Sıfırla" #: general.ui:228 msgid "High performances" @@ -295,7 +314,7 @@ msgstr "Yüksek kalite" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Artefakt yok" #: menu.ui:6 msgid "Project page" @@ -303,7 +322,7 @@ msgstr "Proje sayfası" #: menu.ui:10 msgid "Report a Bug" -msgstr "Sorun bildir" +msgstr "Hata Raporla" #: menu.ui:14 msgid "License" @@ -360,33 +379,35 @@ msgstr "" #: overview.ui:26 msgid "Overview components style" -msgstr "Genel görünüm bileşen stili" +msgstr "Genel görünüm bileşen biçemi" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" +"Gösterge paneli, arama girişi/sonuçları ve uygulama klasörleri için yarı " +"saydam biçem." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Uygulama klasörü bulanıklığı" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "Uygulama klasörü iletişim kutusunun arka planını bulanıklaştırır." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Uygulama klasörü iletişim kutuları biçemi" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." -msgstr "" +msgstr "Uygulama klasörü iletişim iletişimi için yarı saydam biçem." #: overview.ui:79 overview.ui:88 msgid "Do not style" -msgstr "Stil yapma" +msgstr "Biçem yapma" #: panel.ui:5 msgid "Panel" @@ -418,10 +439,13 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Saydam veya yarı saydam bir arka plan kullanmak için panelin arka planını " +"geçersiz kıl.\n" +"GNOME temanızı özelleştirmek istemiyorsanız önerilir." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "Panel arka planı için saydam/yarı saydam biçem." #: panel.ui:79 msgid "Disable when a window is near" @@ -429,7 +453,7 @@ msgstr "Bir pencere yakınken devre dışı bırak" #: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "Bir pencere yakındayken panelin saydamlığını devre dışı bırakır." #: panel.ui:97 msgid "Compatibility" @@ -451,15 +475,15 @@ msgstr "" #: window-row.ui:4 msgid "Window Name" -msgstr "" +msgstr "Pencere Adı" #: window-row.ui:8 msgid "Select window" -msgstr "" +msgstr "Pencere seç" #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" +msgstr "Bir pencere seç veya sınıf adına göre seç." #~ msgid "" #~ "Makes the background semi-transparent, disable this to use Dash to Dock " From a1245966dbaaed5bb286a99660bef8d4bf02b380 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sabri=20=C3=9Cnal?= Date: Sun, 21 May 2023 23:04:43 +0000 Subject: [PATCH 109/212] Translated using Weblate (Turkish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/tr/ --- po/tr.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/tr.po b/po/tr.po index 35545dc1..82f634d7 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-05-14 21:51+0000\n" +"PO-Revision-Date: 2023-05-22 23:48+0000\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish \n" @@ -78,7 +78,7 @@ msgstr "" #: applications.ui:85 msgid "Whitelist" -msgstr "Beyaz Liste" +msgstr "Beyaz liste" #: applications.ui:86 msgid "A list of windows to blur." @@ -185,7 +185,7 @@ msgstr "Kullanılıyorsa, Dash to Dock uzantısının arka planını bulanıkla #: dash.ui:26 panel.ui:56 msgid "Override background" -msgstr "Arkaplanı geçersiz kıl" +msgstr "Arka planı geçersiz kıl" #: dash.ui:27 msgid "" @@ -370,7 +370,7 @@ msgstr "Genel Görünüm" #: overview.ui:10 msgid "Background blur" -msgstr "Arkaplan bulanıklığı" +msgstr "Arka plan bulanıklığı" #: overview.ui:11 msgid "Add blur to the overview background, using the wallpaper picture." From 2639ce00fd1df0d39658041ac7d9cc93fdbb1b90 Mon Sep 17 00:00:00 2001 From: Karol Lademan Date: Thu, 25 May 2023 16:04:27 +0000 Subject: [PATCH 110/212] Translated using Weblate (Polish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pl/ --- po/pl.po | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/po/pl.po b/po/pl.po index 954fb1e0..a7b8a909 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-03-07 17:41+0000\n" -"Last-Translator: Andus \n" +"PO-Revision-Date: 2023-05-26 16:49+0000\n" +"Last-Translator: Karol Lademan \n" "Language-Team: Polish \n" "Language: pl\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.16.2-dev\n" +"X-Generator: Weblate 4.18-dev\n" #: applications.ui:5 msgid "Applications" @@ -35,9 +35,9 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" -"Dodaje rozmazania do aplikacji. To wciąż jest funkcja beta.\n" -"By dostać najlepsze rezultaty, upewnij się żeby wybrać opcje \"Brak " -"artefaktu\" w preferencji \"Generalne → Poziom hackowania\"\n" +"Dodaje efekt rozmazania do aplikacji. Funkcja jest wciąż w fazie beta.\n" +"Aby uzyskać najlepsze rezultaty wybierz opcję \"bez artefaktów\" w sekcji " +"\"Ogólne → Poziom hakowania\".\n" " " #: applications.ui:28 @@ -192,8 +192,8 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" -"Sprawia, że tło jest przezroczyste lub półprzezroczyste, wyłącz tę opcję, " -"aby zamiast tego użyć preferencji Dash to Dock." +"Sprawia, że tło jest przezroczyste lub półprzezroczyste, wyłącz tę opcję aby " +"zamiast tego używać preferencji rozszerzenia Dash to Dock." #: dash.ui:33 panel.ui:64 msgid "Background style" @@ -201,7 +201,7 @@ msgstr "Styl tła" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "Przezroczysty/półprzezroczysty styl tła docka." +msgstr "(Pół)przezroczysty styl tła docka." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" From 7c277f4c384eaa3eb4f2930cb4f14f7e8db83911 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Weigend?= Date: Sun, 28 May 2023 10:43:03 +0000 Subject: [PATCH 111/212] Translated using Weblate (German) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/de.po b/po/de.po index e2a1dd20..05188ff1 100644 --- a/po/de.po +++ b/po/de.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-04-12 13:48+0000\n" +"PO-Revision-Date: 2023-05-29 10:50+0000\n" "Last-Translator: Jörn Weigend \n" "Language-Team: German \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.17-dev\n" +"X-Generator: Weblate 4.18-dev\n" #: applications.ui:5 msgid "Applications" @@ -248,7 +248,7 @@ msgstr "Leistung" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "Verschiedene Optionen zur Leistungsoptimierung." +msgstr "Diverse Optionen, um die Leistung zu optimieren." #: general.ui:122 msgid "Color and noise effects" @@ -452,7 +452,7 @@ msgstr "" #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "Halb-/Transparenter Stil für Leisten-Hintergrund." +msgstr "Der transparente/halbtransparente Stil für den Panel-Hintergrund." #: panel.ui:79 msgid "Disable when a window is near" From 1764e0b60d8e058ec27637eff3e7d8a82dc4937e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20Melih=20Aydo=C4=9Fdu?= Date: Wed, 7 Jun 2023 23:14:06 +0300 Subject: [PATCH 112/212] added index multiplier --- src/components/overview.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/overview.js b/src/components/overview.js index 42178224..1e57a0a7 100644 --- a/src/components/overview.js +++ b/src/components/overview.js @@ -168,7 +168,9 @@ var OverviewBlur = class OverviewBlur { create_background_actor(monitor) { let bg_actor = new Meta.BackgroundActor; let background = Main.layoutManager._backgroundGroup.get_child_at_index( - Main.layoutManager.monitors.length - monitor.index - 1 + (Main.layoutManager.monitors.length - monitor.index - 1) * + (Main.layoutManager._backgroundGroup.get_children().length / + Main.layoutManager.monitors.length) ); if (!background) { From 4cd5e264f84bf722de97778050155661ac295ff1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20Melih=20Aydo=C4=9Fdu?= Date: Thu, 8 Jun 2023 22:14:36 +0300 Subject: [PATCH 113/212] filtered MetaBackgroundActor --- src/components/overview.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/components/overview.js b/src/components/overview.js index 1e57a0a7..0e8fdb81 100644 --- a/src/components/overview.js +++ b/src/components/overview.js @@ -167,11 +167,13 @@ var OverviewBlur = class OverviewBlur { create_background_actor(monitor) { let bg_actor = new Meta.BackgroundActor; - let background = Main.layoutManager._backgroundGroup.get_child_at_index( - (Main.layoutManager.monitors.length - monitor.index - 1) * - (Main.layoutManager._backgroundGroup.get_children().length / - Main.layoutManager.monitors.length) - ); + let background_group = Main.layoutManager._backgroundGroup + .get_children() + .filter((child) => child instanceof Meta.BackgroundActor); + let background = + background_group[ + Main.layoutManager.monitors.length - monitor.index - 1 + ]; if (!background) { this._log("could not get background for overview"); From 87058e2c2a27293ea524b0440127ac25d7c87543 Mon Sep 17 00:00:00 2001 From: Roland Vincze Date: Thu, 8 Jun 2023 14:39:10 +0000 Subject: [PATCH 114/212] Translated using Weblate (Hungarian) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/hu/ --- po/hu.po | 115 +++++++++++++++++++++++++++---------------------------- 1 file changed, 56 insertions(+), 59 deletions(-) diff --git a/po/hu.po b/po/hu.po index 0db25090..45461701 100644 --- a/po/hu.po +++ b/po/hu.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2022-06-24 18:18+0000\n" -"Last-Translator: Bence Turi \n" +"PO-Revision-Date: 2023-06-09 15:50+0000\n" +"Last-Translator: Roland Vincze \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.13.1-dev\n" +"X-Generator: Weblate 4.18-dev\n" #: applications.ui:5 msgid "Applications" @@ -34,22 +34,22 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" -"Elhomályosítja az alkalmazásokat. Ez még béta funkcionalitás.\n" +"Elhomályosítja az alkalmazásokat. Ez egyelőre béta funkció.\n" "A legjobb eredmény elérése érdekében válaszd a \"Nincs artifact\"-ot az " "\"Általános → Átalakítás szintje\" beállításnál.\n" " " #: applications.ui:28 msgid "Opacity" -msgstr "Opacitás" +msgstr "Áttetszőség" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" -"Az ablak opacitása a homályosításon felül. A magasabb érték olvashatóbbat " -"eredményez." +"Az ablak áttetszősége a homályosításon felül. A magasabb érték jobb " +"olvashatóságot eredményez." #: applications.ui:51 msgid "Blur on overview" @@ -62,11 +62,11 @@ msgid "" msgstr "" "Kényszeríti a homályosítás megjelenítését a munkaterületeken az áttekintés " "nézetben.\n" -"Teljesítménybeli problémát okozhat." +"Teljesítménybeli problémát, vagy késleltetéseket okozhat." #: applications.ui:67 msgid "Enable all by default" -msgstr "Minden engedélyezése alapértelmezésként" +msgstr "Elhomályosítás az összes ablaknál" #: applications.ui:68 msgid "" @@ -97,7 +97,6 @@ msgid "A list of windows not to blur." msgstr "Nem elhomályosítandó ablakok listája." #: customize-row.ui:4 -#, fuzzy msgid "Customize properties" msgstr "Beállítások testreszabása" @@ -105,26 +104,27 @@ msgstr "Beállítások testreszabása" msgid "" "Uses customized blur properties, instead of the ones set in the General page." msgstr "" -"Testreszabott homályosítási beállításokat használ az általánosak helyett." +"Testreszabott homályosítási beállításokat használ az általános beállítások " +"helyett." #: customize-row.ui:10 general.ui:15 msgid "Sigma" -msgstr "Szigma" +msgstr "Mérték" #: customize-row.ui:11 general.ui:16 msgid "The intensity of the blur." -msgstr "A homályosítás intenzitása." +msgstr "A homályosítás intenzitása, mértéke." #: customize-row.ui:31 general.ui:35 msgid "Brightness" -msgstr "Fényerő" +msgstr "Világosság" #: customize-row.ui:32 general.ui:36 msgid "" "The brightness of the blur effect, a high value might make the text harder " "to read." msgstr "" -"A homályosítás fényereje. A magasabb érték nehezebbé teheti a szövegek " +"A homályosítás világossága. A magasabb érték nehezebbé teheti a szövegek " "olvasását." #: customize-row.ui:52 general.ui:55 @@ -136,8 +136,8 @@ msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." msgstr "" -"A homályosítás színét módosítja. A szín opacitása szabályozza, hogy mennyire " -"olvad a homályosításba." +"A homályosítás színét módosítja. A szín áttetszősége szabályozza, hogy " +"mennyire olvad bele a homályosításba." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" @@ -148,41 +148,41 @@ msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." msgstr "" -"A homályosítás zajszintje. Alacsony kontrasztú képernyőknél, vagy az " -"esztétika miatt hasznos." +"A homályosítás zajszintje. Alacsony kontrasztú képernyőknél és esztétikai " +"célokra hasznos." #: customize-row.ui:92 general.ui:94 msgid "Noise lightness" -msgstr "" +msgstr "Zajszint világossága" #: customize-row.ui:93 general.ui:95 msgid "The lightness of the noise added to the blur effect." -msgstr "" +msgstr "Az elhomályosításra kerülő zajszint világossága." #: customize-row.ui:113 msgid "Notice" -msgstr "Értesítés" +msgstr "Megjegyzés" #: customize-row.ui:114 msgid "" "Noise and color can't be activated on dynamically blurred components, such " "as this one." msgstr "" -"Zaj és szín nem aktiválható a dinamikusan homályosított komponenseken, mint " -"például ez." +"A zaj és a szín nem aktiválható a dinamikusan homályosított komponenseken, " +"többek közt ezen sem." #: dash.ui:5 msgid "Dash" -msgstr "Dash" +msgstr "Dokk" #: dash.ui:10 msgid "Dash to Dock blur" -msgstr "Dash to Dock homályosítása" +msgstr "A Dash to Dock kiegészítő homályosítása" #: dash.ui:11 msgid "Blur the background of the Dash to Dock extension, if it is used." msgstr "" -"A Dash to Dock kiegészítés használata esetén a hátterének elhomályosítása." +"A Dash to Dock kiegészítő hátterének elhomályosítása, ha az használatban van." #: dash.ui:26 panel.ui:56 msgid "Override background" @@ -235,8 +235,8 @@ msgstr "Homályosítás beállításai" #: general.ui:11 msgid "Global blur preferences, used by all components by default." msgstr "" -"Általános homályosítás beállítások. Minden komponens alapértelmezettként " -"használja." +"Alapértelmezett homályosítási beállítások. Minden komponens " +"alapértelmezettként fogja használni." #: general.ui:117 msgid "Performance" @@ -255,7 +255,7 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" -"A zaj és szín hatásokat általánosan kikapcsolja, ami javíthatja a " +"A zaj és szín hatásokat mindenhol kikapcsolja, ami javíthatja a " "teljesítményt a gyengébb rendszereken." #: general.ui:135 @@ -270,16 +270,16 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" -"Megváltoztatja a dinamikus homályosítás hatás magatartását.\n" -"Az alapértelmezett érték erősen javasolt, kivéve ha alkalmazás homályosítást " -"használsz, mert akkor a \"Nincs artifact\" jobb.\n" +"Megváltoztatja a dinamikus homályosítás effektusát.\n" +"Az alapértelmezett beállítás ajánlott, kivéve ha az alkalmazások " +"homályosítása engedélyezve van: ebben az esetben a \"Nincs artifact\" jobb.\n" "Ez a beállítás teljesen kikapcsolja a \"clipped redraw\"-kat a GNOME shell-" -"ben, és jelentősen befolyásolhatja a teljesítményt, de teljesen kijavítja a " -"homályosító hatást." +"ben, jelentősen befolyásolhatja a teljesítményt, de cserébe teljesen " +"kijavítja a homályosítás hibáit." #: general.ui:151 msgid "Debug" -msgstr "Debug" +msgstr "Hibakeresés" #: general.ui:152 msgid "" @@ -295,7 +295,7 @@ msgstr "Alaphelyzetbe állítás" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "Visszafordíthatatlanul visszaállítja a Blur my Shell beállításait." +msgstr "Véglegesen visszaállítja a Blur my Shell-t alap beállításaira." #: general.ui:187 msgid "Reset" @@ -323,7 +323,7 @@ msgstr "Projekt oldal" #: menu.ui:10 msgid "Report a Bug" -msgstr "Bug jelentése" +msgstr "Hiba bejelentése" #: menu.ui:14 msgid "License" @@ -331,7 +331,7 @@ msgstr "Licenc" #: menu.ui:18 msgid "Donate" -msgstr "Adományozás" +msgstr "Támogatás" #: other.ui:5 msgid "Other" @@ -343,25 +343,23 @@ msgstr "Záróképernyő homályosítása" #: other.ui:11 msgid "Change the blur of the lockscreen to use this extension's preferences." -msgstr "" -"Megváltoztatja a záróképernyő homályosítását, hogy a kiegészítés " -"beállításait használja." +msgstr "A záróképernyő beállításait a Blur my Shell-ben megadottakra állítja." #: other.ui:28 msgid "Screenshot blur" -msgstr "Képernyőkép homályosítása" +msgstr "Képernyőkép ablakválasztójának homályosítása" #: other.ui:29 msgid "Add blur to the background of the window selector in the screenshot UI." -msgstr "Homályosítja az ablak választó hátterét a képernyőkép UI-n." +msgstr "Homályosítja az ablakválasztó hátterét." #: other.ui:46 msgid "Window list extension blur" -msgstr "Window list kiegészítés homályosítása" +msgstr "Window list kiegészítő homályosítása" #: other.ui:47 msgid "Make the window-list extension blurred, if it is used." -msgstr "A Window-list kiegészítést homályosítja, ha használatban van." +msgstr "A Window-list kiegészítőt homályosítja, ha használatban van." #: overview.ui:5 msgid "Overview" @@ -384,25 +382,24 @@ msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" -"Áttetsző / részben áttetsző stílus a dash-hez, kereséshez / eredményekhez, " -"és az alkalmazás mappákhoz." +"Részben áttetsző stílus a dokkhoz, kereséshez és annak eredményeihez, ezen " +"kívül az alkalmazás mappákhoz." #: overview.ui:44 msgid "Application folder blur" -msgstr "Alkalmazás mappa homályosítása" +msgstr "Alkalmazásmappa homályosítása" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "Elhomályosítja az alkalmazás mappa párbeszéd ablakának hátterét." +msgstr "Elhomályosítja az alkalmazásmappa párbeszédablakának hátterét." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "Alkalmazás mappa párbeszéd ablak stílusa" +msgstr "Alkalmazásmappa párbeszédablak stílusa" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." -msgstr "" -"Áttetsző / részben áttetsző stílus az alkalmazás mappa párbeszéd ablakához." +msgstr "Részben áttetsző stílus az alkalmazásmappa párbeszédablakához." #: overview.ui:79 overview.ui:88 msgid "Do not style" @@ -462,29 +459,29 @@ msgstr "Kompatibilitás" #: panel.ui:98 msgid "Various options to provide compatibility with other extensions." msgstr "" -"Különböző beállítások más kiegészítések kompatibilitásának biztosításához." +"Különböző beállítások más kiegészítők kompatibilitásának biztosításához." #: panel.ui:103 msgid "Hidetopbar extension" -msgstr "Hidetopbar kiegészítés" +msgstr "Hidetopbar kiegészítő" #: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" -"Nem kapcsolja ki a homályosítást áttekintés nézetben. Statikus " +"Nem kapcsolja ki a homályosítást áttekintés nézetben. Ez statikus " "homályosítással a legjobb." #: window-row.ui:4 msgid "Window Name" -msgstr "Ablak Név" +msgstr "Ablak neve" #: window-row.ui:8 msgid "Select window" -msgstr "Válasszon ablakot" +msgstr "Válassz ablakot" #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "Ablak választása, vagy kiválasztás az osztály alapján." +msgstr "Válaszd ki az ablakot, vagy találd meg az osztályneve alapján." #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality, is " From fd3376045d4c5c4905fb60879898fd62a4d37cea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sun, 25 Jun 2023 21:20:12 +0200 Subject: [PATCH 115/212] Fix a bug where the menu is not loaded in preferences --- src/preferences/menu.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/preferences/menu.js b/src/preferences/menu.js index a319a2d0..53473b87 100644 --- a/src/preferences/menu.js +++ b/src/preferences/menu.js @@ -12,7 +12,11 @@ function addMenu(window) { builder.add_from_file(`${Me.path}/ui/menu.ui`); let menu_util = builder.get_object('menu_util'); window.add(menu_util); - addMenuToHeader(window, builder); + try { + addMenuToHeader(window, builder); + } catch (error) { + // could not add menu... not so bad + } window.remove(menu_util); } From 9b81529b8f7f58ec7f7a09ee8ef1a1906c92ce83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sun, 25 Jun 2023 21:20:28 +0200 Subject: [PATCH 116/212] Add a way to disable original panel blur with dtp --- resources/ui/panel.ui | 14 ++++++++++++++ ...nome.shell.extensions.blur-my-shell.gschema.xml | 10 ++++++++++ src/components/panel.js | 2 ++ src/conveniences/keys.js | 5 +++++ src/extension.js | 9 +++++++++ src/preferences/panel.js | 7 ++++++- 6 files changed, 46 insertions(+), 1 deletion(-) diff --git a/resources/ui/panel.ui b/resources/ui/panel.ui index c0dffcaa..41d9cd14 100644 --- a/resources/ui/panel.ui +++ b/resources/ui/panel.ui @@ -112,6 +112,20 @@ Recommended unless you want to customize your GNOME theme. + + + + Blur original panel with Dash to Panel + Enables the blurring of the original panel with Dash to Panel, if selected in the extension's options. + dtp_blur_original_panel + + + + center + + + + diff --git a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml index ace961ab..254af245 100644 --- a/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml +++ b/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml @@ -52,6 +52,7 @@ + @@ -454,4 +455,13 @@ Boolean, whether to try compatibility with hidetopbar@mathieu.bidon.ca or not + + + + + + true + Boolean, whether to blur the original panel (if option selected) with Dash to Panel + + \ No newline at end of file diff --git a/src/components/panel.js b/src/components/panel.js index 8c7dc127..408e532e 100644 --- a/src/components/panel.js +++ b/src/components/panel.js @@ -114,6 +114,8 @@ var PanelBlur = class PanelBlur { !global.dashToPanel.panels .map(p => p.panel) .includes(Main.panel) + && + this.prefs.dash_to_panel.BLUR_ORIGINAL_PANEL ) this.maybe_blur_panel(Main.panel); }; diff --git a/src/conveniences/keys.js b/src/conveniences/keys.js index beaa8e91..775479da 100644 --- a/src/conveniences/keys.js +++ b/src/conveniences/keys.js @@ -128,4 +128,9 @@ var Keys = [ { type: Type.B, name: "compatibility" }, ] }, + { + component: "dash-to-panel", schemas: [ + { type: Type.B, name: "blur-original-panel" }, + ] + }, ]; \ No newline at end of file diff --git a/src/extension.js b/src/extension.js index d8de89e9..068fbd32 100644 --- a/src/extension.js +++ b/src/extension.js @@ -471,6 +471,15 @@ class Extension { }); + // ---------- DASH TO PANEL ---------- + + // toggled on/off + this._prefs.dash_to_panel.BLUR_ORIGINAL_PANEL_changed(() => { + if (this._prefs.panel.BLUR) + this._panel_blur.reset(); + }); + + // ---------- SCREENSHOT ---------- // toggled on/off diff --git a/src/preferences/panel.js b/src/preferences/panel.js index e127febf..9c949ef7 100644 --- a/src/preferences/panel.js +++ b/src/preferences/panel.js @@ -17,7 +17,8 @@ var Panel = GObject.registerClass({ 'override_background', 'style_panel', 'override_background_dynamically', - 'hidetopbar_compatibility' + 'hidetopbar_compatibility', + 'dtp_blur_original_panel' ], }, class Panel extends Adw.PreferencesPage { constructor(preferences) { @@ -58,5 +59,9 @@ var Panel = GObject.registerClass({ 'compatibility', this._hidetopbar_compatibility, 'state', Gio.SettingsBindFlags.DEFAULT ); + this.preferences.dash_to_panel.settings.bind( + 'blur-original-panel', this._dtp_blur_original_panel, 'state', + Gio.SettingsBindFlags.DEFAULT + ); } }); \ No newline at end of file From 893d5edfe4d859033335c919445982cbd34cee66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sun, 25 Jun 2023 21:27:06 +0200 Subject: [PATCH 117/212] Update to version 47 --- metadata.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/metadata.json b/metadata.json index 5047dab2..93adea2a 100644 --- a/metadata.json +++ b/metadata.json @@ -12,5 +12,9 @@ "original-authors": [ "me@aunetx.dev" ], - "version": 46 + "donations": { + "github": "aunetx", + "kofi": "aunetx" + }, + "version": 47 } \ No newline at end of file From e9a131dd05b31589d0f404427e60856685f939a1 Mon Sep 17 00:00:00 2001 From: Konstantinos Polychronidis Date: Mon, 26 Jun 2023 11:41:24 +0200 Subject: [PATCH 118/212] Added translation using Weblate (Greek) --- po/el.po | 436 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 436 insertions(+) create mode 100644 po/el.po diff --git a/po/el.po b/po/el.po new file mode 100644 index 00000000..6766e922 --- /dev/null +++ b/po/el.po @@ -0,0 +1,436 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the blur-my-shell@aunetx package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: blur-my-shell@aunetx\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-02 02:53+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications.ui:5 +msgid "Applications" +msgstr "" + +#: applications.ui:10 +msgid "Applications blur (beta)" +msgstr "" + +#: applications.ui:11 +msgid "" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" +" " +msgstr "" + +#: applications.ui:28 +msgid "Opacity" +msgstr "" + +#: applications.ui:29 +msgid "" +"The opacity of the window on top of the blur effect, a higher value will be " +"more legible." +msgstr "" + +#: applications.ui:51 +msgid "Blur on overview" +msgstr "" + +#: applications.ui:52 +msgid "" +"Forces the blur to be properly shown on all workspaces on overview.\n" +"This may cause some latency or performance issues." +msgstr "" + +#: applications.ui:67 +msgid "Enable all by default" +msgstr "" + +#: applications.ui:68 +msgid "" +"Adds blur behind all windows by default.\n" +"Not recommended because of performance and stability issues." +msgstr "" + +#: applications.ui:85 +msgid "Whitelist" +msgstr "" + +#: applications.ui:86 +msgid "A list of windows to blur." +msgstr "" + +#: applications.ui:104 applications.ui:141 +msgid "Add Window" +msgstr "" + +#: applications.ui:122 +msgid "Blacklist" +msgstr "" + +#: applications.ui:123 +msgid "A list of windows not to blur." +msgstr "" + +#: customize-row.ui:4 +msgid "Customize properties" +msgstr "" + +#: customize-row.ui:5 +msgid "" +"Uses customized blur properties, instead of the ones set in the General page." +msgstr "" + +#: customize-row.ui:10 general.ui:15 +msgid "Sigma" +msgstr "" + +#: customize-row.ui:11 general.ui:16 +msgid "The intensity of the blur." +msgstr "" + +#: customize-row.ui:31 general.ui:35 +msgid "Brightness" +msgstr "" + +#: customize-row.ui:32 general.ui:36 +msgid "" +"The brightness of the blur effect, a high value might make the text harder " +"to read." +msgstr "" + +#: customize-row.ui:52 general.ui:55 +msgid "Color" +msgstr "" + +#: customize-row.ui:53 general.ui:56 +msgid "" +"Changes the color of the blur. The opacity of the color controls how much it " +"is blended into the blur effect." +msgstr "" + +#: customize-row.ui:71 general.ui:73 +msgid "Noise amount" +msgstr "" + +#: customize-row.ui:72 general.ui:74 +msgid "" +"The amount of noise to add to the blur effect, useful on low-contrast " +"screens or for aesthetic purpose." +msgstr "" + +#: customize-row.ui:92 general.ui:94 +msgid "Noise lightness" +msgstr "" + +#: customize-row.ui:93 general.ui:95 +msgid "The lightness of the noise added to the blur effect." +msgstr "" + +#: customize-row.ui:113 +msgid "Notice" +msgstr "" + +#: customize-row.ui:114 +msgid "" +"Noise and color can't be activated on dynamically blurred components, such " +"as this one." +msgstr "" + +#: dash.ui:5 +msgid "Dash" +msgstr "" + +#: dash.ui:10 +msgid "Dash to Dock blur" +msgstr "" + +#: dash.ui:11 +msgid "Blur the background of the Dash to Dock extension, if it is used." +msgstr "" + +#: dash.ui:26 panel.ui:56 +msgid "Override background" +msgstr "" + +#: dash.ui:27 +msgid "" +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." +msgstr "" + +#: dash.ui:50 panel.ui:41 +msgid "Disable in overview" +msgstr "" + +#: dash.ui:51 +msgid "Disables the blur from Dash to Dock when entering the overview." +msgstr "" + +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +msgid "Light" +msgstr "" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +msgid "Dark" +msgstr "" + +#: general.ui:5 +msgid "General" +msgstr "" + +#: general.ui:10 +msgid "Blur preferences" +msgstr "" + +#: general.ui:11 +msgid "Global blur preferences, used by all components by default." +msgstr "" + +#: general.ui:117 +msgid "Performance" +msgstr "" + +#: general.ui:118 +msgid "Various options to tweak the performance." +msgstr "" + +#: general.ui:122 +msgid "Color and noise effects" +msgstr "" + +#: general.ui:123 +msgid "" +"Globally disables noise and color effects which may improve performance on " +"low-end systems." +msgstr "" + +#: general.ui:135 +msgid "Hack level" +msgstr "" + +#: general.ui:136 +msgid "" +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." +msgstr "" + +#: general.ui:151 +msgid "Debug" +msgstr "" + +#: general.ui:152 +msgid "" +"Makes the extension verbose in logs, activate when you need to report an " +"issue." +msgstr "" + +#: general.ui:167 +msgid "Reset preferences" +msgstr "" + +#: general.ui:168 +msgid "Resets preferences of Blur my Shell irreversibly." +msgstr "" + +#: general.ui:187 +msgid "Reset" +msgstr "" + +#: general.ui:228 +msgid "High performances" +msgstr "" + +#: general.ui:229 +msgid "Default" +msgstr "" + +#: general.ui:230 +msgid "High quality" +msgstr "" + +#: general.ui:231 +msgid "No artifact" +msgstr "" + +#: menu.ui:6 +msgid "Project page" +msgstr "" + +#: menu.ui:10 +msgid "Report a Bug" +msgstr "" + +#: menu.ui:14 +msgid "License" +msgstr "" + +#: menu.ui:18 +msgid "Donate" +msgstr "" + +#: other.ui:5 +msgid "Other" +msgstr "" + +#: other.ui:10 +msgid "Lockscreen blur" +msgstr "" + +#: other.ui:11 +msgid "Change the blur of the lockscreen to use this extension's preferences." +msgstr "" + +#: other.ui:28 +msgid "Screenshot blur" +msgstr "" + +#: other.ui:29 +msgid "Add blur to the background of the window selector in the screenshot UI." +msgstr "" + +#: other.ui:46 +msgid "Window list extension blur" +msgstr "" + +#: other.ui:47 +msgid "Make the window-list extension blurred, if it is used." +msgstr "" + +#: overview.ui:5 +msgid "Overview" +msgstr "" + +#: overview.ui:10 +msgid "Background blur" +msgstr "" + +#: overview.ui:11 +msgid "Add blur to the overview background, using the wallpaper picture." +msgstr "" + +#: overview.ui:26 +msgid "Overview components style" +msgstr "" + +#: overview.ui:27 +msgid "" +"The semi-transparent style for the dash, search entry/results, and " +"application folders." +msgstr "" + +#: overview.ui:44 +msgid "Application folder blur" +msgstr "" + +#: overview.ui:45 +msgid "Makes the background of application folder dialogs blurred." +msgstr "" + +#: overview.ui:60 +msgid "Application folder dialogs style" +msgstr "" + +#: overview.ui:61 +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" + +#: overview.ui:79 overview.ui:88 +msgid "Do not style" +msgstr "" + +#: panel.ui:5 +msgid "Panel" +msgstr "" + +#: panel.ui:10 +msgid "Panel blur" +msgstr "" + +#: panel.ui:11 +msgid "Blur the top panel using the background image." +msgstr "" + +#: panel.ui:26 +msgid "Static blur" +msgstr "" + +#: panel.ui:27 +msgid "Uses a static blurred image, more performant and stable." +msgstr "" + +#: panel.ui:42 +msgid "Disables the blur from the panel when entering the overview." +msgstr "" + +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" + +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 +msgid "Disable when a window is near" +msgstr "" + +#: panel.ui:80 +msgid "Disables the transparency of the panel when a window is near it." +msgstr "" + +#: panel.ui:97 +msgid "Compatibility" +msgstr "" + +#: panel.ui:98 +msgid "Various options to provide compatibility with other extensions." +msgstr "" + +#: panel.ui:103 +msgid "Hidetopbar extension" +msgstr "" + +#: panel.ui:104 +msgid "Does not disable the blur in overview, best used with static blur." +msgstr "" + +#: window-row.ui:4 +msgid "Window Name" +msgstr "" + +#: window-row.ui:8 +msgid "Select window" +msgstr "" + +#: window-row.ui:9 +msgid "Pick a window or select it by its classname." +msgstr "" From d1770bf4ed5dcd9ed191fc1370599573b59f5d09 Mon Sep 17 00:00:00 2001 From: Konstantinos Polychronidis Date: Mon, 26 Jun 2023 11:15:29 +0000 Subject: [PATCH 119/212] Translated using Weblate (Swedish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/sv/ --- po/sv.po | 178 +++++++++++++++++++++++++++++-------------------------- 1 file changed, 95 insertions(+), 83 deletions(-) diff --git a/po/sv.po b/po/sv.po index 9e291ed1..0899c37a 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-03-29 01:43+0000\n" -"Last-Translator: \"Artur O.\" \n" +"PO-Revision-Date: 2023-06-27 11:53+0000\n" +"Last-Translator: Konstantinos Polychronidis \n" "Language-Team: Swedish \n" "Language: sv\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.17-dev\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" @@ -25,7 +25,7 @@ msgstr "Applikationer" #: applications.ui:10 msgid "Applications blur (beta)" -msgstr "Applikation oskärpa (beta)" +msgstr "Oskärpa för program (beta)" #: applications.ui:11 msgid "" @@ -36,8 +36,8 @@ msgid "" msgstr "" "Lägger oskärpa till applikationer. Detta är fortfarande beta funktionalitet." "\n" -"För bästa resultat, se till att välja \"Ingen artefakt\" under \"Generella " -"inställningar → Hack nivå\"\n" +"För bästa resultat, se till att välja \"Ingen artefakt\" under \"Allmänt → " +"Hack nivå\".\n" " " #: applications.ui:28 @@ -54,19 +54,17 @@ msgstr "" #: applications.ui:51 msgid "Blur on overview" -msgstr "Oskärpa på översikt" +msgstr "Oskärpa på översiktsläget" #: applications.ui:52 -#, fuzzy msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" -"Tvingar oskärpan att visas korrekt på alla arbetsytor på översikt.\n" +"Tvingar oskärpan att visas korrekt på alla arbetsytor på översiktsläget.\n" "Detta kan orsaka vissa latens- eller prestandaproblem." #: applications.ui:67 -#, fuzzy msgid "Enable all by default" msgstr "Aktivera alla som standard" @@ -79,37 +77,30 @@ msgstr "" "Rekommenderas inte på grund av prestanda och stabilitetsproblem." #: applications.ui:85 -#, fuzzy msgid "Whitelist" msgstr "Vitlista" #: applications.ui:86 -#, fuzzy msgid "A list of windows to blur." msgstr "En lista över fönster som ska suddas ut." #: applications.ui:104 applications.ui:141 -#, fuzzy msgid "Add Window" msgstr "Lägg till fönster" #: applications.ui:122 -#, fuzzy msgid "Blacklist" msgstr "Svartlista" #: applications.ui:123 -#, fuzzy msgid "A list of windows not to blur." msgstr "En lista över fönster som inte ska suddas ut." #: customize-row.ui:4 -#, fuzzy msgid "Customize properties" msgstr "Anpassa egenskaper" #: customize-row.ui:5 -#, fuzzy msgid "" "Uses customized blur properties, instead of the ones set in the General page." msgstr "" @@ -117,42 +108,36 @@ msgstr "" "sidan Allmänt." #: customize-row.ui:10 general.ui:15 -#, fuzzy msgid "Sigma" msgstr "Sigma" #: customize-row.ui:11 general.ui:16 -#, fuzzy msgid "The intensity of the blur." msgstr "Oskärpans intensitet." #: customize-row.ui:31 general.ui:35 -#, fuzzy msgid "Brightness" msgstr "Ljusstyrka" #: customize-row.ui:32 general.ui:36 -#, fuzzy msgid "" "The brightness of the blur effect, a high value might make the text harder " "to read." msgstr "" -"Ljusstyrkan på oskärpa effekten, ett högt värde kan göra texten svårare att " +"Ljusstyrkan på oskärpeeffekten, ett högt värde kan göra texten svårare att " "läsa." #: customize-row.ui:52 general.ui:55 -#, fuzzy msgid "Color" msgstr "Färg" #: customize-row.ui:53 general.ui:56 -#, fuzzy msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." msgstr "" "Ändrar färgen på oskärpan. Färgens opacitet styr hur mycket den blandas in i " -"oskärpa effekten." +"oskärpeeffekten." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" @@ -163,7 +148,7 @@ msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." msgstr "" -"Mängden brus som ska läggas till i oskärpa effekten, användbart på skärmar " +"Mängden brus som ska läggas till i oskärpeeffekten, användbart på skärmar " "med låg kontrast eller för estetiska ändamål." #: customize-row.ui:92 general.ui:94 @@ -172,7 +157,7 @@ msgstr "Brus-ljustyrka" #: customize-row.ui:93 general.ui:95 msgid "The lightness of the noise added to the blur effect." -msgstr "Brusets ljushet till oskärpa effekten." +msgstr "Brusets ljushet till oskärpeeffekten." #: customize-row.ui:113 msgid "Notice" @@ -183,90 +168,96 @@ msgid "" "Noise and color can't be activated on dynamically blurred components, such " "as this one." msgstr "" +"Brus och färg kan inte aktiveras på dynamiskt suddade komponenter, som denna." #: dash.ui:5 msgid "Dash" -msgstr "" +msgstr "Dash" #: dash.ui:10 msgid "Dash to Dock blur" -msgstr "" +msgstr "Dash to Dock oskärpa" #: dash.ui:11 msgid "Blur the background of the Dash to Dock extension, if it is used." -msgstr "" +msgstr "Sudda bakgrunden på Dash to Dock-tilläget om den används." #: dash.ui:26 panel.ui:56 msgid "Override background" -msgstr "" +msgstr "Åsidosätt bakgrund" #: dash.ui:27 msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Gör bakgrunden antingen genomskinlig eller halvgenomskinlig. Inaktivera " +"detta för att istället använda Dash to Dock-inställningarna." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Bakgrundsstil" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "Den transparenta/semi-transparenta stilen för dock-bakgrunden." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" -msgstr "" +msgstr "Inaktivera i översiktsläget" #: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." -msgstr "" +msgstr "Inaktiverar oskärpan från Dash to Dock när du går in i översiktsläget." #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "Transparent" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" -msgstr "" +msgstr "Ljust" #: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 msgid "Dark" -msgstr "" +msgstr "Mörkt" #: general.ui:5 msgid "General" -msgstr "" +msgstr "Allmänt" #: general.ui:10 msgid "Blur preferences" -msgstr "" +msgstr "Oskärpa-inställningar" #: general.ui:11 msgid "Global blur preferences, used by all components by default." msgstr "" +"Globala oskärpa-inställningar, används som standard av alla komponenter." #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Prestanda" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Olika alternativ för att justera prestandan." #: general.ui:122 msgid "Color and noise effects" -msgstr "" +msgstr "Färg- och bruseffekter" #: general.ui:123 msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"Inaktiverar globalt brus- och färg-effekter, vilket kan förbättra prestandan " +"på system med låg kapacitet." #: general.ui:135 msgid "Hack level" -msgstr "" +msgstr "Hack nivå" #: general.ui:136 msgid "" @@ -276,154 +267,170 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Ändrar beteendet för den dynamiska oskärpeeffekten.\n" +"Standardvärdet rekommenderas starkt om du inte använder oskärpa för program, " +"i vilket fall \"Ingen artifact\" skulle vara bättre.\n" +"Denna inställning kommer att helt inaktivera clipped redraws i GNOME shell " +"och kan ha en betydande inverkan på prestanda, men kommer helt att åtgärda " +"oskärpeeffekten." #: general.ui:151 msgid "Debug" -msgstr "" +msgstr "Felsökning" #: general.ui:152 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." msgstr "" +"Gör tillägget detaljerat i loggarna, aktivera när du behöver rapportera ett " +"problem." #: general.ui:167 msgid "Reset preferences" -msgstr "" +msgstr "Återställ inställningar" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." msgstr "" +"Återställer inställningarna för Blur my Shell på ett oåterkalleligt sätt." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Återställa" #: general.ui:228 msgid "High performances" -msgstr "" +msgstr "Hög prestanda" #: general.ui:229 msgid "Default" -msgstr "" +msgstr "Standard" #: general.ui:230 msgid "High quality" -msgstr "" +msgstr "Hög kvalitet" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Ingen artefakt" #: menu.ui:6 msgid "Project page" -msgstr "" +msgstr "Projektsida" #: menu.ui:10 msgid "Report a Bug" -msgstr "" +msgstr "Rapportera ett fel" #: menu.ui:14 msgid "License" -msgstr "" +msgstr "Licens" #: menu.ui:18 msgid "Donate" -msgstr "" +msgstr "Donera" #: other.ui:5 msgid "Other" -msgstr "" +msgstr "Övrigt" #: other.ui:10 msgid "Lockscreen blur" -msgstr "" +msgstr "Oskärpa på låsskärmen" #: other.ui:11 msgid "Change the blur of the lockscreen to use this extension's preferences." msgstr "" +"Ändra oskärpan på låsskärmen så att den använder denna tilläggsinställning." #: other.ui:28 msgid "Screenshot blur" -msgstr "" +msgstr "Screenshot-oskärpa" #: other.ui:29 msgid "Add blur to the background of the window selector in the screenshot UI." msgstr "" +"Lägg till oskärpa på bakgrunden för inställningsfönstret i " +"skärmdumpgränssnittet." #: other.ui:46 msgid "Window list extension blur" -msgstr "" +msgstr "Oskärpa för \"Window list\"-tilläget" #: other.ui:47 msgid "Make the window-list extension blurred, if it is used." -msgstr "" +msgstr "Gör \"window-list\"-tilläget oskarpt om det används." #: overview.ui:5 msgid "Overview" -msgstr "" +msgstr "Översiktsläge" #: overview.ui:10 msgid "Background blur" -msgstr "" +msgstr "bakgrundsoskärpa" #: overview.ui:11 msgid "Add blur to the overview background, using the wallpaper picture." msgstr "" +"Lägg till oskärpa i översiktlägets bakgrund genom att använda " +"bakgrundsbilden." #: overview.ui:26 msgid "Overview components style" -msgstr "" +msgstr "Stil på översiktlägets komponent" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" +"Genomskicklighetens stil för dash, sökning, sökresultat och " +"applikationsmappar." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Oskärpa för applikationsmappar" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "Gör bakgrunden i dialoger för applikationsmappar suddig." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Stil för dialoger för applikationsmappar" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." -msgstr "" +msgstr "Halvtransparensens stil för dialoger för applikationsmappar." #: overview.ui:79 overview.ui:88 msgid "Do not style" -msgstr "" +msgstr "Styla inte" #: panel.ui:5 msgid "Panel" -msgstr "" +msgstr "Panel" #: panel.ui:10 msgid "Panel blur" -msgstr "" +msgstr "Paneloskärpa" #: panel.ui:11 msgid "Blur the top panel using the background image." -msgstr "" +msgstr "Gör den övre panelen suddig genom att använda bakgrundsbilden." #: panel.ui:26 msgid "Static blur" -msgstr "" +msgstr "Statisk oskärpa" #: panel.ui:27 msgid "Uses a static blurred image, more performant and stable." -msgstr "" +msgstr "Använder en statisk suddig bild, mer presterande och stabil." #: panel.ui:42 msgid "Disables the blur from the panel when entering the overview." -msgstr "" +msgstr "Inaktiverar oskärpa från panelen när man kommer in till översiktsläget." #: panel.ui:57 msgid "" @@ -431,43 +438,48 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Åsidosätt panelens bakgrund för att använda en transparent eller " +"halvtransparent sådan.\n" +"Rekommenderas om man inte vill anpassa GNOME-temat." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "Transparensens/halvtransparensens stil för panelbakgrunden." #: panel.ui:79 msgid "Disable when a window is near" -msgstr "" +msgstr "Inaktivera när ett fönster är nära" #: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "Inaktiverar genomskinligheten för panelen när ett fönster är nära den." #: panel.ui:97 msgid "Compatibility" -msgstr "" +msgstr "Kompatibilitet" #: panel.ui:98 msgid "Various options to provide compatibility with other extensions." -msgstr "" +msgstr "Olika alternativ för kompatibilitet med andra tillägg." #: panel.ui:103 msgid "Hidetopbar extension" -msgstr "" +msgstr "Hidetopbar-tillägg" #: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" +"Inaktiverar inte oskärpan i översiktsläget, fungerar bäst med statisk " +"oskärpa." #: window-row.ui:4 msgid "Window Name" -msgstr "" +msgstr "Fönsternamn" #: window-row.ui:8 msgid "Select window" -msgstr "" +msgstr "Välj fönster" #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" +msgstr "Välj ett fönster eller välj det efter klassnamnet." From 9478f42bd2839f701334ca1a826f1e8436dd4947 Mon Sep 17 00:00:00 2001 From: Konstantinos Polychronidis Date: Mon, 26 Jun 2023 09:41:56 +0000 Subject: [PATCH 120/212] Translated using Weblate (Greek) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/el/ --- po/el.po | 210 +++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 136 insertions(+), 74 deletions(-) diff --git a/po/el.po b/po/el.po index 6766e922..7c40b481 100644 --- a/po/el.po +++ b/po/el.po @@ -8,21 +8,24 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-06-27 11:53+0000\n" +"Last-Translator: Konstantinos Polychronidis \n" +"Language-Team: Greek \n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" -msgstr "" +msgstr "Εφαρμογές" #: applications.ui:10 msgid "Applications blur (beta)" -msgstr "" +msgstr "Θόλωμα εφαρμογών (beta)" #: applications.ui:11 msgid "" @@ -31,205 +34,236 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Προσθέτει θόλωμα στις εφαρμογές. Αυτή η λειτουργία είναι ακόμα σε " +"δοκιμαστικό στάδιο (beta).\n" +"Για να έχετε τα καλύτερα δυνατά αποτελέσματα, επιλέξτε το \"Χωρίς artifact\" " +"στην προτίμηση \"Γενικά → Hack level\".\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Αδιαφάνεια" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"Η αδιαφάνεια του παραθύρου επιπλέον του το εφέ θολώματος, μεγαλύτερη τιμή θα " +"καθιστά το παράθυρο πιο αναγνώσιμο." #: applications.ui:51 msgid "Blur on overview" -msgstr "" +msgstr "Θόλωμα κατά την επισκόπηση" #: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Επιβάλλει τη σωστή εμφάνιση του θολώματος σε όλους τους χώρους εργασίας κατά " +"τη λειτουργίας επισκόπησης.\n" +"Αυτό μπορεί να προκαλέσει κάποια καθυστέρηση ή προβλήματα απόδοσης." #: applications.ui:67 msgid "Enable all by default" -msgstr "" +msgstr "Ενεργοποίηση όλων από προεπιλογή" #: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Προσθέτει θόλωμα πίσω από όλα τα παράθυρα από προεπιλογή.\n" +"Δεν συνιστάται λόγω πιθανών προβλημάτων απόδοσης και σταθερότητας." #: applications.ui:85 msgid "Whitelist" -msgstr "" +msgstr "Λευκή λίστα" #: applications.ui:86 msgid "A list of windows to blur." -msgstr "" +msgstr "Μια λίστα παραθύρων που θα θολώνονται." #: applications.ui:104 applications.ui:141 msgid "Add Window" -msgstr "" +msgstr "Προσθήκη παραθύρου" #: applications.ui:122 msgid "Blacklist" -msgstr "" +msgstr "Μαύρη λίστα" #: applications.ui:123 msgid "A list of windows not to blur." -msgstr "" +msgstr "Μια λίστα παραθύρων που δεν θα θολώνονται." #: customize-row.ui:4 msgid "Customize properties" -msgstr "" +msgstr "Προσαρμοσμένες ρυθμίσεις" #: customize-row.ui:5 msgid "" "Uses customized blur properties, instead of the ones set in the General page." msgstr "" +"Χρήση προσαρμοσμένων ρυθμίσεων θαμπώματος, αντί για αυτές που είναι " +"ορισμένες στη σελίδα Γενικά." #: customize-row.ui:10 general.ui:15 msgid "Sigma" -msgstr "" +msgstr "Σίγμα" #: customize-row.ui:11 general.ui:16 msgid "The intensity of the blur." -msgstr "" +msgstr "Ένταση θολώματος." #: customize-row.ui:31 general.ui:35 msgid "Brightness" -msgstr "" +msgstr "Φωτεινότητα" #: customize-row.ui:32 general.ui:36 msgid "" "The brightness of the blur effect, a high value might make the text harder " "to read." msgstr "" +"Η φωτεινότητα του εφέ θολώματος, μια υψηλή τιμή μπορεί να δυσκολέψει την " +"ανάγνωση του κειμένου." #: customize-row.ui:52 general.ui:55 msgid "Color" -msgstr "" +msgstr "Χρώμα" #: customize-row.ui:53 general.ui:56 msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." msgstr "" +"Αλλαγή του χρώματος του θολώματος. Η αδιαφάνεια του χρώματος ελέγχει πόσο " +"αυτό αναμειγνύεται με το εφέ θολώματος." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" -msgstr "" +msgstr "Ποσότητα θορύβου" #: customize-row.ui:72 general.ui:74 msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." msgstr "" +"Η ποσότητα θορύβου που προστίθεται στο εφέ θολώματος, χρήσιμη για οθόνες " +"χαμηλής αντίθεσης ή για αισθητικούς λόγους." #: customize-row.ui:92 general.ui:94 msgid "Noise lightness" -msgstr "" +msgstr "Φωτεινότητα θορύβου" #: customize-row.ui:93 general.ui:95 msgid "The lightness of the noise added to the blur effect." -msgstr "" +msgstr "Η φωτεινότητα του εφέ θορύβου που προστίθεται στο εφέ θολώματος." #: customize-row.ui:113 msgid "Notice" -msgstr "" +msgstr "Προσοχή" #: customize-row.ui:114 msgid "" "Noise and color can't be activated on dynamically blurred components, such " "as this one." msgstr "" +"Ο θόρυβος και το χρώμα δεν μπορούν να ενεργοποιηθούν σε δυναμικά θολωμένα " +"στοιχεία, όπως αυτό." #: dash.ui:5 msgid "Dash" -msgstr "" +msgstr "Dash" #: dash.ui:10 msgid "Dash to Dock blur" -msgstr "" +msgstr "Θάμπωμα Dash to Dock" #: dash.ui:11 msgid "Blur the background of the Dash to Dock extension, if it is used." -msgstr "" +msgstr "Θάμπωμα του φόντου της επέκτασης Dash to Dock, αν χρησιμοποιείται." #: dash.ui:26 panel.ui:56 msgid "Override background" -msgstr "" +msgstr "Αντικατάσταση φόντου" #: dash.ui:27 msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Καθιστά το φόντο είτε διαφανές είτε ημιδιαφανές. Απενεργοποιήστε αυτή την " +"επιλογή για να χρησιμοποιήσετε τις προτιμήσεις του Dash to Dock." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Στυλ φόντου" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." msgstr "" +"Το στυλ διαφάνειας/ημιδιαφάνειας για το φόντο της γραμμής εκκίνησης (dock)." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" -msgstr "" +msgstr "Απενεργοποίηση κατά την επισκόπηση" #: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "" +"Απενεργοποιεί το θόλωμα από το Dash to Dock κατά την εισαγωγή στην " +"επισκόπηση." #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" -msgstr "" +msgstr "Διαφανές" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 msgid "Light" -msgstr "" +msgstr "Φωτεινό" #: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 msgid "Dark" -msgstr "" +msgstr "Σκοτεινό" #: general.ui:5 msgid "General" -msgstr "" +msgstr "Γενικά" #: general.ui:10 msgid "Blur preferences" -msgstr "" +msgstr "Προτιμήσεις θολώματος" #: general.ui:11 msgid "Global blur preferences, used by all components by default." msgstr "" +"Καθολικές προτιμήσεις θολώματος, χρησιμοποιούμενες από όλα τα στοιχεία από " +"προεπιλογή." #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Επίδοση" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Διάφορες επιλογές για βελτίωση της επίδοσης." #: general.ui:122 msgid "Color and noise effects" -msgstr "" +msgstr "Εφέ χρώματος και θορύβου" #: general.ui:123 msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"Απενεργοποιεί καθολικά τα εφέ χρώματος και θορύβου, πράγμα που μπορεί να " +"βελτιώσοει την επίδοση σε πιο αδύναμα συστήματα." #: general.ui:135 msgid "Hack level" -msgstr "" +msgstr "Hack level" #: general.ui:136 msgid "" @@ -239,154 +273,177 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Αλλάζει τη συμπεριφορά του δυναμικού εφέ θολώματος.\n" +"Η τιμή \"Προεπιλογή\" συνιστάται ανεπιφύλακτα εκτός αν χρησιμοποιείτε τη " +"δυνατότητα \"Θόλωμα εφαρμογών\", στην οποία περίπτωση η επιλογή \"Χωρίς " +"artifact\" είναι καλύτερη.\n" +"Αυτή η επιλογή θα απενεργοποιήσει εντελώς τα clipped redraws στο GNOME shell " +"και μπορεί να επηρεάσει σημαντικά την απόδοση, αλλά θα διορθώσει πλήρως το " +"εφέ θολώματος." #: general.ui:151 msgid "Debug" -msgstr "" +msgstr "Εντοπισμός σφαλμάτων" #: general.ui:152 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." msgstr "" +"Καθιστά την επέκταση αναλυτική στα αρχεία καταγραφής, ενεργοποιήστε τo όταν " +"χρειάζεται να αναφέρετε ένα πρόβλημα." #: general.ui:167 msgid "Reset preferences" -msgstr "" +msgstr "Επαναφορά προτιμήσεων" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." msgstr "" +"Επαναφέρει τις προτιμήσεις του Blur my Shell στις προεπιλεγμένες τιμές " +"ανεπανόρθωτα." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Επαναφορά" #: general.ui:228 msgid "High performances" -msgstr "" +msgstr "Υψηλές επιδόσεις" #: general.ui:229 msgid "Default" -msgstr "" +msgstr "Default" #: general.ui:230 msgid "High quality" -msgstr "" +msgstr "Υψηλή ποιότητα" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Χωρίς artifact" #: menu.ui:6 msgid "Project page" -msgstr "" +msgstr "Ιστοσελίδα εφαρμογής" #: menu.ui:10 msgid "Report a Bug" -msgstr "" +msgstr "Αναφορά προβλήματος" #: menu.ui:14 msgid "License" -msgstr "" +msgstr "Άδεια χρήσης" #: menu.ui:18 msgid "Donate" -msgstr "" +msgstr "Δωρεά" #: other.ui:5 msgid "Other" -msgstr "" +msgstr "Άλλο" #: other.ui:10 msgid "Lockscreen blur" -msgstr "" +msgstr "Θόλωμα οθόνης κλειδώματος" #: other.ui:11 msgid "Change the blur of the lockscreen to use this extension's preferences." msgstr "" +"Αλλάζει το θόλωμα της οθόνης κλειδώματος ώστε να χρησιμοποιεί τις " +"προτιμήσεις αυτής της επέκτασης." #: other.ui:28 msgid "Screenshot blur" -msgstr "" +msgstr "Θόλωμα στιγμιότυπου οθόνης" #: other.ui:29 msgid "Add blur to the background of the window selector in the screenshot UI." msgstr "" +"Προσθέτει εφέ θολώματος στο φόντο του παραθύρου επιλογών κατά τη διεπαφή " +"στιγμιοτύπου οθόνης." #: other.ui:46 msgid "Window list extension blur" -msgstr "" +msgstr "Θόλωμα της επέκτασης Window list" #: other.ui:47 msgid "Make the window-list extension blurred, if it is used." -msgstr "" +msgstr "Προσθέτει εφέ θολώματος στην επέκταση window-list, αν χρησιμοποιείται." #: overview.ui:5 msgid "Overview" -msgstr "" +msgstr "Επισκόπηση" #: overview.ui:10 msgid "Background blur" -msgstr "" +msgstr "Θόλωμα φόντου" #: overview.ui:11 msgid "Add blur to the overview background, using the wallpaper picture." msgstr "" +"Προσθέτει θόλωμα στο φόντο της λειτουργίας επισκόπησης, χρησιμοποιώντας την " +"εικόνα φόντου." #: overview.ui:26 msgid "Overview components style" -msgstr "" +msgstr "Στυλ στοιχείων της λειτουργίας επισκόπησης" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" +"Το στυλ ημιδιαφάνειας για τη γραμμή εκκίνησης (dash), την αναζήτηση, τα " +"αποτελέσματα αναζήτησης και τους φακέλους εφαρμογών." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Θόλωμα φακέλων εφαρμογών" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "Προσθέτει εφέ θολώματος στο φόντο των διαλόγων φακέλων εφαρμογών." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Στυλ διαλόγων φακέλων εφαρμογών" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." -msgstr "" +msgstr "Το στυλ ημιδιαφάνειας για τους διάλογους φακέλων εφαρμογών." #: overview.ui:79 overview.ui:88 msgid "Do not style" -msgstr "" +msgstr "Χωρίς διαμόρφωση" #: panel.ui:5 msgid "Panel" -msgstr "" +msgstr "Panel" #: panel.ui:10 msgid "Panel blur" -msgstr "" +msgstr "Θόλωμα του Panel" #: panel.ui:11 msgid "Blur the top panel using the background image." -msgstr "" +msgstr "Θόλωμα του επάνω panel χρησιμοποιώντας την εικόνα φόντου." #: panel.ui:26 msgid "Static blur" -msgstr "" +msgstr "Στατικό θόλωμα" #: panel.ui:27 msgid "Uses a static blurred image, more performant and stable." msgstr "" +"Χρησιμοποιήστε μια στατική θολωμένη εικόνα, για περισσότερη αποδοτικότητα " +"και σταθερότητα." #: panel.ui:42 msgid "Disables the blur from the panel when entering the overview." msgstr "" +"Απενεργοποιεί το θόλωμα από το panel κατά την είσοδο στη λειτουργία " +"επισκόπησησς." #: panel.ui:57 msgid "" @@ -394,43 +451,48 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Αντικαθιστά το φόντο του πάνελ ώστε να χρησιμοποιεί ένα διαφανές ή " +"ημιδιαφανές φόντο.\n" +"Συνιστάται εκτός αν θέλετε να προσαρμόσετε το θέμα του GNOME." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "Το στυλ διαφάνειας/ημιδιαφάνειας για το φόντο του panel." #: panel.ui:79 msgid "Disable when a window is near" -msgstr "" +msgstr "Απενεργοποίηση όταν ένα παράθυρο είναι κοντά" #: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "Απενεργοποιεί τη διαφάνεια του πάνελ όταν ένα παράθυρο είναι κοντά του." #: panel.ui:97 msgid "Compatibility" -msgstr "" +msgstr "Συμβατότητα" #: panel.ui:98 msgid "Various options to provide compatibility with other extensions." -msgstr "" +msgstr "Διάφορες επιλογές που παρέχουν συμβατότητα με άλλες επεκτάσεις." #: panel.ui:103 msgid "Hidetopbar extension" -msgstr "" +msgstr "Επέκταση Hidetopbar" #: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" +"Δεν απενεργοποιεί το θόλωμα στη λειτουργία επισκόπησης, ιδανικό για χρήση με " +"στατικό θόλωμα." #: window-row.ui:4 msgid "Window Name" -msgstr "" +msgstr "Όνομα παραθύρου" #: window-row.ui:8 msgid "Select window" -msgstr "" +msgstr "Επιλογή παραθύρου" #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" +msgstr "Επιλογή παραθύρου άμεσα ή μέσω του όνοματος κλάσης του (classname)." From 3b272d5292b806ddf4468a2de67d4a70e7d8de45 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Thu, 29 Jun 2023 14:17:01 +0000 Subject: [PATCH 121/212] Translated using Weblate (Spanish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/es/ --- po/es.po | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/po/es.po b/po/es.po index 8fc6e66b..94a5b761 100644 --- a/po/es.po +++ b/po/es.po @@ -8,9 +8,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-01-15 13:52+0000\n" -"Last-Translator: Óscar Fernández Díaz \n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" +"Last-Translator: Anonymous \n" "Language-Team: Spanish \n" "Language: es\n" @@ -18,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.15.1-dev\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" @@ -467,8 +466,7 @@ msgstr "Compatibilidad" #: panel.ui:98 msgid "Various options to provide compatibility with other extensions." -msgstr "" -"Varias opciones para proporcionar compatibilidad con otras extensiones." +msgstr "Varias opciones para proporcionar compatibilidad con otras extensiones." #: panel.ui:103 msgid "Hidetopbar extension" From cb1defd38f46d207d0a0bb68c84e9d6a630f27bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93scar=20Fern=C3=A1ndez=20D=C3=ADaz?= Date: Thu, 19 May 2022 05:41:17 +0000 Subject: [PATCH 122/212] Translated using Weblate (Spanish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/es/ --- po/es.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 94a5b761..14f15897 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,8 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Anonymous \n" +"Last-Translator: Óscar Fernández Díaz \n" "Language-Team: Spanish \n" "Language: es\n" From 18428405c881f982dc45a85e5fe4c318b94b9494 Mon Sep 17 00:00:00 2001 From: gallegonovato Date: Fri, 30 Dec 2022 14:53:43 +0000 Subject: [PATCH 123/212] Translated using Weblate (Spanish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/es/ --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 14f15897..c45708a5 100644 --- a/po/es.po +++ b/po/es.po @@ -9,8 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Óscar Fernández Díaz \n" +"Last-Translator: gallegonovato \n" "Language-Team: Spanish \n" "Language: es\n" From 03c26f7a5694285d38cd83e5a001198613f47814 Mon Sep 17 00:00:00 2001 From: val Date: Mon, 3 Oct 2022 17:43:17 +0000 Subject: [PATCH 124/212] Translated using Weblate (French) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/fr/ --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index 635b3c71..69c9329d 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2022-10-04 18:20+0000\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: val \n" "Language-Team: French \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.18.1\n" "X-Poedit-Basepath: ../resources/ui\n" "X-Poedit-SearchPath-0: .\n" From 0f9975b26e97f366be896a40149d72e801858733 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sun, 15 May 2022 21:54:57 +0000 Subject: [PATCH 125/212] Translated using Weblate (French) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/fr/ --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 69c9329d..57d74301 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: val \n" +"Last-Translator: Aurélien Hamy \n" "Language-Team: French \n" "Language: fr\n" From 21332253e84a5af6cddefd312bc7954870745ec3 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Thu, 29 Jun 2023 14:17:04 +0000 Subject: [PATCH 126/212] Translated using Weblate (French) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/fr/ --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 57d74301..3bf0dec8 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Aurélien Hamy \n" +"Last-Translator: Anonymous \n" "Language-Team: French \n" "Language: fr\n" From 493a6fcf5a20d148ffae30dd9a61f1aa02ea8b90 Mon Sep 17 00:00:00 2001 From: "J. Lavoie" Date: Tue, 17 May 2022 20:35:13 +0000 Subject: [PATCH 127/212] Translated using Weblate (French) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/fr/ --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 3bf0dec8..a01b189c 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Anonymous \n" +"Last-Translator: \"J. Lavoie\" \n" "Language-Team: French \n" "Language: fr\n" From a1c6cde24f7b73136667146c90188fb1b79baa32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Allan=20Nordh=C3=B8y?= Date: Mon, 16 May 2022 07:40:21 +0000 Subject: [PATCH 128/212] =?UTF-8?q?Translated=20using=20Weblate=20(Norwegi?= =?UTF-8?q?an=20Bokm=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 46.8% (45 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/nb_NO/ --- po/nb_NO.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/nb_NO.po b/po/nb_NO.po index 8aea4a5a..c27fdc02 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2022-05-20 20:12+0000\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: Allan Nordhøy \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.13-dev\n" +"X-Generator: Weblate 4.18.1\n" "X-Poedit-Basepath: ../resources/ui\n" "X-Poedit-SearchPath-0: .\n" From 424c04cfe9b0fa3311e8e78663e22b5967bdda73 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Thu, 29 Jun 2023 14:17:05 +0000 Subject: [PATCH 129/212] =?UTF-8?q?Translated=20using=20Weblate=20(Norwegi?= =?UTF-8?q?an=20Bokm=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 46.8% (45 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/nb_NO/ --- po/nb_NO.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/nb_NO.po b/po/nb_NO.po index c27fdc02..8d99aafc 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Allan Nordhøy \n" +"Last-Translator: Anonymous \n" "Language-Team: Norwegian Bokmål \n" "Language: nb_NO\n" From 0c69eeea9ddac46b6d1b6d68f8585d468fcdf66f Mon Sep 17 00:00:00 2001 From: Ali Aljishi Date: Sat, 14 Jan 2023 13:05:32 +0000 Subject: [PATCH 130/212] Translated using Weblate (Arabic) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ar/ --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 2c42c040..2a90c26a 100644 --- a/po/ar.po +++ b/po/ar.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-01-15 13:52+0000\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: Ali Aljishi \n" "Language-Team: Arabic \n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.15.1-dev\n" +"X-Generator: Weblate 4.18.1\n" "X-Poedit-Basepath: ../resources/ui\n" "X-Poedit-SearchPath-0: .\n" From 4a4b4c4ef5472849d09a60d98b4d061be61752e8 Mon Sep 17 00:00:00 2001 From: fawaz006 Date: Mon, 16 May 2022 17:39:41 +0000 Subject: [PATCH 131/212] Translated using Weblate (Arabic) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ar/ --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 2a90c26a..08c4c4ad 100644 --- a/po/ar.po +++ b/po/ar.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Ali Aljishi \n" +"Last-Translator: fawaz006 \n" "Language-Team: Arabic \n" "Language: ar\n" From 565d37b844da6555d8af088d40d64157f79fe7b2 Mon Sep 17 00:00:00 2001 From: albanobattistella Date: Sat, 21 May 2022 12:43:21 +0000 Subject: [PATCH 132/212] Translated using Weblate (Italian) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/it/ --- po/it.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/po/it.po b/po/it.po index 32e11ed5..96cc3e55 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2022-10-10 17:59+0000\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: albanobattistella \n" "Language-Team: Italian \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" @@ -34,8 +34,8 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" -"Aggiunge sfocatura alle applicazioni. Questa è ancora una funzionalità " -"beta.\n" +"Aggiunge sfocatura alle applicazioni. Questa è ancora una funzionalità beta." +"\n" "Per ottenere i migliori risultati possibili, assicurati di scegliere " "l'opzione \"Nessun artefatto\" nella preferenza \"Generale → Livello di " "hack\".\n" @@ -75,8 +75,8 @@ msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" -"Aggiunge la sfocatura dietro tutte le finestre per impostazione " -"predefinita.\n" +"Aggiunge la sfocatura dietro tutte le finestre per impostazione predefinita." +"\n" "Sconsigliato per problemi di prestazioni e stabilità." #: applications.ui:85 From 78ffdaa7f9f54deefa841b2926c3b950d7f729c1 Mon Sep 17 00:00:00 2001 From: yangyangdaji <1504305527@qq.com> Date: Thu, 1 Sep 2022 00:59:28 +0000 Subject: [PATCH 133/212] Translated using Weblate (Chinese (Simplified)) Currently translated at 88.5% (85 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/zh_Hans/ --- po/zh_Hans.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/zh_Hans.po b/po/zh_Hans.po index f9944b34..447ac219 100644 --- a/po/zh_Hans.po +++ b/po/zh_Hans.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-01-17 08:53+0000\n" -"Last-Translator: Ujhhgtg \n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" +"Last-Translator: yangyangdaji <1504305527@qq.com>\n" "Language-Team: Chinese (Simplified) \n" "Language: zh_Hans\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.15.1-dev\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" From 469b92855f3bcc70e44d9648966f76c0eb69eb3c Mon Sep 17 00:00:00 2001 From: ofseed Date: Sat, 28 May 2022 07:58:14 +0000 Subject: [PATCH 134/212] Translated using Weblate (Chinese (Simplified)) Currently translated at 88.5% (85 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/zh_Hans/ --- po/zh_Hans.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_Hans.po b/po/zh_Hans.po index 447ac219..8f435593 100644 --- a/po/zh_Hans.po +++ b/po/zh_Hans.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: yangyangdaji <1504305527@qq.com>\n" +"Last-Translator: ofseed \n" "Language-Team: Chinese (Simplified) \n" "Language: zh_Hans\n" From fdbdfd0b06dcbf4f6e35ea0844ffe1be12f5ceeb Mon Sep 17 00:00:00 2001 From: Ujhhgtg Date: Mon, 16 Jan 2023 08:28:28 +0000 Subject: [PATCH 135/212] Translated using Weblate (Chinese (Simplified)) Currently translated at 88.5% (85 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/zh_Hans/ --- po/zh_Hans.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_Hans.po b/po/zh_Hans.po index 8f435593..005b8a1c 100644 --- a/po/zh_Hans.po +++ b/po/zh_Hans.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: ofseed \n" +"Last-Translator: Ujhhgtg \n" "Language-Team: Chinese (Simplified) \n" "Language: zh_Hans\n" From d169edb787210676a7149ea0d50eb9fd3f09b06d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Thu, 29 Jun 2023 14:17:10 +0000 Subject: [PATCH 136/212] Translated using Weblate (Chinese (Simplified)) Currently translated at 88.5% (85 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/zh_Hans/ --- po/zh_Hans.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_Hans.po b/po/zh_Hans.po index 005b8a1c..b777fbfe 100644 --- a/po/zh_Hans.po +++ b/po/zh_Hans.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Ujhhgtg \n" +"Last-Translator: Anonymous \n" "Language-Team: Chinese (Simplified) \n" "Language: zh_Hans\n" From 37e04a81873af51d15c216471d219d0b1e66b21c Mon Sep 17 00:00:00 2001 From: Philip Goto Date: Fri, 30 Dec 2022 14:37:35 +0000 Subject: [PATCH 137/212] Translated using Weblate (Dutch) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/nl/ --- po/nl.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/nl.po b/po/nl.po index 6a8a064a..90268b7e 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2022-12-31 15:51+0000\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: Philip Goto \n" -"Language-Team: Dutch \n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.15.1-dev\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" From 55197e7193eac653cb8ce9449767f211ab6848a5 Mon Sep 17 00:00:00 2001 From: Wouter van der Wal Date: Fri, 27 May 2022 14:47:04 +0000 Subject: [PATCH 138/212] Translated using Weblate (Dutch) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/nl/ --- po/nl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/nl.po b/po/nl.po index 90268b7e..c838cbd6 100644 --- a/po/nl.po +++ b/po/nl.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Philip Goto \n" +"Last-Translator: Wouter van der Wal \n" "Language-Team: Dutch \n" "Language: nl\n" From 0f9b13051b5d1b8bd15c52d2bc61a9bd332fc2d2 Mon Sep 17 00:00:00 2001 From: waddle5 Date: Sun, 11 Sep 2022 09:15:11 +0000 Subject: [PATCH 139/212] Translated using Weblate (German) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/de.po b/po/de.po index 05188ff1..9dc17ea3 100644 --- a/po/de.po +++ b/po/de.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-05-29 10:50+0000\n" -"Last-Translator: Jörn Weigend \n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" +"Last-Translator: waddle5 \n" "Language-Team: German \n" "Language: de\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.18-dev\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" From 1a95c7bd75be11e760797e4b7f0d8e81e628a144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Schr=C3=B6der?= Date: Sat, 18 Mar 2023 20:41:03 +0000 Subject: [PATCH 140/212] Translated using Weblate (German) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 9dc17ea3..410ad08e 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: waddle5 \n" +"Last-Translator: Jan Schröder \n" "Language-Team: German \n" "Language: de\n" From baca0dc097004b8fea17cd9df27297ed32d1b54f Mon Sep 17 00:00:00 2001 From: derarchitekt Date: Fri, 27 May 2022 17:20:50 +0000 Subject: [PATCH 141/212] Translated using Weblate (German) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/de.po b/po/de.po index 410ad08e..8e62261a 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Jan Schröder \n" +"Last-Translator: derarchitekt \n" "Language-Team: German \n" "Language: de\n" @@ -213,8 +213,7 @@ msgstr "In der Übersicht deaktivieren" #: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." -msgstr "" -"Deaktiviert die Unschärfe von Dash to Dock beim Aufrufen der Übersicht." +msgstr "Deaktiviert die Unschärfe von Dash to Dock beim Aufrufen der Übersicht." #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 msgid "Transparent" From a4ff4cce689cafd86453a46e57056e47d325120c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Weigend?= Date: Sun, 28 May 2023 10:43:03 +0000 Subject: [PATCH 142/212] Translated using Weblate (German) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 8e62261a..0ccb27f5 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: derarchitekt \n" +"Last-Translator: Jörn Weigend \n" "Language-Team: German \n" "Language: de\n" From 86269badc657f55c23ea621734ea55e5da052572 Mon Sep 17 00:00:00 2001 From: Davd Klkn Date: Mon, 2 Jan 2023 14:41:18 +0000 Subject: [PATCH 143/212] Translated using Weblate (German) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 0ccb27f5..97f18db5 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Jörn Weigend \n" +"Last-Translator: Davd Klkn \n" "Language-Team: German \n" "Language: de\n" From 3bbc40ff79edd3da8be471c2e2282e3479a65a1e Mon Sep 17 00:00:00 2001 From: Leonhard Date: Mon, 22 Aug 2022 16:12:30 +0000 Subject: [PATCH 144/212] Translated using Weblate (German) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 97f18db5..a5962f3b 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Davd Klkn \n" +"Last-Translator: Leonhard \n" "Language-Team: German \n" "Language: de\n" From f04c4163d5b7e5d30777bc40eb6d5f695aef182a Mon Sep 17 00:00:00 2001 From: arctize Date: Tue, 14 Jun 2022 22:59:36 +0000 Subject: [PATCH 145/212] Translated using Weblate (German) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index a5962f3b..61bd8e65 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Leonhard \n" +"Last-Translator: arctize \n" "Language-Team: German \n" "Language: de\n" From a7ad346ad37adc3cc9f7ad86419bc80c270ebcf7 Mon Sep 17 00:00:00 2001 From: Andus Date: Mon, 6 Mar 2023 16:39:26 +0000 Subject: [PATCH 146/212] Translated using Weblate (Polish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pl/ --- po/pl.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/pl.po b/po/pl.po index a7b8a909..1cfb881e 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-05-26 16:49+0000\n" -"Last-Translator: Karol Lademan \n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" +"Last-Translator: Andus \n" "Language-Team: Polish \n" "Language: pl\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.18-dev\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" From e856870fcbabd233ed54d6bec0a5c2bd2c65d300 Mon Sep 17 00:00:00 2001 From: Karol Lademan Date: Thu, 25 May 2023 16:04:27 +0000 Subject: [PATCH 147/212] Translated using Weblate (Polish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pl/ --- po/pl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/pl.po b/po/pl.po index 1cfb881e..26fa2d63 100644 --- a/po/pl.po +++ b/po/pl.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Andus \n" +"Last-Translator: Karol Lademan \n" "Language-Team: Polish \n" "Language: pl\n" From b312b15c10ed9c47babf11980703c0146707666d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rali=20Boi=C5=84skx?= Date: Sat, 28 May 2022 17:23:15 +0000 Subject: [PATCH 148/212] Translated using Weblate (Polish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pl/ --- po/pl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/pl.po b/po/pl.po index 26fa2d63..cb6696a0 100644 --- a/po/pl.po +++ b/po/pl.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Karol Lademan \n" +"Last-Translator: Rali Boińskx \n" "Language-Team: Polish \n" "Language: pl\n" From 7e7053bb375a0e5e12dc787810ed61f2c7902b20 Mon Sep 17 00:00:00 2001 From: Roland Vincze Date: Thu, 8 Jun 2023 14:39:10 +0000 Subject: [PATCH 149/212] Translated using Weblate (Hungarian) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/hu/ --- po/hu.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hu.po b/po/hu.po index 45461701..28a4bfd5 100644 --- a/po/hu.po +++ b/po/hu.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-06-09 15:50+0000\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: Roland Vincze \n" "Language-Team: Hungarian \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.18-dev\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" From 0ca364249c99d5173a743902ba43a8d5e14179fc Mon Sep 17 00:00:00 2001 From: Bence Turi Date: Thu, 23 Jun 2022 17:27:03 +0000 Subject: [PATCH 150/212] Translated using Weblate (Hungarian) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/hu/ --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 28a4bfd5..fdfbe147 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Roland Vincze \n" +"Last-Translator: Bence Turi \n" "Language-Team: Hungarian \n" "Language: hu\n" From 4224543aad42bdba76eeffb7f847fcfa01bbad8e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Thu, 29 Jun 2023 14:17:17 +0000 Subject: [PATCH 151/212] Translated using Weblate (Hungarian) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/hu/ --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index fdfbe147..debdfa70 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Bence Turi \n" +"Last-Translator: Anonymous \n" "Language-Team: Hungarian \n" "Language: hu\n" From 41e759b0e68eb7882322187dfd62ed889b7ccfe3 Mon Sep 17 00:00:00 2001 From: istvan-derda Date: Mon, 30 May 2022 09:37:49 +0000 Subject: [PATCH 152/212] Translated using Weblate (Hungarian) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/hu/ --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index debdfa70..136e6a48 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Anonymous \n" +"Last-Translator: istvan-derda \n" "Language-Team: Hungarian \n" "Language: hu\n" From 2f749b9c615342c8812c8b564d38b2b3545aa508 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Thu, 29 Jun 2023 14:17:18 +0000 Subject: [PATCH 153/212] Translated using Weblate (Russian) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ru/ --- po/ru.po | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/po/ru.po b/po/ru.po index 31bad7c9..e1cb0195 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,16 +8,17 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2022-10-01 20:58+0300\n" -"Last-Translator: Aleksandr Melman \n" -"Language-Team: \n" -"Language: ru_RU\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Russian \n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" -"X-Generator: Poedit 3.1.1\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" From 041b15eb4b0d82c4df755c26504ea8044113f9c6 Mon Sep 17 00:00:00 2001 From: vikdevelop Date: Mon, 25 Jul 2022 15:16:43 +0000 Subject: [PATCH 154/212] Translated using Weblate (Czech) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/cs/ --- po/cs.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/cs.po b/po/cs.po index 04a017cd..145db0af 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2022-10-10 17:59+0000\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: vikdevelop \n" -"Language-Team: Czech \n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" From 6388b6691c95952f6f191b3a9cb8b5457ff30c64 Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Sat, 20 Aug 2022 13:13:46 +0000 Subject: [PATCH 155/212] Translated using Weblate (Tamil) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ta/ --- po/ta.po | 80 +++++++++++++++++++++++++++++++++----------------------- 1 file changed, 47 insertions(+), 33 deletions(-) diff --git a/po/ta.po b/po/ta.po index 6f5ff320..41571be0 100644 --- a/po/ta.po +++ b/po/ta.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2022-10-06 06:16+0000\n" -"Last-Translator: K.B.Dharun Krishna \n" -"Language-Team: Tamil \n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" +"Last-Translator: \"K.B.Dharun Krishna\" \n" +"Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" @@ -48,8 +48,8 @@ msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" -"மங்கலான விளைவின் மேல் உள்ள சாளரத்தின் ஒளிபுகாநிலை, அதிக மதிப்பு இன்னும் தெளிவாகத் " -"தெரியும்." +"மங்கலான விளைவின் மேல் உள்ள சாளரத்தின் ஒளிபுகாநிலை, அதிக மதிப்பு இன்னும் " +"தெளிவாகத் தெரியும்." #: applications.ui:51 msgid "Blur on overview" @@ -60,7 +60,8 @@ msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" -"மேலோட்டத்தில் அனைத்து பணியிடங்களிலும் மங்கலானது சரியாகக் காட்டப்பட வேண்டும்.\n" +"மேலோட்டத்தில் அனைத்து பணியிடங்களிலும் மங்கலானது சரியாகக் காட்டப்பட வேண்டும்." +"\n" "இது சில தாமதம் அல்லது செயல்திறன் சிக்கல்களை ஏற்படுத்தலாம்." #: applications.ui:67 @@ -73,7 +74,8 @@ msgid "" "Not recommended because of performance and stability issues." msgstr "" "முன்னிருப்பாக எல்லா சாளரங்களுக்கும் பின்னால் மங்கலைச் சேர்க்கிறது.\n" -"செயல்திறன் மற்றும் நிலைப்புத்தன்மை பிரச்சனைகள் காரணமாக பரிந்துரைக்கப்படவில்லை." +"செயல்திறன் மற்றும் நிலைப்புத்தன்மை பிரச்சனைகள் காரணமாக " +"பரிந்துரைக்கப்படவில்லை." #: applications.ui:85 msgid "Whitelist" @@ -103,8 +105,8 @@ msgstr "பண்புகளைத் தனிப்பயனாக்கு msgid "" "Uses customized blur properties, instead of the ones set in the General page." msgstr "" -"பொதுப் பக்கத்தில் அமைக்கப்படுவதற்குப் பதிலாக தனிப்பயனாக்கப்பட்ட மங்கலான பண்புகளைப் " -"பயன்படுத்துகிறது." +"பொதுப் பக்கத்தில் அமைக்கப்படுவதற்குப் பதிலாக தனிப்பயனாக்கப்பட்ட மங்கலான " +"பண்புகளைப் பயன்படுத்துகிறது." #: customize-row.ui:10 general.ui:15 msgid "Sigma" @@ -133,8 +135,8 @@ msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." msgstr "" -"மங்கலின் நிறத்தை மாற்றுகிறது. வண்ணத்தின் ஒளிபுகாநிலை, அது மங்கலான விளைவுடன் எவ்வளவு " -"கலக்கப்படுகிறது என்பதைக் கட்டுப்படுத்துகிறது." +"மங்கலின் நிறத்தை மாற்றுகிறது. வண்ணத்தின் ஒளிபுகாநிலை, அது மங்கலான விளைவுடன் " +"எவ்வளவு கலக்கப்படுகிறது என்பதைக் கட்டுப்படுத்துகிறது." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" @@ -145,8 +147,8 @@ msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." msgstr "" -"மங்கலான விளைவைச் சேர்க்கும் சத்தத்தின் அளவு, குறைந்த-கான்ட்ராஸ்ட் திரைகளில் அல்லது அழகியல் " -"நோக்கத்திற்காக பயனுள்ளதாக இருக்கும்." +"மங்கலான விளைவைச் சேர்க்கும் சத்தத்தின் அளவு, குறைந்த-கான்ட்ராஸ்ட் திரைகளில் " +"அல்லது அழகியல் நோக்கத்திற்காக பயனுள்ளதாக இருக்கும்." #: customize-row.ui:92 general.ui:94 msgid "Noise lightness" @@ -164,7 +166,9 @@ msgstr "அறிவிப்பு" msgid "" "Noise and color can't be activated on dynamically blurred components, such " "as this one." -msgstr "இது போன்ற மாறும் மங்கலான கூறுகளில் இரைச்சல் மற்றும் வண்ணத்தை செயல்படுத்த முடியாது." +msgstr "" +"இது போன்ற மாறும் மங்கலான கூறுகளில் இரைச்சல் மற்றும் வண்ணத்தை செயல்படுத்த " +"முடியாது." #: dash.ui:5 msgid "Dash" @@ -176,7 +180,8 @@ msgstr "டேஷ் டு டாக் மங்கல்" #: dash.ui:11 msgid "Blur the background of the Dash to Dock extension, if it is used." -msgstr "டாஷ் டு டாக் நீட்டிப்பு பயன்படுத்தப்பட்டால் அதன் பின்புலத்தை மங்கலாக்குங்கள்." +msgstr "" +"டாஷ் டு டாக் நீட்டிப்பு பயன்படுத்தப்பட்டால் அதன் பின்புலத்தை மங்கலாக்குங்கள்." #: dash.ui:26 panel.ui:56 msgid "Override background" @@ -187,8 +192,8 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" -"பின்னணியை வெளிப்படையானதாகவோ அல்லது அரை-வெளிப்படையாகவோ மாற்றுகிறது, அதற்குப் பதிலாக " -"டாஷ் டு டாக் விருப்பங்களைப் பயன்படுத்த இதை முடக்கவும்." +"பின்னணியை வெளிப்படையானதாகவோ அல்லது அரை-வெளிப்படையாகவோ மாற்றுகிறது, அதற்குப் " +"பதிலாக டாஷ் டு டாக் விருப்பங்களைப் பயன்படுத்த இதை முடக்கவும்." #: dash.ui:33 panel.ui:64 msgid "Background style" @@ -229,7 +234,8 @@ msgstr "மங்கலான விருப்பத்தேர்வுக #: general.ui:11 msgid "Global blur preferences, used by all components by default." msgstr "" -"உலகளாவிய மங்கலான விருப்பத்தேர்வுகள், இயல்பாகவே அனைத்து கூறுகளாலும் பயன்படுத்தப்படுகின்றன." +"உலகளாவிய மங்கலான விருப்பத்தேர்வுகள், இயல்பாகவே அனைத்து கூறுகளாலும் " +"பயன்படுத்தப்படுகின்றன." #: general.ui:117 msgid "Performance" @@ -248,8 +254,8 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" -"உலகளவில் சத்தம் மற்றும் வண்ண விளைவுகளை முடக்குகிறது, இது குறைந்த-இறுதி அமைப்புகளில் " -"செயல்திறனை மேம்படுத்தலாம்." +"உலகளவில் சத்தம் மற்றும் வண்ண விளைவுகளை முடக்குகிறது, இது குறைந்த-இறுதி " +"அமைப்புகளில் செயல்திறனை மேம்படுத்தலாம்." #: general.ui:135 msgid "Hack level" @@ -266,8 +272,9 @@ msgstr "" "டைனமிக் மங்கலான விளைவின் நடத்தையை மாற்றுகிறது. \n" "நீங்கள் பயன்பாட்டு மங்கலைப் பயன்படுத்தாத வரை, இயல்புநிலை மதிப்பு மிகவும் " "பரிந்துரைக்கப்படுகிறது, இதில் \"கலைப்பொருள் இல்லை\" என்பது சிறந்தது. \n" -"இந்த விருப்பம் GNOME ஷெல்லில் கிளிப் செய்யப்பட்ட ரீடிராக்களை முழுவதுமாக முடக்கும், மேலும் " -"செயல்திறனை கணிசமாக பாதிக்கலாம் ஆனால் மங்கலான விளைவை முழுமையாக சரி செய்யும்." +"இந்த விருப்பம் GNOME ஷெல்லில் கிளிப் செய்யப்பட்ட ரீடிராக்களை முழுவதுமாக " +"முடக்கும், மேலும் செயல்திறனை கணிசமாக பாதிக்கலாம் ஆனால் மங்கலான விளைவை " +"முழுமையாக சரி செய்யும்." #: general.ui:151 msgid "Debug" @@ -278,8 +285,8 @@ msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." msgstr "" -"பதிவுகளில் நீட்டிப்பை வாய்மொழியாக மாற்றுகிறது, சிக்கலைப் புகாரளிக்க வேண்டியிருக்கும் " -"போது செயல்படுத்தவும்." +"பதிவுகளில் நீட்டிப்பை வாய்மொழியாக மாற்றுகிறது, சிக்கலைப் புகாரளிக்க " +"வேண்டியிருக்கும் போது செயல்படுத்தவும்." #: general.ui:167 msgid "Reset preferences" @@ -335,7 +342,8 @@ msgstr "லாக்ஸ்கிரீன் மங்கலானது" #: other.ui:11 msgid "Change the blur of the lockscreen to use this extension's preferences." -msgstr "இந்த நீட்டிப்பு விருப்பங்களைப் பயன்படுத்த பூட்டுத் திரையின் மங்கலை மாற்றவும்." +msgstr "" +"இந்த நீட்டிப்பு விருப்பங்களைப் பயன்படுத்த பூட்டுத் திரையின் மங்கலை மாற்றவும்." #: other.ui:28 msgid "Screenshot blur" @@ -363,7 +371,8 @@ msgstr "பின்னணி தெளிவின்மை" #: overview.ui:11 msgid "Add blur to the overview background, using the wallpaper picture." -msgstr "வால்பேப்பர் படத்தைப் பயன்படுத்தி மேலோட்டப் பின்னணியில் மங்கலைச் சேர்க்கவும்." +msgstr "" +"வால்பேப்பர் படத்தைப் பயன்படுத்தி மேலோட்டப் பின்னணியில் மங்கலைச் சேர்க்கவும்." #: overview.ui:26 msgid "Overview components style" @@ -374,8 +383,8 @@ msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" -"கோடு, தேடல் உள்ளீடு/முடிவுகள் மற்றும் பயன்பாட்டுக் கோப்புறைகளுக்கான அரை-வெளிப்படையான " -"பாணி." +"கோடு, தேடல் உள்ளீடு/முடிவுகள் மற்றும் பயன்பாட்டுக் கோப்புறைகளுக்கான " +"அரை-வெளிப்படையான பாணி." #: overview.ui:44 msgid "Application folder blur" @@ -415,7 +424,8 @@ msgstr "நிலையான தெளிவின்மை" #: panel.ui:27 msgid "Uses a static blurred image, more performant and stable." -msgstr "நிலையான மங்கலான படத்தைப் பயன்படுத்துகிறது, அதிக செயல்திறன் மற்றும் நிலையானது." +msgstr "" +"நிலையான மங்கலான படத்தைப் பயன்படுத்துகிறது, அதிக செயல்திறன் மற்றும் நிலையானது." #: panel.ui:42 msgid "Disables the blur from the panel when entering the overview." @@ -457,7 +467,9 @@ msgstr "ஹைடோப்பார் நீட்டிப்பு" #: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." -msgstr "மேலோட்டத்தில் மங்கலை முடக்காது, நிலையான மங்கலுடன் சிறப்பாகப் பயன்படுத்தப்படுகிறது." +msgstr "" +"மேலோட்டத்தில் மங்கலை முடக்காது, நிலையான மங்கலுடன் சிறப்பாகப் " +"பயன்படுத்தப்படுகிறது." #: window-row.ui:4 msgid "Window Name" @@ -469,7 +481,9 @@ msgstr "சாளரத்தைத் தேர்ந்தெடுக்க #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "ஒரு சாளரத்தைத் தேர்ந்தெடுக்கவும் அல்லது அதன் வகுப்புப் பெயரால் தேர்ந்தெடுக்கவும்." +msgstr "" +"ஒரு சாளரத்தைத் தேர்ந்தெடுக்கவும் அல்லது அதன் வகுப்புப் பெயரால் " +"தேர்ந்தெடுக்கவும்." #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality.\n" From 41e0773d113370e21f81c7f638a97a1f445924f7 Mon Sep 17 00:00:00 2001 From: Arun Date: Mon, 19 Sep 2022 03:56:24 +0000 Subject: [PATCH 156/212] Translated using Weblate (Tamil) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ta/ --- po/ta.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ta.po b/po/ta.po index 41571be0..094476eb 100644 --- a/po/ta.po +++ b/po/ta.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: \"K.B.Dharun Krishna\" \n" +"Last-Translator: Arun \n" "Language-Team: Tamil \n" "Language: ta\n" From d98dcf410dcc4851627ec16fc7e7f5ad673c3561 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sabri=20=C3=9Cnal?= Date: Sat, 13 May 2023 21:22:43 +0000 Subject: [PATCH 157/212] Translated using Weblate (Turkish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/tr/ --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 82f634d7..93f2f041 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-05-22 23:48+0000\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.18-dev\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" From b03b605d097375eaf5077bf13dc3aca91b5dfc37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Taylan=20Tatl=C4=B1?= Date: Fri, 19 Aug 2022 16:21:27 +0000 Subject: [PATCH 158/212] Translated using Weblate (Turkish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/tr/ --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 93f2f041..b43f8198 100644 --- a/po/tr.po +++ b/po/tr.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Sabri Ünal \n" +"Last-Translator: Taylan Tatlı \n" "Language-Team: Turkish \n" "Language: tr\n" From 2c61eaf6154936772fbeb004b83960a3903fceb9 Mon Sep 17 00:00:00 2001 From: Park Seonu Date: Mon, 22 Aug 2022 03:01:02 +0000 Subject: [PATCH 159/212] Translated using Weblate (Korean) Currently translated at 39.5% (38 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ko/ --- po/ko.po | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/po/ko.po b/po/ko.po index 1be8d70c..fdfa9f35 100644 --- a/po/ko.po +++ b/po/ko.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2022-08-30 21:21+0000\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: Park Seonu \n" "Language-Team: Korean \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.14.1-dev\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" @@ -124,9 +124,8 @@ msgstr "색상" msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." -msgstr "" -"블러의 색상을 변경합니다, 색상의 불투명도는 블러 효과의 혼합되는 정도를 설정" -"합니다." +msgstr "블러의 색상을 변경합니다, 색상의 불투명도는 블러 효과의 혼합되는 정도를 " +"설정합니다." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" @@ -136,9 +135,8 @@ msgstr "노이즈 값" msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." -msgstr "" -"블러 효과에 추가할 노이즈의 양으로, 대비가 낮은 화면이나 미적 목적에 유용합니" -"다." +msgstr "블러 효과에 추가할 노이즈의 양으로, 대비가 낮은 화면이나 미적 목적에 " +"유용합니다." #: customize-row.ui:92 general.ui:94 msgid "Noise lightness" @@ -156,8 +154,7 @@ msgstr "알림" msgid "" "Noise and color can't be activated on dynamically blurred components, such " "as this one." -msgstr "" -"노이즈 및 색상은 이와 같이 동적으로 흐리게 처리된 구성 요소에서 활성화할 수 " +msgstr "노이즈 및 색상은 이와 같이 동적으로 흐리게 처리된 구성 요소에서 활성화할 수 " "없습니다." #: dash.ui:5 From 5c3bef145c53f547a8898f90355590d8c8254419 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Thu, 29 Jun 2023 14:17:24 +0000 Subject: [PATCH 160/212] Translated using Weblate (Korean) Currently translated at 39.5% (38 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ko/ --- po/ko.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ko.po b/po/ko.po index fdfa9f35..7ce83c23 100644 --- a/po/ko.po +++ b/po/ko.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Park Seonu \n" +"Last-Translator: Anonymous \n" "Language-Team: Korean \n" "Language: ko\n" From d22cee6c39ba7882e424f048da37b736601d2d44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Victor=20Dias=20Rodrigues?= Date: Sun, 18 Sep 2022 04:42:28 +0000 Subject: [PATCH 161/212] Translated using Weblate (Portuguese) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pt/ --- po/pt.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/pt.po b/po/pt.po index 617c020a..ed83924d 100644 --- a/po/pt.po +++ b/po/pt.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-02-20 17:38+0000\n" -"Last-Translator: Vander \n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" +"Last-Translator: José Victor Dias Rodrigues \n" "Language-Team: Portuguese \n" "Language: pt\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.16-dev\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" From 78e836222565c1ba1fe43ab055a8ac1b0833ca1c Mon Sep 17 00:00:00 2001 From: Vander Date: Sun, 19 Feb 2023 17:10:57 +0000 Subject: [PATCH 162/212] Translated using Weblate (Portuguese) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pt/ --- po/pt.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/pt.po b/po/pt.po index ed83924d..cf50ea8f 100644 --- a/po/pt.po +++ b/po/pt.po @@ -10,7 +10,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: José Victor Dias Rodrigues \n" +"Last-Translator: Vander \n" "Language-Team: Portuguese \n" "Language: pt\n" From 8d94a0df980558727031e75f2a7d7de698c65b34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paulo=20Vin=C3=ADcius=20Bettio?= Date: Fri, 26 Aug 2022 22:01:41 +0000 Subject: [PATCH 163/212] Translated using Weblate (Portuguese) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pt/ --- po/pt.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/pt.po b/po/pt.po index cf50ea8f..a7389a13 100644 --- a/po/pt.po +++ b/po/pt.po @@ -10,7 +10,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Vander \n" +"Last-Translator: Paulo Vinícius Bettio \n" "Language-Team: Portuguese \n" "Language: pt\n" @@ -432,8 +432,7 @@ msgstr "Desfoque estático" #: panel.ui:27 msgid "Uses a static blurred image, more performant and stable." -msgstr "" -"Utiliza uma imagem desfocada estática. Maior desempenho e estabilidade." +msgstr "Utiliza uma imagem desfocada estática. Maior desempenho e estabilidade." #: panel.ui:42 msgid "Disables the blur from the panel when entering the overview." From 6e037d28261cb877abe8ea46669fda1956fb6f75 Mon Sep 17 00:00:00 2001 From: Fernando Henrique Nakashoji Date: Wed, 24 Aug 2022 13:59:36 +0000 Subject: [PATCH 164/212] Translated using Weblate (Portuguese) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pt/ --- po/pt.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/pt.po b/po/pt.po index a7389a13..3d3a682f 100644 --- a/po/pt.po +++ b/po/pt.po @@ -10,7 +10,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Paulo Vinícius Bettio \n" +"Last-Translator: Fernando Henrique Nakashoji \n" "Language-Team: Portuguese \n" "Language: pt\n" From a80ff86fb1578b9132834212b07be10cb243214b Mon Sep 17 00:00:00 2001 From: saulo marcos Date: Sat, 10 Sep 2022 01:07:32 +0000 Subject: [PATCH 165/212] Translated using Weblate (Portuguese) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pt/ --- po/pt.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/pt.po b/po/pt.po index 3d3a682f..121dfad0 100644 --- a/po/pt.po +++ b/po/pt.po @@ -10,7 +10,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Fernando Henrique Nakashoji \n" +"Last-Translator: saulo marcos \n" "Language-Team: Portuguese \n" "Language: pt\n" From ade835d98de142ca7b5ab72bee1c2ea88aa871fb Mon Sep 17 00:00:00 2001 From: Konstantinos Polychronidis Date: Mon, 26 Jun 2023 11:15:29 +0000 Subject: [PATCH 166/212] Translated using Weblate (Swedish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/sv/ --- po/sv.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sv.po b/po/sv.po index 0899c37a..2a30bbbe 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-06-27 11:53+0000\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: Konstantinos Polychronidis \n" "Language-Team: Swedish \n" From f7b98cc0a815409f705dfb12f7bf88c5bb6dc521 Mon Sep 17 00:00:00 2001 From: Artur O Date: Tue, 28 Mar 2023 01:07:47 +0000 Subject: [PATCH 167/212] Translated using Weblate (Swedish) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/sv/ --- po/sv.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sv.po b/po/sv.po index 2a30bbbe..599302fa 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Konstantinos Polychronidis \n" +"Last-Translator: \"Artur O.\" \n" "Language-Team: Swedish \n" "Language: sv\n" From 38890ccf396b36cae6cfc2de3a3ecbe082e2415f Mon Sep 17 00:00:00 2001 From: Temuri Doghonadze Date: Tue, 21 Feb 2023 11:23:06 +0000 Subject: [PATCH 168/212] Translated using Weblate (Georgian) Currently translated at 40.6% (39 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ka/ --- po/ka.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ka.po b/po/ka.po index 3e83dd3d..e402ea9d 100644 --- a/po/ka.po +++ b/po/ka.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-02-22 11:35+0000\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.16-dev\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" From 623f9e6bc034b0548822836a1cef777dc730978c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Thu, 29 Jun 2023 14:17:29 +0000 Subject: [PATCH 169/212] Translated using Weblate (Georgian) Currently translated at 40.6% (39 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ka/ --- po/ka.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ka.po b/po/ka.po index e402ea9d..7c2485d7 100644 --- a/po/ka.po +++ b/po/ka.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Temuri Doghonadze \n" +"Last-Translator: Anonymous \n" "Language-Team: Georgian \n" "Language: ka\n" From e72bd18001a7402ab829f4d4585253182612e984 Mon Sep 17 00:00:00 2001 From: chtholine Date: Mon, 10 Apr 2023 18:59:21 +0000 Subject: [PATCH 170/212] Translated using Weblate (Ukrainian) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/uk/ --- po/uk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index b05462b1..553d6fbf 100644 --- a/po/uk.po +++ b/po/uk.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-04-12 13:48+0000\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: chtholine \n" "Language-Team: Ukrainian \n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.17-dev\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" From f55a3dc80b6f23242dcc5f1d52f385f5ce6deb09 Mon Sep 17 00:00:00 2001 From: jolupa Date: Thu, 4 May 2023 20:35:18 +0000 Subject: [PATCH 171/212] Translated using Weblate (Catalan) Currently translated at 6.2% (6 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ca/ --- po/ca.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ca.po b/po/ca.po index 36b72ecb..d93c852f 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-05-05 21:50+0000\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: jolupa \n" "Language-Team: Catalan \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.18-dev\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" From 342256b91ba61cdf0ebe6d47ec9cf9a44596bbbf Mon Sep 17 00:00:00 2001 From: Anonymous Date: Thu, 29 Jun 2023 14:17:30 +0000 Subject: [PATCH 172/212] Translated using Weblate (Catalan) Currently translated at 6.2% (6 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ca/ --- po/ca.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ca.po b/po/ca.po index d93c852f..f5e02322 100644 --- a/po/ca.po +++ b/po/ca.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: jolupa \n" +"Last-Translator: Anonymous \n" "Language-Team: Catalan \n" "Language: ca\n" From 7f8759e4bcab1e1399012f38a9c952353399b64d Mon Sep 17 00:00:00 2001 From: Oman Luka Date: Wed, 10 May 2023 20:32:45 +0000 Subject: [PATCH 173/212] Translated using Weblate (Slovenian) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/sl/ --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index e08c1a83..fe31f799 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-05-12 15:53+0000\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: Oman Luka \n" "Language-Team: Slovenian \n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" -"X-Generator: Weblate 4.18-dev\n" +"X-Generator: Weblate 4.18.1\n" #: applications.ui:5 msgid "Applications" From 4c8be335ae15a86ebd274fd0a1de30e52fb41441 Mon Sep 17 00:00:00 2001 From: Konstantinos Polychronidis Date: Mon, 26 Jun 2023 09:41:56 +0000 Subject: [PATCH 174/212] Translated using Weblate (Greek) Currently translated at 100.0% (96 of 96 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/el/ --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 7c40b481..3c1e3dd9 100644 --- a/po/el.po +++ b/po/el.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-02 02:53+0100\n" -"PO-Revision-Date: 2023-06-27 11:53+0000\n" +"PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: Konstantinos Polychronidis \n" "Language-Team: Greek \n" From a2f7fea2f0948ba70fe43a23a0838fc041ceb21a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Thu, 29 Jun 2023 16:20:57 +0200 Subject: [PATCH 175/212] Updated POT --- po/LINGUAS | 5 ++ po/ar.po | 30 ++++++++---- po/blur-my-shell@aunetx.pot | 22 +++++++-- po/ca.po | 22 +++++++-- po/cs.po | 26 +++++++--- po/de.po | 29 +++++++++--- po/el.po | 29 +++++++++--- po/es.po | 25 ++++++++-- po/fr.po | 22 +++++++-- po/hu.po | 22 +++++++-- po/it.po | 30 ++++++++---- po/ka.po | 22 +++++++-- po/ko.po | 35 ++++++++++---- po/nb_NO.po | 26 +++++++--- po/nl.po | 26 +++++++--- po/pl.po | 22 +++++++-- po/pt.po | 28 ++++++++--- po/ru.po | 22 +++++++-- po/sl.po | 22 +++++++-- po/sv.po | 29 +++++++++--- po/ta.po | 94 ++++++++++++++++++------------------- po/tr.po | 22 +++++++-- po/uk.po | 25 ++++++++-- po/zh_Hans.po | 22 +++++++-- 24 files changed, 489 insertions(+), 168 deletions(-) diff --git a/po/LINGUAS b/po/LINGUAS index 9f065ce6..cb9536b5 100644 --- a/po/LINGUAS +++ b/po/LINGUAS @@ -1,17 +1,22 @@ ar +ca cs de +el es fr hu it +ka ko nb_NO nl pl pt ru +sl sv ta tr +uk zh_Hans diff --git a/po/ar.po b/po/ar.po index 08c4c4ad..c43849bd 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-02 02:53+0100\n" +"POT-Creation-Date: 2023-06-29 16:20+0200\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: fawaz006 \n" "Language-Team: Arabic \n" "Language-Team: LANGUAGE \n" @@ -186,15 +186,15 @@ msgstr "" msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "" -#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:135 msgid "Transparent" msgstr "" -#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:136 msgid "Light" msgstr "" -#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:137 msgid "Dark" msgstr "" @@ -424,6 +424,20 @@ msgstr "" msgid "Does not disable the blur in overview, best used with static blur." msgstr "" +#: panel.ui:118 +msgid "Blur original panel with Dash to Panel" +msgstr "" + +#: panel.ui:119 +msgid "" +"Enables the blurring of the original panel with Dash to Panel, if selected " +"in the extension's options." +msgstr "" + +#: panel.ui:138 +msgid "Contrasted" +msgstr "" + #: window-row.ui:4 msgid "Window Name" msgstr "" diff --git a/po/ca.po b/po/ca.po index f5e02322..16e217f1 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-02 02:53+0100\n" +"POT-Creation-Date: 2023-06-29 16:20+0200\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Catalan \n" -"Language-Team: Czech \n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -209,15 +209,15 @@ msgstr "Zakázat v přehledu" msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "Zakáže rozmazání z Dashe do doku při vstupu do přehledu." -#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:135 msgid "Transparent" msgstr "Transparentní" -#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:136 msgid "Light" msgstr "Světlý" -#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:137 msgid "Dark" msgstr "Tmavý" @@ -467,6 +467,20 @@ msgid "Does not disable the blur in overview, best used with static blur." msgstr "" "Nevypíná rozostření v přehledu, nejlépe se používá se statickým rozostřením." +#: panel.ui:118 +msgid "Blur original panel with Dash to Panel" +msgstr "" + +#: panel.ui:119 +msgid "" +"Enables the blurring of the original panel with Dash to Panel, if selected " +"in the extension's options." +msgstr "" + +#: panel.ui:138 +msgid "Contrasted" +msgstr "" + #: window-row.ui:4 msgid "Window Name" msgstr "Název okna" diff --git a/po/de.po b/po/de.po index 61bd8e65..c409369a 100644 --- a/po/de.po +++ b/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-02 02:53+0100\n" +"POT-Creation-Date: 2023-06-29 16:20+0200\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: arctize \n" "Language-Team: German \n" -"Language-Team: Greek \n" +"Language-Team: Greek \n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -215,15 +215,15 @@ msgstr "" "Απενεργοποιεί το θόλωμα από το Dash to Dock κατά την εισαγωγή στην " "επισκόπηση." -#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:135 msgid "Transparent" msgstr "Διαφανές" -#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:136 msgid "Light" msgstr "Φωτεινό" -#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:137 msgid "Dark" msgstr "Σκοτεινό" @@ -465,7 +465,8 @@ msgstr "Απενεργοποίηση όταν ένα παράθυρο είναι #: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." -msgstr "Απενεργοποιεί τη διαφάνεια του πάνελ όταν ένα παράθυρο είναι κοντά του." +msgstr "" +"Απενεργοποιεί τη διαφάνεια του πάνελ όταν ένα παράθυρο είναι κοντά του." #: panel.ui:97 msgid "Compatibility" @@ -485,6 +486,20 @@ msgstr "" "Δεν απενεργοποιεί το θόλωμα στη λειτουργία επισκόπησης, ιδανικό για χρήση με " "στατικό θόλωμα." +#: panel.ui:118 +msgid "Blur original panel with Dash to Panel" +msgstr "" + +#: panel.ui:119 +msgid "" +"Enables the blurring of the original panel with Dash to Panel, if selected " +"in the extension's options." +msgstr "" + +#: panel.ui:138 +msgid "Contrasted" +msgstr "" + #: window-row.ui:4 msgid "Window Name" msgstr "Όνομα παραθύρου" diff --git a/po/es.po b/po/es.po index c45708a5..e102d4d8 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-02 02:53+0100\n" +"POT-Creation-Date: 2023-06-29 16:20+0200\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: gallegonovato \n" "Language-Team: Spanish \n" "Language-Team: French \n" "Language-Team: Hungarian \n" "Language-Team: Italian \n" "Language-Team: Georgian \n" "Language-Team: Korean \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -206,15 +206,15 @@ msgstr "Skru av i oversikten" msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "Skrur av tilsløring fra Dash til dokk når oversikten åpnes." -#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:135 msgid "Transparent" msgstr "" -#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:136 msgid "Light" msgstr "Lys" -#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:137 msgid "Dark" msgstr "Mørk" @@ -458,6 +458,20 @@ msgid "Does not disable the blur in overview, best used with static blur." msgstr "" "Skrur ikke av tilsløring i oversikten. Fungerer best med statisk tilsløring." +#: panel.ui:118 +msgid "Blur original panel with Dash to Panel" +msgstr "" + +#: panel.ui:119 +msgid "" +"Enables the blurring of the original panel with Dash to Panel, if selected " +"in the extension's options." +msgstr "" + +#: panel.ui:138 +msgid "Contrasted" +msgstr "" + #: window-row.ui:4 msgid "Window Name" msgstr "" diff --git a/po/nl.po b/po/nl.po index c838cbd6..ba28a673 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-02 02:53+0100\n" +"POT-Creation-Date: 2023-06-29 16:20+0200\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: Wouter van der Wal \n" -"Language-Team: Dutch \n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -215,15 +215,15 @@ msgstr "" "De vervaging van Dash to Dock uitschakelen wanneer het overzicht wordt " "geactiveerd." -#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:135 msgid "Transparent" msgstr "Doorzichtig" -#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:136 msgid "Light" msgstr "Licht" -#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:137 msgid "Dark" msgstr "Donker" @@ -479,6 +479,20 @@ msgstr "" "De vervaging in het overzicht niet uitschakelen, best samen gebruikt met " "statische vervaging." +#: panel.ui:118 +msgid "Blur original panel with Dash to Panel" +msgstr "" + +#: panel.ui:119 +msgid "" +"Enables the blurring of the original panel with Dash to Panel, if selected " +"in the extension's options." +msgstr "" + +#: panel.ui:138 +msgid "Contrasted" +msgstr "" + #: window-row.ui:4 msgid "Window Name" msgstr "Vensternaam" diff --git a/po/pl.po b/po/pl.po index cb6696a0..cb1e142e 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-02 02:53+0100\n" +"POT-Creation-Date: 2023-06-29 16:20+0200\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: Rali Boińskx \n" "Language-Team: Polish \n" "Language-Team: Portuguese \n" "Language-Team: Russian \n" "Language-Team: Slovenian \n" "Language-Team: Swedish \n" -"Language-Team: Tamil \n" +"Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,8 +48,8 @@ msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" -"மங்கலான விளைவின் மேல் உள்ள சாளரத்தின் ஒளிபுகாநிலை, அதிக மதிப்பு இன்னும் " -"தெளிவாகத் தெரியும்." +"மங்கலான விளைவின் மேல் உள்ள சாளரத்தின் ஒளிபுகாநிலை, அதிக மதிப்பு இன்னும் தெளிவாகத் " +"தெரியும்." #: applications.ui:51 msgid "Blur on overview" @@ -60,8 +60,7 @@ msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" -"மேலோட்டத்தில் அனைத்து பணியிடங்களிலும் மங்கலானது சரியாகக் காட்டப்பட வேண்டும்." -"\n" +"மேலோட்டத்தில் அனைத்து பணியிடங்களிலும் மங்கலானது சரியாகக் காட்டப்பட வேண்டும்.\n" "இது சில தாமதம் அல்லது செயல்திறன் சிக்கல்களை ஏற்படுத்தலாம்." #: applications.ui:67 @@ -74,8 +73,7 @@ msgid "" "Not recommended because of performance and stability issues." msgstr "" "முன்னிருப்பாக எல்லா சாளரங்களுக்கும் பின்னால் மங்கலைச் சேர்க்கிறது.\n" -"செயல்திறன் மற்றும் நிலைப்புத்தன்மை பிரச்சனைகள் காரணமாக " -"பரிந்துரைக்கப்படவில்லை." +"செயல்திறன் மற்றும் நிலைப்புத்தன்மை பிரச்சனைகள் காரணமாக பரிந்துரைக்கப்படவில்லை." #: applications.ui:85 msgid "Whitelist" @@ -105,8 +103,8 @@ msgstr "பண்புகளைத் தனிப்பயனாக்கு msgid "" "Uses customized blur properties, instead of the ones set in the General page." msgstr "" -"பொதுப் பக்கத்தில் அமைக்கப்படுவதற்குப் பதிலாக தனிப்பயனாக்கப்பட்ட மங்கலான " -"பண்புகளைப் பயன்படுத்துகிறது." +"பொதுப் பக்கத்தில் அமைக்கப்படுவதற்குப் பதிலாக தனிப்பயனாக்கப்பட்ட மங்கலான பண்புகளைப் " +"பயன்படுத்துகிறது." #: customize-row.ui:10 general.ui:15 msgid "Sigma" @@ -135,8 +133,8 @@ msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." msgstr "" -"மங்கலின் நிறத்தை மாற்றுகிறது. வண்ணத்தின் ஒளிபுகாநிலை, அது மங்கலான விளைவுடன் " -"எவ்வளவு கலக்கப்படுகிறது என்பதைக் கட்டுப்படுத்துகிறது." +"மங்கலின் நிறத்தை மாற்றுகிறது. வண்ணத்தின் ஒளிபுகாநிலை, அது மங்கலான விளைவுடன் எவ்வளவு " +"கலக்கப்படுகிறது என்பதைக் கட்டுப்படுத்துகிறது." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" @@ -147,8 +145,8 @@ msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." msgstr "" -"மங்கலான விளைவைச் சேர்க்கும் சத்தத்தின் அளவு, குறைந்த-கான்ட்ராஸ்ட் திரைகளில் " -"அல்லது அழகியல் நோக்கத்திற்காக பயனுள்ளதாக இருக்கும்." +"மங்கலான விளைவைச் சேர்க்கும் சத்தத்தின் அளவு, குறைந்த-கான்ட்ராஸ்ட் திரைகளில் அல்லது அழகியல் " +"நோக்கத்திற்காக பயனுள்ளதாக இருக்கும்." #: customize-row.ui:92 general.ui:94 msgid "Noise lightness" @@ -166,9 +164,7 @@ msgstr "அறிவிப்பு" msgid "" "Noise and color can't be activated on dynamically blurred components, such " "as this one." -msgstr "" -"இது போன்ற மாறும் மங்கலான கூறுகளில் இரைச்சல் மற்றும் வண்ணத்தை செயல்படுத்த " -"முடியாது." +msgstr "இது போன்ற மாறும் மங்கலான கூறுகளில் இரைச்சல் மற்றும் வண்ணத்தை செயல்படுத்த முடியாது." #: dash.ui:5 msgid "Dash" @@ -180,8 +176,7 @@ msgstr "டேஷ் டு டாக் மங்கல்" #: dash.ui:11 msgid "Blur the background of the Dash to Dock extension, if it is used." -msgstr "" -"டாஷ் டு டாக் நீட்டிப்பு பயன்படுத்தப்பட்டால் அதன் பின்புலத்தை மங்கலாக்குங்கள்." +msgstr "டாஷ் டு டாக் நீட்டிப்பு பயன்படுத்தப்பட்டால் அதன் பின்புலத்தை மங்கலாக்குங்கள்." #: dash.ui:26 panel.ui:56 msgid "Override background" @@ -192,8 +187,8 @@ msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" -"பின்னணியை வெளிப்படையானதாகவோ அல்லது அரை-வெளிப்படையாகவோ மாற்றுகிறது, அதற்குப் " -"பதிலாக டாஷ் டு டாக் விருப்பங்களைப் பயன்படுத்த இதை முடக்கவும்." +"பின்னணியை வெளிப்படையானதாகவோ அல்லது அரை-வெளிப்படையாகவோ மாற்றுகிறது, அதற்குப் பதிலாக " +"டாஷ் டு டாக் விருப்பங்களைப் பயன்படுத்த இதை முடக்கவும்." #: dash.ui:33 panel.ui:64 msgid "Background style" @@ -211,15 +206,15 @@ msgstr "மேலோட்டத்தில் முடக்கு" msgid "Disables the blur from Dash to Dock when entering the overview." msgstr "மேலோட்டத்தை உள்ளிடும்போது டாஷ் முதல் டாக் வரை மங்கலை முடக்குகிறது." -#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:121 +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:135 msgid "Transparent" msgstr "வெளிப்படை" -#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:122 +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:136 msgid "Light" msgstr "ஒளி" -#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:123 +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:137 msgid "Dark" msgstr "இருள்" @@ -234,8 +229,7 @@ msgstr "மங்கலான விருப்பத்தேர்வுக #: general.ui:11 msgid "Global blur preferences, used by all components by default." msgstr "" -"உலகளாவிய மங்கலான விருப்பத்தேர்வுகள், இயல்பாகவே அனைத்து கூறுகளாலும் " -"பயன்படுத்தப்படுகின்றன." +"உலகளாவிய மங்கலான விருப்பத்தேர்வுகள், இயல்பாகவே அனைத்து கூறுகளாலும் பயன்படுத்தப்படுகின்றன." #: general.ui:117 msgid "Performance" @@ -254,8 +248,8 @@ msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" -"உலகளவில் சத்தம் மற்றும் வண்ண விளைவுகளை முடக்குகிறது, இது குறைந்த-இறுதி " -"அமைப்புகளில் செயல்திறனை மேம்படுத்தலாம்." +"உலகளவில் சத்தம் மற்றும் வண்ண விளைவுகளை முடக்குகிறது, இது குறைந்த-இறுதி அமைப்புகளில் " +"செயல்திறனை மேம்படுத்தலாம்." #: general.ui:135 msgid "Hack level" @@ -272,9 +266,8 @@ msgstr "" "டைனமிக் மங்கலான விளைவின் நடத்தையை மாற்றுகிறது. \n" "நீங்கள் பயன்பாட்டு மங்கலைப் பயன்படுத்தாத வரை, இயல்புநிலை மதிப்பு மிகவும் " "பரிந்துரைக்கப்படுகிறது, இதில் \"கலைப்பொருள் இல்லை\" என்பது சிறந்தது. \n" -"இந்த விருப்பம் GNOME ஷெல்லில் கிளிப் செய்யப்பட்ட ரீடிராக்களை முழுவதுமாக " -"முடக்கும், மேலும் செயல்திறனை கணிசமாக பாதிக்கலாம் ஆனால் மங்கலான விளைவை " -"முழுமையாக சரி செய்யும்." +"இந்த விருப்பம் GNOME ஷெல்லில் கிளிப் செய்யப்பட்ட ரீடிராக்களை முழுவதுமாக முடக்கும், மேலும் " +"செயல்திறனை கணிசமாக பாதிக்கலாம் ஆனால் மங்கலான விளைவை முழுமையாக சரி செய்யும்." #: general.ui:151 msgid "Debug" @@ -285,8 +278,8 @@ msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." msgstr "" -"பதிவுகளில் நீட்டிப்பை வாய்மொழியாக மாற்றுகிறது, சிக்கலைப் புகாரளிக்க " -"வேண்டியிருக்கும் போது செயல்படுத்தவும்." +"பதிவுகளில் நீட்டிப்பை வாய்மொழியாக மாற்றுகிறது, சிக்கலைப் புகாரளிக்க வேண்டியிருக்கும் " +"போது செயல்படுத்தவும்." #: general.ui:167 msgid "Reset preferences" @@ -342,8 +335,7 @@ msgstr "லாக்ஸ்கிரீன் மங்கலானது" #: other.ui:11 msgid "Change the blur of the lockscreen to use this extension's preferences." -msgstr "" -"இந்த நீட்டிப்பு விருப்பங்களைப் பயன்படுத்த பூட்டுத் திரையின் மங்கலை மாற்றவும்." +msgstr "இந்த நீட்டிப்பு விருப்பங்களைப் பயன்படுத்த பூட்டுத் திரையின் மங்கலை மாற்றவும்." #: other.ui:28 msgid "Screenshot blur" @@ -371,8 +363,7 @@ msgstr "பின்னணி தெளிவின்மை" #: overview.ui:11 msgid "Add blur to the overview background, using the wallpaper picture." -msgstr "" -"வால்பேப்பர் படத்தைப் பயன்படுத்தி மேலோட்டப் பின்னணியில் மங்கலைச் சேர்க்கவும்." +msgstr "வால்பேப்பர் படத்தைப் பயன்படுத்தி மேலோட்டப் பின்னணியில் மங்கலைச் சேர்க்கவும்." #: overview.ui:26 msgid "Overview components style" @@ -383,8 +374,8 @@ msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" -"கோடு, தேடல் உள்ளீடு/முடிவுகள் மற்றும் பயன்பாட்டுக் கோப்புறைகளுக்கான " -"அரை-வெளிப்படையான பாணி." +"கோடு, தேடல் உள்ளீடு/முடிவுகள் மற்றும் பயன்பாட்டுக் கோப்புறைகளுக்கான அரை-வெளிப்படையான " +"பாணி." #: overview.ui:44 msgid "Application folder blur" @@ -424,8 +415,7 @@ msgstr "நிலையான தெளிவின்மை" #: panel.ui:27 msgid "Uses a static blurred image, more performant and stable." -msgstr "" -"நிலையான மங்கலான படத்தைப் பயன்படுத்துகிறது, அதிக செயல்திறன் மற்றும் நிலையானது." +msgstr "நிலையான மங்கலான படத்தைப் பயன்படுத்துகிறது, அதிக செயல்திறன் மற்றும் நிலையானது." #: panel.ui:42 msgid "Disables the blur from the panel when entering the overview." @@ -467,9 +457,21 @@ msgstr "ஹைடோப்பார் நீட்டிப்பு" #: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." +msgstr "மேலோட்டத்தில் மங்கலை முடக்காது, நிலையான மங்கலுடன் சிறப்பாகப் பயன்படுத்தப்படுகிறது." + +#: panel.ui:118 +msgid "Blur original panel with Dash to Panel" +msgstr "" + +#: panel.ui:119 +msgid "" +"Enables the blurring of the original panel with Dash to Panel, if selected " +"in the extension's options." +msgstr "" + +#: panel.ui:138 +msgid "Contrasted" msgstr "" -"மேலோட்டத்தில் மங்கலை முடக்காது, நிலையான மங்கலுடன் சிறப்பாகப் " -"பயன்படுத்தப்படுகிறது." #: window-row.ui:4 msgid "Window Name" @@ -481,9 +483,7 @@ msgstr "சாளரத்தைத் தேர்ந்தெடுக்க #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" -"ஒரு சாளரத்தைத் தேர்ந்தெடுக்கவும் அல்லது அதன் வகுப்புப் பெயரால் " -"தேர்ந்தெடுக்கவும்." +msgstr "ஒரு சாளரத்தைத் தேர்ந்தெடுக்கவும் அல்லது அதன் வகுப்புப் பெயரால் தேர்ந்தெடுக்கவும்." #~ msgid "" #~ "Add blur to the applications. This is still a beta functionnality.\n" diff --git a/po/tr.po b/po/tr.po index b43f8198..1e7d0883 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-02 02:53+0100\n" +"POT-Creation-Date: 2023-06-29 16:20+0200\n" "PO-Revision-Date: 2023-06-29 14:17+0000\n" "Last-Translator: Taylan Tatlı \n" "Language-Team: Turkish \n" "Language-Team: Ukrainian \n" "Language-Team: Chinese (Simplified) Date: Thu, 29 Jun 2023 14:22:12 +0000 Subject: [PATCH 176/212] Translated using Weblate (French) Currently translated at 100.0% (99 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/fr/ --- po/fr.po | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/po/fr.po b/po/fr.po index 537d5398..e5eff994 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: \"J. Lavoie\" \n" +"PO-Revision-Date: 2023-07-01 12:50+0000\n" +"Last-Translator: Aurélien Hamy \n" "Language-Team: French \n" "Language: fr\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.18.1\n" +"X-Generator: Weblate 5.0-dev\n" "X-Poedit-Basepath: ../resources/ui\n" "X-Poedit-SearchPath-0: .\n" @@ -487,17 +487,19 @@ msgstr "" #: panel.ui:118 msgid "Blur original panel with Dash to Panel" -msgstr "" +msgstr "Flouter le panneau original lorsque Dash to Panel est utilisé" #: panel.ui:119 msgid "" "Enables the blurring of the original panel with Dash to Panel, if selected " "in the extension's options." msgstr "" +"Floute le panneau original de Dash to Panel, si l'option est activée dans " +"les paramètres de l'extension." #: panel.ui:138 msgid "Contrasted" -msgstr "" +msgstr "Contrasté" #: window-row.ui:4 msgid "Window Name" From f3c7930c5e7587682f1b18f9452ea172450adb79 Mon Sep 17 00:00:00 2001 From: Ali Aljishi Date: Fri, 30 Jun 2023 12:07:05 +0000 Subject: [PATCH 177/212] Translated using Weblate (Arabic) Currently translated at 100.0% (99 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ar/ --- po/ar.po | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/po/ar.po b/po/ar.po index c43849bd..003d4312 100644 --- a/po/ar.po +++ b/po/ar.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: fawaz006 \n" +"PO-Revision-Date: 2023-07-01 12:51+0000\n" +"Last-Translator: Ali Aljishi \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.18.1\n" +"X-Generator: Weblate 5.0-dev\n" "X-Poedit-Basepath: ../resources/ui\n" "X-Poedit-SearchPath-0: .\n" @@ -450,17 +450,19 @@ msgstr "لا يعطِّل التضبيب في النظرة العامَّة، ا #: panel.ui:118 msgid "Blur original panel with Dash to Panel" -msgstr "" +msgstr "ضبِّب اللوح الأصل باستخدام Dash to Panel" #: panel.ui:119 msgid "" "Enables the blurring of the original panel with Dash to Panel, if selected " "in the extension's options." msgstr "" +"يمكِّن تضبيب اللوح الأصل باستخدام Dash to Panel، وهذا إن اختير في خيارات " +"الامتداد." #: panel.ui:138 msgid "Contrasted" -msgstr "" +msgstr "متباين" #: window-row.ui:4 msgid "Window Name" From 4a2b859a4bc7aa153dacc8312fcf60259dfc789f Mon Sep 17 00:00:00 2001 From: vikdevelop Date: Thu, 29 Jun 2023 16:01:13 +0000 Subject: [PATCH 178/212] Translated using Weblate (Czech) Currently translated at 100.0% (99 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/cs/ --- po/cs.po | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/po/cs.po b/po/cs.po index e393355b..f8312c4e 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: 2023-06-29 14:17+0000\n" +"PO-Revision-Date: 2023-07-01 12:51+0000\n" "Last-Translator: vikdevelop \n" -"Language-Team: Czech \n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.18.1\n" +"X-Generator: Weblate 5.0-dev\n" #: applications.ui:5 msgid "Applications" @@ -469,17 +469,19 @@ msgstr "" #: panel.ui:118 msgid "Blur original panel with Dash to Panel" -msgstr "" +msgstr "Rozmazaní původní panelu pomocí Dash to Panel" #: panel.ui:119 msgid "" "Enables the blurring of the original panel with Dash to Panel, if selected " "in the extension's options." msgstr "" +"Povolí rozmazání pomocí rozšíření Dash to Panel, pokud je vybrána v " +"možnostech rozšíření." #: panel.ui:138 msgid "Contrasted" -msgstr "" +msgstr "Kontrastní" #: window-row.ui:4 msgid "Window Name" From 009bcf4354f0f6d1112142b93fc455ddfda60963 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93scar=20Fern=C3=A1ndez=20D=C3=ADaz?= Date: Sun, 2 Jul 2023 11:27:31 +0000 Subject: [PATCH 179/212] Translated using Weblate (Spanish) Currently translated at 100.0% (99 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/es/ --- po/es.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/es.po b/po/es.po index e102d4d8..57008348 100644 --- a/po/es.po +++ b/po/es.po @@ -8,8 +8,9 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: gallegonovato \n" +"PO-Revision-Date: 2023-07-03 11:52+0000\n" +"Last-Translator: Óscar Fernández Díaz \n" "Language-Team: Spanish \n" "Language: es\n" @@ -17,7 +18,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.18.1\n" +"X-Generator: Weblate 5.0-dev\n" #: applications.ui:5 msgid "Applications" @@ -481,17 +482,19 @@ msgstr "" #: panel.ui:118 msgid "Blur original panel with Dash to Panel" -msgstr "" +msgstr "Desenfocar panel original con Dash to Panel" #: panel.ui:119 msgid "" "Enables the blurring of the original panel with Dash to Panel, if selected " "in the extension's options." msgstr "" +"Activa el desenfoque del panel original con Dash to Panel, si está " +"seleccionado en las opciones de la extensión." #: panel.ui:138 msgid "Contrasted" -msgstr "" +msgstr "Contrastado" #: window-row.ui:4 msgid "Window Name" From 3b3b0cbd1513fed2f7441c5964e29bd625bbbe31 Mon Sep 17 00:00:00 2001 From: albanobattistella Date: Sat, 1 Jul 2023 13:25:33 +0000 Subject: [PATCH 180/212] Translated using Weblate (Italian) Currently translated at 100.0% (99 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/it/ --- po/it.po | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/po/it.po b/po/it.po index be7277ce..d273fc68 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: 2023-06-29 14:17+0000\n" +"PO-Revision-Date: 2023-07-03 11:52+0000\n" "Last-Translator: albanobattistella \n" "Language-Team: Italian \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.18.1\n" +"X-Generator: Weblate 5.0-dev\n" #: applications.ui:5 msgid "Applications" @@ -484,17 +484,19 @@ msgstr "" #: panel.ui:118 msgid "Blur original panel with Dash to Panel" -msgstr "" +msgstr "Sfoca il pannello originale con Dash to Panel" #: panel.ui:119 msgid "" "Enables the blurring of the original panel with Dash to Panel, if selected " "in the extension's options." msgstr "" +"Abilita la sfocatura del pannello originale con Dash to Panel, se " +"selezionato nelle opzioni dell'estensione." #: panel.ui:138 msgid "Contrasted" -msgstr "" +msgstr "Contrastato" #: window-row.ui:4 msgid "Window Name" From 221f4039b03006c1f00b455f27839d041ef35109 Mon Sep 17 00:00:00 2001 From: Philip Goto Date: Tue, 4 Jul 2023 13:59:39 +0000 Subject: [PATCH 181/212] Translated using Weblate (Dutch) Currently translated at 98.9% (98 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/nl/ --- po/nl.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/po/nl.po b/po/nl.po index ba28a673..de2e5ecc 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Wouter van der Wal \n" -"Language-Team: Dutch \n" +"PO-Revision-Date: 2023-07-05 14:47+0000\n" +"Last-Translator: Philip Goto \n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.18.1\n" +"X-Generator: Weblate 5.0-dev\n" #: applications.ui:5 msgid "Applications" @@ -481,7 +481,7 @@ msgstr "" #: panel.ui:118 msgid "Blur original panel with Dash to Panel" -msgstr "" +msgstr "Origineel paneel met Dash to Panel vervagen" #: panel.ui:119 msgid "" @@ -491,7 +491,7 @@ msgstr "" #: panel.ui:138 msgid "Contrasted" -msgstr "" +msgstr "Gecontrasteerd" #: window-row.ui:4 msgid "Window Name" From 013b656bfbe562d02f0acf627e428da46ae53492 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Weigend?= Date: Mon, 3 Jul 2023 16:04:18 +0000 Subject: [PATCH 182/212] Translated using Weblate (German) Currently translated at 100.0% (99 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/de/ --- po/de.po | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/po/de.po b/po/de.po index c409369a..bba329f9 100644 --- a/po/de.po +++ b/po/de.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: arctize \n" +"PO-Revision-Date: 2023-07-05 14:47+0000\n" +"Last-Translator: Jörn Weigend \n" "Language-Team: German \n" "Language: de\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.18.1\n" +"X-Generator: Weblate 5.0-dev\n" #: applications.ui:5 msgid "Applications" @@ -486,17 +486,19 @@ msgstr "" #: panel.ui:118 msgid "Blur original panel with Dash to Panel" -msgstr "" +msgstr "Original Panel mit Dash to Panel unscharf machen" #: panel.ui:119 msgid "" "Enables the blurring of the original panel with Dash to Panel, if selected " "in the extension's options." msgstr "" +"Ermöglicht das Unschärfen des original Panels mit Dash to Panel, falls in " +"den Extension-Einstellungen ausgewählt." #: panel.ui:138 msgid "Contrasted" -msgstr "" +msgstr "In Kontrast" #: window-row.ui:4 msgid "Window Name" From a58580fafb8b4dc9e391463d86d434298cd4b4fc Mon Sep 17 00:00:00 2001 From: Philip Goto Date: Fri, 7 Jul 2023 07:18:42 +0000 Subject: [PATCH 183/212] Translated using Weblate (Dutch) Currently translated at 100.0% (99 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/nl/ --- po/nl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/nl.po b/po/nl.po index de2e5ecc..f7eed217 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: 2023-07-05 14:47+0000\n" +"PO-Revision-Date: 2023-07-08 07:49+0000\n" "Last-Translator: Philip Goto \n" "Language-Team: Dutch \n" @@ -488,6 +488,8 @@ msgid "" "Enables the blurring of the original panel with Dash to Panel, if selected " "in the extension's options." msgstr "" +"Staat het vervagen van het originele paneel door Dash to Panel toe, indien " +"geselecteerd in de voorkeuren van de uitbreiding." #: panel.ui:138 msgid "Contrasted" From ee0964216060bdbf5c1d07b03f786fd45e79f3de Mon Sep 17 00:00:00 2001 From: Dee Date: Sat, 8 Jul 2023 08:51:43 +0000 Subject: [PATCH 184/212] Translated using Weblate (Chinese (Simplified)) Currently translated at 88.8% (88 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/zh_Hans/ --- po/zh_Hans.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/po/zh_Hans.po b/po/zh_Hans.po index 2fd17b5a..7880df70 100644 --- a/po/zh_Hans.po +++ b/po/zh_Hans.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Anonymous \n" +"PO-Revision-Date: 2023-07-09 09:47+0000\n" +"Last-Translator: Dee \n" "Language-Team: Chinese (Simplified) \n" "Language: zh_Hans\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.18.1\n" +"X-Generator: Weblate 5.0-dev\n" #: applications.ui:5 msgid "Applications" @@ -185,7 +185,7 @@ msgstr "背景样式" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "Dock 背景的透明/半透明样式。" #: dash.ui:50 panel.ui:41 msgid "Disable in overview" @@ -225,7 +225,7 @@ msgstr "性能" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "用于调整性能的各种选项。" #: general.ui:122 msgid "Color and noise effects" @@ -235,7 +235,7 @@ msgstr "颜色及噪声效果" msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." -msgstr "" +msgstr "全局禁用噪声和颜色效果,这可能会提高低端系统的性能。" #: general.ui:135 msgid "Hack level" From fdc716d96980023074b3cefda37ab04a500b6328 Mon Sep 17 00:00:00 2001 From: Luna Jernberg Date: Mon, 10 Jul 2023 05:25:44 +0000 Subject: [PATCH 185/212] Translated using Weblate (Swedish) Currently translated at 100.0% (99 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/sv/ --- po/sv.po | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/po/sv.po b/po/sv.po index 1f687c4b..f21a206d 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: \"Artur O.\" \n" +"PO-Revision-Date: 2023-07-11 05:53+0000\n" +"Last-Translator: Luna Jernberg \n" "Language-Team: Swedish \n" "Language: sv\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.18.1\n" +"X-Generator: Weblate 5.0-dev\n" #: applications.ui:5 msgid "Applications" @@ -475,17 +475,19 @@ msgstr "" #: panel.ui:118 msgid "Blur original panel with Dash to Panel" -msgstr "" +msgstr "Blurra originalpanelen med Dash to Panel" #: panel.ui:119 msgid "" "Enables the blurring of the original panel with Dash to Panel, if selected " "in the extension's options." msgstr "" +"Aktiverar blurrighet av originalpanelen med Dash to Panel, om det är valt i " +"tilläggets alternativ." #: panel.ui:138 msgid "Contrasted" -msgstr "" +msgstr "Kontrasterad" #: window-row.ui:4 msgid "Window Name" From d8437b662083be0af9c83c5223c206d54fa14147 Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Wed, 12 Jul 2023 16:30:42 +0000 Subject: [PATCH 186/212] Translated using Weblate (Tamil) Currently translated at 100.0% (99 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/ta/ --- po/ta.po | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/po/ta.po b/po/ta.po index c381df21..a49e4e26 100644 --- a/po/ta.po +++ b/po/ta.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Arun \n" -"Language-Team: Tamil \n" +"PO-Revision-Date: 2023-07-13 16:52+0000\n" +"Last-Translator: \"K.B.Dharun Krishna\" \n" +"Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.18.1\n" +"X-Generator: Weblate 5.0-dev\n" #: applications.ui:5 msgid "Applications" @@ -461,17 +461,19 @@ msgstr "மேலோட்டத்தில் மங்கலை முடக #: panel.ui:118 msgid "Blur original panel with Dash to Panel" -msgstr "" +msgstr "Dash to Panel உடன் அசல் பேனலை மங்கலாக்கு" #: panel.ui:119 msgid "" "Enables the blurring of the original panel with Dash to Panel, if selected " "in the extension's options." msgstr "" +"நீட்டிப்பின் விருப்பங்களில் தேர்ந்தெடுக்கப்பட்டால், Dash to Panel உடன் அசல் " +"பேனலை மங்கலாக்கும்." #: panel.ui:138 msgid "Contrasted" -msgstr "" +msgstr "மாறுபட்டது" #: window-row.ui:4 msgid "Window Name" From 57be67e9c55c92523261d96aa1a9f0e67ed5a3f5 Mon Sep 17 00:00:00 2001 From: Alexmelman88 <99257010+Alexmelman88@users.noreply.github.com> Date: Tue, 18 Jul 2023 12:46:24 +0300 Subject: [PATCH 187/212] Update Russian translation --- po/ru.po | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/po/ru.po b/po/ru.po index 4f334f44..c2250a7d 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Anonymous \n" +"PO-Revision-Date: 2023-07-18 12:45+0300\n" +"Last-Translator: Aleksandr Melman \n" "Language-Team: Russian \n" "Language: ru\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.18.1\n" +"X-Generator: Poedit 3.3.2\n" #: applications.ui:5 msgid "Applications" @@ -475,17 +475,18 @@ msgstr "" #: panel.ui:118 msgid "Blur original panel with Dash to Panel" -msgstr "" +msgstr "Размытие исходной панели с Dash to Panel" #: panel.ui:119 msgid "" "Enables the blurring of the original panel with Dash to Panel, if selected " "in the extension's options." -msgstr "" +msgstr "Включает размытие исходной панели с Dash to Panel, если это выбрано " +"в опциях расширения." #: panel.ui:138 msgid "Contrasted" -msgstr "" +msgstr "Контрастный" #: window-row.ui:4 msgid "Window Name" From 268efa95b3c126fac8160ad26d38bea56994fd5b Mon Sep 17 00:00:00 2001 From: Alexmelman88 <99257010+Alexmelman88@users.noreply.github.com> Date: Tue, 18 Jul 2023 13:10:27 +0300 Subject: [PATCH 188/212] Update ru.po --- po/ru.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ru.po b/po/ru.po index c2250a7d..45fdf932 100644 --- a/po/ru.po +++ b/po/ru.po @@ -177,7 +177,7 @@ msgstr "Панель приложений" #: dash.ui:10 msgid "Dash to Dock blur" -msgstr "Размытие \"Dash to Dock\"" +msgstr "Размытие Dash to Dock" #: dash.ui:11 msgid "Blur the background of the Dash to Dock extension, if it is used." @@ -358,7 +358,7 @@ msgstr "" #: other.ui:46 msgid "Window list extension blur" -msgstr "Размытие расширения \"Window List\"" +msgstr "Размытие расширения Window List" #: other.ui:47 msgid "Make the window-list extension blurred, if it is used." @@ -465,7 +465,7 @@ msgstr "Различные опции для обеспечения совмес #: panel.ui:103 msgid "Hidetopbar extension" -msgstr "Расширение \"Hidetopbar\"" +msgstr "Расширение Hidetopbar" #: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." From 928f8f9cc91bce6efe4fff25e60e48e10585e556 Mon Sep 17 00:00:00 2001 From: Guilherme Pagano <103840130+gbPagano@users.noreply.github.com> Date: Sun, 23 Jul 2023 21:45:15 -0300 Subject: [PATCH 189/212] Update metadata.json to gnome 45 --- metadata.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/metadata.json b/metadata.json index 93adea2a..ee201932 100644 --- a/metadata.json +++ b/metadata.json @@ -4,7 +4,8 @@ "shell-version": [ "42", "43", - "44" + "44", + "45 ], "url": "https://github.com/aunetx/gnome-shell-extension-blur-my-shell", "uuid": "blur-my-shell@aunetx", @@ -17,4 +18,4 @@ "kofi": "aunetx" }, "version": 47 -} \ No newline at end of file +} From e976a9c3aedd3943957a3b46bf77a61fb2132dca Mon Sep 17 00:00:00 2001 From: yangyangdaji <1504305527@qq.com> Date: Tue, 1 Aug 2023 22:37:18 +0000 Subject: [PATCH 190/212] Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (99 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/zh_Hans/ --- po/zh_Hans.po | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/po/zh_Hans.po b/po/zh_Hans.po index 7880df70..4f0d60f8 100644 --- a/po/zh_Hans.po +++ b/po/zh_Hans.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: 2023-07-09 09:47+0000\n" -"Last-Translator: Dee \n" +"PO-Revision-Date: 2023-08-02 23:07+0000\n" +"Last-Translator: yangyangdaji <1504305527@qq.com>\n" "Language-Team: Chinese (Simplified) \n" "Language: zh_Hans\n" @@ -249,6 +249,10 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"更改动态模糊效果的行为。\n" +"强烈建议使用默认值,除非您使用应用程序模糊,在这种情况下“无阴影”更好。\n" +"此选项将完全禁用 GNOME shell " +"中的剪切重绘,并且可能会显着影响性能,但会完全修复模糊效果。" #: general.ui:151 msgid "Debug" @@ -286,7 +290,7 @@ msgstr "高品质" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "无阴影" #: menu.ui:6 msgid "Project page" @@ -352,7 +356,7 @@ msgstr "概览界面组件风格" msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." -msgstr "" +msgstr "破折号、搜索条目/结果和应用程序文件夹的半透明样式。" #: overview.ui:44 msgid "Application folder blur" @@ -360,15 +364,15 @@ msgstr "应用程序文件夹模糊" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "使应用程序文件夹对话框的背景模糊。" #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "应用程序文件夹对话框样式" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." -msgstr "" +msgstr "应用程序文件夹对话框的半透明样式。" #: overview.ui:79 overview.ui:88 msgid "Do not style" @@ -404,10 +408,12 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"覆盖面板的背景以使用透明或半透明背景。\n" +"除非您想自定义 GNOME 主题,否则推荐使用。" #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "面板背景的透明/半透明样式。" #: panel.ui:79 msgid "Disable when a window is near" @@ -435,17 +441,18 @@ msgstr "在概览界面时不禁用模糊,最好与静态模糊一起使用。 #: panel.ui:118 msgid "Blur original panel with Dash to Panel" -msgstr "" +msgstr "使用 Dash to Panel 模糊原始面板" #: panel.ui:119 msgid "" "Enables the blurring of the original panel with Dash to Panel, if selected " "in the extension's options." -msgstr "" +msgstr "如果在扩展程序的选项中选择了“Dash to Panel”,则可以使用“Dash to " +"Panel”对原始面板进行模糊处理。" #: panel.ui:138 msgid "Contrasted" -msgstr "" +msgstr "对比" #: window-row.ui:4 msgid "Window Name" From fb34041339c4687c765721cc122d05878814d4e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Thu, 3 Aug 2023 11:52:03 +0200 Subject: [PATCH 191/212] Fix #415 --- src/stylesheet.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/stylesheet.css b/src/stylesheet.css index a3449839..91cfb1f7 100644 --- a/src/stylesheet.css +++ b/src/stylesheet.css @@ -106,6 +106,11 @@ * `.overview-components-transparent` */ +.overview-components-transparent .workspace-thumbnail { + background-color: rgba(0, 0, 0, 0); + border: 1px solid rgba(100, 100, 100, 0.35); +} + .overview-components-transparent .search-entry { color: white; background-color: rgba(0, 0, 0, 0); @@ -160,6 +165,10 @@ * `.overview-components-light` */ +.overview-components-light .workspace-thumbnail { + background-color: rgba(200, 200, 200, 0.2); +} + .overview-components-light .search-entry { color: white; background-color: rgba(200, 200, 200, 0.2); @@ -215,6 +224,10 @@ * `.overview-components-dark` */ +.overview-components-dark .workspace-thumbnail { + background-color: rgba(100, 100, 100, 0.35); +} + .overview-components-dark .search-entry { color: white; background-color: rgba(100, 100, 100, 0.35); From 28a669d1558659c714bfa1c1ac8661fde69ca9d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Thu, 3 Aug 2023 11:53:47 +0200 Subject: [PATCH 192/212] Fix comma in metadata --- metadata.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata.json b/metadata.json index ee201932..ed2009d7 100644 --- a/metadata.json +++ b/metadata.json @@ -5,7 +5,7 @@ "42", "43", "44", - "45 + "45" ], "url": "https://github.com/aunetx/gnome-shell-extension-blur-my-shell", "uuid": "blur-my-shell@aunetx", @@ -18,4 +18,4 @@ "kofi": "aunetx" }, "version": 47 -} +} \ No newline at end of file From b8dfa8cabcdb86817b3480e2b43bd9019a6275fe Mon Sep 17 00:00:00 2001 From: Said Isazada Date: Tue, 8 Aug 2023 01:04:22 +0200 Subject: [PATCH 193/212] Added translation using Weblate (Azerbaijani) --- po/az.po | 450 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 450 insertions(+) create mode 100644 po/az.po diff --git a/po/az.po b/po/az.po new file mode 100644 index 00000000..845191ec --- /dev/null +++ b/po/az.po @@ -0,0 +1,450 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the blur-my-shell@aunetx package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: blur-my-shell@aunetx\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-06-29 16:20+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: az\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications.ui:5 +msgid "Applications" +msgstr "" + +#: applications.ui:10 +msgid "Applications blur (beta)" +msgstr "" + +#: applications.ui:11 +msgid "" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" +" " +msgstr "" + +#: applications.ui:28 +msgid "Opacity" +msgstr "" + +#: applications.ui:29 +msgid "" +"The opacity of the window on top of the blur effect, a higher value will be " +"more legible." +msgstr "" + +#: applications.ui:51 +msgid "Blur on overview" +msgstr "" + +#: applications.ui:52 +msgid "" +"Forces the blur to be properly shown on all workspaces on overview.\n" +"This may cause some latency or performance issues." +msgstr "" + +#: applications.ui:67 +msgid "Enable all by default" +msgstr "" + +#: applications.ui:68 +msgid "" +"Adds blur behind all windows by default.\n" +"Not recommended because of performance and stability issues." +msgstr "" + +#: applications.ui:85 +msgid "Whitelist" +msgstr "" + +#: applications.ui:86 +msgid "A list of windows to blur." +msgstr "" + +#: applications.ui:104 applications.ui:141 +msgid "Add Window" +msgstr "" + +#: applications.ui:122 +msgid "Blacklist" +msgstr "" + +#: applications.ui:123 +msgid "A list of windows not to blur." +msgstr "" + +#: customize-row.ui:4 +msgid "Customize properties" +msgstr "" + +#: customize-row.ui:5 +msgid "" +"Uses customized blur properties, instead of the ones set in the General page." +msgstr "" + +#: customize-row.ui:10 general.ui:15 +msgid "Sigma" +msgstr "" + +#: customize-row.ui:11 general.ui:16 +msgid "The intensity of the blur." +msgstr "" + +#: customize-row.ui:31 general.ui:35 +msgid "Brightness" +msgstr "" + +#: customize-row.ui:32 general.ui:36 +msgid "" +"The brightness of the blur effect, a high value might make the text harder " +"to read." +msgstr "" + +#: customize-row.ui:52 general.ui:55 +msgid "Color" +msgstr "" + +#: customize-row.ui:53 general.ui:56 +msgid "" +"Changes the color of the blur. The opacity of the color controls how much it " +"is blended into the blur effect." +msgstr "" + +#: customize-row.ui:71 general.ui:73 +msgid "Noise amount" +msgstr "" + +#: customize-row.ui:72 general.ui:74 +msgid "" +"The amount of noise to add to the blur effect, useful on low-contrast " +"screens or for aesthetic purpose." +msgstr "" + +#: customize-row.ui:92 general.ui:94 +msgid "Noise lightness" +msgstr "" + +#: customize-row.ui:93 general.ui:95 +msgid "The lightness of the noise added to the blur effect." +msgstr "" + +#: customize-row.ui:113 +msgid "Notice" +msgstr "" + +#: customize-row.ui:114 +msgid "" +"Noise and color can't be activated on dynamically blurred components, such " +"as this one." +msgstr "" + +#: dash.ui:5 +msgid "Dash" +msgstr "" + +#: dash.ui:10 +msgid "Dash to Dock blur" +msgstr "" + +#: dash.ui:11 +msgid "Blur the background of the Dash to Dock extension, if it is used." +msgstr "" + +#: dash.ui:26 panel.ui:56 +msgid "Override background" +msgstr "" + +#: dash.ui:27 +msgid "" +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." +msgstr "" + +#: dash.ui:50 panel.ui:41 +msgid "Disable in overview" +msgstr "" + +#: dash.ui:51 +msgid "Disables the blur from Dash to Dock when entering the overview." +msgstr "" + +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:135 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:136 +msgid "Light" +msgstr "" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:137 +msgid "Dark" +msgstr "" + +#: general.ui:5 +msgid "General" +msgstr "" + +#: general.ui:10 +msgid "Blur preferences" +msgstr "" + +#: general.ui:11 +msgid "Global blur preferences, used by all components by default." +msgstr "" + +#: general.ui:117 +msgid "Performance" +msgstr "" + +#: general.ui:118 +msgid "Various options to tweak the performance." +msgstr "" + +#: general.ui:122 +msgid "Color and noise effects" +msgstr "" + +#: general.ui:123 +msgid "" +"Globally disables noise and color effects which may improve performance on " +"low-end systems." +msgstr "" + +#: general.ui:135 +msgid "Hack level" +msgstr "" + +#: general.ui:136 +msgid "" +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." +msgstr "" + +#: general.ui:151 +msgid "Debug" +msgstr "" + +#: general.ui:152 +msgid "" +"Makes the extension verbose in logs, activate when you need to report an " +"issue." +msgstr "" + +#: general.ui:167 +msgid "Reset preferences" +msgstr "" + +#: general.ui:168 +msgid "Resets preferences of Blur my Shell irreversibly." +msgstr "" + +#: general.ui:187 +msgid "Reset" +msgstr "" + +#: general.ui:228 +msgid "High performances" +msgstr "" + +#: general.ui:229 +msgid "Default" +msgstr "" + +#: general.ui:230 +msgid "High quality" +msgstr "" + +#: general.ui:231 +msgid "No artifact" +msgstr "" + +#: menu.ui:6 +msgid "Project page" +msgstr "" + +#: menu.ui:10 +msgid "Report a Bug" +msgstr "" + +#: menu.ui:14 +msgid "License" +msgstr "" + +#: menu.ui:18 +msgid "Donate" +msgstr "" + +#: other.ui:5 +msgid "Other" +msgstr "" + +#: other.ui:10 +msgid "Lockscreen blur" +msgstr "" + +#: other.ui:11 +msgid "Change the blur of the lockscreen to use this extension's preferences." +msgstr "" + +#: other.ui:28 +msgid "Screenshot blur" +msgstr "" + +#: other.ui:29 +msgid "Add blur to the background of the window selector in the screenshot UI." +msgstr "" + +#: other.ui:46 +msgid "Window list extension blur" +msgstr "" + +#: other.ui:47 +msgid "Make the window-list extension blurred, if it is used." +msgstr "" + +#: overview.ui:5 +msgid "Overview" +msgstr "" + +#: overview.ui:10 +msgid "Background blur" +msgstr "" + +#: overview.ui:11 +msgid "Add blur to the overview background, using the wallpaper picture." +msgstr "" + +#: overview.ui:26 +msgid "Overview components style" +msgstr "" + +#: overview.ui:27 +msgid "" +"The semi-transparent style for the dash, search entry/results, and " +"application folders." +msgstr "" + +#: overview.ui:44 +msgid "Application folder blur" +msgstr "" + +#: overview.ui:45 +msgid "Makes the background of application folder dialogs blurred." +msgstr "" + +#: overview.ui:60 +msgid "Application folder dialogs style" +msgstr "" + +#: overview.ui:61 +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" + +#: overview.ui:79 overview.ui:88 +msgid "Do not style" +msgstr "" + +#: panel.ui:5 +msgid "Panel" +msgstr "" + +#: panel.ui:10 +msgid "Panel blur" +msgstr "" + +#: panel.ui:11 +msgid "Blur the top panel using the background image." +msgstr "" + +#: panel.ui:26 +msgid "Static blur" +msgstr "" + +#: panel.ui:27 +msgid "Uses a static blurred image, more performant and stable." +msgstr "" + +#: panel.ui:42 +msgid "Disables the blur from the panel when entering the overview." +msgstr "" + +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" + +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 +msgid "Disable when a window is near" +msgstr "" + +#: panel.ui:80 +msgid "Disables the transparency of the panel when a window is near it." +msgstr "" + +#: panel.ui:97 +msgid "Compatibility" +msgstr "" + +#: panel.ui:98 +msgid "Various options to provide compatibility with other extensions." +msgstr "" + +#: panel.ui:103 +msgid "Hidetopbar extension" +msgstr "" + +#: panel.ui:104 +msgid "Does not disable the blur in overview, best used with static blur." +msgstr "" + +#: panel.ui:118 +msgid "Blur original panel with Dash to Panel" +msgstr "" + +#: panel.ui:119 +msgid "" +"Enables the blurring of the original panel with Dash to Panel, if selected " +"in the extension's options." +msgstr "" + +#: panel.ui:138 +msgid "Contrasted" +msgstr "" + +#: window-row.ui:4 +msgid "Window Name" +msgstr "" + +#: window-row.ui:8 +msgid "Select window" +msgstr "" + +#: window-row.ui:9 +msgid "Pick a window or select it by its classname." +msgstr "" From 40bb85baac2e01d8ebd140323cb085fa95db20ea Mon Sep 17 00:00:00 2001 From: Heki Date: Tue, 8 Aug 2023 18:44:40 +0000 Subject: [PATCH 194/212] Translated using Weblate (Slovenian) Currently translated at 100.0% (99 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/sl/ --- po/sl.po | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/po/sl.po b/po/sl.po index 8f3c2f0e..5dab428d 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Oman Luka \n" +"PO-Revision-Date: 2023-08-09 18:48+0000\n" +"Last-Translator: Heki \n" "Language-Team: Slovenian \n" "Language: sl\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" -"X-Generator: Weblate 4.18.1\n" +"X-Generator: Weblate 5.0-dev\n" #: applications.ui:5 msgid "Applications" @@ -471,17 +471,19 @@ msgstr "" #: panel.ui:118 msgid "Blur original panel with Dash to Panel" -msgstr "" +msgstr "Zamegli prvotno ploščo z Dash to Panel" #: panel.ui:119 msgid "" "Enables the blurring of the original panel with Dash to Panel, if selected " "in the extension's options." msgstr "" +"Omogoča zameglitev izvirne plošče z Dash to Panel, če je izbrana v možnostih " +"razširitve." #: panel.ui:138 msgid "Contrasted" -msgstr "" +msgstr "Kontrastno" #: window-row.ui:4 msgid "Window Name" From ca889679e77b95676228ec10779e1fef72685c65 Mon Sep 17 00:00:00 2001 From: Said Isazada Date: Mon, 7 Aug 2023 23:04:44 +0000 Subject: [PATCH 195/212] Translated using Weblate (Azerbaijani) Currently translated at 4.0% (4 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/az/ --- po/az.po | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/po/az.po b/po/az.po index 845191ec..337f9401 100644 --- a/po/az.po +++ b/po/az.po @@ -8,21 +8,24 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-08-09 18:48+0000\n" +"Last-Translator: Said Isazada \n" +"Language-Team: Azerbaijani \n" "Language: az\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.0-dev\n" #: applications.ui:5 msgid "Applications" -msgstr "" +msgstr "Proqlamlar" #: applications.ui:10 msgid "Applications blur (beta)" -msgstr "" +msgstr "Proqram bulanıqlığı (beta)" #: applications.ui:11 msgid "" @@ -31,10 +34,14 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Proqramlara bulanıqlıq əlavə edir. Bu hələ beta funksionallığıdır.\n" +"Mümkün olan ən yaxşı nəticələr üçün, \"Artefaktsız\" seçimini \"Ümumi → Hack " +"səviyyəsi\" parametrində seçin.\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Qeyri-şəffaflıq" #: applications.ui:29 msgid "" From 5b03db797f9c3c4d28902243aa2bdc7a7a13d411 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sabri=20=C3=9Cnal?= Date: Fri, 18 Aug 2023 00:29:20 +0000 Subject: [PATCH 196/212] Translated using Weblate (Turkish) Currently translated at 100.0% (99 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/tr/ --- po/tr.po | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/po/tr.po b/po/tr.po index 1e7d0883..6df5857f 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: 2023-06-29 14:17+0000\n" -"Last-Translator: Taylan Tatlı \n" +"PO-Revision-Date: 2023-08-19 04:19+0000\n" +"Last-Translator: Sabri Ünal \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.18.1\n" +"X-Generator: Weblate 5.0-dev\n" #: applications.ui:5 msgid "Applications" @@ -475,17 +475,19 @@ msgstr "" #: panel.ui:118 msgid "Blur original panel with Dash to Panel" -msgstr "" +msgstr "Dash to Panel ile özgün paneli bulanıklaştır" #: panel.ui:119 msgid "" "Enables the blurring of the original panel with Dash to Panel, if selected " "in the extension's options." msgstr "" +"Uzantının seçeneklerinde seçilirse Dash to Panel ile özgün panelin " +"bulanıklaştırılmasını etkinleştirir." #: panel.ui:138 msgid "Contrasted" -msgstr "" +msgstr "Zıt" #: window-row.ui:4 msgid "Window Name" From 2a9d815ec2f76c674fd369625a9399829840cc77 Mon Sep 17 00:00:00 2001 From: Fernando Lopes <118869201+plasmus777@users.noreply.github.com> Date: Wed, 30 Aug 2023 04:28:01 +0200 Subject: [PATCH 197/212] Added translation using Weblate (Portuguese (Brazil)) --- po/pt_BR.po | 450 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 450 insertions(+) create mode 100644 po/pt_BR.po diff --git a/po/pt_BR.po b/po/pt_BR.po new file mode 100644 index 00000000..11924b01 --- /dev/null +++ b/po/pt_BR.po @@ -0,0 +1,450 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the blur-my-shell@aunetx package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: blur-my-shell@aunetx\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-06-29 16:20+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications.ui:5 +msgid "Applications" +msgstr "" + +#: applications.ui:10 +msgid "Applications blur (beta)" +msgstr "" + +#: applications.ui:11 +msgid "" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" +" " +msgstr "" + +#: applications.ui:28 +msgid "Opacity" +msgstr "" + +#: applications.ui:29 +msgid "" +"The opacity of the window on top of the blur effect, a higher value will be " +"more legible." +msgstr "" + +#: applications.ui:51 +msgid "Blur on overview" +msgstr "" + +#: applications.ui:52 +msgid "" +"Forces the blur to be properly shown on all workspaces on overview.\n" +"This may cause some latency or performance issues." +msgstr "" + +#: applications.ui:67 +msgid "Enable all by default" +msgstr "" + +#: applications.ui:68 +msgid "" +"Adds blur behind all windows by default.\n" +"Not recommended because of performance and stability issues." +msgstr "" + +#: applications.ui:85 +msgid "Whitelist" +msgstr "" + +#: applications.ui:86 +msgid "A list of windows to blur." +msgstr "" + +#: applications.ui:104 applications.ui:141 +msgid "Add Window" +msgstr "" + +#: applications.ui:122 +msgid "Blacklist" +msgstr "" + +#: applications.ui:123 +msgid "A list of windows not to blur." +msgstr "" + +#: customize-row.ui:4 +msgid "Customize properties" +msgstr "" + +#: customize-row.ui:5 +msgid "" +"Uses customized blur properties, instead of the ones set in the General page." +msgstr "" + +#: customize-row.ui:10 general.ui:15 +msgid "Sigma" +msgstr "" + +#: customize-row.ui:11 general.ui:16 +msgid "The intensity of the blur." +msgstr "" + +#: customize-row.ui:31 general.ui:35 +msgid "Brightness" +msgstr "" + +#: customize-row.ui:32 general.ui:36 +msgid "" +"The brightness of the blur effect, a high value might make the text harder " +"to read." +msgstr "" + +#: customize-row.ui:52 general.ui:55 +msgid "Color" +msgstr "" + +#: customize-row.ui:53 general.ui:56 +msgid "" +"Changes the color of the blur. The opacity of the color controls how much it " +"is blended into the blur effect." +msgstr "" + +#: customize-row.ui:71 general.ui:73 +msgid "Noise amount" +msgstr "" + +#: customize-row.ui:72 general.ui:74 +msgid "" +"The amount of noise to add to the blur effect, useful on low-contrast " +"screens or for aesthetic purpose." +msgstr "" + +#: customize-row.ui:92 general.ui:94 +msgid "Noise lightness" +msgstr "" + +#: customize-row.ui:93 general.ui:95 +msgid "The lightness of the noise added to the blur effect." +msgstr "" + +#: customize-row.ui:113 +msgid "Notice" +msgstr "" + +#: customize-row.ui:114 +msgid "" +"Noise and color can't be activated on dynamically blurred components, such " +"as this one." +msgstr "" + +#: dash.ui:5 +msgid "Dash" +msgstr "" + +#: dash.ui:10 +msgid "Dash to Dock blur" +msgstr "" + +#: dash.ui:11 +msgid "Blur the background of the Dash to Dock extension, if it is used." +msgstr "" + +#: dash.ui:26 panel.ui:56 +msgid "Override background" +msgstr "" + +#: dash.ui:27 +msgid "" +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." +msgstr "" + +#: dash.ui:50 panel.ui:41 +msgid "Disable in overview" +msgstr "" + +#: dash.ui:51 +msgid "Disables the blur from Dash to Dock when entering the overview." +msgstr "" + +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:135 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:136 +msgid "Light" +msgstr "" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:137 +msgid "Dark" +msgstr "" + +#: general.ui:5 +msgid "General" +msgstr "" + +#: general.ui:10 +msgid "Blur preferences" +msgstr "" + +#: general.ui:11 +msgid "Global blur preferences, used by all components by default." +msgstr "" + +#: general.ui:117 +msgid "Performance" +msgstr "" + +#: general.ui:118 +msgid "Various options to tweak the performance." +msgstr "" + +#: general.ui:122 +msgid "Color and noise effects" +msgstr "" + +#: general.ui:123 +msgid "" +"Globally disables noise and color effects which may improve performance on " +"low-end systems." +msgstr "" + +#: general.ui:135 +msgid "Hack level" +msgstr "" + +#: general.ui:136 +msgid "" +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." +msgstr "" + +#: general.ui:151 +msgid "Debug" +msgstr "" + +#: general.ui:152 +msgid "" +"Makes the extension verbose in logs, activate when you need to report an " +"issue." +msgstr "" + +#: general.ui:167 +msgid "Reset preferences" +msgstr "" + +#: general.ui:168 +msgid "Resets preferences of Blur my Shell irreversibly." +msgstr "" + +#: general.ui:187 +msgid "Reset" +msgstr "" + +#: general.ui:228 +msgid "High performances" +msgstr "" + +#: general.ui:229 +msgid "Default" +msgstr "" + +#: general.ui:230 +msgid "High quality" +msgstr "" + +#: general.ui:231 +msgid "No artifact" +msgstr "" + +#: menu.ui:6 +msgid "Project page" +msgstr "" + +#: menu.ui:10 +msgid "Report a Bug" +msgstr "" + +#: menu.ui:14 +msgid "License" +msgstr "" + +#: menu.ui:18 +msgid "Donate" +msgstr "" + +#: other.ui:5 +msgid "Other" +msgstr "" + +#: other.ui:10 +msgid "Lockscreen blur" +msgstr "" + +#: other.ui:11 +msgid "Change the blur of the lockscreen to use this extension's preferences." +msgstr "" + +#: other.ui:28 +msgid "Screenshot blur" +msgstr "" + +#: other.ui:29 +msgid "Add blur to the background of the window selector in the screenshot UI." +msgstr "" + +#: other.ui:46 +msgid "Window list extension blur" +msgstr "" + +#: other.ui:47 +msgid "Make the window-list extension blurred, if it is used." +msgstr "" + +#: overview.ui:5 +msgid "Overview" +msgstr "" + +#: overview.ui:10 +msgid "Background blur" +msgstr "" + +#: overview.ui:11 +msgid "Add blur to the overview background, using the wallpaper picture." +msgstr "" + +#: overview.ui:26 +msgid "Overview components style" +msgstr "" + +#: overview.ui:27 +msgid "" +"The semi-transparent style for the dash, search entry/results, and " +"application folders." +msgstr "" + +#: overview.ui:44 +msgid "Application folder blur" +msgstr "" + +#: overview.ui:45 +msgid "Makes the background of application folder dialogs blurred." +msgstr "" + +#: overview.ui:60 +msgid "Application folder dialogs style" +msgstr "" + +#: overview.ui:61 +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" + +#: overview.ui:79 overview.ui:88 +msgid "Do not style" +msgstr "" + +#: panel.ui:5 +msgid "Panel" +msgstr "" + +#: panel.ui:10 +msgid "Panel blur" +msgstr "" + +#: panel.ui:11 +msgid "Blur the top panel using the background image." +msgstr "" + +#: panel.ui:26 +msgid "Static blur" +msgstr "" + +#: panel.ui:27 +msgid "Uses a static blurred image, more performant and stable." +msgstr "" + +#: panel.ui:42 +msgid "Disables the blur from the panel when entering the overview." +msgstr "" + +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" + +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 +msgid "Disable when a window is near" +msgstr "" + +#: panel.ui:80 +msgid "Disables the transparency of the panel when a window is near it." +msgstr "" + +#: panel.ui:97 +msgid "Compatibility" +msgstr "" + +#: panel.ui:98 +msgid "Various options to provide compatibility with other extensions." +msgstr "" + +#: panel.ui:103 +msgid "Hidetopbar extension" +msgstr "" + +#: panel.ui:104 +msgid "Does not disable the blur in overview, best used with static blur." +msgstr "" + +#: panel.ui:118 +msgid "Blur original panel with Dash to Panel" +msgstr "" + +#: panel.ui:119 +msgid "" +"Enables the blurring of the original panel with Dash to Panel, if selected " +"in the extension's options." +msgstr "" + +#: panel.ui:138 +msgid "Contrasted" +msgstr "" + +#: window-row.ui:4 +msgid "Window Name" +msgstr "" + +#: window-row.ui:8 +msgid "Select window" +msgstr "" + +#: window-row.ui:9 +msgid "Pick a window or select it by its classname." +msgstr "" From abdecac086470ef8820a53aac63a8de5c3d9468c Mon Sep 17 00:00:00 2001 From: Fernando Lopes <118869201+plasmus777@users.noreply.github.com> Date: Wed, 30 Aug 2023 02:30:45 +0000 Subject: [PATCH 198/212] Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (99 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/pt_BR/ --- po/pt_BR.po | 213 +++++++++++++++++++++++++++++++++------------------- 1 file changed, 134 insertions(+), 79 deletions(-) diff --git a/po/pt_BR.po b/po/pt_BR.po index 11924b01..61dcffe4 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -8,21 +8,25 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-08-31 03:58+0000\n" +"Last-Translator: Fernando Lopes <118869201+plasmus777@users.noreply.github." +"com>\n" +"Language-Team: Portuguese (Brazil) \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.0.1-dev\n" #: applications.ui:5 msgid "Applications" -msgstr "" +msgstr "Aplicativos" #: applications.ui:10 msgid "Applications blur (beta)" -msgstr "" +msgstr "Desfoque de aplicativos (beta)" #: applications.ui:11 msgid "" @@ -31,205 +35,232 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Adiciona desfoque aos aplicativos. Esta funcionalidade ainda está em estágio " +"beta.\n" +"Para obter os melhores resultados possíveis, certifique-se de escolher a " +"opção \"Nenhum artefato\" na preferência \"Geral → Nível de Modificação\".\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Opacidade" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"A opacidade da janela em cima do efeito de desfoque, um valor mais alto será " +"mais legível." #: applications.ui:51 msgid "Blur on overview" -msgstr "" +msgstr "Desfoque na visão geral" #: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Força o desfoque a ser exibido corretamente em todos os espaços de trabalho " +"na visão geral.\n" +"Isso pode causar alguns problemas de latência ou desempenho." #: applications.ui:67 msgid "Enable all by default" -msgstr "" +msgstr "Habilitar tudo por padrão" #: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Adiciona desfoque atrás de todas as janelas por padrão.\n" +"Não recomendado devido a problemas de desempenho e estabilidade." #: applications.ui:85 msgid "Whitelist" -msgstr "" +msgstr "Lista branca" #: applications.ui:86 msgid "A list of windows to blur." -msgstr "" +msgstr "Uma lista de janelas para desfocar." #: applications.ui:104 applications.ui:141 msgid "Add Window" -msgstr "" +msgstr "Adicionar Janela" #: applications.ui:122 msgid "Blacklist" -msgstr "" +msgstr "Lista negra" #: applications.ui:123 msgid "A list of windows not to blur." -msgstr "" +msgstr "Uma lista de janelas para não desfocar." #: customize-row.ui:4 msgid "Customize properties" -msgstr "" +msgstr "Personalizar propriedades" #: customize-row.ui:5 msgid "" "Uses customized blur properties, instead of the ones set in the General page." msgstr "" +"Usa propriedades de desfoque personalizadas, em vez das definidas na página " +"Geral." #: customize-row.ui:10 general.ui:15 msgid "Sigma" -msgstr "" +msgstr "Sigma" #: customize-row.ui:11 general.ui:16 msgid "The intensity of the blur." -msgstr "" +msgstr "A intensidade do desfoque." #: customize-row.ui:31 general.ui:35 msgid "Brightness" -msgstr "" +msgstr "Brilho" #: customize-row.ui:32 general.ui:36 msgid "" "The brightness of the blur effect, a high value might make the text harder " "to read." msgstr "" +"O brilho do efeito de desfoque, um valor alto pode tornar o texto mais " +"difícil de ler." #: customize-row.ui:52 general.ui:55 msgid "Color" -msgstr "" +msgstr "Cor" #: customize-row.ui:53 general.ui:56 msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." msgstr "" +"Altera a cor do desfoque. A opacidade da cor controla o quanto ela é " +"misturada ao efeito de desfoque." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" -msgstr "" +msgstr "Quantidade de ruído" #: customize-row.ui:72 general.ui:74 msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." msgstr "" +"A quantidade de ruído para adicionar ao efeito de desfoque, útil em telas de " +"baixo contraste ou para fins estéticos." #: customize-row.ui:92 general.ui:94 msgid "Noise lightness" -msgstr "" +msgstr "Leveza do ruído" #: customize-row.ui:93 general.ui:95 msgid "The lightness of the noise added to the blur effect." -msgstr "" +msgstr "A leveza do ruído adicionado ao efeito de desfoque." #: customize-row.ui:113 msgid "Notice" -msgstr "" +msgstr "Aviso" #: customize-row.ui:114 msgid "" "Noise and color can't be activated on dynamically blurred components, such " "as this one." msgstr "" +"O ruído e a cor não podem ser ativados em componentes desfocados " +"dinamicamente, como este." #: dash.ui:5 msgid "Dash" -msgstr "" +msgstr "Dash" #: dash.ui:10 msgid "Dash to Dock blur" -msgstr "" +msgstr "Desfoque do Dash to Dock" #: dash.ui:11 msgid "Blur the background of the Dash to Dock extension, if it is used." -msgstr "" +msgstr "Desfoque o plano de fundo da extensão Dash to Dock, se for usada." #: dash.ui:26 panel.ui:56 msgid "Override background" -msgstr "" +msgstr "Substituir plano de fundo" #: dash.ui:27 msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Torna o plano de fundo transparente ou semitransparente, desabilite isso " +"para usar as preferências do Dash to Dock." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Estilo de plano de fundo" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "O estilo transparente/semitransparente para o fundo da doca." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" -msgstr "" +msgstr "Desativar na visão geral" #: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." -msgstr "" +msgstr "Desativa o desfoque do Dash to Dock ao entrar na visão geral." #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:135 msgid "Transparent" -msgstr "" +msgstr "Transparente" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:136 msgid "Light" -msgstr "" +msgstr "Claro" #: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:137 msgid "Dark" -msgstr "" +msgstr "Escuro" #: general.ui:5 msgid "General" -msgstr "" +msgstr "Geral" #: general.ui:10 msgid "Blur preferences" -msgstr "" +msgstr "Preferências de desfoque" #: general.ui:11 msgid "Global blur preferences, used by all components by default." msgstr "" +"Preferências de desfoque globais, usadas por todos os componentes por padrão." #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Desempenho" #: general.ui:118 msgid "Various options to tweak the performance." -msgstr "" +msgstr "Várias opções para ajustar o desempenho." #: general.ui:122 msgid "Color and noise effects" -msgstr "" +msgstr "Efeitos de cor e ruído" #: general.ui:123 msgid "" "Globally disables noise and color effects which may improve performance on " "low-end systems." msgstr "" +"Globalmente desativa os efeitos de ruído e cor que podem melhorar o " +"desempenho em sistemas mais fracos." #: general.ui:135 msgid "Hack level" -msgstr "" +msgstr "Nível de modificação" #: general.ui:136 msgid "" @@ -239,154 +270,172 @@ msgid "" "This option will entirely disable clipped redraws in GNOME shell, and may " "impact performance significantly but will completely fix the blur effect." msgstr "" +"Altera o comportamento do efeito de desfoque dinâmico.\n" +"O valor padrão é altamente recomendado, a menos que você use o desfoque do " +"aplicativo, caso em que \"Nenhum artefato\" é melhor.\n" +"Essa opção desabilitará totalmente os redesenhos cortados no shell do GNOME " +"e poderá afetar significativamente o desempenho, mas corrigirá completamente " +"o efeito de desfoque." #: general.ui:151 msgid "Debug" -msgstr "" +msgstr "Depuração" #: general.ui:152 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." msgstr "" +"Torna a extensão detalhada nos logs, ative quando você precisa relatar um " +"problema." #: general.ui:167 msgid "Reset preferences" -msgstr "" +msgstr "Redefinir preferências" #: general.ui:168 msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "Redefine as preferências do Blur my Shell de forma irreversível." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Redefinir" #: general.ui:228 msgid "High performances" -msgstr "" +msgstr "Altos desempenhos" #: general.ui:229 msgid "Default" -msgstr "" +msgstr "Padrão" #: general.ui:230 msgid "High quality" -msgstr "" +msgstr "Alta qualidade" #: general.ui:231 msgid "No artifact" -msgstr "" +msgstr "Nenhum artefato" #: menu.ui:6 msgid "Project page" -msgstr "" +msgstr "Página do projeto" #: menu.ui:10 msgid "Report a Bug" -msgstr "" +msgstr "Relatar um Bug" #: menu.ui:14 msgid "License" -msgstr "" +msgstr "Licença" #: menu.ui:18 msgid "Donate" -msgstr "" +msgstr "Doar" #: other.ui:5 msgid "Other" -msgstr "" +msgstr "Outro" #: other.ui:10 msgid "Lockscreen blur" -msgstr "" +msgstr "Desfoque da tela de bloqueio" #: other.ui:11 msgid "Change the blur of the lockscreen to use this extension's preferences." msgstr "" +"Altere o desfoque da tela de bloqueio para usar as preferências desta " +"extensão." #: other.ui:28 msgid "Screenshot blur" -msgstr "" +msgstr "Desfoque da captura de tela" #: other.ui:29 msgid "Add blur to the background of the window selector in the screenshot UI." msgstr "" +"Adicione desfoque ao plano de fundo do seletor de janela na interface do " +"usuário da captura de tela." #: other.ui:46 msgid "Window list extension blur" -msgstr "" +msgstr "Desfoque da extensão da lista de janelas" #: other.ui:47 msgid "Make the window-list extension blurred, if it is used." -msgstr "" +msgstr "Torne a extensão da lista de janelas desfocada, se for usada." #: overview.ui:5 msgid "Overview" -msgstr "" +msgstr "Visão geral" #: overview.ui:10 msgid "Background blur" -msgstr "" +msgstr "Desfoque do plano de fundo" #: overview.ui:11 msgid "Add blur to the overview background, using the wallpaper picture." msgstr "" +"Adicione desfoque ao plano de fundo da visão geral, usando a imagem do papel " +"de parede." #: overview.ui:26 msgid "Overview components style" -msgstr "" +msgstr "Estilo dos componentes da visão geral" #: overview.ui:27 msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" +"O estilo semitransparente para o dash, entrada/resultados de pesquisa e " +"pastas de aplicativos." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Desfoque da pasta do aplicativo" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." msgstr "" +"Torna o plano de fundo das caixas de diálogo da pasta do aplicativo borrado." #: overview.ui:60 msgid "Application folder dialogs style" -msgstr "" +msgstr "Estilo de caixas de diálogo da pasta do aplicativo" #: overview.ui:61 msgid "The semi-transparent style for the application folder dialogs." msgstr "" +"O estilo semitransparente para as caixas de diálogo da pasta do aplicativo." #: overview.ui:79 overview.ui:88 msgid "Do not style" -msgstr "" +msgstr "Não estilizar" #: panel.ui:5 msgid "Panel" -msgstr "" +msgstr "Painel" #: panel.ui:10 msgid "Panel blur" -msgstr "" +msgstr "Desfoque do painel" #: panel.ui:11 msgid "Blur the top panel using the background image." -msgstr "" +msgstr "Desfoque o painel superior usando a imagem de fundo." #: panel.ui:26 msgid "Static blur" -msgstr "" +msgstr "Desfoque estático" #: panel.ui:27 msgid "Uses a static blurred image, more performant and stable." -msgstr "" +msgstr "Usa uma imagem estática desfocada, mais eficiente e estável." #: panel.ui:42 msgid "Disables the blur from the panel when entering the overview." -msgstr "" +msgstr "Desativa o desfoque do painel ao entrar na visão geral." #: panel.ui:57 msgid "" @@ -394,57 +443,63 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Substitua o plano de fundo do painel para usar um transparente ou " +"semitransparente.\n" +"Recomendado, a menos que você queira personalizar seu tema GNOME." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "O estilo transparente/semitransparente para o fundo do painel." #: panel.ui:79 msgid "Disable when a window is near" -msgstr "" +msgstr "Desativar quando uma janela está próxima" #: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "Desativa a transparência do painel quando uma janela está perto dele." #: panel.ui:97 msgid "Compatibility" -msgstr "" +msgstr "Compatibilidade" #: panel.ui:98 msgid "Various options to provide compatibility with other extensions." -msgstr "" +msgstr "Várias opções para fornecer compatibilidade com outras extensões." #: panel.ui:103 msgid "Hidetopbar extension" -msgstr "" +msgstr "Extensão Hidetopbar" #: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" +"Não desativa o desfoque na visão geral, melhor usado com desfoque estático." #: panel.ui:118 msgid "Blur original panel with Dash to Panel" -msgstr "" +msgstr "Desfoque o painel original com Dash to Panel" #: panel.ui:119 msgid "" "Enables the blurring of the original panel with Dash to Panel, if selected " "in the extension's options." msgstr "" +"Habilita o desfoque do painel original com Dash to Panel, se selecionado nas " +"opções da extensão." #: panel.ui:138 msgid "Contrasted" -msgstr "" +msgstr "Contrastado" #: window-row.ui:4 msgid "Window Name" -msgstr "" +msgstr "Nome da Janela" #: window-row.ui:8 msgid "Select window" -msgstr "" +msgstr "Selecionar janela" #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" +msgstr "Escolha uma janela ou selecione-a pelo nome da classe." From 8c8a4c41978481e5821fece722daed32db0e2bfa Mon Sep 17 00:00:00 2001 From: DaPigGuy Date: Sun, 17 Sep 2023 03:37:17 -0700 Subject: [PATCH 199/212] Port to GNOME 45 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Aurélien Hamy --- Makefile | 2 +- metadata.json | 4 +- src/components/appfolders.js | 10 ++-- src/components/applications.js | 13 +++--- src/components/dash_to_dock.js | 10 ++-- src/components/lockscreen.js | 20 ++++---- src/components/overview.js | 20 ++++---- src/components/panel.js | 22 +++++---- src/components/screenshot.js | 16 +++---- src/components/window_list.js | 10 ++-- src/conveniences/connections.js | 4 +- src/conveniences/keys.js | 7 +-- src/conveniences/settings.js | 13 +++--- src/dbus/client.js | 8 ++-- src/dbus/services.js | 16 +++---- src/effects/color_effect.js | 33 ++++++------- src/effects/noise_effect.js | 24 ++++------ src/effects/paint_signals.js | 7 +-- src/extension.js | 57 ++++++++++------------- src/preferences/applications.js | 15 +++--- src/preferences/customize_row.js | 25 +++++----- src/preferences/dash.js | 14 +++--- src/preferences/general.js | 15 +++--- src/preferences/menu.js | 11 +++-- src/preferences/other.js | 18 +++---- src/preferences/overview.js | 16 +++---- src/preferences/panel.js | 14 +++--- src/preferences/window_row.js | 15 +++--- src/prefs.js | 80 ++++++++++++++++---------------- 29 files changed, 252 insertions(+), 267 deletions(-) diff --git a/Makefile b/Makefile index 2563db76..8e2080b3 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ test-shell: install test-prefs: install - gnome-extensions prefs blur-my-shell@aunetx + gnome-extensions prefs $(UUID) remove: diff --git a/metadata.json b/metadata.json index ed2009d7..cadfa99d 100644 --- a/metadata.json +++ b/metadata.json @@ -2,13 +2,11 @@ "description": "Adds a blur look to different parts of the GNOME Shell, including the top panel, dash and overview.\n\nYou can support my work by sponsoring me on:\n- github: https://github.com/sponsors/aunetx\n- ko-fi: https://ko-fi.com/aunetx\n\nNote: if the extension shows an error after updating, please make sure to restart your session to see if it persists. This is due to a bug in gnome shell, which I can't fix by myself.", "name": "Blur my Shell", "shell-version": [ - "42", - "43", - "44", "45" ], "url": "https://github.com/aunetx/gnome-shell-extension-blur-my-shell", "uuid": "blur-my-shell@aunetx", + "gettext-domain": "blur-my-shell", "settings-schema": "org.gnome.shell.extensions.blur-my-shell", "original-authors": [ "me@aunetx.dev" diff --git a/src/components/appfolders.js b/src/components/appfolders.js index b69f49e5..6323865f 100644 --- a/src/components/appfolders.js +++ b/src/components/appfolders.js @@ -1,10 +1,10 @@ 'use strict'; -const { Shell, GLib, Clutter } = imports.gi; -const Main = imports.ui.main; +import Shell from 'gi://Shell'; +import Clutter from 'gi://Clutter'; +import * as Main from 'resource:///org/gnome/shell/ui/main.js'; -const Me = imports.misc.extensionUtils.getCurrentExtension(); -const { PaintSignals } = Me.imports.effects.paint_signals; +import { PaintSignals } from '../effects/paint_signals.js'; const Tweener = imports.tweener.tweener; const transparent = Clutter.Color.from_pixel(0x00000000); @@ -123,7 +123,7 @@ let _zoomAndFadeOut = function () { }; -var AppFoldersBlur = class AppFoldersBlur { +export var AppFoldersBlur = class AppFoldersBlur { constructor(connections, prefs) { this.connections = connections; this.paint_signals = new PaintSignals(connections); diff --git a/src/components/applications.js b/src/components/applications.js index c040451b..38f19455 100644 --- a/src/components/applications.js +++ b/src/components/applications.js @@ -1,13 +1,14 @@ 'use strict'; -const { Shell, Clutter, Meta, GLib } = imports.gi; -const Main = imports.ui.main; +import Shell from 'gi://Shell'; +import Clutter from 'gi://Clutter'; +import Meta from 'gi://Meta'; +import * as Main from 'resource:///org/gnome/shell/ui/main.js'; -const Me = imports.misc.extensionUtils.getCurrentExtension(); -const { PaintSignals } = Me.imports.effects.paint_signals; -const { ApplicationsService } = Me.imports.dbus.services; +import { PaintSignals } from '../effects/paint_signals.js'; +import { ApplicationsService } from '../dbus/services.js'; -var ApplicationsBlur = class ApplicationsBlur { +export var ApplicationsBlur = class ApplicationsBlur { constructor(connections, prefs) { this.connections = connections; this.prefs = prefs; diff --git a/src/components/dash_to_dock.js b/src/components/dash_to_dock.js index a4bdfadd..b18cac91 100644 --- a/src/components/dash_to_dock.js +++ b/src/components/dash_to_dock.js @@ -1,11 +1,11 @@ 'use strict'; -const { St, Shell, GLib } = imports.gi; -const Main = imports.ui.main; +import St from 'gi://St'; +import Shell from 'gi://Shell'; +import * as Main from 'resource:///org/gnome/shell/ui/main.js'; const Signals = imports.signals; -const Me = imports.misc.extensionUtils.getCurrentExtension(); -const { PaintSignals } = Me.imports.effects.paint_signals; +import { PaintSignals } from '../effects/paint_signals.js'; const DASH_STYLES = [ "transparent-dash", @@ -82,7 +82,7 @@ class DashInfos { } } -var DashBlur = class DashBlur { +export var DashBlur = class DashBlur { constructor(connections, prefs) { this.dashes = []; this.connections = connections; diff --git a/src/components/lockscreen.js b/src/components/lockscreen.js index b52acb63..b326ec2f 100644 --- a/src/components/lockscreen.js +++ b/src/components/lockscreen.js @@ -1,13 +1,13 @@ 'use strict'; -const { St, Shell } = imports.gi; -const Main = imports.ui.main; -const Background = imports.ui.background; -const UnlockDialog = imports.ui.unlockDialog.UnlockDialog; +import St from 'gi://St'; +import Shell from 'gi://Shell'; +import * as Main from 'resource:///org/gnome/shell/ui/main.js'; +import * as Background from 'resource:///org/gnome/shell/ui/background.js'; +import { UnlockDialog } from 'resource:///org/gnome/shell/ui/unlockDialog.js'; -const Me = imports.misc.extensionUtils.getCurrentExtension(); -const ColorEffect = Me.imports.effects.color_effect.ColorEffect; -const NoiseEffect = Me.imports.effects.noise_effect.NoiseEffect; +import { ColorEffect } from '../effects/color_effect.js'; +import { NoiseEffect } from '../effects/noise_effect.js'; let sigma; let brightness; @@ -21,7 +21,7 @@ const original_updateBackgroundEffects = UnlockDialog.prototype._updateBackgroundEffects; -var LockscreenBlur = class LockscreenBlur { +export var LockscreenBlur = class LockscreenBlur { constructor(connections, prefs) { this.connections = connections; this.prefs = prefs; @@ -78,13 +78,13 @@ var LockscreenBlur = class LockscreenBlur { let color_effect = new ColorEffect({ name: 'color', color: color - }); + }, this.prefs); let noise_effect = new NoiseEffect({ name: 'noise', noise: noise, lightness: lightness - }); + }, this.prefs); widget.add_effect(color_effect); widget.add_effect(noise_effect); diff --git a/src/components/overview.js b/src/components/overview.js index 0e8fdb81..c517877b 100644 --- a/src/components/overview.js +++ b/src/components/overview.js @@ -1,14 +1,14 @@ 'use strict'; -const { Shell, Gio, Meta } = imports.gi; -const Main = imports.ui.main; +import Shell from 'gi://Shell'; +import Meta from 'gi://Meta'; +import * as Main from 'resource:///org/gnome/shell/ui/main.js'; -const { WorkspaceAnimationController } = imports.ui.workspaceAnimation; +import { WorkspaceAnimationController } from 'resource:///org/gnome/shell/ui/workspaceAnimation.js'; const wac_proto = WorkspaceAnimationController.prototype; -const Me = imports.misc.extensionUtils.getCurrentExtension(); -const ColorEffect = Me.imports.effects.color_effect.ColorEffect; -const NoiseEffect = Me.imports.effects.noise_effect.NoiseEffect; +import { ColorEffect } from '../effects/color_effect.js'; +import { NoiseEffect } from '../effects/noise_effect.js'; const OVERVIEW_COMPONENTS_STYLE = [ "", @@ -18,7 +18,7 @@ const OVERVIEW_COMPONENTS_STYLE = [ ]; -var OverviewBlur = class OverviewBlur { +export var OverviewBlur = class OverviewBlur { constructor(connections, prefs) { this.connections = connections; this.effects = []; @@ -172,7 +172,7 @@ var OverviewBlur = class OverviewBlur { .filter((child) => child instanceof Meta.BackgroundActor); let background = background_group[ - Main.layoutManager.monitors.length - monitor.index - 1 + Main.layoutManager.monitors.length - monitor.index - 1 ]; if (!background) { @@ -200,7 +200,7 @@ var OverviewBlur = class OverviewBlur { color: this.prefs.overview.CUSTOMIZE ? this.prefs.overview.COLOR : this.prefs.COLOR - }); + }, this.prefs); let noise_effect = new NoiseEffect({ noise: this.prefs.overview.CUSTOMIZE @@ -209,7 +209,7 @@ var OverviewBlur = class OverviewBlur { lightness: this.prefs.overview.CUSTOMIZE ? this.prefs.overview.NOISE_LIGHTNESS : this.prefs.NOISE_LIGHTNESS - }); + }, this.prefs); bg_actor.add_effect(color_effect); bg_actor.add_effect(noise_effect); diff --git a/src/components/panel.js b/src/components/panel.js index 408e532e..afc64b25 100644 --- a/src/components/panel.js +++ b/src/components/panel.js @@ -1,12 +1,14 @@ 'use strict'; -const { St, Shell, Meta, Gio, GLib } = imports.gi; -const Main = imports.ui.main; +import St from 'gi://St'; +import Shell from 'gi://Shell'; +import Meta from 'gi://Meta'; +import Mtk from 'gi://Mtk'; +import * as Main from 'resource:///org/gnome/shell/ui/main.js'; -const Me = imports.misc.extensionUtils.getCurrentExtension(); -const { PaintSignals } = Me.imports.effects.paint_signals; -const ColorEffect = Me.imports.effects.color_effect.ColorEffect; -const NoiseEffect = Me.imports.effects.noise_effect.NoiseEffect; +import { PaintSignals } from '../effects/paint_signals.js'; +import { ColorEffect } from '../effects/color_effect.js'; +import { NoiseEffect } from '../effects/noise_effect.js'; const DASH_TO_PANEL_UUID = 'dash-to-panel@jderose9.github.com'; @@ -18,7 +20,7 @@ const PANEL_STYLES = [ ]; -var PanelBlur = class PanelBlur { +export var PanelBlur = class PanelBlur { constructor(connections, prefs) { this.connections = connections; this.window_signal_ids = new Map(); @@ -182,7 +184,7 @@ var PanelBlur = class PanelBlur { color: this.prefs.panel.CUSTOMIZE ? this.prefs.panel.COLOR : this.prefs.COLOR - }); + }, this.prefs); let noise = new NoiseEffect({ noise: this.prefs.panel.CUSTOMIZE @@ -191,7 +193,7 @@ var PanelBlur = class PanelBlur { lightness: this.prefs.panel.CUSTOMIZE ? this.prefs.panel.NOISE_LIGHTNESS : this.prefs.NOISE_LIGHTNESS - }); + }, this.prefs); let paint_signals = new PaintSignals(this.connections); @@ -361,7 +363,7 @@ var PanelBlur = class PanelBlur { /// there might be a pre-existing function in GLib already find_monitor_for(actor) { let extents = actor.get_transformed_extents(); - let rect = new Meta.Rectangle({ + let rect = new Mtk.Rectangle({ x: extents.get_x(), y: extents.get_y(), width: extents.get_width(), diff --git a/src/components/screenshot.js b/src/components/screenshot.js index 333eccd4..3804c75e 100644 --- a/src/components/screenshot.js +++ b/src/components/screenshot.js @@ -1,14 +1,14 @@ 'use strict'; -const { Shell, Gio, Meta } = imports.gi; -const Main = imports.ui.main; +import Shell from 'gi://Shell'; +import Meta from 'gi://Meta'; +import * as Main from 'resource:///org/gnome/shell/ui/main.js'; -const Me = imports.misc.extensionUtils.getCurrentExtension(); -const ColorEffect = Me.imports.effects.color_effect.ColorEffect; -const NoiseEffect = Me.imports.effects.noise_effect.NoiseEffect; +import { ColorEffect } from '../effects/color_effect.js'; +import { NoiseEffect } from '../effects/noise_effect.js'; -var ScreenshotBlur = class ScreenshotBlur { +export var ScreenshotBlur = class ScreenshotBlur { constructor(connections, prefs) { this.connections = connections; this.effects = []; @@ -95,7 +95,7 @@ var ScreenshotBlur = class ScreenshotBlur { color: this.prefs.screenshot.CUSTOMIZE ? this.prefs.screenshot.COLOR : this.prefs.COLOR - }); + }, this.prefs); let noise_effect = new NoiseEffect({ noise: this.prefs.screenshot.CUSTOMIZE @@ -104,7 +104,7 @@ var ScreenshotBlur = class ScreenshotBlur { lightness: this.prefs.screenshot.CUSTOMIZE ? this.prefs.screenshot.NOISE_LIGHTNESS : this.prefs.NOISE_LIGHTNESS - }); + }, this.prefs); bg_actor.add_effect(color_effect); bg_actor.add_effect(noise_effect); diff --git a/src/components/window_list.js b/src/components/window_list.js index 94883daa..23e1e90c 100644 --- a/src/components/window_list.js +++ b/src/components/window_list.js @@ -1,13 +1,11 @@ 'use strict'; -const { St, Shell, Meta, Gio } = imports.gi; -const Main = imports.ui.main; +import Shell from 'gi://Shell'; +import * as Main from 'resource:///org/gnome/shell/ui/main.js'; -const Me = imports.misc.extensionUtils.getCurrentExtension(); -const { PaintSignals } = Me.imports.effects.paint_signals; +import { PaintSignals } from '../effects/paint_signals.js'; - -var WindowListBlur = class WindowListBlur { +export var WindowListBlur = class WindowListBlur { constructor(connections, prefs) { this.connections = connections; this.prefs = prefs; diff --git a/src/conveniences/connections.js b/src/conveniences/connections.js index ec2f51f7..181534ed 100644 --- a/src/conveniences/connections.js +++ b/src/conveniences/connections.js @@ -1,9 +1,9 @@ 'use strict'; -const GObject = imports.gi.GObject; +import GObject from 'gi://GObject'; /// An object to easily manage signals. -var Connections = class Connections { +export var Connections = class Connections { constructor() { this.buffer = []; } diff --git a/src/conveniences/keys.js b/src/conveniences/keys.js index 775479da..700f667d 100644 --- a/src/conveniences/keys.js +++ b/src/conveniences/keys.js @@ -1,12 +1,9 @@ 'use strict'; -const ExtensionUtils = imports.misc.extensionUtils; -const Me = ExtensionUtils.getCurrentExtension(); - -const { Type } = Me.imports.conveniences.settings; +import { Type } from './settings.js'; // This lists the preferences keys -var Keys = [ +export var Keys = [ { component: "general", schemas: [ { type: Type.I, name: "sigma" }, diff --git a/src/conveniences/settings.js b/src/conveniences/settings.js index 5c07472f..338b2cb9 100644 --- a/src/conveniences/settings.js +++ b/src/conveniences/settings.js @@ -1,12 +1,11 @@ 'use strict'; -const { Gio, GLib } = imports.gi; -const Signals = imports.signals; +import GLib from 'gi://GLib'; -const ExtensionUtils = imports.misc.extensionUtils; +const Signals = imports.signals; /// An enum non-extensively describing the type of gsettings key. -var Type = { +export var Type = { B: 'Boolean', I: 'Integer', D: 'Double', @@ -26,9 +25,9 @@ var Type = { /// /// Each {type, name} object represents a gsettings key, which must be created /// in the gschemas.xml file of the extension. -var Prefs = class Prefs { - constructor(keys) { - let settings = this.settings = ExtensionUtils.getSettings(); +export var Prefs = class Prefs { + constructor(keys, settings) { + this.settings = settings; this.keys = keys; this.keys.forEach(bundle => { diff --git a/src/dbus/client.js b/src/dbus/client.js index 1aae9bb9..a3bc7316 100644 --- a/src/dbus/client.js +++ b/src/dbus/client.js @@ -1,6 +1,6 @@ 'use strict'; -const Gio = imports.gi.Gio; +import Gio from 'gi://Gio'; const bus_name = 'org.gnome.Shell'; const iface_name = 'dev.aunetx.BlurMyShell'; @@ -9,7 +9,7 @@ const obj_path = '/dev/aunetx/BlurMyShell'; /// Call pick() from the DBus service, it will open the Inspector from /// gnome-shell to pick an actor on stage. -function pick() { +export function pick() { Gio.DBus.session.call( bus_name, obj_path, @@ -26,7 +26,7 @@ function pick() { /// Connect to DBus 'picking' signal, which will be emitted when the inspector /// is picking a window. -function on_picking(cb) { +export function on_picking(cb) { const id = Gio.DBus.session.signal_subscribe( bus_name, iface_name, @@ -43,7 +43,7 @@ function on_picking(cb) { /// Connect to DBus 'picked' signal, which will be emitted when a window is /// picked. -function on_picked(cb) { +export function on_picked(cb) { const id = Gio.DBus.session.signal_subscribe( bus_name, iface_name, diff --git a/src/dbus/services.js b/src/dbus/services.js index bfd7e3be..09b33667 100644 --- a/src/dbus/services.js +++ b/src/dbus/services.js @@ -1,21 +1,21 @@ 'use strict'; -const { Gio, GLib } = imports.gi; -const Main = imports.ui.main; -const LookingGlass = imports.ui.lookingGlass; - -const Me = imports.misc.extensionUtils.getCurrentExtension(); +import Gio from 'gi://Gio'; +import GLib from 'gi://GLib'; +import * as Main from 'resource:///org/gnome/shell/ui/main.js'; +import * as LookingGlass from 'resource:///org/gnome/shell/ui/lookingGlass.js'; +const decoder = new TextDecoder(); const load_file = path => { const [, buffer] = GLib.file_get_contents(path); - const contents = imports.byteArray.toString(buffer); + const contents = decoder.decode(buffer); GLib.free(buffer); return contents; }; -const iface = load_file(Me.dir.get_path() + '/dbus/iface.xml'); +const iface = load_file(GLib.filename_from_uri(GLib.uri_resolve_relative(import.meta.url, 'iface.xml', GLib.UriFlags.NONE))[0]); -var ApplicationsService = class ApplicationsService { +export var ApplicationsService = class ApplicationsService { constructor() { this.DBusImpl = Gio.DBusExportedObject.wrapJSObject(iface, this); } diff --git a/src/effects/color_effect.js b/src/effects/color_effect.js index a550f908..b1480d3f 100644 --- a/src/effects/color_effect.js +++ b/src/effects/color_effect.js @@ -1,16 +1,13 @@ 'use strict'; -const { GLib, GObject, Gio, Clutter, Shell } = imports.gi; -const ExtensionUtils = imports.misc.extensionUtils; +import GLib from 'gi://GLib'; +import GObject from 'gi://GObject'; +import Clutter from 'gi://Clutter'; +import Shell from 'gi://Shell'; -const Me = ExtensionUtils.getCurrentExtension(); -const { Prefs } = Me.imports.conveniences.settings; -const { Keys } = Me.imports.conveniences.keys; +const SHADER_PATH = GLib.filename_from_uri(GLib.uri_resolve_relative(import.meta.url, 'color_effect.glsl', GLib.UriFlags.NONE))[0]; -const SHADER_PATH = GLib.build_filenamev( - [Me.path, 'effects', 'color_effect.glsl'] -); const get_shader_source = _ => { try { @@ -30,7 +27,7 @@ const get_shader_source = _ => { /// /// GJS Doc: /// https://gjs-docs.gnome.org/clutter10~10_api/clutter.shadereffect -var ColorEffect = new GObject.registerClass({ +export var ColorEffect = new GObject.registerClass({ GTypeName: "ColorEffect", Properties: { 'red': GObject.ParamSpec.double( @@ -67,21 +64,21 @@ var ColorEffect = new GObject.registerClass({ ), } }, class ColorShader extends Clutter.ShaderEffect { - _init(params) { + constructor(params, prefs) { + // initialize without color as a parameter + + let _color = params.color; + delete params.color; + + super(params); + this._red = null; this._green = null; this._blue = null; this._blend = null; this._static = true; - this._prefs = new Prefs(Keys); - - // initialize without color as a parameter - - let _color = params.color; - delete params.color; - - super._init(params); + this._prefs = prefs; // set shader source diff --git a/src/effects/noise_effect.js b/src/effects/noise_effect.js index f7953649..aa5e5223 100644 --- a/src/effects/noise_effect.js +++ b/src/effects/noise_effect.js @@ -1,16 +1,12 @@ 'use strict'; -const { GLib, GObject, Gio, Clutter, Shell } = imports.gi; -const ExtensionUtils = imports.misc.extensionUtils; +import GLib from 'gi://GLib'; +import GObject from 'gi://GObject'; +import Clutter from 'gi://Clutter'; +import Shell from 'gi://Shell'; -const Me = ExtensionUtils.getCurrentExtension(); -const { Prefs } = Me.imports.conveniences.settings; -const { Keys } = Me.imports.conveniences.keys; - -const SHADER_PATH = GLib.build_filenamev( - [Me.path, 'effects', 'noise_effect.glsl'] -); +const SHADER_PATH = GLib.filename_from_uri(GLib.uri_resolve_relative(import.meta.url, 'noise_effect.glsl', GLib.UriFlags.NONE))[0]; const get_shader_source = _ => { try { @@ -21,7 +17,7 @@ const get_shader_source = _ => { } }; -var NoiseEffect = new GObject.registerClass({ +export var NoiseEffect = new GObject.registerClass({ GTypeName: "NoiseEffect", Properties: { 'noise': GObject.ParamSpec.double( @@ -42,14 +38,14 @@ var NoiseEffect = new GObject.registerClass({ ), } }, class NoiseShader extends Clutter.ShaderEffect { - _init(params) { + constructor(params, prefs) { + super(params); + this._noise = null; this._lightness = null; this._static = true; - this._prefs = new Prefs(Keys); - - super._init(params); + this._prefs = prefs; // set shader source this._source = get_shader_source(); diff --git a/src/effects/paint_signals.js b/src/effects/paint_signals.js index 8c836fd2..2b3a0d20 100644 --- a/src/effects/paint_signals.js +++ b/src/effects/paint_signals.js @@ -1,9 +1,10 @@ 'use strict'; -const { GObject, Clutter } = imports.gi; +import GObject from 'gi://GObject'; +import Clutter from 'gi://Clutter'; -var PaintSignals = class PaintSignals { +export var PaintSignals = class PaintSignals { constructor(connections) { this.buffer = []; this.connections = connections; @@ -73,7 +74,7 @@ var PaintSignals = class PaintSignals { } }; -var EmitPaintSignal = GObject.registerClass({ +export var EmitPaintSignal = GObject.registerClass({ GTypeName: 'EmitPaintSignal', Signals: { 'update-blur': { diff --git a/src/extension.js b/src/extension.js index 068fbd32..6c0d582a 100644 --- a/src/extension.js +++ b/src/extension.js @@ -1,22 +1,23 @@ 'use strict'; -const { St, Shell, Gio, Gtk, Meta, Clutter } = imports.gi; -const Main = imports.ui.main; +import Meta from 'gi://Meta'; +import Clutter from 'gi://Clutter'; +import * as Main from 'resource:///org/gnome/shell/ui/main.js'; -const Me = imports.misc.extensionUtils.getCurrentExtension(); +import { Extension } from 'resource:///org/gnome/shell/extensions/extension.js'; -const { Connections } = Me.imports.conveniences.connections; -const { Prefs } = Me.imports.conveniences.settings; -const { Keys } = Me.imports.conveniences.keys; +import { Connections } from './conveniences/connections.js'; +import { Prefs } from './conveniences/settings.js'; +import { Keys } from './conveniences/keys.js'; -const Panel = Me.imports.components.panel; -const Overview = Me.imports.components.overview; -const DashToDock = Me.imports.components.dash_to_dock; -const Lockscreen = Me.imports.components.lockscreen; -const AppFolders = Me.imports.components.appfolders; -const WindowList = Me.imports.components.window_list; -const Applications = Me.imports.components.applications; -const Screenshot = Me.imports.components.screenshot; +import { PanelBlur } from './components/panel.js'; +import { OverviewBlur } from './components/overview.js'; +import { DashBlur } from './components/dash_to_dock.js'; +import { LockscreenBlur } from './components/lockscreen.js'; +import { AppFoldersBlur } from './components/appfolders.js'; +import { WindowListBlur } from './components/window_list.js'; +import { ApplicationsBlur } from './components/applications.js'; +import { ScreenshotBlur } from './components/screenshot.js'; // This lists the components that need to be connected in order to either use // general sigma/brightness or their own. @@ -27,9 +28,7 @@ const INDEPENDENT_COMPONENTS = [ /// The main extension class, created when the GNOME Shell is loaded. -class Extension { - constructor() { } - +export default class BlurMyShell extends Extension { /// Enables the extension enable() { // add the extension to global to make it accessible to other extensions @@ -40,7 +39,7 @@ class Extension { // create a Prefs instance, to manage extension's preferences // it needs to be loaded before logging, as it checks for DEBUG - this._prefs = new Prefs(Keys); + this._prefs = new Prefs(Keys, this.getSettings()); this._log("enabling extension..."); @@ -64,14 +63,14 @@ class Extension { return [connection, this._prefs]; }; - this._panel_blur = new Panel.PanelBlur(...init()); - this._dash_to_dock_blur = new DashToDock.DashBlur(...init()); - this._overview_blur = new Overview.OverviewBlur(...init()); - this._lockscreen_blur = new Lockscreen.LockscreenBlur(...init()); - this._appfolder_blur = new AppFolders.AppFoldersBlur(...init()); - this._window_list_blur = new WindowList.WindowListBlur(...init()); - this._applications_blur = new Applications.ApplicationsBlur(...init()); - this._screenshot_blur = new Screenshot.ScreenshotBlur(...init()); + this._panel_blur = new PanelBlur(...init()); + this._dash_to_dock_blur = new DashBlur(...init()); + this._overview_blur = new OverviewBlur(...init()); + this._lockscreen_blur = new LockscreenBlur(...init()); + this._appfolder_blur = new AppFoldersBlur(...init()); + this._window_list_blur = new WindowListBlur(...init()); + this._applications_blur = new ApplicationsBlur(...init()); + this._screenshot_blur = new ScreenshotBlur(...init()); // maybe disable clipped redraw @@ -643,9 +642,3 @@ class Extension { log(`[Blur my Shell > extension] ${str}`); } } - - -// Called on gnome-shell loading, even if extension is deactivated -function init() { - return new Extension(); -} \ No newline at end of file diff --git a/src/preferences/applications.js b/src/preferences/applications.js index 9c012971..1a981734 100644 --- a/src/preferences/applications.js +++ b/src/preferences/applications.js @@ -1,10 +1,11 @@ 'use strict'; -const { Adw, GLib, GObject, Gio } = imports.gi; -const ExtensionUtils = imports.misc.extensionUtils; +import Adw from 'gi://Adw'; +import GLib from 'gi://GLib'; +import GObject from 'gi://GObject'; +import Gio from 'gi://Gio'; -const Me = ExtensionUtils.getCurrentExtension(); -const { WindowRow } = Me.imports.preferences.window_row; +import { WindowRow } from './window_row.js'; const make_array = prefs_group => { @@ -26,9 +27,9 @@ const make_array = prefs_group => { }; -var Applications = GObject.registerClass({ +export var Applications = GObject.registerClass({ GTypeName: 'Applications', - Template: `file://${GLib.build_filenamev([Me.path, 'ui', 'applications.ui'])}`, + Template: GLib.uri_resolve_relative(import.meta.url, '../ui/applications.ui', GLib.UriFlags.NONE), InternalChildren: [ 'blur', 'customize', @@ -64,7 +65,7 @@ var Applications = GObject.registerClass({ Gio.SettingsBindFlags.DEFAULT ); - this._customize.connect_to(this.preferences.applications, false); + this._customize.connect_to(this.preferences, this.preferences.applications, false); // connect 'enable all' button to whitelist/blacklist visibility this._enable_all.bind_property( diff --git a/src/preferences/customize_row.js b/src/preferences/customize_row.js index f51fa438..5db0eb67 100644 --- a/src/preferences/customize_row.js +++ b/src/preferences/customize_row.js @@ -1,11 +1,10 @@ 'use strict'; -const { Adw, GLib, GObject, Gio, Gtk } = imports.gi; -const ExtensionUtils = imports.misc.extensionUtils; - -const Me = ExtensionUtils.getCurrentExtension(); -const { Prefs } = Me.imports.conveniences.settings; -const { Keys } = Me.imports.conveniences.keys; +import Adw from 'gi://Adw'; +import GLib from 'gi://GLib'; +import GObject from 'gi://GObject'; +import Gio from 'gi://Gio'; +import Gtk from 'gi://Gtk'; /// Given a component (described by its preferences node), a gschema key and @@ -32,9 +31,9 @@ let bind_color = function (component, key, widget) { parse_color(); }; -var CustomizeRow = GObject.registerClass({ +export var CustomizeRow = GObject.registerClass({ GTypeName: 'CustomizeRow', - Template: `file://${GLib.build_filenamev([Me.path, 'ui', 'customize-row.ui'])}`, + Template: GLib.uri_resolve_relative(import.meta.url, '../ui/customize-row.ui', GLib.UriFlags.NONE), InternalChildren: [ 'sigma', 'brightness', @@ -57,7 +56,7 @@ var CustomizeRow = GObject.registerClass({ /// a widget; and permits selecting weather or not we want to show the color /// and noise buttons to the user. If it is a widget, it means we need to /// dynamically update their visibility, according to the widget's state. - connect_to(component_prefs, color_and_noise = true) { + connect_to(prefs, component_prefs, color_and_noise = true) { let s = component_prefs.settings; // is not fired if in General page @@ -141,25 +140,23 @@ var CustomizeRow = GObject.registerClass({ this._noise_color_notice.visible = true; } - const Preferences = new Prefs(Keys); - // now we bind the color-and-noise preference to the sensitivity of the // associated widgets, this will grey them out if the user choose not to // have color and noise enabled // note: I would love to bind to the visibility instead, but this part // is already dirty enough, it would look like I obfuscate my code // intentionally... (I am not) - Preferences.settings.bind( + prefs.settings.bind( 'color-and-noise', this._color_row, 'sensitive', Gio.SettingsBindFlags.DEFAULT ); - Preferences.settings.bind( + prefs.settings.bind( 'color-and-noise', this._noise_amount_row, 'sensitive', Gio.SettingsBindFlags.DEFAULT ); - Preferences.settings.bind( + prefs.settings.bind( 'color-and-noise', this._noise_lightness_row, 'sensitive', Gio.SettingsBindFlags.DEFAULT diff --git a/src/preferences/dash.js b/src/preferences/dash.js index b00181bd..a3cacad1 100644 --- a/src/preferences/dash.js +++ b/src/preferences/dash.js @@ -1,14 +1,14 @@ 'use strict'; -const { Adw, GLib, GObject, Gio } = imports.gi; -const ExtensionUtils = imports.misc.extensionUtils; +import Adw from 'gi://Adw'; +import GLib from 'gi://GLib'; +import GObject from 'gi://GObject'; +import Gio from 'gi://Gio'; -const Me = ExtensionUtils.getCurrentExtension(); - -var Dash = GObject.registerClass({ +export var Dash = GObject.registerClass({ GTypeName: 'Dash', - Template: `file://${GLib.build_filenamev([Me.path, 'ui', 'dash.ui'])}`, + Template: GLib.uri_resolve_relative(import.meta.url, '../ui/dash.ui', GLib.UriFlags.NONE), InternalChildren: [ 'blur', 'customize', @@ -40,6 +40,6 @@ var Dash = GObject.registerClass({ Gio.SettingsBindFlags.DEFAULT ); - this._customize.connect_to(this.preferences.dash_to_dock, false); + this._customize.connect_to(this.preferences, this.preferences.dash_to_dock, false); } }); \ No newline at end of file diff --git a/src/preferences/general.js b/src/preferences/general.js index 74f494a9..07f50fc2 100644 --- a/src/preferences/general.js +++ b/src/preferences/general.js @@ -1,15 +1,16 @@ 'use strict'; -const { Adw, GLib, GObject, Gio } = imports.gi; -const ExtensionUtils = imports.misc.extensionUtils; +import Adw from 'gi://Adw'; +import GLib from 'gi://GLib'; +import GObject from 'gi://GObject'; +import Gio from 'gi://Gio'; -const Me = ExtensionUtils.getCurrentExtension(); -const { CustomizeRow } = Me.imports.preferences.customize_row; +import { CustomizeRow } from './customize_row.js'; -var General = GObject.registerClass({ +export var General = GObject.registerClass({ GTypeName: 'General', - Template: `file://${GLib.build_filenamev([Me.path, 'ui', 'general.ui'])}`, + Template: GLib.uri_resolve_relative(import.meta.url, '../ui/general.ui', GLib.UriFlags.NONE), InternalChildren: [ 'sigma', 'brightness', @@ -30,7 +31,7 @@ var General = GObject.registerClass({ this.preferences = preferences; - CustomizeRow.prototype.connect_to.call(this, this.preferences); + CustomizeRow.prototype.connect_to.call(this, preferences, preferences); this.preferences.settings.bind( 'color-and-noise', this._color_and_noise, 'state', diff --git a/src/preferences/menu.js b/src/preferences/menu.js index 53473b87..89177474 100644 --- a/src/preferences/menu.js +++ b/src/preferences/menu.js @@ -1,15 +1,16 @@ 'use strict'; -const { Gdk, Gtk, Gio } = imports.gi; -const ExtensionUtils = imports.misc.extensionUtils; +import Gdk from 'gi://Gdk'; +import Gtk from 'gi://Gtk'; +import Gio from 'gi://Gio'; +import GLib from 'gi://GLib'; -const Me = ExtensionUtils.getCurrentExtension(); -function addMenu(window) { +export function addMenu(window) { const builder = new Gtk.Builder(); // add a dummy page and remove it immediately, to access headerbar - builder.add_from_file(`${Me.path}/ui/menu.ui`); + builder.add_from_file(GLib.filename_from_uri(GLib.uri_resolve_relative(import.meta.url, '../ui/menu.ui', GLib.UriFlags.NONE))[0]); let menu_util = builder.get_object('menu_util'); window.add(menu_util); try { diff --git a/src/preferences/other.js b/src/preferences/other.js index 4ba3a884..0b1e5779 100644 --- a/src/preferences/other.js +++ b/src/preferences/other.js @@ -1,14 +1,14 @@ 'use strict'; -const { Adw, GLib, GObject, Gio } = imports.gi; -const ExtensionUtils = imports.misc.extensionUtils; +import Adw from 'gi://Adw'; +import GLib from 'gi://GLib'; +import GObject from 'gi://GObject'; +import Gio from 'gi://Gio'; -const Me = ExtensionUtils.getCurrentExtension(); - -var Other = GObject.registerClass({ +export var Other = GObject.registerClass({ GTypeName: 'Other', - Template: `file://${GLib.build_filenamev([Me.path, 'ui', 'other.ui'])}`, + Template: GLib.uri_resolve_relative(import.meta.url, '../ui/other.ui', GLib.UriFlags.NONE), InternalChildren: [ 'lockscreen_blur', 'lockscreen_customize', @@ -30,14 +30,14 @@ var Other = GObject.registerClass({ Gio.SettingsBindFlags.DEFAULT ); - this._lockscreen_customize.connect_to(this.preferences.lockscreen); + this._lockscreen_customize.connect_to(this.preferences, this.preferences.lockscreen); this.preferences.screenshot.settings.bind( 'blur', this._screenshot_blur, 'state', Gio.SettingsBindFlags.DEFAULT ); - this._screenshot_customize.connect_to(this.preferences.screenshot); + this._screenshot_customize.connect_to(this.preferences, this.preferences.screenshot); this.preferences.window_list.settings.bind( 'blur', this._window_list_blur, 'state', @@ -45,7 +45,7 @@ var Other = GObject.registerClass({ ); this._window_list_customize.connect_to( - this.preferences.window_list, false + this.preferences, this.preferences.window_list, false ); } }); \ No newline at end of file diff --git a/src/preferences/overview.js b/src/preferences/overview.js index f60b61e5..774a0978 100644 --- a/src/preferences/overview.js +++ b/src/preferences/overview.js @@ -1,14 +1,14 @@ 'use strict'; -const { Adw, GLib, GObject, Gio } = imports.gi; -const ExtensionUtils = imports.misc.extensionUtils; +import Adw from 'gi://Adw'; +import GLib from 'gi://GLib'; +import GObject from 'gi://GObject'; +import Gio from 'gi://Gio'; -const Me = ExtensionUtils.getCurrentExtension(); - -var Overview = GObject.registerClass({ +export var Overview = GObject.registerClass({ GTypeName: 'Overview', - Template: `file://${GLib.build_filenamev([Me.path, 'ui', 'overview.ui'])}`, + Template: GLib.uri_resolve_relative(import.meta.url, '../ui/overview.ui', GLib.UriFlags.NONE), InternalChildren: [ 'overview_blur', 'overview_customize', @@ -33,7 +33,7 @@ var Overview = GObject.registerClass({ Gio.SettingsBindFlags.DEFAULT ); - this._overview_customize.connect_to(this.preferences.overview); + this._overview_customize.connect_to(this.preferences, this.preferences.overview); this.preferences.appfolder.settings.bind( 'blur', this._appfolder_blur, 'state', @@ -44,6 +44,6 @@ var Overview = GObject.registerClass({ Gio.SettingsBindFlags.DEFAULT ); - this._appfolder_customize.connect_to(this.preferences.appfolder, false); + this._appfolder_customize.connect_to(this.preferences, this.preferences.appfolder, false); } }); \ No newline at end of file diff --git a/src/preferences/panel.js b/src/preferences/panel.js index 9c949ef7..d3d483dc 100644 --- a/src/preferences/panel.js +++ b/src/preferences/panel.js @@ -1,14 +1,14 @@ 'use strict'; -const { Adw, GLib, GObject, Gio } = imports.gi; -const ExtensionUtils = imports.misc.extensionUtils; +import Adw from 'gi://Adw'; +import GLib from 'gi://GLib'; +import GObject from 'gi://GObject'; +import Gio from 'gi://Gio'; -const Me = ExtensionUtils.getCurrentExtension(); - -var Panel = GObject.registerClass({ +export var Panel = GObject.registerClass({ GTypeName: 'Panel', - Template: `file://${GLib.build_filenamev([Me.path, 'ui', 'panel.ui'])}`, + Template: GLib.uri_resolve_relative(import.meta.url, '../ui/panel.ui', GLib.UriFlags.NONE), InternalChildren: [ 'blur', 'customize', @@ -53,7 +53,7 @@ var Panel = GObject.registerClass({ Gio.SettingsBindFlags.DEFAULT ); - this._customize.connect_to(this.preferences.panel, this._static_blur); + this._customize.connect_to(this.preferences, this.preferences.panel, this._static_blur); this.preferences.hidetopbar.settings.bind( 'compatibility', this._hidetopbar_compatibility, 'state', diff --git a/src/preferences/window_row.js b/src/preferences/window_row.js index 9415c8ee..ac1ffae7 100644 --- a/src/preferences/window_row.js +++ b/src/preferences/window_row.js @@ -1,15 +1,18 @@ 'use strict'; -const { Adw, GLib, GObject, Gio, Gtk } = imports.gi; -const ExtensionUtils = imports.misc.extensionUtils; +import Adw from 'gi://Adw'; +import GLib from 'gi://GLib'; +import GObject from 'gi://GObject'; +import Gio from 'gi://Gio'; +import Gtk from 'gi://Gtk'; -const Me = ExtensionUtils.getCurrentExtension(); -const { pick, on_picking, on_picked } = Me.imports.dbus.client; +import { pick, on_picking, on_picked } from '../dbus/client.js'; -var WindowRow = GObject.registerClass({ + +export var WindowRow = GObject.registerClass({ GTypeName: 'WindowRow', - Template: `file://${GLib.build_filenamev([Me.path, 'ui', 'window-row.ui'])}`, + Template: GLib.uri_resolve_relative(import.meta.url, '../ui/window-row.ui', GLib.UriFlags.NONE), InternalChildren: [ 'window_picker', 'window_class', diff --git a/src/prefs.js b/src/prefs.js index 10dc0800..edbba5f1 100644 --- a/src/prefs.js +++ b/src/prefs.js @@ -1,43 +1,43 @@ 'use strict'; -const { Adw, Gdk, GLib, Gtk, GObject, Gio } = imports.gi; -const ExtensionUtils = imports.misc.extensionUtils; - -const Me = ExtensionUtils.getCurrentExtension(); -const { Prefs } = Me.imports.conveniences.settings; -const { Keys } = Me.imports.conveniences.keys; - -const { addMenu } = Me.imports.preferences.menu; -const { CustomizeRow } = Me.imports.preferences.customize_row; -const { WindowRow } = Me.imports.preferences.window_row; -const { General } = Me.imports.preferences.general; -const { Panel } = Me.imports.preferences.panel; -const { Overview } = Me.imports.preferences.overview; -const { Dash } = Me.imports.preferences.dash; -const { Applications } = Me.imports.preferences.applications; -const { Other } = Me.imports.preferences.other; - - -function init() { - ExtensionUtils.initTranslations(Me.metadata.uuid); - - // load the icon theme - let iconPath = Me.dir.get_child("icons").get_path(); - let iconTheme = Gtk.IconTheme.get_for_display(Gdk.Display.get_default()); - iconTheme.add_search_path(iconPath); -} - -function fillPreferencesWindow(window) { - addMenu(window); - - const preferences = new Prefs(Keys); - - window.add(new General(preferences)); - window.add(new Panel(preferences)); - window.add(new Overview(preferences)); - window.add(new Dash(preferences)); - window.add(new Applications(preferences, window)); - window.add(new Other(preferences)); - - window.search_enabled = true; +import Gdk from 'gi://Gdk'; +import Gtk from 'gi://Gtk'; +import { ExtensionPreferences } from 'resource:///org/gnome/Shell/Extensions/js/extensions/prefs.js'; + +import { Prefs } from './conveniences/settings.js'; +import { Keys } from './conveniences/keys.js'; + +import { addMenu } from './preferences/menu.js'; +import { General } from './preferences/general.js'; +import { Panel } from './preferences/panel.js'; +import { Overview } from './preferences/overview.js'; +import { Dash } from './preferences/dash.js'; +import { Applications } from './preferences/applications.js'; +import { Other } from './preferences/other.js'; + + +export default class BlurMyShellPreferences extends ExtensionPreferences { + constructor(metadata) { + super(metadata); + + // load the icon theme + let iconPath = this.dir.get_child("icons").get_path(); + let iconTheme = Gtk.IconTheme.get_for_display(Gdk.Display.get_default()); + iconTheme.add_search_path(iconPath); + } + + fillPreferencesWindow(window) { + addMenu(window); + + const preferences = new Prefs(Keys, this.getSettings()); + + window.add(new General(preferences)); + window.add(new Panel(preferences)); + window.add(new Overview(preferences)); + window.add(new Dash(preferences)); + window.add(new Applications(preferences, window)); + window.add(new Other(preferences)); + + window.search_enabled = true; + } } From f794dd1b78b60d5c49eb5ec3bd7a120a80619501 Mon Sep 17 00:00:00 2001 From: DaPigGuy Date: Sun, 17 Sep 2023 03:54:29 -0700 Subject: [PATCH 200/212] Use `active` property instead of `state` --- src/preferences/applications.js | 6 +++--- src/preferences/customize_row.js | 10 +++++----- src/preferences/dash.js | 4 ++-- src/preferences/general.js | 4 ++-- src/preferences/other.js | 6 +++--- src/preferences/overview.js | 4 ++-- src/preferences/panel.js | 12 ++++++------ 7 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/preferences/applications.js b/src/preferences/applications.js index 1a981734..a5779da3 100644 --- a/src/preferences/applications.js +++ b/src/preferences/applications.js @@ -49,7 +49,7 @@ export var Applications = GObject.registerClass({ this.preferences = preferences; this.preferences.applications.settings.bind( - 'blur', this._blur, 'state', + 'blur', this._blur, 'active', Gio.SettingsBindFlags.DEFAULT ); this.preferences.applications.settings.bind( @@ -57,11 +57,11 @@ export var Applications = GObject.registerClass({ Gio.SettingsBindFlags.DEFAULT ); this.preferences.applications.settings.bind( - 'blur-on-overview', this._blur_on_overview, 'state', + 'blur-on-overview', this._blur_on_overview, 'active', Gio.SettingsBindFlags.DEFAULT ); this.preferences.applications.settings.bind( - 'enable-all', this._enable_all, 'state', + 'enable-all', this._enable_all, 'active', Gio.SettingsBindFlags.DEFAULT ); diff --git a/src/preferences/customize_row.js b/src/preferences/customize_row.js index 5db0eb67..55fa36e8 100644 --- a/src/preferences/customize_row.js +++ b/src/preferences/customize_row.js @@ -100,26 +100,26 @@ export var CustomizeRow = GObject.registerClass({ if (color_and_noise instanceof Gtk.Switch) { // bind its state to dynamically toggle the notice and rows color_and_noise.bind_property( - 'state', this._color_row, 'visible', + 'active', this._color_row, 'visible', GObject.BindingFlags.SYNC_CREATE ); color_and_noise.bind_property( - 'state', this._noise_amount_row, 'visible', + 'active', this._noise_amount_row, 'visible', GObject.BindingFlags.SYNC_CREATE ); color_and_noise.bind_property( - 'state', this._noise_lightness_row, 'visible', + 'active', this._noise_lightness_row, 'visible', GObject.BindingFlags.SYNC_CREATE ); color_and_noise.bind_property( - 'state', this._noise_color_notice, 'visible', + 'active', this._noise_color_notice, 'visible', GObject.BindingFlags.INVERT_BOOLEAN ); // only way to get the correct state when first opening the // window... setTimeout(_ => { - let is_visible = color_and_noise.state; + let is_visible = color_and_noise.active; this._color_row.visible = is_visible; this._noise_amount_row.visible = is_visible; this._noise_lightness_row.visible = is_visible; diff --git a/src/preferences/dash.js b/src/preferences/dash.js index a3cacad1..f635da03 100644 --- a/src/preferences/dash.js +++ b/src/preferences/dash.js @@ -23,7 +23,7 @@ export var Dash = GObject.registerClass({ this.preferences = preferences; this.preferences.dash_to_dock.settings.bind( - 'blur', this._blur, 'state', + 'blur', this._blur, 'active', Gio.SettingsBindFlags.DEFAULT ); this.preferences.dash_to_dock.settings.bind( @@ -36,7 +36,7 @@ export var Dash = GObject.registerClass({ Gio.SettingsBindFlags.DEFAULT ); this.preferences.dash_to_dock.settings.bind( - 'unblur-in-overview', this._unblur_in_overview, 'state', + 'unblur-in-overview', this._unblur_in_overview, 'active', Gio.SettingsBindFlags.DEFAULT ); diff --git a/src/preferences/general.js b/src/preferences/general.js index 07f50fc2..4624c04d 100644 --- a/src/preferences/general.js +++ b/src/preferences/general.js @@ -34,7 +34,7 @@ export var General = GObject.registerClass({ CustomizeRow.prototype.connect_to.call(this, preferences, preferences); this.preferences.settings.bind( - 'color-and-noise', this._color_and_noise, 'state', + 'color-and-noise', this._color_and_noise, 'active', Gio.SettingsBindFlags.DEFAULT ); this.preferences.settings.bind( @@ -42,7 +42,7 @@ export var General = GObject.registerClass({ Gio.SettingsBindFlags.DEFAULT ); this.preferences.settings.bind( - 'debug', this._debug, 'state', + 'debug', this._debug, 'active', Gio.SettingsBindFlags.DEFAULT ); diff --git a/src/preferences/other.js b/src/preferences/other.js index 0b1e5779..ad5c3cf7 100644 --- a/src/preferences/other.js +++ b/src/preferences/other.js @@ -26,21 +26,21 @@ export var Other = GObject.registerClass({ this.preferences = preferences; this.preferences.lockscreen.settings.bind( - 'blur', this._lockscreen_blur, 'state', + 'blur', this._lockscreen_blur, 'active', Gio.SettingsBindFlags.DEFAULT ); this._lockscreen_customize.connect_to(this.preferences, this.preferences.lockscreen); this.preferences.screenshot.settings.bind( - 'blur', this._screenshot_blur, 'state', + 'blur', this._screenshot_blur, 'active', Gio.SettingsBindFlags.DEFAULT ); this._screenshot_customize.connect_to(this.preferences, this.preferences.screenshot); this.preferences.window_list.settings.bind( - 'blur', this._window_list_blur, 'state', + 'blur', this._window_list_blur, 'active', Gio.SettingsBindFlags.DEFAULT ); diff --git a/src/preferences/overview.js b/src/preferences/overview.js index 774a0978..a0bf940a 100644 --- a/src/preferences/overview.js +++ b/src/preferences/overview.js @@ -25,7 +25,7 @@ export var Overview = GObject.registerClass({ this.preferences = preferences; this.preferences.overview.settings.bind( - 'blur', this._overview_blur, 'state', + 'blur', this._overview_blur, 'active', Gio.SettingsBindFlags.DEFAULT ); this.preferences.overview.settings.bind( @@ -36,7 +36,7 @@ export var Overview = GObject.registerClass({ this._overview_customize.connect_to(this.preferences, this.preferences.overview); this.preferences.appfolder.settings.bind( - 'blur', this._appfolder_blur, 'state', + 'blur', this._appfolder_blur, 'active', Gio.SettingsBindFlags.DEFAULT ); this.preferences.appfolder.settings.bind( diff --git a/src/preferences/panel.js b/src/preferences/panel.js index d3d483dc..2194f6da 100644 --- a/src/preferences/panel.js +++ b/src/preferences/panel.js @@ -27,15 +27,15 @@ export var Panel = GObject.registerClass({ this.preferences = preferences; this.preferences.panel.settings.bind( - 'blur', this._blur, 'state', + 'blur', this._blur, 'active', Gio.SettingsBindFlags.DEFAULT ); this.preferences.panel.settings.bind( - 'static-blur', this._static_blur, 'state', + 'static-blur', this._static_blur, 'active', Gio.SettingsBindFlags.DEFAULT ); this.preferences.panel.settings.bind( - 'unblur-in-overview', this._unblur_in_overview, 'state', + 'unblur-in-overview', this._unblur_in_overview, 'active', Gio.SettingsBindFlags.DEFAULT ); this.preferences.panel.settings.bind( @@ -49,18 +49,18 @@ export var Panel = GObject.registerClass({ ); this.preferences.panel.settings.bind( 'override-background-dynamically', - this._override_background_dynamically, 'state', + this._override_background_dynamically, 'active', Gio.SettingsBindFlags.DEFAULT ); this._customize.connect_to(this.preferences, this.preferences.panel, this._static_blur); this.preferences.hidetopbar.settings.bind( - 'compatibility', this._hidetopbar_compatibility, 'state', + 'compatibility', this._hidetopbar_compatibility, 'active', Gio.SettingsBindFlags.DEFAULT ); this.preferences.dash_to_panel.settings.bind( - 'blur-original-panel', this._dtp_blur_original_panel, 'state', + 'blur-original-panel', this._dtp_blur_original_panel, 'active', Gio.SettingsBindFlags.DEFAULT ); } From 803196987ec601ee17ee007c2ea51e8b97348b54 Mon Sep 17 00:00:00 2001 From: DaPigGuy Date: Mon, 18 Sep 2023 18:14:59 -0700 Subject: [PATCH 201/212] Fix blur when windows are open --- src/components/overview.js | 11 ++++++++--- src/components/panel.js | 14 +++++++++++--- src/components/screenshot.js | 9 +++++++-- 3 files changed, 26 insertions(+), 8 deletions(-) diff --git a/src/components/overview.js b/src/components/overview.js index c517877b..89d164ba 100644 --- a/src/components/overview.js +++ b/src/components/overview.js @@ -166,13 +166,16 @@ export var OverviewBlur = class OverviewBlur { } create_background_actor(monitor) { - let bg_actor = new Meta.BackgroundActor; + let bg_actor = new Meta.BackgroundActor({ + meta_display: global.display, + monitor: monitor.index + }); let background_group = Main.layoutManager._backgroundGroup .get_children() .filter((child) => child instanceof Meta.BackgroundActor); let background = background_group[ - Main.layoutManager.monitors.length - monitor.index - 1 + Main.layoutManager.monitors.length - monitor.index - 1 ]; if (!background) { @@ -180,7 +183,9 @@ export var OverviewBlur = class OverviewBlur { return bg_actor; } - bg_actor.set_content(background.get_content()); + bg_actor.content.set({ + background: background.get_content().background + }); let blur_effect = new Shell.BlurEffect({ brightness: this.prefs.overview.CUSTOMIZE diff --git a/src/components/panel.js b/src/components/panel.js index afc64b25..aeb69c4d 100644 --- a/src/components/panel.js +++ b/src/components/panel.js @@ -156,7 +156,10 @@ export var PanelBlur = class PanelBlur { }); let background = this.prefs.panel.STATIC_BLUR - ? new Meta.BackgroundActor + ? new Meta.BackgroundActor({ + meta_display: global.display, + monitor: monitor.index + }) : new St.Widget; background_parent.add_child(background); @@ -244,7 +247,10 @@ export var PanelBlur = class PanelBlur { // create new background actor actors.widgets.background = is_static - ? new Meta.BackgroundActor + ? new Meta.BackgroundActor({ + meta_display: global.display, + monitor: this.find_monitor_for(actors.widgets.panel).index + }) : new St.Widget; // change blur mode @@ -316,7 +322,9 @@ export var PanelBlur = class PanelBlur { - this.find_monitor_for(actors.widgets.panel).index - 1 ); if (bg) - actors.widgets.background.set_content(bg.get_content()); + actors.widgets.background.content.set({ + background: bg.get_content().background + }); else this._log("could not get background for panel"); } diff --git a/src/components/screenshot.js b/src/components/screenshot.js index 3804c75e..941a488a 100644 --- a/src/components/screenshot.js +++ b/src/components/screenshot.js @@ -65,7 +65,10 @@ export var ScreenshotBlur = class ScreenshotBlur { } create_background_actor(monitor) { - let bg_actor = new Meta.BackgroundActor; + let bg_actor = new Meta.BackgroundActor({ + meta_display: global.display, + monitor: monitor.index + }); let background = Main.layoutManager._backgroundGroup.get_child_at_index( Main.layoutManager.monitors.length - monitor.index - 1 ); @@ -75,7 +78,9 @@ export var ScreenshotBlur = class ScreenshotBlur { return bg_actor; } - bg_actor.set_content(background.get_content()); + bg_actor.content.set({ + background: background.get_content().background + }); let blur_effect = new Shell.BlurEffect({ brightness: this.prefs.screenshot.CUSTOMIZE From ef779473c579fb6d164f9e2ac3c41a4de5c39e20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Tue, 19 Sep 2023 08:39:36 +0200 Subject: [PATCH 202/212] Version 49 --- metadata.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata.json b/metadata.json index cadfa99d..4f49f3a0 100644 --- a/metadata.json +++ b/metadata.json @@ -15,5 +15,5 @@ "github": "aunetx", "kofi": "aunetx" }, - "version": 47 -} \ No newline at end of file + "version": 49 +} From e7c5008e657a6a86bc3a1d44b12bb0103910e1d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Tue, 19 Sep 2023 10:50:20 +0200 Subject: [PATCH 203/212] Fixed bad habits for eog - removed `'use strict'` - changed `var` to `const` - removed instances in global scope - removed `log` usage in favour of `console.log` and `console.warn` - changed `prefs` termination in favour of `settings` --- src/components/appfolders.js | 36 ++-- src/components/applications.js | 50 +++--- src/components/dash_to_dock.js | 52 +++--- src/components/lockscreen.js | 46 +++--- src/components/overview.js | 60 +++---- src/components/panel.js | 82 +++++----- src/components/screenshot.js | 52 +++--- src/components/window_list.js | 34 ++-- src/conveniences/connections.js | 13 +- src/conveniences/keys.js | 4 +- src/conveniences/settings.js | 16 +- src/dbus/client.js | 2 - src/dbus/services.js | 23 ++- src/effects/color_effect.js | 14 +- src/effects/noise_effect.js | 12 +- src/effects/paint_signals.js | 6 +- src/extension.js | 272 +++++++++++++++---------------- src/preferences/applications.js | 4 +- src/preferences/customize_row.js | 16 +- src/preferences/dash.js | 4 +- src/preferences/general.js | 4 +- src/preferences/menu.js | 2 - src/preferences/other.js | 4 +- src/preferences/overview.js | 4 +- src/preferences/panel.js | 4 +- src/preferences/window_row.js | 6 +- src/prefs.js | 6 +- 27 files changed, 394 insertions(+), 434 deletions(-) diff --git a/src/components/appfolders.js b/src/components/appfolders.js index 6323865f..9e22047d 100644 --- a/src/components/appfolders.js +++ b/src/components/appfolders.js @@ -1,5 +1,3 @@ -'use strict'; - import Shell from 'gi://Shell'; import Clutter from 'gi://Clutter'; import * as Main from 'resource:///org/gnome/shell/ui/main.js'; @@ -123,22 +121,22 @@ let _zoomAndFadeOut = function () { }; -export var AppFoldersBlur = class AppFoldersBlur { - constructor(connections, prefs) { +export const AppFoldersBlur = class AppFoldersBlur { + constructor(connections, settings) { this.connections = connections; this.paint_signals = new PaintSignals(connections); - this.prefs = prefs; + this.settings = settings; } enable() { this._log("blurring appfolders"); - brightness = this.prefs.appfolder.CUSTOMIZE - ? this.prefs.appfolder.BRIGHTNESS - : this.prefs.BRIGHTNESS; - sigma = this.prefs.appfolder.CUSTOMIZE - ? this.prefs.appfolder.SIGMA - : this.prefs.SIGMA; + brightness = this.settings.appfolder.CUSTOMIZE + ? this.settings.appfolder.BRIGHTNESS + : this.settings.BRIGHTNESS; + sigma = this.settings.appfolder.CUSTOMIZE + ? this.settings.appfolder.SIGMA + : this.settings.SIGMA; let appDisplay = Main.overview._overview.controls._appDisplay; @@ -154,8 +152,8 @@ export var AppFoldersBlur = class AppFoldersBlur { blur_appfolders() { let appDisplay = Main.overview._overview.controls._appDisplay; - if (this.prefs.HACKS_LEVEL === 1 || this.prefs.HACKS_LEVEL === 2) - this._log(`appfolders hack level ${this.prefs.HACKS_LEVEL}`); + if (this.settings.HACKS_LEVEL === 1 || this.settings.HACKS_LEVEL === 2) + this._log(`appfolders hack level ${this.settings.HACKS_LEVEL}`); appDisplay._folderIcons.forEach(icon => { icon._ensureFolderDialog(); @@ -182,7 +180,7 @@ export var AppFoldersBlur = class AppFoldersBlur { ); icon._dialog._viewBox.add_style_class_name( - DIALOGS_STYLES[this.prefs.appfolder.STYLE_DIALOGS] + DIALOGS_STYLES[this.settings.appfolder.STYLE_DIALOGS] ); // finally override the builtin functions @@ -201,7 +199,7 @@ export var AppFoldersBlur = class AppFoldersBlur { // // [1]: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2857 - if (this.prefs.HACKS_LEVEL === 1 || this.prefs.HACKS_LEVEL === 2) { + if (this.settings.HACKS_LEVEL === 1 || this.settings.HACKS_LEVEL === 2) { this.paint_signals.disconnect_all_for_actor(icon._dialog); this.paint_signals.connect(icon._dialog, blur_effect); } else { @@ -212,13 +210,13 @@ export var AppFoldersBlur = class AppFoldersBlur { set_sigma(s) { sigma = s; - if (this.prefs.appfolder.BLUR) + if (this.settings.appfolder.BLUR) this.blur_appfolders(); } set_brightness(b) { brightness = b; - if (this.prefs.appfolder.BLUR) + if (this.settings.appfolder.BLUR) this.blur_appfolders(); } @@ -259,7 +257,7 @@ export var AppFoldersBlur = class AppFoldersBlur { } _log(str) { - if (this.prefs.DEBUG) - log(`[Blur my Shell > appfolders] ${str}`); + if (this.settings.DEBUG) + console.log(`[Blur my Shell > appfolders] ${str}`); } }; diff --git a/src/components/applications.js b/src/components/applications.js index 38f19455..3c7b3a86 100644 --- a/src/components/applications.js +++ b/src/components/applications.js @@ -1,5 +1,3 @@ -'use strict'; - import Shell from 'gi://Shell'; import Clutter from 'gi://Clutter'; import Meta from 'gi://Meta'; @@ -8,10 +6,10 @@ import * as Main from 'resource:///org/gnome/shell/ui/main.js'; import { PaintSignals } from '../effects/paint_signals.js'; import { ApplicationsService } from '../dbus/services.js'; -export var ApplicationsBlur = class ApplicationsBlur { - constructor(connections, prefs) { +export const ApplicationsBlur = class ApplicationsBlur { + constructor(connections, settings) { this.connections = connections; - this.prefs = prefs; + this.settings = settings; this.paint_signals = new PaintSignals(connections); // stores every blurred window @@ -52,7 +50,7 @@ export var ApplicationsBlur = class ApplicationsBlur { connect_to_overview() { this.connections.disconnect_all_for(Main.overview); - if (this.prefs.applications.BLUR_ON_OVERVIEW) { + if (this.settings.applications.BLUR_ON_OVERVIEW) { // when the overview is opened, show every window actors (which // allows the blur to be shown too) this.connections.connect( @@ -168,9 +166,9 @@ export var ApplicationsBlur = class ApplicationsBlur { let mutter_hint = meta_window.get_mutter_hints(); let window_wm_class = meta_window.get_wm_class(); - let enable_all = this.prefs.applications.ENABLE_ALL; - let whitelist = this.prefs.applications.WHITELIST; - let blacklist = this.prefs.applications.BLACKLIST; + let enable_all = this.settings.applications.ENABLE_ALL; + let whitelist = this.settings.applications.WHITELIST; + let blacklist = this.settings.applications.BLACKLIST; this._log(`checking blur for ${pid}`); @@ -191,12 +189,12 @@ export var ApplicationsBlur = class ApplicationsBlur { let brightness, sigma; - if (this.prefs.applications.CUSTOMIZE) { - brightness = this.prefs.applications.BRIGHTNESS; - sigma = this.prefs.applications.SIGMA; + if (this.settings.applications.CUSTOMIZE) { + brightness = this.settings.applications.BRIGHTNESS; + sigma = this.settings.applications.SIGMA; } else { - brightness = this.prefs.BRIGHTNESS; - sigma = this.prefs.SIGMA; + brightness = this.settings.BRIGHTNESS; + sigma = this.settings.SIGMA; } this.update_blur(pid, window_actor, meta_window, brightness, sigma); @@ -244,12 +242,12 @@ export var ApplicationsBlur = class ApplicationsBlur { parse_xprop(property) { // set brightness and sigma to default values let brightness, sigma; - if (this.prefs.applications.CUSTOMIZE) { - brightness = this.prefs.applications.BRIGHTNESS; - sigma = this.prefs.applications.SIGMA; + if (this.settings.applications.CUSTOMIZE) { + brightness = this.settings.applications.BRIGHTNESS; + sigma = this.settings.applications.SIGMA; } else { - brightness = this.prefs.BRIGHTNESS; - sigma = this.prefs.SIGMA; + brightness = this.settings.BRIGHTNESS; + sigma = this.settings.SIGMA; } // get the argument of the property @@ -338,7 +336,7 @@ export var ApplicationsBlur = class ApplicationsBlur { ); // if hacks are selected, force to repaint the window - if (this.prefs.HACKS_LEVEL === 1 || this.prefs.HACKS_LEVEL === 2) { + if (this.settings.HACKS_LEVEL === 1 || this.settings.HACKS_LEVEL === 2) { this._log("applications hack level 1 or 2"); this.paint_signals.disconnect_all(); @@ -351,11 +349,11 @@ export var ApplicationsBlur = class ApplicationsBlur { window_actor.insert_child_at_index(blur_actor, 0); // make sure window is blurred in overview - if (this.prefs.applications.BLUR_ON_OVERVIEW) + if (this.settings.applications.BLUR_ON_OVERVIEW) this.enforce_window_visibility_on_overview_for(window_actor); // set the window actor's opacity - this.set_window_opacity(window_actor, this.prefs.applications.OPACITY); + this.set_window_opacity(window_actor, this.settings.applications.OPACITY); // register the blur actor/effect blur_actor['blur_provider_pid'] = pid; @@ -389,7 +387,7 @@ export var ApplicationsBlur = class ApplicationsBlur { enforce_window_visibility_on_overview_for(window_actor) { this.connections.connect(window_actor, 'notify::visible', _ => { - if (this.prefs.applications.BLUR_ON_OVERVIEW) { + if (this.settings.applications.BLUR_ON_OVERVIEW) { if ( !window_actor.visible && Main.overview.visible @@ -505,7 +503,7 @@ export var ApplicationsBlur = class ApplicationsBlur { /// Update the opacity of all window actors. set_opacity() { - let opacity = this.prefs.applications.OPACITY; + let opacity = this.settings.applications.OPACITY; this.window_map.forEach(((meta_window, _pid) => { let window_actor = meta_window.get_compositor_private(); @@ -536,7 +534,7 @@ export var ApplicationsBlur = class ApplicationsBlur { set_noise_lightness(l) { } _log(str) { - if (this.prefs.DEBUG) - log(`[Blur my Shell > applications] ${str}`); + if (this.settings.DEBUG) + console.log(`[Blur my Shell > applications] ${str}`); } }; diff --git a/src/components/dash_to_dock.js b/src/components/dash_to_dock.js index b18cac91..04affd20 100644 --- a/src/components/dash_to_dock.js +++ b/src/components/dash_to_dock.js @@ -1,5 +1,3 @@ -'use strict'; - import St from 'gi://St'; import Shell from 'gi://Shell'; import * as Main from 'resource:///org/gnome/shell/ui/main.js'; @@ -19,14 +17,14 @@ const DASH_STYLES = [ /// /// This allows to dynamically track the created dashes for each screen. class DashInfos { - constructor(dash_blur, dash, background_parent, effect, prefs) { + constructor(dash_blur, dash, background_parent, effect, settings) { // the parent DashBlur object, to communicate this.dash_blur = dash_blur; // the blurred dash this.dash = dash; this.background_parent = background_parent; this.effect = effect; - this.prefs = prefs; + this.settings = settings; this.old_style = this.dash._background.style; dash_blur.connections.connect(dash_blur, 'remove-dashes', () => { @@ -55,7 +53,7 @@ class DashInfos { ); this.dash.set_style_class_name( - DASH_STYLES[this.prefs.dash_to_dock.STYLE_DASH_TO_DOCK] + DASH_STYLES[this.settings.dash_to_dock.STYLE_DASH_TO_DOCK] ); }); @@ -77,23 +75,23 @@ class DashInfos { } _log(str) { - if (this.prefs.DEBUG) - log(`[Blur my Shell > dash] ${str}`); + if (this.settings.DEBUG) + console.log(`[Blur my Shell > dash] ${str}`); } } -export var DashBlur = class DashBlur { - constructor(connections, prefs) { +export const DashBlur = class DashBlur { + constructor(connections, settings) { this.dashes = []; this.connections = connections; - this.prefs = prefs; + this.settings = settings; this.paint_signals = new PaintSignals(connections); - this.sigma = this.prefs.dash_to_dock.CUSTOMIZE - ? this.prefs.dash_to_dock.SIGMA - : this.prefs.SIGMA; - this.brightness = this.prefs.dash_to_dock.CUSTOMIZE - ? this.prefs.dash_to_dock.BRIGHTNESS - : this.prefs.BRIGHTNESS; + this.sigma = this.settings.dash_to_dock.CUSTOMIZE + ? this.settings.dash_to_dock.SIGMA + : this.settings.SIGMA; + this.brightness = this.settings.dash_to_dock.CUSTOMIZE + ? this.settings.dash_to_dock.BRIGHTNESS + : this.settings.BRIGHTNESS; this.enabled = false; } @@ -196,7 +194,7 @@ export var DashBlur = class DashBlur { // // [1]: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2857 - if (this.prefs.HACKS_LEVEL === 1) { + if (this.settings.HACKS_LEVEL === 1) { this._log("dash hack level 1"); this.paint_signals.disconnect_all(); @@ -212,7 +210,7 @@ export var DashBlur = class DashBlur { 'enter-event', 'leave-event', 'button-press-event' ], rp); } catch (e) { - this._log(`${e}, continuing`); + this._warn(`${e}, continuing`); } }); @@ -224,7 +222,7 @@ export var DashBlur = class DashBlur { 'enter-event', 'leave-event', 'button-press-event' ], rp); } catch (e) { - this._log(`${e}, continuing`); + this._warn(`${e}, continuing`); } }); @@ -235,7 +233,7 @@ export var DashBlur = class DashBlur { ], rp); this.connections.connect(dash, 'leave-event', rp); - } else if (this.prefs.HACKS_LEVEL === 2) { + } else if (this.settings.HACKS_LEVEL === 2) { this._log("dash hack level 2"); this.paint_signals.connect(background, effect); @@ -245,7 +243,7 @@ export var DashBlur = class DashBlur { // create infos let infos = new DashInfos( - this, dash, background_parent, effect, this.prefs + this, dash, background_parent, effect, this.settings ); // update the background @@ -259,7 +257,7 @@ export var DashBlur = class DashBlur { connect_to_overview() { this.connections.disconnect_all_for(Main.overview); - if (this.prefs.dash_to_dock.UNBLUR_IN_OVERVIEW) { + if (this.settings.dash_to_dock.UNBLUR_IN_OVERVIEW) { this.connections.connect( Main.overview, 'showing', this.hide.bind(this) ); @@ -272,7 +270,7 @@ export var DashBlur = class DashBlur { /// Updates the background to either remove it or not, according to the /// user preferences. update_background() { - if (this.prefs.dash_to_dock.OVERRIDE_BACKGROUND) + if (this.settings.dash_to_dock.OVERRIDE_BACKGROUND) this.emit('override-background', true); else this.emit('reset-background', true); @@ -312,8 +310,12 @@ export var DashBlur = class DashBlur { } _log(str) { - if (this.prefs.DEBUG) - log(`[Blur my Shell > dash manager] ${str}`); + if (this.settings.DEBUG) + console.log(`[Blur my Shell > dash manager] ${str}`); + } + + _warn(str) { + console.warn(`[Blur my Shell > dash manager] ${str}`); } }; diff --git a/src/components/lockscreen.js b/src/components/lockscreen.js index b326ec2f..acc46b6e 100644 --- a/src/components/lockscreen.js +++ b/src/components/lockscreen.js @@ -1,5 +1,3 @@ -'use strict'; - import St from 'gi://St'; import Shell from 'gi://Shell'; import * as Main from 'resource:///org/gnome/shell/ui/main.js'; @@ -21,30 +19,30 @@ const original_updateBackgroundEffects = UnlockDialog.prototype._updateBackgroundEffects; -export var LockscreenBlur = class LockscreenBlur { - constructor(connections, prefs) { +export const LockscreenBlur = class LockscreenBlur { + constructor(connections, settings) { this.connections = connections; - this.prefs = prefs; + this.settings = settings; } enable() { this._log("blurring lockscreen"); - brightness = this.prefs.lockscreen.CUSTOMIZE - ? this.prefs.lockscreen.BRIGHTNESS - : this.prefs.BRIGHTNESS; - sigma = this.prefs.lockscreen.CUSTOMIZE - ? this.prefs.lockscreen.SIGMA - : this.prefs.SIGMA; - color = this.prefs.lockscreen.CUSTOMIZE - ? this.prefs.lockscreen.COLOR - : this.prefs.COLOR; - noise = this.prefs.lockscreen.CUSTOMIZE - ? this.prefs.lockscreen.NOISE_AMOUNT - : this.prefs.NOISE_AMOUNT; - lightness = this.prefs.lockscreen.CUSTOMIZE - ? this.prefs.lockscreen.NOISE_LIGHTNESS - : this.prefs.NOISE_LIGHTNESS; + brightness = this.settings.lockscreen.CUSTOMIZE + ? this.settings.lockscreen.BRIGHTNESS + : this.settings.BRIGHTNESS; + sigma = this.settings.lockscreen.CUSTOMIZE + ? this.settings.lockscreen.SIGMA + : this.settings.SIGMA; + color = this.settings.lockscreen.CUSTOMIZE + ? this.settings.lockscreen.COLOR + : this.settings.COLOR; + noise = this.settings.lockscreen.CUSTOMIZE + ? this.settings.lockscreen.NOISE_AMOUNT + : this.settings.NOISE_AMOUNT; + lightness = this.settings.lockscreen.CUSTOMIZE + ? this.settings.lockscreen.NOISE_LIGHTNESS + : this.settings.NOISE_LIGHTNESS; this.update_lockscreen(); } @@ -78,13 +76,13 @@ export var LockscreenBlur = class LockscreenBlur { let color_effect = new ColorEffect({ name: 'color', color: color - }, this.prefs); + }, this.settings); let noise_effect = new NoiseEffect({ name: 'noise', noise: noise, lightness: lightness - }, this.prefs); + }, this.settings); widget.add_effect(color_effect); widget.add_effect(noise_effect); @@ -165,7 +163,7 @@ export var LockscreenBlur = class LockscreenBlur { } _log(str) { - if (this.prefs.DEBUG) - log(`[Blur my Shell > lockscreen] ${str}`); + if (this.settings.DEBUG) + console.log(`[Blur my Shell > lockscreen] ${str}`); } }; diff --git a/src/components/overview.js b/src/components/overview.js index 89d164ba..c020848d 100644 --- a/src/components/overview.js +++ b/src/components/overview.js @@ -1,5 +1,3 @@ -'use strict'; - import Shell from 'gi://Shell'; import Meta from 'gi://Meta'; import * as Main from 'resource:///org/gnome/shell/ui/main.js'; @@ -18,11 +16,11 @@ const OVERVIEW_COMPONENTS_STYLE = [ ]; -export var OverviewBlur = class OverviewBlur { - constructor(connections, prefs) { +export const OverviewBlur = class OverviewBlur { + constructor(connections, settings) { this.connections = connections; this.effects = []; - this.prefs = prefs; + this.settings = settings; this._workspace_switch_bg_actors = []; this.enabled = false; } @@ -86,7 +84,7 @@ export var OverviewBlur = class OverviewBlur { // this permits to show the blur behind windows that are on // workspaces on the left and right if ( - outer_this.prefs.applications.BLUR + outer_this.settings.applications.BLUR ) { let ws_index = w_m.get_active_workspace_index(); [ws_index - 1, ws_index + 1].forEach( @@ -125,7 +123,7 @@ export var OverviewBlur = class OverviewBlur { // this hides windows that are not on the current workspace if ( - outer_this.prefs.applications.BLUR + outer_this.settings.applications.BLUR ) for (let i = 0; i < w_m.get_n_workspaces(); i++) { if (i != w_m.get_active_workspace_index()) @@ -175,11 +173,11 @@ export var OverviewBlur = class OverviewBlur { .filter((child) => child instanceof Meta.BackgroundActor); let background = background_group[ - Main.layoutManager.monitors.length - monitor.index - 1 + Main.layoutManager.monitors.length - monitor.index - 1 ]; if (!background) { - this._log("could not get background for overview"); + this._warn("could not get background for overview"); return bg_actor; } @@ -188,12 +186,12 @@ export var OverviewBlur = class OverviewBlur { }); let blur_effect = new Shell.BlurEffect({ - brightness: this.prefs.overview.CUSTOMIZE - ? this.prefs.overview.BRIGHTNESS - : this.prefs.BRIGHTNESS, - sigma: this.prefs.overview.CUSTOMIZE - ? this.prefs.overview.SIGMA - : this.prefs.SIGMA + brightness: this.settings.overview.CUSTOMIZE + ? this.settings.overview.BRIGHTNESS + : this.settings.BRIGHTNESS, + sigma: this.settings.overview.CUSTOMIZE + ? this.settings.overview.SIGMA + : this.settings.SIGMA * monitor.geometry_scale, mode: Shell.BlurMode.ACTOR }); @@ -202,19 +200,19 @@ export var OverviewBlur = class OverviewBlur { blur_effect.scale = monitor.geometry_scale; let color_effect = new ColorEffect({ - color: this.prefs.overview.CUSTOMIZE - ? this.prefs.overview.COLOR - : this.prefs.COLOR - }, this.prefs); + color: this.settings.overview.CUSTOMIZE + ? this.settings.overview.COLOR + : this.settings.COLOR + }, this.settings); let noise_effect = new NoiseEffect({ - noise: this.prefs.overview.CUSTOMIZE - ? this.prefs.overview.NOISE_AMOUNT - : this.prefs.NOISE_AMOUNT, - lightness: this.prefs.overview.CUSTOMIZE - ? this.prefs.overview.NOISE_LIGHTNESS - : this.prefs.NOISE_LIGHTNESS - }, this.prefs); + noise: this.settings.overview.CUSTOMIZE + ? this.settings.overview.NOISE_AMOUNT + : this.settings.NOISE_AMOUNT, + lightness: this.settings.overview.CUSTOMIZE + ? this.settings.overview.NOISE_LIGHTNESS + : this.settings.NOISE_LIGHTNESS + }, this.settings); bg_actor.add_effect(color_effect); bg_actor.add_effect(noise_effect); @@ -235,7 +233,7 @@ export var OverviewBlur = class OverviewBlur { ); Main.uiGroup.add_style_class_name( - OVERVIEW_COMPONENTS_STYLE[this.prefs.overview.STYLE_COMPONENTS] + OVERVIEW_COMPONENTS_STYLE[this.settings.overview.STYLE_COMPONENTS] ); } @@ -297,7 +295,11 @@ export var OverviewBlur = class OverviewBlur { } _log(str) { - if (this.prefs.DEBUG) - log(`[Blur my Shell > overview] ${str}`); + if (this.settings.DEBUG) + console.log(`[Blur my Shell > overview] ${str}`); + } + + _warn(str) { + console.warn(`[Blur my Shell > overview] ${str}`); } }; diff --git a/src/components/panel.js b/src/components/panel.js index aeb69c4d..465a7433 100644 --- a/src/components/panel.js +++ b/src/components/panel.js @@ -1,5 +1,3 @@ -'use strict'; - import St from 'gi://St'; import Shell from 'gi://Shell'; import Meta from 'gi://Meta'; @@ -20,11 +18,11 @@ const PANEL_STYLES = [ ]; -export var PanelBlur = class PanelBlur { - constructor(connections, prefs) { +export const PanelBlur = class PanelBlur { + constructor(connections, settings) { this.connections = connections; this.window_signal_ids = new Map(); - this.prefs = prefs; + this.settings = settings; this.actors_list = []; this.enabled = false; } @@ -117,7 +115,7 @@ export var PanelBlur = class PanelBlur { .map(p => p.panel) .includes(Main.panel) && - this.prefs.dash_to_panel.BLUR_ORIGINAL_PANEL + this.settings.dash_to_panel.BLUR_ORIGINAL_PANEL ) this.maybe_blur_panel(Main.panel); }; @@ -155,7 +153,7 @@ export var PanelBlur = class PanelBlur { x: 0, y: 0, width: 0, height: 0 }); - let background = this.prefs.panel.STATIC_BLUR + let background = this.settings.panel.STATIC_BLUR ? new Meta.BackgroundActor({ meta_display: global.display, monitor: monitor.index @@ -168,14 +166,14 @@ export var PanelBlur = class PanelBlur { panel_box.insert_child_at_index(background_parent, 0); let blur = new Shell.BlurEffect({ - brightness: this.prefs.panel.CUSTOMIZE - ? this.prefs.panel.BRIGHTNESS - : this.prefs.BRIGHTNESS, - sigma: this.prefs.panel.CUSTOMIZE - ? this.prefs.panel.SIGMA - : this.prefs.SIGMA + brightness: this.settings.panel.CUSTOMIZE + ? this.settings.panel.BRIGHTNESS + : this.settings.BRIGHTNESS, + sigma: this.settings.panel.CUSTOMIZE + ? this.settings.panel.SIGMA + : this.settings.SIGMA * monitor.geometry_scale, - mode: this.prefs.panel.STATIC_BLUR + mode: this.settings.panel.STATIC_BLUR ? Shell.BlurMode.ACTOR : Shell.BlurMode.BACKGROUND }); @@ -184,19 +182,19 @@ export var PanelBlur = class PanelBlur { blur.scale = monitor.geometry_scale; let color = new ColorEffect({ - color: this.prefs.panel.CUSTOMIZE - ? this.prefs.panel.COLOR - : this.prefs.COLOR - }, this.prefs); + color: this.settings.panel.CUSTOMIZE + ? this.settings.panel.COLOR + : this.settings.COLOR + }, this.settings); let noise = new NoiseEffect({ - noise: this.prefs.panel.CUSTOMIZE - ? this.prefs.panel.NOISE_AMOUNT - : this.prefs.NOISE_AMOUNT, - lightness: this.prefs.panel.CUSTOMIZE - ? this.prefs.panel.NOISE_LIGHTNESS - : this.prefs.NOISE_LIGHTNESS - }, this.prefs); + noise: this.settings.panel.CUSTOMIZE + ? this.settings.panel.NOISE_AMOUNT + : this.settings.NOISE_AMOUNT, + lightness: this.settings.panel.CUSTOMIZE + ? this.settings.panel.NOISE_LIGHTNESS + : this.settings.NOISE_LIGHTNESS + }, this.settings); let paint_signals = new PaintSignals(this.connections); @@ -237,7 +235,7 @@ export var PanelBlur = class PanelBlur { } change_blur_type(actors) { - let is_static = this.prefs.panel.STATIC_BLUR; + let is_static = this.settings.panel.STATIC_BLUR; // reset widgets to right state actors.widgets.background_parent.remove_child(actors.widgets.background); @@ -286,7 +284,7 @@ export var PanelBlur = class PanelBlur { // [1]: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2857 if (!is_static) { - if (this.prefs.HACKS_LEVEL === 1) { + if (this.settings.HACKS_LEVEL === 1) { this._log("panel hack level 1"); actors.paint_signals.disconnect_all(); @@ -301,7 +299,7 @@ export var PanelBlur = class PanelBlur { 'enter-event', 'leave-event', 'button-press-event' ], rp); }); - } else if (this.prefs.HACKS_LEVEL === 2) { + } else if (this.settings.HACKS_LEVEL === 2) { this._log("panel hack level 2"); actors.paint_signals.disconnect_all(); @@ -316,7 +314,7 @@ export var PanelBlur = class PanelBlur { update_wallpaper(actors) { // if static blur, get right wallpaper and update blur with it - if (this.prefs.panel.STATIC_BLUR) { + if (this.settings.panel.STATIC_BLUR) { let bg = Main.layoutManager._backgroundGroup.get_child_at_index( Main.layoutManager.monitors.length - this.find_monitor_for(actors.widgets.panel).index - 1 @@ -326,7 +324,7 @@ export var PanelBlur = class PanelBlur { background: bg.get_content().background }); else - this._log("could not get background for panel"); + this._warn("could not get background for panel"); } } @@ -343,7 +341,7 @@ export var PanelBlur = class PanelBlur { background.height = height; // if static blur, need to clip the background - if (this.prefs.panel.STATIC_BLUR) { + if (this.settings.panel.STATIC_BLUR) { // an alternative to panel.get_transformed_position, because it // sometimes yields NaN (probably when the actor is not fully // positionned yet) @@ -393,10 +391,10 @@ export var PanelBlur = class PanelBlur { // if this is the case, do nothing as only the panel blur interfers with // hidetopbar if ( - this.prefs.panel.BLUR && - this.prefs.panel.UNBLUR_IN_OVERVIEW + this.settings.panel.BLUR && + this.settings.panel.UNBLUR_IN_OVERVIEW ) { - if (!this.prefs.hidetopbar.COMPATIBILITY) { + if (!this.settings.hidetopbar.COMPATIBILITY) { this.connections.connect( Main.overview, 'showing', this.hide.bind(this) ); @@ -420,7 +418,7 @@ export var PanelBlur = class PanelBlur { /// Connect to windows disable transparency when a window is too close connect_to_windows() { if ( - this.prefs.panel.OVERRIDE_BACKGROUND_DYNAMICALLY + this.settings.panel.OVERRIDE_BACKGROUND_DYNAMICALLY ) { // connect to overview opening/closing this.connections.connect(Main.overview, ['showing', 'hiding'], @@ -581,19 +579,19 @@ export var PanelBlur = class PanelBlur { PANEL_STYLES.forEach(style => panel.remove_style_class_name(style)); if ( - this.prefs.panel.OVERRIDE_BACKGROUND + this.settings.panel.OVERRIDE_BACKGROUND && should_override ) panel.add_style_class_name( - PANEL_STYLES[this.prefs.panel.STYLE_PANEL] + PANEL_STYLES[this.settings.panel.STYLE_PANEL] ); } /// Fixes a bug where the blur is washed away when changing the sigma, or /// enabling/disabling other effects. invalidate_blur(actors) { - if (this.prefs.panel.STATIC_BLUR && actors.widgets.background) + if (this.settings.panel.STATIC_BLUR && actors.widgets.background) actors.widgets.background.get_content().invalidate(); } @@ -667,7 +665,11 @@ export var PanelBlur = class PanelBlur { } _log(str) { - if (this.prefs.DEBUG) - log(`[Blur my Shell > panel] ${str}`); + if (this.settings.DEBUG) + console.log(`[Blur my Shell > panel] ${str}`); + } + + _warn(str) { + console.warn(`[Blur my Shell > panel] ${str}`); } }; diff --git a/src/components/screenshot.js b/src/components/screenshot.js index 941a488a..9ec76e66 100644 --- a/src/components/screenshot.js +++ b/src/components/screenshot.js @@ -1,5 +1,3 @@ -'use strict'; - import Shell from 'gi://Shell'; import Meta from 'gi://Meta'; import * as Main from 'resource:///org/gnome/shell/ui/main.js'; @@ -8,11 +6,11 @@ import { ColorEffect } from '../effects/color_effect.js'; import { NoiseEffect } from '../effects/noise_effect.js'; -export var ScreenshotBlur = class ScreenshotBlur { - constructor(connections, prefs) { +export const ScreenshotBlur = class ScreenshotBlur { + constructor(connections, settings) { this.connections = connections; this.effects = []; - this.prefs = prefs; + this.settings = settings; } enable() { @@ -74,7 +72,7 @@ export var ScreenshotBlur = class ScreenshotBlur { ); if (!background) { - this._log("could not get background for screenshot's window selector"); + this._warn("could not get background for screenshot's window selector"); return bg_actor; } @@ -83,12 +81,12 @@ export var ScreenshotBlur = class ScreenshotBlur { }); let blur_effect = new Shell.BlurEffect({ - brightness: this.prefs.screenshot.CUSTOMIZE - ? this.prefs.screenshot.BRIGHTNESS - : this.prefs.BRIGHTNESS, - sigma: this.prefs.screenshot.CUSTOMIZE - ? this.prefs.screenshot.SIGMA - : this.prefs.SIGMA + brightness: this.settings.screenshot.CUSTOMIZE + ? this.settings.screenshot.BRIGHTNESS + : this.settings.BRIGHTNESS, + sigma: this.settings.screenshot.CUSTOMIZE + ? this.settings.screenshot.SIGMA + : this.settings.SIGMA * monitor.geometry_scale, mode: Shell.BlurMode.ACTOR }); @@ -97,19 +95,19 @@ export var ScreenshotBlur = class ScreenshotBlur { blur_effect.scale = monitor.geometry_scale; let color_effect = new ColorEffect({ - color: this.prefs.screenshot.CUSTOMIZE - ? this.prefs.screenshot.COLOR - : this.prefs.COLOR - }, this.prefs); + color: this.settings.screenshot.CUSTOMIZE + ? this.settings.screenshot.COLOR + : this.settings.COLOR + }, this.settings); let noise_effect = new NoiseEffect({ - noise: this.prefs.screenshot.CUSTOMIZE - ? this.prefs.screenshot.NOISE_AMOUNT - : this.prefs.NOISE_AMOUNT, - lightness: this.prefs.screenshot.CUSTOMIZE - ? this.prefs.screenshot.NOISE_LIGHTNESS - : this.prefs.NOISE_LIGHTNESS - }, this.prefs); + noise: this.settings.screenshot.CUSTOMIZE + ? this.settings.screenshot.NOISE_AMOUNT + : this.settings.NOISE_AMOUNT, + lightness: this.settings.screenshot.CUSTOMIZE + ? this.settings.screenshot.NOISE_LIGHTNESS + : this.settings.NOISE_LIGHTNESS + }, this.settings); bg_actor.add_effect(color_effect); bg_actor.add_effect(noise_effect); @@ -165,7 +163,11 @@ export var ScreenshotBlur = class ScreenshotBlur { } _log(str) { - if (this.prefs.DEBUG) - log(`[Blur my Shell > screenshot] ${str}`); + if (this.settings.DEBUG) + console.log(`[Blur my Shell > screenshot] ${str}`); + } + + _warn(str) { + console.warn(`[Blur my Shell > screenshot] ${str}`); } }; diff --git a/src/components/window_list.js b/src/components/window_list.js index 23e1e90c..4636006e 100644 --- a/src/components/window_list.js +++ b/src/components/window_list.js @@ -1,14 +1,12 @@ -'use strict'; - import Shell from 'gi://Shell'; import * as Main from 'resource:///org/gnome/shell/ui/main.js'; import { PaintSignals } from '../effects/paint_signals.js'; -export var WindowListBlur = class WindowListBlur { - constructor(connections, prefs) { +export const WindowListBlur = class WindowListBlur { + constructor(connections, settings) { this.connections = connections; - this.prefs = prefs; + this.settings = settings; this.paint_signals = new PaintSignals(connections); this.effects = []; } @@ -47,12 +45,12 @@ export var WindowListBlur = class WindowListBlur { let blur_effect = new Shell.BlurEffect({ name: 'window-list-blur', - sigma: this.prefs.window_list.CUSTOMIZE - ? this.prefs.window_list.SIGMA - : this.prefs.SIGMA, - brightness: this.prefs.window_list.CUSTOMIZE - ? this.prefs.window_list.BRIGHTNESS - : this.prefs.BRIGHTNESS, + sigma: this.settings.window_list.CUSTOMIZE + ? this.settings.window_list.SIGMA + : this.settings.SIGMA, + brightness: this.settings.window_list.CUSTOMIZE + ? this.settings.window_list.BRIGHTNESS + : this.settings.BRIGHTNESS, mode: Shell.BlurMode.BACKGROUND }); @@ -81,12 +79,12 @@ export var WindowListBlur = class WindowListBlur { // // [1]: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2857 - if (this.prefs.HACKS_LEVEL === 1) { + if (this.settings.HACKS_LEVEL === 1) { this._log("window list hack level 1"); this.paint_signals.connect(child, blur_effect); - } else if (this.prefs.HACKS_LEVEL === 2) { + } else if (this.settings.HACKS_LEVEL === 2) { this._log("window list hack level 2"); this.paint_signals.connect(child, blur_effect); @@ -139,9 +137,9 @@ export var WindowListBlur = class WindowListBlur { show() { this.set_sigma( - this.prefs.window_list.CUSTOMIZE - ? this.prefs.window_list.SIGMA - : this.prefs.SIGMA + this.settings.window_list.CUSTOMIZE + ? this.settings.window_list.SIGMA + : this.settings.SIGMA ); } @@ -157,7 +155,7 @@ export var WindowListBlur = class WindowListBlur { } _log(str) { - if (this.prefs.DEBUG) - log(`[Blur my Shell > window list] ${str}`); + if (this.settings.DEBUG) + console.log(`[Blur my Shell > window list] ${str}`); } }; \ No newline at end of file diff --git a/src/conveniences/connections.js b/src/conveniences/connections.js index 181534ed..c15ef48b 100644 --- a/src/conveniences/connections.js +++ b/src/conveniences/connections.js @@ -1,9 +1,7 @@ -'use strict'; - import GObject from 'gi://GObject'; /// An object to easily manage signals. -export var Connections = class Connections { +export const Connections = class Connections { constructor() { this.buffer = []; } @@ -73,7 +71,7 @@ export var Connections = class Connections { try { connection.actor.disconnect(connection.id); } catch (e) { - this._log(`error removing connection: ${e}; continuing`); + this._warn(`error removing connection: ${e}; continuing`); } // remove from buffer @@ -89,7 +87,7 @@ export var Connections = class Connections { try { connection.actor.disconnect(connection.id); } catch (e) { - this._log(`error removing connection: ${e}; continuing`); + this._warn(`error removing connection: ${e}; continuing`); } }); @@ -97,8 +95,7 @@ export var Connections = class Connections { this.buffer = []; } - _log(str) { - // no need to check if DEBUG here as this._log is only used on error - log(`[Blur my Shell > connections] ${str}`); + _warn(str) { + console.warn(`[Blur my Shell > connections] ${str}`); } }; \ No newline at end of file diff --git a/src/conveniences/keys.js b/src/conveniences/keys.js index 700f667d..5a87ba44 100644 --- a/src/conveniences/keys.js +++ b/src/conveniences/keys.js @@ -1,9 +1,7 @@ -'use strict'; - import { Type } from './settings.js'; // This lists the preferences keys -export var Keys = [ +export const Keys = [ { component: "general", schemas: [ { type: Type.I, name: "sigma" }, diff --git a/src/conveniences/settings.js b/src/conveniences/settings.js index 338b2cb9..d2bef17a 100644 --- a/src/conveniences/settings.js +++ b/src/conveniences/settings.js @@ -1,11 +1,9 @@ -'use strict'; - import GLib from 'gi://GLib'; const Signals = imports.signals; /// An enum non-extensively describing the type of gsettings key. -export var Type = { +export const Type = { B: 'Boolean', I: 'Integer', D: 'Double', @@ -18,14 +16,14 @@ export var Type = { /// /// Should be initialized with an array of keys, for example: /// -/// let prefs = new Prefs([ +/// let settings = new Settings([ /// { type: Type.I, name: "panel-corner-radius" }, /// { type: Type.B, name: "debug" } /// ]); /// /// Each {type, name} object represents a gsettings key, which must be created /// in the gschemas.xml file of the extension. -export var Prefs = class Prefs { +export const Settings = class Settings { constructor(keys, settings) { this.settings = settings; this.keys = keys; @@ -158,13 +156,13 @@ export var Prefs = class Prefs { } /// From the gschema name, returns the name of the associated property on - /// the Prefs object. + /// the Settings object. get_property_name(name) { return name.replaceAll('-', '_').toUpperCase(); } - /// Remove all connections managed by the Prefs object, i.e. created with - /// `prefs.PROPERTY_changed(callback)`. + /// Remove all connections managed by the Settings object, i.e. created with + /// `settings.PROPERTY_changed(callback)`. disconnect_all_settings() { this.keys.forEach(bundle => { let component = this; @@ -181,4 +179,4 @@ export var Prefs = class Prefs { } }; -Signals.addSignalMethods(Prefs.prototype); \ No newline at end of file +Signals.addSignalMethods(Settings.prototype); \ No newline at end of file diff --git a/src/dbus/client.js b/src/dbus/client.js index a3bc7316..3867b3a6 100644 --- a/src/dbus/client.js +++ b/src/dbus/client.js @@ -1,5 +1,3 @@ -'use strict'; - import Gio from 'gi://Gio'; const bus_name = 'org.gnome.Shell'; diff --git a/src/dbus/services.js b/src/dbus/services.js index 09b33667..9b566c2a 100644 --- a/src/dbus/services.js +++ b/src/dbus/services.js @@ -1,22 +1,19 @@ -'use strict'; - import Gio from 'gi://Gio'; import GLib from 'gi://GLib'; import * as Main from 'resource:///org/gnome/shell/ui/main.js'; import * as LookingGlass from 'resource:///org/gnome/shell/ui/lookingGlass.js'; -const decoder = new TextDecoder(); -const load_file = path => { - const [, buffer] = GLib.file_get_contents(path); - const contents = decoder.decode(buffer); - GLib.free(buffer); - return contents; -}; - -const iface = load_file(GLib.filename_from_uri(GLib.uri_resolve_relative(import.meta.url, 'iface.xml', GLib.UriFlags.NONE))[0]); -export var ApplicationsService = class ApplicationsService { +export const ApplicationsService = class ApplicationsService { constructor() { + let decoder = new TextDecoder(); + let path = GLib.filename_from_uri(GLib.uri_resolve_relative( + import.meta.url, 'iface.xml', GLib.UriFlags.NONE) + )[0]; + let [, buffer] = GLib.file_get_contents(path); + let iface = decoder.decode(buffer); + GLib.free(buffer); + this.DBusImpl = Gio.DBusExportedObject.wrapJSObject(iface, this); } @@ -85,7 +82,7 @@ export var ApplicationsService = class ApplicationsService { Gio.DBus.session, '/dev/aunetx/BlurMyShell' ); - } + }; unexport() { this.DBusImpl.unexport(); diff --git a/src/effects/color_effect.js b/src/effects/color_effect.js index b1480d3f..457eb7ba 100644 --- a/src/effects/color_effect.js +++ b/src/effects/color_effect.js @@ -1,5 +1,3 @@ -'use strict'; - import GLib from 'gi://GLib'; import GObject from 'gi://GObject'; import Clutter from 'gi://Clutter'; @@ -13,7 +11,7 @@ const get_shader_source = _ => { try { return Shell.get_file_contents_utf8_sync(SHADER_PATH); } catch (e) { - log(`[Blur my Shell] error loading shader from ${SHADER_PATH}: ${e}`); + console.warn(`[Blur my Shell] error loading shader from ${SHADER_PATH}: ${e}`); return null; } }; @@ -27,7 +25,7 @@ const get_shader_source = _ => { /// /// GJS Doc: /// https://gjs-docs.gnome.org/clutter10~10_api/clutter.shadereffect -export var ColorEffect = new GObject.registerClass({ +export const ColorEffect = new GObject.registerClass({ GTypeName: "ColorEffect", Properties: { 'red': GObject.ParamSpec.double( @@ -64,21 +62,21 @@ export var ColorEffect = new GObject.registerClass({ ), } }, class ColorShader extends Clutter.ShaderEffect { - constructor(params, prefs) { + constructor(params, settings) { // initialize without color as a parameter let _color = params.color; delete params.color; super(params); - + this._red = null; this._green = null; this._blue = null; this._blend = null; this._static = true; - this._prefs = prefs; + this._settings = settings; // set shader source @@ -164,7 +162,7 @@ export var ColorEffect = new GObject.registerClass({ update_enabled() { this.set_enabled( this.blend > 0 && - this._prefs.COLOR_AND_NOISE && + this._settings.COLOR_AND_NOISE && this._static ); } diff --git a/src/effects/noise_effect.js b/src/effects/noise_effect.js index aa5e5223..83ccc134 100644 --- a/src/effects/noise_effect.js +++ b/src/effects/noise_effect.js @@ -1,5 +1,3 @@ -'use strict'; - import GLib from 'gi://GLib'; import GObject from 'gi://GObject'; import Clutter from 'gi://Clutter'; @@ -12,12 +10,12 @@ const get_shader_source = _ => { try { return Shell.get_file_contents_utf8_sync(SHADER_PATH); } catch (e) { - log(`[Blur my Shell] error loading shader from ${SHADER_PATH}: ${e}`); + console.warn(`[Blur my Shell] error loading shader from ${SHADER_PATH}: ${e}`); return null; } }; -export var NoiseEffect = new GObject.registerClass({ +export const NoiseEffect = new GObject.registerClass({ GTypeName: "NoiseEffect", Properties: { 'noise': GObject.ParamSpec.double( @@ -38,14 +36,14 @@ export var NoiseEffect = new GObject.registerClass({ ), } }, class NoiseShader extends Clutter.ShaderEffect { - constructor(params, prefs) { + constructor(params, settings) { super(params); this._noise = null; this._lightness = null; this._static = true; - this._prefs = prefs; + this._settings = settings; // set shader source this._source = get_shader_source(); @@ -83,7 +81,7 @@ export var NoiseEffect = new GObject.registerClass({ update_enabled() { this.set_enabled( this.noise > 0 && - this._prefs.COLOR_AND_NOISE && + this._settings.COLOR_AND_NOISE && this._static ); } diff --git a/src/effects/paint_signals.js b/src/effects/paint_signals.js index 2b3a0d20..84a895b5 100644 --- a/src/effects/paint_signals.js +++ b/src/effects/paint_signals.js @@ -1,10 +1,8 @@ -'use strict'; - import GObject from 'gi://GObject'; import Clutter from 'gi://Clutter'; -export var PaintSignals = class PaintSignals { +export const PaintSignals = class PaintSignals { constructor(connections) { this.buffer = []; this.connections = connections; @@ -74,7 +72,7 @@ export var PaintSignals = class PaintSignals { } }; -export var EmitPaintSignal = GObject.registerClass({ +export const EmitPaintSignal = GObject.registerClass({ GTypeName: 'EmitPaintSignal', Signals: { 'update-blur': { diff --git a/src/extension.js b/src/extension.js index 6c0d582a..257b2469 100644 --- a/src/extension.js +++ b/src/extension.js @@ -1,5 +1,3 @@ -'use strict'; - import Meta from 'gi://Meta'; import Clutter from 'gi://Clutter'; import * as Main from 'resource:///org/gnome/shell/ui/main.js'; @@ -7,7 +5,7 @@ import * as Main from 'resource:///org/gnome/shell/ui/main.js'; import { Extension } from 'resource:///org/gnome/shell/extensions/extension.js'; import { Connections } from './conveniences/connections.js'; -import { Prefs } from './conveniences/settings.js'; +import { Settings } from './conveniences/settings.js'; import { Keys } from './conveniences/keys.js'; import { PanelBlur } from './components/panel.js'; @@ -36,10 +34,10 @@ export default class BlurMyShell extends Extension { global.blur_my_shell = this; - // create a Prefs instance, to manage extension's preferences + // create a Settings instance, to manage extension's preferences // it needs to be loaded before logging, as it checks for DEBUG - this._prefs = new Prefs(Keys, this.getSettings()); + this._settings = new Settings(Keys, this.getSettings()); this._log("enabling extension..."); @@ -60,7 +58,7 @@ export default class BlurMyShell extends Extension { // store it to keeps track of them globally this._connections.push(connection); - return [connection, this._prefs]; + return [connection, this._settings]; }; this._panel_blur = new PanelBlur(...init()); @@ -96,16 +94,16 @@ export default class BlurMyShell extends Extension { // try to enable the components as soon as possible anyway, this way the // overview may load before the user sees it try { - if (this._prefs.overview.BLUR && !this._overview_blur.enabled) + if (this._settings.overview.BLUR && !this._overview_blur.enabled) this._overview_blur.enable(); } catch (e) { } try { - if (this._prefs.dash_to_dock.BLUR + if (this._settings.dash_to_dock.BLUR && !this._dash_to_dock_blur.enabled) this._dash_to_dock_blur.enable(); } catch (e) { } try { - if (this._prefs.panel.BLUR && !this._panel_blur.enabled) + if (this._settings.panel.BLUR && !this._panel_blur.enabled) this._panel_blur.enable(); } catch (e) { } } @@ -137,7 +135,7 @@ export default class BlurMyShell extends Extension { // make sure no settings change can re-enable them - this._prefs.disconnect_all_settings(); + this._settings.disconnect_all_settings(); // force disconnecting every signal, even if component crashed @@ -156,7 +154,7 @@ export default class BlurMyShell extends Extension { this._log("extension disabled."); - this._prefs = null; + this._settings = null; } /// Restart the extension. @@ -174,7 +172,7 @@ export default class BlurMyShell extends Extension { /// the user really needs it, as clipped redraws are a huge performance /// boost for the compositor. _update_clipped_redraws() { - if (this._prefs.HACKS_LEVEL === 3) + if (this._settings.HACKS_LEVEL === 3) this._disable_clipped_redraws(); else this._reenable_clipped_redraws(); @@ -199,28 +197,28 @@ export default class BlurMyShell extends Extension { _enable_components() { // enable each component if needed, and if it is not already enabled - if (this._prefs.panel.BLUR && !this._panel_blur.enabled) + if (this._settings.panel.BLUR && !this._panel_blur.enabled) this._panel_blur.enable(); - if (this._prefs.dash_to_dock.BLUR && !this._dash_to_dock_blur.enabled) + if (this._settings.dash_to_dock.BLUR && !this._dash_to_dock_blur.enabled) this._dash_to_dock_blur.enable(); - if (this._prefs.overview.BLUR && !this._overview_blur.enabled) + if (this._settings.overview.BLUR && !this._overview_blur.enabled) this._overview_blur.enable(); - if (this._prefs.lockscreen.BLUR) + if (this._settings.lockscreen.BLUR) this._lockscreen_blur.enable(); - if (this._prefs.appfolder.BLUR) + if (this._settings.appfolder.BLUR) this._appfolder_blur.enable(); - if (this._prefs.applications.BLUR) + if (this._settings.applications.BLUR) this._applications_blur.enable(); - if (this._prefs.window_list.BLUR) + if (this._settings.window_list.BLUR) this._window_list_blur.enable(); - if (this._prefs.screenshot.BLUR) + if (this._settings.screenshot.BLUR) this._screenshot_blur.enable(); this._log("all components enabled."); @@ -231,22 +229,22 @@ export default class BlurMyShell extends Extension { // global blur values changed, update everybody - this._prefs.SIGMA_changed(() => { + this._settings.SIGMA_changed(() => { this._update_sigma(); }); - this._prefs.BRIGHTNESS_changed(() => { + this._settings.BRIGHTNESS_changed(() => { this._update_brightness(); }); - this._prefs.COLOR_changed(() => { + this._settings.COLOR_changed(() => { this._update_color(); }); - this._prefs.NOISE_AMOUNT_changed(() => { + this._settings.NOISE_AMOUNT_changed(() => { this._update_noise_amount(); }); - this._prefs.NOISE_LIGHTNESS_changed(() => { + this._settings.NOISE_LIGHTNESS_changed(() => { this._update_noise_lightness(); }); - this._prefs.COLOR_AND_NOISE_changed(() => { + this._settings.COLOR_AND_NOISE_changed(() => { // both updating noise amount and color calls `update_enabled` on // each color and noise effects this._update_noise_amount(); @@ -255,7 +253,7 @@ export default class BlurMyShell extends Extension { // restart the extension when hacks level is changed, easier than // restarting individual components and should not happen often either - this._prefs.HACKS_LEVEL_changed(_ => this._restart()); + this._settings.HACKS_LEVEL_changed(_ => this._restart()); // connect each component to use the proper sigma/brightness/color @@ -268,8 +266,8 @@ export default class BlurMyShell extends Extension { // ---------- OVERVIEW ---------- // toggled on/off - this._prefs.overview.BLUR_changed(() => { - if (this._prefs.overview.BLUR) { + this._settings.overview.BLUR_changed(() => { + if (this._settings.overview.BLUR) { this._overview_blur.enable(); } else { this._overview_blur.disable(); @@ -277,8 +275,8 @@ export default class BlurMyShell extends Extension { }); // overview components style changed - this._prefs.overview.STYLE_COMPONENTS_changed(() => { - if (this._prefs.overview.BLUR) { + this._settings.overview.STYLE_COMPONENTS_changed(() => { + if (this._settings.overview.BLUR) { this._overview_blur.update_components_classname(); } }); @@ -287,8 +285,8 @@ export default class BlurMyShell extends Extension { // ---------- APPFOLDER ---------- // toggled on/off - this._prefs.appfolder.BLUR_changed(() => { - if (this._prefs.appfolder.BLUR) { + this._settings.appfolder.BLUR_changed(() => { + if (this._settings.appfolder.BLUR) { this._appfolder_blur.enable(); } else { this._appfolder_blur.disable(); @@ -296,8 +294,8 @@ export default class BlurMyShell extends Extension { }); // appfolder dialogs style changed - this._prefs.appfolder.STYLE_DIALOGS_changed(() => { - if (this._prefs.appfolder.BLUR) + this._settings.appfolder.STYLE_DIALOGS_changed(() => { + if (this._settings.appfolder.BLUR) this._appfolder_blur.blur_appfolders(); }); @@ -305,47 +303,47 @@ export default class BlurMyShell extends Extension { // ---------- PANEL ---------- // toggled on/off - this._prefs.panel.BLUR_changed(() => { - if (this._prefs.panel.BLUR) { + this._settings.panel.BLUR_changed(() => { + if (this._settings.panel.BLUR) { this._panel_blur.enable(); } else { this._panel_blur.disable(); } }); - this._prefs.COLOR_AND_NOISE_changed(() => { + this._settings.COLOR_AND_NOISE_changed(() => { // permits making sure that the blur is not washed out when disabling // the other effects - if (this._prefs.panel.BLUR) + if (this._settings.panel.BLUR) this._panel_blur.invalidate_all_blur(); }); // static blur toggled on/off - this._prefs.panel.STATIC_BLUR_changed(() => { - if (this._prefs.panel.BLUR) + this._settings.panel.STATIC_BLUR_changed(() => { + if (this._settings.panel.BLUR) this._panel_blur.update_all_blur_type(); }); // panel blur's overview connection toggled on/off - this._prefs.panel.UNBLUR_IN_OVERVIEW_changed(() => { + this._settings.panel.UNBLUR_IN_OVERVIEW_changed(() => { this._panel_blur.connect_to_windows_and_overview(); }); // panel override background toggled on/off - this._prefs.panel.OVERRIDE_BACKGROUND_changed(() => { - if (this._prefs.panel.BLUR) + this._settings.panel.OVERRIDE_BACKGROUND_changed(() => { + if (this._settings.panel.BLUR) this._panel_blur.connect_to_windows_and_overview(); }); // panel style changed - this._prefs.panel.STYLE_PANEL_changed(() => { - if (this._prefs.panel.BLUR) + this._settings.panel.STYLE_PANEL_changed(() => { + if (this._settings.panel.BLUR) this._panel_blur.connect_to_windows_and_overview(); }); // panel background's dynamic overriding toggled on/off - this._prefs.panel.OVERRIDE_BACKGROUND_DYNAMICALLY_changed(() => { - if (this._prefs.panel.BLUR) + this._settings.panel.OVERRIDE_BACKGROUND_DYNAMICALLY_changed(() => { + if (this._settings.panel.BLUR) this._panel_blur.connect_to_windows_and_overview(); }); @@ -353,8 +351,8 @@ export default class BlurMyShell extends Extension { // ---------- DASH TO DOCK ---------- // toggled on/off - this._prefs.dash_to_dock.BLUR_changed(() => { - if (this._prefs.dash_to_dock.BLUR) { + this._settings.dash_to_dock.BLUR_changed(() => { + if (this._settings.dash_to_dock.BLUR) { this._dash_to_dock_blur.enable(); } else { this._dash_to_dock_blur.disable(); @@ -363,26 +361,26 @@ export default class BlurMyShell extends Extension { // TODO implement static blur for dash // static blur toggled on/off - this._prefs.dash_to_dock.STATIC_BLUR_changed(() => { - //if (this._prefs.dash_to_dock.BLUR) + this._settings.dash_to_dock.STATIC_BLUR_changed(() => { + //if (this._settings.dash_to_dock.BLUR) // this._dash_to_dock_blur.change_blur_type(); }); // dash-to-dock override background toggled on/off - this._prefs.dash_to_dock.OVERRIDE_BACKGROUND_changed(() => { - if (this._prefs.dash_to_dock.BLUR) + this._settings.dash_to_dock.OVERRIDE_BACKGROUND_changed(() => { + if (this._settings.dash_to_dock.BLUR) this._dash_to_dock_blur.update_background(); }); // dash-to-dock style changed - this._prefs.dash_to_dock.STYLE_DASH_TO_DOCK_changed(() => { - if (this._prefs.dash_to_dock.BLUR) + this._settings.dash_to_dock.STYLE_DASH_TO_DOCK_changed(() => { + if (this._settings.dash_to_dock.BLUR) this._dash_to_dock_blur.update_background(); }); // dash-to-dock blur's overview connection toggled on/off - this._prefs.dash_to_dock.UNBLUR_IN_OVERVIEW_changed(() => { - if (this._prefs.dash_to_dock.BLUR) + this._settings.dash_to_dock.UNBLUR_IN_OVERVIEW_changed(() => { + if (this._settings.dash_to_dock.BLUR) this._dash_to_dock_blur.connect_to_overview(); }); @@ -390,8 +388,8 @@ export default class BlurMyShell extends Extension { // ---------- APPLICATIONS ---------- // toggled on/off - this._prefs.applications.BLUR_changed(() => { - if (this._prefs.applications.BLUR) { + this._settings.applications.BLUR_changed(() => { + if (this._settings.applications.BLUR) { this._applications_blur.enable(); } else { this._applications_blur.disable(); @@ -399,39 +397,39 @@ export default class BlurMyShell extends Extension { }); // application opacity changed - this._prefs.applications.OPACITY_changed(_ => { - if (this._prefs.applications.BLUR) + this._settings.applications.OPACITY_changed(_ => { + if (this._settings.applications.BLUR) this._applications_blur.set_opacity( - this._prefs.applications.OPACITY + this._settings.applications.OPACITY ); }); // application blur-on-overview changed - this._prefs.applications.BLUR_ON_OVERVIEW_changed(_ => { - if (this._prefs.applications.BLUR) + this._settings.applications.BLUR_ON_OVERVIEW_changed(_ => { + if (this._settings.applications.BLUR) this._applications_blur.connect_to_overview(); }); // application enable-all changed - this._prefs.applications.ENABLE_ALL_changed(_ => { - if (this._prefs.applications.BLUR) + this._settings.applications.ENABLE_ALL_changed(_ => { + if (this._settings.applications.BLUR) this._applications_blur.update_all_windows(); }); // application whitelist changed - this._prefs.applications.WHITELIST_changed(_ => { + this._settings.applications.WHITELIST_changed(_ => { if ( - this._prefs.applications.BLUR - && !this._prefs.applications.ENABLE_ALL + this._settings.applications.BLUR + && !this._settings.applications.ENABLE_ALL ) this._applications_blur.update_all_windows(); }); // application blacklist changed - this._prefs.applications.BLACKLIST_changed(_ => { + this._settings.applications.BLACKLIST_changed(_ => { if ( - this._prefs.applications.BLUR - && this._prefs.applications.ENABLE_ALL + this._settings.applications.BLUR + && this._settings.applications.ENABLE_ALL ) this._applications_blur.update_all_windows(); }); @@ -440,8 +438,8 @@ export default class BlurMyShell extends Extension { // ---------- LOCKSCREEN ---------- // toggled on/off - this._prefs.lockscreen.BLUR_changed(() => { - if (this._prefs.lockscreen.BLUR) { + this._settings.lockscreen.BLUR_changed(() => { + if (this._settings.lockscreen.BLUR) { this._lockscreen_blur.enable(); } else { this._lockscreen_blur.disable(); @@ -452,8 +450,8 @@ export default class BlurMyShell extends Extension { // ---------- WINDOW LIST ---------- // toggled on/off - this._prefs.window_list.BLUR_changed(() => { - if (this._prefs.window_list.BLUR) { + this._settings.window_list.BLUR_changed(() => { + if (this._settings.window_list.BLUR) { this._window_list_blur.enable(); } else { this._window_list_blur.disable(); @@ -464,7 +462,7 @@ export default class BlurMyShell extends Extension { // ---------- HIDETOPBAR ---------- // toggled on/off - this._prefs.hidetopbar.COMPATIBILITY_changed(() => { + this._settings.hidetopbar.COMPATIBILITY_changed(() => { // no need to verify if it is enabled or not, it is done anyway this._panel_blur.connect_to_windows_and_overview(); }); @@ -473,8 +471,8 @@ export default class BlurMyShell extends Extension { // ---------- DASH TO PANEL ---------- // toggled on/off - this._prefs.dash_to_panel.BLUR_ORIGINAL_PANEL_changed(() => { - if (this._prefs.panel.BLUR) + this._settings.dash_to_panel.BLUR_ORIGINAL_PANEL_changed(() => { + if (this._settings.panel.BLUR) this._panel_blur.reset(); }); @@ -482,8 +480,8 @@ export default class BlurMyShell extends Extension { // ---------- SCREENSHOT ---------- // toggled on/off - this._prefs.screenshot.BLUR_changed(() => { - if (this._prefs.screenshot.BLUR) { + this._settings.screenshot.BLUR_changed(() => { + if (this._settings.screenshot.BLUR) { this._screenshot_blur.enable(); } else { this._screenshot_blur.disable(); @@ -499,64 +497,64 @@ export default class BlurMyShell extends Extension { _connect_to_individual_settings(name) { // get component and preferences needed let component = this['_' + name + '_blur']; - let component_prefs = this._prefs[name]; + let component_settings = this._settings[name]; // general values switch is toggled - component_prefs.CUSTOMIZE_changed(() => { - if (component_prefs.CUSTOMIZE) { - component.set_sigma(component_prefs.SIGMA); - component.set_brightness(component_prefs.BRIGHTNESS); - component.set_color(component_prefs.COLOR); - component.set_noise_amount(component_prefs.NOISE_AMOUNT); - component.set_noise_lightness(component_prefs.NOISE_LIGHTNESS); + component_settings.CUSTOMIZE_changed(() => { + if (component_settings.CUSTOMIZE) { + component.set_sigma(component_settings.SIGMA); + component.set_brightness(component_settings.BRIGHTNESS); + component.set_color(component_settings.COLOR); + component.set_noise_amount(component_settings.NOISE_AMOUNT); + component.set_noise_lightness(component_settings.NOISE_LIGHTNESS); } else { - component.set_sigma(this._prefs.SIGMA); - component.set_brightness(this._prefs.BRIGHTNESS); - component.set_color(this._prefs.COLOR); - component.set_noise_amount(this._prefs.NOISE_AMOUNT); - component.set_noise_lightness(this._prefs.NOISE_LIGHTNESS); + component.set_sigma(this._settings.SIGMA); + component.set_brightness(this._settings.BRIGHTNESS); + component.set_color(this._settings.COLOR); + component.set_noise_amount(this._settings.NOISE_AMOUNT); + component.set_noise_lightness(this._settings.NOISE_LIGHTNESS); } }); // sigma is changed - component_prefs.SIGMA_changed(() => { - if (component_prefs.CUSTOMIZE) - component.set_sigma(component_prefs.SIGMA); + component_settings.SIGMA_changed(() => { + if (component_settings.CUSTOMIZE) + component.set_sigma(component_settings.SIGMA); else - component.set_sigma(this._prefs.SIGMA); + component.set_sigma(this._settings.SIGMA); }); // brightness is changed - component_prefs.BRIGHTNESS_changed(() => { - if (component_prefs.CUSTOMIZE) - component.set_brightness(component_prefs.BRIGHTNESS); + component_settings.BRIGHTNESS_changed(() => { + if (component_settings.CUSTOMIZE) + component.set_brightness(component_settings.BRIGHTNESS); else - component.set_brightness(this._prefs.BRIGHTNESS); + component.set_brightness(this._settings.BRIGHTNESS); }); // color is changed - component_prefs.COLOR_changed(() => { - if (component_prefs.CUSTOMIZE) - component.set_color(component_prefs.COLOR); + component_settings.COLOR_changed(() => { + if (component_settings.CUSTOMIZE) + component.set_color(component_settings.COLOR); else - component.set_color(this._prefs.COLOR); + component.set_color(this._settings.COLOR); }); // noise amount is changed - component_prefs.NOISE_AMOUNT_changed(() => { - if (component_prefs.CUSTOMIZE) - component.set_noise_amount(component_prefs.NOISE_AMOUNT); + component_settings.NOISE_AMOUNT_changed(() => { + if (component_settings.CUSTOMIZE) + component.set_noise_amount(component_settings.NOISE_AMOUNT); else - component.set_noise_amount(this._prefs.NOISE_AMOUNT); + component.set_noise_amount(this._settings.NOISE_AMOUNT); }); // noise lightness is changed - component_prefs.NOISE_LIGHTNESS_changed(() => { - if (component_prefs.CUSTOMIZE) - component.set_noise_lightness(component_prefs.NOISE_LIGHTNESS); + component_settings.NOISE_LIGHTNESS_changed(() => { + if (component_settings.CUSTOMIZE) + component.set_noise_lightness(component_settings.NOISE_LIGHTNESS); else - component.set_noise_lightness(this._prefs.NOISE_LIGHTNESS); + component.set_noise_lightness(this._settings.NOISE_LIGHTNESS); }); } @@ -565,14 +563,14 @@ export default class BlurMyShell extends Extension { INDEPENDENT_COMPONENTS.forEach(name => { // get component and preferences needed let component = this['_' + name + '_blur']; - let component_prefs = this._prefs[name]; + let component_settings = this._settings[name]; // update sigma accordingly - if (component_prefs.CUSTOMIZE) { - component.set_sigma(component_prefs.SIGMA); + if (component_settings.CUSTOMIZE) { + component.set_sigma(component_settings.SIGMA); } else { - component.set_sigma(this._prefs.SIGMA); + component.set_sigma(this._settings.SIGMA); } }); } @@ -582,13 +580,13 @@ export default class BlurMyShell extends Extension { INDEPENDENT_COMPONENTS.forEach(name => { // get component and preferences needed let component = this['_' + name + '_blur']; - let component_prefs = this._prefs[name]; + let component_settings = this._settings[name]; // update brightness accordingly - if (component_prefs.CUSTOMIZE) - component.set_brightness(component_prefs.BRIGHTNESS); + if (component_settings.CUSTOMIZE) + component.set_brightness(component_settings.BRIGHTNESS); else - component.set_brightness(this._prefs.BRIGHTNESS); + component.set_brightness(this._settings.BRIGHTNESS); }); } @@ -597,13 +595,13 @@ export default class BlurMyShell extends Extension { INDEPENDENT_COMPONENTS.forEach(name => { // get component and preferences needed let component = this['_' + name + '_blur']; - let component_prefs = this._prefs[name]; + let component_settings = this._settings[name]; // update color accordingly - if (component_prefs.CUSTOMIZE) - component.set_color(component_prefs.COLOR); + if (component_settings.CUSTOMIZE) + component.set_color(component_settings.COLOR); else - component.set_color(this._prefs.COLOR); + component.set_color(this._settings.COLOR); }); } @@ -612,13 +610,13 @@ export default class BlurMyShell extends Extension { INDEPENDENT_COMPONENTS.forEach(name => { // get component and preferences needed let component = this['_' + name + '_blur']; - let component_prefs = this._prefs[name]; + let component_settings = this._settings[name]; // update color accordingly - if (component_prefs.CUSTOMIZE) - component.set_noise_amount(component_prefs.NOISE_AMOUNT); + if (component_settings.CUSTOMIZE) + component.set_noise_amount(component_settings.NOISE_AMOUNT); else - component.set_noise_amount(this._prefs.NOISE_AMOUNT); + component.set_noise_amount(this._settings.NOISE_AMOUNT); }); } @@ -627,18 +625,18 @@ export default class BlurMyShell extends Extension { INDEPENDENT_COMPONENTS.forEach(name => { // get component and preferences needed let component = this['_' + name + '_blur']; - let component_prefs = this._prefs[name]; + let component_settings = this._settings[name]; // update color accordingly - if (component_prefs.CUSTOMIZE) - component.set_noise_lightness(component_prefs.NOISE_LIGHTNESS); + if (component_settings.CUSTOMIZE) + component.set_noise_lightness(component_settings.NOISE_LIGHTNESS); else - component.set_noise_lightness(this._prefs.NOISE_LIGHTNESS); + component.set_noise_lightness(this._settings.NOISE_LIGHTNESS); }); } _log(str) { - if (this._prefs.DEBUG) - log(`[Blur my Shell > extension] ${str}`); + if (this._settings.DEBUG) + console.log(`[Blur my Shell > extension] ${str}`); } } diff --git a/src/preferences/applications.js b/src/preferences/applications.js index a5779da3..6bac74c1 100644 --- a/src/preferences/applications.js +++ b/src/preferences/applications.js @@ -1,5 +1,3 @@ -'use strict'; - import Adw from 'gi://Adw'; import GLib from 'gi://GLib'; import GObject from 'gi://GObject'; @@ -27,7 +25,7 @@ const make_array = prefs_group => { }; -export var Applications = GObject.registerClass({ +export const Applications = GObject.registerClass({ GTypeName: 'Applications', Template: GLib.uri_resolve_relative(import.meta.url, '../ui/applications.ui', GLib.UriFlags.NONE), InternalChildren: [ diff --git a/src/preferences/customize_row.js b/src/preferences/customize_row.js index 55fa36e8..0115966c 100644 --- a/src/preferences/customize_row.js +++ b/src/preferences/customize_row.js @@ -1,5 +1,3 @@ -'use strict'; - import Adw from 'gi://Adw'; import GLib from 'gi://GLib'; import GObject from 'gi://GObject'; @@ -31,7 +29,7 @@ let bind_color = function (component, key, widget) { parse_color(); }; -export var CustomizeRow = GObject.registerClass({ +export const CustomizeRow = GObject.registerClass({ GTypeName: 'CustomizeRow', Template: GLib.uri_resolve_relative(import.meta.url, '../ui/customize-row.ui', GLib.UriFlags.NONE), InternalChildren: [ @@ -56,8 +54,8 @@ export var CustomizeRow = GObject.registerClass({ /// a widget; and permits selecting weather or not we want to show the color /// and noise buttons to the user. If it is a widget, it means we need to /// dynamically update their visibility, according to the widget's state. - connect_to(prefs, component_prefs, color_and_noise = true) { - let s = component_prefs.settings; + connect_to(settings, component_settings, color_and_noise = true) { + let s = component_settings.settings; // is not fired if in General page if (this instanceof CustomizeRow) @@ -78,7 +76,7 @@ export var CustomizeRow = GObject.registerClass({ ); // bind the color button - bind_color(component_prefs, 'color', this._color); + bind_color(component_settings, 'color', this._color); // bind noise sliders s.bind( @@ -146,17 +144,17 @@ export var CustomizeRow = GObject.registerClass({ // note: I would love to bind to the visibility instead, but this part // is already dirty enough, it would look like I obfuscate my code // intentionally... (I am not) - prefs.settings.bind( + settings.settings.bind( 'color-and-noise', this._color_row, 'sensitive', Gio.SettingsBindFlags.DEFAULT ); - prefs.settings.bind( + settings.settings.bind( 'color-and-noise', this._noise_amount_row, 'sensitive', Gio.SettingsBindFlags.DEFAULT ); - prefs.settings.bind( + settings.settings.bind( 'color-and-noise', this._noise_lightness_row, 'sensitive', Gio.SettingsBindFlags.DEFAULT diff --git a/src/preferences/dash.js b/src/preferences/dash.js index f635da03..ef8d9ed2 100644 --- a/src/preferences/dash.js +++ b/src/preferences/dash.js @@ -1,12 +1,10 @@ -'use strict'; - import Adw from 'gi://Adw'; import GLib from 'gi://GLib'; import GObject from 'gi://GObject'; import Gio from 'gi://Gio'; -export var Dash = GObject.registerClass({ +export const Dash = GObject.registerClass({ GTypeName: 'Dash', Template: GLib.uri_resolve_relative(import.meta.url, '../ui/dash.ui', GLib.UriFlags.NONE), InternalChildren: [ diff --git a/src/preferences/general.js b/src/preferences/general.js index 4624c04d..3067a2dc 100644 --- a/src/preferences/general.js +++ b/src/preferences/general.js @@ -1,5 +1,3 @@ -'use strict'; - import Adw from 'gi://Adw'; import GLib from 'gi://GLib'; import GObject from 'gi://GObject'; @@ -8,7 +6,7 @@ import Gio from 'gi://Gio'; import { CustomizeRow } from './customize_row.js'; -export var General = GObject.registerClass({ +export const General = GObject.registerClass({ GTypeName: 'General', Template: GLib.uri_resolve_relative(import.meta.url, '../ui/general.ui', GLib.UriFlags.NONE), InternalChildren: [ diff --git a/src/preferences/menu.js b/src/preferences/menu.js index 89177474..5ea2f3f5 100644 --- a/src/preferences/menu.js +++ b/src/preferences/menu.js @@ -1,5 +1,3 @@ -'use strict'; - import Gdk from 'gi://Gdk'; import Gtk from 'gi://Gtk'; import Gio from 'gi://Gio'; diff --git a/src/preferences/other.js b/src/preferences/other.js index ad5c3cf7..d01f5411 100644 --- a/src/preferences/other.js +++ b/src/preferences/other.js @@ -1,12 +1,10 @@ -'use strict'; - import Adw from 'gi://Adw'; import GLib from 'gi://GLib'; import GObject from 'gi://GObject'; import Gio from 'gi://Gio'; -export var Other = GObject.registerClass({ +export const Other = GObject.registerClass({ GTypeName: 'Other', Template: GLib.uri_resolve_relative(import.meta.url, '../ui/other.ui', GLib.UriFlags.NONE), InternalChildren: [ diff --git a/src/preferences/overview.js b/src/preferences/overview.js index a0bf940a..2560e3b7 100644 --- a/src/preferences/overview.js +++ b/src/preferences/overview.js @@ -1,12 +1,10 @@ -'use strict'; - import Adw from 'gi://Adw'; import GLib from 'gi://GLib'; import GObject from 'gi://GObject'; import Gio from 'gi://Gio'; -export var Overview = GObject.registerClass({ +export const Overview = GObject.registerClass({ GTypeName: 'Overview', Template: GLib.uri_resolve_relative(import.meta.url, '../ui/overview.ui', GLib.UriFlags.NONE), InternalChildren: [ diff --git a/src/preferences/panel.js b/src/preferences/panel.js index 2194f6da..6d9f72b2 100644 --- a/src/preferences/panel.js +++ b/src/preferences/panel.js @@ -1,12 +1,10 @@ -'use strict'; - import Adw from 'gi://Adw'; import GLib from 'gi://GLib'; import GObject from 'gi://GObject'; import Gio from 'gi://Gio'; -export var Panel = GObject.registerClass({ +export const Panel = GObject.registerClass({ GTypeName: 'Panel', Template: GLib.uri_resolve_relative(import.meta.url, '../ui/panel.ui', GLib.UriFlags.NONE), InternalChildren: [ diff --git a/src/preferences/window_row.js b/src/preferences/window_row.js index ac1ffae7..c9786c9a 100644 --- a/src/preferences/window_row.js +++ b/src/preferences/window_row.js @@ -1,5 +1,3 @@ -'use strict'; - import Adw from 'gi://Adw'; import GLib from 'gi://GLib'; import GObject from 'gi://GObject'; @@ -10,7 +8,7 @@ import { pick, on_picking, on_picked } from '../dbus/client.js'; -export var WindowRow = GObject.registerClass({ +export const WindowRow = GObject.registerClass({ GTypeName: 'WindowRow', Template: GLib.uri_resolve_relative(import.meta.url, '../ui/window-row.ui', GLib.UriFlags.NONE), InternalChildren: [ @@ -99,7 +97,7 @@ export var WindowRow = GObject.registerClass({ on_picked(wm_class => { if (should_take_answer) { if (wm_class == 'window-not-found') { - log("Can't pick window from here"); + console.warn("Can't pick window from here"); return; } this._window_class.buffer.text = wm_class; diff --git a/src/prefs.js b/src/prefs.js index edbba5f1..df622edf 100644 --- a/src/prefs.js +++ b/src/prefs.js @@ -1,10 +1,8 @@ -'use strict'; - import Gdk from 'gi://Gdk'; import Gtk from 'gi://Gtk'; import { ExtensionPreferences } from 'resource:///org/gnome/Shell/Extensions/js/extensions/prefs.js'; -import { Prefs } from './conveniences/settings.js'; +import { Settings } from './conveniences/settings.js'; import { Keys } from './conveniences/keys.js'; import { addMenu } from './preferences/menu.js'; @@ -29,7 +27,7 @@ export default class BlurMyShellPreferences extends ExtensionPreferences { fillPreferencesWindow(window) { addMenu(window); - const preferences = new Prefs(Keys, this.getSettings()); + const preferences = new Settings(Keys, this.getSettings()); window.add(new General(preferences)); window.add(new Panel(preferences)); From 20bb8ed9662a6069090d98b4e03bfd6614752bb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Tue, 19 Sep 2023 10:51:00 +0200 Subject: [PATCH 204/212] Update to version 45 --- metadata.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata.json b/metadata.json index 4f49f3a0..9b3c67cc 100644 --- a/metadata.json +++ b/metadata.json @@ -15,5 +15,5 @@ "github": "aunetx", "kofi": "aunetx" }, - "version": 49 -} + "version": 50 +} \ No newline at end of file From b65ee230d9184a1162b2ee58ff03039e43875c6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Wed, 20 Sep 2023 16:46:33 +0200 Subject: [PATCH 205/212] Removed effects created when switching workspaces --- src/components/overview.js | 12 ++++++++---- src/effects/color_effect.js | 4 ---- src/effects/noise_effect.js | 1 + 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/components/overview.js b/src/components/overview.js index c020848d..abd469a0 100644 --- a/src/components/overview.js +++ b/src/components/overview.js @@ -102,7 +102,7 @@ export const OverviewBlur = class OverviewBlur { ) ) { const bg_actor = outer_this.create_background_actor( - monitor + monitor, true ); Main.uiGroup.insert_child_above( @@ -132,6 +132,10 @@ export const OverviewBlur = class OverviewBlur { ); } + outer_this.effects = outer_this.effects.filter( + effects_group => !effects_group.is_transition + ); + outer_this._workspace_switch_bg_actors.forEach(actor => { actor.destroy(); }); @@ -154,7 +158,7 @@ export const OverviewBlur = class OverviewBlur { // add new backgrounds Main.layoutManager.monitors.forEach(monitor => { - const bg_actor = this.create_background_actor(monitor); + const bg_actor = this.create_background_actor(monitor, false); Main.layoutManager.overviewGroup.insert_child_at_index( bg_actor, @@ -163,7 +167,7 @@ export const OverviewBlur = class OverviewBlur { }); } - create_background_actor(monitor) { + create_background_actor(monitor, is_transition) { let bg_actor = new Meta.BackgroundActor({ meta_display: global.display, monitor: monitor.index @@ -217,7 +221,7 @@ export const OverviewBlur = class OverviewBlur { bg_actor.add_effect(color_effect); bg_actor.add_effect(noise_effect); bg_actor.add_effect(blur_effect); - this.effects.push({ blur_effect, color_effect, noise_effect }); + this.effects.push({ blur_effect, color_effect, noise_effect, is_transition }); bg_actor.set_x(monitor.x); bg_actor.set_y(monitor.y); diff --git a/src/effects/color_effect.js b/src/effects/color_effect.js index 457eb7ba..3efdac7e 100644 --- a/src/effects/color_effect.js +++ b/src/effects/color_effect.js @@ -64,7 +64,6 @@ export const ColorEffect = new GObject.registerClass({ }, class ColorShader extends Clutter.ShaderEffect { constructor(params, settings) { // initialize without color as a parameter - let _color = params.color; delete params.color; @@ -79,14 +78,11 @@ export const ColorEffect = new GObject.registerClass({ this._settings = settings; // set shader source - this._source = get_shader_source(); - if (this._source) this.set_shader_source(this._source); // set shader color - if (_color) this.color = _color; diff --git a/src/effects/noise_effect.js b/src/effects/noise_effect.js index 83ccc134..3573c64d 100644 --- a/src/effects/noise_effect.js +++ b/src/effects/noise_effect.js @@ -81,6 +81,7 @@ export const NoiseEffect = new GObject.registerClass({ update_enabled() { this.set_enabled( this.noise > 0 && + // FIXME this._settings can be undefined (and often is) this._settings.COLOR_AND_NOISE && this._static ); From 948892a6c8038d46051a50009ae0b3163fa2cdbd Mon Sep 17 00:00:00 2001 From: Daniel Svindseth Date: Thu, 21 Sep 2023 21:46:33 +0200 Subject: [PATCH 206/212] Added translation using Weblate (Norwegian Nynorsk) --- po/nn.po | 450 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 450 insertions(+) create mode 100644 po/nn.po diff --git a/po/nn.po b/po/nn.po new file mode 100644 index 00000000..a06a0955 --- /dev/null +++ b/po/nn.po @@ -0,0 +1,450 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the blur-my-shell@aunetx package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: blur-my-shell@aunetx\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-06-29 16:20+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications.ui:5 +msgid "Applications" +msgstr "" + +#: applications.ui:10 +msgid "Applications blur (beta)" +msgstr "" + +#: applications.ui:11 +msgid "" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" +" " +msgstr "" + +#: applications.ui:28 +msgid "Opacity" +msgstr "" + +#: applications.ui:29 +msgid "" +"The opacity of the window on top of the blur effect, a higher value will be " +"more legible." +msgstr "" + +#: applications.ui:51 +msgid "Blur on overview" +msgstr "" + +#: applications.ui:52 +msgid "" +"Forces the blur to be properly shown on all workspaces on overview.\n" +"This may cause some latency or performance issues." +msgstr "" + +#: applications.ui:67 +msgid "Enable all by default" +msgstr "" + +#: applications.ui:68 +msgid "" +"Adds blur behind all windows by default.\n" +"Not recommended because of performance and stability issues." +msgstr "" + +#: applications.ui:85 +msgid "Whitelist" +msgstr "" + +#: applications.ui:86 +msgid "A list of windows to blur." +msgstr "" + +#: applications.ui:104 applications.ui:141 +msgid "Add Window" +msgstr "" + +#: applications.ui:122 +msgid "Blacklist" +msgstr "" + +#: applications.ui:123 +msgid "A list of windows not to blur." +msgstr "" + +#: customize-row.ui:4 +msgid "Customize properties" +msgstr "" + +#: customize-row.ui:5 +msgid "" +"Uses customized blur properties, instead of the ones set in the General page." +msgstr "" + +#: customize-row.ui:10 general.ui:15 +msgid "Sigma" +msgstr "" + +#: customize-row.ui:11 general.ui:16 +msgid "The intensity of the blur." +msgstr "" + +#: customize-row.ui:31 general.ui:35 +msgid "Brightness" +msgstr "" + +#: customize-row.ui:32 general.ui:36 +msgid "" +"The brightness of the blur effect, a high value might make the text harder " +"to read." +msgstr "" + +#: customize-row.ui:52 general.ui:55 +msgid "Color" +msgstr "" + +#: customize-row.ui:53 general.ui:56 +msgid "" +"Changes the color of the blur. The opacity of the color controls how much it " +"is blended into the blur effect." +msgstr "" + +#: customize-row.ui:71 general.ui:73 +msgid "Noise amount" +msgstr "" + +#: customize-row.ui:72 general.ui:74 +msgid "" +"The amount of noise to add to the blur effect, useful on low-contrast " +"screens or for aesthetic purpose." +msgstr "" + +#: customize-row.ui:92 general.ui:94 +msgid "Noise lightness" +msgstr "" + +#: customize-row.ui:93 general.ui:95 +msgid "The lightness of the noise added to the blur effect." +msgstr "" + +#: customize-row.ui:113 +msgid "Notice" +msgstr "" + +#: customize-row.ui:114 +msgid "" +"Noise and color can't be activated on dynamically blurred components, such " +"as this one." +msgstr "" + +#: dash.ui:5 +msgid "Dash" +msgstr "" + +#: dash.ui:10 +msgid "Dash to Dock blur" +msgstr "" + +#: dash.ui:11 +msgid "Blur the background of the Dash to Dock extension, if it is used." +msgstr "" + +#: dash.ui:26 panel.ui:56 +msgid "Override background" +msgstr "" + +#: dash.ui:27 +msgid "" +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." +msgstr "" + +#: dash.ui:50 panel.ui:41 +msgid "Disable in overview" +msgstr "" + +#: dash.ui:51 +msgid "Disables the blur from Dash to Dock when entering the overview." +msgstr "" + +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:135 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:136 +msgid "Light" +msgstr "" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:137 +msgid "Dark" +msgstr "" + +#: general.ui:5 +msgid "General" +msgstr "" + +#: general.ui:10 +msgid "Blur preferences" +msgstr "" + +#: general.ui:11 +msgid "Global blur preferences, used by all components by default." +msgstr "" + +#: general.ui:117 +msgid "Performance" +msgstr "" + +#: general.ui:118 +msgid "Various options to tweak the performance." +msgstr "" + +#: general.ui:122 +msgid "Color and noise effects" +msgstr "" + +#: general.ui:123 +msgid "" +"Globally disables noise and color effects which may improve performance on " +"low-end systems." +msgstr "" + +#: general.ui:135 +msgid "Hack level" +msgstr "" + +#: general.ui:136 +msgid "" +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." +msgstr "" + +#: general.ui:151 +msgid "Debug" +msgstr "" + +#: general.ui:152 +msgid "" +"Makes the extension verbose in logs, activate when you need to report an " +"issue." +msgstr "" + +#: general.ui:167 +msgid "Reset preferences" +msgstr "" + +#: general.ui:168 +msgid "Resets preferences of Blur my Shell irreversibly." +msgstr "" + +#: general.ui:187 +msgid "Reset" +msgstr "" + +#: general.ui:228 +msgid "High performances" +msgstr "" + +#: general.ui:229 +msgid "Default" +msgstr "" + +#: general.ui:230 +msgid "High quality" +msgstr "" + +#: general.ui:231 +msgid "No artifact" +msgstr "" + +#: menu.ui:6 +msgid "Project page" +msgstr "" + +#: menu.ui:10 +msgid "Report a Bug" +msgstr "" + +#: menu.ui:14 +msgid "License" +msgstr "" + +#: menu.ui:18 +msgid "Donate" +msgstr "" + +#: other.ui:5 +msgid "Other" +msgstr "" + +#: other.ui:10 +msgid "Lockscreen blur" +msgstr "" + +#: other.ui:11 +msgid "Change the blur of the lockscreen to use this extension's preferences." +msgstr "" + +#: other.ui:28 +msgid "Screenshot blur" +msgstr "" + +#: other.ui:29 +msgid "Add blur to the background of the window selector in the screenshot UI." +msgstr "" + +#: other.ui:46 +msgid "Window list extension blur" +msgstr "" + +#: other.ui:47 +msgid "Make the window-list extension blurred, if it is used." +msgstr "" + +#: overview.ui:5 +msgid "Overview" +msgstr "" + +#: overview.ui:10 +msgid "Background blur" +msgstr "" + +#: overview.ui:11 +msgid "Add blur to the overview background, using the wallpaper picture." +msgstr "" + +#: overview.ui:26 +msgid "Overview components style" +msgstr "" + +#: overview.ui:27 +msgid "" +"The semi-transparent style for the dash, search entry/results, and " +"application folders." +msgstr "" + +#: overview.ui:44 +msgid "Application folder blur" +msgstr "" + +#: overview.ui:45 +msgid "Makes the background of application folder dialogs blurred." +msgstr "" + +#: overview.ui:60 +msgid "Application folder dialogs style" +msgstr "" + +#: overview.ui:61 +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" + +#: overview.ui:79 overview.ui:88 +msgid "Do not style" +msgstr "" + +#: panel.ui:5 +msgid "Panel" +msgstr "" + +#: panel.ui:10 +msgid "Panel blur" +msgstr "" + +#: panel.ui:11 +msgid "Blur the top panel using the background image." +msgstr "" + +#: panel.ui:26 +msgid "Static blur" +msgstr "" + +#: panel.ui:27 +msgid "Uses a static blurred image, more performant and stable." +msgstr "" + +#: panel.ui:42 +msgid "Disables the blur from the panel when entering the overview." +msgstr "" + +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" + +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 +msgid "Disable when a window is near" +msgstr "" + +#: panel.ui:80 +msgid "Disables the transparency of the panel when a window is near it." +msgstr "" + +#: panel.ui:97 +msgid "Compatibility" +msgstr "" + +#: panel.ui:98 +msgid "Various options to provide compatibility with other extensions." +msgstr "" + +#: panel.ui:103 +msgid "Hidetopbar extension" +msgstr "" + +#: panel.ui:104 +msgid "Does not disable the blur in overview, best used with static blur." +msgstr "" + +#: panel.ui:118 +msgid "Blur original panel with Dash to Panel" +msgstr "" + +#: panel.ui:119 +msgid "" +"Enables the blurring of the original panel with Dash to Panel, if selected " +"in the extension's options." +msgstr "" + +#: panel.ui:138 +msgid "Contrasted" +msgstr "" + +#: window-row.ui:4 +msgid "Window Name" +msgstr "" + +#: window-row.ui:8 +msgid "Select window" +msgstr "" + +#: window-row.ui:9 +msgid "Pick a window or select it by its classname." +msgstr "" From d04005ca275269c2573b916ce71d818af1ab8d60 Mon Sep 17 00:00:00 2001 From: Daniel Svindseth Date: Thu, 21 Sep 2023 19:56:15 +0000 Subject: [PATCH 207/212] Translated using Weblate (Norwegian Nynorsk) Currently translated at 8.0% (8 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/nn/ --- po/nn.po | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/po/nn.po b/po/nn.po index a06a0955..62db1e60 100644 --- a/po/nn.po +++ b/po/nn.po @@ -8,21 +8,24 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-09-22 20:02+0000\n" +"Last-Translator: Daniel Svindseth \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.1-dev\n" #: applications.ui:5 msgid "Applications" -msgstr "" +msgstr "Program" #: applications.ui:10 msgid "Applications blur (beta)" -msgstr "" +msgstr "Programtilslør (beta)" #: applications.ui:11 msgid "" @@ -31,30 +34,38 @@ msgid "" "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Legg tilslør til programma. Dette er framleis ein beta-funksjon\n" +"For best resultat, pass på å vel «ingen artifakt» under «Generelt → Hack-" +"nivå»\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Opasitet" #: applications.ui:29 msgid "" "The opacity of the window on top of the blur effect, a higher value will be " "more legible." msgstr "" +"Opasiteten til vindauget over tilsløreffekten, ein høgare verdi gjer " +"vindauget meir tydeleg." #: applications.ui:51 msgid "Blur on overview" -msgstr "" +msgstr "Tilslør i oversikta" #: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Tvingar tilsløret til å visast korrekt på alle arbeidsplassar i oversikta.\n" +"Dette kan føre til noko ventetid eller ytingsproblem." #: applications.ui:67 msgid "Enable all by default" -msgstr "" +msgstr "Aktiver alle som standard" #: applications.ui:68 msgid "" From 839dac07d81f96d00cf4f9ad3cc9751671866e51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sat, 23 Sep 2023 14:22:00 +0200 Subject: [PATCH 208/212] Fix crash on suspend and ad logs if crash on login --- src/effects/color_effect.js | 4 ++++ src/effects/noise_effect.js | 10 +++++++++- src/extension.js | 15 ++++++++++++--- 3 files changed, 25 insertions(+), 4 deletions(-) diff --git a/src/effects/color_effect.js b/src/effects/color_effect.js index 3efdac7e..2ae9191c 100644 --- a/src/effects/color_effect.js +++ b/src/effects/color_effect.js @@ -156,6 +156,10 @@ export const ColorEffect = new GObject.registerClass({ } update_enabled() { + // don't anything if this._settings is undefined (when calling super) + if (this._settings === undefined) + return; + this.set_enabled( this.blend > 0 && this._settings.COLOR_AND_NOISE && diff --git a/src/effects/noise_effect.js b/src/effects/noise_effect.js index 3573c64d..8d9464c1 100644 --- a/src/effects/noise_effect.js +++ b/src/effects/noise_effect.js @@ -45,6 +45,11 @@ export const NoiseEffect = new GObject.registerClass({ this._static = true; this._settings = settings; + if (params.noise) + this.noise = params.noise; + if (params.lightness) + this.lightness = params.lightness; + // set shader source this._source = get_shader_source(); if (this._source) @@ -79,9 +84,12 @@ export const NoiseEffect = new GObject.registerClass({ } update_enabled() { + // don't anything if this._settings is undefined (when calling super) + if (this._settings === undefined) + return; + this.set_enabled( this.noise > 0 && - // FIXME this._settings can be undefined (and often is) this._settings.COLOR_AND_NOISE && this._static ); diff --git a/src/extension.js b/src/extension.js index 257b2469..182d01bc 100644 --- a/src/extension.js +++ b/src/extension.js @@ -96,16 +96,25 @@ export default class BlurMyShell extends Extension { try { if (this._settings.overview.BLUR && !this._overview_blur.enabled) this._overview_blur.enable(); - } catch (e) { } + } catch (e) { + this._log("Could not enable overview blur directly"); + this._log(e); + } try { if (this._settings.dash_to_dock.BLUR && !this._dash_to_dock_blur.enabled) this._dash_to_dock_blur.enable(); - } catch (e) { } + } catch (e) { + this._log("Could not enable dash-to-dock blur directly"); + this._log(e); + } try { if (this._settings.panel.BLUR && !this._panel_blur.enabled) this._panel_blur.enable(); - } catch (e) { } + } catch (e) { + this._log("Could not enable panel blur directly"); + this._log(e); + } } /// Disables the extension From 02ebc87c5be345c648d3e2ab1bd3ed16dc5d7648 Mon Sep 17 00:00:00 2001 From: lebao3105 Date: Sat, 23 Sep 2023 14:26:58 +0200 Subject: [PATCH 209/212] Added translation using Weblate (Vietnamese) --- po/vi.po | 450 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 450 insertions(+) create mode 100644 po/vi.po diff --git a/po/vi.po b/po/vi.po new file mode 100644 index 00000000..81f0f54a --- /dev/null +++ b/po/vi.po @@ -0,0 +1,450 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the blur-my-shell@aunetx package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: blur-my-shell@aunetx\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-06-29 16:20+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications.ui:5 +msgid "Applications" +msgstr "" + +#: applications.ui:10 +msgid "Applications blur (beta)" +msgstr "" + +#: applications.ui:11 +msgid "" +"Adds blur to the applications. This is still beta functionality.\n" +"To get the best results possible, make sure to choose the option “No " +"artifact” in the “General → Hack level” preference.\n" +" " +msgstr "" + +#: applications.ui:28 +msgid "Opacity" +msgstr "" + +#: applications.ui:29 +msgid "" +"The opacity of the window on top of the blur effect, a higher value will be " +"more legible." +msgstr "" + +#: applications.ui:51 +msgid "Blur on overview" +msgstr "" + +#: applications.ui:52 +msgid "" +"Forces the blur to be properly shown on all workspaces on overview.\n" +"This may cause some latency or performance issues." +msgstr "" + +#: applications.ui:67 +msgid "Enable all by default" +msgstr "" + +#: applications.ui:68 +msgid "" +"Adds blur behind all windows by default.\n" +"Not recommended because of performance and stability issues." +msgstr "" + +#: applications.ui:85 +msgid "Whitelist" +msgstr "" + +#: applications.ui:86 +msgid "A list of windows to blur." +msgstr "" + +#: applications.ui:104 applications.ui:141 +msgid "Add Window" +msgstr "" + +#: applications.ui:122 +msgid "Blacklist" +msgstr "" + +#: applications.ui:123 +msgid "A list of windows not to blur." +msgstr "" + +#: customize-row.ui:4 +msgid "Customize properties" +msgstr "" + +#: customize-row.ui:5 +msgid "" +"Uses customized blur properties, instead of the ones set in the General page." +msgstr "" + +#: customize-row.ui:10 general.ui:15 +msgid "Sigma" +msgstr "" + +#: customize-row.ui:11 general.ui:16 +msgid "The intensity of the blur." +msgstr "" + +#: customize-row.ui:31 general.ui:35 +msgid "Brightness" +msgstr "" + +#: customize-row.ui:32 general.ui:36 +msgid "" +"The brightness of the blur effect, a high value might make the text harder " +"to read." +msgstr "" + +#: customize-row.ui:52 general.ui:55 +msgid "Color" +msgstr "" + +#: customize-row.ui:53 general.ui:56 +msgid "" +"Changes the color of the blur. The opacity of the color controls how much it " +"is blended into the blur effect." +msgstr "" + +#: customize-row.ui:71 general.ui:73 +msgid "Noise amount" +msgstr "" + +#: customize-row.ui:72 general.ui:74 +msgid "" +"The amount of noise to add to the blur effect, useful on low-contrast " +"screens or for aesthetic purpose." +msgstr "" + +#: customize-row.ui:92 general.ui:94 +msgid "Noise lightness" +msgstr "" + +#: customize-row.ui:93 general.ui:95 +msgid "The lightness of the noise added to the blur effect." +msgstr "" + +#: customize-row.ui:113 +msgid "Notice" +msgstr "" + +#: customize-row.ui:114 +msgid "" +"Noise and color can't be activated on dynamically blurred components, such " +"as this one." +msgstr "" + +#: dash.ui:5 +msgid "Dash" +msgstr "" + +#: dash.ui:10 +msgid "Dash to Dock blur" +msgstr "" + +#: dash.ui:11 +msgid "Blur the background of the Dash to Dock extension, if it is used." +msgstr "" + +#: dash.ui:26 panel.ui:56 +msgid "Override background" +msgstr "" + +#: dash.ui:27 +msgid "" +"Makes the background either transparent or semi-transparent, disable this to " +"use Dash to Dock preferences instead." +msgstr "" + +#: dash.ui:33 panel.ui:64 +msgid "Background style" +msgstr "" + +#: dash.ui:34 +msgid "The transparent/semi-transparent style for the dock background." +msgstr "" + +#: dash.ui:50 panel.ui:41 +msgid "Disable in overview" +msgstr "" + +#: dash.ui:51 +msgid "Disables the blur from Dash to Dock when entering the overview." +msgstr "" + +#: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:135 +msgid "Transparent" +msgstr "" + +#: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:136 +msgid "Light" +msgstr "" + +#: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:137 +msgid "Dark" +msgstr "" + +#: general.ui:5 +msgid "General" +msgstr "" + +#: general.ui:10 +msgid "Blur preferences" +msgstr "" + +#: general.ui:11 +msgid "Global blur preferences, used by all components by default." +msgstr "" + +#: general.ui:117 +msgid "Performance" +msgstr "" + +#: general.ui:118 +msgid "Various options to tweak the performance." +msgstr "" + +#: general.ui:122 +msgid "Color and noise effects" +msgstr "" + +#: general.ui:123 +msgid "" +"Globally disables noise and color effects which may improve performance on " +"low-end systems." +msgstr "" + +#: general.ui:135 +msgid "Hack level" +msgstr "" + +#: general.ui:136 +msgid "" +"Changes the behaviour of the dynamic blur effect.\n" +"The default value is highly recommended unless you use application blur, in " +"which case “No artifact” is better.\n" +"This option will entirely disable clipped redraws in GNOME shell, and may " +"impact performance significantly but will completely fix the blur effect." +msgstr "" + +#: general.ui:151 +msgid "Debug" +msgstr "" + +#: general.ui:152 +msgid "" +"Makes the extension verbose in logs, activate when you need to report an " +"issue." +msgstr "" + +#: general.ui:167 +msgid "Reset preferences" +msgstr "" + +#: general.ui:168 +msgid "Resets preferences of Blur my Shell irreversibly." +msgstr "" + +#: general.ui:187 +msgid "Reset" +msgstr "" + +#: general.ui:228 +msgid "High performances" +msgstr "" + +#: general.ui:229 +msgid "Default" +msgstr "" + +#: general.ui:230 +msgid "High quality" +msgstr "" + +#: general.ui:231 +msgid "No artifact" +msgstr "" + +#: menu.ui:6 +msgid "Project page" +msgstr "" + +#: menu.ui:10 +msgid "Report a Bug" +msgstr "" + +#: menu.ui:14 +msgid "License" +msgstr "" + +#: menu.ui:18 +msgid "Donate" +msgstr "" + +#: other.ui:5 +msgid "Other" +msgstr "" + +#: other.ui:10 +msgid "Lockscreen blur" +msgstr "" + +#: other.ui:11 +msgid "Change the blur of the lockscreen to use this extension's preferences." +msgstr "" + +#: other.ui:28 +msgid "Screenshot blur" +msgstr "" + +#: other.ui:29 +msgid "Add blur to the background of the window selector in the screenshot UI." +msgstr "" + +#: other.ui:46 +msgid "Window list extension blur" +msgstr "" + +#: other.ui:47 +msgid "Make the window-list extension blurred, if it is used." +msgstr "" + +#: overview.ui:5 +msgid "Overview" +msgstr "" + +#: overview.ui:10 +msgid "Background blur" +msgstr "" + +#: overview.ui:11 +msgid "Add blur to the overview background, using the wallpaper picture." +msgstr "" + +#: overview.ui:26 +msgid "Overview components style" +msgstr "" + +#: overview.ui:27 +msgid "" +"The semi-transparent style for the dash, search entry/results, and " +"application folders." +msgstr "" + +#: overview.ui:44 +msgid "Application folder blur" +msgstr "" + +#: overview.ui:45 +msgid "Makes the background of application folder dialogs blurred." +msgstr "" + +#: overview.ui:60 +msgid "Application folder dialogs style" +msgstr "" + +#: overview.ui:61 +msgid "The semi-transparent style for the application folder dialogs." +msgstr "" + +#: overview.ui:79 overview.ui:88 +msgid "Do not style" +msgstr "" + +#: panel.ui:5 +msgid "Panel" +msgstr "" + +#: panel.ui:10 +msgid "Panel blur" +msgstr "" + +#: panel.ui:11 +msgid "Blur the top panel using the background image." +msgstr "" + +#: panel.ui:26 +msgid "Static blur" +msgstr "" + +#: panel.ui:27 +msgid "Uses a static blurred image, more performant and stable." +msgstr "" + +#: panel.ui:42 +msgid "Disables the blur from the panel when entering the overview." +msgstr "" + +#: panel.ui:57 +msgid "" +"Override the background of the panel to use a transparent or semi-" +"transparent one.\n" +"Recommended unless you want to customize your GNOME theme." +msgstr "" + +#: panel.ui:65 +msgid "The transparent/semi-transparent style for the panel background." +msgstr "" + +#: panel.ui:79 +msgid "Disable when a window is near" +msgstr "" + +#: panel.ui:80 +msgid "Disables the transparency of the panel when a window is near it." +msgstr "" + +#: panel.ui:97 +msgid "Compatibility" +msgstr "" + +#: panel.ui:98 +msgid "Various options to provide compatibility with other extensions." +msgstr "" + +#: panel.ui:103 +msgid "Hidetopbar extension" +msgstr "" + +#: panel.ui:104 +msgid "Does not disable the blur in overview, best used with static blur." +msgstr "" + +#: panel.ui:118 +msgid "Blur original panel with Dash to Panel" +msgstr "" + +#: panel.ui:119 +msgid "" +"Enables the blurring of the original panel with Dash to Panel, if selected " +"in the extension's options." +msgstr "" + +#: panel.ui:138 +msgid "Contrasted" +msgstr "" + +#: window-row.ui:4 +msgid "Window Name" +msgstr "" + +#: window-row.ui:8 +msgid "Select window" +msgstr "" + +#: window-row.ui:9 +msgid "Pick a window or select it by its classname." +msgstr "" From 19eefe63c3f5ff37d6d7632127d9ee72a21003aa Mon Sep 17 00:00:00 2001 From: lebao3105 Date: Sat, 23 Sep 2023 13:01:54 +0000 Subject: [PATCH 210/212] Translated using Weblate (Vietnamese) Currently translated at 71.7% (71 of 99 strings) Translation: Blur my Shell/Blur my Shell Translate-URL: https://hosted.weblate.org/projects/blur-my-shell/blur-my-shell/vi/ --- po/vi.po | 184 ++++++++++++++++++++++++++++++++++--------------------- 1 file changed, 113 insertions(+), 71 deletions(-) diff --git a/po/vi.po b/po/vi.po index 81f0f54a..84b58a67 100644 --- a/po/vi.po +++ b/po/vi.po @@ -8,33 +8,41 @@ msgstr "" "Project-Id-Version: blur-my-shell@aunetx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-29 16:20+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-09-24 14:02+0000\n" +"Last-Translator: lebao3105 \n" +"Language-Team: Vietnamese \n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.1-dev\n" #: applications.ui:5 msgid "Applications" -msgstr "" +msgstr "Các ứng dụng" #: applications.ui:10 msgid "Applications blur (beta)" -msgstr "" +msgstr "Làm mờ ứng dụng (beta)" #: applications.ui:11 +#, fuzzy msgid "" "Adds blur to the applications. This is still beta functionality.\n" "To get the best results possible, make sure to choose the option “No " "artifact” in the “General → Hack level” preference.\n" " " msgstr "" +"Thêm hiệu ứng mờ vào các ứng dụng. Đây vẫn là một tính năng beta.\n" +"Để nhận được kết quả tốt nhất, bật tùy chọn \"No artifact\" trong phần " +"\"Chung → Hack level\".\n" +" " #: applications.ui:28 msgid "Opacity" -msgstr "" +msgstr "Độ mờ" #: applications.ui:29 msgid "" @@ -44,52 +52,59 @@ msgstr "" #: applications.ui:51 msgid "Blur on overview" -msgstr "" +msgstr "Làm mờ màn hình Overview" #: applications.ui:52 msgid "" "Forces the blur to be properly shown on all workspaces on overview.\n" "This may cause some latency or performance issues." msgstr "" +"Buộc hiệu ứng mờ được hiển thị rõ ràng trên tất cả các không gian làm việc " +"trong Overview.\n" +"Nó có thể tạo vấn đề hiệu năng." #: applications.ui:67 msgid "Enable all by default" -msgstr "" +msgstr "Bật tất cả theo mặc định" #: applications.ui:68 msgid "" "Adds blur behind all windows by default.\n" "Not recommended because of performance and stability issues." msgstr "" +"Thêm hiệu ứng mờ ở sau mọi cửa sổ theo mặc định.\n" +"Không nên vì có thể sẽ có những vấn đề hiệu năng và độ ổn định." #: applications.ui:85 msgid "Whitelist" -msgstr "" +msgstr "Danh sách trắng" #: applications.ui:86 msgid "A list of windows to blur." -msgstr "" +msgstr "Một danh sách những cửa sổ sử dụng hiệu ứng mờ." #: applications.ui:104 applications.ui:141 msgid "Add Window" -msgstr "" +msgstr "Thêm cửa sổ" #: applications.ui:122 msgid "Blacklist" -msgstr "" +msgstr "Danh sách đen" #: applications.ui:123 msgid "A list of windows not to blur." -msgstr "" +msgstr "Một danh sách những cửa sổ không sử dụng hiệu ứng mờ." #: customize-row.ui:4 msgid "Customize properties" -msgstr "" +msgstr "Tùy chỉnh các cài đặt" #: customize-row.ui:5 msgid "" "Uses customized blur properties, instead of the ones set in the General page." msgstr "" +"Sử dụng những cài đặt hiệu ứng mờ được tùy chỉnh, thay vì những cài đặt ở " +"trang Chung." #: customize-row.ui:10 general.ui:15 msgid "Sigma" @@ -97,41 +112,47 @@ msgstr "" #: customize-row.ui:11 general.ui:16 msgid "The intensity of the blur." -msgstr "" +msgstr "Cường độ làm mờ." #: customize-row.ui:31 general.ui:35 msgid "Brightness" -msgstr "" +msgstr "Độ sáng" #: customize-row.ui:32 general.ui:36 msgid "" "The brightness of the blur effect, a high value might make the text harder " "to read." -msgstr "" +msgstr "Độ sáng của hiệu ứng mờ, giá trị cao hơn có thể khiến chữ khó đọc hơn." #: customize-row.ui:52 general.ui:55 msgid "Color" -msgstr "" +msgstr "Màu" #: customize-row.ui:53 general.ui:56 +#, fuzzy msgid "" "Changes the color of the blur. The opacity of the color controls how much it " "is blended into the blur effect." msgstr "" +"Đổi màu làm mờ. Độ mờ của màu kiểm soát mức độ hòa trộn của nó vào hiệu ứng " +"làm mờ." #: customize-row.ui:71 general.ui:73 msgid "Noise amount" -msgstr "" +msgstr "Độ nhiễu" #: customize-row.ui:72 general.ui:74 msgid "" "The amount of noise to add to the blur effect, useful on low-contrast " "screens or for aesthetic purpose." msgstr "" +"Lượng nhiễu được thêm vào để tạo hiệu ứng mờ, hữu ích trên màn hình có độ " +"tương phản thấp hoặc nhằm mục đích thẩm mỹ." #: customize-row.ui:92 general.ui:94 +#, fuzzy msgid "Noise lightness" -msgstr "" +msgstr "Độ ồn nhẹ" #: customize-row.ui:93 general.ui:95 msgid "The lightness of the noise added to the blur effect." @@ -139,83 +160,89 @@ msgstr "" #: customize-row.ui:113 msgid "Notice" -msgstr "" +msgstr "Chú ý" #: customize-row.ui:114 +#, fuzzy msgid "" "Noise and color can't be activated on dynamically blurred components, such " "as this one." msgstr "" +"Không thể kích hoạt nhiễu và màu sắc trên các thành phần được làm mờ động, " +"chẳng hạn như thành phần này." #: dash.ui:5 msgid "Dash" -msgstr "" +msgstr "Dash" #: dash.ui:10 msgid "Dash to Dock blur" -msgstr "" +msgstr "Làm mờ Dash to Dock" #: dash.ui:11 msgid "Blur the background of the Dash to Dock extension, if it is used." -msgstr "" +msgstr "Làm mờ nền của extension Dash to Dock, nếu được sử dụng." #: dash.ui:26 panel.ui:56 msgid "Override background" -msgstr "" +msgstr "Ghi đề nền" #: dash.ui:27 msgid "" "Makes the background either transparent or semi-transparent, disable this to " "use Dash to Dock preferences instead." msgstr "" +"Làm cho nền trong suốt hoặc nửa trong suốt, tắt cái này để dùng cài đặt của " +"Dash to Dock thay vào đó." #: dash.ui:33 panel.ui:64 msgid "Background style" -msgstr "" +msgstr "Kiểu nền" #: dash.ui:34 msgid "The transparent/semi-transparent style for the dock background." -msgstr "" +msgstr "Kiểu trong suốt/nửa trong suốt cho nền dock." #: dash.ui:50 panel.ui:41 msgid "Disable in overview" -msgstr "" +msgstr "Tắt ở Overview" #: dash.ui:51 msgid "Disables the blur from Dash to Dock when entering the overview." -msgstr "" +msgstr "Tắt hiệu ứng mờ cho Dash to Dock khi mở Overview." #: dash.ui:68 overview.ui:82 overview.ui:89 panel.ui:135 msgid "Transparent" -msgstr "" +msgstr "Trong suốt" #: dash.ui:69 overview.ui:80 overview.ui:90 panel.ui:136 msgid "Light" -msgstr "" +msgstr "Sáng" #: dash.ui:70 overview.ui:81 overview.ui:91 panel.ui:137 msgid "Dark" -msgstr "" +msgstr "Tối" #: general.ui:5 msgid "General" -msgstr "" +msgstr "Chung" #: general.ui:10 msgid "Blur preferences" -msgstr "" +msgstr "Cài đặt hiệu ứng mờ" #: general.ui:11 msgid "Global blur preferences, used by all components by default." -msgstr "" +msgstr "Cài đặt hiệu ứng mờ chung cho tất cả các thành phần theo mặc định." #: general.ui:117 msgid "Performance" -msgstr "" +msgstr "Hiệu năng" #: general.ui:118 +#, fuzzy msgid "Various options to tweak the performance." -msgstr "" +msgstr "Những tùy chọn khác nhau để tinh chỉnh phần hiệu năng." #: general.ui:122 msgid "Color and noise effects" @@ -242,37 +269,40 @@ msgstr "" #: general.ui:151 msgid "Debug" -msgstr "" +msgstr "Gỡ lỗi" #: general.ui:152 msgid "" "Makes the extension verbose in logs, activate when you need to report an " "issue." msgstr "" +"Khiến extension này hiện nhiều log hơn, bật lên nếu bạn cần báo cáo một vấn " +"đề nào đó." #: general.ui:167 msgid "Reset preferences" -msgstr "" +msgstr "Đặt lại toàn bộ cài đặt" #: general.ui:168 +#, fuzzy msgid "Resets preferences of Blur my Shell irreversibly." -msgstr "" +msgstr "Đặt lại hoàn toàn các cài đặt cho Blur my Shell. Không thể đặt lại." #: general.ui:187 msgid "Reset" -msgstr "" +msgstr "Cài đặt lại" #: general.ui:228 msgid "High performances" -msgstr "" +msgstr "Hiệu năng cao" #: general.ui:229 msgid "Default" -msgstr "" +msgstr "Mặc định" #: general.ui:230 msgid "High quality" -msgstr "" +msgstr "Chất lượng cao" #: general.ui:231 msgid "No artifact" @@ -280,43 +310,45 @@ msgstr "" #: menu.ui:6 msgid "Project page" -msgstr "" +msgstr "Trang dự án" #: menu.ui:10 msgid "Report a Bug" -msgstr "" +msgstr "Báo cáo một Lỗi" #: menu.ui:14 msgid "License" -msgstr "" +msgstr "Giấy phép" #: menu.ui:18 msgid "Donate" -msgstr "" +msgstr "Ủng hộ" #: other.ui:5 msgid "Other" -msgstr "" +msgstr "Khác" #: other.ui:10 msgid "Lockscreen blur" -msgstr "" +msgstr "Làm mờ màn hình khóa" #: other.ui:11 msgid "Change the blur of the lockscreen to use this extension's preferences." -msgstr "" +msgstr "Chỉnh độ mờ của màn hình khóa sang dùng cài đặt của extension này." #: other.ui:28 msgid "Screenshot blur" msgstr "" #: other.ui:29 +#, fuzzy msgid "Add blur to the background of the window selector in the screenshot UI." -msgstr "" +msgstr "Làm mờ nền khu vực chọn hình nền trong giao diện chụp màn hình." #: other.ui:46 +#, fuzzy msgid "Window list extension blur" -msgstr "" +msgstr "Làm mờ extension Danh sách cửa sổ" #: other.ui:47 msgid "Make the window-list extension blurred, if it is used." @@ -328,11 +360,11 @@ msgstr "" #: overview.ui:10 msgid "Background blur" -msgstr "" +msgstr "Làm mờ nền" #: overview.ui:11 msgid "Add blur to the overview background, using the wallpaper picture." -msgstr "" +msgstr "Thêm hiệu ứng mờ vào phần nền màn hình Overview, sử dụng ảnh nền." #: overview.ui:26 msgid "Overview components style" @@ -343,14 +375,16 @@ msgid "" "The semi-transparent style for the dash, search entry/results, and " "application folders." msgstr "" +"Kiểu bán trong suốt cho dash, thanh tìm kiếm/kết quả, và các thư mục ứng " +"dụng." #: overview.ui:44 msgid "Application folder blur" -msgstr "" +msgstr "Làm mờ thư mục ứng dụng" #: overview.ui:45 msgid "Makes the background of application folder dialogs blurred." -msgstr "" +msgstr "Khiến nền của các thư mục ứng dụng bị mờ đi." #: overview.ui:60 msgid "Application folder dialogs style" @@ -373,20 +407,22 @@ msgid "Panel blur" msgstr "" #: panel.ui:11 +#, fuzzy msgid "Blur the top panel using the background image." -msgstr "" +msgstr "Làm mờ thanh trên cùng nhờ hình nền" #: panel.ui:26 msgid "Static blur" -msgstr "" +msgstr "Làm mờ tĩnh" #: panel.ui:27 +#, fuzzy msgid "Uses a static blurred image, more performant and stable." -msgstr "" +msgstr "Sử dụng hình ảnh mờ tĩnh, hiệu suất cao hơn và ổn định hơn." #: panel.ui:42 msgid "Disables the blur from the panel when entering the overview." -msgstr "" +msgstr "Không làm mờ thanh panel khi vào chế độ xem tổng quan." #: panel.ui:57 msgid "" @@ -394,44 +430,50 @@ msgid "" "transparent one.\n" "Recommended unless you want to customize your GNOME theme." msgstr "" +"Ghi đè nền của thanh panel để sử dụng nền trong suốt hoặc bán trong suốt.\n" +"Được khuyên dùng trừ khi bạn muốn tùy chỉnh chủ đề GNOME của mình." #: panel.ui:65 msgid "The transparent/semi-transparent style for the panel background." -msgstr "" +msgstr "Kiểu trong suốt/bán trong suốt cho nền thanh panel." #: panel.ui:79 msgid "Disable when a window is near" -msgstr "" +msgstr "Tắt khi một cửa sổ ở gần" #: panel.ui:80 msgid "Disables the transparency of the panel when a window is near it." -msgstr "" +msgstr "Tắt trong suốt thanh panel khi một cửa sổ ở gần nó." #: panel.ui:97 msgid "Compatibility" -msgstr "" +msgstr "Độ tương thích" #: panel.ui:98 msgid "Various options to provide compatibility with other extensions." -msgstr "" +msgstr "Nhiều tùy chọn để tương thích với các extension khác." #: panel.ui:103 msgid "Hidetopbar extension" -msgstr "" +msgstr "Extension Hidetopbar" #: panel.ui:104 msgid "Does not disable the blur in overview, best used with static blur." msgstr "" +"Không tắt tính năng làm mờ ở Overview, sử dụng tốt nhất với tính năng làm mờ " +"tĩnh." #: panel.ui:118 msgid "Blur original panel with Dash to Panel" -msgstr "" +msgstr "Làm mờ thanh panel gốc với Dash to Panel" #: panel.ui:119 msgid "" "Enables the blurring of the original panel with Dash to Panel, if selected " "in the extension's options." msgstr "" +"Làm mờ panel gốc bằng Dash to Panel, nếu được chọn trong tùy chọn của " +"extension." #: panel.ui:138 msgid "Contrasted" @@ -439,12 +481,12 @@ msgstr "" #: window-row.ui:4 msgid "Window Name" -msgstr "" +msgstr "Tên cửa sổ" #: window-row.ui:8 msgid "Select window" -msgstr "" +msgstr "Chọn cửa sổ" #: window-row.ui:9 msgid "Pick a window or select it by its classname." -msgstr "" +msgstr "Chọn một cửa sổ bằng click vào nó hoặc với tên class của nó." From c947529dbc2b27fd26b983bcbfd4b8029a93cc97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Mon, 25 Sep 2023 09:07:38 +0200 Subject: [PATCH 211/212] Version 51 --- metadata.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata.json b/metadata.json index 9b3c67cc..ea4e060f 100644 --- a/metadata.json +++ b/metadata.json @@ -15,5 +15,5 @@ "github": "aunetx", "kofi": "aunetx" }, - "version": 50 + "version": 51 } \ No newline at end of file From c268a380e5c73f070dd32ecdc2de1b65bba81b42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Mon, 25 Sep 2023 19:34:50 +0200 Subject: [PATCH 212/212] Fix scaling factor for xwayland applications and force good opacity --- src/components/applications.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/components/applications.js b/src/components/applications.js index 3c7b3a86..b23eb589 100644 --- a/src/components/applications.js +++ b/src/components/applications.js @@ -355,6 +355,12 @@ export const ApplicationsBlur = class ApplicationsBlur { // set the window actor's opacity this.set_window_opacity(window_actor, this.settings.applications.OPACITY); + this.connections.connect( + window_actor, + 'notify::opacity', + _ => this.set_window_opacity(window_actor, this.settings.applications.OPACITY) + ); + // register the blur actor/effect blur_actor['blur_provider_pid'] = pid; this.blur_actor_map.set(pid, blur_actor); @@ -407,7 +413,7 @@ export const ApplicationsBlur = class ApplicationsBlur { /// Set the opacity of the window actor that sits on top of the blur effect. set_window_opacity(window_actor, opacity) { window_actor.get_children().forEach(child => { - if (child.name !== "blur-actor") + if (child.name !== "blur-actor" && child.opacity != opacity) child.opacity = opacity; }); } @@ -418,7 +424,8 @@ export const ApplicationsBlur = class ApplicationsBlur { compute_allocation(meta_window) { const is_wayland = Meta.is_wayland_compositor(); const monitor_index = meta_window.get_monitor(); - const scale = is_wayland + // check if the window is using wayland, or xwayland/xorg for rendering + const scale = is_wayland && meta_window.get_client_type() == 0 ? Main.layoutManager.monitors[monitor_index].geometry_scale : 1;