diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/README b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/README index 14871bb0..7ff8f2a8 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/README +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/README @@ -24,6 +24,9 @@ Known issues Changelog ========= +Version 2.2 +------------ +Added ability to use the DesktopCube or Flipper extensions to animate the workspace switch Version 2.1 ------------ Added fix for cinnamon 2.6 removing some api's diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/extension.js b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/extension.js index bdaeb96d..cd31fe93 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/extension.js +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/extension.js @@ -16,6 +16,7 @@ const Settings = imports.ui.settings; const St = imports.gi.St; const Tweener = imports.ui.tweener; const Config = imports.misc.config +const ExtensionSystem = imports.ui.extensionSystem; let desktopscroller = null; @@ -42,6 +43,7 @@ DesktopScroller.prototype = { this.settings.bindProperty(Settings.BindingDirection.IN, "showDirectionArrow", "showDirectionArrow", this.onSettingsChanged, null); this.settings.bindProperty(Settings.BindingDirection.IN, "activationAreaWidth", "activationAreaWidth", this.onSettingsChanged, null); this.settings.bindProperty(Settings.BindingDirection.IN, "showActivationAreas", "showActivationAreas", this.onSettingsChanged, null); + this.settings.bindProperty(Settings.BindingDirection.IN, "useSwitcherExtension", "useSwitcherExtension", this.onSettingsChanged, null); this.onSettingsChanged(); }, @@ -77,6 +79,7 @@ DesktopScroller.prototype = { onSettingsChanged: function() { + this.workspaceSwitcherExt = null; this.updateSettings(); }, @@ -113,7 +116,24 @@ DesktopScroller.prototype = { var direction = scrollDirection == 1 ? Meta.MotionDirection.RIGHT : Meta.MotionDirection.LEFT; this.switch_workspace(direction); }, - + + _updateWorkspaceSwitcherExt: function() { + // Check if one of the workspace switcher extensions are installed or if the state has changed since we last checked + if (ExtensionSystem.runningExtensions.indexOf('DesktopCube@yare') > -1 ) { + if (!this.workspaceSwitcherExt || this.workspaceSwitcherExt !== ExtensionSystem.extensions['DesktopCube@yare']['5.4']['extension']) { + this.workspaceSwitcherExt = ExtensionSystem.extensions['DesktopCube@yare']['5.4']['extension']; + } + } else if (ExtensionSystem.runningExtensions.indexOf('Flipper@connerdev') > -1) { + if (!this.workspaceSwitcherExt || this.workspaceSwitcherExt !== ExtensionSystem.extensions['Flipper@connerdev']['5.4']['extension']) { + this.workspaceSwitcherExt = ExtensionSystem.extensions['Flipper@connerdev']['5.4']['extension']; + } + } + // Make sure the switcher extension has the required API to allow us to change to any arbitrary workspace + if (this.workspaceSwitcherExt && typeof this.workspaceSwitcherExt.ExtSwitchToWorkspace !== "function") { + this.workspaceSwitcherExt = null; + } + }, + switch_workspace: function(direction) { let active = global.screen.get_active_workspace(); @@ -123,8 +143,15 @@ DesktopScroller.prototype = { { if(this.showDirectionArrow){ this.showDirection(direction); - } - neighbor.activate(global.get_current_time()); + } + if (this.useSwitcherExtension) { + this._updateWorkspaceSwitcherExt() + } + if (this.workspaceSwitcherExt) { + this.workspaceSwitcherExt.ExtSwitchToWorkspace(neighbor); + } else { + neighbor.activate(global.get_current_time()); + } } }, diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/metadata.json b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/metadata.json index d6fa8461..f7bd5981 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/metadata.json +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/metadata.json @@ -20,7 +20,7 @@ "3.6" ], "uuid": "desktop-scroller@ccadeptic23", - "version": 2.1, + "version": 2.2, "url": "http://cinnamon-spices.linuxmint.com/extensions", "switchPrevIcon": "my-go-prev.svg", "switchNextIcon": "my-go-next.svg" diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/ca.po b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/ca.po index 098d95dd..b6e6df6a 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/ca.po +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/ca.po @@ -1,4 +1,4 @@ -# SOME DESCRIPTIVE TITLE. +# DESKTOP SCROLLER # This file is put in the public domain. # Odyssey , 2024. # @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: desktop-scroller@ccadeptic23 2.1\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-06-24 22:42-0400\n" +"POT-Creation-Date: 2024-12-22 12:37-0500\n" "PO-Revision-Date: 2024-07-25 17:30+0200\n" "Last-Translator: Odyssey \n" "Language-Team: \n" @@ -59,5 +59,16 @@ msgstr "Mostrar àrees d'activació" msgid "" "Check this to show the areas over which scrolling will switch the desktop." msgstr "" -"Marqueu aquesta opció per mostrar les àrees sobre les quals el " -"desplaçament provocarà el canvi d'escriptori." +"Marqueu aquesta opció per mostrar les àrees sobre les quals el desplaçament " +"provocarà el canvi d'escriptori." + +#. settings-schema.json->useSwitcherExtension->description +msgid "Use a workspace switcher extension if installed" +msgstr "" + +#. settings-schema.json->useSwitcherExtension->tooltip +msgid "" +"Allow a Cinnamon extensions to animate the workspace change. This option has " +"no effect unless a compatible extension is installed. Requires Desktop Cube " +"2.0.2 or Flipper 2.0.0 and Cinnamon 5.4 or better." +msgstr "" diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/da.po b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/da.po index 175d7abe..0b746a23 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/da.po +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/da.po @@ -1,14 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# DESKTOP SCROLLER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# ccadeptic23, 2017 # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-06-24 22:42-0400\n" +"POT-Creation-Date: 2024-12-22 12:37-0500\n" "PO-Revision-Date: 2017-06-11 19:27+0200\n" "Last-Translator: Alan Mortensen \n" "Language-Team: \n" @@ -59,3 +59,14 @@ msgid "" msgstr "" "Aktivér denne for at vise områderne, hvor rulning vil skifte mellem " "arbejdsområder." + +#. settings-schema.json->useSwitcherExtension->description +msgid "Use a workspace switcher extension if installed" +msgstr "" + +#. settings-schema.json->useSwitcherExtension->tooltip +msgid "" +"Allow a Cinnamon extensions to animate the workspace change. This option has " +"no effect unless a compatible extension is installed. Requires Desktop Cube " +"2.0.2 or Flipper 2.0.0 and Cinnamon 5.4 or better." +msgstr "" diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/de.po b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/de.po index 78cf0045..5fd2929c 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/de.po +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/de.po @@ -1,14 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# DESKTOP SCROLLER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# ccadeptic23, 2017 # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-06-24 22:42-0400\n" +"POT-Creation-Date: 2024-12-22 12:37-0500\n" "PO-Revision-Date: 2021-03-02 20:43+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -61,3 +61,14 @@ msgid "" msgstr "" "Aktivieren, um die Bereiche anzuzeigen, über die beim Scrollen die " "Arbeitsfläche gewechselt wird." + +#. settings-schema.json->useSwitcherExtension->description +msgid "Use a workspace switcher extension if installed" +msgstr "" + +#. settings-schema.json->useSwitcherExtension->tooltip +msgid "" +"Allow a Cinnamon extensions to animate the workspace change. This option has " +"no effect unless a compatible extension is installed. Requires Desktop Cube " +"2.0.2 or Flipper 2.0.0 and Cinnamon 5.4 or better." +msgstr "" diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/desktop-scroller@ccadeptic23.pot b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/desktop-scroller@ccadeptic23.pot index ebdbde8e..53d22e9e 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/desktop-scroller@ccadeptic23.pot +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/desktop-scroller@ccadeptic23.pot @@ -1,17 +1,17 @@ -# SOME DESCRIPTIVE TITLE. +# DESKTOP SCROLLER # This file is put in the public domain. -# FIRST AUTHOR , YEAR. +# ccadeptic23, 2017 # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: desktop-scroller@ccadeptic23 2.1\n" +"Project-Id-Version: desktop-scroller@ccadeptic23 2.2\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-06-24 22:42-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2024-12-22 12:37-0500\n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,3 +54,14 @@ msgstr "" msgid "" "Check this to show the areas over which scrolling will switch the desktop." msgstr "" + +#. settings-schema.json->useSwitcherExtension->description +msgid "Use a workspace switcher extension if installed" +msgstr "" + +#. settings-schema.json->useSwitcherExtension->tooltip +msgid "" +"Allow a Cinnamon extensions to animate the workspace change. This option has " +"no effect unless a compatible extension is installed. Requires Desktop Cube " +"2.0.2 or Flipper 2.0.0 and Cinnamon 5.4 or better." +msgstr "" diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/es.po b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/es.po index d7ec2b57..be68a427 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/es.po +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/es.po @@ -1,14 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# DESKTOP SCROLLER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# ccadeptic23, 2017 # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-06-24 22:42-0400\n" +"POT-Creation-Date: 2024-12-22 12:37-0500\n" "PO-Revision-Date: 2023-11-03 11:49-0300\n" "Last-Translator: \n" "Language-Team: \n" @@ -61,3 +61,14 @@ msgid "" msgstr "" "Marque esta opción para mostrar las áreas sobre las que el desplazamiento " "cambiará el escritorio." + +#. settings-schema.json->useSwitcherExtension->description +msgid "Use a workspace switcher extension if installed" +msgstr "" + +#. settings-schema.json->useSwitcherExtension->tooltip +msgid "" +"Allow a Cinnamon extensions to animate the workspace change. This option has " +"no effect unless a compatible extension is installed. Requires Desktop Cube " +"2.0.2 or Flipper 2.0.0 and Cinnamon 5.4 or better." +msgstr "" diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/eu.po b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/eu.po index 46c3d4bc..d8ca0f91 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/eu.po +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/eu.po @@ -1,14 +1,15 @@ -# SOME DESCRIPTIVE TITLE. +# DESKTOP SCROLLER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# ccadeptic23, 2017 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-03-02 19:29+0000\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" +"extensions/issues\n" +"POT-Creation-Date: 2024-12-22 12:37-0500\n" "PO-Revision-Date: 2024-05-30 9:50+1\n" "Last-Translator: Muxutruk \n" "Language-Team: Basque \n" @@ -56,4 +57,16 @@ msgstr "Erakutsi aktibazio-eremuak" msgid "" "Check this to show the areas over which scrolling will switch the desktop." msgstr "" -"Aukera hau ezarri, ikusteko zer eremutan korritu behar den idazmahaia aldatzeko." +"Aukera hau ezarri, ikusteko zer eremutan korritu behar den idazmahaia " +"aldatzeko." + +#. settings-schema.json->useSwitcherExtension->description +msgid "Use a workspace switcher extension if installed" +msgstr "" + +#. settings-schema.json->useSwitcherExtension->tooltip +msgid "" +"Allow a Cinnamon extensions to animate the workspace change. This option has " +"no effect unless a compatible extension is installed. Requires Desktop Cube " +"2.0.2 or Flipper 2.0.0 and Cinnamon 5.4 or better." +msgstr "" diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/fi.po b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/fi.po index 6bc47d91..ff869d26 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/fi.po +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/fi.po @@ -1,22 +1,22 @@ -# SOME DESCRIPTIVE TITLE. +# DESKTOP SCROLLER # This file is put in the public domain. -# FIRST AUTHOR , YEAR. +# ccadeptic23, 2017 # msgid "" msgstr "" "Project-Id-Version: desktop-scroller@ccadeptic23 2.1\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-06-24 22:42-0400\n" +"POT-Creation-Date: 2024-12-22 12:37-0500\n" "PO-Revision-Date: 2024-11-04 15:54+0200\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" #. metadata.json->name msgid "Desktop Scroller" @@ -26,8 +26,8 @@ msgstr "Desktop Scroller" msgid "" "Switch between desktops by scrolling at left and right edges of the screen." msgstr "" -"Vaihda työtilojen välillä vierittämällä hiiren rullaa näytön vasemmassa " -"tai oikeassa reunassa." +"Vaihda työtilojen välillä vierittämällä hiiren rullaa näytön vasemmassa tai " +"oikeassa reunassa." #. settings-schema.json->showDirectionArrow->description msgid "Show direction arrow" @@ -59,3 +59,14 @@ msgid "" msgstr "" "Valitse, jos haluat nähdä ohuen viivan, joiden alueella voit vierittää " "työtiloja." + +#. settings-schema.json->useSwitcherExtension->description +msgid "Use a workspace switcher extension if installed" +msgstr "" + +#. settings-schema.json->useSwitcherExtension->tooltip +msgid "" +"Allow a Cinnamon extensions to animate the workspace change. This option has " +"no effect unless a compatible extension is installed. Requires Desktop Cube " +"2.0.2 or Flipper 2.0.0 and Cinnamon 5.4 or better." +msgstr "" diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/hu.po b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/hu.po index 0d102451..971619d5 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/hu.po +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/hu.po @@ -1,14 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# DESKTOP SCROLLER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# ccadeptic23, 2017 # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-06-24 22:42-0400\n" +"POT-Creation-Date: 2024-12-22 12:37-0500\n" "PO-Revision-Date: 2021-04-11 19:57+0200\n" "Last-Translator: Balazs Bosak \n" "Language-Team: \n" @@ -59,3 +59,14 @@ msgid "" msgstr "" "Jelölje be ezt, azon képernyőterületek megjelenítésére, amelyeken görgetve " "válthat a munkaterületek között." + +#. settings-schema.json->useSwitcherExtension->description +msgid "Use a workspace switcher extension if installed" +msgstr "" + +#. settings-schema.json->useSwitcherExtension->tooltip +msgid "" +"Allow a Cinnamon extensions to animate the workspace change. This option has " +"no effect unless a compatible extension is installed. Requires Desktop Cube " +"2.0.2 or Flipper 2.0.0 and Cinnamon 5.4 or better." +msgstr "" diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/it.po b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/it.po index a1a59360..d093b598 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/it.po +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/it.po @@ -1,14 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# DESKTOP SCROLLER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# ccadeptic23, 2017 # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-06-24 22:42-0400\n" +"POT-Creation-Date: 2024-12-22 12:37-0500\n" "PO-Revision-Date: 2022-06-03 10:57+0200\n" "Last-Translator: Dragone2 \n" "Language-Team: \n" @@ -62,3 +62,14 @@ msgid "" msgstr "" "Selezionare questa opzione per mostrare le aree su cui lo scorrimento " "commuterà il desktop." + +#. settings-schema.json->useSwitcherExtension->description +msgid "Use a workspace switcher extension if installed" +msgstr "" + +#. settings-schema.json->useSwitcherExtension->tooltip +msgid "" +"Allow a Cinnamon extensions to animate the workspace change. This option has " +"no effect unless a compatible extension is installed. Requires Desktop Cube " +"2.0.2 or Flipper 2.0.0 and Cinnamon 5.4 or better." +msgstr "" diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/nl.po b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/nl.po index 45579806..2df40eae 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/nl.po +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/nl.po @@ -1,14 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# DESKTOP SCROLLER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# ccadeptic23, 2017 # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-06-24 22:42-0400\n" +"POT-Creation-Date: 2024-12-22 12:37-0500\n" "PO-Revision-Date: 2024-04-17 09:20+0200\n" "Last-Translator: qadzek\n" "Language-Team: \n" @@ -58,3 +58,14 @@ msgid "" msgstr "" "Vink dit aan om de gebieden te tonen waar erover scrollen het bureaublad zal " "wisselen." + +#. settings-schema.json->useSwitcherExtension->description +msgid "Use a workspace switcher extension if installed" +msgstr "" + +#. settings-schema.json->useSwitcherExtension->tooltip +msgid "" +"Allow a Cinnamon extensions to animate the workspace change. This option has " +"no effect unless a compatible extension is installed. Requires Desktop Cube " +"2.0.2 or Flipper 2.0.0 and Cinnamon 5.4 or better." +msgstr "" diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/pt_BR.po b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/pt_BR.po index cf9ec517..ff8c5f93 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/pt_BR.po +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/pt_BR.po @@ -1,4 +1,4 @@ -# SOME DESCRIPTIVE TITLE. +# DESKTOP SCROLLER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Marcelo Aof, 2021. @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-06-24 22:42-0400\n" +"POT-Creation-Date: 2024-12-22 12:37-0500\n" "PO-Revision-Date: 2021-09-26 21:23-0300\n" "Last-Translator: Marcelo Aof\n" "Language-Team: \n" @@ -61,3 +61,14 @@ msgid "" msgstr "" "Marque essa opção para exibir, nas bordas da tela, áreas nas quais a rolagem " "do mouse mudará a área de trabalho atual." + +#. settings-schema.json->useSwitcherExtension->description +msgid "Use a workspace switcher extension if installed" +msgstr "" + +#. settings-schema.json->useSwitcherExtension->tooltip +msgid "" +"Allow a Cinnamon extensions to animate the workspace change. This option has " +"no effect unless a compatible extension is installed. Requires Desktop Cube " +"2.0.2 or Flipper 2.0.0 and Cinnamon 5.4 or better." +msgstr "" diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/ro.po b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/ro.po index 01b81834..151c4b41 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/ro.po +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/ro.po @@ -1,14 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# DESKTOP SCROLLER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# ccadeptic23, 2017 # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-06-24 22:42-0400\n" +"POT-Creation-Date: 2024-12-22 12:37-0500\n" "PO-Revision-Date: 2022-08-06 01:55+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -63,3 +63,14 @@ msgid "" msgstr "" "Bifează această opțiune pentru a afișa zonele pe care derularea va schimba " "desktop-ul." + +#. settings-schema.json->useSwitcherExtension->description +msgid "Use a workspace switcher extension if installed" +msgstr "" + +#. settings-schema.json->useSwitcherExtension->tooltip +msgid "" +"Allow a Cinnamon extensions to animate the workspace change. This option has " +"no effect unless a compatible extension is installed. Requires Desktop Cube " +"2.0.2 or Flipper 2.0.0 and Cinnamon 5.4 or better." +msgstr "" diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/ru.po b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/ru.po index f8b26fdf..13c0d749 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/ru.po +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-06-24 22:42-0400\n" +"POT-Creation-Date: 2024-12-22 12:37-0500\n" "PO-Revision-Date: \n" "Last-Translator: blogdron\n" "Language-Team: \n" @@ -58,3 +58,14 @@ msgid "" msgstr "" "Используйте чтобы явно видеть в каких местах у края экрана будет срабатывать " "переключение рабочих столов." + +#. settings-schema.json->useSwitcherExtension->description +msgid "Use a workspace switcher extension if installed" +msgstr "" + +#. settings-schema.json->useSwitcherExtension->tooltip +msgid "" +"Allow a Cinnamon extensions to animate the workspace change. This option has " +"no effect unless a compatible extension is installed. Requires Desktop Cube " +"2.0.2 or Flipper 2.0.0 and Cinnamon 5.4 or better." +msgstr "" diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/zh_CN.po b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/zh_CN.po index b7151fbf..f51ffb41 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/zh_CN.po +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/po/zh_CN.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-" "extensions/issues\n" -"POT-Creation-Date: 2024-06-24 22:42-0400\n" +"POT-Creation-Date: 2024-12-22 12:37-0500\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -52,3 +52,14 @@ msgstr "显示激活区域" msgid "" "Check this to show the areas over which scrolling will switch the desktop." msgstr "选中此项显示滚动将会切换桌面的区域。" + +#. settings-schema.json->useSwitcherExtension->description +msgid "Use a workspace switcher extension if installed" +msgstr "" + +#. settings-schema.json->useSwitcherExtension->tooltip +msgid "" +"Allow a Cinnamon extensions to animate the workspace change. This option has " +"no effect unless a compatible extension is installed. Requires Desktop Cube " +"2.0.2 or Flipper 2.0.0 and Cinnamon 5.4 or better." +msgstr "" diff --git a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/settings-schema.json b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/settings-schema.json index 6a6c0117..579085a3 100644 --- a/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/settings-schema.json +++ b/desktop-scroller@ccadeptic23/files/desktop-scroller@ccadeptic23/settings-schema.json @@ -23,5 +23,12 @@ "default" : false, "description": "Show activation areas", "tooltip": "Check this to show the areas over which scrolling will switch the desktop." + }, + "useSwitcherExtension" : + { + "type" : "checkbox", + "default" : true, + "description": "Use a workspace switcher extension if installed", + "tooltip": "Allow a Cinnamon extensions to animate the workspace change. This option has no effect unless a compatible extension is installed. Requires Desktop Cube 2.0.2 or Flipper 2.0.0 and Cinnamon 5.4 or better." } }