├── Screenshots ├── Image_01.png ├── Image_02.png ├── Image_03.png ├── Image_04.png ├── Image_05.png ├── Image_06.png ├── Image_07.png ├── Image_08.png ├── Image_09.png └── Image_10.png ├── animation-tweaks@Selenium-H ├── eicon.png ├── prefs.js ├── metadata.json ├── profiles │ └── animationTweaksExtensionProfiles.js ├── effectParameters.txt └── LICENSE ├── locale ├── readme.md ├── ru.po └── animation-tweaks.pot ├── update_pot.sh ├── INSTALL.sh ├── README.md └── LICENSE /Screenshots/Image_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Animation-Tweaks/HEAD/Screenshots/Image_01.png -------------------------------------------------------------------------------- /Screenshots/Image_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Animation-Tweaks/HEAD/Screenshots/Image_02.png -------------------------------------------------------------------------------- /Screenshots/Image_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Animation-Tweaks/HEAD/Screenshots/Image_03.png -------------------------------------------------------------------------------- /Screenshots/Image_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Animation-Tweaks/HEAD/Screenshots/Image_04.png -------------------------------------------------------------------------------- /Screenshots/Image_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Animation-Tweaks/HEAD/Screenshots/Image_05.png -------------------------------------------------------------------------------- /Screenshots/Image_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Animation-Tweaks/HEAD/Screenshots/Image_06.png -------------------------------------------------------------------------------- /Screenshots/Image_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Animation-Tweaks/HEAD/Screenshots/Image_07.png -------------------------------------------------------------------------------- /Screenshots/Image_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Animation-Tweaks/HEAD/Screenshots/Image_08.png -------------------------------------------------------------------------------- /Screenshots/Image_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Animation-Tweaks/HEAD/Screenshots/Image_09.png -------------------------------------------------------------------------------- /Screenshots/Image_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Animation-Tweaks/HEAD/Screenshots/Image_10.png -------------------------------------------------------------------------------- /animation-tweaks@Selenium-H/eicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Animation-Tweaks/HEAD/animation-tweaks@Selenium-H/eicon.png -------------------------------------------------------------------------------- /locale/readme.md: -------------------------------------------------------------------------------- 1 | # Localization 2 | This catalog contain localization files. 3 | 4 | ## Updating POT file 5 | File `animation-tweaks.pot` contain all strings from code to be translated.
6 | This file not updated automatically when code is changed.
7 | To update it and get relevant strings you can use `update_pot.sh`. 8 | 9 | ## How to add translation 10 | Copy `animation-tweaks.pot` file as `.po` file (for example: `ru.po`).
11 | Then translate it using your favorite editor (GEdit, POEdit, GTranslator, ...). 12 | 13 | ## How to update existing translation 14 | First update POT file to have relevant strings.
15 | Then run this command to update translation (for example: ru.po): 16 | 17 | msgmerge -U ru.po animation-tweaks.pot 18 | -------------------------------------------------------------------------------- /animation-tweaks@Selenium-H/prefs.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Version 13.00 4 | ============= 5 | 6 | Effect Format [ | S Name C PPX PPY CX CY DL T OP SX SY PX PY TZ RX RY RZ TRN ] 7 | 8 | Read the effectParameters.txt File for details. 9 | 10 | */ 11 | 12 | const Extension = imports.misc.extensionUtils.getCurrentExtension(); 13 | const GLib = imports.gi.GLib; 14 | const GNOME_VERSION = imports.misc.config.PACKAGE_VERSION; 15 | 16 | function init() { 17 | } 18 | 19 | function buildPrefsWidget() { 20 | 21 | let prefsProgram = (GNOME_VERSION >= "40") ? Extension.imports.prefsGtk4 : Extension.imports.prefsGtk3; 22 | prefsProgram.init(); 23 | let widget = new prefsProgram.Prefs_AnimationTweaksExtension(); 24 | GLib.timeout_add(GLib.PRIORITY_DEFAULT, 0, ()=> { 25 | new prefsProgram.ExtensionPreferencesWindow_AnimationTweaksExtension( widget ); 26 | return false; 27 | }); 28 | 29 | (GNOME_VERSION >= "40") ? null : widget.show_all(); 30 | return widget; 31 | 32 | } 33 | 34 | -------------------------------------------------------------------------------- /animation-tweaks@Selenium-H/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Animation Tweaks", 3 | "description": "Add animations to different items and customize them.\n\nPlease reset the extension after updating.\nThe Extension will stop when upgraded to an incompatible version.\nIn that case an Update tab is created to easily reset the extension.\nA Reset menu entry is also always present in in the Top Right Application menu of the extension preferences window.\nA Default shortcut combination of Super Key + t is provided to disable the extension.\n\nSome effects might not work properly on wayland, for which an option to integrate with wayland is provided on Integrations tab.\nHowever, some animations might not work properly.\n\nTo manage effect Delay time enable Show delay time in preferences Window from Top Right Application menu -> Preferences\nand reopen preferences.", 4 | "comment": "Add animations to different items and customize them.", 5 | "uuid": "animation-tweaks@Selenium-H", 6 | "shell-version": [ 7 | "3.38", 8 | "40", 9 | "41" 10 | ], 11 | "status" : "", 12 | "url": "https://github.com/Selenium-H/Animation-Tweaks", 13 | "version": 16 14 | } 15 | -------------------------------------------------------------------------------- /update_pot.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | xgettext --from-code utf-8 -k_ -kN_ -o locale/animation-tweaks.pot animation-tweaks@Selenium-H/*.js -o locale/animation-tweaks.pot schemas/*.xml 4 | 5 | grep animation-tweaks@Selenium-H/defaultEffectsList.js -e "'|','"| cut -c7-35 | tr \' \" | tr \, " " |sort|uniq >> effect-names.pot 6 | sed -e 's/^/msgid /' -i effect-names.pot 7 | sed -e 's/$/\nmsgstr \"\"\n\n#: Generated by update_pot.sh/' -i effect-names.pot 8 | sed -e 1's/.*/\n#: Generated by update_pot.sh\n&/' -i effect-names.pot 9 | cat effect-names.pot >> locale/animation-tweaks.pot 10 | rm effect-names.pot 11 | 12 | grep animation-tweaks@Selenium-H/metadata.json -e "\"description\":" >> desc.pot 13 | sed -i 's/\"description\":/msgid/' desc.pot 14 | sed -i 's/\",/"/' desc.pot 15 | sed -e 's/$/\nmsgstr \"\"/' -i desc.pot 16 | cat desc.pot >> locale/animation-tweaks.pot 17 | rm desc.pot 18 | 19 | grep animation-tweaks@Selenium-H/metadata.json -e "\"comment\":" >> comment.pot 20 | sed -i 's/\"comment\":/msgid/' comment.pot 21 | sed -i 's/\",/"/' comment.pot 22 | sed -e 's/$/\nmsgstr \"\"/' -i comment.pot 23 | sed -e 1's/.*/\n#: Generated by update_pot.sh\n&/' -i comment.pot 24 | cat comment.pot >> locale/animation-tweaks.pot 25 | rm comment.pot 26 | 27 | for pofile in $(find locale -mindepth 2 | egrep .po); do 28 | msgmerge -o $pofile.new $pofile locale/animation-tweaks.pot 29 | mv $pofile.new $pofile 30 | done 31 | 32 | -------------------------------------------------------------------------------- /INSTALL.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Version 11.03 4 | #============= 5 | 6 | # Default Installation Directory 7 | installDir=~/.local/share/gnome-shell/extensions 8 | 9 | # Extension Name and directory 10 | extensionName=animation-tweaks 11 | extensionDir=$extensionName@Selenium-H 12 | 13 | echo "" 14 | 15 | if [ ! -z $1 ] 16 | then 17 | installDir=$1 18 | fi 19 | 20 | if [ ! -d $installDir ] 21 | then 22 | if [ -z $2 ] 23 | then 24 | echo $installDir" directory does not exist." 25 | echo "Would you like to create the directory (y/n) ? " 26 | read response 27 | else 28 | response=$2 29 | fi 30 | 31 | if [ $response == "y" ] 32 | then 33 | mkdir -p $installDir 34 | if [ $? -eq 0 ] 35 | then 36 | echo " Directory Created " 37 | else 38 | echo " Error ! " 39 | exit 40 | fi 41 | else 42 | echo "Exiting ... ! " 43 | exit 44 | fi 45 | fi 46 | 47 | echo "Installing Extension "$extensionDir 48 | echo "Installation Path "$installDir 49 | echo "" 50 | echo -ne "Removing any Older Version ... " 51 | rm -rf $installDir"/"$extensionDir 52 | echo "Done" 53 | 54 | echo -ne "Copying New Version ... " 55 | cp -rf $extensionDir $installDir 56 | cp -rf schemas $installDir"/"$extensionDir 57 | cp -rf locale $installDir"/"$extensionDir 58 | echo "Done" 59 | 60 | cd $installDir"/"$extensionDir 61 | echo -ne "Compiling Schemas ... " 62 | glib-compile-schemas schemas 63 | echo "Done" 64 | 65 | echo -ne "Creating Translations ... " 66 | cd locale 67 | 68 | find . | egrep '\.po$' | while read line; 69 | do 70 | mkdir -p $(echo $line | sed 's/\.po$//')'/LC_MESSAGES/'; 71 | msgfmt -o $(echo $line | sed 's/\.po$//')'/LC_MESSAGES/'$extensionName'.mo' $line; 72 | done 73 | echo "Done" 74 | 75 | status="Done" 76 | 77 | #for poFile in */ 78 | # do 79 | # mkdir ${poFile}/LC_MESSAGES 80 | # msgfmt ${poFile}/$extensionName".po" -o ${poFile}/LC_MESSAGES/$extensionName".mo" 81 | # if [ $? != 0 ]; then 82 | # status="Error" 83 | # break 84 | # fi 85 | # done 86 | 87 | if [ "$status" == "Done" ]; then 88 | # echo -e $status 89 | echo "" 90 | echo "All Done !" 91 | else 92 | echo "" 93 | echo "Extension Installed, Translations not done." 94 | fi 95 | 96 | echo "" 97 | echo "Restart GNOME Shell" 98 | echo "" 99 | echo "* For Xorg Press Alt + F2 -> Press r -> Press Enter." 100 | echo "* For Wayland Log out and Log in Back." 101 | echo "" 102 | echo "Enable this extension using GNOME Tweak Tool." 103 | echo "" 104 | echo "* If you are updating this extension, please reset the extension using Reset button in preferences -> About Tab." 105 | echo "* Workaround for wayland option has been moved to preferences -> Tweaks tab." 106 | echo "" 107 | 108 | 109 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 | 5 |

6 | Animation Tweaks 7 |

8 | 9 |

10 | Version 18 11 |

12 | 13 |

14 | A GNOME Shell Extension to Tweak animations of different items and Customize them. 15 |

16 | 17 |

18 | Please reset the extension after updating. The Extension will stop when upgraded to an incompatible version. In that case an Update tab is created to easily reset the extension. A Reset button is also always present in Preferences option in the Application menu of the extension preferences window. A Default shortcut combination of Super + t is provided to disable the extension. Some effects might not work properly on Wayland, for which a workaround is provided on preferences -> Tweaks tab. However, some animations might not work properly. 19 |

20 | 21 |

22 | Customizations 23 |

24 | 25 |

26 | 27 |

28 | 29 |

30 | 31 |

32 | 33 |

34 | 35 |

36 | 37 |

38 | 39 |

40 | 41 |

42 | 43 |

44 | 45 |

46 | 47 |

48 | 49 |

50 | 51 |

52 | 53 |

54 | 55 |

56 | 57 |

58 | 59 |

60 | 61 |

62 | Animation Customizations 63 |

64 | 65 |

66 | 67 |

68 | 69 |

70 | Installations 71 |

72 | 73 |
74 | 75 | 76 | 79 | 82 | 83 | 84 | 97 | 100 | 101 |
77 |

GitHub

78 |
80 |

GNOME Shell Extension Website

81 |
85 |
Download/clone this repository and extract .zip file.
86 |
Open Terminal in extracted folder and run
87 |
    88 | chmod +x INSTALL.sh && ./INSTALL.sh 89 |
90 |
Restart GNOME Shell.
91 |
    92 |
  • In Xorg, press Alt+F2, press r, press Enter.
  • 93 |
  • In Wayland, log out and log in back.
  • 94 |
95 |
Enable it in GNOME Tweaks or Extensions application.
96 |
98 | Get this extension from here 99 |
102 |
Also, please check the experimental branch of this project for most recently updated version.

103 |
104 | 105 |

106 | Credits 107 |

