Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnome-shell-extensions for openSUSE:Factory checked in at 2021-12-16 21:19:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-shell-extensions (Old) and /work/SRC/openSUSE:Factory/.gnome-shell-extensions.new.2520 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-shell-extensions" Thu Dec 16 21:19:25 2021 rev:119 rq:940311 version:41.1 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-shell-extensions/gnome-shell-extensions.changes 2021-10-12 21:50:08.267939101 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-shell-extensions.new.2520/gnome-shell-extensions.changes 2021-12-16 21:20:22.862545640 +0100 @@ -1,0 +2,9 @@ +Mon Dec 13 16:10:45 UTC 2021 - Bj??rn Lie <bjorn....@gmail.com> + +- Update to version 41.1: + + native-window-placement: Fix distorted layout in app grid. + + window-list: Fix on-screen keyboard. + + Misc. bug fixes. + + Updated translations. + +------------------------------------------------------------------- Old: ---- gnome-shell-extensions-41.0.tar.xz New: ---- gnome-shell-extensions-41.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-shell-extensions.spec ++++++ --- /var/tmp/diff_new_pack.bYkQNe/_old 2021-12-16 21:20:23.354545827 +0100 +++ /var/tmp/diff_new_pack.bYkQNe/_new 2021-12-16 21:20:23.358545829 +0100 @@ -19,7 +19,7 @@ %global __requires_exclude typelib\\(Meta\\) Name: gnome-shell-extensions -Version: 41.0 +Version: 41.1 Release: 0 Summary: A collection of extensions for GNOME Shell License: GPL-2.0-or-later ++++++ gnome-shell-extensions-41.0.tar.xz -> gnome-shell-extensions-41.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-shell-extensions-41.0/NEWS new/gnome-shell-extensions-41.1/NEWS --- old/gnome-shell-extensions-41.0/NEWS 2021-09-19 15:37:44.583383800 +0200 +++ new/gnome-shell-extensions-41.1/NEWS 2021-12-11 14:32:22.467889500 +0100 @@ -1,3 +1,15 @@ +41.1 +==== +* native-window-placement: Fix distorted layout in app grid [Sebastian; !189] +* window-list: Fix on-screen keyboard [Florian; !199] +* Misc. bug fixes [Neal; !195] + +Contributors: + Neal Gompa, Sebastian Keller, Florian M??llner + +Translators: + Goran Vidovi?? [hr], Sveinn ?? Felli [is] + 41.0 ==== * Bump version diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-shell-extensions-41.0/data/gnome-classic.desktop.in new/gnome-shell-extensions-41.1/data/gnome-classic.desktop.in --- old/gnome-shell-extensions-41.0/data/gnome-classic.desktop.in 2021-09-19 15:37:44.587383700 +0200 +++ new/gnome-shell-extensions-41.1/data/gnome-classic.desktop.in 2021-12-11 14:32:22.469889400 +0100 @@ -5,3 +5,4 @@ TryExec=gnome-session Type=Application DesktopNames=GNOME-Classic;GNOME; +X-GDM-SessionRegisters=true diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-shell-extensions-41.0/extensions/native-window-placement/stylesheet.css new/gnome-shell-extensions-41.1/extensions/native-window-placement/stylesheet.css --- old/gnome-shell-extensions-41.0/extensions/native-window-placement/stylesheet.css 2021-09-19 15:37:44.587383700 +0200 +++ new/gnome-shell-extensions-41.1/extensions/native-window-placement/stylesheet.css 2021-12-11 14:32:22.473889400 +0100 @@ -1,9 +1 @@ -.window-caption { - -shell-caption-spacing: 13px; /* current caption height is 26px => set it to half of it. TODO: better solution needed */ -} - -.window-picker { - -horizontal-spacing: 32px; - -vertical-spacing: 32px; - padding: 64px 32px; -} \ No newline at end of file +/* This extensions requires no special styling */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-shell-extensions-41.0/extensions/window-list/extension.js new/gnome-shell-extensions-41.1/extensions/window-list/extension.js --- old/gnome-shell-extensions-41.0/extensions/window-list/extension.js 2021-09-19 15:37:44.591384000 +0200 +++ new/gnome-shell-extensions-41.1/extensions/window-list/extension.js 2021-12-11 14:32:22.476889400 +0100 @@ -925,11 +925,8 @@ } _updateKeyboardAnchor() { - if (!Main.keyboard.keyboardActor) - return; - - let translationY = Main.overview.visible ? 0 : this.height; - Main.keyboard.keyboardActor.translation_y = -translationY; + const translationY = Main.overview.visible ? 0 : this.height; + Main.layoutManager.keyboardBox.translation_y = -translationY; } _onAppStateChanged(appSys, app) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-shell-extensions-41.0/meson.build new/gnome-shell-extensions-41.1/meson.build --- old/gnome-shell-extensions-41.0/meson.build 2021-09-19 15:37:44.599384300 +0200 +++ new/gnome-shell-extensions-41.1/meson.build 2021-12-11 14:32:22.479889400 +0100 @@ -1,5 +1,5 @@ project('gnome-shell-extensions', - version: '41.0', + version: '41.1', meson_version: '>= 0.53.0', license: 'GPL2+' ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-shell-extensions-41.0/po/hr.po new/gnome-shell-extensions-41.1/po/hr.po --- old/gnome-shell-extensions-41.0/po/hr.po 2021-09-19 15:37:44.607384700 +0200 +++ new/gnome-shell-extensions-41.1/po/hr.po 2021-12-11 14:32:22.487889500 +0100 @@ -8,8 +8,8 @@ "Project-Id-Version: gnome-shell-extensions master\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "issues\n" -"POT-Creation-Date: 2020-05-28 00:55+0000\n" -"PO-Revision-Date: 2020-08-20 00:38+0200\n" +"POT-Creation-Date: 2021-07-19 15:59+0000\n" +"PO-Revision-Date: 2021-09-23 16:37+0200\n" "Last-Translator: gogo <linux...@protonmail.com>\n" "Language-Team: Croatian <h...@li.org>\n" "Language: hr\n" @@ -18,9 +18,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.0\n" -#: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 +#: data/gnome-classic.desktop.in:3 msgid "GNOME Classic" msgstr "GNOME klasi??an" @@ -32,7 +32,7 @@ msgid "Favorites" msgstr "Omiljeni" -#: extensions/apps-menu/extension.js:369 +#: extensions/apps-menu/extension.js:367 msgid "Applications" msgstr "Aplikacije" @@ -52,22 +52,22 @@ msgid "Workspace Rules" msgstr "Pravila radnog prostora" -#: extensions/auto-move-windows/prefs.js:243 +#: extensions/auto-move-windows/prefs.js:237 msgid "Add Rule" msgstr "Dodaj pravilo" #. TRANSLATORS: %s is the filesystem name -#: extensions/drive-menu/extension.js:112 +#: extensions/drive-menu/extension.js:134 #: extensions/places-menu/placeDisplay.js:233 #, javascript-format msgid "Ejecting drive ???%s??? failed:" msgstr "Izbacivanje ure??aja ???%s??? neuspjelo:" -#: extensions/drive-menu/extension.js:128 +#: extensions/drive-menu/extension.js:150 msgid "Removable devices" msgstr "Prijenosni ure??aji" -#: extensions/drive-menu/extension.js:155 +#: extensions/drive-menu/extension.js:172 msgid "Open Files" msgstr "Otvori datoteku" @@ -101,7 +101,7 @@ "ponovno pokretanje ljuske kako bi se primijenila." #: extensions/places-menu/extension.js:89 -#: extensions/places-menu/extension.js:93 +#: extensions/places-menu/extension.js:92 msgid "Places" msgstr "Lokacije" @@ -164,27 +164,27 @@ msgid "Maximize" msgstr "Uve??aj" -#: extensions/window-list/extension.js:428 +#: extensions/window-list/extension.js:432 msgid "Minimize all" msgstr "Smanji sve" -#: extensions/window-list/extension.js:434 +#: extensions/window-list/extension.js:438 msgid "Unminimize all" msgstr "Vrati sve" -#: extensions/window-list/extension.js:440 +#: extensions/window-list/extension.js:444 msgid "Maximize all" msgstr "Uve??aj sve" -#: extensions/window-list/extension.js:448 +#: extensions/window-list/extension.js:452 msgid "Unmaximize all" msgstr "Prika??i u prozoru sve" -#: extensions/window-list/extension.js:456 +#: extensions/window-list/extension.js:460 msgid "Close all" msgstr "Zatvori sve" -#: extensions/window-list/extension.js:734 +#: extensions/window-list/extension.js:737 msgid "Window List" msgstr "Popis prozora" @@ -228,7 +228,7 @@ #: extensions/window-list/prefs.js:58 msgid "Never group windows" -msgstr "Nikada grupiraj prozore" +msgstr "Ne grupiraj prozore" #: extensions/window-list/prefs.js:59 msgid "Group windows when space is limited" @@ -242,8 +242,8 @@ msgid "Show on all monitors" msgstr "Prika??i na svim zaslonima" -#: extensions/window-list/workspaceIndicator.js:207 -#: extensions/workspace-indicator/extension.js:213 +#: extensions/window-list/workspaceIndicator.js:249 +#: extensions/workspace-indicator/extension.js:255 msgid "Workspace Indicator" msgstr "Indikator radnog prostora" @@ -256,7 +256,7 @@ msgid "Workspace %d" msgstr "Radni prostor %d" -#: extensions/workspace-indicator/prefs.js:218 +#: extensions/workspace-indicator/prefs.js:208 msgid "Add Workspace" msgstr "Dodaj radni prostor" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-shell-extensions-41.0/po/is.po new/gnome-shell-extensions-41.1/po/is.po --- old/gnome-shell-extensions-41.0/po/is.po 2021-09-19 15:37:44.607384700 +0200 +++ new/gnome-shell-extensions-41.1/po/is.po 2021-12-11 14:32:22.488889500 +0100 @@ -1,14 +1,14 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # -# Sveinn ?? Felli <s...@fellsnet.is>, 2015, 2017. +# Sveinn ?? Felli <s...@fellsnet.is>, 2015, 2017, 2021. msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" -"shell&keywords=I18N+L10N&component=extensions\n" -"POT-Creation-Date: 2017-08-11 01:33+0000\n" -"PO-Revision-Date: 2017-09-08 06:07+0000\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/is" +"sues\n" +"POT-Creation-Date: 2021-07-19 15:59+0000\n" +"PO-Revision-Date: 2021-09-29 07:48+0000\n" "Last-Translator: Sveinn ?? Felli <s...@fellsnet.is>\n" "Language-Team: Icelandic <translation-team...@lists.sourceforge.net>\n" "Language: is\n" @@ -16,9 +16,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 19.12.3\n" -#: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 +#: data/gnome-classic.desktop.in:3 msgid "GNOME Classic" msgstr "GNOME Klass??k" @@ -26,74 +26,11 @@ msgid "This session logs you into GNOME Classic" msgstr "??essi seta skr??ir ??ig inn ?? klass??skt GNOME" -#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:7 -msgid "Attach modal dialog to the parent window" -msgstr "Festa kva??ningarglugga vi?? yfirglugga" - -#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:8 -#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:25 -#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:33 -#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:41 -msgid "" -"This key overrides the key in org.gnome.mutter when running GNOME Shell." -msgstr "" -"??etta hefur forgang fram yfir lykilinn ?? kj??rstillingum org.gnome.mutter " -"??egar GNOME Skelin er keyr??." - -#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:16 -msgid "Arrangement of buttons on the titlebar" -msgstr "Sta??setning hnappa ?? tiltilr??nd" - -#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:17 -msgid "" -"This key overrides the key in org.gnome.desktop.wm.preferences when running " -"GNOME Shell." -msgstr "" -"??etta hefur forgang fram yfir lykilinn ?? kj??rstillingum org.gnome.desktop.wm." -"??egar GNOME Skelin er keyr??." - -#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:24 -msgid "Enable edge tiling when dropping windows on screen edges" -msgstr "Virkja fl??sal??gn vi?? ja??ra ??egar gluggum er sleppt ?? skj??ja??ra" - -#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:32 -msgid "Workspaces only on primary monitor" -msgstr "Vinnusv????i einungis ?? a??alskj??" - -#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:40 -msgid "Delay focus changes in mouse mode until the pointer stops moving" -msgstr "" -"Fresta breytingum ?? virkni ?? m??sarham ??ar til bendillinn hefur st????vast" - -#: extensions/alternate-tab/prefs.js:20 -msgid "Thumbnail only" -msgstr "Einungis sm??mynd" - -#: extensions/alternate-tab/prefs.js:21 -msgid "Application icon only" -msgstr "Einungis t??knmynd forrits" - -#: extensions/alternate-tab/prefs.js:22 -msgid "Thumbnail and application icon" -msgstr "Sm??mynd og t??knmynd" - -#: extensions/alternate-tab/prefs.js:38 -msgid "Present windows as" -msgstr "Birta glugga sem" - -#: extensions/alternate-tab/prefs.js:69 -msgid "Show only windows in the current workspace" -msgstr "Birta eing??ngu glugga ?? n??verandi vinnusv????i" - -#: extensions/apps-menu/extension.js:41 -msgid "Activities Overview" -msgstr "Virkniyfirlit" - -#: extensions/apps-menu/extension.js:141 +#: extensions/apps-menu/extension.js:113 msgid "Favorites" msgstr "Eftirl??ti" -#: extensions/apps-menu/extension.js:436 +#: extensions/apps-menu/extension.js:367 msgid "Applications" msgstr "Forrit" @@ -109,75 +46,30 @@ "Listi yfir textastrengi, ??ar sem hver ??eirra inniheldur forritsau??kenni " "(heiti skj??bor??sskr??r) a?? vi??b??ttum tv??punkti og svo n??meri vinnusv????is" -#: extensions/auto-move-windows/prefs.js:60 -msgid "Application" -msgstr "Forrit" +#: extensions/auto-move-windows/prefs.js:35 +#| msgid "Workspace Names" +msgid "Workspace Rules" +msgstr "Vinnusv????areglur" -#: extensions/auto-move-windows/prefs.js:69 -#: extensions/auto-move-windows/prefs.js:127 -msgid "Workspace" -msgstr "Vinnusv????i" - -#: extensions/auto-move-windows/prefs.js:85 +#: extensions/auto-move-windows/prefs.js:237 msgid "Add Rule" msgstr "B??ta vi?? reglu" -#: extensions/auto-move-windows/prefs.js:106 -msgid "Create new matching rule" -msgstr "B??a til n??ja samsv??runarreglu" - -#: extensions/auto-move-windows/prefs.js:111 -msgid "Add" -msgstr "B??ta vi??" - #. TRANSLATORS: %s is the filesystem name -#: extensions/drive-menu/extension.js:107 +#: extensions/drive-menu/extension.js:134 +#: extensions/places-menu/placeDisplay.js:233 #, javascript-format -#| msgid "Ejecting drive '%s' failed:" msgid "Ejecting drive ???%s??? failed:" msgstr "??tsp??ting drifsins '%s' mist??kst:" -#: extensions/drive-menu/extension.js:125 +#: extensions/drive-menu/extension.js:150 msgid "Removable devices" msgstr "??tskiptanleg t??ki" -#: extensions/drive-menu/extension.js:150 -#| msgid "Open File" +#: extensions/drive-menu/extension.js:172 msgid "Open Files" msgstr "Opna skr??r" -#: extensions/example/extension.js:17 -msgid "Hello, world!" -msgstr "H?? heimur!" - -#: extensions/example/org.gnome.shell.extensions.example.gschema.xml:5 -msgid "Alternative greeting text." -msgstr "Varatexti ??varps." - -#: extensions/example/org.gnome.shell.extensions.example.gschema.xml:6 -msgid "" -"If not empty, it contains the text that will be shown when clicking on the " -"panel." -msgstr "" -"Ef ??etta er ekki autt, inniheldur ??a?? textann sem birtist ??egar smellt er ?? " -"spjaldi??." - -#: extensions/example/prefs.js:30 -msgid "Message" -msgstr "Skilabo??" - -#. TRANSLATORS: Example is the name of the extension, should not be -#. translated -#: extensions/example/prefs.js:43 -msgid "" -"Example aims to show how to build well behaved extensions for the Shell and " -"as such it has little functionality on its own.\n" -"Nevertheless it???s possible to customize the greeting message." -msgstr "" -"Example-vi??b??tin hefur a?? markmi??i a?? s??na hvernig byggja eigi vel ger??ar " -"vi??b??tur fyrir GNOME-Shell hefur ??v?? sem sl??k ekki miki?? a??ra virkni.\n" -"Samt sem ????ur m?? nota hana til a?? s??rsn????a skilabo?? ?? kva??ningu." - #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:5 msgid "Use more screen for windows" msgstr "Nota meira af skj??num fyrir glugga" @@ -189,9 +81,9 @@ "This setting applies only with the natural placement strategy." msgstr "" "Reyndu a?? nota meira af skj??num undir gluggat??kn me?? a??l??gun a?? " -"st??r??arhlutf??llum skj??sins og a?? ??jappa ??eim enn frekar til a?? minnka umgj??r?? " -"??eirra. " -"??essi stilling gildir einungis me?? stefnu um e??lilegar sta??setningar." +"st??r??arhlutf??llum skj??sins og a?? ??jappa ??eim enn frekar til a?? minnka " +"umgj??r?? ??eirra. ??essi stilling gildir einungis me?? stefnu um e??lilegar " +"sta??setningar." #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11 msgid "Place window captions on top" @@ -207,32 +99,31 @@ "??fugt vi?? ??a?? sem sj??lfgefi?? er ?? skelinni sem setur ????r ne??st. Breytingar ?? " "??essum stillingum krefjast ??ess a?? skelin s?? endurr??st svo a?? ????r taki gildi." -#: extensions/places-menu/extension.js:78 -#: extensions/places-menu/extension.js:81 +#: extensions/places-menu/extension.js:89 +#: extensions/places-menu/extension.js:92 msgid "Places" msgstr "Sta??ir" -#: extensions/places-menu/placeDisplay.js:65 +#: extensions/places-menu/placeDisplay.js:46 #, javascript-format -msgid "Failed to mount volume for ???%s???" -msgstr "Gat ekki tengt gagnageymslu fyrir ???%s???" - -#: extensions/places-menu/placeDisplay.js:78 -#, javascript-format -#| msgid "Failed to launch \"%s\"" msgid "Failed to launch ???%s???" msgstr "Mist??kst a?? r??sa \"%s\"" -#: extensions/places-menu/placeDisplay.js:137 -#: extensions/places-menu/placeDisplay.js:160 +#: extensions/places-menu/placeDisplay.js:61 +#, javascript-format +msgid "Failed to mount volume for ???%s???" +msgstr "Gat ekki tengt gagnageymslu fyrir ???%s???" + +#: extensions/places-menu/placeDisplay.js:148 +#: extensions/places-menu/placeDisplay.js:171 msgid "Computer" msgstr "T??lva" -#: extensions/places-menu/placeDisplay.js:303 +#: extensions/places-menu/placeDisplay.js:359 msgid "Home" msgstr "Heim" -#: extensions/places-menu/placeDisplay.js:347 +#: extensions/places-menu/placeDisplay.js:404 msgid "Browse Network" msgstr "Flakka um net" @@ -241,7 +132,6 @@ msgstr "Fletta ?? gegnum skj??myndast??r??ir" #: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:11 -#| msgid "Cycle Screenshot Sizes" msgid "Cycle Screenshot Sizes Backward" msgstr "Fletta aftur??bak ?? gegnum skj??myndast??r??ir" @@ -253,52 +143,47 @@ msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgstr "Heiti ?? ??ema, hla??i?? inn fr?? ~/.themes/name/gnome-shell" -#: extensions/window-list/extension.js:110 +#: extensions/window-list/extension.js:98 msgid "Close" msgstr "Loka" -#: extensions/window-list/extension.js:129 +#: extensions/window-list/extension.js:118 msgid "Unminimize" msgstr "Endurheimta" -#: extensions/window-list/extension.js:130 +#: extensions/window-list/extension.js:118 msgid "Minimize" msgstr "L??gmarka" -#: extensions/window-list/extension.js:136 +#: extensions/window-list/extension.js:125 msgid "Unmaximize" msgstr "Minnka glugga" -#: extensions/window-list/extension.js:137 +#: extensions/window-list/extension.js:125 msgid "Maximize" msgstr "H??marka" -#: extensions/window-list/extension.js:420 +#: extensions/window-list/extension.js:432 msgid "Minimize all" msgstr "L??gmarka allt" -#: extensions/window-list/extension.js:428 +#: extensions/window-list/extension.js:438 msgid "Unminimize all" msgstr "Endurheimta allt" -#: extensions/window-list/extension.js:436 +#: extensions/window-list/extension.js:444 msgid "Maximize all" msgstr "H??marka allt" -#: extensions/window-list/extension.js:445 +#: extensions/window-list/extension.js:452 msgid "Unmaximize all" msgstr "Minnka allt" -#: extensions/window-list/extension.js:454 +#: extensions/window-list/extension.js:460 msgid "Close all" msgstr "Loka ??llu" -#: extensions/window-list/extension.js:678 -#: extensions/workspace-indicator/extension.js:30 -msgid "Workspace Indicator" -msgstr "Vinnusv????av??sir" - -#: extensions/window-list/extension.js:842 +#: extensions/window-list/extension.js:737 msgid "Window List" msgstr "Gluggalisti" @@ -307,9 +192,6 @@ msgstr "Hven??r ?? a?? h??pa glugga" #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:13 -#| msgid "" -#| "Decides when to group windows from the same application on the window " -#| "list. Possible values are \"never\", \"auto\" and \"always\"." msgid "" "Decides when to group windows from the same application on the window list. " "Possible values are ???never???, ???auto??? and ???always???." @@ -318,49 +200,150 @@ "M??guleg gildi eru ???aldrei???, ???sj??lfvirkt??? og ???alltaf???." #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:20 +#: extensions/window-list/prefs.js:100 +#| msgid "Show only windows in the current workspace" +msgid "Show windows from all workspaces" +msgstr "Birta glugga fr?? ??llum vinnusv????um" + +#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:21 +#| msgid "" +#| "Whether to show the window list on all connected monitors or only on the " +#| "primary one." +msgid "Whether to show windows from all workspaces or only the current one." +msgstr "" +"Hvort birta eigi glugga fr?? ??llum vinnusv????um e??a einungis ??v?? sem er virkt." + +#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27 msgid "Show the window list on all monitors" msgstr "S??na gluggalistann ?? ??llum skj??m" -#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:21 +#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:28 msgid "" "Whether to show the window list on all connected monitors or only on the " "primary one." msgstr "" "Hvort birta eigi gluggalistann ?? ??llum tengdum skj??m e??a einungis ?? a??alskj??." -#: extensions/window-list/prefs.js:32 +#: extensions/window-list/prefs.js:29 msgid "Window Grouping" msgstr "H??pun glugga" -#: extensions/window-list/prefs.js:50 +#: extensions/window-list/prefs.js:58 msgid "Never group windows" msgstr "Aldrei h??pa glugga" -#: extensions/window-list/prefs.js:51 +#: extensions/window-list/prefs.js:59 msgid "Group windows when space is limited" msgstr "H??pa glugga ??egar pl??ss er takmarka??" -#: extensions/window-list/prefs.js:52 +#: extensions/window-list/prefs.js:60 msgid "Always group windows" msgstr "Alltaf h??pa glugga" -#: extensions/window-list/prefs.js:75 +#: extensions/window-list/prefs.js:94 msgid "Show on all monitors" msgstr "Birta ?? ??llum skj??m" -#: extensions/workspace-indicator/prefs.js:141 +#: extensions/window-list/workspaceIndicator.js:249 +#: extensions/workspace-indicator/extension.js:255 +msgid "Workspace Indicator" +msgstr "Vinnusv????av??sir" + +#: extensions/workspace-indicator/prefs.js:34 msgid "Workspace Names" msgstr "Vinnusv????aheiti" -#: extensions/workspace-indicator/prefs.js:157 -msgid "Name" -msgstr "Heiti" - -#: extensions/workspace-indicator/prefs.js:198 +#: extensions/workspace-indicator/prefs.js:67 #, javascript-format msgid "Workspace %d" msgstr "Vinnusv????i %d" +#: extensions/workspace-indicator/prefs.js:208 +#| msgid "Workspace" +msgid "Add Workspace" +msgstr "B??ta vi?? vinnusv????i" + +#~ msgid "Attach modal dialog to the parent window" +#~ msgstr "Festa kva??ningarglugga vi?? yfirglugga" + +#~ msgid "" +#~ "This key overrides the key in org.gnome.mutter when running GNOME Shell." +#~ msgstr "" +#~ "??etta hefur forgang fram yfir lykilinn ?? kj??rstillingum org.gnome.mutter " +#~ "??egar GNOME Skelin er keyr??." + +#~ msgid "Arrangement of buttons on the titlebar" +#~ msgstr "Sta??setning hnappa ?? tiltilr??nd" + +#~ msgid "" +#~ "This key overrides the key in org.gnome.desktop.wm.preferences when " +#~ "running GNOME Shell." +#~ msgstr "" +#~ "??etta hefur forgang fram yfir lykilinn ?? kj??rstillingum org.gnome.desktop." +#~ "wm.??egar GNOME Skelin er keyr??." + +#~ msgid "Enable edge tiling when dropping windows on screen edges" +#~ msgstr "Virkja fl??sal??gn vi?? ja??ra ??egar gluggum er sleppt ?? skj??ja??ra" + +#~ msgid "Workspaces only on primary monitor" +#~ msgstr "Vinnusv????i einungis ?? a??alskj??" + +#~ msgid "Delay focus changes in mouse mode until the pointer stops moving" +#~ msgstr "" +#~ "Fresta breytingum ?? virkni ?? m??sarham ??ar til bendillinn hefur st????vast" + +#~ msgid "Thumbnail only" +#~ msgstr "Einungis sm??mynd" + +#~ msgid "Application icon only" +#~ msgstr "Einungis t??knmynd forrits" + +#~ msgid "Thumbnail and application icon" +#~ msgstr "Sm??mynd og t??knmynd" + +#~ msgid "Present windows as" +#~ msgstr "Birta glugga sem" + +#~ msgid "Activities Overview" +#~ msgstr "Virkniyfirlit" + +#~ msgid "Application" +#~ msgstr "Forrit" + +#~ msgid "Create new matching rule" +#~ msgstr "B??a til n??ja samsv??runarreglu" + +#~ msgid "Add" +#~ msgstr "B??ta vi??" + +#~ msgid "Hello, world!" +#~ msgstr "H?? heimur!" + +#~ msgid "Alternative greeting text." +#~ msgstr "Varatexti ??varps." + +#~ msgid "" +#~ "If not empty, it contains the text that will be shown when clicking on " +#~ "the panel." +#~ msgstr "" +#~ "Ef ??etta er ekki autt, inniheldur ??a?? textann sem birtist ??egar smellt er " +#~ "?? spjaldi??." + +#~ msgid "Message" +#~ msgstr "Skilabo??" + +#~ msgid "" +#~ "Example aims to show how to build well behaved extensions for the Shell " +#~ "and as such it has little functionality on its own.\n" +#~ "Nevertheless it???s possible to customize the greeting message." +#~ msgstr "" +#~ "Example-vi??b??tin hefur a?? markmi??i a?? s??na hvernig byggja eigi vel ger??ar " +#~ "vi??b??tur fyrir GNOME-Shell hefur ??v?? sem sl??k ekki miki?? a??ra virkni.\n" +#~ "Samt sem ????ur m?? nota hana til a?? s??rsn????a skilabo?? ?? kva??ningu." + +#~ msgid "Name" +#~ msgstr "Heiti" + #~ msgid "CPU" #~ msgstr "??rgj??rvi"