From c9e058c5f1d9083cd18b3e5c0200209ff75d92c6 Mon Sep 17 00:00:00 2001 From: Kevin Langman Date: Tue, 10 Dec 2024 22:53:08 -0500 Subject: [PATCH] [CinnamonBurnMyWindows@klangman] Version 0.9.6: Enable "Fire" effect (#789) - Enable the "Fire" effect - Apply a visual fix to "Incinerate" that was fixed in the Gnome extension recently - Reorder the code to make it a bit easier to maintain --- CinnamonBurnMyWindows@klangman/CHANGELOG.md | 6 + CinnamonBurnMyWindows@klangman/README.md | 8 +- .../6.2/Shader.js | 56 +-------- .../6.2/ShouldAnimateManager.js | 115 +---------------- .../6.2/effects | 1 + .../6.2/extension.js | 4 +- .../6.2/settings-schema.json | 93 +++++++++++++- .../ShouldAnimateManager.js | 114 +++++++++++++++++ .../{6.2 => }/effects/Apparition.js | 0 .../{6.2 => }/effects/BrokenGlass.js | 6 +- .../{6.2 => }/effects/Doom.js | 0 .../{6.2 => }/effects/EnergizeA.js | 0 .../{6.2 => }/effects/EnergizeB.js | 0 .../{6.2 => }/effects/Fire.js | 8 +- .../{6.2 => }/effects/Focus.js | 0 .../{6.2 => }/effects/Glide.js | 0 .../{6.2 => }/effects/Glitch.js | 0 .../{6.2 => }/effects/Hexagon.js | 0 .../{6.2 => }/effects/Incinerate.js | 0 .../{6.2 => }/effects/Matrix.js | 0 .../{6.2 => }/effects/PaintBrush.js | 2 +- .../{6.2 => }/effects/PixelWheel.js | 0 .../{6.2 => }/effects/PixelWipe.js | 0 .../{6.2 => }/effects/Pixelate.js | 0 .../{6.2 => }/effects/Portal.js | 0 .../{6.2 => }/effects/SnapOfDisintegration.js | 4 +- .../{6.2 => }/effects/TRexAttack.js | 6 +- .../{6.2 => }/effects/TVEffect.js | 0 .../{6.2 => }/effects/TVGlitch.js | 0 .../{6.2 => }/effects/Wisps.js | 0 .../metadata.json | 2 +- .../po/CinnamonBurnMyWindows@klangman.pot | 113 ++++++++++------- .../CinnamonBurnMyWindows@klangman/po/ca.po | 114 +++++++++++------ .../CinnamonBurnMyWindows@klangman/po/es.po | 114 +++++++++++------ .../CinnamonBurnMyWindows@klangman/po/fi.po | 118 +++++++++++------- .../CinnamonBurnMyWindows@klangman/po/fr.po | 114 +++++++++++------ .../CinnamonBurnMyWindows@klangman/po/hu.po | 114 +++++++++++------ .../CinnamonBurnMyWindows@klangman/po/nl.po | 114 +++++++++++------ .../CinnamonBurnMyWindows@klangman/po/pt.po | 114 +++++++++++------ .../resources/shaders/incinerate.frag | 2 +- 40 files changed, 819 insertions(+), 523 deletions(-) mode change 100644 => 120000 CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/ShouldAnimateManager.js create mode 120000 CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects create mode 100644 CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/ShouldAnimateManager.js rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/Apparition.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/BrokenGlass.js (98%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/Doom.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/EnergizeA.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/EnergizeB.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/Fire.js (98%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/Focus.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/Glide.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/Glitch.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/Hexagon.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/Incinerate.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/Matrix.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/PaintBrush.js (98%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/PixelWheel.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/PixelWipe.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/Pixelate.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/Portal.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/SnapOfDisintegration.js (98%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/TRexAttack.js (98%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/TVEffect.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/TVGlitch.js (100%) rename CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/{6.2 => }/effects/Wisps.js (100%) diff --git a/CinnamonBurnMyWindows@klangman/CHANGELOG.md b/CinnamonBurnMyWindows@klangman/CHANGELOG.md index f3aba9fd..452815f3 100644 --- a/CinnamonBurnMyWindows@klangman/CHANGELOG.md +++ b/CinnamonBurnMyWindows@klangman/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.9.6 + +* Enabled the "Fire" effect +* Apply a visual fix to "Incinerate" that was fixed in the Gnome extension recently +* Reordered the code to make it a bit easier to maintain + ## 0.9.5 * Added a new "Focus" effect by Justin Garza diff --git a/CinnamonBurnMyWindows@klangman/README.md b/CinnamonBurnMyWindows@klangman/README.md index 30f58c31..a6970946 100644 --- a/CinnamonBurnMyWindows@klangman/README.md +++ b/CinnamonBurnMyWindows@klangman/README.md @@ -35,6 +35,7 @@ The window shadows are not part of the animation and therefore they suddenly app - Doom - Energize A - Energize B +- Fire - Focus - Glide - Glitch @@ -53,7 +54,6 @@ The window shadows are not part of the animation and therefore they suddenly app Because Cinnamon is missing a required API, the following effects are disabled. I am hoping to find a way around this issue: - Broken Glass -- Fire - Matrix - PaintBrush - Snap Of Disintegration @@ -65,8 +65,8 @@ Because Cinnamon is missing a required API, the following effects are disabled. 2. Click on the "Extensions" icon under the "Preferences" category 3. Click the "Download" tab and then click the "Burn My Windows" entry 4. Click the "Install" button on the right and then return to the "Manage" tab -6. Select the new "Burn My Windows" entry and then click the "+" button at the bottom of the window -7. Use the "gears" icon next to the "Burn My Windows" entry to open the setting window and setup the preferred behaviour +5. Select the new "Burn My Windows" entry and then click the "+" button at the bottom of the window +6. Use the "gears" icon next to the "Burn My Windows" entry to open the setting window and setup the preferred behaviour ## Feedback @@ -74,7 +74,7 @@ Please leave a comment here on cinnamon-spices.linuxmint.com or you can create a **Please DO NOT open any issues against the original Gnome project. Open issues only on my Github or on cinnamon-spices so I can check if the issue has anything to do with my changes to support Cinnamon** If you like this extension, please consider making a donation to the author of the original Gnome extension which makes up the vast majority of the code for this Cinnamon extension. Donation links can be found on his Github page: - + https://github.com/Schneegans/Burn-My-Windows If you want to help others find this Cinnamon extension, consider staring it here and on my Github page so that more people might learn of it's existence. The more stars it gets the more encouragement I'll have to continue working on it. diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/Shader.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/Shader.js index 8f208b93..2f6b0528 100644 --- a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/Shader.js +++ b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/Shader.js @@ -25,60 +25,6 @@ const GLib = imports.gi.GLib; const UUID = "CinnamonBurnMyWindows@klangman"; -/* -// Since Cinnamon.GLSLEffect only exists in Mint22/Cinnamon6.2, this is an attempt to make a JS clone for older Cinnamon versions -var GLSLEffect = GObject.registerClass( { /-, GTypeName: 'Cjs_GLSLEffect'-/ }, -class GLSLEffect extends Clutter.OffscreenEffect { - static base_pipeline = null; - constructor() { - if (GLSLEffect.base_pipeline === null) { - let backend = Clutter.get_default_backend() - let ctx = backend.get_cogl_context(); // This does not exist in Cinnamon, blocked here for now! :-( - GLSLEffect.base_pipeline = new Cogl.Pipeline( ctx ); - GLSLEffect.base_pipeline.set_blend( "RGB = ADD (SRC_COLOR * (SRC_COLOR[A]), DST_COLOR * (1-SRC_COLOR[A]))" ); - this.build_pipeline(); - } - this._priv = GLSLEffect.base_pipeline.copy(); - GLSLEffect.base_pipeline.set_layer_null_texture(0); - } - - add_glsl_snippet(hook, declarations, code, is_replace) { - if (!GLSLEffect.base_pipeline) - return; - - let snippet; - if (is_replace) { - snippet = new Cogl.Snippet(hook, declarations, null); - snippet.set_replace(code); - } else { - snippet = new Cogl.Snippet(hook, declarations, code); - } - if (hook === Cogl.SnippetHook.VERTEX || hook === Cogl.SnippetHook.FRAGMENT) { - GLSLEffect.base_pipeline.add_snippet(snippet); - } else { - GLSLEffect.base_pipeline.add_layer_snippet(0, snippet); - } - } - - get_uniform_location(name) { - return( this._priv.get_uniform_location(name) ); - } - - set_uniform_float(uniform, n_components, value) { - this._priv.set_uniform_float(uniform, n_components, value); - } - - set_uniform_matrix(uniform, transpose, dimensions, value) { - this._priv.set_uniform_matrix(uniform, transpose, dimensions, value); - } - - build_pipeline() { - log( "GLSLEffect.build_pipeline(), should not get here!" ); - } -} -); -*/ - ////////////////////////////////////////////////////////////////////////////////////////// // This is the base class for all shaders of Burn-My-Windows. It automagically loads // // the shader's source code from the resource file resources/shaders/.glsl and // @@ -274,4 +220,4 @@ class Shader extends Cinnamon.GLSLEffect { // --------------------------------- // Add a trailing newline. Else the GLSL compiler complains... return common + '\n' + code + '\n'; } -}); \ No newline at end of file +}); diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/ShouldAnimateManager.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/ShouldAnimateManager.js deleted file mode 100644 index 15e2b0b6..00000000 --- a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/ShouldAnimateManager.js +++ /dev/null @@ -1,114 +0,0 @@ -/* - * ShouldAnimateManager.js - * Copyright (C) 2024 Kevin Langman - * - * ShouldAnimateManager is free software: you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the - * Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * ShouldAnimateManager is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - * See the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program. If not, see . * - * - * The purpose of this module is to coordinate overriding the Main.wm._shouldAnimate() - * function with more than one extension by "monkey-patching" the function. This class - * will check if there is an existing override or not, install the override if needed - * and track handlers. - * - * A new entry will need to provide an event to intercept, a handler function and - * a extension name (uuid). If the event is already being handled by some other extension - * then the extension name of the current handler will be returned to indicate an error. - * - * The handler function can return true or false which will then be returned to the caller - * of _shouldAnimate(). If the handler would like to allow the original _shouldAnimate() - * function to run, then the handler should return RUN_ORIGINAL_FUNCTION and the return - * value from the original function will be returned to the caller. - * -*/ - -const Main = imports.ui.main; -const Meta = imports.gi.Meta; - -const Events = { - Minimize: 1, - Unminimize: 2, - MapWindow: 4, - DestroyWindow: 8 -} - -const RUN_ORIGINAL_FUNCTION = 2 - -class ShouldAnimateManager { - - constructor(uuid) { - this._uuid = uuid; - } - - connect(event, handler) { - if (Main.wm._shouldAnimateManager) { - for (let i=0 ; i + * + * ShouldAnimateManager is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * ShouldAnimateManager is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program. If not, see . * + * + * The purpose of this module is to coordinate overriding the Main.wm._shouldAnimate() + * function with more than one extension by "monkey-patching" the function. This class + * will check if there is an existing override or not, install the override if needed + * and track handlers. + * + * A new entry will need to provide an event to intercept, a handler function and + * a extension name (uuid). If the event is already being handled by some other extension + * then the extension name of the current handler will be returned to indicate an error. + * + * The handler function can return true or false which will then be returned to the caller + * of _shouldAnimate(). If the handler would like to allow the original _shouldAnimate() + * function to run, then the handler should return RUN_ORIGINAL_FUNCTION and the return + * value from the original function will be returned to the caller. + * +*/ + +const Main = imports.ui.main; +const Meta = imports.gi.Meta; + +const Events = { + Minimize: 1, + Unminimize: 2, + MapWindow: 4, + DestroyWindow: 8 +} + +const RUN_ORIGINAL_FUNCTION = 2 + +class ShouldAnimateManager { + + constructor(uuid) { + this._uuid = uuid; + } + + connect(event, handler) { + if (Main.wm._shouldAnimateManager) { + for (let i=0 ; i { for (let i = 1; i <= 5; i++) { - const c = Clutter.Color.from_string(settings.get_string('fire-color-' + i))[1]; + const c = Clutter.Color.from_string(settings.getValue('fire-color-' + i))[1]; shader.set_uniform_float( shader._uGradient[i - 1], 4, [c.red / 255, c.green / 255, c.blue / 255, c.alpha / 255]); } // clang-format off - shader.set_uniform_float(shader._u3DNoise, 1, [settings.get_boolean('fire-3d-noise')]); - shader.set_uniform_float(shader._uScale, 1, [settings.get_double('fire-scale')]); - shader.set_uniform_float(shader._uMovementSpeed, 1, [settings.get_double('fire-movement-speed')]); + shader.set_uniform_float(shader._u3DNoise, 1, [settings.getValue('fire-3d-noise')]); + shader.set_uniform_float(shader._uScale, 1, [settings.getValue('fire-scale')]); + shader.set_uniform_float(shader._uMovementSpeed, 1, [settings.getValue('fire-movement-speed')]); // clang-format on }); }); diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Focus.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Focus.js similarity index 100% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Focus.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Focus.js diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Glide.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Glide.js similarity index 100% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Glide.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Glide.js diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Glitch.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Glitch.js similarity index 100% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Glitch.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Glitch.js diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Hexagon.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Hexagon.js similarity index 100% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Hexagon.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Hexagon.js diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Incinerate.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Incinerate.js similarity index 100% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Incinerate.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Incinerate.js diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Matrix.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Matrix.js similarity index 100% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Matrix.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Matrix.js diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/PaintBrush.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/PaintBrush.js similarity index 98% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/PaintBrush.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/PaintBrush.js index c3d9cf16..d6781dff 100644 --- a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/PaintBrush.js +++ b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/PaintBrush.js @@ -72,7 +72,7 @@ var Effect = class Effect { // Write all uniform values at the start of each animation. shader.connect('begin-animation', (shader, settings, forOpening, testMode) => { shader.set_uniform_float(shader._uBrushSize, 1, - [settings.get_int('paint-brush-size')]); + [settings.getValue('paint-brush-size')]); }); // This is required to bind the brush texture for drawing. Sadly, this seems to be diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/PixelWheel.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/PixelWheel.js similarity index 100% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/PixelWheel.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/PixelWheel.js diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/PixelWipe.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/PixelWipe.js similarity index 100% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/PixelWipe.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/PixelWipe.js diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Pixelate.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Pixelate.js similarity index 100% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Pixelate.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Pixelate.js diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Portal.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Portal.js similarity index 100% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Portal.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Portal.js diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/SnapOfDisintegration.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/SnapOfDisintegration.js similarity index 98% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/SnapOfDisintegration.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/SnapOfDisintegration.js index 7062c2a1..329a2429 100644 --- a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/SnapOfDisintegration.js +++ b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/SnapOfDisintegration.js @@ -75,12 +75,12 @@ var Effect = class Effect { // Write all uniform values at the start of each animation. shader.connect('begin-animation', (shader, settings, forOpening, testMode) => { // The dust particles will fade to this color over time. - const c = Clutter.Color.from_string(settings.get_string('snap-color'))[1]; + const c = Clutter.Color.from_string(settings.getValue('snap-color'))[1]; // clang-format off shader.set_uniform_float(shader._uDustColor, 4, [c.red / 255, c.green / 255, c.blue / 255, c.alpha / 255]); shader.set_uniform_float(shader._uSeed, 2, [testMode ? 0 : Math.random(), testMode ? 0 : Math.random()]); - shader.set_uniform_float(shader._uDustScale, 1, [settings.get_double('snap-scale')]); + shader.set_uniform_float(shader._uDustScale, 1, [settings.getValue('snap-scale')]); // clang-format on }); diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/TRexAttack.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/TRexAttack.js similarity index 98% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/TRexAttack.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/TRexAttack.js index 1efeed39..86bf8a09 100644 --- a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/TRexAttack.js +++ b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/TRexAttack.js @@ -76,9 +76,9 @@ var Effect = class Effect { // clang-format off shader.set_uniform_float(shader._uFlashColor, 4, [c.red / 255, c.green / 255, c.blue / 255, c.alpha / 255]); shader.set_uniform_float(shader._uSeed, 2, [testMode ? 0 : Math.random(), testMode ? 0 : Math.random()]); - shader.set_uniform_float(shader._uClawSize, 1, [settings.get_double('trex-scratch-scale')]); - shader.set_uniform_float(shader._uNumClaws, 1, [settings.get_int('trex-scratch-count')]); - shader.set_uniform_float(shader._uWarpIntensity, 1, [settings.get_double('trex-scratch-warp')]); + shader.set_uniform_float(shader._uClawSize, 1, [settings.getValue('trex-scratch-scale')]); + shader.set_uniform_float(shader._uNumClaws, 1, [settings.getValue('trex-scratch-count')]); + shader.set_uniform_float(shader._uWarpIntensity, 1, [settings.getValue('trex-scratch-warp')]); // clang-format on }); diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/TVEffect.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/TVEffect.js similarity index 100% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/TVEffect.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/TVEffect.js diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/TVGlitch.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/TVGlitch.js similarity index 100% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/TVGlitch.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/TVGlitch.js diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Wisps.js b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Wisps.js similarity index 100% rename from CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/6.2/effects/Wisps.js rename to CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/effects/Wisps.js diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/metadata.json b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/metadata.json index 29ffa6c9..a96d77da 100644 --- a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/metadata.json +++ b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/metadata.json @@ -1,7 +1,7 @@ { "uuid": "CinnamonBurnMyWindows@klangman", "name": "Burn My Windows", - "version": "0.9.5", + "version": "0.9.6", "description": "Window open/close effects based on the Burn-My-Windows Gnome extension by Schneegans", "url": "https://github.com/klangman/CinnamonBurnMyWindows", "website": "https://github.com/klangman/CinnamonBurnMyWindows", diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/CinnamonBurnMyWindows@klangman.pot b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/CinnamonBurnMyWindows@klangman.pot index ddcf9aad..3dc490f0 100644 --- a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/CinnamonBurnMyWindows@klangman.pot +++ b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/CinnamonBurnMyWindows@klangman.pot @@ -5,10 +5,10 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: CinnamonBurnMyWindows@klangman 0.9.5\n" +"Project-Id-Version: CinnamonBurnMyWindows@klangman 0.9.6\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-10-29 21:27-0400\n" +"POT-Creation-Date: 2024-12-10 22:31-0500\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -43,11 +43,11 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Apparition.js:94 +#. effects/Apparition.js:94 msgid "Apparition" msgstr "" -#. 6.2/effects/BrokenGlass.js:152 +#. effects/BrokenGlass.js:152 msgid "Broken Glass" msgstr "" @@ -55,7 +55,7 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Doom.js:101 +#. effects/Doom.js:101 msgid "Doom" msgstr "" @@ -63,7 +63,7 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeA.js:90 +#. effects/EnergizeA.js:90 msgid "Energize A" msgstr "" @@ -71,31 +71,35 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeB.js:92 +#. effects/EnergizeB.js:92 msgid "Energize B" msgstr "" -#. 6.2/effects/Fire.js:114 +#. 6.2->settings-schema.json->fire-random-include->description +#. 6.2->settings-schema.json->effect-selector->options +#. 6.2->settings-schema.json->open-window-effect->options +#. 6.2->settings-schema.json->close-window-effect->options +#. effects/Fire.js:114 msgid "Fire" msgstr "" -#. 6.2/effects/Fire.js:168 +#. effects/Fire.js:168 msgid "Default Fire" msgstr "" -#. 6.2/effects/Fire.js:178 +#. effects/Fire.js:178 msgid "Hell Fire" msgstr "" -#. 6.2/effects/Fire.js:188 +#. effects/Fire.js:188 msgid "Dark and Smutty" msgstr "" -#. 6.2/effects/Fire.js:198 +#. effects/Fire.js:198 msgid "Cold Breeze" msgstr "" -#. 6.2/effects/Fire.js:208 +#. effects/Fire.js:208 msgid "Santa is Coming" msgstr "" @@ -103,7 +107,7 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Focus.js:91 +#. effects/Focus.js:91 msgid "Focus" msgstr "" @@ -111,7 +115,7 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glide.js:93 +#. effects/Glide.js:93 msgid "Glide" msgstr "" @@ -119,7 +123,7 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glitch.js:97 +#. effects/Glitch.js:97 msgid "Glitch" msgstr "" @@ -127,7 +131,7 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Hexagon.js:106 +#. effects/Hexagon.js:106 msgid "Hexagon" msgstr "" @@ -135,15 +139,15 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Incinerate.js:144 +#. effects/Incinerate.js:144 msgid "Incinerate" msgstr "" -#. 6.2/effects/Matrix.js:124 +#. effects/Matrix.js:124 msgid "Matrix" msgstr "" -#. 6.2/effects/PaintBrush.js:114 +#. effects/PaintBrush.js:114 msgid "Paint Brush" msgstr "" @@ -151,7 +155,7 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWheel.js:88 +#. effects/PixelWheel.js:88 msgid "Pixel Wheel" msgstr "" @@ -159,7 +163,7 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWipe.js:114 +#. effects/PixelWipe.js:114 msgid "Pixel Wipe" msgstr "" @@ -167,7 +171,7 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Pixelate.js:88 +#. effects/Pixelate.js:88 msgid "Pixelate" msgstr "" @@ -175,15 +179,15 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Portal.js:99 +#. effects/Portal.js:99 msgid "Portal" msgstr "" -#. 6.2/effects/SnapOfDisintegration.js:124 +#. effects/SnapOfDisintegration.js:124 msgid "Snap of Disintegration" msgstr "" -#. 6.2/effects/TRexAttack.js:121 +#. effects/TRexAttack.js:121 msgid "T-Rex Attack" msgstr "" @@ -191,7 +195,7 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVEffect.js:90 +#. effects/TVEffect.js:90 msgid "TV Effect" msgstr "" @@ -199,7 +203,7 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVGlitch.js:99 +#. effects/TVGlitch.js:99 msgid "TV Glitch" msgstr "" @@ -207,7 +211,7 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Wisps.js:101 +#. effects/Wisps.js:101 msgid "Wisps" msgstr "" @@ -274,7 +278,7 @@ msgid "Application" msgstr "" #. 6.2->settings-schema.json->app-rules->tooltip -msgid "A list of application with special effect rules" +msgid "A list of applications with special effect rules" msgstr "" #. 6.2->settings-schema.json->app-rules-button->description @@ -333,6 +337,7 @@ msgstr "" #. 6.2->settings-schema.json->doom-animation-time->description #. 6.2->settings-schema.json->energize-a-animation-time->description #. 6.2->settings-schema.json->energize-b-animation-time->description +#. 6.2->settings-schema.json->fire-animation-time->description #. 6.2->settings-schema.json->focus-animation-time->description #. 6.2->settings-schema.json->glide-animation-time->description #. 6.2->settings-schema.json->glitch-animation-time->description @@ -365,6 +370,7 @@ msgstr "" #. 6.2->settings-schema.json->energize-a-scale->description #. 6.2->settings-schema.json->energize-b-scale->description +#. 6.2->settings-schema.json->fire-scale->description #. 6.2->settings-schema.json->glide-scale->description #. 6.2->settings-schema.json->glitch-scale->description #. 6.2->settings-schema.json->hexagon-scale->description @@ -384,6 +390,41 @@ msgstr "" msgid "Color" msgstr "" +#. 6.2->settings-schema.json->fire-movement-speed->description +msgid "Fire Movement Speed" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->description +msgid "Fire 3D Noise" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->tooltip +msgid "Creates a more dynamic fire but requires more GPU power." +msgstr "" + +#. 6.2->settings-schema.json->fire-color-1->description +#. 6.2->settings-schema.json->wisps-color-1->description +msgid "Color #1" +msgstr "" + +#. 6.2->settings-schema.json->fire-color-2->description +#. 6.2->settings-schema.json->wisps-color-2->description +msgid "Color #2" +msgstr "" + +#. 6.2->settings-schema.json->fire-color-3->description +#. 6.2->settings-schema.json->wisps-color-3->description +msgid "Color #3" +msgstr "" + +#. 6.2->settings-schema.json->fire-color-4->description +msgid "Color #4" +msgstr "" + +#. 6.2->settings-schema.json->fire-color-5->description +msgid "Color #5" +msgstr "" + #. 6.2->settings-schema.json->focus-blur-amount->description msgid "Blur Amount" msgstr "" @@ -471,15 +512,3 @@ msgstr "" #. 6.2->settings-schema.json->portal-details->description msgid "Details" msgstr "" - -#. 6.2->settings-schema.json->wisps-color-1->description -msgid "Color #1" -msgstr "" - -#. 6.2->settings-schema.json->wisps-color-2->description -msgid "Color #2" -msgstr "" - -#. 6.2->settings-schema.json->wisps-color-3->description -msgid "Color #3" -msgstr "" diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/ca.po b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/ca.po index c1de1f46..7526e2e3 100644 --- a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/ca.po +++ b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/ca.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: CinnamonBurnMyWindows@klangman 0.9.1\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-10-29 21:27-0400\n" +"POT-Creation-Date: 2024-12-10 22:31-0500\n" "PO-Revision-Date: \n" "Last-Translator: Odyssey \n" "Language-Team: \n" @@ -46,11 +46,11 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Apparition.js:94 +#. effects/Apparition.js:94 msgid "Apparition" msgstr "Aparició" -#. 6.2/effects/BrokenGlass.js:152 +#. effects/BrokenGlass.js:152 msgid "Broken Glass" msgstr "Vidre trencat" @@ -58,7 +58,7 @@ msgstr "Vidre trencat" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Doom.js:101 +#. effects/Doom.js:101 msgid "Doom" msgstr "Perdició" @@ -66,7 +66,7 @@ msgstr "Perdició" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeA.js:90 +#. effects/EnergizeA.js:90 msgid "Energize A" msgstr "Energitzar A" @@ -74,31 +74,35 @@ msgstr "Energitzar A" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeB.js:92 +#. effects/EnergizeB.js:92 msgid "Energize B" msgstr "Energitzar B" -#. 6.2/effects/Fire.js:114 +#. 6.2->settings-schema.json->fire-random-include->description +#. 6.2->settings-schema.json->effect-selector->options +#. 6.2->settings-schema.json->open-window-effect->options +#. 6.2->settings-schema.json->close-window-effect->options +#. effects/Fire.js:114 msgid "Fire" msgstr "Foc" -#. 6.2/effects/Fire.js:168 +#. effects/Fire.js:168 msgid "Default Fire" msgstr "Foc per defecte" -#. 6.2/effects/Fire.js:178 +#. effects/Fire.js:178 msgid "Hell Fire" msgstr "Foc infernal" -#. 6.2/effects/Fire.js:188 +#. effects/Fire.js:188 msgid "Dark and Smutty" msgstr "Fosc i brut" -#. 6.2/effects/Fire.js:198 +#. effects/Fire.js:198 msgid "Cold Breeze" msgstr "Brisa freda" -#. 6.2/effects/Fire.js:208 +#. effects/Fire.js:208 msgid "Santa is Coming" msgstr "Ja arriba el Pare Noel" @@ -106,7 +110,7 @@ msgstr "Ja arriba el Pare Noel" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Focus.js:91 +#. effects/Focus.js:91 msgid "Focus" msgstr "Focus" @@ -114,7 +118,7 @@ msgstr "Focus" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glide.js:93 +#. effects/Glide.js:93 msgid "Glide" msgstr "Planeig" @@ -122,7 +126,7 @@ msgstr "Planeig" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glitch.js:97 +#. effects/Glitch.js:97 msgid "Glitch" msgstr "Glitch" @@ -130,7 +134,7 @@ msgstr "Glitch" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Hexagon.js:106 +#. effects/Hexagon.js:106 msgid "Hexagon" msgstr "Hexàgon" @@ -138,15 +142,15 @@ msgstr "Hexàgon" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Incinerate.js:144 +#. effects/Incinerate.js:144 msgid "Incinerate" msgstr "Incinerar" -#. 6.2/effects/Matrix.js:124 +#. effects/Matrix.js:124 msgid "Matrix" msgstr "Matrix" -#. 6.2/effects/PaintBrush.js:114 +#. effects/PaintBrush.js:114 msgid "Paint Brush" msgstr "Pinzell" @@ -154,7 +158,7 @@ msgstr "Pinzell" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWheel.js:88 +#. effects/PixelWheel.js:88 msgid "Pixel Wheel" msgstr "Roda de píxels" @@ -162,7 +166,7 @@ msgstr "Roda de píxels" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWipe.js:114 +#. effects/PixelWipe.js:114 msgid "Pixel Wipe" msgstr "Neteja de píxels" @@ -170,7 +174,7 @@ msgstr "Neteja de píxels" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Pixelate.js:88 +#. effects/Pixelate.js:88 msgid "Pixelate" msgstr "Pixelat" @@ -178,15 +182,15 @@ msgstr "Pixelat" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Portal.js:99 +#. effects/Portal.js:99 msgid "Portal" msgstr "Portal" -#. 6.2/effects/SnapOfDisintegration.js:124 +#. effects/SnapOfDisintegration.js:124 msgid "Snap of Disintegration" msgstr "Fase de desintegració" -#. 6.2/effects/TRexAttack.js:121 +#. effects/TRexAttack.js:121 msgid "T-Rex Attack" msgstr "Atac de T-Rex" @@ -194,7 +198,7 @@ msgstr "Atac de T-Rex" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVEffect.js:90 +#. effects/TVEffect.js:90 msgid "TV Effect" msgstr "Efecte de TV" @@ -202,7 +206,7 @@ msgstr "Efecte de TV" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVGlitch.js:99 +#. effects/TVGlitch.js:99 msgid "TV Glitch" msgstr "Error de senyal de TV" @@ -210,7 +214,7 @@ msgstr "Error de senyal de TV" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Wisps.js:101 +#. effects/Wisps.js:101 msgid "Wisps" msgstr "Motes" @@ -279,7 +283,8 @@ msgid "Application" msgstr "Aplicació" #. 6.2->settings-schema.json->app-rules->tooltip -msgid "A list of application with special effect rules" +#, fuzzy +msgid "A list of applications with special effect rules" msgstr "Una llista d'aplicacions amb regles especials d'efectes" #. 6.2->settings-schema.json->app-rules-button->description @@ -340,6 +345,7 @@ msgstr "Aleatorietat" #. 6.2->settings-schema.json->doom-animation-time->description #. 6.2->settings-schema.json->energize-a-animation-time->description #. 6.2->settings-schema.json->energize-b-animation-time->description +#. 6.2->settings-schema.json->fire-animation-time->description #. 6.2->settings-schema.json->focus-animation-time->description #. 6.2->settings-schema.json->glide-animation-time->description #. 6.2->settings-schema.json->glitch-animation-time->description @@ -372,6 +378,7 @@ msgstr "Mida del píxel" #. 6.2->settings-schema.json->energize-a-scale->description #. 6.2->settings-schema.json->energize-b-scale->description +#. 6.2->settings-schema.json->fire-scale->description #. 6.2->settings-schema.json->glide-scale->description #. 6.2->settings-schema.json->glitch-scale->description #. 6.2->settings-schema.json->hexagon-scale->description @@ -391,6 +398,43 @@ msgstr "Escala" msgid "Color" msgstr "Color" +#. 6.2->settings-schema.json->fire-movement-speed->description +msgid "Fire Movement Speed" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->description +msgid "Fire 3D Noise" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->tooltip +msgid "Creates a more dynamic fire but requires more GPU power." +msgstr "" + +#. 6.2->settings-schema.json->fire-color-1->description +#. 6.2->settings-schema.json->wisps-color-1->description +msgid "Color #1" +msgstr "Color #1" + +#. 6.2->settings-schema.json->fire-color-2->description +#. 6.2->settings-schema.json->wisps-color-2->description +msgid "Color #2" +msgstr "Color #2" + +#. 6.2->settings-schema.json->fire-color-3->description +#. 6.2->settings-schema.json->wisps-color-3->description +msgid "Color #3" +msgstr "Color #3" + +#. 6.2->settings-schema.json->fire-color-4->description +#, fuzzy +msgid "Color #4" +msgstr "Color #1" + +#. 6.2->settings-schema.json->fire-color-5->description +#, fuzzy +msgid "Color #5" +msgstr "Color #1" + #. 6.2->settings-schema.json->focus-blur-amount->description msgid "Blur Amount" msgstr "Quantitat del desenfocament" @@ -480,15 +524,3 @@ msgstr "Remolí" #. 6.2->settings-schema.json->portal-details->description msgid "Details" msgstr "Detalls" - -#. 6.2->settings-schema.json->wisps-color-1->description -msgid "Color #1" -msgstr "Color #1" - -#. 6.2->settings-schema.json->wisps-color-2->description -msgid "Color #2" -msgstr "Color #2" - -#. 6.2->settings-schema.json->wisps-color-3->description -msgid "Color #3" -msgstr "Color #3" diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/es.po b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/es.po index 19edfcdb..f8bbe1e3 100644 --- a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/es.po +++ b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/es.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: CinnamonBurnMyWindows@klangman 0.9.1\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-10-29 21:27-0400\n" +"POT-Creation-Date: 2024-12-10 22:31-0500\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -46,11 +46,11 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Apparition.js:94 +#. effects/Apparition.js:94 msgid "Apparition" msgstr "Aparición" -#. 6.2/effects/BrokenGlass.js:152 +#. effects/BrokenGlass.js:152 msgid "Broken Glass" msgstr "Vidrio roto" @@ -58,7 +58,7 @@ msgstr "Vidrio roto" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Doom.js:101 +#. effects/Doom.js:101 msgid "Doom" msgstr "Perdición" @@ -66,7 +66,7 @@ msgstr "Perdición" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeA.js:90 +#. effects/EnergizeA.js:90 msgid "Energize A" msgstr "Energizar A" @@ -74,31 +74,35 @@ msgstr "Energizar A" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeB.js:92 +#. effects/EnergizeB.js:92 msgid "Energize B" msgstr "Energizar B" -#. 6.2/effects/Fire.js:114 +#. 6.2->settings-schema.json->fire-random-include->description +#. 6.2->settings-schema.json->effect-selector->options +#. 6.2->settings-schema.json->open-window-effect->options +#. 6.2->settings-schema.json->close-window-effect->options +#. effects/Fire.js:114 msgid "Fire" msgstr "Fuego" -#. 6.2/effects/Fire.js:168 +#. effects/Fire.js:168 msgid "Default Fire" msgstr "Fuego predeterminado" -#. 6.2/effects/Fire.js:178 +#. effects/Fire.js:178 msgid "Hell Fire" msgstr "Fuego infernal" -#. 6.2/effects/Fire.js:188 +#. effects/Fire.js:188 msgid "Dark and Smutty" msgstr "Oscuro y sucio" -#. 6.2/effects/Fire.js:198 +#. effects/Fire.js:198 msgid "Cold Breeze" msgstr "Brisa fría" -#. 6.2/effects/Fire.js:208 +#. effects/Fire.js:208 msgid "Santa is Coming" msgstr "Papá Noel ya viene" @@ -106,7 +110,7 @@ msgstr "Papá Noel ya viene" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Focus.js:91 +#. effects/Focus.js:91 msgid "Focus" msgstr "Enfoque" @@ -114,7 +118,7 @@ msgstr "Enfoque" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glide.js:93 +#. effects/Glide.js:93 msgid "Glide" msgstr "Planeo" @@ -122,7 +126,7 @@ msgstr "Planeo" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glitch.js:97 +#. effects/Glitch.js:97 msgid "Glitch" msgstr "Glitch" @@ -130,7 +134,7 @@ msgstr "Glitch" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Hexagon.js:106 +#. effects/Hexagon.js:106 msgid "Hexagon" msgstr "Hexágono" @@ -138,15 +142,15 @@ msgstr "Hexágono" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Incinerate.js:144 +#. effects/Incinerate.js:144 msgid "Incinerate" msgstr "Incinerar" -#. 6.2/effects/Matrix.js:124 +#. effects/Matrix.js:124 msgid "Matrix" msgstr "Matrix" -#. 6.2/effects/PaintBrush.js:114 +#. effects/PaintBrush.js:114 msgid "Paint Brush" msgstr "Pincel" @@ -154,7 +158,7 @@ msgstr "Pincel" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWheel.js:88 +#. effects/PixelWheel.js:88 msgid "Pixel Wheel" msgstr "Rueda de píxeles" @@ -162,7 +166,7 @@ msgstr "Rueda de píxeles" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWipe.js:114 +#. effects/PixelWipe.js:114 msgid "Pixel Wipe" msgstr "Limpieza de píxeles" @@ -170,7 +174,7 @@ msgstr "Limpieza de píxeles" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Pixelate.js:88 +#. effects/Pixelate.js:88 msgid "Pixelate" msgstr "Pixelado" @@ -178,15 +182,15 @@ msgstr "Pixelado" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Portal.js:99 +#. effects/Portal.js:99 msgid "Portal" msgstr "Portal" -#. 6.2/effects/SnapOfDisintegration.js:124 +#. effects/SnapOfDisintegration.js:124 msgid "Snap of Disintegration" msgstr "Chasquido de desintegración" -#. 6.2/effects/TRexAttack.js:121 +#. effects/TRexAttack.js:121 msgid "T-Rex Attack" msgstr "Ataque del T-Rex" @@ -194,7 +198,7 @@ msgstr "Ataque del T-Rex" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVEffect.js:90 +#. effects/TVEffect.js:90 msgid "TV Effect" msgstr "Efecto de TV" @@ -202,7 +206,7 @@ msgstr "Efecto de TV" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVGlitch.js:99 +#. effects/TVGlitch.js:99 msgid "TV Glitch" msgstr "Fallo de TV" @@ -210,7 +214,7 @@ msgstr "Fallo de TV" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Wisps.js:101 +#. effects/Wisps.js:101 msgid "Wisps" msgstr "Motas" @@ -279,7 +283,8 @@ msgid "Application" msgstr "Aplicación" #. 6.2->settings-schema.json->app-rules->tooltip -msgid "A list of application with special effect rules" +#, fuzzy +msgid "A list of applications with special effect rules" msgstr "Una lista de aplicaciones con reglas de efectos especiales" #. 6.2->settings-schema.json->app-rules-button->description @@ -341,6 +346,7 @@ msgstr "Aleatoriedad" #. 6.2->settings-schema.json->doom-animation-time->description #. 6.2->settings-schema.json->energize-a-animation-time->description #. 6.2->settings-schema.json->energize-b-animation-time->description +#. 6.2->settings-schema.json->fire-animation-time->description #. 6.2->settings-schema.json->focus-animation-time->description #. 6.2->settings-schema.json->glide-animation-time->description #. 6.2->settings-schema.json->glitch-animation-time->description @@ -373,6 +379,7 @@ msgstr "Tamaño de píxel" #. 6.2->settings-schema.json->energize-a-scale->description #. 6.2->settings-schema.json->energize-b-scale->description +#. 6.2->settings-schema.json->fire-scale->description #. 6.2->settings-schema.json->glide-scale->description #. 6.2->settings-schema.json->glitch-scale->description #. 6.2->settings-schema.json->hexagon-scale->description @@ -392,6 +399,43 @@ msgstr "Escala" msgid "Color" msgstr "Color" +#. 6.2->settings-schema.json->fire-movement-speed->description +msgid "Fire Movement Speed" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->description +msgid "Fire 3D Noise" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->tooltip +msgid "Creates a more dynamic fire but requires more GPU power." +msgstr "" + +#. 6.2->settings-schema.json->fire-color-1->description +#. 6.2->settings-schema.json->wisps-color-1->description +msgid "Color #1" +msgstr "Color #1" + +#. 6.2->settings-schema.json->fire-color-2->description +#. 6.2->settings-schema.json->wisps-color-2->description +msgid "Color #2" +msgstr "Color #2" + +#. 6.2->settings-schema.json->fire-color-3->description +#. 6.2->settings-schema.json->wisps-color-3->description +msgid "Color #3" +msgstr "Color #3" + +#. 6.2->settings-schema.json->fire-color-4->description +#, fuzzy +msgid "Color #4" +msgstr "Color #1" + +#. 6.2->settings-schema.json->fire-color-5->description +#, fuzzy +msgid "Color #5" +msgstr "Color #1" + #. 6.2->settings-schema.json->focus-blur-amount->description msgid "Blur Amount" msgstr "Cantidad de desenfoque" @@ -482,15 +526,3 @@ msgstr "Remolino" #. 6.2->settings-schema.json->portal-details->description msgid "Details" msgstr "Detalles" - -#. 6.2->settings-schema.json->wisps-color-1->description -msgid "Color #1" -msgstr "Color #1" - -#. 6.2->settings-schema.json->wisps-color-2->description -msgid "Color #2" -msgstr "Color #2" - -#. 6.2->settings-schema.json->wisps-color-3->description -msgid "Color #3" -msgstr "Color #3" diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/fi.po b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/fi.po index ca6ca133..1088c08b 100644 --- a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/fi.po +++ b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/fi.po @@ -7,16 +7,16 @@ msgstr "" "Project-Id-Version: CinnamonBurnMyWindows@klangman 0.9.5\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-10-29 21:27-0400\n" +"POT-Creation-Date: 2024-12-10 22:31-0500\n" "PO-Revision-Date: \n" +"Last-Translator: Kimmo Kujansuu \n" "Language-Team: \n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.3\n" -"Last-Translator: Kimmo Kujansuu \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Language: fi\n" #. 6.2/extension.js:212 6.2/extension.js:443 msgid "Error" @@ -46,11 +46,11 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Apparition.js:94 +#. effects/Apparition.js:94 msgid "Apparition" msgstr "Ilmestys" -#. 6.2/effects/BrokenGlass.js:152 +#. effects/BrokenGlass.js:152 msgid "Broken Glass" msgstr "Särkynyt lasi" @@ -58,7 +58,7 @@ msgstr "Särkynyt lasi" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Doom.js:101 +#. effects/Doom.js:101 msgid "Doom" msgstr "Tuoho" @@ -66,7 +66,7 @@ msgstr "Tuoho" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeA.js:90 +#. effects/EnergizeA.js:90 msgid "Energize A" msgstr "Energia A" @@ -74,31 +74,35 @@ msgstr "Energia A" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeB.js:92 +#. effects/EnergizeB.js:92 msgid "Energize B" msgstr "Energia B" -#. 6.2/effects/Fire.js:114 +#. 6.2->settings-schema.json->fire-random-include->description +#. 6.2->settings-schema.json->effect-selector->options +#. 6.2->settings-schema.json->open-window-effect->options +#. 6.2->settings-schema.json->close-window-effect->options +#. effects/Fire.js:114 msgid "Fire" msgstr "Tuli" -#. 6.2/effects/Fire.js:168 +#. effects/Fire.js:168 msgid "Default Fire" msgstr "Oletus tuli" -#. 6.2/effects/Fire.js:178 +#. effects/Fire.js:178 msgid "Hell Fire" msgstr "Helvetin tuli" -#. 6.2/effects/Fire.js:188 +#. effects/Fire.js:188 msgid "Dark and Smutty" msgstr "Tumma tahra" -#. 6.2/effects/Fire.js:198 +#. effects/Fire.js:198 msgid "Cold Breeze" msgstr "Kylmää tuulta" -#. 6.2/effects/Fire.js:208 +#. effects/Fire.js:208 msgid "Santa is Coming" msgstr "Joulupukki tulee" @@ -106,7 +110,7 @@ msgstr "Joulupukki tulee" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Focus.js:91 +#. effects/Focus.js:91 msgid "Focus" msgstr "Tarkennus" @@ -114,7 +118,7 @@ msgstr "Tarkennus" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glide.js:93 +#. effects/Glide.js:93 msgid "Glide" msgstr "Liuku" @@ -122,7 +126,7 @@ msgstr "Liuku" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glitch.js:97 +#. effects/Glitch.js:97 msgid "Glitch" msgstr "Häiriö" @@ -130,7 +134,7 @@ msgstr "Häiriö" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Hexagon.js:106 +#. effects/Hexagon.js:106 msgid "Hexagon" msgstr "Kuusikulmio" @@ -138,15 +142,15 @@ msgstr "Kuusikulmio" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Incinerate.js:144 +#. effects/Incinerate.js:144 msgid "Incinerate" msgstr "Poltto" -#. 6.2/effects/Matrix.js:124 +#. effects/Matrix.js:124 msgid "Matrix" msgstr "Matrix" -#. 6.2/effects/PaintBrush.js:114 +#. effects/PaintBrush.js:114 msgid "Paint Brush" msgstr "Sivellin" @@ -154,7 +158,7 @@ msgstr "Sivellin" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWheel.js:88 +#. effects/PixelWheel.js:88 msgid "Pixel Wheel" msgstr "Pikselipyörä" @@ -162,7 +166,7 @@ msgstr "Pikselipyörä" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWipe.js:114 +#. effects/PixelWipe.js:114 msgid "Pixel Wipe" msgstr "Pikselipyyhintä" @@ -170,7 +174,7 @@ msgstr "Pikselipyyhintä" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Pixelate.js:88 +#. effects/Pixelate.js:88 msgid "Pixelate" msgstr "Pikselöinti" @@ -178,15 +182,15 @@ msgstr "Pikselöinti" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Portal.js:99 +#. effects/Portal.js:99 msgid "Portal" msgstr "Teleportti" -#. 6.2/effects/SnapOfDisintegration.js:124 +#. effects/SnapOfDisintegration.js:124 msgid "Snap of Disintegration" msgstr "Hajoaminen" -#. 6.2/effects/TRexAttack.js:121 +#. effects/TRexAttack.js:121 msgid "T-Rex Attack" msgstr "T-Rexin hyökkäys" @@ -194,7 +198,7 @@ msgstr "T-Rexin hyökkäys" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVEffect.js:90 +#. effects/TVEffect.js:90 msgid "TV Effect" msgstr "TV pois" @@ -202,7 +206,7 @@ msgstr "TV pois" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVGlitch.js:99 +#. effects/TVGlitch.js:99 msgid "TV Glitch" msgstr "TV päälle" @@ -210,7 +214,7 @@ msgstr "TV päälle" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Wisps.js:101 +#. effects/Wisps.js:101 msgid "Wisps" msgstr "Hikkaset" @@ -279,7 +283,8 @@ msgid "Application" msgstr "Sovellus" #. 6.2->settings-schema.json->app-rules->tooltip -msgid "A list of application with special effect rules" +#, fuzzy +msgid "A list of applications with special effect rules" msgstr "Luettelo sovelluksista, joilla on tehosteita koskevia sääntöjä" #. 6.2->settings-schema.json->app-rules-button->description @@ -340,6 +345,7 @@ msgstr "Satunnaisuus" #. 6.2->settings-schema.json->doom-animation-time->description #. 6.2->settings-schema.json->energize-a-animation-time->description #. 6.2->settings-schema.json->energize-b-animation-time->description +#. 6.2->settings-schema.json->fire-animation-time->description #. 6.2->settings-schema.json->focus-animation-time->description #. 6.2->settings-schema.json->glide-animation-time->description #. 6.2->settings-schema.json->glitch-animation-time->description @@ -372,6 +378,7 @@ msgstr "Pikselikoko" #. 6.2->settings-schema.json->energize-a-scale->description #. 6.2->settings-schema.json->energize-b-scale->description +#. 6.2->settings-schema.json->fire-scale->description #. 6.2->settings-schema.json->glide-scale->description #. 6.2->settings-schema.json->glitch-scale->description #. 6.2->settings-schema.json->hexagon-scale->description @@ -391,6 +398,43 @@ msgstr "Skaalaus" msgid "Color" msgstr "Väri" +#. 6.2->settings-schema.json->fire-movement-speed->description +msgid "Fire Movement Speed" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->description +msgid "Fire 3D Noise" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->tooltip +msgid "Creates a more dynamic fire but requires more GPU power." +msgstr "" + +#. 6.2->settings-schema.json->fire-color-1->description +#. 6.2->settings-schema.json->wisps-color-1->description +msgid "Color #1" +msgstr "Väri #1" + +#. 6.2->settings-schema.json->fire-color-2->description +#. 6.2->settings-schema.json->wisps-color-2->description +msgid "Color #2" +msgstr "Väri #2" + +#. 6.2->settings-schema.json->fire-color-3->description +#. 6.2->settings-schema.json->wisps-color-3->description +msgid "Color #3" +msgstr "Väri #3" + +#. 6.2->settings-schema.json->fire-color-4->description +#, fuzzy +msgid "Color #4" +msgstr "Väri #1" + +#. 6.2->settings-schema.json->fire-color-5->description +#, fuzzy +msgid "Color #5" +msgstr "Väri #1" + #. 6.2->settings-schema.json->focus-blur-amount->description msgid "Blur Amount" msgstr "Sumennuksen määrä" @@ -478,15 +522,3 @@ msgstr "Pyörivä" #. 6.2->settings-schema.json->portal-details->description msgid "Details" msgstr "Tiedot" - -#. 6.2->settings-schema.json->wisps-color-1->description -msgid "Color #1" -msgstr "Väri #1" - -#. 6.2->settings-schema.json->wisps-color-2->description -msgid "Color #2" -msgstr "Väri #2" - -#. 6.2->settings-schema.json->wisps-color-3->description -msgid "Color #3" -msgstr "Väri #3" diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/fr.po b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/fr.po index 25a762ee..08fecca2 100644 --- a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/fr.po +++ b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: CinnamonBurnMyWindows@klangman 0.9.2\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-10-29 21:27-0400\n" +"POT-Creation-Date: 2024-12-10 22:31-0500\n" "PO-Revision-Date: \n" "Last-Translator: Claudiux \n" "Language-Team: \n" @@ -47,11 +47,11 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Apparition.js:94 +#. effects/Apparition.js:94 msgid "Apparition" msgstr "Apparition" -#. 6.2/effects/BrokenGlass.js:152 +#. effects/BrokenGlass.js:152 msgid "Broken Glass" msgstr "Broken Glass (Verre brisé)" @@ -59,7 +59,7 @@ msgstr "Broken Glass (Verre brisé)" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Doom.js:101 +#. effects/Doom.js:101 msgid "Doom" msgstr "Doom (Cascade)" @@ -67,7 +67,7 @@ msgstr "Doom (Cascade)" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeA.js:90 +#. effects/EnergizeA.js:90 msgid "Energize A" msgstr "Energize A (Énergie A)" @@ -75,31 +75,35 @@ msgstr "Energize A (Énergie A)" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeB.js:92 +#. effects/EnergizeB.js:92 msgid "Energize B" msgstr "Energize B (Énergie B)" -#. 6.2/effects/Fire.js:114 +#. 6.2->settings-schema.json->fire-random-include->description +#. 6.2->settings-schema.json->effect-selector->options +#. 6.2->settings-schema.json->open-window-effect->options +#. 6.2->settings-schema.json->close-window-effect->options +#. effects/Fire.js:114 msgid "Fire" msgstr "Fire (Feu)" -#. 6.2/effects/Fire.js:168 +#. effects/Fire.js:168 msgid "Default Fire" msgstr "Default Fire (Feu par défaut)" -#. 6.2/effects/Fire.js:178 +#. effects/Fire.js:178 msgid "Hell Fire" msgstr "Hell Fire (Feu d'Enfer)" -#. 6.2/effects/Fire.js:188 +#. effects/Fire.js:188 msgid "Dark and Smutty" msgstr "Dark and Smutty (Sombre et coquin)" -#. 6.2/effects/Fire.js:198 +#. effects/Fire.js:198 msgid "Cold Breeze" msgstr "Cold Breeze (Brise fraîche)" -#. 6.2/effects/Fire.js:208 +#. effects/Fire.js:208 msgid "Santa is Coming" msgstr "Santa is Coming (Le Père Noël arrive)" @@ -107,7 +111,7 @@ msgstr "Santa is Coming (Le Père Noël arrive)" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Focus.js:91 +#. effects/Focus.js:91 msgid "Focus" msgstr "" @@ -115,7 +119,7 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glide.js:93 +#. effects/Glide.js:93 msgid "Glide" msgstr "Glide (Glissement)" @@ -123,7 +127,7 @@ msgstr "Glide (Glissement)" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glitch.js:97 +#. effects/Glitch.js:97 msgid "Glitch" msgstr "Glitch (Déhanchement)" @@ -131,7 +135,7 @@ msgstr "Glitch (Déhanchement)" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Hexagon.js:106 +#. effects/Hexagon.js:106 msgid "Hexagon" msgstr "Hexagon (Hexagone)" @@ -139,15 +143,15 @@ msgstr "Hexagon (Hexagone)" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Incinerate.js:144 +#. effects/Incinerate.js:144 msgid "Incinerate" msgstr "Incinerate (Incinération)" -#. 6.2/effects/Matrix.js:124 +#. effects/Matrix.js:124 msgid "Matrix" msgstr "Matrix (Matrice)" -#. 6.2/effects/PaintBrush.js:114 +#. effects/PaintBrush.js:114 msgid "Paint Brush" msgstr "Brosse à peindre" @@ -155,7 +159,7 @@ msgstr "Brosse à peindre" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWheel.js:88 +#. effects/PixelWheel.js:88 msgid "Pixel Wheel" msgstr "Pixel Wheel (Roue de pixels)" @@ -163,7 +167,7 @@ msgstr "Pixel Wheel (Roue de pixels)" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWipe.js:114 +#. effects/PixelWipe.js:114 msgid "Pixel Wipe" msgstr "Pixel Wipe (Pixel par pixel)" @@ -171,7 +175,7 @@ msgstr "Pixel Wipe (Pixel par pixel)" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Pixelate.js:88 +#. effects/Pixelate.js:88 msgid "Pixelate" msgstr "Pixelate (Pixellisation)" @@ -179,15 +183,15 @@ msgstr "Pixelate (Pixellisation)" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Portal.js:99 +#. effects/Portal.js:99 msgid "Portal" msgstr "Portal (Portail magique)" -#. 6.2/effects/SnapOfDisintegration.js:124 +#. effects/SnapOfDisintegration.js:124 msgid "Snap of Disintegration" msgstr "Vitesse de désintégration" -#. 6.2/effects/TRexAttack.js:121 +#. effects/TRexAttack.js:121 msgid "T-Rex Attack" msgstr "T-Rex Attack (Attaque de T-Rex)" @@ -195,7 +199,7 @@ msgstr "T-Rex Attack (Attaque de T-Rex)" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVEffect.js:90 +#. effects/TVEffect.js:90 msgid "TV Effect" msgstr "TV Effect (Allumage de TV)" @@ -203,7 +207,7 @@ msgstr "TV Effect (Allumage de TV)" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVGlitch.js:99 +#. effects/TVGlitch.js:99 msgid "TV Glitch" msgstr "TV Glitch (Arrêt de TV)" @@ -211,7 +215,7 @@ msgstr "TV Glitch (Arrêt de TV)" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Wisps.js:101 +#. effects/Wisps.js:101 msgid "Wisps" msgstr "Wisps (Sillages de bulles)" @@ -280,7 +284,8 @@ msgid "Application" msgstr "Application" #. 6.2->settings-schema.json->app-rules->tooltip -msgid "A list of application with special effect rules" +#, fuzzy +msgid "A list of applications with special effect rules" msgstr "Liste des applications associées à des effets particuliers" #. 6.2->settings-schema.json->app-rules-button->description @@ -343,6 +348,7 @@ msgstr "Aléatoire" #. 6.2->settings-schema.json->doom-animation-time->description #. 6.2->settings-schema.json->energize-a-animation-time->description #. 6.2->settings-schema.json->energize-b-animation-time->description +#. 6.2->settings-schema.json->fire-animation-time->description #. 6.2->settings-schema.json->focus-animation-time->description #. 6.2->settings-schema.json->glide-animation-time->description #. 6.2->settings-schema.json->glitch-animation-time->description @@ -375,6 +381,7 @@ msgstr "Taille d'un pixel" #. 6.2->settings-schema.json->energize-a-scale->description #. 6.2->settings-schema.json->energize-b-scale->description +#. 6.2->settings-schema.json->fire-scale->description #. 6.2->settings-schema.json->glide-scale->description #. 6.2->settings-schema.json->glitch-scale->description #. 6.2->settings-schema.json->hexagon-scale->description @@ -394,6 +401,43 @@ msgstr "Échelle" msgid "Color" msgstr "Couleur" +#. 6.2->settings-schema.json->fire-movement-speed->description +msgid "Fire Movement Speed" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->description +msgid "Fire 3D Noise" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->tooltip +msgid "Creates a more dynamic fire but requires more GPU power." +msgstr "" + +#. 6.2->settings-schema.json->fire-color-1->description +#. 6.2->settings-schema.json->wisps-color-1->description +msgid "Color #1" +msgstr "Couleur n°1" + +#. 6.2->settings-schema.json->fire-color-2->description +#. 6.2->settings-schema.json->wisps-color-2->description +msgid "Color #2" +msgstr "Couleur n°2" + +#. 6.2->settings-schema.json->fire-color-3->description +#. 6.2->settings-schema.json->wisps-color-3->description +msgid "Color #3" +msgstr "Couleur n°3" + +#. 6.2->settings-schema.json->fire-color-4->description +#, fuzzy +msgid "Color #4" +msgstr "Couleur n°1" + +#. 6.2->settings-schema.json->fire-color-5->description +#, fuzzy +msgid "Color #5" +msgstr "Couleur n°1" + #. 6.2->settings-schema.json->focus-blur-amount->description msgid "Blur Amount" msgstr "" @@ -481,15 +525,3 @@ msgstr "Whirling (Tourbillon)" #. 6.2->settings-schema.json->portal-details->description msgid "Details" msgstr "Détails" - -#. 6.2->settings-schema.json->wisps-color-1->description -msgid "Color #1" -msgstr "Couleur n°1" - -#. 6.2->settings-schema.json->wisps-color-2->description -msgid "Color #2" -msgstr "Couleur n°2" - -#. 6.2->settings-schema.json->wisps-color-3->description -msgid "Color #3" -msgstr "Couleur n°3" diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/hu.po b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/hu.po index ff134d4f..ac6b952a 100644 --- a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/hu.po +++ b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/hu.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: CinnamonBurnMyWindows@klangman 0.9.3\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-10-29 21:27-0400\n" +"POT-Creation-Date: 2024-12-10 22:31-0500\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -46,11 +46,11 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Apparition.js:94 +#. effects/Apparition.js:94 msgid "Apparition" msgstr "Megjelenik" -#. 6.2/effects/BrokenGlass.js:152 +#. effects/BrokenGlass.js:152 msgid "Broken Glass" msgstr "Törött üveg" @@ -58,7 +58,7 @@ msgstr "Törött üveg" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Doom.js:101 +#. effects/Doom.js:101 msgid "Doom" msgstr "Doom" @@ -66,7 +66,7 @@ msgstr "Doom" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeA.js:90 +#. effects/EnergizeA.js:90 msgid "Energize A" msgstr "Energizálja A" @@ -74,31 +74,35 @@ msgstr "Energizálja A" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeB.js:92 +#. effects/EnergizeB.js:92 msgid "Energize B" msgstr "Energizálja B" -#. 6.2/effects/Fire.js:114 +#. 6.2->settings-schema.json->fire-random-include->description +#. 6.2->settings-schema.json->effect-selector->options +#. 6.2->settings-schema.json->open-window-effect->options +#. 6.2->settings-schema.json->close-window-effect->options +#. effects/Fire.js:114 msgid "Fire" msgstr "Tűz" -#. 6.2/effects/Fire.js:168 +#. effects/Fire.js:168 msgid "Default Fire" msgstr "Alapértelmezett Tűz" -#. 6.2/effects/Fire.js:178 +#. effects/Fire.js:178 msgid "Hell Fire" msgstr "Pokol Tüze" -#. 6.2/effects/Fire.js:188 +#. effects/Fire.js:188 msgid "Dark and Smutty" msgstr "Sötét és piszkos" -#. 6.2/effects/Fire.js:198 +#. effects/Fire.js:198 msgid "Cold Breeze" msgstr "Hideg szellő" -#. 6.2/effects/Fire.js:208 +#. effects/Fire.js:208 msgid "Santa is Coming" msgstr "Jön a Mikulás" @@ -106,7 +110,7 @@ msgstr "Jön a Mikulás" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Focus.js:91 +#. effects/Focus.js:91 msgid "Focus" msgstr "Fókusz" @@ -114,7 +118,7 @@ msgstr "Fókusz" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glide.js:93 +#. effects/Glide.js:93 msgid "Glide" msgstr "Siklik" @@ -122,7 +126,7 @@ msgstr "Siklik" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glitch.js:97 +#. effects/Glitch.js:97 msgid "Glitch" msgstr "Glitch" @@ -130,7 +134,7 @@ msgstr "Glitch" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Hexagon.js:106 +#. effects/Hexagon.js:106 msgid "Hexagon" msgstr "Hatszög" @@ -138,15 +142,15 @@ msgstr "Hatszög" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Incinerate.js:144 +#. effects/Incinerate.js:144 msgid "Incinerate" msgstr "Felgyújt" -#. 6.2/effects/Matrix.js:124 +#. effects/Matrix.js:124 msgid "Matrix" msgstr "Mátrix" -#. 6.2/effects/PaintBrush.js:114 +#. effects/PaintBrush.js:114 msgid "Paint Brush" msgstr "Ecset" @@ -154,7 +158,7 @@ msgstr "Ecset" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWheel.js:88 +#. effects/PixelWheel.js:88 msgid "Pixel Wheel" msgstr "Pixeles Kerék" @@ -162,7 +166,7 @@ msgstr "Pixeles Kerék" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWipe.js:114 +#. effects/PixelWipe.js:114 msgid "Pixel Wipe" msgstr "Pixeles Törlés" @@ -170,7 +174,7 @@ msgstr "Pixeles Törlés" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Pixelate.js:88 +#. effects/Pixelate.js:88 msgid "Pixelate" msgstr "Pixelesít" @@ -178,15 +182,15 @@ msgstr "Pixelesít" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Portal.js:99 +#. effects/Portal.js:99 msgid "Portal" msgstr "Portál" -#. 6.2/effects/SnapOfDisintegration.js:124 +#. effects/SnapOfDisintegration.js:124 msgid "Snap of Disintegration" msgstr "Szétesés pillanata" -#. 6.2/effects/TRexAttack.js:121 +#. effects/TRexAttack.js:121 msgid "T-Rex Attack" msgstr "T-Rex támadás" @@ -194,7 +198,7 @@ msgstr "T-Rex támadás" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVEffect.js:90 +#. effects/TVEffect.js:90 msgid "TV Effect" msgstr "TV effektus" @@ -202,7 +206,7 @@ msgstr "TV effektus" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVGlitch.js:99 +#. effects/TVGlitch.js:99 msgid "TV Glitch" msgstr "TV Glitch" @@ -210,7 +214,7 @@ msgstr "TV Glitch" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Wisps.js:101 +#. effects/Wisps.js:101 msgid "Wisps" msgstr "Foszlányok" @@ -279,7 +283,8 @@ msgid "Application" msgstr "Alkalmazás" #. 6.2->settings-schema.json->app-rules->tooltip -msgid "A list of application with special effect rules" +#, fuzzy +msgid "A list of applications with special effect rules" msgstr "A különleges effektussal rendelkező alkalmazások listája" #. 6.2->settings-schema.json->app-rules-button->description @@ -341,6 +346,7 @@ msgstr "Véletlenszerűség" #. 6.2->settings-schema.json->doom-animation-time->description #. 6.2->settings-schema.json->energize-a-animation-time->description #. 6.2->settings-schema.json->energize-b-animation-time->description +#. 6.2->settings-schema.json->fire-animation-time->description #. 6.2->settings-schema.json->focus-animation-time->description #. 6.2->settings-schema.json->glide-animation-time->description #. 6.2->settings-schema.json->glitch-animation-time->description @@ -373,6 +379,7 @@ msgstr "Képpont méret" #. 6.2->settings-schema.json->energize-a-scale->description #. 6.2->settings-schema.json->energize-b-scale->description +#. 6.2->settings-schema.json->fire-scale->description #. 6.2->settings-schema.json->glide-scale->description #. 6.2->settings-schema.json->glitch-scale->description #. 6.2->settings-schema.json->hexagon-scale->description @@ -392,6 +399,43 @@ msgstr "Skála" msgid "Color" msgstr "Szín" +#. 6.2->settings-schema.json->fire-movement-speed->description +msgid "Fire Movement Speed" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->description +msgid "Fire 3D Noise" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->tooltip +msgid "Creates a more dynamic fire but requires more GPU power." +msgstr "" + +#. 6.2->settings-schema.json->fire-color-1->description +#. 6.2->settings-schema.json->wisps-color-1->description +msgid "Color #1" +msgstr "Szín #1" + +#. 6.2->settings-schema.json->fire-color-2->description +#. 6.2->settings-schema.json->wisps-color-2->description +msgid "Color #2" +msgstr "Szín #2" + +#. 6.2->settings-schema.json->fire-color-3->description +#. 6.2->settings-schema.json->wisps-color-3->description +msgid "Color #3" +msgstr "Szín #3" + +#. 6.2->settings-schema.json->fire-color-4->description +#, fuzzy +msgid "Color #4" +msgstr "Szín #1" + +#. 6.2->settings-schema.json->fire-color-5->description +#, fuzzy +msgid "Color #5" +msgstr "Szín #1" + #. 6.2->settings-schema.json->focus-blur-amount->description msgid "Blur Amount" msgstr "Elmosás mennyisége" @@ -481,15 +525,3 @@ msgstr "Örvénylő" #. 6.2->settings-schema.json->portal-details->description msgid "Details" msgstr "Részletek" - -#. 6.2->settings-schema.json->wisps-color-1->description -msgid "Color #1" -msgstr "Szín #1" - -#. 6.2->settings-schema.json->wisps-color-2->description -msgid "Color #2" -msgstr "Szín #2" - -#. 6.2->settings-schema.json->wisps-color-3->description -msgid "Color #3" -msgstr "Szín #3" diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/nl.po b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/nl.po index c8b4ffda..859bc75f 100644 --- a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/nl.po +++ b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/nl.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: CinnamonBurnMyWindows@klangman 0.9.2\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-10-29 21:27-0400\n" +"POT-Creation-Date: 2024-12-10 22:31-0500\n" "PO-Revision-Date: 2024-11-27 11:22+0100\n" "Last-Translator: qadzek\n" "Language-Team: \n" @@ -45,11 +45,11 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Apparition.js:94 +#. effects/Apparition.js:94 msgid "Apparition" msgstr "Verschijning" -#. 6.2/effects/BrokenGlass.js:152 +#. effects/BrokenGlass.js:152 msgid "Broken Glass" msgstr "Gebroken Glas" @@ -57,7 +57,7 @@ msgstr "Gebroken Glas" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Doom.js:101 +#. effects/Doom.js:101 msgid "Doom" msgstr "Doom" @@ -65,7 +65,7 @@ msgstr "Doom" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeA.js:90 +#. effects/EnergizeA.js:90 msgid "Energize A" msgstr "Energize A" @@ -73,31 +73,35 @@ msgstr "Energize A" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeB.js:92 +#. effects/EnergizeB.js:92 msgid "Energize B" msgstr "Energize B" -#. 6.2/effects/Fire.js:114 +#. 6.2->settings-schema.json->fire-random-include->description +#. 6.2->settings-schema.json->effect-selector->options +#. 6.2->settings-schema.json->open-window-effect->options +#. 6.2->settings-schema.json->close-window-effect->options +#. effects/Fire.js:114 msgid "Fire" msgstr "Vuur" -#. 6.2/effects/Fire.js:168 +#. effects/Fire.js:168 msgid "Default Fire" msgstr "Standaard Vuur" -#. 6.2/effects/Fire.js:178 +#. effects/Fire.js:178 msgid "Hell Fire" msgstr "Hel Vuur" -#. 6.2/effects/Fire.js:188 +#. effects/Fire.js:188 msgid "Dark and Smutty" msgstr "Donker en Smerig" -#. 6.2/effects/Fire.js:198 +#. effects/Fire.js:198 msgid "Cold Breeze" msgstr "Koude Bries" -#. 6.2/effects/Fire.js:208 +#. effects/Fire.js:208 msgid "Santa is Coming" msgstr "Kerstman komt eraan" @@ -105,7 +109,7 @@ msgstr "Kerstman komt eraan" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Focus.js:91 +#. effects/Focus.js:91 msgid "Focus" msgstr "Focus" @@ -113,7 +117,7 @@ msgstr "Focus" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glide.js:93 +#. effects/Glide.js:93 msgid "Glide" msgstr "Glijden" @@ -121,7 +125,7 @@ msgstr "Glijden" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glitch.js:97 +#. effects/Glitch.js:97 msgid "Glitch" msgstr "Storing" @@ -129,7 +133,7 @@ msgstr "Storing" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Hexagon.js:106 +#. effects/Hexagon.js:106 msgid "Hexagon" msgstr "Zeshoek" @@ -137,15 +141,15 @@ msgstr "Zeshoek" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Incinerate.js:144 +#. effects/Incinerate.js:144 msgid "Incinerate" msgstr "Verbranden" -#. 6.2/effects/Matrix.js:124 +#. effects/Matrix.js:124 msgid "Matrix" msgstr "Matrix" -#. 6.2/effects/PaintBrush.js:114 +#. effects/PaintBrush.js:114 msgid "Paint Brush" msgstr "Verfkwast" @@ -153,7 +157,7 @@ msgstr "Verfkwast" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWheel.js:88 +#. effects/PixelWheel.js:88 msgid "Pixel Wheel" msgstr "Pixelwiel" @@ -161,7 +165,7 @@ msgstr "Pixelwiel" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWipe.js:114 +#. effects/PixelWipe.js:114 msgid "Pixel Wipe" msgstr "Pixel Veeg" @@ -169,7 +173,7 @@ msgstr "Pixel Veeg" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Pixelate.js:88 +#. effects/Pixelate.js:88 msgid "Pixelate" msgstr "Pixeleren" @@ -177,15 +181,15 @@ msgstr "Pixeleren" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Portal.js:99 +#. effects/Portal.js:99 msgid "Portal" msgstr "Portaal" -#. 6.2/effects/SnapOfDisintegration.js:124 +#. effects/SnapOfDisintegration.js:124 msgid "Snap of Disintegration" msgstr "Knip van Desintegratie" -#. 6.2/effects/TRexAttack.js:121 +#. effects/TRexAttack.js:121 msgid "T-Rex Attack" msgstr "T-Rex Aanval" @@ -193,7 +197,7 @@ msgstr "T-Rex Aanval" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVEffect.js:90 +#. effects/TVEffect.js:90 msgid "TV Effect" msgstr "TV Effect" @@ -201,7 +205,7 @@ msgstr "TV Effect" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVGlitch.js:99 +#. effects/TVGlitch.js:99 msgid "TV Glitch" msgstr "TV Storing" @@ -209,7 +213,7 @@ msgstr "TV Storing" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Wisps.js:101 +#. effects/Wisps.js:101 msgid "Wisps" msgstr "Slierten" @@ -278,7 +282,8 @@ msgid "Application" msgstr "Toepassing" #. 6.2->settings-schema.json->app-rules->tooltip -msgid "A list of application with special effect rules" +#, fuzzy +msgid "A list of applications with special effect rules" msgstr "Een lijst van toepassingen met speciale effectregels" #. 6.2->settings-schema.json->app-rules-button->description @@ -340,6 +345,7 @@ msgstr "Willekeurigheid" #. 6.2->settings-schema.json->doom-animation-time->description #. 6.2->settings-schema.json->energize-a-animation-time->description #. 6.2->settings-schema.json->energize-b-animation-time->description +#. 6.2->settings-schema.json->fire-animation-time->description #. 6.2->settings-schema.json->focus-animation-time->description #. 6.2->settings-schema.json->glide-animation-time->description #. 6.2->settings-schema.json->glitch-animation-time->description @@ -372,6 +378,7 @@ msgstr "Pixel Grootte" #. 6.2->settings-schema.json->energize-a-scale->description #. 6.2->settings-schema.json->energize-b-scale->description +#. 6.2->settings-schema.json->fire-scale->description #. 6.2->settings-schema.json->glide-scale->description #. 6.2->settings-schema.json->glitch-scale->description #. 6.2->settings-schema.json->hexagon-scale->description @@ -391,6 +398,43 @@ msgstr "Schaal" msgid "Color" msgstr "Kleur" +#. 6.2->settings-schema.json->fire-movement-speed->description +msgid "Fire Movement Speed" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->description +msgid "Fire 3D Noise" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->tooltip +msgid "Creates a more dynamic fire but requires more GPU power." +msgstr "" + +#. 6.2->settings-schema.json->fire-color-1->description +#. 6.2->settings-schema.json->wisps-color-1->description +msgid "Color #1" +msgstr "Kleur #1" + +#. 6.2->settings-schema.json->fire-color-2->description +#. 6.2->settings-schema.json->wisps-color-2->description +msgid "Color #2" +msgstr "Kleur #2" + +#. 6.2->settings-schema.json->fire-color-3->description +#. 6.2->settings-schema.json->wisps-color-3->description +msgid "Color #3" +msgstr "Kleur #3" + +#. 6.2->settings-schema.json->fire-color-4->description +#, fuzzy +msgid "Color #4" +msgstr "Kleur #1" + +#. 6.2->settings-schema.json->fire-color-5->description +#, fuzzy +msgid "Color #5" +msgstr "Kleur #1" + #. 6.2->settings-schema.json->focus-blur-amount->description msgid "Blur Amount" msgstr "Vervaginghoeveelheid" @@ -480,15 +524,3 @@ msgstr "Draaien" #. 6.2->settings-schema.json->portal-details->description msgid "Details" msgstr "Details" - -#. 6.2->settings-schema.json->wisps-color-1->description -msgid "Color #1" -msgstr "Kleur #1" - -#. 6.2->settings-schema.json->wisps-color-2->description -msgid "Color #2" -msgstr "Kleur #2" - -#. 6.2->settings-schema.json->wisps-color-3->description -msgid "Color #3" -msgstr "Kleur #3" diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/pt.po b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/pt.po index de56670e..f922f274 100644 --- a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/pt.po +++ b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/po/pt.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: CinnamonBurnMyWindows@klangman 0.9.3\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-10-29 21:27-0400\n" +"POT-Creation-Date: 2024-12-10 22:31-0500\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -47,11 +47,11 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Apparition.js:94 +#. effects/Apparition.js:94 msgid "Apparition" msgstr "Aparição" -#. 6.2/effects/BrokenGlass.js:152 +#. effects/BrokenGlass.js:152 msgid "Broken Glass" msgstr "Vidro Quebrado" @@ -59,7 +59,7 @@ msgstr "Vidro Quebrado" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Doom.js:101 +#. effects/Doom.js:101 msgid "Doom" msgstr "Ruína" @@ -67,7 +67,7 @@ msgstr "Ruína" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeA.js:90 +#. effects/EnergizeA.js:90 msgid "Energize A" msgstr "Energizar A" @@ -75,31 +75,35 @@ msgstr "Energizar A" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/EnergizeB.js:92 +#. effects/EnergizeB.js:92 msgid "Energize B" msgstr "Energizar B" -#. 6.2/effects/Fire.js:114 +#. 6.2->settings-schema.json->fire-random-include->description +#. 6.2->settings-schema.json->effect-selector->options +#. 6.2->settings-schema.json->open-window-effect->options +#. 6.2->settings-schema.json->close-window-effect->options +#. effects/Fire.js:114 msgid "Fire" msgstr "Fogo" -#. 6.2/effects/Fire.js:168 +#. effects/Fire.js:168 msgid "Default Fire" msgstr "Fogo Padrão" -#. 6.2/effects/Fire.js:178 +#. effects/Fire.js:178 msgid "Hell Fire" msgstr "Fogo do Inferno" -#. 6.2/effects/Fire.js:188 +#. effects/Fire.js:188 msgid "Dark and Smutty" msgstr "Escuro e Sujo" -#. 6.2/effects/Fire.js:198 +#. effects/Fire.js:198 msgid "Cold Breeze" msgstr "Briza Fria" -#. 6.2/effects/Fire.js:208 +#. effects/Fire.js:208 msgid "Santa is Coming" msgstr "O Pai Natal está Vindo" @@ -107,7 +111,7 @@ msgstr "O Pai Natal está Vindo" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Focus.js:91 +#. effects/Focus.js:91 msgid "Focus" msgstr "" @@ -115,7 +119,7 @@ msgstr "" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glide.js:93 +#. effects/Glide.js:93 msgid "Glide" msgstr "Deslizar" @@ -123,7 +127,7 @@ msgstr "Deslizar" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Glitch.js:97 +#. effects/Glitch.js:97 msgid "Glitch" msgstr "Falha Gráfica" @@ -131,7 +135,7 @@ msgstr "Falha Gráfica" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Hexagon.js:106 +#. effects/Hexagon.js:106 msgid "Hexagon" msgstr "Hexágono" @@ -139,15 +143,15 @@ msgstr "Hexágono" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Incinerate.js:144 +#. effects/Incinerate.js:144 msgid "Incinerate" msgstr "Incenerar" -#. 6.2/effects/Matrix.js:124 +#. effects/Matrix.js:124 msgid "Matrix" msgstr "Matriz" -#. 6.2/effects/PaintBrush.js:114 +#. effects/PaintBrush.js:114 msgid "Paint Brush" msgstr "Pincel" @@ -155,7 +159,7 @@ msgstr "Pincel" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWheel.js:88 +#. effects/PixelWheel.js:88 msgid "Pixel Wheel" msgstr "Roda de Pixeis" @@ -163,7 +167,7 @@ msgstr "Roda de Pixeis" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/PixelWipe.js:114 +#. effects/PixelWipe.js:114 msgid "Pixel Wipe" msgstr "Limpeza de Pixeis" @@ -171,7 +175,7 @@ msgstr "Limpeza de Pixeis" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Pixelate.js:88 +#. effects/Pixelate.js:88 msgid "Pixelate" msgstr "Pixelizar" @@ -179,15 +183,15 @@ msgstr "Pixelizar" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Portal.js:99 +#. effects/Portal.js:99 msgid "Portal" msgstr "Portal" -#. 6.2/effects/SnapOfDisintegration.js:124 +#. effects/SnapOfDisintegration.js:124 msgid "Snap of Disintegration" msgstr "Estalo de Desintegração" -#. 6.2/effects/TRexAttack.js:121 +#. effects/TRexAttack.js:121 msgid "T-Rex Attack" msgstr "Ataque do T-Rex" @@ -195,7 +199,7 @@ msgstr "Ataque do T-Rex" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVEffect.js:90 +#. effects/TVEffect.js:90 msgid "TV Effect" msgstr "Efeito de TV" @@ -203,7 +207,7 @@ msgstr "Efeito de TV" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/TVGlitch.js:99 +#. effects/TVGlitch.js:99 msgid "TV Glitch" msgstr "Falha Gráfica de TV" @@ -211,7 +215,7 @@ msgstr "Falha Gráfica de TV" #. 6.2->settings-schema.json->effect-selector->options #. 6.2->settings-schema.json->open-window-effect->options #. 6.2->settings-schema.json->close-window-effect->options -#. 6.2/effects/Wisps.js:101 +#. effects/Wisps.js:101 msgid "Wisps" msgstr "Fogos-Fátuos" @@ -280,7 +284,8 @@ msgid "Application" msgstr "Aplicação" #. 6.2->settings-schema.json->app-rules->tooltip -msgid "A list of application with special effect rules" +#, fuzzy +msgid "A list of applications with special effect rules" msgstr "Uma lista de aplicações com regras de efeitos especiais" #. 6.2->settings-schema.json->app-rules-button->description @@ -341,6 +346,7 @@ msgstr "Aleatoriedade" #. 6.2->settings-schema.json->doom-animation-time->description #. 6.2->settings-schema.json->energize-a-animation-time->description #. 6.2->settings-schema.json->energize-b-animation-time->description +#. 6.2->settings-schema.json->fire-animation-time->description #. 6.2->settings-schema.json->focus-animation-time->description #. 6.2->settings-schema.json->glide-animation-time->description #. 6.2->settings-schema.json->glitch-animation-time->description @@ -373,6 +379,7 @@ msgstr "Tamanho do Pixel" #. 6.2->settings-schema.json->energize-a-scale->description #. 6.2->settings-schema.json->energize-b-scale->description +#. 6.2->settings-schema.json->fire-scale->description #. 6.2->settings-schema.json->glide-scale->description #. 6.2->settings-schema.json->glitch-scale->description #. 6.2->settings-schema.json->hexagon-scale->description @@ -392,6 +399,43 @@ msgstr "Escala" msgid "Color" msgstr "Cor" +#. 6.2->settings-schema.json->fire-movement-speed->description +msgid "Fire Movement Speed" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->description +msgid "Fire 3D Noise" +msgstr "" + +#. 6.2->settings-schema.json->fire-3d-noise->tooltip +msgid "Creates a more dynamic fire but requires more GPU power." +msgstr "" + +#. 6.2->settings-schema.json->fire-color-1->description +#. 6.2->settings-schema.json->wisps-color-1->description +msgid "Color #1" +msgstr "Cor #1" + +#. 6.2->settings-schema.json->fire-color-2->description +#. 6.2->settings-schema.json->wisps-color-2->description +msgid "Color #2" +msgstr "Cor #2" + +#. 6.2->settings-schema.json->fire-color-3->description +#. 6.2->settings-schema.json->wisps-color-3->description +msgid "Color #3" +msgstr "Cor #3" + +#. 6.2->settings-schema.json->fire-color-4->description +#, fuzzy +msgid "Color #4" +msgstr "Cor #1" + +#. 6.2->settings-schema.json->fire-color-5->description +#, fuzzy +msgid "Color #5" +msgstr "Cor #1" + #. 6.2->settings-schema.json->focus-blur-amount->description msgid "Blur Amount" msgstr "" @@ -479,15 +523,3 @@ msgstr "Girando" #. 6.2->settings-schema.json->portal-details->description msgid "Details" msgstr "Detalhes" - -#. 6.2->settings-schema.json->wisps-color-1->description -msgid "Color #1" -msgstr "Cor #1" - -#. 6.2->settings-schema.json->wisps-color-2->description -msgid "Color #2" -msgstr "Cor #2" - -#. 6.2->settings-schema.json->wisps-color-3->description -msgid "Color #3" -msgstr "Cor #3" diff --git a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/resources/shaders/incinerate.frag b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/resources/shaders/incinerate.frag index a3bca191..276b64c7 100644 --- a/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/resources/shaders/incinerate.frag +++ b/CinnamonBurnMyWindows@klangman/files/CinnamonBurnMyWindows@klangman/resources/shaders/incinerate.frag @@ -78,7 +78,7 @@ void main() { // Now we compute a 2D gradient in [0..1] which covers the entire window. The dark // regions will be burned first, the bright regions in the end. We mix a radial gradient // with some noise. The center of the radial gradient is positioned at uStartPos. - float circle = length(iTexCoord - uStartPos); + float circle = length((iTexCoord - uStartPos) * (uSize.xy / max(uSize.x, uSize.y))); vec2 uv = iTexCoord / uScale * uSize / 1.5; float smokeNoise =