108 | 109 | This project is inspired from 110 | [Compiz](http://www.compiz.org/) , 111 | [Window Slide In Extension](https://extensions.gnome.org/extension/367/window-slide-in/) by mengzhuo, 112 | [Files View Extension](https://extensions.gnome.org/extension/1395/files-view/) by abakkk. 113 | [Coverflow Alt-Tab Extension](https://extensions.gnome.org/extension/97/coverflow-alt-tab/) by p91paul. 114 | 115 | Thanks to @JasonLG1979, @vantu5z, @Vistaus. 116 | -------------------------------------------------------------------------------- /animation-tweaks@Selenium-H/profiles/animationTweaksExtensionProfiles.js: -------------------------------------------------------------------------------- 1 | /* 2 | ANIMATION TWEAKS GNOME EXTENSION PROFILES 3 | ========================================= 4 | 5 | !!! Do not Edit this file !!! 6 | 7 | This file is automatically moodified by prefs.js to when extension profiles are modified. 8 | 9 | */ 10 | 11 | var AnimationTweaksExtensionProfileDefault=class AnimationTweaksExtensionProfileDefault{ 12 | constructor(){ 13 | this.animationTweaksExtensionProfileName="Default"; 14 | this.firstUse=false; 15 | this.version=14.05; 16 | this.openingEffectEnabled=true; 17 | this.closingingEffectEnabled=false; 18 | this.minimizingEffectEnabled=false; 19 | this.unMinimizingEffectEnabled=false; 20 | this.movingEffectEnabled=false; 21 | this.focussingEffectEnabled=false; 22 | this.defocussingEffectEnabled=false; 23 | this.useApplicationProfiles=false; 24 | this.nameList=[]; 25 | this.appList=[]; 26 | this.normalWindowopenProfileRaw=["|","F","Scale Down","2","0.0","0.0","0.0","0.0","0.0","1","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","300","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 27 | this.normalWindowcloseProfileRaw=["|","F","Scale Up","1","0.0","0.0","0.0","0.0","0.0","300","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 28 | this.normalWindowminimizeProfileRaw=["|","F","Slide Down","1","0.0","0.0","0.0","0.0","0.0","300","0","1.0","1.0","0.0","0.1","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 29 | this.normalWindowunminimizeProfileRaw=["|","F","Slide Up","3","0.0","0.0","0.0","0.0","0.0","1","0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","15","0","1.0","1.0","0.0","0.1","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","300","255","1.0","1.0","0.0","-0.1","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 30 | this.normalWindowmovestartProfileRaw=["|","F","Fade","2","0.0","0.0","0.0","0.0","0.0","300","220",".9999",".9999","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","300","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 31 | this.normalWindowfocusProfileRaw=["|","F","Inflate","2","0.5","0.5","0.0","0.0","0.0","25","255","1.02","1.02","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.5","0.5","0.0","0.0","0.0","25","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 32 | this.normalWindowdefocusProfileRaw=["|","F","Deflate","2","0.5","0.5","0.0","0.0","0.0","25","255","0.97","0.97","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.5","0.5","0.0","0.0","0.0","25","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 33 | this.dialogWindowopenProfileRaw=["|","F","Fold Out Sideways","2","0.5","0.0","0.0","0.0","0.0","1","255","0.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.5","0.0","0.0","0.0","0.0","300","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 34 | this.dialogWindowcloseProfileRaw=["|","F","Fold In Sideways","1","0.5","0.0","0.0","0.0","0.0","300","255","0.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 35 | this.dialogWindowminimizeProfileRaw=["|","F","Slide Down","1","0.0","0.0","0.0","0.0","0.0","300","0","1.0","1.0","0.0","0.1","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 36 | this.dialogWindowunminimizeProfileRaw=["|","F","Slide Up","3","0.0","0.0","0.0","0.0","0.0","1","0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","15","0","1.0","1.0","0.0","0.1","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","300","255","1.0","1.0","0.0","-0.1","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 37 | this.dialogWindowmovestartProfileRaw=["|","F","Fade","2","0.0","0.0","0.0","0.0","0.0","300","220","0.9999","0.9999","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","300","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 38 | this.dialogWindowfocusProfileRaw=["|","F","Inflate","2","0.5","0.5","0.0","0.0","0.0","25","255","1.02","1.02","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.5","0.5","0.0","0.0","0.0","25","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 39 | this.dialogWindowdefocusProfileRaw=["|","F","Deflate","2","0.5","0.5","0.0","0.0","0.0","25","255","0.97","0.97","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.5","0.5","0.0","0.0","0.0","25","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 40 | this.modaldialogWindowopenProfileRaw=["|","F","Slide Down","2","0.0","0.0","0.0","0.0","0.0","1","0","1.0","1.0","0.0","-0.1","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","300","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 41 | this.modaldialogWindowcloseProfileRaw=["|","F","Slide Up","1","0.0","0.0","0.0","0.0","0.0","300","0","1.0","1.0","0.0","-0.1","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 42 | this.modaldialogWindowminimizeProfileRaw=["|","F","Slide Down","1","0.0","0.0","0.0","0.0","0.0","300","0","1.0","1.0","0.0","0.1","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 43 | this.modaldialogWindowunminimizeProfileRaw=["|","F","Slide Up","2","0.0","0.0","0.0","0.0","0.0","1","0","1.0","1.0","0.0","0.1","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","300","255","1.0","1.0","0.0","-0.1","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 44 | this.modaldialogWindowmovestartProfileRaw=["|","F","Fade","2","0.0","0.0","0.0","0.0","0.0","300","220","0.9999","0.9999","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","300","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 45 | this.modaldialogWindowfocusProfileRaw=["|","F","Inflate","2","0.5","0.5","0.0","0.0","0.0","25","255","1.02","1.02","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.5","0.5","0.0","0.0","0.0","25","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 46 | this.modaldialogWindowdefocusProfileRaw=["|","F","Deflate","2","0.5","0.5","0.0","0.0","0.0","25","255","0.97","0.97","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.5","0.5","0.0","0.0","0.0","25","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 47 | this.dropdownmenuWindowopenProfile=["|","T","Scale Down","2","0.0","0.0","0.0","0.0","0.0","1","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","250","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 48 | this.popupmenuWindowopenProfile=["|","T","Scale Down","2","0.0","0.0","0.0","0.0","0.0","1","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","250","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 49 | this.comboWindowopenProfile=["|","T","Scale Down","2","0.0","0.0","0.0","0.0","0.0","1","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","250","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 50 | this.splashscreenWindowopenProfile=["|","T","Zoom In","2","0.5","0.5","0.0","0.0","0.0","1","128","0.9","0.9","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.5","0.5","0.0","0.0","0.0","250","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 51 | this.tooltipWindowopenProfile=["|","T","Slide Up","2","0.0","0.0","0.0","0.0","0.0","1","0","1.0","1.0","0.0","0.1","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","300","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 52 | this.overrideotherWindowopenProfile=["|","T","Scale Down","2","0.0","0.0","0.0","0.0","0.0","1","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","250","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 53 | this.notificationbannerWindowopenProfile=["|","F","Fade In","2","0.0","0.0","0.0","0.0","0.0","1","0","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","300","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 54 | this.notificationbannerWindowcloseProfile=["|","F","Fade Out","1","0.0","0.0","0.0","0.0","0.0","300","0","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 55 | this.padosdWindowopenProfile=["|","F","Slide Up","2","0.0","0.0","0.0","0.0","0.0","1","0","1.0","1.0","0.0","0.1","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","300","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 56 | this.padosdWindowcloseProfile=["|","F","Scale Up","1","0.0","1.0","0.0","0.0","0.0","250","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 57 | this.toppanelpopupmenuWindowopenProfile=["|","F","Scale Down","2","0.0","0.0","0.0","0.0","0.0","1","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","250","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 58 | this.toppanelpopupmenuWindowcloseProfile=["|","F","Scale Up","1","0.0","0.0","0.0","0.0","0.0","300","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 59 | this.desktoppopupmenuWindowopenProfile=["|","F","Scale Down","2","0.0","0.0","0.0","0.0","0.0","1","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","250","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 60 | this.desktoppopupmenuWindowcloseProfile=["|","F","Scale Up","1","0.0","0.0","0.0","0.0","0.0","300","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 61 | this.windowmenuWindowopenProfile=["|","F","Scale Up","2","0.0","0.0","0.0","0.0","0.0","1","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","1.0","0.0","0.0","0.0","250","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 62 | this.windowmenuWindowcloseProfile=["|","F","Scale Down","1","0.0","1.0","0.0","0.0","0.0","300","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 63 | this.endsessiondialogWindowopenProfile=["|","F","Scale Down","2","0.0","0.0","0.0","0.0","0.0","1","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","250","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 64 | this.endsessiondialogWindowcloseProfile=["|","F","Scale Up","1","0.0","0.0","0.0","0.0","0.0","300","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 65 | this.dashappiconpopupmenuWindowopenProfile=["|","F","Scale Down","2","0.0","0.0","0.0","0.0","0.0","1","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC","0.0","0.0","0.0","0.0","0.0","250","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_CUBIC"]; 66 | this.dashappiconpopupmenuWindowcloseProfile=["|","F","Scale Up","1","0.0","0.0","0.0","0.0","0.0","300","0","1.0","0.7","0.0","0.0","0.0","0.0","0.0","0.0","EASE_IN_CUBIC"]; 67 | this.dashappiconWindownewwindowProfile=["|","F","Bounce Up","4","0.0","0.0","0.0","0.0","0.0","125","255","1.0","1.0","0.0","-0.03","0.0","0.0","0.0","0.0","EASE_OUT_QUAD","0.0","0.0","0.0","0.0","0.0","100","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_QUAD","0.0","0.0","0.0","0.0","0.0","75","255","1.0","1.0","0.0","-0.01","0.0","0.0","0.0","0.0","EASE_OUT_QUAD","0.0","0.0","0.0","0.0","0.0","50","255","1.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","EASE_OUT_QUAD"]; 68 | this.waylandWorkaroundEnabled=false; 69 | this.padOSDHideTime=1500; 70 | this.showDelay=false; 71 | }}//EndOfAnimationTweaksExtensionProfileDefault 72 | -------------------------------------------------------------------------------- /animation-tweaks@Selenium-H/effectParameters.txt: -------------------------------------------------------------------------------- 1 | Version 14.03 2 | ============= 3 | 4 | Effect Format [ | S Name C PPX PPY CX CY DL T OP SX SY PX PY TZ RX RY RZ TRN ] 5 | 6 | ========================================================================================================================================================================= 7 | Parameters | Values it take | Values displayed in preferences | 8 | ========================================================================================================================================================================= 9 | | | | 10 | S - Status | T if enabled else F | Displayed as switch | 11 | | | | 12 | Name | Effect name | Displayed in dropdown list | 13 | | | | 14 | C - Tween Counts | Number of effcts cascaded. | Not Shown in preferences. | 15 | | | | 16 | PPX - Pivot point X | Can take values -5 - 5. | Can be changed from -500 - 500. Displayed in percentage in preferences. | 17 | | | | 18 | PPY - Pivot Point Y | Can take values -5 - 5. | Can be changed from -500 - 500. Displayed in percentage in preferences. | 19 | | | | 20 | CX - Rotation center X | ( Depricated. Not Used any more. Kept for compatiblity issue ) | Not Shown in preferences. | 21 | | | | 22 | CY - Rotation center Z | ( Depricated. Not Used any more. Kept for compatiblity issue ) | Not Shown in preferences. | 23 | | | | 24 | DL - Delay | Can take values 0 - 10000 in millisecond. | Can be changed from 0 - 10000. Displayed in millisecond in preferences. | 25 | | | | 26 | T - Time | Can take values 0 - 10000 in millisecond. | Can be changed from 0 - 10000. Displayed in millisecond in preferences. | 27 | | | | 28 | OP - Opacity | Can take values 0 - 255. | Can be changed from 0 - 255. Displayed same in preferences. | 29 | | | | 30 | SX - Scale of item width | Can take values 0 - 2, MW. | Can be changed from 0 - 200, MW. Displayed in percentage in preferences. | 31 | | | | 32 | SY - Scale of item height | Can take values 0 - 2, MH. | Can be changed from 0 - 200, MH. Displayed in percentage in preferences. | 33 | | | | 34 | PX - Movement along X | Can take values -1 - 1, MX, LX, RX, SX, IX. | Can be changed from -100 - 100, MX, LX, RX, SX, IX. | 35 | | It is defined as 0 ± ( x * Screen width width ) along X. | It is displayed as 0 ± ( x % Screen width ) along X. | 36 | | Example - 0.3 means default position (0) + 0.3*Screen width | Example - 30 means default position (0) + 30 % Screen width. | 37 | | Moves window by 0.3*width right from | Moves window by 30 % its width right from current position. | 38 | | current position. | Displayed in percentage in preferences. | 39 | | | | 40 | PY - Movement along Y | Can take values -1 - 1, MY, UY, DY, SY, IY. | Can be changed from -100 - 100, MY, UY, DY, SY, IY. | 41 | | It is defined as 0 ± ( y * width ) along Y. | It is displayed as 0 ± ( y % width ) along Y. | 42 | | Example - -0.3 means default position (0) - 0.3*Screen height. | Example - -30 means default position (0) - 30 % Screen height. | 43 | | Moves window by 0.3*height upward from | Moves window by 30 % its height upward from current position. | 44 | | current position | Displayed in percentage in preferences. | 45 | | | | 46 | TZ - Movement along Z | Can take the values -1 - 1 | | 47 | | It is defined as % of item height along Z. | It is displayed as 100 ± ( x % width ) along Z. | 48 | | Example - 0.3 means default position (0) + 0.3*Screen height. | Example - 30 means default position (0) + 30 % Screen height. | 49 | | Moves window by 0.3*height foreward from | Moves window by 30 % its height foreward from current position. | 50 | | current position. | Displayed in percentage in preferences. | 51 | | | | 52 | RX - Rotation about X | Can take values -3600 - 3600 [ In Degrees (°) ] | Can be changed from -3600° - 3600°. Displayed in degree in preferences. | 53 | | | | 54 | RY - Rotation about Z | Can take values -3600 - 3600 [ In Degrees (°) ] | Can be changed from -3600° - 3600°. Displayed in degree in preferences. | 55 | | | | 56 | RZ - Rotation about Y | Can take values -3600 - 3600 [ In Degrees (°) ] | Can be changed from -3600° - 3600°. Displayed in degree in preferences. | 57 | | | | 58 | TRN - Transiion Type | Can take the following values | Can be selected form Dropdown List. | 59 | | | | 60 | | "EASE_IN_SINE" "EASE_OUT_SINE" "EASE_IN_OUT_SINE" | | 61 | | "EASE_IN_CUBIC" "EASE_OUT_CUBIC" "EASE_IN_OUT_CUBIC" | | 62 | | "EASE_IN_QUINT" "EASE_OUT_QUINT" "EASE_IN_OUT_QUINT" | | 63 | | "EASE_IN_CIRC" "EASE_OUT_CIRC" "EASE_IN_OUT_CIRC" | | 64 | | "EASE_IN_ELASTIC" "EASE_OUT_ELASTIC" "EASE_IN_OUT_ELASTIC" | | 65 | | "EASE_IN_QUAD" "EASE_OUT_QUAD" "EASE_IN_OUT_QUAD" | | 66 | | "EASE_IN_QUART" "EASE_OUT_QUART" "EASE_IN_OUT_QUART" | | 67 | | "EASE_IN_EXPO" "EASE_OUT_EXPO" "EASE_IN_OUT_EXPO" | | 68 | | "EASE_IN_BACK" "EASE_OUT_BACK" "EASE_IN_OUT_BACK" | | 69 | | "EASE_IN_BOUNCE" "EASE_OUT_BOUNCE" "EASE_IN_OUT_BOUNCE" | | 70 | | | | 71 | ========================================================================================================================================================================= 72 | 73 | Example of parameter stored and displayed in preferences - 74 | 75 | Effect Format [ | S Name C PPX PPY CX CY DL T OP SX SY PX PY TZ RX RY RZ TRN ] 76 | 77 | Values stored '|','F', 'Slide Down', '1', '0.0', '0.0', '0.0', '0.0', '0.0', '250', '0', '1.0', '1.0', '1.0', '1.2', '0.0', '0.0', '0.0', '0.0', 'EASE_OUT_CUBIC' 78 | 79 | Values displayed in preferences 0 0 0 250 0 100 100 100 120 0 0 0 0 EASE_OUT_CUBIC 80 | 81 | 82 | Changed Parameters 83 | ------------------ 84 | 85 | CZ parameter is replaced by DL ( Delay ) 86 | 87 | Delay Parameter ( DL ) 88 | ---------------------- 89 | 90 | The DL parameter before the first T parameter that is greater than 10, is considered the delay of the effect. 91 | The preferences ignore T values less than 15. Hence, the first T parameter that is greater than 10 and less than 16 can be used to set a dedicated delay parameter set. 92 | For Example - 93 | Effect Format [ | S Name C PPX PPY CX CY DL T OP SX SY PX PY TZ RX RY RZ TRN ] 94 | 95 | '|','Scale Down', '2', '0.0', '0.0', '0.0', '0.0', '200', '1', '0', '1.0', '0.5', '0.0', '0.0', '0.0', '0.0', '0.0', '0.0', 'EASE_OUT_CUBIC', 96 | '0.0', '0.0', '0.0', '0.0', '0.0', '300', '255', '1.0', '1.0', '0.0', '0.0', '0.0', '0.0', '0.0', '0.0', 'EASE_OUT_CUBIC', 97 | 98 | Delay of the above effect is 200. Time of the effect shown is 300ms 99 | 100 | '|','Compressed Slide Down', '4', '0.0', '0.0', '0.0', '0.0', '0.0', '1', '0', 'MW', 'MH', 'MX', 'UY', '0.0', '0.0', '0.0', '0.0', 'EASE_OUT_CUBIC', 101 | Second Set -> '0.0', '0.0', '0.0', '0.0', '400', '15', '255', 'MW', 'MH', 'MX', 'UY', '0.0', '0.0', '0.0', '0.0', 'EASE_OUT_CUBIC', 102 | Third Set -> '0.0', '0.0', '0.0', '0.0', '0.0', '250', '255', 'MW', 'MH', 'MX', 'IY', '0.0', '0.0', '0.0', '0.0', 'EASE_OUT_CUBIC', 103 | Forth Set -> '0.0', '0.0', '0.0', '0.0', '0.0', '250', '255', '1.0', '1.0', 'IX', 'IY', '0.0', '0.0', '0.0', '0.0', 'EASE_OUT_CUBIC', 104 | 105 | Delay of the above effect is 400. Time of the effect shown is 500ms. Actually, its 515ms. 106 | The second set is used as a dedicated delay parameter set. This is needed sometimes to properly set the initial parameters and apply delay accordingly. 107 | Any DL parameter before or after that should be made zero unless needed. 108 | Changing DL parameter at improper places in Effect Array may cause instabilities in animation. 109 | 110 | A Delay entry is avialable in Preferences. To manage effect Delay time enable "Show delay time in preferences" option from Top Right Menu -> Preferences. 111 | 112 | Parameter Values - non-float ( Normal window, and Dialog Window animations only ) 113 | ================================================================================= 114 | 115 | MW = Width of Minimized window 116 | MH = Height of Minimized window 117 | 118 | MX = Default X coordinate of Minimized window 119 | MY = Default Y coordinate of Minimized window 120 | 121 | LX = X Coordinate of window docked to left 122 | RX = X Coordinate of window docked to Right 123 | 124 | UY = Y Coordinate of window docked at Up 125 | DY = Y Coordinate of window docked at bottom 126 | 127 | SX = Same X Coordinate as previous 128 | SY = Same Y Coordinate as previous 129 | 130 | IX = Initial X Coordinate during start 131 | IY = Initial Y Coordinate during start 132 | 133 | Non-float values that extension uses to correct position 134 | -------------------------------------------------------- 135 | 136 | C_ = Position that is modified by a prefix 'C' tells the extension to correct the position during the start of animation. 137 | This is done automatically when the extension detects misposition of windows. 138 | For example - Original value of parameter PX = -0.2 could be changed to C-0.2. 139 | This will make the extension save the corrected positions coordinates in eParams[0] and eParams[1]. 140 | Which will corrected the initial position during animation. 141 | 142 | This is done only for initial position correction and automatically. 143 | 144 | Moving Effects 145 | ============== 146 | 147 | Moving effect Array stores two animations in a single array as follows 148 | 149 | Effect Array [ | S Name C PPX PPY CX CY DL T OP SX SY PX PY TZ RX RY RZ TRN ] 150 | 151 | Starting --> '|','F' 'Fade', '2', '0.0', '0.0', '0.0', '0.0', '0.0', '300', '220', '1.0', '1.0', '0.0', '0.0', '0.0', '0.0', '0.0', '0.0', 'EASE_OUT_CUBIC', 152 | Stopping --> '0.0', '0.0', '0.0', '0.0', '0.0', '300', '255', '1.0', '1.0', '0.0', '0.0', '0.0', '0.0', '0.0', '0.0', 'EASE_OUT_CUBIC' 153 | 154 | When window movement starts driveOtherEffects function is called with temporarily initializing C = 2/2 = 1, only executes first half of Effect Array. 155 | When window movement stops driveOtherEffects function is called with subEffectNo = C/2, only executes second half of Effect Array 156 | 157 | 158 | -------------------------------------------------------------------------------- /locale/ru.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR Free Software Foundation, Inc. 3 | # This file is distributed under the same license as the GNU make package. 4 | # FIRST AUTHOR , YEAR. 5 | # vantu5z , 2020. 6 | # 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Animation-Tweaks-11\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-10-19 08:43+0300\n" 12 | "PO-Revision-Date: 2020-10-19 08:44+0300\n" 13 | "Last-Translator: vantu5z \n" 14 | "Language-Team: Russian <>\n" 15 | "Language: ru\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" 20 | "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" 21 | "X-Generator: Poedit 2.4.1\n" 22 | 23 | #: animation-tweaks@Selenium-H/prefs.js:188 24 | msgid "" 25 | "This program comes with ABSOLUTELY NO WARRANTY.\n" 26 | "See the" 27 | msgstr "" 28 | "Эта программа распространяется БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ.\n" 29 | "Смотри" 30 | 31 | #: animation-tweaks@Selenium-H/prefs.js:188 32 | msgid "for details." 33 | msgstr " для дополнительной информации." 34 | 35 | #: animation-tweaks@Selenium-H/prefs.js:189 36 | msgid "Reset Animation Tweaks Extension" 37 | msgstr "Сбросить настройки" 38 | 39 | #: animation-tweaks@Selenium-H/prefs.js:200 40 | msgid "" 41 | "If already upgraded to Version 10 or higher and it's working fine, you can " 42 | "keep the preferences as it is.\n" 43 | "In that case click on the button below. Otherwise click the above button to " 44 | "reset." 45 | msgstr "" 46 | "Если приложение уже обновлено до версии 10 или выше и работает нормально, " 47 | "можно сохранить настройки.\n" 48 | "В этом случае нажмите кнопку ниже. Иначе нажмите кнопку выше для сброса " 49 | "настроек." 50 | 51 | #: animation-tweaks@Selenium-H/prefs.js:201 52 | msgid "Extension is upgraded to Version " 53 | msgstr "Дополнение обновлено до версии " 54 | 55 | #: animation-tweaks@Selenium-H/prefs.js:201 56 | msgid "" 57 | "A Reset to default preferences is needed if upgrading from a version older " 58 | "than version 10 or unable to reset during previous upgrade to version 10. " 59 | "Please Reset the extension by clicking the button below." 60 | msgstr "" 61 | "Сброс к настройкам по умолчанию требуется, если обновление происходит с " 62 | "версии ниже 10 или невозможно выполнить сброс во время предыдущего " 63 | "обновления до версии 10. Проведите сброс настроек дополнения с помощью " 64 | "кнопки ниже." 65 | 66 | #: animation-tweaks@Selenium-H/prefs.js:202 67 | msgid "Upgrade From Version 10 or newer." 68 | msgstr "Обновление с версии 10 или новее." 69 | 70 | #: animation-tweaks@Selenium-H/prefs.js:213 71 | msgid "Upgrade From Version 10 or newer" 72 | msgstr "Обновление с версии 10 или новее" 73 | 74 | #: animation-tweaks@Selenium-H/prefs.js:219 75 | msgid "Please make sure" 76 | msgstr "Пожалуйста проверьте" 77 | 78 | #: animation-tweaks@Selenium-H/prefs.js:220 79 | msgid "" 80 | "You are upgrading from version 10 or newer of this extension to current " 81 | "version.\n" 82 | "Already Reset the extension during previous upgrade.\n" 83 | "The extension is working fine." 84 | msgstr "" 85 | "Вы обновляете дополнение с версии 10 или выше.\n" 86 | "Уже проводили сброс настроек при предыдущем обновлении.\n" 87 | "Дополнение работает нормально." 88 | 89 | #: animation-tweaks@Selenium-H/prefs.js:221 90 | msgid "Otherwise click Cancel to go back and reset." 91 | msgstr "Иначе нажмите Отмена и вернитесь к сбросу настроек." 92 | 93 | #: animation-tweaks@Selenium-H/prefs.js:222 94 | msgid "Keep Preferences and Upgrade" 95 | msgstr "Сохранить настройки и обновить" 96 | 97 | #: animation-tweaks@Selenium-H/prefs.js:256 98 | msgid "Version " 99 | msgstr "Версия " 100 | 101 | #: animation-tweaks@Selenium-H/prefs.js:256 102 | msgid "Upgraded Successfully" 103 | msgstr "Обновлено успешно" 104 | 105 | #: animation-tweaks@Selenium-H/prefs.js:318 106 | msgid "Customize Animation" 107 | msgstr "Настройка анимации" 108 | 109 | #: animation-tweaks@Selenium-H/prefs.js:324 110 | msgid "Restore Default" 111 | msgstr "Сбросить по умолчанию" 112 | 113 | #: animation-tweaks@Selenium-H/prefs.js:424 114 | msgid "Update" 115 | msgstr "Обновить" 116 | 117 | #: animation-tweaks@Selenium-H/prefs.js:426 118 | msgid "Actions" 119 | msgstr "Действия" 120 | 121 | #: animation-tweaks@Selenium-H/prefs.js:427 122 | msgid "Profiles" 123 | msgstr "Профили" 124 | 125 | #: animation-tweaks@Selenium-H/prefs.js:428 126 | msgid "Tweaks" 127 | msgstr "Настройки" 128 | 129 | #: animation-tweaks@Selenium-H/prefs.js:431 130 | msgid "About" 131 | msgstr "О приложении" 132 | 133 | #: animation-tweaks@Selenium-H/prefs.js:720 134 | msgid "Any Changes done here are Applied immediately" 135 | msgstr "Все изменения сделанные здесь применяются немедленно" 136 | 137 | #: animation-tweaks@Selenium-H/prefs.js:721 138 | msgid "Details of parameter values are described in" 139 | msgstr "Подробнее о значениях параметров написано в файле" 140 | 141 | #: animation-tweaks@Selenium-H/prefs.js:721 142 | msgid "file in extension folder." 143 | msgstr "в каталоге дополнения." 144 | 145 | #: animation-tweaks@Selenium-H/prefs.js:734 146 | msgid "Parameters for Starting Effect" 147 | msgstr "Параметры начала эффекта" 148 | 149 | #: animation-tweaks@Selenium-H/prefs.js:741 150 | msgid "Tween Parameters - " 151 | msgstr "Параметры анимации - " 152 | 153 | #: animation-tweaks@Selenium-H/prefs.js:744 154 | msgid "Pivot Point X" 155 | msgstr "Точка вращения X" 156 | 157 | #: animation-tweaks@Selenium-H/prefs.js:744 158 | #: animation-tweaks@Selenium-H/prefs.js:745 159 | msgid "-500 - 500" 160 | msgstr "-500 - 500" 161 | 162 | #: animation-tweaks@Selenium-H/prefs.js:745 163 | msgid "Pivot Point Y" 164 | msgstr "Точка вращения Y" 165 | 166 | #: animation-tweaks@Selenium-H/prefs.js:746 167 | msgid "Rotation Center X" 168 | msgstr "Поворот от цента по X" 169 | 170 | #: animation-tweaks@Selenium-H/prefs.js:746 171 | #: animation-tweaks@Selenium-H/prefs.js:747 172 | #: animation-tweaks@Selenium-H/prefs.js:748 173 | msgid "0 - 100" 174 | msgstr "0 - 100" 175 | 176 | #: animation-tweaks@Selenium-H/prefs.js:747 177 | msgid "Rotation Center Y" 178 | msgstr "Поворот от цента по Y" 179 | 180 | #: animation-tweaks@Selenium-H/prefs.js:748 181 | msgid "Rotation Center Z" 182 | msgstr "Поворот от цента по Z" 183 | 184 | #: animation-tweaks@Selenium-H/prefs.js:749 185 | msgid "Time" 186 | msgstr "Время" 187 | 188 | #: animation-tweaks@Selenium-H/prefs.js:749 189 | msgid "in milliseconds" 190 | msgstr "в миллисекундах" 191 | 192 | #: animation-tweaks@Selenium-H/prefs.js:750 193 | msgid "Ending Opacity" 194 | msgstr "Конечная прозрачность" 195 | 196 | #: animation-tweaks@Selenium-H/prefs.js:750 197 | msgid "0 - 255" 198 | msgstr "0 - 255" 199 | 200 | #: animation-tweaks@Selenium-H/prefs.js:751 201 | msgid "Ending Width" 202 | msgstr "Конечная ширина" 203 | 204 | #: animation-tweaks@Selenium-H/prefs.js:751 205 | #: animation-tweaks@Selenium-H/prefs.js:752 206 | msgid "0 - 200" 207 | msgstr "0 - 200" 208 | 209 | #: animation-tweaks@Selenium-H/prefs.js:752 210 | msgid "Ending Height" 211 | msgstr "Конечная высота" 212 | 213 | #: animation-tweaks@Selenium-H/prefs.js:753 214 | msgid "Movement along X" 215 | msgstr "Смещение по X" 216 | 217 | #: animation-tweaks@Selenium-H/prefs.js:753 218 | msgid "0 ± % Screen width from current X→" 219 | msgstr "0 ± % Ширины экрана от текущего X→" 220 | 221 | #: animation-tweaks@Selenium-H/prefs.js:754 222 | msgid "Movement along Y" 223 | msgstr "Смещение по Y" 224 | 225 | #: animation-tweaks@Selenium-H/prefs.js:754 226 | msgid "0 ± % Screen height from current Y↓" 227 | msgstr "0 ± % Высоты экрана от текущего Y↓" 228 | 229 | #: animation-tweaks@Selenium-H/prefs.js:755 230 | msgid "Movement along Z" 231 | msgstr "Смещение по Z" 232 | 233 | #: animation-tweaks@Selenium-H/prefs.js:755 234 | msgid "0 ± % Screen height from current Z" 235 | msgstr "0 ± % Высоты экрана от текущего Z" 236 | 237 | #: animation-tweaks@Selenium-H/prefs.js:756 238 | msgid "Rotation about X" 239 | msgstr "Поворот вдоль X" 240 | 241 | #: animation-tweaks@Selenium-H/prefs.js:756 242 | #: animation-tweaks@Selenium-H/prefs.js:757 243 | #: animation-tweaks@Selenium-H/prefs.js:758 244 | msgid "in Degree" 245 | msgstr "в градусах" 246 | 247 | #: animation-tweaks@Selenium-H/prefs.js:757 248 | msgid "Rotation about Y" 249 | msgstr "Поворот вдоль Y" 250 | 251 | #: animation-tweaks@Selenium-H/prefs.js:758 252 | msgid "Rotation about Z" 253 | msgstr "Поворот вдоль Z" 254 | 255 | #: animation-tweaks@Selenium-H/prefs.js:759 256 | msgid "Transition Type" 257 | msgstr "Тип перехода" 258 | 259 | #: animation-tweaks@Selenium-H/prefs.js:764 260 | msgid "Parameters for Ending Effect" 261 | msgstr "Параметры завершения эффекта" 262 | 263 | #: animation-tweaks@Selenium-H/prefs.js:942 264 | msgid "Items" 265 | msgstr "Объекты" 266 | 267 | #: animation-tweaks@Selenium-H/prefs.js:943 268 | #: animation-tweaks@Selenium-H/prefs.js:1164 269 | msgid "Effect" 270 | msgstr "Эффект" 271 | 272 | #: animation-tweaks@Selenium-H/prefs.js:944 273 | #: animation-tweaks@Selenium-H/prefs.js:1165 274 | msgid "Time [ in ms ]" 275 | msgstr "Время (мс)" 276 | 277 | #: animation-tweaks@Selenium-H/prefs.js:945 278 | #: animation-tweaks@Selenium-H/prefs.js:1166 279 | msgid "Status" 280 | msgstr "Статус" 281 | 282 | #: animation-tweaks@Selenium-H/prefs.js:1003 283 | msgid "Open" 284 | msgstr "Открытие" 285 | 286 | #: animation-tweaks@Selenium-H/prefs.js:1004 287 | msgid "Close" 288 | msgstr "Закрытие" 289 | 290 | #: animation-tweaks@Selenium-H/prefs.js:1005 291 | msgid "Minimize" 292 | msgstr "Свернуть" 293 | 294 | #: animation-tweaks@Selenium-H/prefs.js:1005 295 | msgid "Unminimize" 296 | msgstr "Развернуть" 297 | 298 | #: animation-tweaks@Selenium-H/prefs.js:1006 299 | msgid "Focus" 300 | msgstr "Установка фокуса" 301 | 302 | #: animation-tweaks@Selenium-H/prefs.js:1006 303 | msgid "Defocus" 304 | msgstr "Снятие фокуса" 305 | 306 | #: animation-tweaks@Selenium-H/prefs.js:1007 307 | msgid "Drag" 308 | msgstr "Перемещение" 309 | 310 | #: animation-tweaks@Selenium-H/prefs.js:1038 311 | msgid "Choose an application" 312 | msgstr "Выберите приложение" 313 | 314 | #: animation-tweaks@Selenium-H/prefs.js:1042 315 | #: animation-tweaks@Selenium-H/prefs.js:1191 316 | msgid "Add" 317 | msgstr "Добавить" 318 | 319 | #: animation-tweaks@Selenium-H/prefs.js:1123 320 | #: animation-tweaks@Selenium-H/prefs.js:1130 321 | #: animation-tweaks@Selenium-H/prefs.js:1279 322 | msgid "Window Preferences" 323 | msgstr "Параметры окна" 324 | 325 | #: animation-tweaks@Selenium-H/prefs.js:1130 326 | #: animation-tweaks@Selenium-H/prefs.js:1279 327 | msgid "No Application Selected" 328 | msgstr "Приложения не выбраны" 329 | 330 | #: animation-tweaks@Selenium-H/prefs.js:1163 331 | msgid "Action" 332 | msgstr "Действие" 333 | 334 | #: animation-tweaks@Selenium-H/prefs.js:1178 335 | msgid "Application List" 336 | msgstr "Список приложений" 337 | 338 | #: animation-tweaks@Selenium-H/prefs.js:1194 339 | msgid "Remove" 340 | msgstr "Удалить" 341 | 342 | #: animation-tweaks@Selenium-H/prefs.js:1473 343 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:424 344 | msgid "Application Profiles" 345 | msgstr "Профили приложений" 346 | 347 | #: animation-tweaks@Selenium-H/prefs.js:1474 348 | msgid "Extension Profiles" 349 | msgstr "Профили дополнения" 350 | 351 | #: animation-tweaks@Selenium-H/prefs.js:1500 352 | msgid "Export Profiles" 353 | msgstr "Экспорт профилей" 354 | 355 | #: animation-tweaks@Selenium-H/prefs.js:1501 356 | msgid "Import Profiles" 357 | msgstr "Импорт профилей" 358 | 359 | #: animation-tweaks@Selenium-H/prefs.js:1591 360 | #: animation-tweaks@Selenium-H/prefs.js:1592 361 | msgid "Import" 362 | msgstr "Импорт" 363 | 364 | #: animation-tweaks@Selenium-H/prefs.js:1591 365 | #: animation-tweaks@Selenium-H/prefs.js:1592 366 | msgid "Export" 367 | msgstr "Экспорт" 368 | 369 | #: animation-tweaks@Selenium-H/prefs.js:1591 370 | msgid " Animation Tweaks Profile" 371 | msgstr " Настройки Animation Tweaks" 372 | 373 | #: animation-tweaks@Selenium-H/prefs.js:1739 374 | msgid "Save" 375 | msgstr "Сохранить" 376 | 377 | #: animation-tweaks@Selenium-H/prefs.js:1902 378 | msgid "Autodetect" 379 | msgstr "Автоматически" 380 | 381 | #: animation-tweaks@Selenium-H/prefs.js:1902 382 | msgid "Left" 383 | msgstr "Слева" 384 | 385 | #: animation-tweaks@Selenium-H/prefs.js:1902 386 | msgid "Center" 387 | msgstr "По центру" 388 | 389 | #: animation-tweaks@Selenium-H/prefs.js:1902 390 | msgid "Right" 391 | msgstr "Справа" 392 | 393 | #: animation-tweaks@Selenium-H/prefs.js:1905 394 | msgid "Alt Key" 395 | msgstr "Alt" 396 | 397 | #: animation-tweaks@Selenium-H/prefs.js:1905 398 | msgid "Ctrl Key" 399 | msgstr "Ctrl" 400 | 401 | #: animation-tweaks@Selenium-H/prefs.js:1905 402 | msgid "Shift Key" 403 | msgstr "Shift" 404 | 405 | #: animation-tweaks@Selenium-H/prefs.js:1905 406 | msgid "Super Key" 407 | msgstr "Super" 408 | 409 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:27 410 | msgid "Opening Effects [ for windows ]" 411 | msgstr "Эффекты открытия окон" 412 | 413 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:28 414 | msgid "Opening effect animation switch" 415 | msgstr "Включение/отключение анимации открытия окон" 416 | 417 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:37 418 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:175 419 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:246 420 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:282 421 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:320 422 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:358 423 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:396 424 | msgid "Normal Windows" 425 | msgstr "Обычные окна" 426 | 427 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:38 428 | msgid "Animation settings for Normal Windows opening" 429 | msgstr "Параметры анимации для открытия обычных окон" 430 | 431 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:47 432 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:184 433 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:255 434 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:292 435 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:330 436 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:368 437 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:406 438 | msgid "Dialog Windows" 439 | msgstr "Диалоговые окна" 440 | 441 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:48 442 | msgid "Animation settings for Dialog Windows opening" 443 | msgstr "Параметры анимации для открытия диалоговых окон" 444 | 445 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:57 446 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:193 447 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:264 448 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:302 449 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:340 450 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:378 451 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:416 452 | msgid "Modal Dialog" 453 | msgstr "Модальные диалоги" 454 | 455 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:58 456 | msgid "Animation settings for Modal Dialog Windows opening" 457 | msgstr "Параметры анимации для открытия модальных диалогов" 458 | 459 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:67 460 | msgid "Dropdown Menu" 461 | msgstr "Выпадающие меню" 462 | 463 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:68 464 | msgid "Animation settings for Dropdown Menu opening" 465 | msgstr "Параметры анимации для открытия выпадающих меню" 466 | 467 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:77 468 | msgid "Pop Up Menu" 469 | msgstr "Всплывающие меню" 470 | 471 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:78 472 | msgid "Animation settings for Pop Up Menu opening" 473 | msgstr "Параметры анимации для открытия всплывающих меню" 474 | 475 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:87 476 | msgid "Combo Box" 477 | msgstr "Выпадающие списки" 478 | 479 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:88 480 | msgid "Animation settings for Combo Box opening" 481 | msgstr "Параметры анимации для открытия выпадающих списков" 482 | 483 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:97 484 | msgid "Splash Screen" 485 | msgstr "Заставки" 486 | 487 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:98 488 | msgid "Animation settings for Splash Screen opening" 489 | msgstr "Параметры анимации для открытия заставок" 490 | 491 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:107 492 | msgid "Tooltips" 493 | msgstr "Подсказки" 494 | 495 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:108 496 | msgid "Animation settings for Tooltips opening" 497 | msgstr "Параметры анимации для открытия подсказок" 498 | 499 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:117 500 | msgid "Overrides Others" 501 | msgstr "Остальные" 502 | 503 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:118 504 | msgid "Animation settings for Overrides Others opening" 505 | msgstr "Параметры анимации для открытия остальных окон" 506 | 507 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:127 508 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:202 509 | msgid "Notification Banner" 510 | msgstr "Уведомления" 511 | 512 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:128 513 | msgid "Animation settings for Notification Banner opening" 514 | msgstr "Параметры анимации для открытия уведомлений" 515 | 516 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:138 517 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:211 518 | msgid "Pad OSD" 519 | msgstr "Pad OSD" 520 | 521 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:139 522 | msgid "Animation settings for Pad OSD opening" 523 | msgstr "Параметры анимации для открытия Pad OSD" 524 | 525 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:148 526 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:220 527 | msgid "Top Panel Pop Up Menu" 528 | msgstr "Всплывающие меню верхней панели" 529 | 530 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:149 531 | msgid "Animation settings for Top Panel Pop up Menu opening" 532 | msgstr "Параметры анимации для открытия всплывающих меню верхней панели" 533 | 534 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:158 535 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:229 536 | msgid "Desktop Pop Up Menu" 537 | msgstr "Всплывающие меню рабочего стола" 538 | 539 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:159 540 | msgid "Animation settings for Desktop Pop up Menu opening" 541 | msgstr "Параметры анимации для открытия всплывающих меню рабочего стола" 542 | 543 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:166 544 | msgid "Closing Effects [ for windows ]" 545 | msgstr "Эффекты закрытия окон" 546 | 547 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:167 548 | msgid "Closing effect for windows animation switch" 549 | msgstr "Включение/отключение анимации закрытия окон" 550 | 551 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:176 552 | msgid "Animation settings for Normal Windows closing" 553 | msgstr "Параметры анимации для закрытия нормальных окон" 554 | 555 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:185 556 | msgid "Animation settings for Dialog Windows closing" 557 | msgstr "Параметры анимации для закрытия диалоговых окон" 558 | 559 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:194 560 | msgid "Animation settings for Modal Dialog Windows closing" 561 | msgstr "Параметры анимации для закрытия модальных диалогов" 562 | 563 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:203 564 | msgid "Animation settings for Notification Banner closing" 565 | msgstr "Параметры анимации для закрытия уведомлений" 566 | 567 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:212 568 | msgid "Animation settings for Pad OSD closing" 569 | msgstr "Параметры анимации для закрытия Pad OSD" 570 | 571 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:221 572 | msgid "Animation settings for Top Panel Pop Up Menu closing" 573 | msgstr "Параметры анимации для закрытия всплывающих меню верхней панели" 574 | 575 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:230 576 | msgid "Animation settings for Desktop Pop Up Menu closing" 577 | msgstr "Параметры анимации для закрытия всплывающих меню рабочего стола" 578 | 579 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:237 580 | msgid "Minimizing Effects" 581 | msgstr "Эффекты сворачивания" 582 | 583 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:238 584 | msgid "Minimizing effect animation switch" 585 | msgstr "Включение/отключение анимации сворачивания окон" 586 | 587 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:247 588 | msgid "Animation settings for Normal Windows minimizing" 589 | msgstr "Параметры анимации для сворачивания обычных окон" 590 | 591 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:256 592 | msgid "Animation settings for Dialog Windows minimizing" 593 | msgstr "Параметры анимации для сворачивания диалоговых окон" 594 | 595 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:265 596 | msgid "" 597 | "Only provided so that shell does not crash if for any reason Modal Dialog " 598 | "Windows is minimzing" 599 | msgstr "" 600 | "Только при условии, что оболочка не выйдет из строя, если по какой-либо " 601 | "причине модальные диалоговые окна свернуться" 602 | 603 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:272 604 | msgid "Unminimizing Effects" 605 | msgstr "Эффекты восстановления" 606 | 607 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:273 608 | msgid "Unminimizing effect animation switch" 609 | msgstr "Включение/отключение анимации восстановления окон" 610 | 611 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:283 612 | msgid "Animation settings for Normal Windows unminimizing" 613 | msgstr "Параметры анимации для восстановления обычных окон" 614 | 615 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:293 616 | msgid "Animation settings for Dialog Windows unminimzing" 617 | msgstr "Параметры анимации для восстановления диалоговых окон" 618 | 619 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:303 620 | msgid "" 621 | "Only provided so that shell does not crash if for any reason Modal Dialog " 622 | "Windows is unminimzing" 623 | msgstr "" 624 | "Только при условии, что оболочка не выйдет из строя, если по какой-либо " 625 | "причине модальные диалоговые окна восстановятся" 626 | 627 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:310 628 | msgid "Focussing Effects" 629 | msgstr "Эффекты установки фокуса" 630 | 631 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:311 632 | msgid "Focussing effect animation switch" 633 | msgstr "Включение/отключение анимации установки фокуса" 634 | 635 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:321 636 | msgid "Animation settings for Normal Windows focus" 637 | msgstr "Параметры анимации при установке фокуса обычных окон" 638 | 639 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:331 640 | msgid "Animation settings for Dialog Windows focus" 641 | msgstr "Параметры анимации при установке фокуса диалоговых окон" 642 | 643 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:341 644 | msgid "Animation settings for Modal Dialog Windows focus" 645 | msgstr "Параметры анимации при установке фокуса модальных диалогов" 646 | 647 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:348 648 | msgid "Defocussing Effects" 649 | msgstr "Эффекты снятия фокуса" 650 | 651 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:349 652 | msgid "Defocussing effect animation switch" 653 | msgstr "Включение/отключение анимации снятия фокуса" 654 | 655 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:359 656 | msgid "Animation settings for Normal Windows defocus" 657 | msgstr "Параметры анимации при снятия фокуса с обычных окон" 658 | 659 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:369 660 | msgid "Animation settings for Dialog Windows defocus" 661 | msgstr "Параметры анимации при снятия фокуса с диалоговых окон" 662 | 663 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:379 664 | msgid "Animation settings for Modal Dialog Windows defocus" 665 | msgstr "Параметры анимации при снятия фокуса с модальных диалогов" 666 | 667 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:386 668 | msgid "Dragging Effects" 669 | msgstr "Эффекты перемещения окон" 670 | 671 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:387 672 | msgid "Starting to move effect animation switch" 673 | msgstr "Включение/отключение анимации начала перемещения" 674 | 675 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:397 676 | msgid "Animation settings for Normal Windows start to move" 677 | msgstr "Параметры анимации при начале перемещения обычных окон" 678 | 679 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:407 680 | msgid "Animation settings for Dialog Windows start to move" 681 | msgstr "Параметры анимации при начале перемещения диалоговых окон" 682 | 683 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:417 684 | msgid "Animation settings for Modal Dialog Windows start to move" 685 | msgstr "Параметры анимации при начале перемещения модальных окон" 686 | 687 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:425 688 | msgid "Application profiles status switch" 689 | msgstr "Включение/отключение настроек приложения" 690 | 691 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:431 692 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:432 693 | msgid "List of Applicaions for custom profiles" 694 | msgstr "Список приложений с пользовательскими настройками" 695 | 696 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:438 697 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:439 698 | msgid "List of Applicaions names for custom profiles" 699 | msgstr "Список названий приложений с пользовательскими настройками" 700 | 701 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:446 702 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:447 703 | msgid "Extension Profile Currently In Use" 704 | msgstr "Текущий профиль" 705 | 706 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:454 707 | msgid "Use the workaround for Wayland" 708 | msgstr "Использовать решение для Wayland" 709 | 710 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:455 711 | msgid "Settings If used under wayland" 712 | msgstr "Включите, если используете Wayland" 713 | 714 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:460 715 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:461 716 | msgid "Notification Banner position" 717 | msgstr "Положение уведомлений" 718 | 719 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:466 720 | msgid "Pad OSD hide timeout [ in ms ]" 721 | msgstr "Задержка перед скрытием Pad OSD (мс)" 722 | 723 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:467 724 | msgid "Time for which Pad OSD is Shown" 725 | msgstr "Время отображения Pad OSD" 726 | 727 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:474 728 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:475 729 | msgid "Shortcut key combiation to disable extension" 730 | msgstr "Комбинация клавиш для отключения дополнения" 731 | 732 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:482 733 | msgid "Version of Current Extension" 734 | msgstr "Версия текущего дополнения" 735 | 736 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:483 737 | msgid "" 738 | "Provided to ensure that extension is stopped incase of autoupdate from " 739 | "previous version to prevent unwanted effects" 740 | msgstr "" 741 | "Необходимо убедиться, что приложение выключено перед обновлением для " 742 | "предотвращения нежелательных эффектов" 743 | 744 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:488 745 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:489 746 | msgid "Signals the extension to reload" 747 | msgstr "Сигналы для перезагрузки дополнения" 748 | 749 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:494 750 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:495 751 | msgid "Signals the extension to reload Application Profiles" 752 | msgstr "Сигналы для перезагрузки настроек приложений" 753 | 754 | #: Generated by update_pot.sh 755 | msgid "Compressed Slide Down" 756 | msgstr "Скольжение миниатюры вниз" 757 | 758 | #: Generated by update_pot.sh 759 | msgid "Compressed Slide Left" 760 | msgstr "Скольжение миниатюры влево" 761 | 762 | #: Generated by update_pot.sh 763 | msgid "Compressed Slide Right" 764 | msgstr "Скольжение миниатюры вправо" 765 | 766 | #: Generated by update_pot.sh 767 | msgid "Compressed Slide Up" 768 | msgstr "Скольжение миниатюры вверх" 769 | 770 | #: Generated by update_pot.sh 771 | msgid "Deflate" 772 | msgstr "Пульсация внутрь" 773 | 774 | #: Generated by update_pot.sh 775 | msgid "Fade In" 776 | msgstr "Появление" 777 | 778 | #: Generated by update_pot.sh 779 | msgid "Fade Out" 780 | msgstr "Растворение" 781 | 782 | #: Generated by update_pot.sh 783 | msgid "Fade" 784 | msgstr "Прозрачность" 785 | 786 | #: Generated by update_pot.sh 787 | msgid "Fall Behind" 788 | msgstr "Падение назад" 789 | 790 | #: Generated by update_pot.sh 791 | msgid "Fall and Bounce" 792 | msgstr "Падение с отскакиванием" 793 | 794 | #: Generated by update_pot.sh 795 | msgid "Flip Horizontally" 796 | msgstr "Переворот горизонтально" 797 | 798 | #: Generated by update_pot.sh 799 | msgid "Flip Over" 800 | msgstr "Переворот вверх" 801 | 802 | #: Generated by update_pot.sh 803 | msgid "Flip Vertically" 804 | msgstr "Переворот горизонтально" 805 | 806 | #: Generated by update_pot.sh 807 | msgid "Flipped Slide Down" 808 | msgstr "Скольжение вниз с переворотом" 809 | 810 | #: Generated by update_pot.sh 811 | msgid "Flipped Slide Up" 812 | msgstr "Скольжение вверх с переворотом" 813 | 814 | #: Generated by update_pot.sh 815 | msgid "Float Up" 816 | msgstr "Поток вверх" 817 | 818 | #: Generated by update_pot.sh 819 | msgid "Fold In Sideways" 820 | msgstr "Сворачивание горизонтально" 821 | 822 | #: Generated by update_pot.sh 823 | msgid "Fold In Vertically" 824 | msgstr "Сворачивание вертикально" 825 | 826 | #: Generated by update_pot.sh 827 | msgid "Fold Out Sideways" 828 | msgstr "Разворачивание горизонтально" 829 | 830 | #: Generated by update_pot.sh 831 | msgid "Fold Out Vertically" 832 | msgstr "Разворачивание вертикально" 833 | 834 | #: Generated by update_pot.sh 835 | msgid "Inflate" 836 | msgstr "Пульсация наружу" 837 | 838 | #: Generated by update_pot.sh 839 | msgid "Magnify" 840 | msgstr "Магнетизм" 841 | 842 | #: Generated by update_pot.sh 843 | msgid "None" 844 | msgstr "Без эффекта" 845 | 846 | #: Generated by update_pot.sh 847 | msgid "Rotate In Down" 848 | msgstr "Поворот вниз" 849 | 850 | #: Generated by update_pot.sh 851 | msgid "Rotate In Left" 852 | msgstr "Поворот влево" 853 | 854 | #: Generated by update_pot.sh 855 | msgid "Rotate In Right" 856 | msgstr "Поворот вправо" 857 | 858 | #: Generated by update_pot.sh 859 | msgid "Rotate In Up" 860 | msgstr "Поворот вверх" 861 | 862 | #: Generated by update_pot.sh 863 | msgid "Rotate Out Down" 864 | msgstr "Поворот вниз (с уменьшением)" 865 | 866 | #: Generated by update_pot.sh 867 | msgid "Rotate Out Left" 868 | msgstr "Поворот влево (с уменьшением)" 869 | 870 | #: Generated by update_pot.sh 871 | msgid "Rotate Out Right" 872 | msgstr "Поворот вправо (с уменьшением)" 873 | 874 | #: Generated by update_pot.sh 875 | msgid "Rotate Out Up" 876 | msgstr "Поворот вверх (с уменьшением)" 877 | 878 | #: Generated by update_pot.sh 879 | msgid "Scale Auto In" 880 | msgstr "Уменьшение (авто)" 881 | 882 | #: Generated by update_pot.sh 883 | msgid "Scale Auto Out" 884 | msgstr "Увеличение (авто)" 885 | 886 | #: Generated by update_pot.sh 887 | msgid "Scale Down" 888 | msgstr "Масштабирование вниз" 889 | 890 | #: Generated by update_pot.sh 891 | msgid "Scale Left" 892 | msgstr "Масштабирование влево" 893 | 894 | #: Generated by update_pot.sh 895 | msgid "Scale Right" 896 | msgstr "Масштабирование вправо" 897 | 898 | #: Generated by update_pot.sh 899 | msgid "Scale Up" 900 | msgstr "Масштабирование вверх" 901 | 902 | #: Generated by update_pot.sh 903 | msgid "Slide Down" 904 | msgstr "Скольжение вниз" 905 | 906 | #: Generated by update_pot.sh 907 | msgid "Slide Left" 908 | msgstr "Скольжение влево" 909 | 910 | #: Generated by update_pot.sh 911 | msgid "Slide Right" 912 | msgstr "Скольжение вправо" 913 | 914 | #: Generated by update_pot.sh 915 | msgid "Slide Up" 916 | msgstr "Скольжение вверх" 917 | 918 | #: Generated by update_pot.sh 919 | msgid "Squeezed Slide Down" 920 | msgstr "Сжатое скольжение вниз" 921 | 922 | #: Generated by update_pot.sh 923 | msgid "Squeezed Slide Left" 924 | msgstr "Сжатое скольжение влево" 925 | 926 | #: Generated by update_pot.sh 927 | msgid "Squeezed Slide Right" 928 | msgstr "Сжатое скольжение вправо" 929 | 930 | #: Generated by update_pot.sh 931 | msgid "Squeezed Slide Up" 932 | msgstr "Сжатое скольжение вверх" 933 | 934 | #: Generated by update_pot.sh 935 | msgid "Unmagnify" 936 | msgstr "Размагничивание" 937 | 938 | #: Generated by update_pot.sh 939 | msgid "Wiggle" 940 | msgstr "Потряхивание" 941 | 942 | #: Generated by update_pot.sh 943 | msgid "Zoom In" 944 | msgstr "Приближение" 945 | 946 | #: Generated by update_pot.sh 947 | msgid "Zoom Out" 948 | msgstr "Отдаление" 949 | 950 | #: Generated by update_pot.sh 951 | msgid "" 952 | "Add animations to different items and customize them.\n" 953 | "\n" 954 | "Please reset the extension after updating. The Extension will stop when " 955 | "upgraded to an incompatible version. In that case an Update tab is created " 956 | "to easily reset the extension. A Reset button is also always present in " 957 | "preferences -> About Tab.\n" 958 | " A Default shortcut combination of Super Key + t is provided to temporarily " 959 | "disable the extension until GNOME Shell restarts. \n" 960 | "\n" 961 | "Some effects might not work properly on wayland, for which a workaround is " 962 | "provided on preferences -> Tweaks tab. \n" 963 | "However, some animations might not work properly." 964 | msgstr "" 965 | "Добавляйте эффекты анимации для различных событий и настраивайте их по " 966 | "своему вкусу.\n" 967 | "\n" 968 | "Необходимо сбросить настройки после обновления. Дополнение будет остановлено " 969 | "при обновлении до несовместимой версии. В этом случае будет доступна вкладка " 970 | "\"Обновление\" для быстрого доступа к сбросу настроек. Также кнопка Сброса " 971 | "настроек всегда доступна в настройках на вкладке \"О приложении\".\n" 972 | "Комбинация клавиш по умолчанию [ Super Key + t ] используется для временного " 973 | "отключения дополнения до перезапуска GNOME Shell.\n" 974 | "\n" 975 | "Некоторые эффекты могут некорректно работать под Wayland, на вкладке " 976 | "\"Настройки\" предусмотрен параметр для решения этой проблемы.\n" 977 | "Однако, некоторые эффекты всё-же могут работать некорректно." 978 | 979 | #~ msgid "Maximize" 980 | #~ msgstr "Развернуть" 981 | 982 | #~ msgid "Pivot Point X\t\t\t[\t-500 - 500\t%\t\t]" 983 | #~ msgstr "Опорная точка X\t\t\t[\t\t± 500\t%\t\t]" 984 | 985 | #~ msgid "Pivot Point Y\t\t\t[\t-500 - 500\t%\t\t]" 986 | #~ msgstr "Опорная точка Y\t\t\t[\t\t± 500\t%\t\t]" 987 | 988 | #~ msgid "Ending Width\t\t\t[\t0 - 200\t%\t\t]" 989 | #~ msgstr "Конечная ширина\t\t\t[\t\t0 - 200\t%\t\t]" 990 | 991 | #~ msgid "Ending Height\t\t\t[\t0 - 200\t%\t\t]" 992 | #~ msgstr "Конечная высота\t\t\t[\t\t0 - 200\t%\t\t]" 993 | 994 | #~ msgid "Time { in ms )" 995 | #~ msgstr "Время (мс)" 996 | 997 | #~ msgid "More" 998 | #~ msgstr "Дополнительно" 999 | 1000 | #~ msgid "Apps" 1001 | #~ msgstr "Приложения" 1002 | 1003 | #~ msgid "Animation" 1004 | #~ msgstr "анимации" 1005 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /animation-tweaks@Selenium-H/LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /locale/animation-tweaks.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2021-11-30 05:02+0530\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: animation-tweaks@Selenium-H/prefsGtk3.js:113 21 | #: animation-tweaks@Selenium-H/prefsGtk4.js:108 22 | msgid "Reset to defaults" 23 | msgstr "" 24 | 25 | #: animation-tweaks@Selenium-H/prefsGtk3.js:115 26 | #: animation-tweaks@Selenium-H/prefsGtk3.js:126 27 | #: animation-tweaks@Selenium-H/prefsGtk4.js:110 28 | #: animation-tweaks@Selenium-H/prefsGtk4.js:125 29 | msgid "Preferences" 30 | msgstr "" 31 | 32 | #: animation-tweaks@Selenium-H/prefsGtk3.js:116 33 | #: animation-tweaks@Selenium-H/prefsGtk3.js:138 34 | #: animation-tweaks@Selenium-H/prefsGtk4.js:111 35 | #: animation-tweaks@Selenium-H/prefsGtk4.js:137 36 | msgid "Help" 37 | msgstr "" 38 | 39 | #: animation-tweaks@Selenium-H/prefsGtk3.js:117 40 | #: animation-tweaks@Selenium-H/prefsGtk4.js:112 41 | msgid "About" 42 | msgstr "" 43 | 44 | #: animation-tweaks@Selenium-H/prefsGtk3.js:195 45 | #: animation-tweaks@Selenium-H/prefsGtk4.js:191 46 | msgid "Reset Animation Tweaks Extension" 47 | msgstr "" 48 | 49 | #: animation-tweaks@Selenium-H/prefsGtk3.js:207 50 | #: animation-tweaks@Selenium-H/prefsGtk4.js:203 51 | msgid "Reset Animation Tweaks to defaults?" 52 | msgstr "" 53 | 54 | #: animation-tweaks@Selenium-H/prefsGtk3.js:208 55 | #: animation-tweaks@Selenium-H/prefsGtk4.js:204 56 | msgid "" 57 | "Resetting the extension will discard the current preferences configuration " 58 | "and restore default one." 59 | msgstr "" 60 | 61 | #: animation-tweaks@Selenium-H/prefsGtk3.js:373 62 | #: animation-tweaks@Selenium-H/prefsGtk4.js:376 63 | msgid "Extension is upgraded to Version " 64 | msgstr "" 65 | 66 | #: animation-tweaks@Selenium-H/prefsGtk3.js:373 67 | #: animation-tweaks@Selenium-H/prefsGtk4.js:376 68 | msgid "" 69 | "A Reset to default preferences is needed if upgrading from a version older " 70 | "than version 10 or unable to reset during previous upgrade to version 10. " 71 | "Please Reset the extension by clicking the button below." 72 | msgstr "" 73 | 74 | #: animation-tweaks@Selenium-H/prefsGtk3.js:382 75 | #: animation-tweaks@Selenium-H/prefsGtk4.js:385 76 | msgid "" 77 | "If already upgraded to Version 10 or higher and it's working fine, you can " 78 | "keep some of the preferences as it is. Incompatible preferences will be " 79 | "reset.\n" 80 | "In that case click on the button below. Otherwise click the above button to " 81 | "reset." 82 | msgstr "" 83 | 84 | #: animation-tweaks@Selenium-H/prefsGtk3.js:383 85 | #: animation-tweaks@Selenium-H/prefsGtk4.js:386 86 | msgid "Upgrade From Version 10 or newer." 87 | msgstr "" 88 | 89 | #: animation-tweaks@Selenium-H/prefsGtk3.js:397 90 | #: animation-tweaks@Selenium-H/prefsGtk4.js:400 91 | msgid "Keep Preferences and Upgrade?" 92 | msgstr "" 93 | 94 | #: animation-tweaks@Selenium-H/prefsGtk3.js:398 95 | #: animation-tweaks@Selenium-H/prefsGtk4.js:401 96 | msgid "Otherwise click Cancel to go back and reset." 97 | msgstr "" 98 | 99 | #: animation-tweaks@Selenium-H/prefsGtk3.js:398 100 | #: animation-tweaks@Selenium-H/prefsGtk4.js:401 101 | msgid "Note: Incompatible preferences will be reset anyway." 102 | msgstr "" 103 | 104 | #: animation-tweaks@Selenium-H/prefsGtk3.js:398 105 | msgid "" 106 | "\n" 107 | "Please make sure that\n" 108 | "\n" 109 | "You are upgrading from version 10 or newer of this extension to current " 110 | "version.\n" 111 | "Already Reset the extension during previous upgrade.\n" 112 | "The extension is working fine.\n" 113 | "\n" 114 | msgstr "" 115 | 116 | #: animation-tweaks@Selenium-H/prefsGtk3.js:420 117 | #: animation-tweaks@Selenium-H/prefsGtk4.js:423 118 | msgid "Version " 119 | msgstr "" 120 | 121 | #: animation-tweaks@Selenium-H/prefsGtk3.js:420 122 | #: animation-tweaks@Selenium-H/prefsGtk4.js:423 123 | msgid "Upgraded Successfully" 124 | msgstr "" 125 | 126 | #: animation-tweaks@Selenium-H/prefsGtk3.js:539 127 | #: animation-tweaks@Selenium-H/prefsGtk4.js:542 128 | msgid "Customize Animation" 129 | msgstr "" 130 | 131 | #: animation-tweaks@Selenium-H/prefsGtk3.js:543 132 | #: animation-tweaks@Selenium-H/prefsGtk4.js:546 133 | msgid "Restore Default" 134 | msgstr "" 135 | 136 | #: animation-tweaks@Selenium-H/prefsGtk3.js:660 137 | #: animation-tweaks@Selenium-H/prefsGtk4.js:663 138 | msgid "Update" 139 | msgstr "" 140 | 141 | #: animation-tweaks@Selenium-H/prefsGtk3.js:663 142 | #: animation-tweaks@Selenium-H/prefsGtk4.js:666 143 | msgid "Actions" 144 | msgstr "" 145 | 146 | #: animation-tweaks@Selenium-H/prefsGtk3.js:664 147 | #: animation-tweaks@Selenium-H/prefsGtk4.js:667 148 | msgid "Items" 149 | msgstr "" 150 | 151 | #: animation-tweaks@Selenium-H/prefsGtk3.js:665 152 | #: animation-tweaks@Selenium-H/prefsGtk4.js:668 153 | msgid "Profiles" 154 | msgstr "" 155 | 156 | #: animation-tweaks@Selenium-H/prefsGtk3.js:666 157 | #: animation-tweaks@Selenium-H/prefsGtk4.js:669 158 | msgid "Integrations" 159 | msgstr "" 160 | 161 | #: animation-tweaks@Selenium-H/prefsGtk3.js:971 162 | #: animation-tweaks@Selenium-H/prefsGtk4.js:974 163 | msgid "Any Changes done here are Applied immediately" 164 | msgstr "" 165 | 166 | #: animation-tweaks@Selenium-H/prefsGtk3.js:972 167 | #: animation-tweaks@Selenium-H/prefsGtk4.js:975 168 | msgid "Details of parameter values are described in" 169 | msgstr "" 170 | 171 | #: animation-tweaks@Selenium-H/prefsGtk3.js:972 172 | #: animation-tweaks@Selenium-H/prefsGtk4.js:975 173 | msgid "file in extension folder." 174 | msgstr "" 175 | 176 | #: animation-tweaks@Selenium-H/prefsGtk3.js:985 177 | #: animation-tweaks@Selenium-H/prefsGtk4.js:988 178 | msgid "Parameters for Starting Effect" 179 | msgstr "" 180 | 181 | #: animation-tweaks@Selenium-H/prefsGtk3.js:992 182 | #: animation-tweaks@Selenium-H/prefsGtk4.js:995 183 | msgid "Tween Parameters - " 184 | msgstr "" 185 | 186 | #: animation-tweaks@Selenium-H/prefsGtk3.js:995 187 | #: animation-tweaks@Selenium-H/prefsGtk4.js:998 188 | msgid "Pivot Point X" 189 | msgstr "" 190 | 191 | #: animation-tweaks@Selenium-H/prefsGtk3.js:995 192 | #: animation-tweaks@Selenium-H/prefsGtk3.js:996 193 | #: animation-tweaks@Selenium-H/prefsGtk4.js:998 194 | #: animation-tweaks@Selenium-H/prefsGtk4.js:999 195 | msgid "-500 - 500" 196 | msgstr "" 197 | 198 | #: animation-tweaks@Selenium-H/prefsGtk3.js:996 199 | #: animation-tweaks@Selenium-H/prefsGtk4.js:999 200 | msgid "Pivot Point Y" 201 | msgstr "" 202 | 203 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1001 204 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1001 205 | msgid "Time" 206 | msgstr "" 207 | 208 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1001 209 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1001 210 | msgid "in milliseconds" 211 | msgstr "" 212 | 213 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1002 214 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1002 215 | msgid "Ending Opacity" 216 | msgstr "" 217 | 218 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1002 219 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1002 220 | msgid "0 - 255" 221 | msgstr "" 222 | 223 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1003 224 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1003 225 | msgid "Ending Width" 226 | msgstr "" 227 | 228 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1003 229 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1004 230 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1003 231 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1004 232 | msgid "0 - 200" 233 | msgstr "" 234 | 235 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1004 236 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1004 237 | msgid "Ending Height" 238 | msgstr "" 239 | 240 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1005 241 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1005 242 | msgid "Movement along X" 243 | msgstr "" 244 | 245 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1005 246 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1005 247 | msgid "0 ± % Screen width from current X→" 248 | msgstr "" 249 | 250 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1006 251 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1006 252 | msgid "Movement along Y" 253 | msgstr "" 254 | 255 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1006 256 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1006 257 | msgid "0 ± % Screen height from current Y↓" 258 | msgstr "" 259 | 260 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1007 261 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1007 262 | msgid "Movement along Z" 263 | msgstr "" 264 | 265 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1007 266 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1007 267 | msgid "0 ± % Screen height from current Z" 268 | msgstr "" 269 | 270 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1008 271 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1008 272 | msgid "Rotation about X" 273 | msgstr "" 274 | 275 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1008 276 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1009 277 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1010 278 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1008 279 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1009 280 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1010 281 | msgid "in Degree" 282 | msgstr "" 283 | 284 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1009 285 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1009 286 | msgid "Rotation about Y" 287 | msgstr "" 288 | 289 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1010 290 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1010 291 | msgid "Rotation about Z" 292 | msgstr "" 293 | 294 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1011 295 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1011 296 | msgid "Transition Type" 297 | msgstr "" 298 | 299 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1016 300 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1016 301 | msgid "Parameters for Ending Effect" 302 | msgstr "" 303 | 304 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1215 305 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1215 306 | msgid "Item" 307 | msgstr "" 308 | 309 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1216 310 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1224 311 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1494 312 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1216 313 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1224 314 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1495 315 | msgid "Effect" 316 | msgstr "" 317 | 318 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1218 319 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1227 320 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1496 321 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1218 322 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1227 323 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1497 324 | msgid "Delay [ in ms ]" 325 | msgstr "" 326 | 327 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1220 328 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1229 329 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1498 330 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1220 331 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1229 332 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1499 333 | msgid "Time [ in ms ]" 334 | msgstr "" 335 | 336 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1221 337 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1230 338 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1499 339 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1221 340 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1230 341 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1500 342 | msgid "Status" 343 | msgstr "" 344 | 345 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1297 346 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1304 347 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1297 348 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1304 349 | msgid "Open" 350 | msgstr "" 351 | 352 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1298 353 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1304 354 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1298 355 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1304 356 | msgid "Close" 357 | msgstr "" 358 | 359 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1307 360 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1307 361 | msgid "Minimize" 362 | msgstr "" 363 | 364 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1307 365 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1307 366 | msgid "Unminimize" 367 | msgstr "" 368 | 369 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1308 370 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1308 371 | msgid "Focus" 372 | msgstr "" 373 | 374 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1308 375 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1308 376 | msgid "Defocus" 377 | msgstr "" 378 | 379 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1309 380 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1309 381 | msgid "Drag" 382 | msgstr "" 383 | 384 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1356 385 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1357 386 | msgid "Choose an application" 387 | msgstr "" 388 | 389 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1360 390 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1524 391 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1361 392 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1525 393 | msgid "Add" 394 | msgstr "" 395 | 396 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1449 397 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1612 398 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1450 399 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1613 400 | msgid "No Application Selected" 401 | msgstr "" 402 | 403 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1475 404 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1476 405 | msgid "Window Preferences" 406 | msgstr "" 407 | 408 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1493 409 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1494 410 | msgid "Action" 411 | msgstr "" 412 | 413 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1511 414 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1512 415 | msgid "Application List" 416 | msgstr "" 417 | 418 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1527 419 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1528 420 | msgid "Remove" 421 | msgstr "" 422 | 423 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1730 424 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1731 425 | msgid "Alt Key" 426 | msgstr "" 427 | 428 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1730 429 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1731 430 | msgid "Ctrl Key" 431 | msgstr "" 432 | 433 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1730 434 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1731 435 | msgid "Shift Key" 436 | msgstr "" 437 | 438 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1730 439 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1731 440 | msgid "Super Key" 441 | msgstr "" 442 | 443 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1730 444 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1731 445 | msgid "Disabled" 446 | msgstr "" 447 | 448 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1976 449 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1977 450 | msgid "Applications" 451 | msgstr "" 452 | 453 | #: animation-tweaks@Selenium-H/prefsGtk3.js:1977 454 | #: animation-tweaks@Selenium-H/prefsGtk4.js:1978 455 | msgid "Animation Tweaks" 456 | msgstr "" 457 | 458 | #: animation-tweaks@Selenium-H/prefsGtk3.js:2041 459 | #: animation-tweaks@Selenium-H/prefsGtk4.js:2042 460 | msgid "Discard" 461 | msgstr "" 462 | 463 | #: animation-tweaks@Selenium-H/prefsGtk3.js:2042 464 | #: animation-tweaks@Selenium-H/prefsGtk4.js:2043 465 | msgid "Don't switch" 466 | msgstr "" 467 | 468 | #: animation-tweaks@Selenium-H/prefsGtk3.js:2043 469 | #: animation-tweaks@Selenium-H/prefsGtk4.js:2044 470 | msgid "Save" 471 | msgstr "" 472 | 473 | #: animation-tweaks@Selenium-H/prefsGtk3.js:2044 474 | #: animation-tweaks@Selenium-H/prefsGtk4.js:2045 475 | msgid "Save Profile Changes?" 476 | msgstr "" 477 | 478 | #: animation-tweaks@Selenium-H/prefsGtk3.js:2045 479 | #: animation-tweaks@Selenium-H/prefsGtk4.js:2046 480 | msgid "" 481 | "\n" 482 | "Some changes to the current profile are not saved. Switching to another " 483 | "profile without saving them will discard them permanently\n" 484 | "\n" 485 | "Would you like to save the changes to current profile?." 486 | msgstr "" 487 | 488 | #: animation-tweaks@Selenium-H/prefsGtk3.js:2078 489 | #: animation-tweaks@Selenium-H/prefsGtk4.js:2079 490 | msgid "Export Profiles" 491 | msgstr "" 492 | 493 | #: animation-tweaks@Selenium-H/prefsGtk3.js:2214 494 | #: animation-tweaks@Selenium-H/prefsGtk3.js:2215 495 | #: animation-tweaks@Selenium-H/prefsGtk4.js:2215 496 | #: animation-tweaks@Selenium-H/prefsGtk4.js:2216 497 | msgid "Import" 498 | msgstr "" 499 | 500 | #: animation-tweaks@Selenium-H/prefsGtk3.js:2214 501 | #: animation-tweaks@Selenium-H/prefsGtk3.js:2215 502 | #: animation-tweaks@Selenium-H/prefsGtk4.js:2215 503 | #: animation-tweaks@Selenium-H/prefsGtk4.js:2216 504 | msgid "Export" 505 | msgstr "" 506 | 507 | #: animation-tweaks@Selenium-H/prefsGtk3.js:2214 508 | #: animation-tweaks@Selenium-H/prefsGtk4.js:2215 509 | msgid " Animation Tweaks Profile" 510 | msgstr "" 511 | 512 | #: animation-tweaks@Selenium-H/prefsGtk4.js:401 513 | msgid "" 514 | "\n" 515 | "Please make sure that\n" 516 | "\n" 517 | "You are upgrading from version 10 or newer of this extension to current " 518 | "version.\n" 519 | "Already Reset the extension during previous upgrade.\n" 520 | "The extension is working fine." 521 | msgstr "" 522 | 523 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:20 524 | msgid "Opening Effects [ for windows ]" 525 | msgstr "" 526 | 527 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:21 528 | msgid "Opening effect animation switch" 529 | msgstr "" 530 | 531 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:30 532 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:197 533 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:295 534 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:331 535 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:369 536 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:407 537 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:445 538 | msgid "Normal Windows" 539 | msgstr "" 540 | 541 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:31 542 | msgid "Animation settings for Normal Windows opening" 543 | msgstr "" 544 | 545 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:40 546 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:206 547 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:304 548 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:341 549 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:379 550 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:417 551 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:455 552 | msgid "Dialog Windows" 553 | msgstr "" 554 | 555 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:41 556 | msgid "Animation settings for Dialog Windows opening" 557 | msgstr "" 558 | 559 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:50 560 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:215 561 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:313 562 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:351 563 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:389 564 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:427 565 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:465 566 | msgid "Modal Dialog" 567 | msgstr "" 568 | 569 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:51 570 | msgid "Animation settings for Modal Dialog Windows opening" 571 | msgstr "" 572 | 573 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:60 574 | msgid "Dropdown Menu" 575 | msgstr "" 576 | 577 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:61 578 | msgid "Animation settings for Dropdown Menu opening" 579 | msgstr "" 580 | 581 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:70 582 | msgid "Pop Up Menu" 583 | msgstr "" 584 | 585 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:71 586 | msgid "Animation settings for Pop Up Menu opening" 587 | msgstr "" 588 | 589 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:80 590 | msgid "Combo Box" 591 | msgstr "" 592 | 593 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:81 594 | msgid "Animation settings for Combo Box opening" 595 | msgstr "" 596 | 597 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:90 598 | msgid "Splash Screen" 599 | msgstr "" 600 | 601 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:91 602 | msgid "Animation settings for Splash Screen opening" 603 | msgstr "" 604 | 605 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:100 606 | msgid "Tooltips" 607 | msgstr "" 608 | 609 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:101 610 | msgid "Animation settings for Tooltips opening" 611 | msgstr "" 612 | 613 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:110 614 | msgid "Overrides Others" 615 | msgstr "" 616 | 617 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:111 618 | msgid "Animation settings for Overrides Others opening" 619 | msgstr "" 620 | 621 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:120 622 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:224 623 | msgid "Notification Banner" 624 | msgstr "" 625 | 626 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:121 627 | msgid "Animation settings for Notification Banner opening" 628 | msgstr "" 629 | 630 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:130 631 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:233 632 | msgid "Pad OSD" 633 | msgstr "" 634 | 635 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:131 636 | msgid "Animation settings for Pad OSD opening" 637 | msgstr "" 638 | 639 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:140 640 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:242 641 | msgid "Top Panel Pop Up Menu" 642 | msgstr "" 643 | 644 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:141 645 | msgid "Animation settings for Top Panel Pop up Menu opening" 646 | msgstr "" 647 | 648 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:150 649 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:251 650 | msgid "Desktop Pop Up Menu" 651 | msgstr "" 652 | 653 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:151 654 | msgid "Animation settings for Desktop Pop up Menu opening" 655 | msgstr "" 656 | 657 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:160 658 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:260 659 | msgid "Window Menu" 660 | msgstr "" 661 | 662 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:161 663 | msgid "Animation settings for Window Menu opening" 664 | msgstr "" 665 | 666 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:170 667 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:269 668 | msgid "Session Ending Dialogs" 669 | msgstr "" 670 | 671 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:171 672 | msgid "Animation settings for Session Ending Dialogs opening" 673 | msgstr "" 674 | 675 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:180 676 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:181 677 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:278 678 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:279 679 | msgid "Dash App Icon Pop Up Menu" 680 | msgstr "" 681 | 682 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:188 683 | msgid "Closing Effects [ for windows ]" 684 | msgstr "" 685 | 686 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:189 687 | msgid "Closing effect for windows animation switch" 688 | msgstr "" 689 | 690 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:198 691 | msgid "Animation settings for Normal Windows closing" 692 | msgstr "" 693 | 694 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:207 695 | msgid "Animation settings for Dialog Windows closing" 696 | msgstr "" 697 | 698 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:216 699 | msgid "Animation settings for Modal Dialog Windows closing" 700 | msgstr "" 701 | 702 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:225 703 | msgid "Animation settings for Notification Banner closing" 704 | msgstr "" 705 | 706 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:234 707 | msgid "Animation settings for Pad OSD closing" 708 | msgstr "" 709 | 710 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:243 711 | msgid "Animation settings for Top Panel Pop Up Menu closing" 712 | msgstr "" 713 | 714 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:252 715 | msgid "Animation settings for Desktop Pop Up Menu closing" 716 | msgstr "" 717 | 718 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:261 719 | msgid "Animation settings for Window Menu closing" 720 | msgstr "" 721 | 722 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:270 723 | msgid "Animation settings for Session Ending Dialogs closing" 724 | msgstr "" 725 | 726 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:286 727 | msgid "Minimizing Effects" 728 | msgstr "" 729 | 730 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:287 731 | msgid "Minimizing effect animation switch" 732 | msgstr "" 733 | 734 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:296 735 | msgid "Animation settings for Normal Windows minimizing" 736 | msgstr "" 737 | 738 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:305 739 | msgid "Animation settings for Dialog Windows minimizing" 740 | msgstr "" 741 | 742 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:314 743 | msgid "" 744 | "Only provided so that shell does not crash if for any reason Modal Dialog " 745 | "Windows is minimzing" 746 | msgstr "" 747 | 748 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:321 749 | msgid "Unminimizing Effects" 750 | msgstr "" 751 | 752 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:322 753 | msgid "Unminimizing effect animation switch" 754 | msgstr "" 755 | 756 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:332 757 | msgid "Animation settings for Normal Windows unminimizing" 758 | msgstr "" 759 | 760 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:342 761 | msgid "Animation settings for Dialog Windows unminimzing" 762 | msgstr "" 763 | 764 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:352 765 | msgid "" 766 | "Only provided so that shell does not crash if for any reason Modal Dialog " 767 | "Windows is unminimzing" 768 | msgstr "" 769 | 770 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:359 771 | msgid "Focussing Effects" 772 | msgstr "" 773 | 774 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:360 775 | msgid "Focussing effect animation switch" 776 | msgstr "" 777 | 778 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:370 779 | msgid "Animation settings for Normal Windows focus" 780 | msgstr "" 781 | 782 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:380 783 | msgid "Animation settings for Dialog Windows focus" 784 | msgstr "" 785 | 786 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:390 787 | msgid "Animation settings for Modal Dialog Windows focus" 788 | msgstr "" 789 | 790 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:397 791 | msgid "Defocussing Effects" 792 | msgstr "" 793 | 794 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:398 795 | msgid "Defocussing effect animation switch" 796 | msgstr "" 797 | 798 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:408 799 | msgid "Animation settings for Normal Windows defocus" 800 | msgstr "" 801 | 802 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:418 803 | msgid "Animation settings for Dialog Windows defocus" 804 | msgstr "" 805 | 806 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:428 807 | msgid "Animation settings for Modal Dialog Windows defocus" 808 | msgstr "" 809 | 810 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:435 811 | msgid "Dragging Effects" 812 | msgstr "" 813 | 814 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:436 815 | msgid "Starting to move effect animation switch" 816 | msgstr "" 817 | 818 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:446 819 | msgid "Animation settings for Normal Windows start to move" 820 | msgstr "" 821 | 822 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:456 823 | msgid "Animation settings for Dialog Windows start to move" 824 | msgstr "" 825 | 826 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:466 827 | msgid "Animation settings for Modal Dialog Windows start to move" 828 | msgstr "" 829 | 830 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:479 831 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:480 832 | msgid "Dash App Icon" 833 | msgstr "" 834 | 835 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:487 836 | msgid "Application Profiles" 837 | msgstr "" 838 | 839 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:488 840 | msgid "Application profiles status switch" 841 | msgstr "" 842 | 843 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:494 844 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:495 845 | msgid "List of Applicaions for custom profiles" 846 | msgstr "" 847 | 848 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:501 849 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:502 850 | msgid "List of Applicaions names for custom profiles" 851 | msgstr "" 852 | 853 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:509 854 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:510 855 | msgid "Extension Profile Currently In Use" 856 | msgstr "" 857 | 858 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:517 859 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:518 860 | msgid "Integrate with Wayland" 861 | msgstr "" 862 | 863 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:523 864 | msgid "Integrate with other extensions" 865 | msgstr "" 866 | 867 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:524 868 | msgid "Integrate with Other extensions" 869 | msgstr "" 870 | 871 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:529 872 | msgid "Pad OSD hide timeout [ in ms ]" 873 | msgstr "" 874 | 875 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:530 876 | msgid "Time for which Pad OSD is Shown" 877 | msgstr "" 878 | 879 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:535 880 | msgid "Extension startup delay in [ in ms ]" 881 | msgstr "" 882 | 883 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:536 884 | msgid "Extension startup delay" 885 | msgstr "" 886 | 887 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:543 888 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:544 889 | msgid "Shortcut key combiation to disable extension" 890 | msgstr "" 891 | 892 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:551 893 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:552 894 | msgid "Show opposite actions preferences side by side" 895 | msgstr "" 896 | 897 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:557 898 | msgid "Show delay time in preferences" 899 | msgstr "" 900 | 901 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:558 902 | msgid "Show Delay Time in preferences" 903 | msgstr "" 904 | 905 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:565 906 | msgid "Version of Current Extension" 907 | msgstr "" 908 | 909 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:566 910 | msgid "" 911 | "Provided to ensure that extension is stopped incase of autoupdate from " 912 | "previous version to prevent unwanted effects" 913 | msgstr "" 914 | 915 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:571 916 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:572 917 | msgid "Signals the preferences to unlock save button" 918 | msgstr "" 919 | 920 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:577 921 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:578 922 | msgid "Signals the extension to reload" 923 | msgstr "" 924 | 925 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:583 926 | #: schemas/org.gnome.shell.extensions.animation-tweaks.gschema.xml:584 927 | msgid "Signals the extension to reload Application Profiles" 928 | msgstr "" 929 | 930 | #: Generated by update_pot.sh 931 | msgid "Bounce Down" 932 | msgstr "" 933 | 934 | #: Generated by update_pot.sh 935 | msgid "Bounce Left" 936 | msgstr "" 937 | 938 | #: Generated by update_pot.sh 939 | msgid "Bounce Right" 940 | msgstr "" 941 | 942 | #: Generated by update_pot.sh 943 | msgid "Bounce Up" 944 | msgstr "" 945 | 946 | #: Generated by update_pot.sh 947 | msgid "Compressed Slide Down" 948 | msgstr "" 949 | 950 | #: Generated by update_pot.sh 951 | msgid "Compressed Slide Left" 952 | msgstr "" 953 | 954 | #: Generated by update_pot.sh 955 | msgid "Compressed Slide Right" 956 | msgstr "" 957 | 958 | #: Generated by update_pot.sh 959 | msgid "Compressed Slide Up" 960 | msgstr "" 961 | 962 | #: Generated by update_pot.sh 963 | msgid "Deflate" 964 | msgstr "" 965 | 966 | #: Generated by update_pot.sh 967 | msgid "Fade" 968 | msgstr "" 969 | 970 | #: Generated by update_pot.sh 971 | msgid "Fade In" 972 | msgstr "" 973 | 974 | #: Generated by update_pot.sh 975 | msgid "Fade Out" 976 | msgstr "" 977 | 978 | #: Generated by update_pot.sh 979 | msgid "Fall and Bounce" 980 | msgstr "" 981 | 982 | #: Generated by update_pot.sh 983 | msgid "Fall Behind" 984 | msgstr "" 985 | 986 | #: Generated by update_pot.sh 987 | msgid "Flip Horizontally" 988 | msgstr "" 989 | 990 | #: Generated by update_pot.sh 991 | msgid "Flip Over" 992 | msgstr "" 993 | 994 | #: Generated by update_pot.sh 995 | msgid "Flipped Slide Down" 996 | msgstr "" 997 | 998 | #: Generated by update_pot.sh 999 | msgid "Flipped Slide Up" 1000 | msgstr "" 1001 | 1002 | #: Generated by update_pot.sh 1003 | msgid "Flip Vertically" 1004 | msgstr "" 1005 | 1006 | #: Generated by update_pot.sh 1007 | msgid "Float Up" 1008 | msgstr "" 1009 | 1010 | #: Generated by update_pot.sh 1011 | msgid "Fold In Sideways" 1012 | msgstr "" 1013 | 1014 | #: Generated by update_pot.sh 1015 | msgid "Fold In Vertically" 1016 | msgstr "" 1017 | 1018 | #: Generated by update_pot.sh 1019 | msgid "Fold Out Sideways" 1020 | msgstr "" 1021 | 1022 | #: Generated by update_pot.sh 1023 | msgid "Fold Out Vertically" 1024 | msgstr "" 1025 | 1026 | #: Generated by update_pot.sh 1027 | msgid "Inflate" 1028 | msgstr "" 1029 | 1030 | #: Generated by update_pot.sh 1031 | msgid "Magnify" 1032 | msgstr "" 1033 | 1034 | #: Generated by update_pot.sh 1035 | msgid "None" 1036 | msgstr "" 1037 | 1038 | #: Generated by update_pot.sh 1039 | msgid "Random" 1040 | msgstr "" 1041 | 1042 | #: Generated by update_pot.sh 1043 | msgid "Rotate In Down" 1044 | msgstr "" 1045 | 1046 | #: Generated by update_pot.sh 1047 | msgid "Rotate In Left" 1048 | msgstr "" 1049 | 1050 | #: Generated by update_pot.sh 1051 | msgid "Rotate In Right" 1052 | msgstr "" 1053 | 1054 | #: Generated by update_pot.sh 1055 | msgid "Rotate In Up" 1056 | msgstr "" 1057 | 1058 | #: Generated by update_pot.sh 1059 | msgid "Rotate Out Down" 1060 | msgstr "" 1061 | 1062 | #: Generated by update_pot.sh 1063 | msgid "Rotate Out Left" 1064 | msgstr "" 1065 | 1066 | #: Generated by update_pot.sh 1067 | msgid "Rotate Out Right" 1068 | msgstr "" 1069 | 1070 | #: Generated by update_pot.sh 1071 | msgid "Rotate Out Up" 1072 | msgstr "" 1073 | 1074 | #: Generated by update_pot.sh 1075 | msgid "Scale Auto In" 1076 | msgstr "" 1077 | 1078 | #: Generated by update_pot.sh 1079 | msgid "Scale Auto Out" 1080 | msgstr "" 1081 | 1082 | #: Generated by update_pot.sh 1083 | msgid "Scale Down" 1084 | msgstr "" 1085 | 1086 | #: Generated by update_pot.sh 1087 | msgid "Scale Left" 1088 | msgstr "" 1089 | 1090 | #: Generated by update_pot.sh 1091 | msgid "Scale Right" 1092 | msgstr "" 1093 | 1094 | #: Generated by update_pot.sh 1095 | msgid "Scale Up" 1096 | msgstr "" 1097 | 1098 | #: Generated by update_pot.sh 1099 | msgid "Slide Down" 1100 | msgstr "" 1101 | 1102 | #: Generated by update_pot.sh 1103 | msgid "Slide Left" 1104 | msgstr "" 1105 | 1106 | #: Generated by update_pot.sh 1107 | msgid "Slide Right" 1108 | msgstr "" 1109 | 1110 | #: Generated by update_pot.sh 1111 | msgid "Slide Up" 1112 | msgstr "" 1113 | 1114 | #: Generated by update_pot.sh 1115 | msgid "Spinning Slide Down" 1116 | msgstr "" 1117 | 1118 | #: Generated by update_pot.sh 1119 | msgid "Spinning Slide Left" 1120 | msgstr "" 1121 | 1122 | #: Generated by update_pot.sh 1123 | msgid "Spinning Slide Right" 1124 | msgstr "" 1125 | 1126 | #: Generated by update_pot.sh 1127 | msgid "Spinning Slide Up" 1128 | msgstr "" 1129 | 1130 | #: Generated by update_pot.sh 1131 | msgid "Squeezed Slide Down" 1132 | msgstr "" 1133 | 1134 | #: Generated by update_pot.sh 1135 | msgid "Squeezed Slide Left" 1136 | msgstr "" 1137 | 1138 | #: Generated by update_pot.sh 1139 | msgid "Squeezed Slide Right" 1140 | msgstr "" 1141 | 1142 | #: Generated by update_pot.sh 1143 | msgid "Squeezed Slide Up" 1144 | msgstr "" 1145 | 1146 | #: Generated by update_pot.sh 1147 | msgid "Unmagnify" 1148 | msgstr "" 1149 | 1150 | #: Generated by update_pot.sh 1151 | msgid "Wiggle" 1152 | msgstr "" 1153 | 1154 | #: Generated by update_pot.sh 1155 | msgid "Zoom In" 1156 | msgstr "" 1157 | 1158 | #: Generated by update_pot.sh 1159 | msgid "Zoom Out" 1160 | msgstr "" 1161 | 1162 | #: Generated by update_pot.sh 1163 | msgid "Add animations to different items and customize them.\n\nPlease reset the extension after updating.\nThe Extension will stop when upgraded to an incompatible version.\nIn that case an Update tab is created to easily reset the extension.\nA Reset menu entry is also always present in in the Top Right Application menu of the extension preferences window.\nA Default shortcut combination of Super Key + t is provided to disable the extension.\n\nSome effects might not work properly on wayland, for which an option to integrate with wayland is provided on Integrations tab.\nHowever, some animations might not work properly.\n\nTo manage effect Delay time enable Show delay time in preferences Window from Top Right Application menu -> Preferences\nand reopen preferences." 1164 | msgstr "" 1165 | 1166 | #: Generated by update_pot.sh 1167 | msgid "Add animations to different items and customize them." 1168 | msgstr "" 1169 | --------------------------------------------------------------------------------