Compare commits

...

7 Commits

Author SHA1 Message Date
Florian Müllner 7d2be7d30d Bump version to 3.24.3
Update NEWS.
2017-07-20 00:52:42 +02:00
Marek Cernocky f70ec07a06 Updated Czech translation 2017-07-10 16:49:47 +02:00
Kukuh Syafaat 17da4ed123 Update Indonesian translation 2017-07-10 09:27:59 +00:00
Florian Heiser 9aa1aaaafd Update German translation 2017-07-07 19:38:41 +00:00
Piotr Drąg 68fd6944fa Update Polish translation 2017-07-06 16:31:20 +02:00
Florian Müllner 1149c9d163 screenshot-window-sizer: Add explicit keybinding for backward cycling
The REVERSES flag was removed from Meta.KeyBindingFlags a while ago, as
gnome-control-center doesn't recognize it and the corresponding "magic"
shift handling. That is, nowadays reversible keybindings need to
provide an explicit reversed binding.

https://bugzilla.gnome.org/show_bug.cgi?id=784079
2017-07-05 17:07:23 +02:00
Florian Müllner b1c45a618e Bump version to 3.24.2
Update NEWS.
2017-05-11 15:18:59 +02:00
8 changed files with 82 additions and 45 deletions
+11
View File
@@ -1,3 +1,14 @@
3.24.3
======
* screenshot-window-sizer: Fix backward cycling
* updated translations (cs, de, id, pl)
3.24.2
======
* apps-menu: Mark copied launchers as trusted
* places-menu: Make icon lookup asynchronous
* updated translations (hr)
3.24.1 3.24.1
====== ======
* apps-menu: Allow creating desktop launchers via DND * apps-menu: Allow creating desktop launchers via DND
+1 -1
View File
@@ -1,5 +1,5 @@
AC_PREREQ(2.63) AC_PREREQ(2.63)
AC_INIT([gnome-shell-extensions],[3.24.1],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions]) AC_INIT([gnome-shell-extensions],[3.24.3],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config]) AC_CONFIG_AUX_DIR([config])
@@ -147,11 +147,18 @@ function init() {
function enable() { function enable() {
Main.wm.addKeybinding('cycle-screenshot-sizes', Main.wm.addKeybinding('cycle-screenshot-sizes',
Convenience.getSettings(), Convenience.getSettings(),
Meta.KeyBindingFlags.PER_WINDOW | Meta.KeyBindingFlags.REVERSES, Meta.KeyBindingFlags.PER_WINDOW,
Shell.ActionMode.NORMAL,
cycleScreenshotSizes);
Main.wm.addKeybinding('cycle-screenshot-sizes-backward',
Convenience.getSettings(),
Meta.KeyBindingFlags.PER_WINDOW |
Meta.KeyBindingFlags.IS_REVERSED,
Shell.ActionMode.NORMAL, Shell.ActionMode.NORMAL,
cycleScreenshotSizes); cycleScreenshotSizes);
} }
function disable() { function disable() {
Main.wm.removeKeybinding('cycle-screenshot-sizes'); Main.wm.removeKeybinding('cycle-screenshot-sizes');
Main.wm.removeKeybinding('cycle-screenshot-sizes-backward');
} }
@@ -6,5 +6,9 @@
<default><![CDATA[['<Alt><Control>s']]]></default> <default><![CDATA[['<Alt><Control>s']]]></default>
<summary>Cycle Screenshot Sizes</summary> <summary>Cycle Screenshot Sizes</summary>
</key> </key>
<key type="as" name="cycle-screenshot-sizes-backward">
<default><![CDATA[['<Shift><Alt><Control>s']]]></default>
<summary>Cycle Screenshot Sizes Backward</summary>
</key>
</schema> </schema>
</schemalist> </schemalist>
+14 -11
View File
@@ -6,11 +6,11 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions gnome-3.24\n"
"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=extensions\n" "shell&keywords=I18N+L10N&component=extensions\n"
"POT-Creation-Date: 2017-02-22 18:40+0000\n" "POT-Creation-Date: 2017-07-05 15:07+0000\n"
"PO-Revision-Date: 2017-03-08 17:42+0100\n" "PO-Revision-Date: 2017-07-10 16:48+0200\n"
"Last-Translator: Marek Černocký <marek@manet.cz>\n" "Last-Translator: Marek Černocký <marek@manet.cz>\n"
"Language-Team: Czech <gnome-cs-list@gnome.org>\n" "Language-Team: Czech <gnome-cs-list@gnome.org>\n"
"Language: cs\n" "Language: cs\n"
@@ -84,15 +84,15 @@ msgstr "Představovat okna jako"
msgid "Show only windows in the current workspace" msgid "Show only windows in the current workspace"
msgstr "Zobrazovat pouze okna z aktuální pracovní plochy" msgstr "Zobrazovat pouze okna z aktuální pracovní plochy"
#: extensions/apps-menu/extension.js:38 #: extensions/apps-menu/extension.js:41
msgid "Activities Overview" msgid "Activities Overview"
msgstr "Přehled činností" msgstr "Přehled činností"
#: extensions/apps-menu/extension.js:109 #: extensions/apps-menu/extension.js:141
msgid "Favorites" msgid "Favorites"
msgstr "Oblíbené" msgstr "Oblíbené"
#: extensions/apps-menu/extension.js:266 #: extensions/apps-menu/extension.js:436
msgid "Applications" msgid "Applications"
msgstr "Aplikace" msgstr "Aplikace"
@@ -211,16 +211,16 @@ msgstr "Místa"
msgid "Failed to launch “%s”" msgid "Failed to launch “%s”"
msgstr "Selhalo spuštění „%s“" msgstr "Selhalo spuštění „%s“"
#: extensions/places-menu/placeDisplay.js:101 #: extensions/places-menu/placeDisplay.js:108
#: extensions/places-menu/placeDisplay.js:124 #: extensions/places-menu/placeDisplay.js:131
msgid "Computer" msgid "Computer"
msgstr "Počítač" msgstr "Počítač"
#: extensions/places-menu/placeDisplay.js:267 #: extensions/places-menu/placeDisplay.js:274
msgid "Home" msgid "Home"
msgstr "Domů" msgstr "Domů"
#: extensions/places-menu/placeDisplay.js:311 #: extensions/places-menu/placeDisplay.js:318
msgid "Browse Network" msgid "Browse Network"
msgstr "Procházet síť" msgstr "Procházet síť"
@@ -228,6 +228,10 @@ msgstr "Procházet síť"
msgid "Cycle Screenshot Sizes" msgid "Cycle Screenshot Sizes"
msgstr "Mění velikost pro snímky obrazovky" msgstr "Mění velikost pro snímky obrazovky"
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:11
msgid "Cycle Screenshot Sizes Backward"
msgstr "Mění pozpátku velikost pro snímky obrazovky"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5 #: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5
msgid "Theme name" msgid "Theme name"
msgstr "Název motivu" msgstr "Název motivu"
@@ -341,4 +345,3 @@ msgstr "Název"
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Pracovní plocha %d" msgstr "Pracovní plocha %d"
+15 -11
View File
@@ -12,16 +12,16 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=extensions\n" "shell&keywords=I18N+L10N&component=extensions\n"
"POT-Creation-Date: 2017-02-22 18:40+0000\n" "POT-Creation-Date: 2017-07-05 15:07+0000\n"
"PO-Revision-Date: 2017-02-28 20:40+0100\n" "PO-Revision-Date: 2017-07-05 11:56-0400\n"
"Last-Translator: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>\n" "Last-Translator: Florian Heiser <gnu.l10n.de@gmail.com>\n"
"Language-Team: Deutsch <gnome-de@gnome.org>\n" "Language-Team: Deutsch <gnome-de@gnome.org>\n"
"Language: de\n" "Language: de\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 1.6.10\n" "X-Generator: Poedit 1.8.12\n"
#: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -93,15 +93,15 @@ msgstr "Fenster darstellen als"
msgid "Show only windows in the current workspace" msgid "Show only windows in the current workspace"
msgstr "Nur Fenster der aktuellen Arbeitsfläche anzeigen" msgstr "Nur Fenster der aktuellen Arbeitsfläche anzeigen"
#: extensions/apps-menu/extension.js:38 #: extensions/apps-menu/extension.js:41
msgid "Activities Overview" msgid "Activities Overview"
msgstr "Aktivitäten-Übersicht" msgstr "Aktivitäten-Übersicht"
#: extensions/apps-menu/extension.js:109 #: extensions/apps-menu/extension.js:141
msgid "Favorites" msgid "Favorites"
msgstr "Favoriten" msgstr "Favoriten"
#: extensions/apps-menu/extension.js:266 #: extensions/apps-menu/extension.js:436
msgid "Applications" msgid "Applications"
msgstr "Anwendungen" msgstr "Anwendungen"
@@ -224,16 +224,16 @@ msgstr "Orte"
msgid "Failed to launch “%s”" msgid "Failed to launch “%s”"
msgstr "Starten von »%s« fehlgeschlagen" msgstr "Starten von »%s« fehlgeschlagen"
#: extensions/places-menu/placeDisplay.js:101 #: extensions/places-menu/placeDisplay.js:108
#: extensions/places-menu/placeDisplay.js:124 #: extensions/places-menu/placeDisplay.js:131
msgid "Computer" msgid "Computer"
msgstr "Rechner" msgstr "Rechner"
#: extensions/places-menu/placeDisplay.js:267 #: extensions/places-menu/placeDisplay.js:274
msgid "Home" msgid "Home"
msgstr "Persönlicher Ordner" msgstr "Persönlicher Ordner"
#: extensions/places-menu/placeDisplay.js:311 #: extensions/places-menu/placeDisplay.js:318
msgid "Browse Network" msgid "Browse Network"
msgstr "Netzwerk durchsuchen" msgstr "Netzwerk durchsuchen"
@@ -241,6 +241,10 @@ msgstr "Netzwerk durchsuchen"
msgid "Cycle Screenshot Sizes" msgid "Cycle Screenshot Sizes"
msgstr "Bildschirmfotogrößen nacheinander anzeigen" msgstr "Bildschirmfotogrößen nacheinander anzeigen"
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:11
msgid "Cycle Screenshot Sizes Backward"
msgstr "Bildschirmfotogrößen in umgekehrter Reihenfolge anzeigen"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5 #: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5
msgid "Theme name" msgid "Theme name"
msgstr "Themenname" msgstr "Themenname"
+15 -11
View File
@@ -7,10 +7,10 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=extensions\n" "shell&keywords=I18N+L10N&component=extensions\n"
"POT-Creation-Date: 2017-02-16 01:20+0000\n" "POT-Creation-Date: 2017-07-05 15:07+0000\n"
"PO-Revision-Date: 2017-02-21 16:47+0700\n" "PO-Revision-Date: 2017-07-07 11:19+0700\n"
"Last-Translator: Kukuh Syafaat <syafaatkukuh@gmail.com>\n" "Last-Translator: Kukuh Syafaat <syafaatkukuh@gmail.com>\n"
"Language-Team: Indonesian <gnome@i15n.org>\n" "Language-Team: Indonesian <gnome@i15n.org>\n"
"Language: id\n" "Language: id\n"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SourceCharset: UTF-8\n"
"X-Generator: Poedit 1.8.11\n" "X-Generator: Poedit 2.0.2\n"
#: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -88,15 +88,15 @@ msgstr "Sajikan jendela sebagai"
msgid "Show only windows in the current workspace" msgid "Show only windows in the current workspace"
msgstr "Hanya tampilkan jendela dalam ruang kerja kini" msgstr "Hanya tampilkan jendela dalam ruang kerja kini"
#: extensions/apps-menu/extension.js:38 #: extensions/apps-menu/extension.js:41
msgid "Activities Overview" msgid "Activities Overview"
msgstr "Ringkasan Aktivitas" msgstr "Ringkasan Aktivitas"
#: extensions/apps-menu/extension.js:109 #: extensions/apps-menu/extension.js:141
msgid "Favorites" msgid "Favorites"
msgstr "Favorit" msgstr "Favorit"
#: extensions/apps-menu/extension.js:266 #: extensions/apps-menu/extension.js:436
msgid "Applications" msgid "Applications"
msgstr "Aplikasi" msgstr "Aplikasi"
@@ -217,16 +217,16 @@ msgstr "Tempat"
msgid "Failed to launch “%s”" msgid "Failed to launch “%s”"
msgstr "Gagal meluncurkan \"%s\"" msgstr "Gagal meluncurkan \"%s\""
#: extensions/places-menu/placeDisplay.js:101 #: extensions/places-menu/placeDisplay.js:108
#: extensions/places-menu/placeDisplay.js:124 #: extensions/places-menu/placeDisplay.js:131
msgid "Computer" msgid "Computer"
msgstr "Komputer" msgstr "Komputer"
#: extensions/places-menu/placeDisplay.js:267 #: extensions/places-menu/placeDisplay.js:274
msgid "Home" msgid "Home"
msgstr "Rumah" msgstr "Rumah"
#: extensions/places-menu/placeDisplay.js:311 #: extensions/places-menu/placeDisplay.js:318
msgid "Browse Network" msgid "Browse Network"
msgstr "Ramban Jaringan" msgstr "Ramban Jaringan"
@@ -234,6 +234,10 @@ msgstr "Ramban Jaringan"
msgid "Cycle Screenshot Sizes" msgid "Cycle Screenshot Sizes"
msgstr "Berpindah Antar Ukuran Cuplikan Layar" msgstr "Berpindah Antar Ukuran Cuplikan Layar"
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:11
msgid "Cycle Screenshot Sizes Backward"
msgstr "Berpindah Antar Ukuran Cuplikan Layar Mundur"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5 #: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5
msgid "Theme name" msgid "Theme name"
msgstr "Nama tema" msgstr "Nama tema"
+14 -10
View File
@@ -7,10 +7,10 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions\n" "Project-Id-Version: gnome-shell-extensions\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=extensions\n" "shell&keywords=I18N+L10N&component=extensions\n"
"POT-Creation-Date: 2017-02-16 01:20+0000\n" "POT-Creation-Date: 2017-07-05 15:07+0000\n"
"PO-Revision-Date: 2017-02-19 21:50+0100\n" "PO-Revision-Date: 2017-07-06 16:30+0200\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Polish <community-poland@mozilla.org>\n" "Language-Team: Polish <community-poland@mozilla.org>\n"
"Language: pl\n" "Language: pl\n"
@@ -90,15 +90,15 @@ msgstr "Wyświetlanie okien jako"
msgid "Show only windows in the current workspace" msgid "Show only windows in the current workspace"
msgstr "Wyświetlanie tylko okien w bieżącym obszarze roboczym" msgstr "Wyświetlanie tylko okien w bieżącym obszarze roboczym"
#: extensions/apps-menu/extension.js:38 #: extensions/apps-menu/extension.js:41
msgid "Activities Overview" msgid "Activities Overview"
msgstr "Ekran podglądu" msgstr "Ekran podglądu"
#: extensions/apps-menu/extension.js:109 #: extensions/apps-menu/extension.js:141
msgid "Favorites" msgid "Favorites"
msgstr "Ulubione" msgstr "Ulubione"
#: extensions/apps-menu/extension.js:266 #: extensions/apps-menu/extension.js:436
msgid "Applications" msgid "Applications"
msgstr "Programy" msgstr "Programy"
@@ -218,16 +218,16 @@ msgstr "Miejsca"
msgid "Failed to launch “%s”" msgid "Failed to launch “%s”"
msgstr "Uruchomienie „%s” się nie powiodło" msgstr "Uruchomienie „%s” się nie powiodło"
#: extensions/places-menu/placeDisplay.js:101 #: extensions/places-menu/placeDisplay.js:108
#: extensions/places-menu/placeDisplay.js:124 #: extensions/places-menu/placeDisplay.js:131
msgid "Computer" msgid "Computer"
msgstr "Komputer" msgstr "Komputer"
#: extensions/places-menu/placeDisplay.js:267 #: extensions/places-menu/placeDisplay.js:274
msgid "Home" msgid "Home"
msgstr "Katalog domowy" msgstr "Katalog domowy"
#: extensions/places-menu/placeDisplay.js:311 #: extensions/places-menu/placeDisplay.js:318
msgid "Browse Network" msgid "Browse Network"
msgstr "Przeglądaj sieć" msgstr "Przeglądaj sieć"
@@ -235,6 +235,10 @@ msgstr "Przeglądaj sieć"
msgid "Cycle Screenshot Sizes" msgid "Cycle Screenshot Sizes"
msgstr "Zmiana rozmiaru zrzutu ekranu" msgstr "Zmiana rozmiaru zrzutu ekranu"
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:11
msgid "Cycle Screenshot Sizes Backward"
msgstr "Zmiana rozmiaru zrzutu ekranu wstecz"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5 #: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5
msgid "Theme name" msgid "Theme name"
msgstr "Nazwa motywu" msgstr "Nazwa motywu"