diff --git a/SOURCES/0001-Update-desktop-icons-gettext-domain.patch b/SOURCES/0001-Update-desktop-icons-gettext-domain.patch new file mode 100644 index 0000000..454989d --- /dev/null +++ b/SOURCES/0001-Update-desktop-icons-gettext-domain.patch @@ -0,0 +1,83 @@ +From f5e47cd8ca32ae433f6906b01a509c5a304894d9 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Florian=20M=C3=BCllner?= +Date: Sat, 24 Oct 2020 01:14:44 +0200 +Subject: [PATCH] Update desktop-icons gettext domain + +--- + extensions/desktop-icons/createFolderDialog.js | 2 +- + extensions/desktop-icons/desktopGrid.js | 2 +- + extensions/desktop-icons/fileItem.js | 2 +- + extensions/desktop-icons/prefs.js | 8 +++++--- + 4 files changed, 8 insertions(+), 6 deletions(-) + +diff --git a/extensions/desktop-icons/createFolderDialog.js b/extensions/desktop-icons/createFolderDialog.js +index f3e40e9..5038762 100644 +--- a/extensions/desktop-icons/createFolderDialog.js ++++ b/extensions/desktop-icons/createFolderDialog.js +@@ -21,7 +21,7 @@ const { Clutter, GObject, GLib, Gio, St } = imports.gi; + const Signals = imports.signals; + + const Dialog = imports.ui.dialog; +-const Gettext = imports.gettext.domain('desktop-icons'); ++const Gettext = imports.gettext.domain('gnome-shell-extensions'); + const ModalDialog = imports.ui.modalDialog; + const ShellEntry = imports.ui.shellEntry; + const Tweener = imports.ui.tweener; +diff --git a/extensions/desktop-icons/desktopGrid.js b/extensions/desktop-icons/desktopGrid.js +index a2d1f12..94d2dfd 100644 +--- a/extensions/desktop-icons/desktopGrid.js ++++ b/extensions/desktop-icons/desktopGrid.js +@@ -44,7 +44,7 @@ const Util = imports.misc.util; + + const Clipboard = St.Clipboard.get_default(); + const CLIPBOARD_TYPE = St.ClipboardType.CLIPBOARD; +-const Gettext = imports.gettext.domain('desktop-icons'); ++const Gettext = imports.gettext.domain('gnome-shell-extensions'); + + const _ = Gettext.gettext; + +diff --git a/extensions/desktop-icons/fileItem.js b/extensions/desktop-icons/fileItem.js +index 0c6a54d..d6d43c9 100644 +--- a/extensions/desktop-icons/fileItem.js ++++ b/extensions/desktop-icons/fileItem.js +@@ -42,7 +42,7 @@ const Prefs = Me.imports.prefs; + const DBusUtils = Me.imports.dbusUtils; + const DesktopIconsUtil = Me.imports.desktopIconsUtil; + +-const Gettext = imports.gettext.domain('desktop-icons'); ++const Gettext = imports.gettext.domain('gnome-shell-extensions'); + + const _ = Gettext.gettext; + +diff --git a/extensions/desktop-icons/prefs.js b/extensions/desktop-icons/prefs.js +index 4b8d986..51daf15 100644 +--- a/extensions/desktop-icons/prefs.js ++++ b/extensions/desktop-icons/prefs.js +@@ -26,7 +26,7 @@ const Gettext = imports.gettext; + + const Config = imports.misc.config; + +-var _ = Gettext.domain('desktop-icons').gettext; ++var _ = Gettext.domain('gnome-shell-extensions').gettext; + + const SCHEMA_NAUTILUS = 'org.gnome.nautilus.preferences'; + const SCHEMA_GTK = 'org.gtk.Settings.FileChooser'; +@@ -51,11 +51,13 @@ var CLICK_POLICY_SINGLE = false; + function initTranslations() { + let extension = ExtensionUtils.getCurrentExtension(); + ++ let domain = extension.metadata['gettext-domain'] || 'desktop-icons'; ++ + let localedir = extension.dir.get_child('locale'); + if (localedir.query_exists(null)) +- Gettext.bindtextdomain('desktop-icons', localedir.get_path()); ++ Gettext.bindtextdomain(domain, localedir.get_path()); + else +- Gettext.bindtextdomain('desktop-icons', Config.LOCALEDIR); ++ Gettext.bindtextdomain(domain, Config.LOCALEDIR); + } + + function init() { +-- +2.21.1 + diff --git a/SOURCES/0001-desktop-icons-Update-Japanese-translation.patch b/SOURCES/0001-desktop-icons-Update-Japanese-translation.patch new file mode 100644 index 0000000..43b3826 --- /dev/null +++ b/SOURCES/0001-desktop-icons-Update-Japanese-translation.patch @@ -0,0 +1,31 @@ +From 0a7248c75c084a83852aa3d0e7a36ccebd365b81 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Florian=20M=C3=BCllner?= +Date: Wed, 27 Jan 2021 11:51:28 +0100 +Subject: [PATCH] desktop-icons: Update Japanese translation + +--- + po/ja.po | 7 +------ + 1 file changed, 1 insertion(+), 6 deletions(-) + +diff --git a/po/ja.po b/po/ja.po +index df5646d..4d780b9 100644 +--- a/po/ja.po ++++ b/po/ja.po +@@ -293,13 +293,8 @@ msgid "Workspace %d" + msgstr "ワークスペース %d" + + #: desktopGrid.js:334 +-#, fuzzy + msgid "Display Settings" +-msgstr "" +-"#-#-#-#-# ja.po (gnome-shell-extensions master) #-#-#-#-#\n" +-"ディスプレイ設定\n" +-"#-#-#-#-# ja.po (desktop-icons master) #-#-#-#-#\n" +-"ディスプレイの設定" ++msgstr "ディスプレイ設定" + + #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 + #, fuzzy +-- +2.29.2 + diff --git a/SOURCES/0001-fileItem-Ignore-double-click-distance-clicking-on-it.patch b/SOURCES/0001-fileItem-Ignore-double-click-distance-clicking-on-it.patch new file mode 100644 index 0000000..592f01c --- /dev/null +++ b/SOURCES/0001-fileItem-Ignore-double-click-distance-clicking-on-it.patch @@ -0,0 +1,83 @@ +From f78b19068654412ca9e73a229e1537d080759c47 Mon Sep 17 00:00:00 2001 +From: Carlos Garnacho +Date: Wed, 27 Jan 2021 16:55:10 +0100 +Subject: [PATCH] fileItem: Ignore double click distance clicking on items + +Imitate the behavior of Nautilus canvas WRT double clicks being +handled on all of the icon(s) without accounting for the double +click distance. As the extension does already lean on Nautilus +look & feel, it seems to make sense doing this. + +This is not as crucial for mice as it is for touchscreens, where +the default 5px limit may be a bit on the short side depending +on device sensitivity. +--- + extensions/desktop-icons/fileItem.js | 26 +++++++++++++++++++++++--- + 1 file changed, 23 insertions(+), 3 deletions(-) + +diff --git a/extensions/desktop-icons/fileItem.js b/extensions/desktop-icons/fileItem.js +index d6d43c9..5d3195f 100644 +--- a/extensions/desktop-icons/fileItem.js ++++ b/extensions/desktop-icons/fileItem.js +@@ -65,6 +65,9 @@ var FileItem = class { + this._setMetadataCancellable = null; + this._queryFileInfoCancellable = null; + this._isSpecial = this._fileExtra != Prefs.FileType.NONE; ++ this._lastClickTime = 0; ++ this._lastClickButton = 0; ++ this._clickCount = 0; + + this._file = file; + +@@ -642,7 +645,24 @@ var FileItem = class { + DesktopIconsUtil.launchTerminal(this.file.get_path()); + } + ++ _updateClickState(event) { ++ let settings = Clutter.Settings.get_default(); ++ if ((event.get_button() == this._lastClickButton) && ++ ((event.get_time() - this._lastClickTime) < settings.double_click_time)) ++ this._clickCount++; ++ else ++ this._clickCount = 1; ++ ++ this._lastClickTime = event.get_time(); ++ this._lastClickButton = event.get_button(); ++ } ++ ++ _getClickCount() { ++ return this._clickCount; ++ } ++ + _onPressButton(actor, event) { ++ this._updateClickState(event); + let button = event.get_button(); + if (button == 3) { + if (!this.isSelected) +@@ -661,7 +681,7 @@ var FileItem = class { + this._actionTrash.setSensitive(!specialFilesSelected); + return Clutter.EVENT_STOP; + } else if (button == 1) { +- if (event.get_click_count() == 1) { ++ if (this._getClickCount() == 1) { + let [x, y] = event.get_coords(); + this._primaryButtonPressed = true; + this._buttonPressInitialX = x; +@@ -710,12 +730,12 @@ var FileItem = class { + this._primaryButtonPressed = false; + let shiftPressed = !!(event.get_state() & Clutter.ModifierType.SHIFT_MASK); + let controlPressed = !!(event.get_state() & Clutter.ModifierType.CONTROL_MASK); +- if ((event.get_click_count() == 1) && Prefs.CLICK_POLICY_SINGLE && !shiftPressed && !controlPressed) ++ if ((this._getClickCount() == 1) && Prefs.CLICK_POLICY_SINGLE && !shiftPressed && !controlPressed) + this.doOpen(); + this.emit('selected', shiftPressed || controlPressed, false, true); + return Clutter.EVENT_STOP; + } +- if ((event.get_click_count() == 2) && (!Prefs.CLICK_POLICY_SINGLE)) ++ if ((this._getClickCount() == 2) && (!Prefs.CLICK_POLICY_SINGLE)) + this.doOpen(); + } + return Clutter.EVENT_PROPAGATE; +-- +2.29.2 + diff --git a/SOURCES/add-extra-extensions.patch b/SOURCES/add-extra-extensions.patch index 108707a..a869226 100644 --- a/SOURCES/add-extra-extensions.patch +++ b/SOURCES/add-extra-extensions.patch @@ -1,4 +1,4 @@ -From d97e40a53d1844c84c895ede9a102e6d9d73ec1d Mon Sep 17 00:00:00 2001 +From ed28c7abd7c324dc6071ff96309854b1f5d48761 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 20 May 2015 17:44:50 +0200 Subject: [PATCH 1/8] Add top-icons extension @@ -102,7 +102,7 @@ index 0000000..a8eec13 + this._onTrayIconAdded.bind(this)); + this._tray.connect('tray-icon-removed', + this._onTrayIconRemoved.bind(this)); -+ this._tray.manage_screen(Main.panel); ++ this._tray.manage_screen(Main.panel.actor); + } + + disable() { @@ -164,10 +164,10 @@ index b987f2d..6050c32 100644 ] -- -2.21.0 +2.21.1 -From 3035a9e961fdae1bd242664130fbf55ce67131ce Mon Sep 17 00:00:00 2001 +From b99f1a2ead84c4fe494a387a032715f2973fbfa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 20 May 2015 18:05:41 +0200 Subject: [PATCH 2/8] Add dash-to-dock extension @@ -13413,10 +13413,10 @@ index 6050c32..2909135 100644 'top-icons', 'user-theme' -- -2.21.0 +2.21.1 -From 0baadb623f45f5dfa9449e3bd0aa1ee3880852c3 Mon Sep 17 00:00:00 2001 +From 9ffe67c4d25f34fa6c3af5ee4ddbd0be3018ef14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 20 May 2015 18:55:47 +0200 Subject: [PATCH 3/8] Add panel-favorites extension @@ -13766,10 +13766,10 @@ index 2909135..e8e00dc 100644 'user-theme' ] -- -2.21.0 +2.21.1 -From ce4282836905117970b842a5504a92d8b6ea7dfe Mon Sep 17 00:00:00 2001 +From 4bd1716e559af83795eec5b02025798b02c09fa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 4 Mar 2016 17:07:21 +0100 Subject: [PATCH 4/8] Add updates-dialog extension @@ -14396,10 +14396,10 @@ index 9c1438a..55f0e9a 100644 extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml extensions/window-list/extension.js -- -2.21.0 +2.21.1 -From 75c1b568c0bc93c1218fdd1d9d1caa4b9c1d723e Mon Sep 17 00:00:00 2001 +From 0ba4b86fa5f73bccd3ab1984d9deef0d39f656c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 1 Jun 2017 23:57:14 +0200 Subject: [PATCH 5/8] Add no-hot-corner extension @@ -14499,10 +14499,10 @@ index d129e6c..6f27f46 100644 'top-icons', 'updates-dialog', -- -2.21.0 +2.21.1 -From c165b79227f0702ecd5cb9f6b25ba5cede47a334 Mon Sep 17 00:00:00 2001 +From f56b4374904cdfd8e1790dc3cf5080b60f30ebea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 26 Mar 2019 19:44:43 +0100 Subject: [PATCH 6/8] Add window-grouper extension @@ -14903,10 +14903,10 @@ index 6f27f46..4b9d138 100644 enabled_extensions = get_option('enable_extensions') -- -2.21.0 +2.21.1 -From be2ec13b3a876b4c4bcf91ee9e537b89c06e4e3f Mon Sep 17 00:00:00 2001 +From 25c4999ff6adf19a32bab2a4d6cccae42520563b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 26 Mar 2019 21:32:09 +0100 Subject: [PATCH 7/8] Add disable-screenshield extension @@ -15002,10 +15002,10 @@ index 4b9d138..cf855a0 100644 'no-hot-corner', 'panel-favorites', -- -2.21.0 +2.21.1 -From 0b1da0ee4e8669bb3ba5d7fef5cf436c7bbcea88 Mon Sep 17 00:00:00 2001 +From 59604979f6ba48b7ff8d1616ab9df739dcf46a20 Mon Sep 17 00:00:00 2001 From: Carlos Soriano Date: Mon, 13 Aug 2018 17:28:41 +0200 Subject: [PATCH 8/8] Add desktop icons extension @@ -15016,51 +15016,60 @@ Subject: [PATCH 8/8] Add desktop icons extension extensions/desktop-icons/dbusUtils.js | 103 +++ extensions/desktop-icons/desktopGrid.js | 692 +++++++++++++++ extensions/desktop-icons/desktopIconsUtil.js | 123 +++ - extensions/desktop-icons/desktopManager.js | 752 ++++++++++++++++ + extensions/desktop-icons/desktopManager.js | 754 ++++++++++++++++ extensions/desktop-icons/extension.js | 71 ++ - extensions/desktop-icons/fileItem.js | 800 ++++++++++++++++++ + extensions/desktop-icons/fileItem.js | 830 ++++++++++++++++++ extensions/desktop-icons/meson.build | 19 + extensions/desktop-icons/metadata.json.in | 11 + extensions/desktop-icons/po/LINGUAS | 19 + extensions/desktop-icons/po/POTFILES.in | 4 + - extensions/desktop-icons/po/cs.po | 195 +++++ + extensions/desktop-icons/po/cs.po | 195 ++++ extensions/desktop-icons/po/da.po | 159 ++++ - extensions/desktop-icons/po/de.po | 192 +++++ + extensions/desktop-icons/po/de.po | 192 ++++ extensions/desktop-icons/po/es.po | 218 +++++ - extensions/desktop-icons/po/fi.po | 191 +++++ + extensions/desktop-icons/po/fi.po | 191 ++++ extensions/desktop-icons/po/fr.po | 164 ++++ extensions/desktop-icons/po/fur.po | 187 ++++ extensions/desktop-icons/po/hr.po | 186 ++++ - extensions/desktop-icons/po/hu.po | 190 +++++ - extensions/desktop-icons/po/id.po | 190 +++++ - extensions/desktop-icons/po/it.po | 189 +++++ + extensions/desktop-icons/po/hu.po | 190 ++++ + extensions/desktop-icons/po/id.po | 190 ++++ + extensions/desktop-icons/po/it.po | 189 ++++ extensions/desktop-icons/po/ja.po | 187 ++++ extensions/desktop-icons/po/meson.build | 1 + extensions/desktop-icons/po/nl.po | 188 ++++ - extensions/desktop-icons/po/pl.po | 193 +++++ + extensions/desktop-icons/po/pl.po | 193 ++++ extensions/desktop-icons/po/pt_BR.po | 199 +++++ extensions/desktop-icons/po/ru.po | 153 ++++ extensions/desktop-icons/po/sv.po | 197 +++++ - extensions/desktop-icons/po/tr.po | 191 +++++ + extensions/desktop-icons/po/tr.po | 191 ++++ extensions/desktop-icons/po/zh_TW.po | 135 +++ extensions/desktop-icons/prefs.js | 159 ++++ extensions/desktop-icons/schemas/meson.build | 6 + ...shell.extensions.desktop-icons.gschema.xml | 25 + extensions/desktop-icons/stylesheet.css | 38 + meson.build | 1 + - po/cs.po | 161 ++++ - po/da.po | 161 ++++ - po/de.po | 161 ++++ - po/es.po | 222 ++++- - po/fi.po | 167 +++- - po/fr.po | 188 ++++ - po/id.po | 159 ++++ - po/it.po | 177 ++++ - po/pl.po | 183 ++++ - po/pt_BR.po | 197 ++++- - po/ru.po | 179 ++++ - po/zh_TW.po | 165 +++- - 49 files changed, 8617 insertions(+), 30 deletions(-) + po/ca.po | 194 ++++ + po/cs.po | 198 +++++ + po/da.po | 194 ++++ + po/de.po | 195 ++++ + po/en_GB.po | 204 ++++- + po/es.po | 243 ++++- + po/fi.po | 209 ++++- + po/fr.po | 167 ++++ + po/fur.po | 198 ++++- + po/hr.po | 195 ++++ + po/hu.po | 195 ++++ + po/id.po | 197 +++++ + po/it.po | 192 ++++ + po/ja.po | 210 ++++- + po/nl.po | 191 ++++ + po/pl.po | 196 +++++ + po/pt_BR.po | 216 ++++- + po/ru.po | 156 ++++ + po/sv.po | 204 +++++ + po/tr.po | 194 ++++ + po/zh_TW.po | 149 +++- + 58 files changed, 10608 insertions(+), 48 deletions(-) create mode 100644 extensions/desktop-icons/createFolderDialog.js create mode 100755 extensions/desktop-icons/createThumbnail.js create mode 100644 extensions/desktop-icons/dbusUtils.js @@ -16247,10 +16256,10 @@ index 0000000..0aea654 +} diff --git a/extensions/desktop-icons/desktopManager.js b/extensions/desktop-icons/desktopManager.js new file mode 100644 -index 0000000..d8f548f +index 0000000..399aee0 --- /dev/null +++ b/extensions/desktop-icons/desktopManager.js -@@ -0,0 +1,752 @@ +@@ -0,0 +1,754 @@ +/* Desktop Icons GNOME Shell extension + * + * Copyright (C) 2017 Carlos Soriano @@ -16457,7 +16466,7 @@ index 0000000..d8f548f + this._desktopGrids = {}; + } + -+ /** ++ /** + * Initialize rubberband color from the GTK rubberband class + * */ + _initRubberBandColor() { @@ -16595,8 +16604,10 @@ index 0000000..d8f548f + case ATTRIBUTE_CHANGED: + /* a file changed, rather than the desktop itself */ + let desktopDir = DesktopIconsUtil.getDesktopDir(); -+ if (file.get_uri() != desktopDir.get_uri()) ++ if (file.get_uri() != desktopDir.get_uri()) { ++ fileItem.onAttributeChanged(); + return; ++ } + + if (this._queryFileInfoCancellable) + this._queryFileInfoCancellable.cancel(); @@ -17082,10 +17093,10 @@ index 0000000..4b960ab +} diff --git a/extensions/desktop-icons/fileItem.js b/extensions/desktop-icons/fileItem.js new file mode 100644 -index 0000000..e6f4f2c +index 0000000..0c6a54d --- /dev/null +++ b/extensions/desktop-icons/fileItem.js -@@ -0,0 +1,800 @@ +@@ -0,0 +1,830 @@ +/* Desktop Icons GNOME Shell extension + * + * Copyright (C) 2017 Carlos Soriano @@ -17206,30 +17217,18 @@ index 0000000..e6f4f2c + /* Set the metadata and update relevant UI */ + this._updateMetadataFromFileInfo(fileInfo); + -+ if (this._isDesktopFile) { -+ /* watch for the executable bit being removed or added */ -+ this._monitorDesktopFile = this._file.monitor_file(Gio.FileMonitorFlags.NONE, null); -+ this._monitorDesktopFileId = this._monitorDesktopFile.connect('changed', -+ (obj, file, otherFile, eventType) => { -+ switch(eventType) { -+ case Gio.FileMonitorEvent.ATTRIBUTE_CHANGED: -+ this._refreshMetadataAsync(true); -+ break; -+ } -+ }); -+ } -+ -+ this._createMenu(); ++ this._menuManager = null; ++ this._menu = null; + this._updateIcon(); + + this._isSelected = false; + this._primaryButtonPressed = false; -+ if (this._attributeCanExecute && !this._isDesktopFile) ++ if (this._attributeCanExecute && !this._isValidDesktopFile) + this._execLine = this.file.get_path(); + if (fileExtra == Prefs.FileType.USER_DIRECTORY_TRASH) { + // if this icon is the trash, monitor the state of the directory to update the icon + this._trashChanged = false; -+ this._trashInitializeCancellable = null; ++ this._queryTrashInfoCancellable = null; + this._scheduleTrashRefreshId = 0; + this._monitorTrashDir = this._file.monitor_directory(Gio.FileMonitorFlags.WATCH_MOVES, null); + this._monitorTrashId = this._monitorTrashDir.connect('changed', (obj, file, otherFile, eventType) => { @@ -17250,13 +17249,19 @@ index 0000000..e6f4f2c + }); + } + -+ Extension.desktopManager.connect('notify::writable-by-others', () => { -+ if (!this._isDesktopFile) ++ this._writebleByOthersId = Extension.desktopManager.connect('notify::writable-by-others', () => { ++ if (!this._isValidDesktopFile) + return; + this._refreshMetadataAsync(true); + }); + } + ++ onAttributeChanged() { ++ if (this._isDesktopFile) { ++ this._refreshMetadataAsync(true); ++ } ++ } ++ + _onDestroy() { + /* Regular file data */ + if (this._setMetadataCancellable) @@ -17264,6 +17269,8 @@ index 0000000..e6f4f2c + if (this._queryFileInfoCancellable) + this._queryFileInfoCancellable.cancel(); + ++ Extension.desktopManager.disconnect(this._writebleByOthersId); ++ + /* Thumbnailing */ + if (this._thumbnailScriptWatch) + GLib.source_remove(this._thumbnailScriptWatch); @@ -17285,6 +17292,9 @@ index 0000000..e6f4f2c + this._queryTrashInfoCancellable.cancel(); + if (this._scheduleTrashRefreshId) + GLib.source_remove(this._scheduleTrashRefreshId); ++ ++ /* Menu */ ++ this._removeMenu(); + } + + _refreshMetadataAsync(rebuild) { @@ -17301,7 +17311,7 @@ index 0000000..e6f4f2c + this._queryFileInfoCancellable = null; + this._updateMetadataFromFileInfo(newFileInfo); + if (rebuild) { -+ this._createMenu(); ++ this._recreateMenu(); + this._updateIcon(); + } + } catch(error) { @@ -17331,8 +17341,12 @@ index 0000000..e6f4f2c + this._desktopFile = Gio.DesktopAppInfo.new_from_filename(this._file.get_path()); + if (!this._desktopFile) { + log(`Couldn’t parse ${this._displayName} as a desktop file, will treat it as a regular file.`); -+ this._isDesktopFile = false; ++ this._isValidDesktopFile = false; ++ } else { ++ this._isValidDesktopFile = true; + } ++ } else { ++ this._isValidDesktopFile = false; + } + + if (this.displayName != oldLabelText) { @@ -17384,6 +17398,7 @@ index 0000000..e6f4f2c + this._thumbnailScriptWatch = GLib.child_watch_add(GLib.PRIORITY_DEFAULT, + pid, + (pid, exitCode) => { ++ this._thumbnailScriptWatch = 0; + if (exitCode == 0) + this._updateIcon(); + else @@ -17401,6 +17416,7 @@ index 0000000..e6f4f2c + thumbnailFile.load_bytes_async(this._loadThumbnailDataCancellable, + (source, result) => { + try { ++ this._loadThumbnailDataCancellable = null; + let [thumbnailData, etag_out] = source.load_bytes_finish(result); + let thumbnailStream = Gio.MemoryInputStream.new_from_bytes(thumbnailData); + let thumbnailPixbuf = GdkPixbuf.Pixbuf.new_from_stream(thumbnailStream, null); @@ -17523,7 +17539,7 @@ index 0000000..e6f4f2c + return; + } + -+ if (this._attributeCanExecute && !this._isDirectory && !this._isDesktopFile) { ++ if (this._attributeCanExecute && !this._isDirectory && !this._isValidDesktopFile) { + if (this._execLine) + Util.spawnCommandLine(this._execLine); + return; @@ -17653,7 +17669,22 @@ index 0000000..e6f4f2c + 'border-color: ' + border_color + ';' + } + -+ _createMenu() { ++ _removeMenu() { ++ if (this._menu != null) { ++ if (this._menuManager != null) ++ this._menuManager.removeMenu(this._menu); ++ ++ Main.layoutManager.uiGroup.remove_child(this._menu.actor); ++ this._menu.destroy(); ++ this._menu = null; ++ } ++ ++ this._menuManager = null; ++ } ++ ++ _recreateMenu() { ++ this._removeMenu(); ++ + this._menuManager = new PopupMenu.PopupMenuManager({ actor: this.actor }); + let side = St.Side.LEFT; + if (Clutter.get_default_text_direction() == Clutter.TextDirection.RTL) @@ -17672,7 +17703,7 @@ index 0000000..e6f4f2c + if (this.canRename()) + this._menu.addAction(_('Rename…'), () => this.doRename()); + this._actionTrash = this._menu.addAction(_('Move to Trash'), () => this._onMoveToTrashClicked()); -+ if (this._isDesktopFile && !Extension.desktopManager.writableByOthers && !this._writableByOthers) { ++ if (this._isValidDesktopFile && !Extension.desktopManager.writableByOthers && !this._writableByOthers) { + this._menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem()); + this._allowLaunchingMenuItem = this._menu.addAction(this._allowLaunchingText, + () => this._onAllowDisallowLaunchingClicked()); @@ -17699,6 +17730,13 @@ index 0000000..e6f4f2c + this._menu.actor.hide(); + } + ++ _ensureMenu() { ++ if (this._menu == null) ++ this._recreateMenu(); ++ ++ return this._menu; ++ } ++ + _onOpenTerminalClicked () { + DesktopIconsUtil.launchTerminal(this.file.get_path()); + } @@ -17708,7 +17746,7 @@ index 0000000..e6f4f2c + if (button == 3) { + if (!this.isSelected) + this.emit('selected', false, false, true); -+ this._menu.toggle(); ++ this._ensureMenu().toggle(); + if (this._actionOpenWith) { + let allowOpenWith = (Extension.desktopManager.getNumberOfSelectedItems() == 1); + this._actionOpenWith.setSensitive(allowOpenWith); @@ -17805,10 +17843,13 @@ index 0000000..e6f4f2c + info.set_attribute_string('metadata::nautilus-icon-position', + `${pos[0]},${pos[1]}`); + this.file.set_attributes_async(info, -+ Gio.FileQueryInfoFlags.NONE, -+ GLib.PRIORITY_DEFAULT, -+ this._setMetadataCancellable, -+ (source, result) => this._onSetMetadataFileFinished(source, result) ++ Gio.FileQueryInfoFlags.NONE, ++ GLib.PRIORITY_DEFAULT, ++ this._setMetadataCancellable, ++ (source, result) => { ++ this._setMetadataCancellable = null; ++ this._onSetMetadataFileFinished(source, result); ++ } + ); + } + @@ -17863,7 +17904,7 @@ index 0000000..e6f4f2c + } + + get trustedDesktopFile() { -+ return this._isDesktopFile && ++ return this._isValidDesktopFile && + this._attributeCanExecute && + this.metadataTrusted && + !Extension.desktopManager.writableByOthers && @@ -21853,2356 +21894,4662 @@ index cf855a0..6e8c41f 100644 'places-menu', 'launch-new-instance', 'window-list' -diff --git a/po/cs.po b/po/cs.po -index 04bb195..e8f2fa3 100644 ---- a/po/cs.po -+++ b/po/cs.po -@@ -1,11 +1,28 @@ -+# #-#-#-#-# cs.po (gnome-shell-extensions) #-#-#-#-# -+# #-#-#-#-# cs.po (gnome-shell-extensions) #-#-#-#-# - # Czech translation for gnome-shell-extensions. +diff --git a/po/ca.po b/po/ca.po +index f3be74c..53a097f 100644 +--- a/po/ca.po ++++ b/po/ca.po +@@ -1,11 +1,19 @@ ++# #-#-#-#-# ca.po (gnome-shell-extensions) #-#-#-#-# + # Catalan translation for gnome-shell-extensions. # Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER # This file is distributed under the same license as the gnome-shell-extensions package. - # Petr Kovar , 2013. - # Marek Černocký , 2011, 2012, 2013, 2014, 2015, 2017. + # Jordi Mas i Hernandez , 2011. + # Gil Forcada , 2012, 2013, 2014. # -+# #-#-#-#-# cs.po (desktop-icons master) #-#-#-#-# -+# Czech translation for desktop-icons. -+# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER -+# This file is distributed under the same license as the desktop-icons package. -+# Marek Černocký , 2018. ++# #-#-#-#-# ca.po (1.0) #-#-#-#-# +# -+# #-#-#-#-# cs.po (desktop-icons master) #-#-#-#-# -+# Czech translation for desktop-icons. -+# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER -+# This file is distributed under the same license as the desktop-icons package. -+# Marek Černocký , 2018. ++# This file is distributed under the same license as the PACKAGE package. ++# Jordi Mas i Hernandez , 2019 +# +#, fuzzy msgid "" msgstr "" -+"#-#-#-#-# cs.po (gnome-shell-extensions) #-#-#-#-#\n" -+"#-#-#-#-# cs.po (gnome-shell-extensions) #-#-#-#-#\n" ++"#-#-#-#-# ca.po (gnome-shell-extensions) #-#-#-#-#\n" "Project-Id-Version: gnome-shell-extensions\n" "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "shell&keywords=I18N+L10N&component=extensions\n" -@@ -19,6 +36,34 @@ msgstr "" +@@ -18,6 +26,20 @@ msgstr "" + "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" - "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - "X-Generator: Gtranslator 2.91.6\n" -+"#-#-#-#-# cs.po (desktop-icons master) #-#-#-#-#\n" -+"Project-Id-Version: desktop-icons master\n" -+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -+"icons/issues\n" -+"POT-Creation-Date: 2018-10-01 20:15+0000\n" -+"PO-Revision-Date: 2018-10-02 11:10+0200\n" -+"Last-Translator: Marek Černocký \n" -+"Language-Team: čeština \n" -+"Language: cs\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -+"X-Generator: Gtranslator 2.91.7\n" -+"#-#-#-#-# cs.po (desktop-icons master) #-#-#-#-#\n" -+"Project-Id-Version: desktop-icons master\n" + "Plural-Forms: nplurals=2; plural=n != 1;\n" ++"#-#-#-#-# ca.po (1.0) #-#-#-#-#\n" ++"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" -+"POT-Creation-Date: 2018-10-01 20:15+0000\n" -+"PO-Revision-Date: 2018-10-02 11:10+0200\n" -+"Last-Translator: Marek Černocký \n" -+"Language-Team: čeština \n" -+"Language: cs\n" ++"POT-Creation-Date: 2019-07-22 10:24+0200\n" ++"PO-Revision-Date: 2019-07-22 10:24+0200\n" ++"Language: ca\n" ++"Language-Team: Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -+"X-Generator: Gtranslator 2.91.7\n" ++"Last-Translator: Jordi Mas \n" ++"Language: ca\n" ++"X-Generator: Poedit 2.2.1\n" #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 msgid "GNOME Classic" -@@ -350,3 +395,119 @@ msgstr "Název" - #, javascript-format +@@ -362,6 +384,178 @@ msgstr "Nom" msgid "Workspace %d" - msgstr "Pracovní plocha %d" + msgstr "Espai de treball %d" + ++#: ../createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "Nom de la carpeta nou" + -+#: prefs.js:89 ++#: ../createFolderDialog.js:72 ++msgid "Create" ++msgstr "Crea" ++ ++#: ../createFolderDialog.js:74 ../desktopGrid.js:592 ++msgid "Cancel" ++msgstr "Cancel·la" ++ ++#: ../createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "Els noms de carpetes no poden contenir «/»." ++ ++#: ../createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "Una carpeta no es pot anomenar «.»." ++ ++#: ../createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "Una carpeta no es pot anomenar «..»." ++ ++#: ../createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Les carpetes amb un «.» a l'inici del seu nom s'amaguen." ++ ++#: ../createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Ja existeix un fitxer o carpeta amb aquest nom." ++ ++#: ../prefs.js:102 +msgid "Size for the desktop icons" -+msgstr "Velikost ikon na pracovní ploše" ++msgstr "Mida de les icones d'escriptori" + -+#: prefs.js:89 ++#: ../prefs.js:102 +msgid "Small" -+msgstr "malé" ++msgstr "Petita" + -+#: prefs.js:89 ++#: ../prefs.js:102 +msgid "Standard" -+msgstr "standardní" ++msgstr "Estàndard" + -+#: prefs.js:89 ++#: ../prefs.js:102 +msgid "Large" -+msgstr "velké" -+ -+#: prefs.js:89 -+msgid "Huge" -+msgstr "obrovské" ++msgstr "Gran" + -+#: prefs.js:90 ++#: ../prefs.js:103 +msgid "Show the personal folder in the desktop" -+msgstr "Zobrazovat osobní složku na pracovní ploše" ++msgstr "Mostra la carpeta personal a l'escriptori" + -+#: prefs.js:91 ++#: ../prefs.js:104 +msgid "Show the trash icon in the desktop" -+msgstr "Zobrazovat ikonu koše na pracovní ploše" ++msgstr "Mostra la icona de la paperera a l'escriptori" + -+#: desktopGrid.js:178 desktopGrid.js:297 ++#: ../desktopGrid.js:323 +msgid "New Folder" -+msgstr "Nová složka" ++msgstr "Carpeta nova" + -+#: desktopGrid.js:299 ++#: ../desktopGrid.js:325 +msgid "Paste" -+msgstr "Vložit" ++msgstr "Enganxa" + -+#: desktopGrid.js:300 ++#: ../desktopGrid.js:326 +msgid "Undo" -+msgstr "Zpět" ++msgstr "Desfés" + -+#: desktopGrid.js:301 ++#: ../desktopGrid.js:327 +msgid "Redo" -+msgstr "Znovu" ++msgstr "Refés" + -+#: desktopGrid.js:303 -+msgid "Open Desktop in Files" -+msgstr "Otevřít plochu v Souborech" ++#: ../desktopGrid.js:329 ++msgid "Show Desktop in Files" ++msgstr "Mostra l'escriptori al Fitxers" + -+#: desktopGrid.js:304 -+msgid "Open Terminal" -+msgstr "Otevřít terminál" ++#: ../desktopGrid.js:330 ../fileItem.js:612 ++msgid "Open in Terminal" ++msgstr "Obre al Terminal" + -+#: desktopGrid.js:306 ++#: ../desktopGrid.js:332 +msgid "Change Background…" -+msgstr "Změnit pozadí…" ++msgstr "Canvia el fons de l'escriptori…" + -+#: desktopGrid.js:307 ++#: ../desktopGrid.js:334 +msgid "Display Settings" -+msgstr "Zobrazit nastavení" ++msgstr "Paràmetres de la pantalla" + -+#: desktopGrid.js:308 ++#: ../desktopGrid.js:335 +msgid "Settings" -+msgstr "Nastavení" ++msgstr "Paràmetres" + -+#: fileItem.js:226 ++#: ../desktopGrid.js:582 ++msgid "Enter file name…" ++msgstr "Introduïu un nom de fitxer…" ++ ++#: ../desktopGrid.js:586 ++msgid "OK" ++msgstr "D'acord" ++ ++#: ../desktopIconsUtil.js:61 ++msgid "Command not found" ++msgstr "\tNo s'ha trobat l'ordre" ++ ++#: ../fileItem.js:500 ++msgid "Don’t Allow Launching" ++msgstr "No permetis que s'iniciï" ++ ++#: ../fileItem.js:502 ++msgid "Allow Launching" ++msgstr "Permet que s'iniciï" ++ ++#: ../fileItem.js:580 +msgid "Open" -+msgstr "Otevřít" ++msgstr "Obre" ++ ++#: ../fileItem.js:584 ++msgid "Open With Other Application" ++msgstr "Obre amb una altra aplicació..." + -+#: fileItem.js:229 ++#: ../fileItem.js:588 +msgid "Cut" -+msgstr "Vyjmout" ++msgstr "Retalla" + -+#: fileItem.js:230 ++#: ../fileItem.js:589 +msgid "Copy" -+msgstr "Kopírovat" ++msgstr "Copia" ++ ++#: ../fileItem.js:591 ++msgid "Rename…" ++msgstr "Canvia el nom…" + -+#: fileItem.js:231 ++#: ../fileItem.js:592 +msgid "Move to Trash" -+msgstr "Přesunout do koše" ++msgstr "Mou a la paperera" + -+#: fileItem.js:235 -+msgid "Empty trash" -+msgstr "Vyprázdnit koš" ++#: ../fileItem.js:602 ++msgid "Empty Trash" ++msgstr "Buida la paperera" + -+#: fileItem.js:241 ++#: ../fileItem.js:608 +msgid "Properties" -+msgstr "Vlastnosti" ++msgstr "Propietats" + -+#: fileItem.js:243 ++#: ../fileItem.js:610 +msgid "Show in Files" -+msgstr "Zobrazit v Souborech" ++msgstr "Mostra al Fitxers" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 ++#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:1 +msgid "Icon size" -+msgstr "Velikost ikon" ++msgstr "Mida d'icona" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:13 ++#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:2 +msgid "Set the size for the desktop icons." -+msgstr "Nastavit velikost pro ikony na pracovní ploše." ++msgstr "Estableix la mida per les icones de l'escriptori." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:3 +msgid "Show personal folder" -+msgstr "Zobrazovat osobní složku" ++msgstr "Mostra la carpeta personal" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:18 ++#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:4 +msgid "Show the personal folder in the desktop." -+msgstr "Zobrazovat osobní složku na pracovní ploše." ++msgstr "Mostra la carpeta personal a l'escriptori." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:5 +msgid "Show trash icon" -+msgstr "Zobrazovat koš" ++msgstr "Mostra la icona de la paperera" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:23 ++#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:6 +msgid "Show the trash icon in the desktop." -+msgstr "Zobrazovat ikonu koše na pracovní ploše." -diff --git a/po/da.po b/po/da.po -index 5a4c257..eeeef12 100644 ---- a/po/da.po -+++ b/po/da.po -@@ -1,3 +1,5 @@ -+# #-#-#-#-# da.po (gnome-shell-extensions master) #-#-#-#-# -+# #-#-#-#-# da.po (gnome-shell-extensions master) #-#-#-#-# - # Danish translation for gnome-shell-extensions. - # Copyright (C) 2011-2017 gnome-shell-extensions's COPYRIGHT HOLDER ++msgstr "Mostra la icona de la paperera a l'escriptori." ++ + #~ msgid "GNOME Shell Classic" + #~ msgstr "GNOME Shell clàssic" + +diff --git a/po/cs.po b/po/cs.po +index 04bb195..7ce51c9 100644 +--- a/po/cs.po ++++ b/po/cs.po +@@ -1,11 +1,21 @@ ++# #-#-#-#-# cs.po (gnome-shell-extensions) #-#-#-#-# + # Czech translation for gnome-shell-extensions. + # Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER # This file is distributed under the same license as the gnome-shell-extensions package. -@@ -6,8 +8,23 @@ - # Ask Hjorth Larsen , 2015, 2017. - # Joe Hansen , 2017. + # Petr Kovar , 2013. + # Marek Černocký , 2011, 2012, 2013, 2014, 2015, 2017. # -+# #-#-#-#-# da.po (desktop-icons master) #-#-#-#-# -+# Danish translation for desktop-icons. -+# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER -+# This file is distributed under the same license as the desktop-icons package. -+# Alan Mortensen , 2018. -+# -+# #-#-#-#-# da.po (desktop-icons master) #-#-#-#-# -+# Danish translation for desktop-icons. ++# #-#-#-#-# cs.po (desktop-icons master) #-#-#-#-# ++# Czech translation for desktop-icons. +# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER +# This file is distributed under the same license as the desktop-icons package. -+# Alan Mortensen , 2018. ++# Marek Černocký , 2018. ++# Milan Zink , 2018. +# +#, fuzzy msgid "" msgstr "" -+"#-#-#-#-# da.po (gnome-shell-extensions master) #-#-#-#-#\n" -+"#-#-#-#-# da.po (gnome-shell-extensions master) #-#-#-#-#\n" - "Project-Id-Version: gnome-shell-extensions master\n" ++"#-#-#-#-# cs.po (gnome-shell-extensions) #-#-#-#-#\n" + "Project-Id-Version: gnome-shell-extensions\n" "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "shell&keywords=I18N+L10N&component=extensions\n" -@@ -20,6 +37,34 @@ msgstr "" - "Content-Type: text/plain; charset=UTF-8\n" +@@ -19,6 +29,20 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" -+"#-#-#-#-# da.po (desktop-icons master) #-#-#-#-#\n" -+"Project-Id-Version: desktop-icons master\n" -+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -+"icons/issues\n" -+"POT-Creation-Date: 2018-10-26 12:04+0000\n" -+"PO-Revision-Date: 2018-10-27 16:42+0200\n" -+"Language-Team: Danish \n" -+"Language: da\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=2; plural=(n != 1);\n" -+"Last-Translator: Alan Mortensen \n" -+"X-Generator: Poedit 2.0.6\n" -+"#-#-#-#-# da.po (desktop-icons master) #-#-#-#-#\n" + "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + "X-Generator: Gtranslator 2.91.6\n" ++"#-#-#-#-# cs.po (desktop-icons master) #-#-#-#-#\n" +"Project-Id-Version: desktop-icons master\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" -+"POT-Creation-Date: 2018-10-26 12:04+0000\n" -+"PO-Revision-Date: 2018-10-27 16:42+0200\n" -+"Language-Team: Danish \n" -+"Language: da\n" ++"POT-Creation-Date: 2019-03-01 12:49+0000\n" ++"PO-Revision-Date: 2019-03-02 18:02+0100\n" ++"Last-Translator: Daniel Rusek \n" ++"Language-Team: Czech \n" ++"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=2; plural=(n != 1);\n" -+"Last-Translator: Alan Mortensen \n" -+"X-Generator: Poedit 2.0.6\n" ++"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" ++"X-Generator: Poedit 2.2.1\n" #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 msgid "GNOME Classic" -@@ -359,3 +404,119 @@ msgstr "Navn" +@@ -350,3 +374,177 @@ msgstr "Název" #, javascript-format msgid "Workspace %d" - msgstr "Arbejdsområde %d" -+ -+#: prefs.js:89 -+msgid "Size for the desktop icons" -+msgstr "Størrelsen på skrivebordsikoner" + msgstr "Pracovní plocha %d" + -+#: prefs.js:89 -+msgid "Small" -+msgstr "Små" ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "Název nové složky" + -+#: prefs.js:89 -+msgid "Standard" -+msgstr "Standard" ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Vytvořit" + -+#: prefs.js:89 -+msgid "Large" -+msgstr "Store" ++#: createFolderDialog.js:74 desktopGrid.js:586 ++msgid "Cancel" ++msgstr "Zrušit" + -+#: prefs.js:89 -+msgid "Huge" -+msgstr "Enorme" ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "Názvy složek nesmí obsahovat „/“." + -+#: prefs.js:90 ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "Složka se nemůže jmenovat „.“." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "Složka se nemůže jmenovat „..“." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Složky s „.“ na začátku jejich názvu jsou skryty." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Soubor nebo složka s tímto názvem již existuje." ++ ++#: prefs.js:102 ++msgid "Size for the desktop icons" ++msgstr "Velikost ikon na pracovní ploše" ++ ++#: prefs.js:102 ++msgid "Small" ++msgstr "malé" ++ ++#: prefs.js:102 ++msgid "Standard" ++msgstr "standardní" ++ ++#: prefs.js:102 ++msgid "Large" ++msgstr "velké" ++ ++#: prefs.js:103 +msgid "Show the personal folder in the desktop" -+msgstr "Vis den personlige mappe på skrivebordet" ++msgstr "Zobrazovat osobní složku na pracovní ploše" + -+#: prefs.js:91 ++#: prefs.js:104 +msgid "Show the trash icon in the desktop" -+msgstr "Vis papirkurvsikonet på skrivebordet" ++msgstr "Zobrazovat ikonu koše na pracovní ploše" + -+#: desktopGrid.js:178 desktopGrid.js:297 ++#: desktopGrid.js:320 +msgid "New Folder" -+msgstr "Ny mappe" ++msgstr "Nová složka" + -+#: desktopGrid.js:299 ++#: desktopGrid.js:322 +msgid "Paste" -+msgstr "Indsæt" ++msgstr "Vložit" + -+#: desktopGrid.js:300 ++#: desktopGrid.js:323 +msgid "Undo" -+msgstr "Fortryd" ++msgstr "Zpět" + -+#: desktopGrid.js:301 ++#: desktopGrid.js:324 +msgid "Redo" -+msgstr "Omgør" ++msgstr "Znovu" + -+#: desktopGrid.js:303 -+msgid "Open Desktop in Files" -+msgstr "Åbn skrivebordet i Filer" ++#: desktopGrid.js:326 ++msgid "Show Desktop in Files" ++msgstr "Zobrazit plochu v Souborech" + -+#: desktopGrid.js:304 -+msgid "Open Terminal" -+msgstr "Åbn Terminal" ++#: desktopGrid.js:327 fileItem.js:606 ++msgid "Open in Terminal" ++msgstr "Otevřít v terminálu" + -+#: desktopGrid.js:306 ++#: desktopGrid.js:329 +msgid "Change Background…" -+msgstr "Skift baggrund …" ++msgstr "Změnit pozadí…" + -+#: desktopGrid.js:307 ++#: desktopGrid.js:331 +msgid "Display Settings" -+msgstr "Skærmindstillinger" ++msgstr "Zobrazit nastavení" + -+#: desktopGrid.js:308 ++#: desktopGrid.js:332 +msgid "Settings" -+msgstr "Indstillinger" ++msgstr "Nastavení" ++ ++#: desktopGrid.js:576 ++msgid "Enter file name…" ++msgstr "Zadejte název souboru…" ++ ++#: desktopGrid.js:580 ++msgid "OK" ++msgstr "Budiž" ++ ++#: fileItem.js:490 ++msgid "Don’t Allow Launching" ++msgstr "Nepovolit spouštění" ++ ++#: fileItem.js:492 ++msgid "Allow Launching" ++msgstr "Povolit spouštění" + -+#: fileItem.js:385 ++#: fileItem.js:574 +msgid "Open" -+msgstr "Åbn" ++msgstr "Otevřít" + -+#: fileItem.js:388 ++#: fileItem.js:578 ++msgid "Open With Other Application" ++msgstr "Otevřít pomocí jiné aplikace" ++ ++#: fileItem.js:582 +msgid "Cut" -+msgstr "Klip" ++msgstr "Vyjmout" + -+#: fileItem.js:389 ++#: fileItem.js:583 +msgid "Copy" -+msgstr "Kopiér" ++msgstr "Kopírovat" + -+#: fileItem.js:390 ++#: fileItem.js:585 ++msgid "Rename…" ++msgstr "Přejmenovat…" ++ ++#: fileItem.js:586 +msgid "Move to Trash" -+msgstr "Flyt til papirkurven" ++msgstr "Přesunout do koše" + -+#: fileItem.js:394 -+msgid "Empty trash" -+msgstr "Tøm papirkurven" ++#: fileItem.js:596 ++msgid "Empty Trash" ++msgstr "Vyprázdnit koš" + -+#: fileItem.js:400 ++#: fileItem.js:602 +msgid "Properties" -+msgstr "Egenskaber" ++msgstr "Vlastnosti" + -+#: fileItem.js:402 ++#: fileItem.js:604 +msgid "Show in Files" -+msgstr "Vis i Filer" ++msgstr "Zobrazit v Souborech" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 +msgid "Icon size" -+msgstr "Ikonstørrelse" ++msgstr "Velikost ikon" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:13 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 +msgid "Set the size for the desktop icons." -+msgstr "Angiv størrelsen på skrivebordsikoner." ++msgstr "Nastavit velikost pro ikony na pracovní ploše." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 +msgid "Show personal folder" -+msgstr "Vis personlig mappe" ++msgstr "Zobrazovat osobní složku" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:18 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 +msgid "Show the personal folder in the desktop." -+msgstr "Vis den personlige mappe på skrivebordet." ++msgstr "Zobrazovat osobní složku na pracovní ploše." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 +msgid "Show trash icon" -+msgstr "Vis papirkurvsikon" ++msgstr "Zobrazovat koš" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:23 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 +msgid "Show the trash icon in the desktop." -+msgstr "Vis papirkurvsikonet på skrivebordet." -diff --git a/po/de.po b/po/de.po -index 01924b8..6ca034e 100644 ---- a/po/de.po -+++ b/po/de.po -@@ -1,3 +1,5 @@ -+# #-#-#-#-# de.po (gnome-shell-extensions master) #-#-#-#-# -+# #-#-#-#-# de.po (gnome-shell-extensions master) #-#-#-#-# - # German translation for gnome-shell-extensions. - # Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER ++msgstr "Zobrazovat ikonu koše na pracovní ploše." ++ ++#~ msgid "Huge" ++#~ msgstr "obrovské" ++ ++#~ msgid "Ok" ++#~ msgstr "Ok" +diff --git a/po/da.po b/po/da.po +index 5a4c257..4e1f110 100644 +--- a/po/da.po ++++ b/po/da.po +@@ -1,3 +1,4 @@ ++# #-#-#-#-# da.po (gnome-shell-extensions master) #-#-#-#-# + # Danish translation for gnome-shell-extensions. + # Copyright (C) 2011-2017 gnome-shell-extensions's COPYRIGHT HOLDER # This file is distributed under the same license as the gnome-shell-extensions package. -@@ -7,8 +9,23 @@ - # Wolfgang Stöggl , 2014. - # Paul Seyfert , 2017. +@@ -6,8 +7,16 @@ + # Ask Hjorth Larsen , 2015, 2017. + # Joe Hansen , 2017. # -+# #-#-#-#-# de.po (desktop-icons master) #-#-#-#-# -+# German translation for desktop-icons. -+# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER -+# This file is distributed under the same license as the desktop-icons package. -+# Mario Blättermann , 2018. -+# -+# #-#-#-#-# de.po (desktop-icons master) #-#-#-#-# -+# German translation for desktop-icons. ++# #-#-#-#-# da.po (desktop-icons master) #-#-#-#-# ++# Danish translation for desktop-icons. +# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER +# This file is distributed under the same license as the desktop-icons package. -+# Mario Blättermann , 2018. ++# Alan Mortensen , 2018. +# +#, fuzzy msgid "" msgstr "" -+"#-#-#-#-# de.po (gnome-shell-extensions master) #-#-#-#-#\n" -+"#-#-#-#-# de.po (gnome-shell-extensions master) #-#-#-#-#\n" ++"#-#-#-#-# da.po (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-" "shell&keywords=I18N+L10N&component=extensions\n" -@@ -22,6 +39,34 @@ msgstr "" +@@ -20,6 +29,19 @@ msgstr "" + "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" - "X-Generator: Poedit 2.0.2\n" -+"#-#-#-#-# de.po (desktop-icons master) #-#-#-#-#\n" -+"Project-Id-Version: desktop-icons master\n" -+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -+"icons/issues\n" -+"POT-Creation-Date: 2018-10-02 21:39+0000\n" -+"PO-Revision-Date: 2018-10-03 21:28+0200\n" -+"Last-Translator: Mario Blättermann \n" -+"Language-Team: German \n" -+"Language: de\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=2; plural=(n != 1);\n" -+"X-Generator: Poedit 2.1.1\n" -+"#-#-#-#-# de.po (desktop-icons master) #-#-#-#-#\n" ++"#-#-#-#-# da.po (desktop-icons master) #-#-#-#-#\n" +"Project-Id-Version: desktop-icons master\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" -+"POT-Creation-Date: 2018-10-02 21:39+0000\n" -+"PO-Revision-Date: 2018-10-03 21:28+0200\n" -+"Last-Translator: Mario Blättermann \n" -+"Language-Team: German \n" -+"Language: de\n" ++"POT-Creation-Date: 2019-03-01 12:11+0000\n" ++"PO-Revision-Date: 2019-03-04 14:55+0200\n" ++"Last-Translator: scootergrisen\n" ++"Language-Team: Danish \n" ++"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -+"X-Generator: Poedit 2.1.1\n" #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 msgid "GNOME Classic" -@@ -366,3 +411,119 @@ msgstr "Name" +@@ -359,3 +381,175 @@ msgstr "Navn" #, javascript-format msgid "Workspace %d" - msgstr "Arbeitsfläche %d" + msgstr "Arbejdsområde %d" + -+#: prefs.js:89 ++#: createFolderDialog.js:48 ++#| msgid "New Folder" ++msgid "New folder name" ++msgstr "Nyt mappenavn" ++ ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Opret" ++ ++#: createFolderDialog.js:74 desktopGrid.js:586 ++msgid "Cancel" ++msgstr "Annullér" ++ ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "Mappenavne må ikke indeholde “/”." ++ ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "En mappe må ikke kaldes “.”." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "En mappe må ikke kaldes “..”." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Mapper med “.” i begyndelsen af deres navn er skjulte." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Der findes allerede en fil eller mappe med det navn." ++ ++#: prefs.js:102 +msgid "Size for the desktop icons" -+msgstr "Größe der Arbeitsflächensymbole" ++msgstr "Størrelsen på skrivebordsikoner" + -+#: prefs.js:89 ++#: prefs.js:102 +msgid "Small" -+msgstr "Klein" ++msgstr "Små" + -+#: prefs.js:89 ++#: prefs.js:102 +msgid "Standard" +msgstr "Standard" + -+#: prefs.js:89 ++#: prefs.js:102 +msgid "Large" -+msgstr "Groß" -+ -+#: prefs.js:89 -+msgid "Huge" -+msgstr "Riesig" ++msgstr "Store" + -+#: prefs.js:90 ++#: prefs.js:103 +msgid "Show the personal folder in the desktop" -+msgstr "Den persönlichen Ordner auf der Arbeitsfläche anzeigen" ++msgstr "Vis den personlige mappe på skrivebordet" + -+#: prefs.js:91 ++#: prefs.js:104 +msgid "Show the trash icon in the desktop" -+msgstr "Papierkorb-Symbol auf der Arbeitsfläche anzeigen" ++msgstr "Vis papirkurvsikonet på skrivebordet" + -+#: desktopGrid.js:178 desktopGrid.js:297 ++#: desktopGrid.js:320 +msgid "New Folder" -+msgstr "Neuer Ordner" ++msgstr "Ny mappe" + -+#: desktopGrid.js:299 ++#: desktopGrid.js:322 +msgid "Paste" -+msgstr "Einfügen" ++msgstr "Indsæt" + -+#: desktopGrid.js:300 ++#: desktopGrid.js:323 +msgid "Undo" -+msgstr "Rückgängig" ++msgstr "Fortryd" + -+#: desktopGrid.js:301 ++#: desktopGrid.js:324 +msgid "Redo" -+msgstr "Wiederholen" ++msgstr "Omgør" + -+#: desktopGrid.js:303 -+msgid "Open Desktop in Files" -+msgstr "Arbeitsfläche in Dateiverwaltung öffnen" ++#: desktopGrid.js:326 ++msgid "Show Desktop in Files" ++msgstr "Vis skrivebordet i Filer" + -+#: desktopGrid.js:304 -+msgid "Open Terminal" -+msgstr "Terminal öffnen" ++#: desktopGrid.js:327 fileItem.js:606 ++msgid "Open in Terminal" ++msgstr "Åbn i terminal" + -+#: desktopGrid.js:306 ++#: desktopGrid.js:329 +msgid "Change Background…" -+msgstr "Hintergrund ändern …" ++msgstr "Skift baggrund …" + -+#: desktopGrid.js:307 ++#: desktopGrid.js:331 +msgid "Display Settings" -+msgstr "Anzeigeeinstellungen" ++msgstr "Skærmindstillinger" + -+#: desktopGrid.js:308 ++#: desktopGrid.js:332 +msgid "Settings" -+msgstr "Einstellungen" ++msgstr "Indstillinger" + -+#: fileItem.js:226 ++#: desktopGrid.js:576 ++msgid "Enter file name…" ++msgstr "Indtast filnavn …" ++ ++#: desktopGrid.js:580 ++msgid "OK" ++msgstr "OK" ++ ++#: fileItem.js:490 ++msgid "Don’t Allow Launching" ++msgstr "Tillad ikke opstart" ++ ++#: fileItem.js:492 ++msgid "Allow Launching" ++msgstr "Tillad opstart" ++ ++#: fileItem.js:574 +msgid "Open" -+msgstr "Öffnen" ++msgstr "Åbn" ++ ++#: fileItem.js:578 ++msgid "Open With Other Application" ++msgstr "Åbn med et andet program" + -+#: fileItem.js:229 ++#: fileItem.js:582 +msgid "Cut" -+msgstr "Ausschneiden" ++msgstr "Klip" + -+#: fileItem.js:230 ++#: fileItem.js:583 +msgid "Copy" -+msgstr "Kopieren" ++msgstr "Kopiér" + -+#: fileItem.js:231 ++#: fileItem.js:585 ++msgid "Rename…" ++msgstr "Omdøb …" ++ ++#: fileItem.js:586 +msgid "Move to Trash" -+msgstr "In den Papierkorb verschieben" ++msgstr "Flyt til papirkurven" + -+#: fileItem.js:235 -+msgid "Empty trash" -+msgstr "Papierkorb leeren" ++#: fileItem.js:596 ++msgid "Empty Trash" ++msgstr "Tøm papirkurven" + -+#: fileItem.js:241 ++#: fileItem.js:602 +msgid "Properties" -+msgstr "Eigenschaften" ++msgstr "Egenskaber" + -+#: fileItem.js:243 ++#: fileItem.js:604 +msgid "Show in Files" -+msgstr "In Dateiverwaltung anzeigen" ++msgstr "Vis i Filer" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 +msgid "Icon size" -+msgstr "Symbolgröße" ++msgstr "Ikonstørrelse" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:13 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 +msgid "Set the size for the desktop icons." -+msgstr "Die Größe der Arbeitsflächensymbole festlegen." ++msgstr "Angiv størrelsen på skrivebordsikoner." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 +msgid "Show personal folder" -+msgstr "Persönlichen Ordner anzeigen" ++msgstr "Vis personlig mappe" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:18 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 +msgid "Show the personal folder in the desktop." -+msgstr "Den persönlichen Ordner auf der Arbeitsfläche anzeigen." ++msgstr "Vis den personlige mappe på skrivebordet." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 +msgid "Show trash icon" -+msgstr "Papierkorb-Symbol anzeigen" ++msgstr "Vis papirkurvsikon" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:23 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 +msgid "Show the trash icon in the desktop." -+msgstr "Das Papierkorb-Symbol auf der Arbeitsfläche anzeigen." -diff --git a/po/es.po b/po/es.po -index a3c0703..18cf8d4 100644 ---- a/po/es.po -+++ b/po/es.po -@@ -1,3 +1,5 @@ -+# #-#-#-#-# es.po (gnome-shell-extensions master) #-#-#-#-# -+# #-#-#-#-# es.po (gnome-shell-extensions master) #-#-#-#-# - # Spanish translation for gnome-shell-extensions. - # Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER - # This file is distributed under the same license as the gnome-shell-extensions package. -@@ -6,8 +8,27 @@ - # - # Daniel Mustieles , 2011-2015, 2017. ++msgstr "Vis papirkurvsikonet på skrivebordet." ++ ++#~ msgid "Huge" ++#~ msgstr "Enorme" +diff --git a/po/de.po b/po/de.po +index 01924b8..6bd5c83 100644 +--- a/po/de.po ++++ b/po/de.po +@@ -1,3 +1,4 @@ ++# #-#-#-#-# de.po (gnome-shell-extensions master) #-#-#-#-# + # German translation for gnome-shell-extensions. + # Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER + # This file is distributed under the same license as the gnome-shell-extensions package. +@@ -7,8 +8,17 @@ + # Wolfgang Stöggl , 2014. + # Paul Seyfert , 2017. # -+# #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -+# SOME DESCRIPTIVE TITLE. -+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -+# This file is distributed under the same license as the PACKAGE package. -+# FIRST AUTHOR , YEAR. -+# Sergio Costas , 2018. -+# Daniel Mustieles , 2018, 2019. -+# -+# #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -+# SOME DESCRIPTIVE TITLE. -+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -+# This file is distributed under the same license as the PACKAGE package. -+# FIRST AUTHOR , YEAR. -+# Sergio Costas , 2018. -+# Daniel Mustieles , 2018, 2019. ++# #-#-#-#-# de.po (desktop-icons master) #-#-#-#-# ++# German translation for desktop-icons. ++# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER ++# This file is distributed under the same license as the desktop-icons package. ++# Mario Blättermann , 2018. ++# rugk , 2019. +# +#, fuzzy msgid "" msgstr "" -+"#-#-#-#-# es.po (gnome-shell-extensions master) #-#-#-#-#\n" -+"#-#-#-#-# es.po (gnome-shell-extensions master) #-#-#-#-#\n" ++"#-#-#-#-# de.po (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-" "shell&keywords=I18N+L10N&component=extensions\n" -@@ -21,6 +42,34 @@ msgstr "" +@@ -22,6 +32,20 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" - "X-Generator: Gtranslator 2.91.6\n" -+"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -+"Project-Id-Version: PACKAGE VERSION\n" -+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -+"icons/issues\n" -+"POT-Creation-Date: 2018-12-14 09:12+0000\n" -+"PO-Revision-Date: 2019-01-08 16:12+0100\n" -+"Last-Translator: Daniel Mustieles \n" -+"Language-Team: es \n" -+"Language: es\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=2; plural=(n != 1);\n" -+"X-Generator: Gtranslator 2.91.7\n" -+"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -+"Project-Id-Version: PACKAGE VERSION\n" + "X-Generator: Poedit 2.0.2\n" ++"#-#-#-#-# de.po (desktop-icons master) #-#-#-#-#\n" ++"Project-Id-Version: desktop-icons master\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" -+"POT-Creation-Date: 2018-12-14 09:12+0000\n" -+"PO-Revision-Date: 2019-01-08 16:12+0100\n" -+"Last-Translator: Daniel Mustieles \n" -+"Language-Team: es \n" -+"Language: es\n" ++"POT-Creation-Date: 2019-03-07 22:46+0000\n" ++"PO-Revision-Date: 2019-03-09 15:42+0100\n" ++"Last-Translator: Tim Sabsch \n" ++"Language-Team: German \n" ++"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -+"X-Generator: Gtranslator 2.91.7\n" ++"X-Generator: Poedit 2.2.1\n" #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 msgid "GNOME Classic" -@@ -361,6 +410,146 @@ msgstr "Nombre" +@@ -366,3 +390,174 @@ msgstr "Name" + #, javascript-format msgid "Workspace %d" - msgstr "Área de trabajo %d" - -+#: desktopGrid.js:311 -+msgid "Display Settings" -+msgstr "Configuración de pantalla" + msgstr "Arbeitsfläche %d" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 -+msgid "Icon size" -+msgstr "Tamaño de los iconos" ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "Neuer Ordner" + -+#: desktopGrid.js:578 ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Erstellen" ++ ++#: createFolderDialog.js:74 desktopGrid.js:586 +msgid "Cancel" -+msgstr "Cancelar" ++msgstr "Abbrechen" ++ ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "Ordnernamen dürfen kein »/« enthalten." ++ ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "Ein Ordner darf nicht ».« genannt werden." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "Ein Ordner darf nicht »..« genannt werden." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Ordner mit ».« am Anfang sind verborgen." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Es gibt bereits eine Datei oder einen Ordner mit diesem Namen." + +#: prefs.js:102 +msgid "Size for the desktop icons" -+msgstr "Tamaño de los iconos del escritorio" ++msgstr "Größe der Arbeitsflächensymbole" + +#: prefs.js:102 +msgid "Small" -+msgstr "Pequeño" ++msgstr "Klein" + +#: prefs.js:102 +msgid "Standard" -+msgstr "Estándar" ++msgstr "Standard" + +#: prefs.js:102 +msgid "Large" -+msgstr "Grande" -+ -+#: prefs.js:102 -+msgid "Huge" -+msgstr "Inmenso" ++msgstr "Groß" + +#: prefs.js:103 +msgid "Show the personal folder in the desktop" -+msgstr "Mostrar la carpeta personal en el escritorio" ++msgstr "Den persönlichen Ordner auf der Arbeitsfläche anzeigen" + +#: prefs.js:104 +msgid "Show the trash icon in the desktop" -+msgstr "Mostrar la papelera en el escritorio" ++msgstr "Papierkorb-Symbol auf der Arbeitsfläche anzeigen" + -+#: desktopGrid.js:182 desktopGrid.js:301 ++#: desktopGrid.js:320 +msgid "New Folder" -+msgstr "Nueva carpeta" ++msgstr "Neuer Ordner" + -+#: desktopGrid.js:303 ++#: desktopGrid.js:322 +msgid "Paste" -+msgstr "Pegar" ++msgstr "Einfügen" + -+#: desktopGrid.js:304 ++#: desktopGrid.js:323 +msgid "Undo" -+msgstr "Deshacer" ++msgstr "Rückgängig" + -+#: desktopGrid.js:305 ++#: desktopGrid.js:324 +msgid "Redo" -+msgstr "Rehacer" -+ -+#: desktopGrid.js:307 -+msgid "Open Desktop in Files" -+msgstr "Abrir el escritorio en Files" ++msgstr "Wiederholen" + -+#: desktopGrid.js:308 -+msgid "Open Terminal" -+msgstr "Abrir un terminal" ++#: desktopGrid.js:326 ++msgid "Show Desktop in Files" ++msgstr "Schreibtisch in Dateien anzeigen" + -+#: desktopGrid.js:310 ++#: desktopGrid.js:327 fileItem.js:606 ++msgid "Open in Terminal" ++msgstr "Im Terminal öffnen" ++ ++#: desktopGrid.js:329 +msgid "Change Background…" -+msgstr "Cambiar el fondo..." ++msgstr "Hintergrund ändern …" + -+#: desktopGrid.js:312 ++#: desktopGrid.js:331 ++msgid "Display Settings" ++msgstr "Anzeigeeinstellungen" ++ ++#: desktopGrid.js:332 +msgid "Settings" -+msgstr "Configuración" ++msgstr "Einstellungen" + -+#: desktopGrid.js:568 ++#: desktopGrid.js:576 +msgid "Enter file name…" -+msgstr "Introduzca el nombre del archivo…" ++msgstr "Dateinamen eingeben …" + -+#: desktopGrid.js:572 ++#: desktopGrid.js:580 +msgid "OK" -+msgstr "Aceptar" ++msgstr "OK" + -+#: fileItem.js:485 ++#: fileItem.js:490 +msgid "Don’t Allow Launching" -+msgstr "No permitir lanzar" ++msgstr "Start nicht erlauben" + -+#: fileItem.js:487 ++#: fileItem.js:492 +msgid "Allow Launching" -+msgstr "Permitir lanzar" ++msgstr "Start erlauben" + -+#: fileItem.js:550 ++#: fileItem.js:574 +msgid "Open" -+msgstr "Abrir" ++msgstr "Öffnen" + -+#: fileItem.js:553 ++#: fileItem.js:578 ++msgid "Open With Other Application" ++msgstr "Mit anderer Anwendung öffnen" ++ ++#: fileItem.js:582 +msgid "Cut" -+msgstr "Cortar" ++msgstr "Ausschneiden" + -+#: fileItem.js:554 ++#: fileItem.js:583 +msgid "Copy" -+msgstr "Copiar" ++msgstr "Kopieren" + -+#: fileItem.js:556 -+msgid "Rename" -+msgstr "Renombrar" ++#: fileItem.js:585 ++msgid "Rename…" ++msgstr "Umbenennen …" + -+#: fileItem.js:557 ++#: fileItem.js:586 +msgid "Move to Trash" -+msgstr "Mover a la papelera" ++msgstr "In den Papierkorb verschieben" + -+#: fileItem.js:567 ++#: fileItem.js:596 +msgid "Empty Trash" -+msgstr "Vaciar la papelera" ++msgstr "Papierkorb leeren" + -+#: fileItem.js:573 ++#: fileItem.js:602 +msgid "Properties" -+msgstr "Propiedades" ++msgstr "Eigenschaften" + -+#: fileItem.js:575 ++#: fileItem.js:604 +msgid "Show in Files" -+msgstr "Mostrar en Files" ++msgstr "In Dateiverwaltung anzeigen" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:13 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 ++msgid "Icon size" ++msgstr "Symbolgröße" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 +msgid "Set the size for the desktop icons." -+msgstr "Establece el tamaño de los iconos del escritorio." ++msgstr "Die Größe der Arbeitsflächensymbole festlegen." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 +msgid "Show personal folder" -+msgstr "Mostrar la carpeta personal" ++msgstr "Persönlichen Ordner anzeigen" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:18 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 +msgid "Show the personal folder in the desktop." -+msgstr "Mostrar la carpeta personal en el escritorio." ++msgstr "Den persönlichen Ordner auf der Arbeitsfläche anzeigen." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 +msgid "Show trash icon" -+msgstr "Mostrar la papelera" ++msgstr "Papierkorb-Symbol anzeigen" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:23 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 +msgid "Show the trash icon in the desktop." -+msgstr "Mostrar la papelera en el escritorio." -+ - #~ msgid "CPU" - #~ msgstr "CPU" - -@@ -409,9 +598,6 @@ msgstr "Área de trabajo %d" - #~ msgid "Display" - #~ msgstr "Pantalla" - --#~ msgid "Display Settings" --#~ msgstr "Configuración de pantalla" -- - #~ msgid "File System" - #~ msgstr "Sistema de archivos" - -@@ -459,9 +645,6 @@ msgstr "Área de trabajo %d" - #~ "Configura la posición del tablero en la pantalla. Los valores permitidos " - #~ "son «right» (derecha) o «left» (izquierda)" - --#~ msgid "Icon size" --#~ msgstr "Tamaño del icono" -- - #~ msgid "Sets icon size of the dock." - #~ msgstr "Configura el tamaño de los íconos del tablero." - -@@ -632,9 +815,6 @@ msgstr "Área de trabajo %d" - #~ msgid "Alt Tab Behaviour" - #~ msgstr "Comportamiento de Alt+Tab" - --#~ msgid "Cancel" --#~ msgstr "Cancelar" -- - #~ msgid "Notifications" - #~ msgstr "Notificaciones" - -@@ -668,3 +848,27 @@ msgstr "Área de trabajo %d" - - #~ msgid "Busy" - #~ msgstr "Ocupado" -+ -+#~ msgid "Ok" -+#~ msgstr "Aceptar" -+ -+#~ msgid "huge" -+#~ msgstr "inmenso" -+ -+#~ msgid "Maximum width for the icons and filename." -+#~ msgstr "Ancho máximo de los iconos y el nombre de fichero." -+ -+#~ msgid "Shows the Documents folder in the desktop." -+#~ msgstr "Muestra la carpeta Documentos en el escritorio." -+ -+#~ msgid "Shows the Downloads folder in the desktop." -+#~ msgstr "Muestra la carpeta Descargas en el escritorio." -+ -+#~ msgid "Shows the Music folder in the desktop." -+#~ msgstr "Muestra la carpeta Música en el escritorio." -+ -+#~ msgid "Shows the Pictures folder in the desktop." -+#~ msgstr "Muestra la carpeta Imágenes en el escritorio." ++msgstr "Das Papierkorb-Symbol auf der Arbeitsfläche anzeigen." + -+#~ msgid "Shows the Videos folder in the desktop." -+#~ msgstr "Muestra la carpeta Vídeos en el escritorio." -diff --git a/po/fi.po b/po/fi.po -index e036448..73b33cc 100644 ---- a/po/fi.po -+++ b/po/fi.po -@@ -1,3 +1,5 @@ -+# #-#-#-#-# fi.po (gnome-shell-extensions) #-#-#-#-# -+# #-#-#-#-# fi.po (gnome-shell-extensions) #-#-#-#-# - # Finnish translation of gnome-shell-extensions. - # Copyright (C) 2011 Ville-Pekka Vainio ++#~ msgid "Huge" ++#~ msgstr "Riesig" +diff --git a/po/en_GB.po b/po/en_GB.po +index 92ae445..60fc687 100644 +--- a/po/en_GB.po ++++ b/po/en_GB.po +@@ -1,11 +1,20 @@ ++# #-#-#-#-# en_GB.po (gnome-shell-extensions) #-#-#-#-# + # British English translation of gnome-shell-extensions. + # Copyright (C) 2011 gnome-shell-extensions'S COPYRIGHT HOLDER. # This file is distributed under the same license as the gnome-shell-extensions package. -@@ -7,8 +9,23 @@ - # Ville-Pekka Vainio , 2011. - # Jiri Grönroos , 2012, 2013, 2014, 2015, 2017. - # -+# #-#-#-#-# fi.po (desktop-icons master) #-#-#-#-# -+# Finnish translation for desktop-icons. -+# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER -+# This file is distributed under the same license as the desktop-icons package. -+# Jiri Grönroos , 2018. -+# -+# #-#-#-#-# fi.po (desktop-icons master) #-#-#-#-# -+# Finnish translation for desktop-icons. -+# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER + # Bruce Cowan , 2011, 2018. + # Chris Leonard , 2012. + # Philip Withnall , 2014. ++# #-#-#-#-# en_GB.po (desktop-icons master) #-#-#-#-# ++# British English translation for desktop-icons. ++# Copyright (C) 2019 desktop-icons's COPYRIGHT HOLDER +# This file is distributed under the same license as the desktop-icons package. -+# Jiri Grönroos , 2018. ++# Zander Brown , 2019. +# +#, fuzzy msgid "" msgstr "" -+"#-#-#-#-# fi.po (gnome-shell-extensions) #-#-#-#-#\n" -+"#-#-#-#-# fi.po (gnome-shell-extensions) #-#-#-#-#\n" ++"#-#-#-#-# en_GB.po (gnome-shell-extensions) #-#-#-#-#\n" "Project-Id-Version: gnome-shell-extensions\n" - "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" - "shell&keywords=I18N+L10N&component=extensions\n" -@@ -24,6 +41,34 @@ msgstr "" - "X-Generator: Gtranslator 2.91.7\n" + "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" + "issues\n" +@@ -20,6 +29,20 @@ msgstr "" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" + "X-Generator: Poedit 2.0.6\n" "X-Project-Style: gnome\n" - "X-POT-Import-Date: 2012-03-05 15:06:12+0000\n" -+"#-#-#-#-# fi.po (desktop-icons master) #-#-#-#-#\n" -+"Project-Id-Version: desktop-icons master\n" -+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -+"icons/issues\n" -+"POT-Creation-Date: 2018-10-14 08:09+0000\n" -+"PO-Revision-Date: 2018-10-14 12:44+0300\n" -+"Language-Team: Finnish \n" -+"Language: fi\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=2; plural=(n != 1);\n" -+"Last-Translator: Jiri Grönroos \n" -+"X-Generator: Poedit 2.0.6\n" -+"#-#-#-#-# fi.po (desktop-icons master) #-#-#-#-#\n" ++"#-#-#-#-# en_GB.po (desktop-icons master) #-#-#-#-#\n" +"Project-Id-Version: desktop-icons master\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" -+"POT-Creation-Date: 2018-10-14 08:09+0000\n" -+"PO-Revision-Date: 2018-10-14 12:44+0300\n" -+"Language-Team: Finnish \n" -+"Language: fi\n" ++"POT-Creation-Date: 2019-08-22 15:53+0000\n" ++"PO-Revision-Date: 2019-08-23 21:48+0100\n" ++"Last-Translator: Zander Brown \n" ++"Language-Team: English - United Kingdom \n" ++"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -+"Last-Translator: Jiri Grönroos \n" -+"X-Generator: Poedit 2.0.6\n" ++"X-Generator: Gtranslator 3.32.1\n" #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 msgid "GNOME Classic" -@@ -352,6 +397,122 @@ msgstr "Nimi" +@@ -367,6 +390,178 @@ msgstr "Name" msgid "Workspace %d" - msgstr "Työtila %d" + msgstr "Workspace %d" -+#: desktopGrid.js:307 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 ++msgid "Icon size" ++msgstr "Icon size" ++ ++#: desktopGrid.js:334 +msgid "Display Settings" -+msgstr "Näytön asetukset" ++msgstr "Display Settings" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 -+msgid "Icon size" -+msgstr "Kuvakekoko" ++#: createFolderDialog.js:74 desktopGrid.js:592 ++msgid "Cancel" ++msgstr "Cancel" + -+#: prefs.js:89 ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "New folder name" ++ ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Create" ++ ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "Folder names cannot contain “/”." ++ ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "A folder cannot be called “.”." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "A folder cannot be called “..”." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Folders with “.” at the beginning of their name are hidden." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "There is already a file or folder with that name." ++ ++#: prefs.js:102 +msgid "Size for the desktop icons" -+msgstr "Työpöytäkuvakkeiden koko" ++msgstr "Size for the desktop icons" + -+#: prefs.js:89 ++#: prefs.js:102 +msgid "Small" -+msgstr "Pieni" ++msgstr "Small" + -+#: prefs.js:89 ++#: prefs.js:102 +msgid "Standard" -+msgstr "Normaali" ++msgstr "Standard" + -+#: prefs.js:89 ++#: prefs.js:102 +msgid "Large" -+msgstr "Suuri" -+ -+#: prefs.js:89 -+msgid "Huge" -+msgstr "Valtava" ++msgstr "Large" + -+#: prefs.js:90 ++#: prefs.js:103 +msgid "Show the personal folder in the desktop" -+msgstr "Näytä kotikansio työpöydällä" ++msgstr "Show the personal folder on the desktop" + -+#: prefs.js:91 ++#: prefs.js:104 +msgid "Show the trash icon in the desktop" -+msgstr "Näytä roskakorin kuvake työpöydällä" ++msgstr "Show the wastebasket icon on the desktop" + -+#: desktopGrid.js:178 desktopGrid.js:297 ++#: desktopGrid.js:323 +msgid "New Folder" -+msgstr "Uusi kansio" ++msgstr "New Folder" + -+#: desktopGrid.js:299 ++#: desktopGrid.js:325 +msgid "Paste" -+msgstr "Liitä" ++msgstr "Paste" + -+#: desktopGrid.js:300 ++#: desktopGrid.js:326 +msgid "Undo" -+msgstr "Kumoa" ++msgstr "Undo" + -+#: desktopGrid.js:301 ++#: desktopGrid.js:327 +msgid "Redo" -+msgstr "Tee uudeleen" ++msgstr "Redo" + -+#: desktopGrid.js:303 -+msgid "Open Desktop in Files" -+msgstr "Avaa työpöytä tiedostonhallinnassa" ++#: desktopGrid.js:329 ++msgid "Show Desktop in Files" ++msgstr "Show Desktop in Files" + -+#: desktopGrid.js:304 -+msgid "Open Terminal" -+msgstr "Avaa pääte" ++#: desktopGrid.js:330 fileItem.js:626 ++msgid "Open in Terminal" ++msgstr "Open in Terminal" + -+#: desktopGrid.js:306 ++#: desktopGrid.js:332 +msgid "Change Background…" -+msgstr "Vaihda taustakuvaa…" ++msgstr "Change Background…" + -+#: desktopGrid.js:308 ++#: desktopGrid.js:335 +msgid "Settings" -+msgstr "Asetukset" ++msgstr "Settings" ++ ++#: desktopGrid.js:582 ++msgid "Enter file name…" ++msgstr "Enter file name…" ++ ++#: desktopGrid.js:586 ++msgid "OK" ++msgstr "OK" ++ ++#: desktopIconsUtil.js:61 ++msgid "Command not found" ++msgstr "Command not found" ++ ++#: fileItem.js:499 ++msgid "Don’t Allow Launching" ++msgstr "Don’t Allow Launching" ++ ++#: fileItem.js:501 ++msgid "Allow Launching" ++msgstr "Allow Launching" + -+#: fileItem.js:211 ++#: fileItem.js:594 +msgid "Open" -+msgstr "Avaa" ++msgstr "Open" ++ ++#: fileItem.js:598 ++msgid "Open With Other Application" ++msgstr "Open With Other Application" + -+#: fileItem.js:214 ++#: fileItem.js:602 +msgid "Cut" -+msgstr "Leikkaa" ++msgstr "Cut" + -+#: fileItem.js:215 ++#: fileItem.js:603 +msgid "Copy" -+msgstr "Kopioi" ++msgstr "Copy" ++ ++#: fileItem.js:605 ++msgid "Rename…" ++msgstr "Rename…" + -+#: fileItem.js:216 ++#: fileItem.js:606 +msgid "Move to Trash" -+msgstr "Siirrä roskakoriin" ++msgstr "Move to Wastebasket" + -+#: fileItem.js:220 -+msgid "Empty trash" -+msgstr "Tyhjennä roskakori" ++#: fileItem.js:616 ++msgid "Empty Trash" ++msgstr "Empty Wastebasket" + -+#: fileItem.js:226 ++#: fileItem.js:622 +msgid "Properties" -+msgstr "Ominaisuudet" ++msgstr "Properties" + -+#: fileItem.js:228 ++#: fileItem.js:624 +msgid "Show in Files" -+msgstr "Näytä tiedostonhallinnassa" ++msgstr "Show in Files" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:13 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 +msgid "Set the size for the desktop icons." -+msgstr "Aseta työpöytäkuvakkeiden koko." ++msgstr "Set the size for the desktop icons." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 +msgid "Show personal folder" -+msgstr "Näytä kotikansio" ++msgstr "Show personal folder" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:18 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 +msgid "Show the personal folder in the desktop." -+msgstr "Näytä kotikansio työpöydällä." ++msgstr "Show the personal folder on the desktop." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 +msgid "Show trash icon" -+msgstr "Näytä roskakorin kuvake" ++msgstr "Show wastebasket icon" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:23 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 +msgid "Show the trash icon in the desktop." -+msgstr "Näytä roskakorin kuvake työpöydällä." ++msgstr "Show the trash icon on the desktop." + - #~ msgid "CPU" - #~ msgstr "Suoritin" + #~ msgid "GNOME Shell Classic" + #~ msgstr "GNOME Shell Classic" + +@@ -434,9 +629,6 @@ msgstr "Workspace %d" + #~ "Sets the position of the dock in the screen. Allowed values are 'right' " + #~ "or 'left'" + +-#~ msgid "Icon size" +-#~ msgstr "Icon size" +- + #~ msgid "Sets icon size of the dock." + #~ msgstr "Sets icon size of the dock." -@@ -388,9 +549,6 @@ msgstr "Työtila %d" +@@ -508,9 +700,6 @@ msgstr "Workspace %d" #~ msgid "Display" - #~ msgstr "Näyttö" + #~ msgstr "Display" -#~ msgid "Display Settings" --#~ msgstr "Näytön asetukset" +-#~ msgstr "Display Settings" - - #~ msgid "Drag here to add favorites" - #~ msgstr "Raahaa tähän lisätäksesi suosikkeihin" + #~ msgid "Do Not Disturb" + #~ msgstr "Do Not Disturb" -@@ -412,9 +570,6 @@ msgstr "Työtila %d" - #~ msgstr "" - #~ "Asettaa telakan sijainnin näytöllä. Sallitut arvot ovat 'right' tai 'left'" +@@ -582,9 +771,6 @@ msgstr "Workspace %d" + #~ msgid "Native" + #~ msgstr "Native" --#~ msgid "Icon size" --#~ msgstr "Kuvakkeiden koko" +-#~ msgid "Cancel" +-#~ msgstr "Cancel" - - #~ msgid "Sets icon size of the dock." - #~ msgstr "Asettaa telakan kuvakkeiden koon." + #~ msgid "Ask the user for a default behaviour if true." + #~ msgstr "Ask the user for a default behaviour if true." -diff --git a/po/fr.po b/po/fr.po -index 6825d0d..a61cc76 100644 ---- a/po/fr.po -+++ b/po/fr.po -@@ -1,3 +1,5 @@ -+# #-#-#-#-# fr.po (gnome-shell-extensions master) #-#-#-#-# -+# #-#-#-#-# fr.po (gnome-shell-extensions master) #-#-#-#-# - # French translation for gnome-shell-extensions. - # Copyright (C) 2011-12 Listed translators - # This file is distributed under the same license as the gnome-shell-extensions package. -@@ -5,8 +7,25 @@ - # Alain Lojewski , 2012-2013. - # Charles Monzat , 2018. +diff --git a/po/es.po b/po/es.po +index a3c0703..ee30c8a 100644 +--- a/po/es.po ++++ b/po/es.po +@@ -1,3 +1,4 @@ ++# #-#-#-#-# es.po (gnome-shell-extensions master) #-#-#-#-# + # Spanish translation for gnome-shell-extensions. + # Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER + # This file is distributed under the same license as the gnome-shell-extensions package. +@@ -6,8 +7,18 @@ + # + # Daniel Mustieles , 2011-2015, 2017. # -+# #-#-#-#-# fr.po (desktop-icons master) #-#-#-#-# -+# French translation for desktop-icons. -+# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER -+# This file is distributed under the same license as the desktop-icons package. -+# ghentdebian , 2018. -+# Charles Monzat , 2018. -+# -+# #-#-#-#-# fr.po (desktop-icons master) #-#-#-#-# -+# French translation for desktop-icons. -+# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER -+# This file is distributed under the same license as the desktop-icons package. -+# ghentdebian , 2018. -+# Charles Monzat , 2018. ++# #-#-#-#-# es.po (1.0) #-#-#-#-# ++# SOME DESCRIPTIVE TITLE. ++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ++# This file is distributed under the same license as the PACKAGE package. ++# FIRST AUTHOR , YEAR. ++# Sergio Costas , 2018. ++# Daniel Mustieles , 2018-2019. +# +#, fuzzy msgid "" msgstr "" -+"#-#-#-#-# fr.po (gnome-shell-extensions master) #-#-#-#-#\n" -+"#-#-#-#-# fr.po (gnome-shell-extensions master) #-#-#-#-#\n" ++"#-#-#-#-# es.po (gnome-shell-extensions master) #-#-#-#-#\n" "Project-Id-Version: gnome-shell-extensions master\n" - "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" - "issues\n" -@@ -19,6 +38,33 @@ msgstr "" - "Content-Type: text/plain; charset=UTF-8\n" + "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" + "shell&keywords=I18N+L10N&component=extensions\n" +@@ -21,6 +32,20 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" -+"#-#-#-#-# fr.po (desktop-icons master) #-#-#-#-#\n" -+"Project-Id-Version: desktop-icons master\n" -+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -+"icons/issues\n" -+"POT-Creation-Date: 2018-12-14 09:12+0000\n" -+"PO-Revision-Date: 2018-12-16 17:47+0100\n" -+"Last-Translator: Charles Monzat \n" -+"Language-Team: GNOME French Team \n" -+"Language: fr\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=2; plural=(n > 1)\n" -+"X-Generator: Gtranslator 3.30.0\n" -+"#-#-#-#-# fr.po (desktop-icons master) #-#-#-#-#\n" -+"Project-Id-Version: desktop-icons master\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" + "X-Generator: Gtranslator 2.91.6\n" ++"#-#-#-#-# es.po (1.0) #-#-#-#-#\n" ++"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" -+"POT-Creation-Date: 2018-12-14 09:12+0000\n" -+"PO-Revision-Date: 2018-12-16 17:47+0100\n" -+"Last-Translator: Charles Monzat \n" -+"Language-Team: GNOME French Team \n" -+"Language: fr\n" ++"POT-Creation-Date: 2019-04-29 14:11+0000\n" ++"PO-Revision-Date: 2019-05-13 15:13+0200\n" ++"Last-Translator: Daniel Mustieles \n" ++"Language-Team: es \n" ++"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=2; plural=(n > 1)\n" - "X-Generator: Gtranslator 3.30.0\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Gtranslator 3.32.0\n" #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 -@@ -354,9 +400,151 @@ msgstr "Espace de travail %d" - #~ msgstr "" - #~ "Retarder les changements de focus en mode souris jusqu’à ce que le " - #~ "pointeur arrête de bouger" + msgid "GNOME Classic" +@@ -361,6 +386,188 @@ msgstr "Nombre" + msgid "Workspace %d" + msgstr "Área de trabajo %d" + ++#: desktopGrid.js:334 ++#, fuzzy ++msgid "Display Settings" ++msgstr "" ++"#-#-#-#-# es.po (gnome-shell-extensions master) #-#-#-#-#\n" ++"Configuración de pantalla\n" ++"#-#-#-#-# es.po (1.0) #-#-#-#-#\n" ++"Configuración de pantalla" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 ++#, fuzzy ++msgid "Icon size" ++msgstr "" ++"#-#-#-#-# es.po (gnome-shell-extensions master) #-#-#-#-#\n" ++"Tamaño del icono\n" ++"#-#-#-#-# es.po (1.0) #-#-#-#-#\n" ++"Tamaño de los iconos" ++ ++#: createFolderDialog.js:74 desktopGrid.js:592 ++msgid "Cancel" ++msgstr "Cancelar" ++ ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "Nombre de la nueva carpeta" ++ ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Crear" ++ ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "Los nombres de carpetas no pueden contener «/»." ++ ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "Una carpeta no se puede llamar «.»." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "Una carpeta no se puede llamar «..»." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Las carpetas cuyo nombre empieza por «.» están ocultas." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Ya hay un archivo o carpeta con ese nombre." ++ +#: prefs.js:102 +msgid "Size for the desktop icons" -+msgstr "Taille des icônes du bureau" ++msgstr "Tamaño de los iconos del escritorio" + +#: prefs.js:102 +msgid "Small" -+msgstr "Petite" ++msgstr "Pequeño" + +#: prefs.js:102 +msgid "Standard" -+msgstr "Normale" ++msgstr "Estándar" + +#: prefs.js:102 +msgid "Large" +msgstr "Grande" + -+#: prefs.js:102 -+msgid "Huge" -+msgstr "Immense" -+ +#: prefs.js:103 +msgid "Show the personal folder in the desktop" -+msgstr "Montrer le dossier personnel sur le bureau" ++msgstr "Mostrar la carpeta personal en el escritorio" + +#: prefs.js:104 +msgid "Show the trash icon in the desktop" -+msgstr "Montrer la corbeille sur le bureau" ++msgstr "Mostrar la papelera en el escritorio" + -+#: desktopGrid.js:182 desktopGrid.js:301 ++#: desktopGrid.js:323 +msgid "New Folder" -+msgstr "Nouveau dossier" ++msgstr "Nueva carpeta" + -+#: desktopGrid.js:303 ++#: desktopGrid.js:325 +msgid "Paste" -+msgstr "Coller" ++msgstr "Pegar" + -+#: desktopGrid.js:304 ++#: desktopGrid.js:326 +msgid "Undo" -+msgstr "Annuler" ++msgstr "Deshacer" + -+#: desktopGrid.js:305 ++#: desktopGrid.js:327 +msgid "Redo" -+msgstr "Refaire" ++msgstr "Rehacer" + -+#: desktopGrid.js:307 -+msgid "Open Desktop in Files" -+msgstr "Ouvrir le bureau dans Fichiers" ++#: desktopGrid.js:329 ++msgid "Show Desktop in Files" ++msgstr "Mostrar el escritorio en Archivos" + -+#: desktopGrid.js:308 -+msgid "Open Terminal" -+msgstr "Ouvrir un terminal" ++#: desktopGrid.js:330 fileItem.js:610 ++msgid "Open in Terminal" ++msgstr "Abrir en una terminal" + -+#: desktopGrid.js:310 ++#: desktopGrid.js:332 +msgid "Change Background…" -+msgstr "Changer l’arrière-plan…" -+ -+#: desktopGrid.js:311 -+msgid "Display Settings" -+msgstr "Configuration d’affichage" ++msgstr "Cambiar el fondo..." + -+#: desktopGrid.js:312 ++#: desktopGrid.js:335 +msgid "Settings" -+msgstr "Paramètres" ++msgstr "Configuración" + -+#: desktopGrid.js:568 ++#: desktopGrid.js:582 +msgid "Enter file name…" -+msgstr "Saisir un nom de fichier…" ++msgstr "Introduzca el nombre del archivo…" + -+#: desktopGrid.js:572 ++#: desktopGrid.js:586 +msgid "OK" -+msgstr "Valider" ++msgstr "Aceptar" + -+#: desktopGrid.js:578 -+msgid "Cancel" -+msgstr "Annuler" ++#: desktopIconsUtil.js:61 ++msgid "Command not found" ++msgstr "Comando no encontrado" + -+#: fileItem.js:485 ++#: fileItem.js:494 +msgid "Don’t Allow Launching" -+msgstr "Ne pas autoriser le lancement" ++msgstr "No permitir lanzar" + -+#: fileItem.js:487 ++#: fileItem.js:496 +msgid "Allow Launching" -+msgstr "Autoriser le lancement" ++msgstr "Permitir lanzar" + -+#: fileItem.js:550 ++#: fileItem.js:578 +msgid "Open" -+msgstr "Ouvrir" ++msgstr "Abrir" + -+#: fileItem.js:553 ++#: fileItem.js:582 ++msgid "Open With Other Application" ++msgstr "Abrir con otra aplicación" ++ ++#: fileItem.js:586 +msgid "Cut" -+msgstr "Couper" ++msgstr "Cortar" + -+#: fileItem.js:554 ++#: fileItem.js:587 +msgid "Copy" -+msgstr "Copier" ++msgstr "Copiar" + -+#: fileItem.js:556 -+msgid "Rename" -+msgstr "Renommer" ++#: fileItem.js:589 ++msgid "Rename…" ++msgstr "Renombrar…" + -+#: fileItem.js:557 ++#: fileItem.js:590 +msgid "Move to Trash" -+msgstr "Mettre à la corbeille" ++msgstr "Mover a la papelera" + -+#: fileItem.js:567 ++#: fileItem.js:600 +msgid "Empty Trash" -+msgstr "Vider la corbeille" ++msgstr "Vaciar la papelera" + -+#: fileItem.js:573 ++#: fileItem.js:606 +msgid "Properties" -+msgstr "Propriétés" ++msgstr "Propiedades" + -+#: fileItem.js:575 ++#: fileItem.js:608 +msgid "Show in Files" -+msgstr "Montrer dans Fichiers" ++msgstr "Mostrar en Files" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 -+msgid "Icon size" -+msgstr "Taille d’icônes" -+ -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:13 +msgid "Set the size for the desktop icons." -+msgstr "Définir la taille des icônes du bureau." ++msgstr "Establece el tamaño de los iconos del escritorio." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 +msgid "Show personal folder" -+msgstr "Montrer le dossier personnel" ++msgstr "Mostrar la carpeta personal" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:18 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 +msgid "Show the personal folder in the desktop." -+msgstr "Montrer le dossier personnel sur le bureau." ++msgstr "Mostrar la carpeta personal en el escritorio." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 +msgid "Show trash icon" -+msgstr "Montrer l’icône de la corbeille" ++msgstr "Mostrar la papelera" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:23 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 +msgid "Show the trash icon in the desktop." -+msgstr "Montrer la corbeille sur le bureau." - ++msgstr "Mostrar la papelera en el escritorio." ++ #~ msgid "CPU" #~ msgstr "CPU" - #~ msgid "Memory" - #~ msgstr "Mémoire" +@@ -409,9 +616,6 @@ msgstr "Área de trabajo %d" + #~ msgid "Display" + #~ msgstr "Pantalla" + +-#~ msgid "Display Settings" +-#~ msgstr "Configuración de pantalla" +- + #~ msgid "File System" + #~ msgstr "Sistema de archivos" + +@@ -459,9 +663,6 @@ msgstr "Área de trabajo %d" + #~ "Configura la posición del tablero en la pantalla. Los valores permitidos " + #~ "son «right» (derecha) o «left» (izquierda)" + +-#~ msgid "Icon size" +-#~ msgstr "Tamaño del icono" +- + #~ msgid "Sets icon size of the dock." + #~ msgstr "Configura el tamaño de los íconos del tablero." + +@@ -632,9 +833,6 @@ msgstr "Área de trabajo %d" + #~ msgid "Alt Tab Behaviour" + #~ msgstr "Comportamiento de Alt+Tab" + +-#~ msgid "Cancel" +-#~ msgstr "Cancelar" +- + #~ msgid "Notifications" + #~ msgstr "Notificaciones" + +@@ -668,3 +866,30 @@ msgstr "Área de trabajo %d" + + #~ msgid "Busy" + #~ msgstr "Ocupado" ++ ++#~ msgid "Huge" ++#~ msgstr "Inmenso" + +#~ msgid "Ok" -+#~ msgstr "Valider" -diff --git a/po/id.po b/po/id.po -index 8986a5e..033ae90 100644 ---- a/po/id.po -+++ b/po/id.po -@@ -1,11 +1,28 @@ -+# #-#-#-#-# id.po (gnome-shell-extensions master) #-#-#-#-# -+# #-#-#-#-# id.po (gnome-shell-extensions master) #-#-#-#-# - # Indonesian translation for gnome-shell-extensions. - # Copyright (C) 2012 gnome-shell-extensions's COPYRIGHT HOLDER ++#~ msgstr "Aceptar" ++ ++#~ msgid "huge" ++#~ msgstr "inmenso" ++ ++#~ msgid "Maximum width for the icons and filename." ++#~ msgstr "Ancho máximo de los iconos y el nombre de fichero." ++ ++#~ msgid "Shows the Documents folder in the desktop." ++#~ msgstr "Muestra la carpeta Documentos en el escritorio." ++ ++#~ msgid "Shows the Downloads folder in the desktop." ++#~ msgstr "Muestra la carpeta Descargas en el escritorio." ++ ++#~ msgid "Shows the Music folder in the desktop." ++#~ msgstr "Muestra la carpeta Música en el escritorio." ++ ++#~ msgid "Shows the Pictures folder in the desktop." ++#~ msgstr "Muestra la carpeta Imágenes en el escritorio." ++ ++#~ msgid "Shows the Videos folder in the desktop." ++#~ msgstr "Muestra la carpeta Vídeos en el escritorio." +diff --git a/po/fi.po b/po/fi.po +index e036448..e23c0c8 100644 +--- a/po/fi.po ++++ b/po/fi.po +@@ -1,3 +1,4 @@ ++# #-#-#-#-# fi.po (gnome-shell-extensions) #-#-#-#-# + # Finnish translation of gnome-shell-extensions. + # Copyright (C) 2011 Ville-Pekka Vainio # This file is distributed under the same license as the gnome-shell-extensions package. +@@ -7,8 +8,16 @@ + # Ville-Pekka Vainio , 2011. + # Jiri Grönroos , 2012, 2013, 2014, 2015, 2017. # - # Andika Triwidada , 2012, 2013. - # Dirgita , 2012. -+# #-#-#-#-# id.po (desktop-icons master) #-#-#-#-# -+# Indonesian translation for desktop-icons. -+# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER -+# This file is distributed under the same license as the desktop-icons package. -+# FIRST AUTHOR , YEAR. -+# -+# #-#-#-#-# id.po (desktop-icons master) #-#-#-#-# -+# Indonesian translation for desktop-icons. ++# #-#-#-#-# fi.po (desktop-icons master) #-#-#-#-# ++# Finnish translation for desktop-icons. +# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER +# This file is distributed under the same license as the desktop-icons package. -+# FIRST AUTHOR , YEAR. ++# Jiri Grönroos , 2018. +# +#, fuzzy msgid "" msgstr "" -+"#-#-#-#-# id.po (gnome-shell-extensions master) #-#-#-#-#\n" -+"#-#-#-#-# id.po (gnome-shell-extensions master) #-#-#-#-#\n" - "Project-Id-Version: gnome-shell-extensions master\n" ++"#-#-#-#-# fi.po (gnome-shell-extensions) #-#-#-#-#\n" + "Project-Id-Version: gnome-shell-extensions\n" "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "shell&keywords=I18N+L10N&component=extensions\n" -@@ -20,6 +37,32 @@ msgstr "" - "Plural-Forms: nplurals=1; plural=0;\n" - "X-Poedit-SourceCharset: UTF-8\n" - "X-Generator: Poedit 2.0.2\n" -+"#-#-#-#-# id.po (desktop-icons master) #-#-#-#-#\n" -+"Project-Id-Version: desktop-icons master\n" -+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -+"icons/issues\n" -+"POT-Creation-Date: 2018-10-02 09:18+0000\n" -+"PO-Revision-Date: 2018-10-02 20:30+0700\n" -+"Language-Team: Indonesian \n" -+"Language: id\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Last-Translator: Kukuh Syafaat \n" -+"X-Generator: Poedit 2.0.6\n" -+"#-#-#-#-# id.po (desktop-icons master) #-#-#-#-#\n" +@@ -24,6 +33,20 @@ msgstr "" + "X-Generator: Gtranslator 2.91.7\n" + "X-Project-Style: gnome\n" + "X-POT-Import-Date: 2012-03-05 15:06:12+0000\n" ++"#-#-#-#-# fi.po (desktop-icons master) #-#-#-#-#\n" +"Project-Id-Version: desktop-icons master\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" -+"POT-Creation-Date: 2018-10-02 09:18+0000\n" -+"PO-Revision-Date: 2018-10-02 20:30+0700\n" -+"Language-Team: Indonesian \n" -+"Language: id\n" ++"POT-Creation-Date: 2019-04-29 14:11+0000\n" ++"PO-Revision-Date: 2019-06-02 15:23+0300\n" ++"Last-Translator: Jiri Grönroos \n" ++"Language-Team: Finnish \n" ++"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" -+"Last-Translator: Kukuh Syafaat \n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.0.6\n" #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 msgid "GNOME Classic" -@@ -358,6 +401,122 @@ msgstr "Nama" +@@ -352,6 +375,183 @@ msgstr "Nimi" msgid "Workspace %d" - msgstr "Ruang Kerja %d" + msgstr "Työtila %d" -+#: prefs.js:89 -+msgid "Size for the desktop icons" -+msgstr "Ukuran untuk ikon destop" ++#: desktopGrid.js:334 ++msgid "Display Settings" ++msgstr "Näytön asetukset" + -+#: prefs.js:89 -+msgid "Small" -+msgstr "Kecil" ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 ++#, fuzzy ++msgid "Icon size" ++msgstr "" ++"#-#-#-#-# fi.po (gnome-shell-extensions) #-#-#-#-#\n" ++"Kuvakkeiden koko\n" ++"#-#-#-#-# fi.po (desktop-icons master) #-#-#-#-#\n" ++"Kuvakekoko" + -+#: prefs.js:89 -+msgid "Standard" -+msgstr "Standar" ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "Uusi kansion nimi" + -+#: prefs.js:89 -+msgid "Large" -+msgstr "Besar" ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Luo" + -+#: prefs.js:89 -+msgid "Huge" -+msgstr "Sangat besar" ++#: createFolderDialog.js:74 desktopGrid.js:592 ++msgid "Cancel" ++msgstr "Peru" + -+#: prefs.js:90 -+msgid "Show the personal folder in the desktop" -+msgstr "Tampilkan folder pribadi di destop" ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "Kansion nimi ei voi sisältää merkkiä “/”." + -+#: prefs.js:91 ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "Kansion nimi ei voi olla “.”." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "Kansion nimi ei voi olla “..”." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Kansiot, joiden nimi alkaa merkillä “.”, ovat piilotettuja." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Nimi on jo toisen tiedoston tai kansion käytössä." ++ ++#: prefs.js:102 ++msgid "Size for the desktop icons" ++msgstr "Työpöytäkuvakkeiden koko" ++ ++#: prefs.js:102 ++msgid "Small" ++msgstr "Pieni" ++ ++#: prefs.js:102 ++msgid "Standard" ++msgstr "Normaali" ++ ++#: prefs.js:102 ++msgid "Large" ++msgstr "Suuri" ++ ++#: prefs.js:103 ++msgid "Show the personal folder in the desktop" ++msgstr "Näytä kotikansio työpöydällä" ++ ++#: prefs.js:104 +msgid "Show the trash icon in the desktop" -+msgstr "Tampilkan ikon tong sampah di destop" ++msgstr "Näytä roskakorin kuvake työpöydällä" + -+#: desktopGrid.js:178 desktopGrid.js:297 ++#: desktopGrid.js:323 +msgid "New Folder" -+msgstr "Folder Baru" ++msgstr "Uusi kansio" + -+#: desktopGrid.js:299 ++#: desktopGrid.js:325 +msgid "Paste" -+msgstr "Tempel" ++msgstr "Liitä" + -+#: desktopGrid.js:300 ++#: desktopGrid.js:326 +msgid "Undo" -+msgstr "Tak Jadi" ++msgstr "Kumoa" + -+#: desktopGrid.js:301 ++#: desktopGrid.js:327 +msgid "Redo" -+msgstr "Jadi Lagi" ++msgstr "Tee uudeleen" + -+#: desktopGrid.js:303 -+msgid "Open Desktop in Files" -+msgstr "Buka Destop pada Berkas" ++#: desktopGrid.js:329 ++msgid "Show Desktop in Files" ++msgstr "Näytä työpöytä tiedostonhallinnassa" + -+#: desktopGrid.js:304 -+msgid "Open Terminal" -+msgstr "Buka Terminal" ++#: desktopGrid.js:330 fileItem.js:610 ++msgid "Open in Terminal" ++msgstr "Avaa päätteessä" + -+#: desktopGrid.js:306 ++#: desktopGrid.js:332 +msgid "Change Background…" -+msgstr "Ubah Latar Belakang…" -+ -+#: desktopGrid.js:307 -+msgid "Display Settings" -+msgstr "Pengaturan Tampilan" ++msgstr "Vaihda taustakuvaa…" + -+#: desktopGrid.js:308 ++#: desktopGrid.js:335 +msgid "Settings" -+msgstr "Pengaturan" ++msgstr "Asetukset" + -+#: fileItem.js:226 ++#: desktopGrid.js:582 ++msgid "Enter file name…" ++msgstr "Anna tiedostonimi…" ++ ++#: desktopGrid.js:586 ++msgid "OK" ++msgstr "OK" ++ ++#: desktopIconsUtil.js:61 ++msgid "Command not found" ++msgstr "Komentoa ei löydy" ++ ++#: fileItem.js:494 ++msgid "Don’t Allow Launching" ++msgstr "Älä salli käynnistämistä" ++ ++#: fileItem.js:496 ++msgid "Allow Launching" ++msgstr "Salli käynnistäminen" ++ ++#: fileItem.js:578 +msgid "Open" -+msgstr "Buka" ++msgstr "Avaa" ++ ++#: fileItem.js:582 ++msgid "Open With Other Application" ++msgstr "Avaa toisella sovelluksella" + -+#: fileItem.js:229 ++#: fileItem.js:586 +msgid "Cut" -+msgstr "Potong" ++msgstr "Leikkaa" + -+#: fileItem.js:230 ++#: fileItem.js:587 +msgid "Copy" -+msgstr "Salin" ++msgstr "Kopioi" ++ ++#: fileItem.js:589 ++msgid "Rename…" ++msgstr "Nimeä uudelleen…" + -+#: fileItem.js:231 ++#: fileItem.js:590 +msgid "Move to Trash" -+msgstr "Pindahkan ke Tong Sampah" ++msgstr "Siirrä roskakoriin" + -+#: fileItem.js:235 -+msgid "Empty trash" -+msgstr "Kosongkan Tong Sampah" ++#: fileItem.js:600 ++msgid "Empty Trash" ++msgstr "Tyhjennä roskakori" + -+#: fileItem.js:241 ++#: fileItem.js:606 +msgid "Properties" -+msgstr "Properti" ++msgstr "Ominaisuudet" + -+#: fileItem.js:243 ++#: fileItem.js:608 +msgid "Show in Files" -+msgstr "Tampilkan pada Berkas" ++msgstr "Näytä tiedostonhallinnassa" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 -+msgid "Icon size" -+msgstr "Ukuran ikon" -+ -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:13 +msgid "Set the size for the desktop icons." -+msgstr "Set ukuran untuk ikon destop." ++msgstr "Aseta työpöytäkuvakkeiden koko." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 +msgid "Show personal folder" -+msgstr "Tampilkan folder pribadi" ++msgstr "Näytä kotikansio" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:18 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 +msgid "Show the personal folder in the desktop." -+msgstr "Tampilkan folder pribadi di destop." ++msgstr "Näytä kotikansio työpöydällä." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 +msgid "Show trash icon" -+msgstr "Tampilkan ikon tong sampah" ++msgstr "Näytä roskakorin kuvake" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:23 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 +msgid "Show the trash icon in the desktop." -+msgstr "Tampilkan ikon tong sampah di destop." ++msgstr "Näytä roskakorin kuvake työpöydällä." + #~ msgid "CPU" - #~ msgstr "CPU" + #~ msgstr "Suoritin" -diff --git a/po/it.po b/po/it.po -index 4e3a59c..1d6fd26 100644 ---- a/po/it.po -+++ b/po/it.po -@@ -1,3 +1,5 @@ -+# #-#-#-#-# it.po (gnome-shell-extensions) #-#-#-#-# -+# #-#-#-#-# it.po (gnome-shell-extensions) #-#-#-#-# - # Italian translations for GNOME Shell extensions - # Copyright (C) 2011 Giovanni Campagna et al. - # Copyright (C) 2012, 2013, 2014, 2015, 2017 The Free Software Foundation, Inc. -@@ -6,8 +8,23 @@ - # Milo Casagrande , 2013, 2014, 2015, 2017. - # Gianvito Cavasoli , 2017. +@@ -388,9 +588,6 @@ msgstr "Työtila %d" + #~ msgid "Display" + #~ msgstr "Näyttö" + +-#~ msgid "Display Settings" +-#~ msgstr "Näytön asetukset" +- + #~ msgid "Drag here to add favorites" + #~ msgstr "Raahaa tähän lisätäksesi suosikkeihin" + +@@ -412,9 +609,6 @@ msgstr "Työtila %d" + #~ msgstr "" + #~ "Asettaa telakan sijainnin näytöllä. Sallitut arvot ovat 'right' tai 'left'" + +-#~ msgid "Icon size" +-#~ msgstr "Kuvakkeiden koko" +- + #~ msgid "Sets icon size of the dock." + #~ msgstr "Asettaa telakan kuvakkeiden koon." + +@@ -459,3 +653,6 @@ msgstr "Työtila %d" + + #~ msgid "Workspace & Icons" + #~ msgstr "Työtila ja kuvakkeet" ++ ++#~ msgid "Huge" ++#~ msgstr "Valtava" +diff --git a/po/fr.po b/po/fr.po +index 6825d0d..6961fa4 100644 +--- a/po/fr.po ++++ b/po/fr.po +@@ -1,3 +1,4 @@ ++# #-#-#-#-# fr.po (gnome-shell-extensions master) #-#-#-#-# + # French translation for gnome-shell-extensions. + # Copyright (C) 2011-12 Listed translators + # This file is distributed under the same license as the gnome-shell-extensions package. +@@ -5,8 +6,17 @@ + # Alain Lojewski , 2012-2013. + # Charles Monzat , 2018. # -+# #-#-#-#-# it.po (desktop-icons master) #-#-#-#-# -+# SOME DESCRIPTIVE TITLE. -+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -+# This file is distributed under the same license as the PACKAGE package. -+# Massimo Branchini , 2018. -+# -+# #-#-#-#-# it.po (desktop-icons master) #-#-#-#-# -+# SOME DESCRIPTIVE TITLE. -+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -+# This file is distributed under the same license as the PACKAGE package. -+# Massimo Branchini , 2018. ++# #-#-#-#-# fr.po (desktop-icons master) #-#-#-#-# ++# French translation for desktop-icons. ++# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER ++# This file is distributed under the same license as the desktop-icons package. ++# ghentdebian , 2018. ++# Charles Monzat , 2018. +# +#, fuzzy msgid "" msgstr "" -+"#-#-#-#-# it.po (gnome-shell-extensions) #-#-#-#-#\n" -+"#-#-#-#-# it.po (gnome-shell-extensions) #-#-#-#-#\n" - "Project-Id-Version: gnome-shell-extensions\n" - "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" - "shell&keywords=I18N+L10N&component=extensions\n" -@@ -21,6 +38,34 @@ msgstr "" ++"#-#-#-#-# fr.po (gnome-shell-extensions master) #-#-#-#-#\n" + "Project-Id-Version: gnome-shell-extensions master\n" + "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" + "issues\n" +@@ -20,6 +30,20 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - "X-Generator: Poedit 1.8.12\n" -+"#-#-#-#-# it.po (desktop-icons master) #-#-#-#-#\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" + "X-Generator: Gtranslator 3.30.0\n" ++"#-#-#-#-# fr.po (desktop-icons master) #-#-#-#-#\n" +"Project-Id-Version: desktop-icons master\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" -+"POT-Creation-Date: 2018-11-29 09:07+0000\n" -+"PO-Revision-Date: 2018-12-05 11:14+0100\n" -+"Last-Translator: Massimo Branchini \n" -+"Language-Team: Italian \n" -+"Language: it\n" ++"POT-Creation-Date: 2018-12-14 09:12+0000\n" ++"PO-Revision-Date: 2018-12-16 17:47+0100\n" ++"Last-Translator: Charles Monzat \n" ++"Language-Team: GNOME French Team \n" ++"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=2; plural=(n != 1);\n" -+"X-Generator: Poedit 2.2\n" -+"#-#-#-#-# it.po (desktop-icons master) #-#-#-#-#\n" -+"Project-Id-Version: desktop-icons master\n" -+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -+"icons/issues\n" -+"POT-Creation-Date: 2018-11-29 09:07+0000\n" -+"PO-Revision-Date: 2018-12-05 11:14+0100\n" -+"Last-Translator: Massimo Branchini \n" -+"Language-Team: Italian \n" -+"Language: it\n" ++"Plural-Forms: nplurals=2; plural=(n > 1)\n" ++"X-Generator: Gtranslator 3.30.0\n" + + #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 + msgid "GNOME Classic" +@@ -323,6 +347,146 @@ msgstr "Nom" + msgid "Workspace %d" + msgstr "Espace de travail %d" + ++#: prefs.js:102 ++msgid "Size for the desktop icons" ++msgstr "Taille des icônes du bureau" ++ ++#: prefs.js:102 ++msgid "Small" ++msgstr "Petite" ++ ++#: prefs.js:102 ++msgid "Standard" ++msgstr "Normale" ++ ++#: prefs.js:102 ++msgid "Large" ++msgstr "Grande" ++ ++#: prefs.js:102 ++msgid "Huge" ++msgstr "Immense" ++ ++#: prefs.js:103 ++msgid "Show the personal folder in the desktop" ++msgstr "Montrer le dossier personnel sur le bureau" ++ ++#: prefs.js:104 ++msgid "Show the trash icon in the desktop" ++msgstr "Montrer la corbeille sur le bureau" ++ ++#: desktopGrid.js:182 desktopGrid.js:301 ++msgid "New Folder" ++msgstr "Nouveau dossier" ++ ++#: desktopGrid.js:303 ++msgid "Paste" ++msgstr "Coller" ++ ++#: desktopGrid.js:304 ++msgid "Undo" ++msgstr "Annuler" ++ ++#: desktopGrid.js:305 ++msgid "Redo" ++msgstr "Refaire" ++ ++#: desktopGrid.js:307 ++msgid "Open Desktop in Files" ++msgstr "Ouvrir le bureau dans Fichiers" ++ ++#: desktopGrid.js:308 ++msgid "Open Terminal" ++msgstr "Ouvrir un terminal" ++ ++#: desktopGrid.js:310 ++msgid "Change Background…" ++msgstr "Changer l’arrière-plan…" ++ ++#: desktopGrid.js:311 ++msgid "Display Settings" ++msgstr "Configuration d’affichage" ++ ++#: desktopGrid.js:312 ++msgid "Settings" ++msgstr "Paramètres" ++ ++#: desktopGrid.js:568 ++msgid "Enter file name…" ++msgstr "Saisir un nom de fichier…" ++ ++#: desktopGrid.js:572 ++msgid "OK" ++msgstr "Valider" ++ ++#: desktopGrid.js:578 ++msgid "Cancel" ++msgstr "Annuler" ++ ++#: fileItem.js:485 ++msgid "Don’t Allow Launching" ++msgstr "Ne pas autoriser le lancement" ++ ++#: fileItem.js:487 ++msgid "Allow Launching" ++msgstr "Autoriser le lancement" ++ ++#: fileItem.js:550 ++msgid "Open" ++msgstr "Ouvrir" ++ ++#: fileItem.js:553 ++msgid "Cut" ++msgstr "Couper" ++ ++#: fileItem.js:554 ++msgid "Copy" ++msgstr "Copier" ++ ++#: fileItem.js:556 ++msgid "Rename" ++msgstr "Renommer" ++ ++#: fileItem.js:557 ++msgid "Move to Trash" ++msgstr "Mettre à la corbeille" ++ ++#: fileItem.js:567 ++msgid "Empty Trash" ++msgstr "Vider la corbeille" ++ ++#: fileItem.js:573 ++msgid "Properties" ++msgstr "Propriétés" ++ ++#: fileItem.js:575 ++msgid "Show in Files" ++msgstr "Montrer dans Fichiers" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 ++msgid "Icon size" ++msgstr "Taille d’icônes" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:13 ++msgid "Set the size for the desktop icons." ++msgstr "Définir la taille des icônes du bureau." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++msgid "Show personal folder" ++msgstr "Montrer le dossier personnel" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:18 ++msgid "Show the personal folder in the desktop." ++msgstr "Montrer le dossier personnel sur le bureau." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++msgid "Show trash icon" ++msgstr "Montrer l’icône de la corbeille" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:23 ++msgid "Show the trash icon in the desktop." ++msgstr "Montrer la corbeille sur le bureau." ++ + #~ msgid "Attach modal dialog to the parent window" + #~ msgstr "Attacher les boîtes de dialogue modales à leur fenêtre parente" + +@@ -360,3 +524,6 @@ msgstr "Espace de travail %d" + + #~ msgid "Memory" + #~ msgstr "Mémoire" ++ ++#~ msgid "Ok" ++#~ msgstr "Valider" +diff --git a/po/fur.po b/po/fur.po +index 0fb3f70..a2793c9 100644 +--- a/po/fur.po ++++ b/po/fur.po +@@ -1,10 +1,19 @@ ++# #-#-#-#-# fur.po (gnome-shell-extensions master) #-#-#-#-# + # Friulian translation for gnome-shell-extensions. + # Copyright (C) 2013 gnome-shell-extensions's COPYRIGHT HOLDER + # This file is distributed under the same license as the gnome-shell-extensions package. + # Fabio Tomat , 2013. + # ++# #-#-#-#-# fur.po (desktop-icons master) #-#-#-#-# ++# Friulian translation for desktop-icons. ++# Copyright (C) 2019 desktop-icons's COPYRIGHT HOLDER ++# This file is distributed under the same license as the desktop-icons package. ++# Fabio Tomat , 2019. ++# ++#, fuzzy + msgid "" + msgstr "" ++"#-#-#-#-# fur.po (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-" + "shell&keywords=I18N+L10N&component=extensions\n" +@@ -17,6 +26,19 @@ msgstr "" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" + "X-Generator: Poedit 1.8.12\n" ++"#-#-#-#-# fur.po (desktop-icons master) #-#-#-#-#\n" ++"Project-Id-Version: desktop-icons master\n" ++"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" ++"icons/issues\n" ++"POT-Creation-Date: 2019-03-01 12:11+0000\n" ++"PO-Revision-Date: 2019-03-05 22:20+0100\n" ++"Last-Translator: Fabio Tomat \n" ++"Language-Team: Friulian \n" ++"Language: fur\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"X-Generator: Poedit 2.2.1\n" + + #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 + msgid "GNOME Classic" +@@ -355,6 +377,179 @@ msgstr "Non" + msgid "Workspace %d" + msgstr "Spazi di lavôr %d" + ++#: desktopGrid.js:331 ++#, fuzzy ++msgid "Display Settings" ++msgstr "" ++"#-#-#-#-# fur.po (gnome-shell-extensions master) #-#-#-#-#\n" ++"Impostazions Visôr\n" ++"#-#-#-#-# fur.po (desktop-icons master) #-#-#-#-#\n" ++"Impostazions visôr" ++ ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "Gnûf non de cartele" ++ ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Cree" ++ ++#: createFolderDialog.js:74 desktopGrid.js:586 ++msgid "Cancel" ++msgstr "Anule" ++ ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "I nons des cartelis no puedin contignî il caratar “/”" ++ ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "Une cartele no pues jessi clamade “.”." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "Une cartele no pues jessi clamade “..”." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Lis cartelis cul “.” al inizi dal lôr non a son platadis." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Un file o une cartele cul stes non e esist za." ++ ++#: prefs.js:102 ++msgid "Size for the desktop icons" ++msgstr "Dimension pes iconis dal scritori" ++ ++#: prefs.js:102 ++msgid "Small" ++msgstr "Piçule" ++ ++#: prefs.js:102 ++msgid "Standard" ++msgstr "Standard" ++ ++#: prefs.js:102 ++msgid "Large" ++msgstr "Largje" ++ ++#: prefs.js:103 ++msgid "Show the personal folder in the desktop" ++msgstr "Mostre la cartele personâl intal scritori" ++ ++#: prefs.js:104 ++msgid "Show the trash icon in the desktop" ++msgstr "Mostre la icone de scovacere intal scritori" ++ ++#: desktopGrid.js:320 ++msgid "New Folder" ++msgstr "Gnove cartele" ++ ++#: desktopGrid.js:322 ++msgid "Paste" ++msgstr "Tache" ++ ++#: desktopGrid.js:323 ++msgid "Undo" ++msgstr "Anule" ++ ++#: desktopGrid.js:324 ++msgid "Redo" ++msgstr "Torne fâ" ++ ++#: desktopGrid.js:326 ++msgid "Show Desktop in Files" ++msgstr "Mostre Scritori in File" ++ ++#: desktopGrid.js:327 fileItem.js:606 ++msgid "Open in Terminal" ++msgstr "Vierç in Terminâl" ++ ++#: desktopGrid.js:329 ++msgid "Change Background…" ++msgstr "Cambie sfont…" ++ ++#: desktopGrid.js:332 ++msgid "Settings" ++msgstr "Impostazions" ++ ++#: desktopGrid.js:576 ++msgid "Enter file name…" ++msgstr "Inserìs il non dal file…" ++ ++#: desktopGrid.js:580 ++msgid "OK" ++msgstr "Va ben" ++ ++#: fileItem.js:490 ++msgid "Don’t Allow Launching" ++msgstr "No sta permeti inviament" ++ ++#: fileItem.js:492 ++msgid "Allow Launching" ++msgstr "Permet inviament" ++ ++#: fileItem.js:574 ++msgid "Open" ++msgstr "Vierç" ++ ++#: fileItem.js:578 ++msgid "Open With Other Application" ++msgstr "Vierç cuntune altre aplicazion" ++ ++#: fileItem.js:582 ++msgid "Cut" ++msgstr "Taie" ++ ++#: fileItem.js:583 ++msgid "Copy" ++msgstr "Copie" ++ ++#: fileItem.js:585 ++msgid "Rename…" ++msgstr "Cambie non..." ++ ++#: fileItem.js:586 ++msgid "Move to Trash" ++msgstr "Sposte te scovacere" ++ ++#: fileItem.js:596 ++msgid "Empty Trash" ++msgstr "Disvuede scovacere" ++ ++#: fileItem.js:602 ++msgid "Properties" ++msgstr "Propietâts" ++ ++#: fileItem.js:604 ++msgid "Show in Files" ++msgstr "Mostre in File" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 ++msgid "Icon size" ++msgstr "Dimension icone" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 ++msgid "Set the size for the desktop icons." ++msgstr "Stabilìs la dimension pes iconis dal scritori." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 ++msgid "Show personal folder" ++msgstr "Mostre cartele personâl" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++msgid "Show the personal folder in the desktop." ++msgstr "Mostre la cartele personâl intal scritori." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 ++msgid "Show trash icon" ++msgstr "Mostre la icone de scovacere" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++msgid "Show the trash icon in the desktop." ++msgstr "Mostre la icone de scovacere intal scritori." ++ + #~ msgid "CPU" + #~ msgstr "CPU" + +@@ -381,6 +576,3 @@ msgstr "Spazi di lavôr %d" + + #~ msgid "Display" + #~ msgstr "Visôr" +- +-#~ msgid "Display Settings" +-#~ msgstr "Impostazions Visôr" +diff --git a/po/hr.po b/po/hr.po +index deee76e..a4d39d1 100644 +--- a/po/hr.po ++++ b/po/hr.po +@@ -1,10 +1,19 @@ ++# #-#-#-#-# hr.po (gnome-shell-extensions master) #-#-#-#-# + # Croatian translation for gnome-shell-extensions. + # Copyright (C) 2017 gnome-shell-extensions's COPYRIGHT HOLDER + # This file is distributed under the same license as the gnome-shell-extensions package. + # FIRST AUTHOR , YEAR. + # ++# #-#-#-#-# hr.po (gnome-shell-extension-desktop-icons) #-#-#-#-# ++# Croatian translation for gnome-shell-extension-desktop-icons ++# Copyright (c) 2019 Rosetta Contributors and Canonical Ltd 2019 ++# This file is distributed under the same license as the gnome-shell-extension-desktop-icons package. ++# FIRST AUTHOR , 2019. ++# ++#, fuzzy + msgid "" + msgstr "" ++"#-#-#-#-# hr.po (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-" + "shell&keywords=I18N+L10N&component=extensions\n" +@@ -19,6 +28,20 @@ msgstr "" + "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.0.2\n" ++"#-#-#-#-# hr.po (gnome-shell-extension-desktop-icons) #-#-#-#-#\n" ++"Project-Id-Version: gnome-shell-extension-desktop-icons\n" ++"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" ++"icons/issues\n" ++"POT-Creation-Date: 2019-04-29 14:11+0000\n" ++"PO-Revision-Date: 2019-06-22 18:52+0200\n" ++"Last-Translator: gogo \n" ++"Language-Team: Croatian \n" ++"Language: hr\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"X-Launchpad-Export-Date: 2019-03-27 09:36+0000\n" ++"X-Generator: Poedit 2.2.1\n" + + #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 + msgid "GNOME Classic" +@@ -353,3 +376,175 @@ msgstr "Naziv" + #, javascript-format + msgid "Workspace %d" + msgstr "Radni prostor %d" ++ ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "Novi naziv mape" ++ ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Stvori" ++ ++#: createFolderDialog.js:74 desktopGrid.js:592 ++msgid "Cancel" ++msgstr "Odustani" ++ ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "Naziv mape ne može sadržavati “/”." ++ ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "Mapa se ne može nazvati “.”." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "Mapa se ne može nazvati “..”." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Mape sa “.” na početku njihovih naziva su skrivene." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Već postoji datoteka ili mapa s tim nazivom." ++ ++#: prefs.js:102 ++msgid "Size for the desktop icons" ++msgstr "Veličina ikona radne površine" ++ ++#: prefs.js:102 ++msgid "Small" ++msgstr "Male" ++ ++#: prefs.js:102 ++msgid "Standard" ++msgstr "Standardne" ++ ++#: prefs.js:102 ++msgid "Large" ++msgstr "Velike" ++ ++#: prefs.js:103 ++msgid "Show the personal folder in the desktop" ++msgstr "Prikaži osobnu mapu na radnoj površini" ++ ++#: prefs.js:104 ++msgid "Show the trash icon in the desktop" ++msgstr "Prikaži mapu smeća na radnoj površini" ++ ++#: desktopGrid.js:323 ++msgid "New Folder" ++msgstr "Nova mapa" ++ ++#: desktopGrid.js:325 ++msgid "Paste" ++msgstr "Zalijepi" ++ ++#: desktopGrid.js:326 ++msgid "Undo" ++msgstr "Poništi" ++ ++#: desktopGrid.js:327 ++msgid "Redo" ++msgstr "Ponovi" ++ ++#: desktopGrid.js:329 ++msgid "Show Desktop in Files" ++msgstr "Prikaži radnu površinu u Datotekama" ++ ++#: desktopGrid.js:330 fileItem.js:610 ++msgid "Open in Terminal" ++msgstr "Otvori u Terminalu" ++ ++#: desktopGrid.js:332 ++msgid "Change Background…" ++msgstr "Promijeni pozadinu…" ++ ++#: desktopGrid.js:334 ++msgid "Display Settings" ++msgstr "Postavke zaslona" ++ ++#: desktopGrid.js:335 ++msgid "Settings" ++msgstr "Postavke" ++ ++#: desktopGrid.js:582 ++msgid "Enter file name…" ++msgstr "Upiši naziv datoteke…" ++ ++#: desktopGrid.js:586 ++msgid "OK" ++msgstr "U redu" ++ ++#: desktopIconsUtil.js:61 ++msgid "Command not found" ++msgstr "Naredba nije pronađena" ++ ++#: fileItem.js:494 ++msgid "Don’t Allow Launching" ++msgstr "Ne dopuštaj pokretanje" ++ ++#: fileItem.js:496 ++msgid "Allow Launching" ++msgstr "Dopusti pokretanje" ++ ++#: fileItem.js:578 ++msgid "Open" ++msgstr "Otvori" ++ ++#: fileItem.js:582 ++msgid "Open With Other Application" ++msgstr "Otvori s drugom aplikacijom" ++ ++#: fileItem.js:586 ++msgid "Cut" ++msgstr "Izreži" ++ ++#: fileItem.js:587 ++msgid "Copy" ++msgstr "Kopiraj" ++ ++#: fileItem.js:589 ++msgid "Rename…" ++msgstr "Preimenuj…" ++ ++#: fileItem.js:590 ++msgid "Move to Trash" ++msgstr "Premjesti u smeće" ++ ++#: fileItem.js:600 ++msgid "Empty Trash" ++msgstr "Isprazni smeće" ++ ++#: fileItem.js:606 ++msgid "Properties" ++msgstr "Svojstva" ++ ++#: fileItem.js:608 ++msgid "Show in Files" ++msgstr "Prikaži u Datotekama" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 ++msgid "Icon size" ++msgstr "Veličina ikona" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 ++msgid "Set the size for the desktop icons." ++msgstr "Postavi veličinu ikona radne površine." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 ++msgid "Show personal folder" ++msgstr "Prikaži osobnu mapu" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++msgid "Show the personal folder in the desktop." ++msgstr "Prikaži osobnu mapu na radnoj površini." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 ++msgid "Show trash icon" ++msgstr "Prikaži ikonu smeća" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++msgid "Show the trash icon in the desktop." ++msgstr "Prikaži ikonu smeća na radnoj površini." +diff --git a/po/hu.po b/po/hu.po +index 7c2c406..0635270 100644 +--- a/po/hu.po ++++ b/po/hu.po +@@ -1,3 +1,4 @@ ++# #-#-#-#-# hu.po (gnome-shell-extensions master) #-#-#-#-# + # Hungarian translation of + # Copyright (C) 2011, 2012, 2013, 2014, 2017 Free Software Foundation, Inc. + # This file is distributed under the same license as the gnome-shell-extensions package. +@@ -5,8 +6,16 @@ + # Biró Balázs , 2011. + # Gabor Kelemen , 2011, 2012, 2013. + # Balázs Úr , 2013, 2014, 2017. ++# #-#-#-#-# hu.po (desktop-icons master) #-#-#-#-# ++# Hungarian translation for desktop-icons. ++# Copyright (C) 2019 The Free Software Foundation, inc. ++# This file is distributed under the same license as the desktop-icons package. ++# ++# Balázs Úr , 2019. ++#, fuzzy + msgid "" + msgstr "" ++"#-#-#-#-# hu.po (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-" + "shell&keywords=I18N+L10N&component=extensions\n" +@@ -20,6 +29,20 @@ msgstr "" + "Content-Transfer-Encoding: 8bit\n" + "X-Generator: Poedit 2.0.2\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"#-#-#-#-# hu.po (desktop-icons master) #-#-#-#-#\n" ++"Project-Id-Version: desktop-icons master\n" ++"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" ++"icons/issues\n" ++"POT-Creation-Date: 2019-04-29 14:11+0000\n" ++"PO-Revision-Date: 2019-06-01 18:50+0200\n" ++"Last-Translator: Balázs Úr \n" ++"Language-Team: Hungarian \n" ++"Language: hu\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Lokalize 18.12.3\n" + + #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 + msgid "GNOME Classic" +@@ -356,3 +379,175 @@ msgstr "Név" + #, javascript-format + msgid "Workspace %d" + msgstr "%d. munkaterület" ++ ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "Új mappa neve" ++ ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Létrehozás" ++ ++#: createFolderDialog.js:74 desktopGrid.js:592 ++msgid "Cancel" ++msgstr "Mégse" ++ ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "A mappanevek nem tartalmazhatnak „/” karaktert." ++ ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "Egy mappának nem lehet „.” a neve." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "Egy mappának nem lehet „..” a neve." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "A „.” karakterrel kezdődő nevű mappák rejtettek." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Már van egy fájl vagy mappa azzal a névvel." ++ ++#: prefs.js:102 ++msgid "Size for the desktop icons" ++msgstr "Az asztali ikonok mérete" ++ ++#: prefs.js:102 ++msgid "Small" ++msgstr "Kicsi" ++ ++#: prefs.js:102 ++msgid "Standard" ++msgstr "Szabványos" ++ ++#: prefs.js:102 ++msgid "Large" ++msgstr "Nagy" ++ ++#: prefs.js:103 ++msgid "Show the personal folder in the desktop" ++msgstr "A személyes mappa megjelenítése az asztalon" ++ ++#: prefs.js:104 ++msgid "Show the trash icon in the desktop" ++msgstr "A kuka ikon megjelenítése az asztalon" ++ ++#: desktopGrid.js:323 ++msgid "New Folder" ++msgstr "Új mappa" ++ ++#: desktopGrid.js:325 ++msgid "Paste" ++msgstr "Beillesztés" ++ ++#: desktopGrid.js:326 ++msgid "Undo" ++msgstr "Visszavonás" ++ ++#: desktopGrid.js:327 ++msgid "Redo" ++msgstr "Újra" ++ ++#: desktopGrid.js:329 ++msgid "Show Desktop in Files" ++msgstr "Asztal megjelenítése a Fájlokban" ++ ++#: desktopGrid.js:330 fileItem.js:610 ++msgid "Open in Terminal" ++msgstr "Megnyitás terminálban" ++ ++#: desktopGrid.js:332 ++msgid "Change Background…" ++msgstr "Háttér megváltoztatása…" ++ ++#: desktopGrid.js:334 ++msgid "Display Settings" ++msgstr "Megjelenítés beállításai" ++ ++#: desktopGrid.js:335 ++msgid "Settings" ++msgstr "Beállítások" ++ ++#: desktopGrid.js:582 ++msgid "Enter file name…" ++msgstr "Adjon meg egy fájlnevet…" ++ ++#: desktopGrid.js:586 ++msgid "OK" ++msgstr "Rendben" ++ ++#: desktopIconsUtil.js:61 ++msgid "Command not found" ++msgstr "A parancs nem található" ++ ++#: fileItem.js:494 ++msgid "Don’t Allow Launching" ++msgstr "Ne engedélyezzen indítást" ++ ++#: fileItem.js:496 ++msgid "Allow Launching" ++msgstr "Indítás engedélyezése" ++ ++#: fileItem.js:578 ++msgid "Open" ++msgstr "Megnyitás" ++ ++#: fileItem.js:582 ++msgid "Open With Other Application" ++msgstr "Megnyitás egyéb alkalmazással" ++ ++#: fileItem.js:586 ++msgid "Cut" ++msgstr "Kivágás" ++ ++#: fileItem.js:587 ++msgid "Copy" ++msgstr "Másolás" ++ ++#: fileItem.js:589 ++msgid "Rename…" ++msgstr "Átnevezés…" ++ ++#: fileItem.js:590 ++msgid "Move to Trash" ++msgstr "Áthelyezés a Kukába" ++ ++#: fileItem.js:600 ++msgid "Empty Trash" ++msgstr "Kuka ürítése" ++ ++#: fileItem.js:606 ++msgid "Properties" ++msgstr "Tulajdonságok" ++ ++#: fileItem.js:608 ++msgid "Show in Files" ++msgstr "Megjelenítés a Fájlokban" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 ++msgid "Icon size" ++msgstr "Ikonméret" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 ++msgid "Set the size for the desktop icons." ++msgstr "Az asztali ikonok méretének beállítása." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 ++msgid "Show personal folder" ++msgstr "Személyes mappa megjelenítése" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++msgid "Show the personal folder in the desktop." ++msgstr "A személyes mappa megjelenítése az asztalon." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 ++msgid "Show trash icon" ++msgstr "Kuka ikon megjelenítése" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++msgid "Show the trash icon in the desktop." ++msgstr "A kuka ikon megjelenítése az asztalon." +diff --git a/po/id.po b/po/id.po +index 8986a5e..29f27b6 100644 +--- a/po/id.po ++++ b/po/id.po +@@ -1,11 +1,20 @@ ++# #-#-#-#-# id.po (gnome-shell-extensions master) #-#-#-#-# + # Indonesian translation for gnome-shell-extensions. + # Copyright (C) 2012 gnome-shell-extensions's COPYRIGHT HOLDER + # This file is distributed under the same license as the gnome-shell-extensions package. + # + # Andika Triwidada , 2012, 2013. + # Dirgita , 2012. ++# #-#-#-#-# id.po (desktop-icons master) #-#-#-#-# ++# Indonesian translation for desktop-icons. ++# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER ++# This file is distributed under the same license as the desktop-icons package. ++# Kukuh Syafaat , 2018, 2019. ++# ++#, fuzzy + msgid "" + msgstr "" ++"#-#-#-#-# id.po (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-" + "shell&keywords=I18N+L10N&component=extensions\n" +@@ -20,6 +29,19 @@ msgstr "" + "Plural-Forms: nplurals=1; plural=0;\n" + "X-Poedit-SourceCharset: UTF-8\n" + "X-Generator: Poedit 2.0.2\n" ++"#-#-#-#-# id.po (desktop-icons master) #-#-#-#-#\n" ++"Project-Id-Version: desktop-icons master\n" ++"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" ++"icons/issues\n" ++"POT-Creation-Date: 2019-04-29 14:11+0000\n" ++"PO-Revision-Date: 2019-07-11 13:57+0700\n" ++"Last-Translator: Kukuh Syafaat \n" ++"Language-Team: Indonesian \n" ++"Language: id\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"X-Generator: Poedit 2.2.3\n" + + #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 + msgid "GNOME Classic" +@@ -358,8 +380,183 @@ msgstr "Nama" + msgid "Workspace %d" + msgstr "Ruang Kerja %d" + ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "Nama folder baru" ++ ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Buat" ++ ++#: createFolderDialog.js:74 desktopGrid.js:592 ++msgid "Cancel" ++msgstr "Batal" ++ ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "Nama folder tak boleh memuat \"/\"." ++ ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "Sebuah folder tak bisa dinamai \".\"." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "Sebuah folder tak bisa dinamai \"..\"." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Folder dengan \".\" di awal nama mereka disembunyikan." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Folder dengan nama itu sudah ada." ++ ++#: prefs.js:102 ++msgid "Size for the desktop icons" ++msgstr "Ukuran untuk ikon destop" ++ ++#: prefs.js:102 ++msgid "Small" ++msgstr "Kecil" ++ ++#: prefs.js:102 ++msgid "Standard" ++msgstr "Standar" ++ ++#: prefs.js:102 ++msgid "Large" ++msgstr "Besar" ++ ++#: prefs.js:103 ++msgid "Show the personal folder in the desktop" ++msgstr "Tampilkan folder pribadi di destop" ++ ++#: prefs.js:104 ++msgid "Show the trash icon in the desktop" ++msgstr "Tampilkan ikon tong sampah di destop" ++ ++#: desktopGrid.js:323 ++msgid "New Folder" ++msgstr "Folder Baru" ++ ++#: desktopGrid.js:325 ++msgid "Paste" ++msgstr "Tempel" ++ ++#: desktopGrid.js:326 ++msgid "Undo" ++msgstr "Tak Jadi" ++ ++#: desktopGrid.js:327 ++msgid "Redo" ++msgstr "Jadi Lagi" ++ ++#: desktopGrid.js:329 ++msgid "Show Desktop in Files" ++msgstr "Tampilkan Destop pada Berkas" ++ ++#: desktopGrid.js:330 fileItem.js:610 ++msgid "Open in Terminal" ++msgstr "Buka dalam Terminal" ++ ++#: desktopGrid.js:332 ++msgid "Change Background…" ++msgstr "Ubah Latar Belakang…" ++ ++#: desktopGrid.js:334 ++msgid "Display Settings" ++msgstr "Pengaturan Tampilan" ++ ++#: desktopGrid.js:335 ++msgid "Settings" ++msgstr "Pengaturan" ++ ++#: desktopGrid.js:582 ++msgid "Enter file name…" ++msgstr "Masukkan nama berkas…" ++ ++#: desktopGrid.js:586 ++msgid "OK" ++msgstr "OK" ++ ++#: desktopIconsUtil.js:61 ++msgid "Command not found" ++msgstr "Perintah tidak ditemukan" ++ ++#: fileItem.js:494 ++msgid "Don’t Allow Launching" ++msgstr "Jangan Izinkan Peluncuran" ++ ++#: fileItem.js:496 ++msgid "Allow Launching" ++msgstr "Izinkan Peluncuran" ++ ++#: fileItem.js:578 ++msgid "Open" ++msgstr "Buka" ++ ++#: fileItem.js:582 ++msgid "Open With Other Application" ++msgstr "Buka Dengan Aplikasi Lain" ++ ++#: fileItem.js:586 ++msgid "Cut" ++msgstr "Potong" ++ ++#: fileItem.js:587 ++msgid "Copy" ++msgstr "Salin" ++ ++#: fileItem.js:589 ++msgid "Rename…" ++msgstr "Ganti Nama…" ++ ++#: fileItem.js:590 ++msgid "Move to Trash" ++msgstr "Pindahkan ke Tong Sampah" ++ ++#: fileItem.js:600 ++msgid "Empty Trash" ++msgstr "Kosongkan Tong Sampah" ++ ++#: fileItem.js:606 ++msgid "Properties" ++msgstr "Properti" ++ ++#: fileItem.js:608 ++msgid "Show in Files" ++msgstr "Tampilkan pada Berkas" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 ++msgid "Icon size" ++msgstr "Ukuran ikon" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 ++msgid "Set the size for the desktop icons." ++msgstr "Set ukuran untuk ikon destop." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 ++msgid "Show personal folder" ++msgstr "Tampilkan folder pribadi" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++msgid "Show the personal folder in the desktop." ++msgstr "Tampilkan folder pribadi di destop." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 ++msgid "Show trash icon" ++msgstr "Tampilkan ikon tong sampah" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++msgid "Show the trash icon in the desktop." ++msgstr "Tampilkan ikon tong sampah di destop." ++ + #~ msgid "CPU" + #~ msgstr "CPU" + + #~ msgid "Memory" + #~ msgstr "Memori" ++ ++#~ msgid "Huge" ++#~ msgstr "Sangat besar" +diff --git a/po/it.po b/po/it.po +index 4e3a59c..2d215b1 100644 +--- a/po/it.po ++++ b/po/it.po +@@ -1,3 +1,4 @@ ++# #-#-#-#-# it.po (gnome-shell-extensions) #-#-#-#-# + # Italian translations for GNOME Shell extensions + # Copyright (C) 2011 Giovanni Campagna et al. + # Copyright (C) 2012, 2013, 2014, 2015, 2017 The Free Software Foundation, Inc. +@@ -6,8 +7,17 @@ + # Milo Casagrande , 2013, 2014, 2015, 2017. + # Gianvito Cavasoli , 2017. + # ++# #-#-#-#-# it.po (desktop-icons master) #-#-#-#-# ++# Italian translation for desktop-icons. ++# Copyright (C) 2019 desktop-icons's COPYRIGHT HOLDER ++# This file is distributed under the same license as the desktop-icons package. ++# Massimo Branchini , 2019. ++# Milo Casagrande , 2019. ++# ++#, fuzzy + msgid "" + msgstr "" ++"#-#-#-#-# it.po (gnome-shell-extensions) #-#-#-#-#\n" + "Project-Id-Version: gnome-shell-extensions\n" + "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" + "shell&keywords=I18N+L10N&component=extensions\n" +@@ -21,6 +31,20 @@ msgstr "" + "Content-Transfer-Encoding: 8bit\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" + "X-Generator: Poedit 1.8.12\n" ++"#-#-#-#-# it.po (desktop-icons master) #-#-#-#-#\n" ++"Project-Id-Version: desktop-icons master\n" ++"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" ++"icons/issues\n" ++"POT-Creation-Date: 2019-03-01 12:11+0000\n" ++"PO-Revision-Date: 2019-03-12 09:51+0100\n" ++"Last-Translator: Milo Casagrande \n" ++"Language-Team: Italian \n" ++"Language: it\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Poedit 2.2.1\n" + + #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 + msgid "GNOME Classic" +@@ -362,3 +386,171 @@ msgstr "Nome" + #, javascript-format + msgid "Workspace %d" + msgstr "Spazio di lavoro %d" ++ ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "Nuova cartella" ++ ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Crea" ++ ++#: createFolderDialog.js:74 desktopGrid.js:586 ++msgid "Cancel" ++msgstr "Annulla" ++ ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "I nomi di cartelle non possono contenere il carattere «/»" ++ ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "Una cartella non può essere chiamata «.»." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "Una cartella non può essere chiamata «..»." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Cartelle il cui nome inizia con «.» sono nascoste." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Esiste già un file o una cartella con quel nome." ++ ++#: prefs.js:102 ++msgid "Size for the desktop icons" ++msgstr "Dimensione delle icone della scrivania" ++ ++#: prefs.js:102 ++msgid "Small" ++msgstr "Piccola" ++ ++#: prefs.js:102 ++msgid "Standard" ++msgstr "Normale" ++ ++#: prefs.js:102 ++msgid "Large" ++msgstr "Grande" ++ ++#: prefs.js:103 ++msgid "Show the personal folder in the desktop" ++msgstr "Mostra la cartella personale sulla scrivania" ++ ++#: prefs.js:104 ++msgid "Show the trash icon in the desktop" ++msgstr "Mostra il cestino sulla scrivania" ++ ++#: desktopGrid.js:320 ++msgid "New Folder" ++msgstr "Nuova cartella" ++ ++#: desktopGrid.js:322 ++msgid "Paste" ++msgstr "Incolla" ++ ++#: desktopGrid.js:323 ++msgid "Undo" ++msgstr "Annulla" ++ ++#: desktopGrid.js:324 ++msgid "Redo" ++msgstr "Ripeti" ++ ++#: desktopGrid.js:326 ++msgid "Show Desktop in Files" ++msgstr "Mostra la scrivania in File" ++ ++#: desktopGrid.js:327 fileItem.js:606 ++msgid "Open in Terminal" ++msgstr "Apri in Terminale" ++ ++#: desktopGrid.js:329 ++msgid "Change Background…" ++msgstr "Cambia lo sfondo…" ++ ++#: desktopGrid.js:331 ++msgid "Display Settings" ++msgstr "Impostazioni dello schermo" ++ ++#: desktopGrid.js:332 ++msgid "Settings" ++msgstr "Impostazioni" ++ ++#: desktopGrid.js:576 ++msgid "Enter file name…" ++msgstr "Indicare un nome per il file…" ++ ++#: desktopGrid.js:580 ++msgid "OK" ++msgstr "Ok" ++ ++#: fileItem.js:490 ++msgid "Don’t Allow Launching" ++msgstr "Non permettere l'esecuzione" ++ ++#: fileItem.js:492 ++msgid "Allow Launching" ++msgstr "Permetti l'esecuzione" ++ ++#: fileItem.js:574 ++msgid "Open" ++msgstr "Apri" ++ ++#: fileItem.js:578 ++msgid "Open With Other Application" ++msgstr "Apri con altra applicazione" ++ ++#: fileItem.js:582 ++msgid "Cut" ++msgstr "Taglia" ++ ++#: fileItem.js:583 ++msgid "Copy" ++msgstr "Copia" ++ ++#: fileItem.js:585 ++msgid "Rename…" ++msgstr "Rinomina…" ++ ++#: fileItem.js:586 ++msgid "Move to Trash" ++msgstr "Sposta nel cestino" ++ ++#: fileItem.js:596 ++msgid "Empty Trash" ++msgstr "Svuota il cestino" ++ ++#: fileItem.js:602 ++msgid "Properties" ++msgstr "Proprietà" ++ ++#: fileItem.js:604 ++msgid "Show in Files" ++msgstr "Mostra in File" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 ++msgid "Icon size" ++msgstr "Dimensione dell'icona" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 ++msgid "Set the size for the desktop icons." ++msgstr "Imposta la grandezza delle icone della scrivania." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 ++msgid "Show personal folder" ++msgstr "Mostra la cartella personale" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++msgid "Show the personal folder in the desktop." ++msgstr "Mostra la cartella personale sulla scrivania." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 ++msgid "Show trash icon" ++msgstr "Mostra il cestino" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++msgid "Show the trash icon in the desktop." ++msgstr "Mostra il cestino sulla scrivania." +diff --git a/po/ja.po b/po/ja.po +index a2201ef..df5646d 100644 +--- a/po/ja.po ++++ b/po/ja.po +@@ -1,3 +1,4 @@ ++# #-#-#-#-# ja.po (gnome-shell-extensions master) #-#-#-#-# + # gnome-shell-extensions ja.po + # Copyright (C) 2011-2013 gnome-shell-extensions's COPYRIGHT HOLDER + # This file is distributed under the same license as the gnome-shell-extensions package. +@@ -7,8 +8,16 @@ + # Ikuya Awashiro , 2014. + # Hajime Taira , 2014, 2015. + # ++# #-#-#-#-# ja.po (desktop-icons master) #-#-#-#-# ++# Japanese translation for desktop-icons. ++# Copyright (C) 2019 desktop-icons's COPYRIGHT HOLDER ++# This file is distributed under the same license as the desktop-icons package. ++# sicklylife , 2019. ++# ++#, fuzzy + msgid "" + msgstr "" ++"#-#-#-#-# ja.po (gnome-shell-extensions master) #-#-#-#-#\n" + "Project-Id-Version: gnome-shell-extensions master\n" + "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" + "issues\n" +@@ -21,6 +30,19 @@ msgstr "" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"#-#-#-#-# ja.po (desktop-icons master) #-#-#-#-#\n" ++"Project-Id-Version: desktop-icons master\n" ++"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" ++"icons/issues\n" ++"POT-Creation-Date: 2019-04-29 14:11+0000\n" ++"PO-Revision-Date: 2019-08-29 21:30+0900\n" ++"Last-Translator: sicklylife \n" ++"Language-Team: Japanese \n" ++"Language: ja\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Plural-Forms: nplurals=1; plural=0;\n" + + #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 + msgid "GNOME Classic" +@@ -270,6 +292,188 @@ msgstr "名前" + msgid "Workspace %d" + msgstr "ワークスペース %d" + ++#: desktopGrid.js:334 ++#, fuzzy ++msgid "Display Settings" ++msgstr "" ++"#-#-#-#-# ja.po (gnome-shell-extensions master) #-#-#-#-#\n" ++"ディスプレイ設定\n" ++"#-#-#-#-# ja.po (desktop-icons master) #-#-#-#-#\n" ++"ディスプレイの設定" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 ++#, fuzzy ++msgid "Icon size" ++msgstr "" ++"#-#-#-#-# ja.po (gnome-shell-extensions master) #-#-#-#-#\n" ++"アイコンのサイズ\n" ++"#-#-#-#-# ja.po (desktop-icons master) #-#-#-#-#\n" ++"アイコンサイズ" ++ ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "新しいフォルダー名" ++ ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "作成" ++ ++#: createFolderDialog.js:74 desktopGrid.js:592 ++msgid "Cancel" ++msgstr "キャンセル" ++ ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "“/”は、フォルダー名に含められません。" ++ ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "“.”という名前をフォルダーに付けられません。" ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "“..”という名前をフォルダーに付けられません。" ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "名前が“.”で始まるフォルダーは、隠しフォルダーになります。" ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "その名前のファイルかフォルダーがすでに存在します。" ++ ++#: prefs.js:102 ++msgid "Size for the desktop icons" ++msgstr "デスクトップアイコンのサイズ" ++ ++#: prefs.js:102 ++msgid "Small" ++msgstr "小さい" ++ ++#: prefs.js:102 ++msgid "Standard" ++msgstr "標準" ++ ++#: prefs.js:102 ++msgid "Large" ++msgstr "大きい" ++ ++#: prefs.js:103 ++msgid "Show the personal folder in the desktop" ++msgstr "デスクトップにホームフォルダーを表示する" ++ ++#: prefs.js:104 ++msgid "Show the trash icon in the desktop" ++msgstr "デスクトップにゴミ箱を表示する" ++ ++#: desktopGrid.js:323 ++msgid "New Folder" ++msgstr "新しいフォルダー" ++ ++#: desktopGrid.js:325 ++msgid "Paste" ++msgstr "貼り付け" ++ ++#: desktopGrid.js:326 ++msgid "Undo" ++msgstr "元に戻す" ++ ++#: desktopGrid.js:327 ++msgid "Redo" ++msgstr "やり直す" ++ ++#: desktopGrid.js:329 ++msgid "Show Desktop in Files" ++msgstr "“ファイル”でデスクトップを表示" ++ ++#: desktopGrid.js:330 fileItem.js:610 ++msgid "Open in Terminal" ++msgstr "端末を開く" ++ ++#: desktopGrid.js:332 ++msgid "Change Background…" ++msgstr "背景の変更…" ++ ++#: desktopGrid.js:335 ++msgid "Settings" ++msgstr "設定" ++ ++#: desktopGrid.js:582 ++msgid "Enter file name…" ++msgstr "ファイル名を入力してください…" ++ ++#: desktopGrid.js:586 ++msgid "OK" ++msgstr "OK" ++ ++#: desktopIconsUtil.js:61 ++msgid "Command not found" ++msgstr "コマンドが見つかりません" ++ ++#: fileItem.js:494 ++msgid "Don’t Allow Launching" ++msgstr "起動を許可しない" ++ ++#: fileItem.js:496 ++msgid "Allow Launching" ++msgstr "起動を許可する" ++ ++#: fileItem.js:578 ++msgid "Open" ++msgstr "開く" ++ ++#: fileItem.js:582 ++msgid "Open With Other Application" ++msgstr "別のアプリケーションで開く" ++ ++#: fileItem.js:586 ++msgid "Cut" ++msgstr "切り取り" ++ ++#: fileItem.js:587 ++msgid "Copy" ++msgstr "コピー" ++ ++#: fileItem.js:589 ++msgid "Rename…" ++msgstr "名前の変更…" ++ ++#: fileItem.js:590 ++msgid "Move to Trash" ++msgstr "ゴミ箱へ移動する" ++ ++#: fileItem.js:600 ++msgid "Empty Trash" ++msgstr "ゴミ箱を空にする" ++ ++#: fileItem.js:606 ++msgid "Properties" ++msgstr "プロパティ" ++ ++#: fileItem.js:608 ++msgid "Show in Files" ++msgstr "“ファイル”で表示" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 ++msgid "Set the size for the desktop icons." ++msgstr "デスクトップのアイコンサイズを設定します。" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 ++msgid "Show personal folder" ++msgstr "ホームフォルダーを表示する" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++msgid "Show the personal folder in the desktop." ++msgstr "デスクトップにホームフォルダーを表示します。" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 ++msgid "Show trash icon" ++msgstr "ゴミ箱アイコンを表示する" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++msgid "Show the trash icon in the desktop." ++msgstr "デスクトップにゴミ箱のアイコンを表示します。" ++ + #~ msgid "Attach modal dialog to the parent window" + #~ msgstr "モーダルダイアログを親ウィンドウに結び付ける" + +@@ -365,9 +569,6 @@ msgstr "ワークスペース %d" + #~ msgid "Display" + #~ msgstr "ディスプレイ" + +-#~ msgid "Display Settings" +-#~ msgstr "ディスプレイ設定" +- + #~ msgid "Suspend" + #~ msgstr "サスペンド" + +@@ -413,9 +614,6 @@ msgstr "ワークスペース %d" + #~ msgid "Remove from Favorites" + #~ msgstr "お気に入りから削除" + +-#~ msgid "Icon size" +-#~ msgstr "アイコンのサイズ" +- + #~ msgid "Position of the dock" + #~ msgstr "ドックの位置" + +diff --git a/po/nl.po b/po/nl.po +index a7998d3..bbf7b1f 100644 +--- a/po/nl.po ++++ b/po/nl.po +@@ -1,11 +1,20 @@ ++# #-#-#-#-# nl.po (gnome-shell-extensions master) #-#-#-#-# + # Dutch translation for gnome-shell-extensions. + # Copyright (C) 2013 gnome-shell-extensions's COPYRIGHT HOLDER + # This file is distributed under the same license as the gnome-shell-extensions package. + # Reinout van Schouwen , 2013, 2014. + # Nathan Follens , 2015-2017. + # Hannie Dumoleyn , 2015. ++# #-#-#-#-# nl.po (desktop-icons master) #-#-#-#-# ++# Dutch translation for desktop-icons. ++# Copyright (C) 2019 desktop-icons's COPYRIGHT HOLDER ++# This file is distributed under the same license as the desktop-icons package. ++# Nathan Follens , 2019. ++# ++#, fuzzy + msgid "" + msgstr "" ++"#-#-#-#-# nl.po (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-" + "shell&keywords=I18N+L10N&component=extensions\n" +@@ -20,6 +29,20 @@ msgstr "" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" + "X-Generator: Poedit 2.0.2\n" + "X-Project-Style: gnome\n" ++"#-#-#-#-# nl.po (desktop-icons master) #-#-#-#-#\n" ++"Project-Id-Version: desktop-icons master\n" ++"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" ++"icons/issues\n" ++"POT-Creation-Date: 2019-03-01 12:11+0000\n" ++"PO-Revision-Date: 2019-03-04 19:46+0100\n" ++"Last-Translator: Nathan Follens \n" ++"Language-Team: Dutch \n" ++"Language: nl\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Poedit 2.2.1\n" + + #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 + msgid "GNOME Classic" +@@ -360,6 +383,174 @@ msgstr "Naam" + msgid "Workspace %d" + msgstr "Werkblad %d" + ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "Nieuwe mapnaam" ++ ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Aanmaken" ++ ++#: createFolderDialog.js:74 desktopGrid.js:586 ++msgid "Cancel" ++msgstr "Annuleren" ++ ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "Mapnamen kunnen geen ‘/’ bevatten." ++ ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "Een map kan niet ‘.’ worden genoemd." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "Een map kan niet ‘..’ worden genoemd." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Mappen waarvan de naam begint met ‘.’ zijn verborgen." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Er bestaat al een bestand of map met die naam." ++ ++#: prefs.js:102 ++msgid "Size for the desktop icons" ++msgstr "Grootte van bureaubladpictogrammen" ++ ++#: prefs.js:102 ++msgid "Small" ++msgstr "Klein" ++ ++#: prefs.js:102 ++msgid "Standard" ++msgstr "Standaard" ++ ++#: prefs.js:102 ++msgid "Large" ++msgstr "Groot" ++ ++#: prefs.js:103 ++msgid "Show the personal folder in the desktop" ++msgstr "Toon de persoonlijke map op het bureaublad" ++ ++#: prefs.js:104 ++msgid "Show the trash icon in the desktop" ++msgstr "Toon het prullenbakpictogram op het bureaublad" ++ ++#: desktopGrid.js:320 ++msgid "New Folder" ++msgstr "Nieuwe map" ++ ++#: desktopGrid.js:322 ++msgid "Paste" ++msgstr "Plakken" ++ ++#: desktopGrid.js:323 ++msgid "Undo" ++msgstr "Ongedaan maken" ++ ++#: desktopGrid.js:324 ++msgid "Redo" ++msgstr "Opnieuw" ++ ++#: desktopGrid.js:326 ++msgid "Show Desktop in Files" ++msgstr "Bureaublad tonen in Bestanden" ++ ++#: desktopGrid.js:327 fileItem.js:606 ++msgid "Open in Terminal" ++msgstr "Openen in terminalvenster" ++ ++#: desktopGrid.js:329 ++msgid "Change Background…" ++msgstr "Achtergrond aanpassen…" ++ ++#: desktopGrid.js:331 ++msgid "Display Settings" ++msgstr "Scherminstellingen" ++ ++#: desktopGrid.js:332 ++msgid "Settings" ++msgstr "Instellingen" ++ ++#: desktopGrid.js:576 ++msgid "Enter file name…" ++msgstr "Voer bestandsnaam in…" ++ ++#: desktopGrid.js:580 ++msgid "OK" ++msgstr "Oké" ++ ++#: fileItem.js:490 ++msgid "Don’t Allow Launching" ++msgstr "Toepassingen starten niet toestaan" ++ ++#: fileItem.js:492 ++msgid "Allow Launching" ++msgstr "Toepassingen starten toestaan" ++ ++#: fileItem.js:574 ++msgid "Open" ++msgstr "Openen" ++ ++#: fileItem.js:578 ++msgid "Open With Other Application" ++msgstr "Met andere toepassing openen" ++ ++#: fileItem.js:582 ++msgid "Cut" ++msgstr "Knippen" ++ ++#: fileItem.js:583 ++msgid "Copy" ++msgstr "Kopiëren" ++ ++#: fileItem.js:585 ++msgid "Rename…" ++msgstr "Hernoemen…" ++ ++#: fileItem.js:586 ++msgid "Move to Trash" ++msgstr "Verplaatsen naar prullenbak" ++ ++#: fileItem.js:596 ++msgid "Empty Trash" ++msgstr "Prullenbak legen" ++ ++#: fileItem.js:602 ++msgid "Properties" ++msgstr "Eigenschappen" ++ ++#: fileItem.js:604 ++msgid "Show in Files" ++msgstr "Tonen in Bestanden" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 ++msgid "Icon size" ++msgstr "Pictogramgrootte" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 ++msgid "Set the size for the desktop icons." ++msgstr "Stel de grootte van de bureaubladpictogrammen in." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 ++msgid "Show personal folder" ++msgstr "Persoonlijke map tonen" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++msgid "Show the personal folder in the desktop." ++msgstr "Toon de persoonlijke map op het bureaublad." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 ++msgid "Show trash icon" ++msgstr "Prullenbakpictogram tonen" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++msgid "Show the trash icon in the desktop." ++msgstr "Toon het prullenbakpictogram op het bureaublad." ++ + #~ msgid "GNOME Shell Classic" + #~ msgstr "Gnome Shell klassiek" + +diff --git a/po/pl.po b/po/pl.po +index 35799ee..a779932 100644 +--- a/po/pl.po ++++ b/po/pl.po +@@ -1,11 +1,21 @@ ++# #-#-#-#-# pl.po (gnome-shell-extensions) #-#-#-#-# + # Polish translation for gnome-shell-extensions. + # Copyright © 2011-2017 the gnome-shell-extensions authors. + # This file is distributed under the same license as the gnome-shell-extensions package. + # Piotr Drąg , 2011-2017. + # Aviary.pl , 2011-2017. + # ++# #-#-#-#-# pl.po (desktop-icons) #-#-#-#-# ++# Polish translation for desktop-icons. ++# Copyright © 2018-2019 the desktop-icons authors. ++# This file is distributed under the same license as the desktop-icons package. ++# Piotr Drąg , 2018-2019. ++# Aviary.pl , 2018-2019. ++# ++#, fuzzy + msgid "" + msgstr "" ++"#-#-#-#-# pl.po (gnome-shell-extensions) #-#-#-#-#\n" + "Project-Id-Version: gnome-shell-extensions\n" + "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" + "shell&keywords=I18N+L10N&component=extensions\n" +@@ -19,6 +29,20 @@ msgstr "" + "Content-Transfer-Encoding: 8bit\n" + "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " + "|| n%100>=20) ? 1 : 2);\n" ++"#-#-#-#-# pl.po (desktop-icons) #-#-#-#-#\n" ++"Project-Id-Version: desktop-icons\n" ++"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" ++"icons/issues\n" ++"POT-Creation-Date: 2019-04-29 14:11+0000\n" ++"PO-Revision-Date: 2019-05-01 13:03+0200\n" ++"Last-Translator: Piotr Drąg \n" ++"Language-Team: Polish \n" ++"Language: pl\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " ++"|| n%100>=20) ? 1 : 2);\n" + + #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 + msgid "GNOME Classic" +@@ -358,3 +382,175 @@ msgstr "Nazwa" + #, javascript-format + msgid "Workspace %d" + msgstr "%d. obszar roboczy" ++ ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "Nazwa nowego katalogu" ++ ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Utwórz" ++ ++#: createFolderDialog.js:74 desktopGrid.js:592 ++msgid "Cancel" ++msgstr "Anuluj" ++ ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "Nazwy katalogów nie mogą zawierać znaku „/”." ++ ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "Katalog nie może mieć nazwy „.”." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "Katalog nie może mieć nazwy „..”." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Katalogi z „.” na początku nazwy są ukryte." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Plik lub katalog o tej nazwie już istnieje." ++ ++#: prefs.js:102 ++msgid "Size for the desktop icons" ++msgstr "Rozmiar ikon na pulpicie" ++ ++#: prefs.js:102 ++msgid "Small" ++msgstr "Mały" ++ ++#: prefs.js:102 ++msgid "Standard" ++msgstr "Standardowy" ++ ++#: prefs.js:102 ++msgid "Large" ++msgstr "Duży" ++ ++#: prefs.js:103 ++msgid "Show the personal folder in the desktop" ++msgstr "Katalog domowy na pulpicie" ++ ++#: prefs.js:104 ++msgid "Show the trash icon in the desktop" ++msgstr "Kosz na pulpicie" ++ ++#: desktopGrid.js:323 ++msgid "New Folder" ++msgstr "Nowy katalog" ++ ++#: desktopGrid.js:325 ++msgid "Paste" ++msgstr "Wklej" ++ ++#: desktopGrid.js:326 ++msgid "Undo" ++msgstr "Cofnij" ++ ++#: desktopGrid.js:327 ++msgid "Redo" ++msgstr "Ponów" ++ ++#: desktopGrid.js:329 ++msgid "Show Desktop in Files" ++msgstr "Wyświetl pulpit w menedżerze plików" ++ ++#: desktopGrid.js:330 fileItem.js:610 ++msgid "Open in Terminal" ++msgstr "Otwórz w terminalu" ++ ++#: desktopGrid.js:332 ++msgid "Change Background…" ++msgstr "Zmień tło…" ++ ++#: desktopGrid.js:334 ++msgid "Display Settings" ++msgstr "Ustawienia ekranu" ++ ++#: desktopGrid.js:335 ++msgid "Settings" ++msgstr "Ustawienia" ++ ++#: desktopGrid.js:582 ++msgid "Enter file name…" ++msgstr "Nazwa pliku…" ++ ++#: desktopGrid.js:586 ++msgid "OK" ++msgstr "OK" ++ ++#: desktopIconsUtil.js:61 ++msgid "Command not found" ++msgstr "Nie odnaleziono polecenia" ++ ++#: fileItem.js:494 ++msgid "Don’t Allow Launching" ++msgstr "Nie zezwalaj na uruchamianie" ++ ++#: fileItem.js:496 ++msgid "Allow Launching" ++msgstr "Zezwól na uruchamianie" ++ ++#: fileItem.js:578 ++msgid "Open" ++msgstr "Otwórz" ++ ++#: fileItem.js:582 ++msgid "Open With Other Application" ++msgstr "Otwórz za pomocą innego programu" ++ ++#: fileItem.js:586 ++msgid "Cut" ++msgstr "Wytnij" ++ ++#: fileItem.js:587 ++msgid "Copy" ++msgstr "Skopiuj" ++ ++#: fileItem.js:589 ++msgid "Rename…" ++msgstr "Zmień nazwę…" ++ ++#: fileItem.js:590 ++msgid "Move to Trash" ++msgstr "Przenieś do kosza" ++ ++#: fileItem.js:600 ++msgid "Empty Trash" ++msgstr "Opróżnij kosz" ++ ++#: fileItem.js:606 ++msgid "Properties" ++msgstr "Właściwości" ++ ++#: fileItem.js:608 ++msgid "Show in Files" ++msgstr "Wyświetl w menedżerze plików" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 ++msgid "Icon size" ++msgstr "Rozmiar ikon" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 ++msgid "Set the size for the desktop icons." ++msgstr "Ustawia rozmiar ikon na pulpicie." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 ++msgid "Show personal folder" ++msgstr "Katalog domowy" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++msgid "Show the personal folder in the desktop." ++msgstr "Wyświetla katalog domowy na pulpicie." ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 ++msgid "Show trash icon" ++msgstr "Kosz" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++msgid "Show the trash icon in the desktop." ++msgstr "Wyświetla kosz na pulpicie." +diff --git a/po/pt_BR.po b/po/pt_BR.po +index d029648..f1e17f7 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -1,3 +1,4 @@ ++# #-#-#-#-# pt_BR.po (gnome-shell-extensions master) #-#-#-#-# + # Brazilian Portuguese translation for gnome-shell-extensions. + # Copyright (C) 2017 gnome-shell-extensions's COPYRIGHT HOLDER + # This file is distributed under the same license as the gnome-shell-extensions package. +@@ -9,8 +10,17 @@ + # Og Maciel , 2012. + # Enrico Nicoletto , 2013, 2014. + # Rafael Fontenelle , 2013, 2017. ++# #-#-#-#-# pt_BR.po (desktop-icons master) #-#-#-#-# ++# Brazilian Portuguese translation for desktop-icons. ++# Copyright (C) 2019 desktop-icons's COPYRIGHT HOLDER ++# This file is distributed under the same license as the desktop-icons package. ++# Enrico Nicoletto , 2018. ++# Rafael Fontenelle , 2018-2019. ++# ++#, fuzzy + msgid "" + msgstr "" ++"#-#-#-#-# pt_BR.po (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-" + "shell&keywords=I18N+L10N&component=extensions\n" +@@ -25,6 +35,20 @@ msgstr "" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" + "X-Generator: Virtaal 1.0.0-beta1\n" + "X-Project-Style: gnome\n" ++"#-#-#-#-# pt_BR.po (desktop-icons master) #-#-#-#-#\n" ++"Project-Id-Version: desktop-icons master\n" ++"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" ++"icons/issues\n" ++"POT-Creation-Date: 2019-04-29 14:11+0000\n" ++"PO-Revision-Date: 2019-04-29 17:35-0300\n" ++"Last-Translator: Rafael Fontenelle \n" ++"Language-Team: Brazilian Portuguese \n" ++"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=2; plural=(n != 1);\n" -+"X-Generator: Poedit 2.2\n" ++"Plural-Forms: nplurals=2; plural=(n > 1)\n" ++"X-Generator: Gtranslator 3.32.0\n" #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 msgid "GNOME Classic" -@@ -362,3 +407,135 @@ msgstr "Nome" - #, javascript-format +@@ -366,6 +390,183 @@ msgstr "Nome" msgid "Workspace %d" - msgstr "Spazio di lavoro %d" + msgstr "Espaço de trabalho %d" + ++#: desktopGrid.js:334 ++#, fuzzy ++msgid "Display Settings" ++msgstr "" ++"#-#-#-#-# pt_BR.po (gnome-shell-extensions master) #-#-#-#-#\n" ++"Configurações de tela\n" ++"#-#-#-#-# pt_BR.po (desktop-icons master) #-#-#-#-#\n" ++"Configurações de exibição" ++ ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 ++msgid "Icon size" ++msgstr "Tamanho do ícone" ++ ++#: createFolderDialog.js:74 desktopGrid.js:592 ++msgid "Cancel" ++msgstr "Cancelar" ++ ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "Nome da nova pasta" ++ ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Criar" ++ ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "Nomes de pastas não podem conter “/”." ++ ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "Uma pasta não pode ser chamada “.”." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "Uma pasta não pode ser chamada “..”." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Pastas com “.” no começo de seus nomes são ocultas." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Já existe um arquivo ou uma pasta com esse nome." + -+#: prefs.js:93 ++#: prefs.js:102 +msgid "Size for the desktop icons" -+msgstr "Dimensione delle icone della scrivania" ++msgstr "Tamanho para os ícones da área de trabalho" + -+#: prefs.js:93 ++#: prefs.js:102 +msgid "Small" -+msgstr "Piccola" ++msgstr "Pequeno" + -+#: prefs.js:93 ++#: prefs.js:102 +msgid "Standard" -+msgstr "Normale" ++msgstr "Padrão" + -+#: prefs.js:93 ++#: prefs.js:102 +msgid "Large" +msgstr "Grande" + -+#: prefs.js:93 -+msgid "Huge" -+msgstr "Enorme" -+ -+#: prefs.js:94 ++#: prefs.js:103 +msgid "Show the personal folder in the desktop" -+msgstr "Mostra la cartella personale sulla scrivania" ++msgstr "Mostrar a pasta pessoal na área de trabalho" + -+#: prefs.js:95 ++#: prefs.js:104 +msgid "Show the trash icon in the desktop" -+msgstr "Mostra il cestino sulla scrivania" ++msgstr "Mostrar o ícone da lixeira na área de trabalho" + -+#: desktopGrid.js:185 desktopGrid.js:304 ++#: desktopGrid.js:323 +msgid "New Folder" -+msgstr "Nuova cartella" ++msgstr "Nova pasta" + -+#: desktopGrid.js:306 ++#: desktopGrid.js:325 +msgid "Paste" -+msgstr "Incolla" ++msgstr "Colar" + -+#: desktopGrid.js:307 ++#: desktopGrid.js:326 +msgid "Undo" -+msgstr "Annulla" ++msgstr "Desfazer" + -+#: desktopGrid.js:308 ++#: desktopGrid.js:327 +msgid "Redo" -+msgstr "Ripeti" ++msgstr "Refazer" + -+#: desktopGrid.js:310 -+msgid "Open Desktop in Files" -+msgstr "Apri la scrivania in File" ++#: desktopGrid.js:329 ++msgid "Show Desktop in Files" ++msgstr "Mostrar a área de trabalho no Arquivos" + -+#: desktopGrid.js:311 -+msgid "Open Terminal" -+msgstr "Apri un terminale" ++#: desktopGrid.js:330 fileItem.js:610 ++msgid "Open in Terminal" ++msgstr "Abrir no terminal" + -+#: desktopGrid.js:313 ++#: desktopGrid.js:332 +msgid "Change Background…" -+msgstr "Cambia lo sfondo…" -+ -+#: desktopGrid.js:314 -+msgid "Display Settings" -+msgstr "Impostazioni dello schermo" ++msgstr "Alterar plano de fundo…" + -+#: desktopGrid.js:315 ++#: desktopGrid.js:335 +msgid "Settings" -+msgstr "Impostazioni" ++msgstr "Configurações" + -+#: desktopGrid.js:569 ++#: desktopGrid.js:582 +msgid "Enter file name…" -+msgstr "Indicare un nome per il file…" ++msgstr "Insira um nome de arquivo…" + -+#: desktopGrid.js:573 -+msgid "Ok" -+msgstr "Ok" ++#: desktopGrid.js:586 ++msgid "OK" ++msgstr "OK" + -+#: desktopGrid.js:579 -+msgid "Cancel" -+msgstr "Annulla" ++#: desktopIconsUtil.js:61 ++msgid "Command not found" ++msgstr "Comando não encontrado" + -+#: fileItem.js:393 ++#: fileItem.js:494 ++msgid "Don’t Allow Launching" ++msgstr "Não permitir iniciar" ++ ++#: fileItem.js:496 ++msgid "Allow Launching" ++msgstr "Permitir iniciar" ++ ++#: fileItem.js:578 +msgid "Open" -+msgstr "Apri" ++msgstr "Abrir" + -+#: fileItem.js:396 ++#: fileItem.js:582 ++msgid "Open With Other Application" ++msgstr "Abrir com outro aplicativo" ++ ++#: fileItem.js:586 +msgid "Cut" -+msgstr "Taglia" ++msgstr "Recortar" + -+#: fileItem.js:397 ++#: fileItem.js:587 +msgid "Copy" -+msgstr "Copia" ++msgstr "Copiar" + -+#: fileItem.js:398 -+msgid "Rename" -+msgstr "Rinomina" ++#: fileItem.js:589 ++msgid "Rename…" ++msgstr "Renomear…" + -+#: fileItem.js:399 ++#: fileItem.js:590 +msgid "Move to Trash" -+msgstr "Sposta nel cestino" ++msgstr "Mover para a lixeira" + -+#: fileItem.js:403 ++#: fileItem.js:600 +msgid "Empty Trash" -+msgstr "Svuota il cestino" ++msgstr "Esvaziar lixeira" + -+#: fileItem.js:409 ++#: fileItem.js:606 +msgid "Properties" -+msgstr "Proprietà" ++msgstr "Propriedades" + -+#: fileItem.js:411 ++#: fileItem.js:608 +msgid "Show in Files" -+msgstr "Mostra in File" ++msgstr "Mostrar no Arquivos" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 -+msgid "Icon size" -+msgstr "Dimensione dell'icona" -+ -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:13 +msgid "Set the size for the desktop icons." -+msgstr "Imposta la grandezza delle icone della scrivania." ++msgstr "Define o tamanho para os ícones da área de trabalho." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 +msgid "Show personal folder" -+msgstr "Mostra la cartella personale" ++msgstr "Mostrar pasta pessoal" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:18 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 +msgid "Show the personal folder in the desktop." -+msgstr "Mostra la cartella personale sulla scrivania." ++msgstr "Mostra a pasta pessoal na área de trabalho." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 +msgid "Show trash icon" -+msgstr "Mostra il cestino" ++msgstr "Mostrar ícone da lixeira" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:23 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 +msgid "Show the trash icon in the desktop." -+msgstr "Mostra il cestino sulla scrivania." -diff --git a/po/pl.po b/po/pl.po -index 35799ee..94dd40b 100644 ---- a/po/pl.po -+++ b/po/pl.po -@@ -1,11 +1,30 @@ -+# #-#-#-#-# pl.po (gnome-shell-extensions) #-#-#-#-# -+# #-#-#-#-# pl.po (gnome-shell-extensions) #-#-#-#-# - # Polish translation for gnome-shell-extensions. - # Copyright © 2011-2017 the gnome-shell-extensions authors. - # This file is distributed under the same license as the gnome-shell-extensions package. - # Piotr Drąg , 2011-2017. - # Aviary.pl , 2011-2017. - # -+# #-#-#-#-# pl.po (desktop-icons) #-#-#-#-# -+# Polish translation for desktop-icons. -+# Copyright © 2018-2019 the desktop-icons authors. -+# This file is distributed under the same license as the desktop-icons package. -+# Piotr Drąg , 2018-2019. -+# Aviary.pl , 2018-2019. -+# -+# #-#-#-#-# pl.po (desktop-icons) #-#-#-#-# -+# Polish translation for desktop-icons. -+# Copyright © 2018-2019 the desktop-icons authors. -+# This file is distributed under the same license as the desktop-icons package. -+# Piotr Drąg , 2018-2019. -+# Aviary.pl , 2018-2019. ++msgstr "Mostra o ícone da lixeira na área de trabalho." ++ + #~ msgid "CPU" + #~ msgstr "CPU" + +@@ -414,9 +615,6 @@ msgstr "Espaço de trabalho %d" + #~ msgid "Display" + #~ msgstr "Tela" + +-#~ msgid "Display Settings" +-#~ msgstr "Configurações de tela" +- + #~ msgid "The application icon mode." + #~ msgstr "O modo de ícone do aplicativo." + +@@ -451,9 +649,6 @@ msgstr "Espaço de trabalho %d" + #~ "Define a posição do dock na tela. Os valores permitidos são \"right\" ou " + #~ "\"left\"" + +-#~ msgid "Icon size" +-#~ msgstr "Tamanho do ícone" +- + #~ msgid "Sets icon size of the dock." + #~ msgstr "Define o tamanho do ícone do dock." + +@@ -613,9 +808,6 @@ msgstr "Espaço de trabalho %d" + #~ msgid "Alt Tab Behaviour" + #~ msgstr "Comportamento do Alt Tab" + +-#~ msgid "Cancel" +-#~ msgstr "Cancelar" +- + #~ msgid "Ask the user for a default behaviour if true." + #~ msgstr "Pergunte ao usuário por um comportamento padrão se marcado." + +@@ -639,3 +831,9 @@ msgstr "Espaço de trabalho %d" + + #~ msgid "Log Out..." + #~ msgstr "Encerrar sessão..." ++ ++#~ msgid "Huge" ++#~ msgstr "Enorme" ++ ++#~ msgid "Ok" ++#~ msgstr "Ok" +diff --git a/po/ru.po b/po/ru.po +index c18c0ba..9320c3c 100644 +--- a/po/ru.po ++++ b/po/ru.po +@@ -1,11 +1,20 @@ ++# #-#-#-#-# ru.po (gnome-shell-extensions gnome-3-0) #-#-#-#-# + # Russian translation for gnome-shell-extensions. + # Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER + # This file is distributed under the same license as the gnome-shell-extensions package. + # Yuri Myasoedov , 2011, 2012, 2013. + # Stas Solovey , 2011, 2012, 2013, 2015, 2017. + # ++# #-#-#-#-# ru.po #-#-#-#-# ++# SOME DESCRIPTIVE TITLE. ++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ++# This file is distributed under the same license as the PACKAGE package. ++# Eaglers , 2018. +# +#, fuzzy msgid "" msgstr "" -+"#-#-#-#-# pl.po (gnome-shell-extensions) #-#-#-#-#\n" -+"#-#-#-#-# pl.po (gnome-shell-extensions) #-#-#-#-#\n" - "Project-Id-Version: gnome-shell-extensions\n" ++"#-#-#-#-# ru.po (gnome-shell-extensions gnome-3-0) #-#-#-#-#\n" + "Project-Id-Version: gnome-shell-extensions gnome-3-0\n" "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "shell&keywords=I18N+L10N&component=extensions\n" -@@ -19,6 +38,34 @@ msgstr "" - "Content-Transfer-Encoding: 8bit\n" - "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " - "|| n%100>=20) ? 1 : 2);\n" -+"#-#-#-#-# pl.po (desktop-icons) #-#-#-#-#\n" -+"Project-Id-Version: desktop-icons\n" -+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -+"icons/issues\n" -+"POT-Creation-Date: 2019-01-15 10:59+0000\n" -+"PO-Revision-Date: 2019-01-15 20:57+0100\n" -+"Last-Translator: Piotr Drąg \n" -+"Language-Team: Polish \n" -+"Language: pl\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -+"|| n%100>=20) ? 1 : 2);\n" -+"#-#-#-#-# pl.po (desktop-icons) #-#-#-#-#\n" -+"Project-Id-Version: desktop-icons\n" +@@ -20,6 +29,21 @@ msgstr "" + "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.0.3\n" ++"#-#-#-#-# ru.po #-#-#-#-#\n" ++"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" -+"POT-Creation-Date: 2019-01-15 10:59+0000\n" -+"PO-Revision-Date: 2019-01-15 20:57+0100\n" -+"Last-Translator: Piotr Drąg \n" -+"Language-Team: Polish \n" -+"Language: pl\n" ++"POT-Creation-Date: 2018-11-22 08:42+0000\n" ++"PO-Revision-Date: 2018-11-22 22:02+0300\n" ++"Last-Translator: Stas Solovey \n" ++"Language-Team: Russian \n" ++"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -+"|| n%100>=20) ? 1 : 2);\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.2\n" #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 msgid "GNOME Classic" -@@ -358,3 +405,139 @@ msgstr "Nazwa" - #, javascript-format +@@ -360,6 +384,138 @@ msgstr "Название" msgid "Workspace %d" - msgstr "%d. obszar roboczy" -+ -+#: prefs.js:102 + msgstr "Рабочая область %d" + ++#: prefs.js:89 +msgid "Size for the desktop icons" -+msgstr "Rozmiar ikon na pulpicie" ++msgstr "Размер значков" + -+#: prefs.js:102 ++#: prefs.js:89 +msgid "Small" -+msgstr "Mały" ++msgstr "Маленький" + -+#: prefs.js:102 ++#: prefs.js:89 +msgid "Standard" -+msgstr "Standardowy" ++msgstr "Стандартный" + -+#: prefs.js:102 ++#: prefs.js:89 +msgid "Large" -+msgstr "Duży" ++msgstr "Большой" + -+#: prefs.js:103 ++#: prefs.js:89 ++msgid "Huge" ++msgstr "Огромный" ++ ++#: prefs.js:90 +msgid "Show the personal folder in the desktop" -+msgstr "Katalog domowy na pulpicie" ++msgstr "Показывать домашнюю папку на рабочем столе" + -+#: prefs.js:104 ++#: prefs.js:91 +msgid "Show the trash icon in the desktop" -+msgstr "Kosz na pulpicie" ++msgstr "Показывать «Корзину» на рабочем столе" + -+#: desktopGrid.js:187 desktopGrid.js:306 ++#: desktopGrid.js:185 desktopGrid.js:304 +msgid "New Folder" -+msgstr "Nowy katalog" ++msgstr "Создать папку" + -+#: desktopGrid.js:308 ++#: desktopGrid.js:306 +msgid "Paste" -+msgstr "Wklej" ++msgstr "Вставить" + -+#: desktopGrid.js:309 ++#: desktopGrid.js:307 +msgid "Undo" -+msgstr "Cofnij" ++msgstr "Отменить" + -+#: desktopGrid.js:310 ++#: desktopGrid.js:308 +msgid "Redo" -+msgstr "Ponów" ++msgstr "Повторить" + -+#: desktopGrid.js:312 -+msgid "Show Desktop in Files" -+msgstr "Wyświetl pulpit w menedżerze plików" ++#: desktopGrid.js:310 ++msgid "Open Desktop in Files" ++msgstr "Открыть «Рабочий стол» в «Файлах»" + -+#: desktopGrid.js:313 fileItem.js:586 -+msgid "Open in Terminal" -+msgstr "Otwórz w terminalu" ++#: desktopGrid.js:311 ++msgid "Open Terminal" ++msgstr "Открыть терминал" + -+#: desktopGrid.js:315 ++#: desktopGrid.js:313 +msgid "Change Background…" -+msgstr "Zmień tło…" ++msgstr "Изменить фон…" + -+#: desktopGrid.js:317 ++#: desktopGrid.js:314 +msgid "Display Settings" -+msgstr "Ustawienia ekranu" ++msgstr "Настройки дисплея" + -+#: desktopGrid.js:318 ++#: desktopGrid.js:315 +msgid "Settings" -+msgstr "Ustawienia" ++msgstr "Параметры" + -+#: desktopGrid.js:559 ++#: desktopGrid.js:569 +msgid "Enter file name…" -+msgstr "Nazwa pliku…" ++msgstr "Ввести имя файла…" + -+#: desktopGrid.js:563 -+msgid "OK" -+msgstr "OK" ++#: desktopGrid.js:573 ++msgid "Ok" ++msgstr "ОК" + -+#: desktopGrid.js:569 ++#: desktopGrid.js:579 +msgid "Cancel" -+msgstr "Anuluj" -+ -+#: fileItem.js:490 -+msgid "Don’t Allow Launching" -+msgstr "Nie zezwalaj na uruchamianie" -+ -+#: fileItem.js:492 -+msgid "Allow Launching" -+msgstr "Zezwól na uruchamianie" ++msgstr "Отмена" + -+#: fileItem.js:559 ++#: fileItem.js:390 +msgid "Open" -+msgstr "Otwórz" ++msgstr "Открыть" + -+#: fileItem.js:562 ++#: fileItem.js:393 +msgid "Cut" -+msgstr "Wytnij" ++msgstr "Вырезать" + -+#: fileItem.js:563 ++#: fileItem.js:394 +msgid "Copy" -+msgstr "Skopiuj" ++msgstr "Вставить" + -+#: fileItem.js:565 -+msgid "Rename…" -+msgstr "Zmień nazwę…" ++#: fileItem.js:395 ++msgid "Rename" ++msgstr "Переименовать" + -+#: fileItem.js:566 ++#: fileItem.js:396 +msgid "Move to Trash" -+msgstr "Przenieś do kosza" ++msgstr "Переместить в корзину" + -+#: fileItem.js:576 -+msgid "Empty Trash" -+msgstr "Opróżnij kosz" ++#: fileItem.js:400 ++msgid "Empty trash" ++msgstr "Очистить корзину" + -+#: fileItem.js:582 ++#: fileItem.js:406 +msgid "Properties" -+msgstr "Właściwości" ++msgstr "Свойства" + -+#: fileItem.js:584 ++#: fileItem.js:408 +msgid "Show in Files" -+msgstr "Wyświetl w menedżerze plików" ++msgstr "Показать в «Файлах»" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 +msgid "Icon size" -+msgstr "Rozmiar ikon" ++msgstr "Размер значков" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:13 +msgid "Set the size for the desktop icons." -+msgstr "Ustawia rozmiar ikon na pulpicie." ++msgstr "Установить размер значков на рабочем столе." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 +msgid "Show personal folder" -+msgstr "Katalog domowy" ++msgstr "Показывать домашнюю папку" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:18 +msgid "Show the personal folder in the desktop." -+msgstr "Wyświetla katalog domowy na pulpicie." ++msgstr "Показывать значок домашней папки на рабочем столе." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 +msgid "Show trash icon" -+msgstr "Kosz" ++msgstr "Показывать значок корзины" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:23 +msgid "Show the trash icon in the desktop." -+msgstr "Wyświetla kosz na pulpicie." -diff --git a/po/pt_BR.po b/po/pt_BR.po -index d029648..77f7a0d 100644 ---- a/po/pt_BR.po -+++ b/po/pt_BR.po -@@ -1,3 +1,5 @@ -+# #-#-#-#-# pt_BR.po (gnome-shell-extensions master) #-#-#-#-# -+# #-#-#-#-# pt_BR.po (gnome-shell-extensions master) #-#-#-#-# - # Brazilian Portuguese translation for gnome-shell-extensions. - # Copyright (C) 2017 gnome-shell-extensions's COPYRIGHT HOLDER - # This file is distributed under the same license as the gnome-shell-extensions package. -@@ -9,8 +11,23 @@ - # Og Maciel , 2012. - # Enrico Nicoletto , 2013, 2014. - # Rafael Fontenelle , 2013, 2017. -+# #-#-#-#-# pt_BR.po (desktop-icons master) #-#-#-#-# -+# Brazilian Portuguese translation for desktop-icons. -+# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER -+# This file is distributed under the same license as the desktop-icons package. -+# Enrico Nicoletto , 2018. -+# Rafael Fontenelle , 2018. -+# #-#-#-#-# pt_BR.po (desktop-icons master) #-#-#-#-# -+# Brazilian Portuguese translation for desktop-icons. -+# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER -+# This file is distributed under the same license as the desktop-icons package. -+# Enrico Nicoletto , 2018. -+# Rafael Fontenelle , 2018. -+#, fuzzy - msgid "" - msgstr "" -+"#-#-#-#-# pt_BR.po (gnome-shell-extensions master) #-#-#-#-#\n" -+"#-#-#-#-# pt_BR.po (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-" - "shell&keywords=I18N+L10N&component=extensions\n" -@@ -25,6 +42,34 @@ msgstr "" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" - "X-Generator: Virtaal 1.0.0-beta1\n" - "X-Project-Style: gnome\n" -+"#-#-#-#-# pt_BR.po (desktop-icons master) #-#-#-#-#\n" -+"Project-Id-Version: desktop-icons master\n" -+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -+"icons/issues\n" -+"POT-Creation-Date: 2018-12-14 09:12+0000\n" -+"PO-Revision-Date: 2018-12-17 01:01-0200\n" -+"Last-Translator: Rafael Fontenelle \n" -+"Language-Team: Brazilian Portuguese \n" -+"Language: pt_BR\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=2; plural=(n > 1);\n" -+"X-Generator: Virtaal 1.0.0-beta1\n" -+"#-#-#-#-# pt_BR.po (desktop-icons master) #-#-#-#-#\n" ++msgstr "Показывать значок корзины на рабочем столе." ++ + #~ msgid "CPU" + #~ msgstr "ЦП" + +diff --git a/po/sv.po b/po/sv.po +index 3aeafac..33eba9f 100644 +--- a/po/sv.po ++++ b/po/sv.po +@@ -1,3 +1,4 @@ ++# #-#-#-#-# sv.po (gnome-shell-extensions) #-#-#-#-# + # Swedish translation for gnome-shell-extensions. + # Copyright © 2011, 2012, 2014, 2015, 2017 Free Software Foundation, Inc. + # This file is distributed under the same license as the gnome-shell-extensions package. +@@ -5,8 +6,17 @@ + # Mattias Eriksson , 2014. + # Anders Jonsson , 2015, 2017. + # ++# #-#-#-#-# sv.po (desktop-icons master) #-#-#-#-# ++# Swedish translation for desktop-icons. ++# Copyright © 2018, 2019 desktop-icons's COPYRIGHT HOLDER ++# This file is distributed under the same license as the desktop-icons package. ++# Anders Jonsson , 2018, 2019. ++# Josef Andersson , 2019. ++# ++#, fuzzy + msgid "" + msgstr "" ++"#-#-#-#-# sv.po (gnome-shell-extensions) #-#-#-#-#\n" + "Project-Id-Version: gnome-shell-extensions\n" + "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" + "shell&keywords=I18N+L10N&component=extensions\n" +@@ -19,6 +29,20 @@ msgstr "" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" + "X-Generator: Poedit 2.0.4\n" ++"#-#-#-#-# sv.po (desktop-icons master) #-#-#-#-#\n" +"Project-Id-Version: desktop-icons master\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" -+"POT-Creation-Date: 2018-12-14 09:12+0000\n" -+"PO-Revision-Date: 2018-12-17 01:01-0200\n" -+"Last-Translator: Rafael Fontenelle \n" -+"Language-Team: Brazilian Portuguese \n" -+"Language: pt_BR\n" ++"POT-Creation-Date: 2019-04-29 14:11+0000\n" ++"PO-Revision-Date: 2019-08-22 17:52+0200\n" ++"Last-Translator: Anders Jonsson \n" ++"Language-Team: Swedish \n" ++"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=2; plural=(n > 1);\n" -+"X-Generator: Virtaal 1.0.0-beta1\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Poedit 2.2.3\n" #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 msgid "GNOME Classic" -@@ -366,6 +411,146 @@ msgstr "Nome" +@@ -355,8 +379,188 @@ msgstr "Namn" msgid "Workspace %d" - msgstr "Espaço de trabalho %d" + msgstr "Arbetsyta %d" -+#: desktopGrid.js:311 -+msgid "Display Settings" -+msgstr "Configurações de exibição" ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "Nytt mappnamn" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 -+msgid "Icon size" -+msgstr "Tamanho do ícone" ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Skapa" + -+#: desktopGrid.js:578 ++#: createFolderDialog.js:74 desktopGrid.js:592 +msgid "Cancel" -+msgstr "Cancelar" ++msgstr "Avbryt" ++ ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "Mappnamn kan inte innehålla ”/”." ++ ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "En mapp kan inte kallas ”.”." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "En mapp kan inte kallas ”..”." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Mappar med ”.” i början på sitt namn är dolda." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Det finns redan en fil eller mapp med det namnet" + +#: prefs.js:102 +msgid "Size for the desktop icons" -+msgstr "Tamanho para os ícones da área de trabalho" ++msgstr "Storlek för skrivbordsikonerna" + +#: prefs.js:102 +msgid "Small" -+msgstr "Pequeno" ++msgstr "Liten" + +#: prefs.js:102 +msgid "Standard" -+msgstr "Padrão" ++msgstr "Standard" + +#: prefs.js:102 +msgid "Large" -+msgstr "Grande" -+ -+#: prefs.js:102 -+msgid "Huge" -+msgstr "Enorme" ++msgstr "Stor" + ++# TODO: *ON* the desktop? +#: prefs.js:103 +msgid "Show the personal folder in the desktop" -+msgstr "Mostrar a pasta pessoal na área de trabalho" ++msgstr "Visa den personliga mappen på skrivbordet" + ++# TODO: *ON* the desktop? +#: prefs.js:104 +msgid "Show the trash icon in the desktop" -+msgstr "Mostrar o ícone da lixeira na área de trabalho" ++msgstr "Visa papperskorgsikonen på skrivbordet" + -+#: desktopGrid.js:182 desktopGrid.js:301 ++#: desktopGrid.js:323 +msgid "New Folder" -+msgstr "Nova pasta" ++msgstr "Ny mapp" + -+#: desktopGrid.js:303 ++#: desktopGrid.js:325 +msgid "Paste" -+msgstr "Colar" ++msgstr "Klistra in" + -+#: desktopGrid.js:304 ++#: desktopGrid.js:326 +msgid "Undo" -+msgstr "Desfazer" ++msgstr "Ångra" + -+#: desktopGrid.js:305 ++#: desktopGrid.js:327 +msgid "Redo" -+msgstr "Refazer" ++msgstr "Gör om" + -+#: desktopGrid.js:307 -+msgid "Open Desktop in Files" -+msgstr "Abrir área de trabalho no Arquivos" ++#: desktopGrid.js:329 ++msgid "Show Desktop in Files" ++msgstr "Visa skrivbord i Filer" + -+#: desktopGrid.js:308 -+msgid "Open Terminal" -+msgstr "Abrir terminal" ++#: desktopGrid.js:330 fileItem.js:610 ++msgid "Open in Terminal" ++msgstr "Öppna i terminal" + -+#: desktopGrid.js:310 ++#: desktopGrid.js:332 +msgid "Change Background…" -+msgstr "Alterar plano de fundo…" ++msgstr "Ändra bakgrund…" + -+#: desktopGrid.js:312 ++#: desktopGrid.js:334 ++msgid "Display Settings" ++msgstr "Visningsinställningar" ++ ++#: desktopGrid.js:335 +msgid "Settings" -+msgstr "Configurações" ++msgstr "Inställningar" + -+#: desktopGrid.js:568 ++#: desktopGrid.js:582 +msgid "Enter file name…" -+msgstr "Insira um nome de arquivo…" ++msgstr "Ange filnamn…" + -+#: desktopGrid.js:572 ++#: desktopGrid.js:586 +msgid "OK" +msgstr "OK" + -+#: fileItem.js:485 ++#: desktopIconsUtil.js:61 ++msgid "Command not found" ++msgstr "Kommandot hittades inte" ++ ++#: fileItem.js:494 +msgid "Don’t Allow Launching" -+msgstr "Não permitir iniciar" ++msgstr "Tillåt ej programstart" + -+#: fileItem.js:487 ++#: fileItem.js:496 +msgid "Allow Launching" -+msgstr "Permitir iniciar" ++msgstr "Tillåt programstart" + -+#: fileItem.js:550 ++#: fileItem.js:578 +msgid "Open" -+msgstr "Abrir" ++msgstr "Öppna" + -+#: fileItem.js:553 ++#: fileItem.js:582 ++msgid "Open With Other Application" ++msgstr "Öppna med annat program" ++ ++#: fileItem.js:586 +msgid "Cut" -+msgstr "Recortar" ++msgstr "Klipp ut" + -+#: fileItem.js:554 ++#: fileItem.js:587 +msgid "Copy" -+msgstr "Copiar" ++msgstr "Kopiera" + -+#: fileItem.js:556 -+msgid "Rename" -+msgstr "Renomear" ++#: fileItem.js:589 ++msgid "Rename…" ++msgstr "Byt namn…" + -+#: fileItem.js:557 ++#: fileItem.js:590 +msgid "Move to Trash" -+msgstr "Mover para a lixeira" ++msgstr "Flytta till papperskorgen" + -+#: fileItem.js:567 ++#: fileItem.js:600 +msgid "Empty Trash" -+msgstr "Esvaziar lixeira" ++msgstr "Töm papperskorgen" + -+#: fileItem.js:573 ++#: fileItem.js:606 +msgid "Properties" -+msgstr "Propriedades" ++msgstr "Egenskaper" + -+#: fileItem.js:575 ++#: fileItem.js:608 +msgid "Show in Files" -+msgstr "Mostrar no Arquivos" ++msgstr "Visa i Filer" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:13 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 ++msgid "Icon size" ++msgstr "Ikonstorlek" ++ ++# TODO: *ON* the desktop? ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 +msgid "Set the size for the desktop icons." -+msgstr "Define o tamanho para os ícones da área de trabalho." ++msgstr "Ställ in storleken för skrivbordsikonerna." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 +msgid "Show personal folder" -+msgstr "Mostrar pasta pessoal" ++msgstr "Visa personlig mapp" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:18 ++# TODO: *ON* the desktop? ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 +msgid "Show the personal folder in the desktop." -+msgstr "Mostra a pasta pessoal na área de trabalho." ++msgstr "Visa den personliga mappen på skrivbordet." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 +msgid "Show trash icon" -+msgstr "Mostrar ícone da lixeira" ++msgstr "Visa papperskorgsikon" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:23 ++# TODO: *ON* the desktop? ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 +msgid "Show the trash icon in the desktop." -+msgstr "Mostra o ícone da lixeira na área de trabalho." ++msgstr "Visa papperskorgsikonen på skrivbordet." + #~ msgid "CPU" #~ msgstr "CPU" -@@ -414,9 +599,6 @@ msgstr "Espaço de trabalho %d" - #~ msgid "Display" - #~ msgstr "Tela" - --#~ msgid "Display Settings" --#~ msgstr "Configurações de tela" -- - #~ msgid "The application icon mode." - #~ msgstr "O modo de ícone do aplicativo." - -@@ -451,9 +633,6 @@ msgstr "Espaço de trabalho %d" - #~ "Define a posição do dock na tela. Os valores permitidos são \"right\" ou " - #~ "\"left\"" - --#~ msgid "Icon size" --#~ msgstr "Tamanho do ícone" -- - #~ msgid "Sets icon size of the dock." - #~ msgstr "Define o tamanho do ícone do dock." - -@@ -613,9 +792,6 @@ msgstr "Espaço de trabalho %d" - #~ msgid "Alt Tab Behaviour" - #~ msgstr "Comportamento do Alt Tab" - --#~ msgid "Cancel" --#~ msgstr "Cancelar" -- - #~ msgid "Ask the user for a default behaviour if true." - #~ msgstr "Pergunte ao usuário por um comportamento padrão se marcado." - -@@ -639,3 +815,6 @@ msgstr "Espaço de trabalho %d" - - #~ msgid "Log Out..." - #~ msgstr "Encerrar sessão..." + #~ msgid "Memory" + #~ msgstr "Minne" + -+#~ msgid "Ok" -+#~ msgstr "Ok" -diff --git a/po/ru.po b/po/ru.po -index c18c0ba..5e48a26 100644 ---- a/po/ru.po -+++ b/po/ru.po -@@ -1,11 +1,28 @@ -+# #-#-#-#-# ru.po (gnome-shell-extensions gnome-3-0) #-#-#-#-# -+# #-#-#-#-# ru.po (gnome-shell-extensions gnome-3-0) #-#-#-#-# - # Russian translation for gnome-shell-extensions. - # Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER ++#~ msgid "Huge" ++#~ msgstr "Enorm" +diff --git a/po/tr.po b/po/tr.po +index 6243374..30ceafa 100644 +--- a/po/tr.po ++++ b/po/tr.po +@@ -1,3 +1,4 @@ ++# #-#-#-#-# tr.po (gnome-shell-extensions master) #-#-#-#-# + # Turkish translation for gnome-shell-extensions. + # Copyright (C) 2012 gnome-shell-extensions's COPYRIGHT HOLDER # This file is distributed under the same license as the gnome-shell-extensions package. - # Yuri Myasoedov , 2011, 2012, 2013. - # Stas Solovey , 2011, 2012, 2013, 2015, 2017. +@@ -7,8 +8,19 @@ + # Muhammet Kara , 2013, 2014, 2015. + # Furkan Tokaç , 2017. # -+# #-#-#-#-# ru.po #-#-#-#-# -+# SOME DESCRIPTIVE TITLE. -+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -+# This file is distributed under the same license as the PACKAGE package. -+# Eaglers , 2018. ++# #-#-#-#-# tr.po #-#-#-#-# ++# Turkish translation for desktop-icons. ++# Copyright (C) 2000-2019 desktop-icons's COPYRIGHT HOLDER ++# This file is distributed under the same license as the desktop-icons package. +# -+# #-#-#-#-# ru.po #-#-#-#-# -+# SOME DESCRIPTIVE TITLE. -+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -+# This file is distributed under the same license as the PACKAGE package. -+# Eaglers , 2018. ++# Sabri Ünal , 2019. ++# Serdar Sağlam , 2019 ++# Emin Tufan Çetin , 2019. +# +#, fuzzy msgid "" msgstr "" -+"#-#-#-#-# ru.po (gnome-shell-extensions gnome-3-0) #-#-#-#-#\n" -+"#-#-#-#-# ru.po (gnome-shell-extensions gnome-3-0) #-#-#-#-#\n" - "Project-Id-Version: gnome-shell-extensions gnome-3-0\n" ++"#-#-#-#-# tr.po (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-" "shell&keywords=I18N+L10N&component=extensions\n" -@@ -20,6 +37,36 @@ msgstr "" - "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.0.3\n" -+"#-#-#-#-# ru.po #-#-#-#-#\n" -+"Project-Id-Version: \n" -+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -+"icons/issues\n" -+"POT-Creation-Date: 2018-11-22 08:42+0000\n" -+"PO-Revision-Date: 2018-11-22 22:02+0300\n" -+"Last-Translator: Stas Solovey \n" -+"Language-Team: Russian \n" -+"Language: ru\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"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.2\n" -+"#-#-#-#-# ru.po #-#-#-#-#\n" +@@ -22,6 +34,20 @@ msgstr "" + "Content-Transfer-Encoding: 8bit\n" + "Plural-Forms: nplurals=1; plural=0;\n" + "X-Generator: Gtranslator 2.91.7\n" ++"#-#-#-#-# tr.po #-#-#-#-#\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" -+"POT-Creation-Date: 2018-11-22 08:42+0000\n" -+"PO-Revision-Date: 2018-11-22 22:02+0300\n" -+"Last-Translator: Stas Solovey \n" -+"Language-Team: Russian \n" -+"Language: ru\n" ++"POT-Creation-Date: 2019-03-09 14:47+0000\n" ++"PO-Revision-Date: 2019-03-13 13:43+0300\n" ++"Last-Translator: Emin Tufan Çetin \n" ++"Language-Team: Türkçe \n" ++"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"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.2\n" ++"X-Generator: Gtranslator 3.30.1\n" ++"Plural-Forms: nplurals=1; plural=0;\n" #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 msgid "GNOME Classic" -@@ -360,6 +407,138 @@ msgstr "Название" +@@ -362,6 +388,174 @@ msgstr "İsim" msgid "Workspace %d" - msgstr "Рабочая область %d" + msgstr "Çalışma Alanı %d" -+#: prefs.js:89 ++#: createFolderDialog.js:48 ++msgid "New folder name" ++msgstr "Yeni klasör adı" ++ ++#: createFolderDialog.js:72 ++msgid "Create" ++msgstr "Oluştur" ++ ++#: createFolderDialog.js:74 desktopGrid.js:586 ++msgid "Cancel" ++msgstr "İptal" ++ ++#: createFolderDialog.js:145 ++msgid "Folder names cannot contain “/”." ++msgstr "Klasör adları “/” içeremez." ++ ++#: createFolderDialog.js:148 ++msgid "A folder cannot be called “.”." ++msgstr "Bir klasör “.” olarak adlandırılamaz." ++ ++#: createFolderDialog.js:151 ++msgid "A folder cannot be called “..”." ++msgstr "Bir klasör “..” olarak adlandırılamaz." ++ ++#: createFolderDialog.js:153 ++msgid "Folders with “.” at the beginning of their name are hidden." ++msgstr "Adlarının başında “.” bulunan klasörler gizlenir." ++ ++#: createFolderDialog.js:155 ++msgid "There is already a file or folder with that name." ++msgstr "Zaten bu adda bir dosya veya klasör var." ++ ++#: prefs.js:102 +msgid "Size for the desktop icons" -+msgstr "Размер значков" ++msgstr "Masaüstü simgeleri boyutu" + -+#: prefs.js:89 ++#: prefs.js:102 +msgid "Small" -+msgstr "Маленький" ++msgstr "Küçük" + -+#: prefs.js:89 ++#: prefs.js:102 +msgid "Standard" -+msgstr "Стандартный" ++msgstr "Standart" + -+#: prefs.js:89 ++#: prefs.js:102 +msgid "Large" -+msgstr "Большой" -+ -+#: prefs.js:89 -+msgid "Huge" -+msgstr "Огромный" ++msgstr "Büyük" + -+#: prefs.js:90 ++#: prefs.js:103 +msgid "Show the personal folder in the desktop" -+msgstr "Показывать домашнюю папку на рабочем столе" ++msgstr "Kişisel klasörü masaüstünde göster" + -+#: prefs.js:91 ++#: prefs.js:104 +msgid "Show the trash icon in the desktop" -+msgstr "Показывать «Корзину» на рабочем столе" ++msgstr "Çöp kutusunu masaüstünde göster" + -+#: desktopGrid.js:185 desktopGrid.js:304 ++#: desktopGrid.js:320 +msgid "New Folder" -+msgstr "Создать папку" ++msgstr "Yeni Klasör" + -+#: desktopGrid.js:306 ++#: desktopGrid.js:322 +msgid "Paste" -+msgstr "Вставить" ++msgstr "Yapıştır" + -+#: desktopGrid.js:307 ++#: desktopGrid.js:323 +msgid "Undo" -+msgstr "Отменить" ++msgstr "Geri Al" + -+#: desktopGrid.js:308 ++#: desktopGrid.js:324 +msgid "Redo" -+msgstr "Повторить" ++msgstr "Yinele" + -+#: desktopGrid.js:310 -+msgid "Open Desktop in Files" -+msgstr "Открыть «Рабочий стол» в «Файлах»" ++#: desktopGrid.js:326 ++msgid "Show Desktop in Files" ++msgstr "Masaüstünü Dosyalarʼda Göster" + -+#: desktopGrid.js:311 -+msgid "Open Terminal" -+msgstr "Открыть терминал" ++#: desktopGrid.js:327 fileItem.js:606 ++msgid "Open in Terminal" ++msgstr "Uçbirimde Aç" + -+#: desktopGrid.js:313 ++#: desktopGrid.js:329 +msgid "Change Background…" -+msgstr "Изменить фон…" ++msgstr "Arka Planı Değiştir…" + -+#: desktopGrid.js:314 ++#: desktopGrid.js:331 +msgid "Display Settings" -+msgstr "Настройки дисплея" ++msgstr "Görüntü Ayarları" + -+#: desktopGrid.js:315 ++#: desktopGrid.js:332 +msgid "Settings" -+msgstr "Параметры" ++msgstr "Ayarlar" + -+#: desktopGrid.js:569 ++#: desktopGrid.js:576 +msgid "Enter file name…" -+msgstr "Ввести имя файла…" ++msgstr "Dosya adını gir…" + -+#: desktopGrid.js:573 -+msgid "Ok" -+msgstr "ОК" ++#: desktopGrid.js:580 ++msgid "OK" ++msgstr "Tamam" + -+#: desktopGrid.js:579 -+msgid "Cancel" -+msgstr "Отмена" ++#: fileItem.js:490 ++msgid "Don’t Allow Launching" ++msgstr "Başlatmaya İzin Verme" + -+#: fileItem.js:390 ++#: fileItem.js:492 ++msgid "Allow Launching" ++msgstr "Başlatmaya İzin Ver" ++ ++#: fileItem.js:574 +msgid "Open" -+msgstr "Открыть" ++msgstr "Aç" + -+#: fileItem.js:393 ++#: fileItem.js:578 ++msgid "Open With Other Application" ++msgstr "Başka Uygulamayla Aç" ++ ++#: fileItem.js:582 +msgid "Cut" -+msgstr "Вырезать" ++msgstr "Kes" + -+#: fileItem.js:394 ++#: fileItem.js:583 +msgid "Copy" -+msgstr "Вставить" ++msgstr "Kopyala" + -+#: fileItem.js:395 -+msgid "Rename" -+msgstr "Переименовать" ++#: fileItem.js:585 ++msgid "Rename…" ++msgstr "Yeniden Adlandır…" + -+#: fileItem.js:396 ++#: fileItem.js:586 +msgid "Move to Trash" -+msgstr "Переместить в корзину" ++msgstr "Çöpe Taşı" + -+#: fileItem.js:400 -+msgid "Empty trash" -+msgstr "Очистить корзину" ++#: fileItem.js:596 ++msgid "Empty Trash" ++msgstr "Çöpü Boşalt" + -+#: fileItem.js:406 ++#: fileItem.js:602 +msgid "Properties" -+msgstr "Свойства" ++msgstr "Özellikler" + -+#: fileItem.js:408 ++#: fileItem.js:604 +msgid "Show in Files" -+msgstr "Показать в «Файлах»" ++msgstr "Dosyalarʼda Göster" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 +msgid "Icon size" -+msgstr "Размер значков" ++msgstr "Simge boyutu" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:13 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 +msgid "Set the size for the desktop icons." -+msgstr "Установить размер значков на рабочем столе." ++msgstr "Masaüstü simgelerinin boyutunu ayarla." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 +msgid "Show personal folder" -+msgstr "Показывать домашнюю папку" ++msgstr "Kişisel klasörü göster" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:18 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 +msgid "Show the personal folder in the desktop." -+msgstr "Показывать значок домашней папки на рабочем столе." ++msgstr "Kişisel klasörü masaüstünde göster." + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 +msgid "Show trash icon" -+msgstr "Показывать значок корзины" ++msgstr "Çöp kutusunu göster" + -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:23 ++#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 +msgid "Show the trash icon in the desktop." -+msgstr "Показывать значок корзины на рабочем столе." ++msgstr "Çöp kutusu simgesini masaüstünde göster." + #~ msgid "CPU" - #~ msgstr "ЦП" + #~ msgstr "İşlemci" diff --git a/po/zh_TW.po b/po/zh_TW.po -index 74a95f8..8a675aa 100644 +index 74a95f8..fa5ba9b 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po -@@ -1,10 +1,27 @@ -+# #-#-#-#-# zh_TW.po (gnome-shell-extensions gnome-3-0) #-#-#-#-# +@@ -1,10 +1,19 @@ +# #-#-#-#-# zh_TW.po (gnome-shell-extensions gnome-3-0) #-#-#-#-# # Chinese (Taiwan) translation for gnome-shell-extensions. # Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER @@ -24215,21 +26562,14 @@ index 74a95f8..8a675aa 100644 +# This file is distributed under the same license as the desktop-icons package. +# Yi-Jyun Pan , 2018. +# -+# #-#-#-#-# zh_TW.po (desktop-icons master) #-#-#-#-# -+# Chinese (Taiwan) translation for desktop-icons. -+# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER -+# This file is distributed under the same license as the desktop-icons package. -+# Yi-Jyun Pan , 2018. -+# +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# zh_TW.po (gnome-shell-extensions gnome-3-0) #-#-#-#-#\n" -+"#-#-#-#-# zh_TW.po (gnome-shell-extensions gnome-3-0) #-#-#-#-#\n" "Project-Id-Version: gnome-shell-extensions gnome-3-0\n" "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "shell&keywords=I18N+L10N&component=extensions\n" -@@ -17,6 +34,32 @@ msgstr "" +@@ -17,6 +26,19 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.0.3\n" @@ -24246,29 +26586,21 @@ index 74a95f8..8a675aa 100644 +"Content-Transfer-Encoding: 8bit\n" +"Last-Translator: pan93412 \n" +"X-Generator: Poedit 2.2\n" -+"#-#-#-#-# zh_TW.po (desktop-icons master) #-#-#-#-#\n" -+"Project-Id-Version: desktop-icons master\n" -+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -+"icons/issues\n" -+"POT-Creation-Date: 2018-10-22 14:12+0000\n" -+"PO-Revision-Date: 2018-10-24 21:31+0800\n" -+"Language-Team: Chinese (Taiwan) \n" -+"Language: zh_TW\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Last-Translator: pan93412 \n" -+"X-Generator: Poedit 2.2\n" #: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3 msgid "GNOME Classic" -@@ -344,6 +387,122 @@ msgstr "名稱" +@@ -344,6 +366,127 @@ msgstr "名稱" msgid "Workspace %d" msgstr "工作區 %d" +#: desktopGrid.js:307 ++#, fuzzy +msgid "Display Settings" -+msgstr "顯示設定" ++msgstr "" ++"#-#-#-#-# zh_TW.po (gnome-shell-extensions gnome-3-0) #-#-#-#-#\n" ++"顯示設定值\n" ++"#-#-#-#-# zh_TW.po (desktop-icons master) #-#-#-#-#\n" ++"顯示設定" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 +msgid "Icon size" @@ -24385,7 +26717,7 @@ index 74a95f8..8a675aa 100644 #~ msgid "CPU" #~ msgstr "CPU" -@@ -371,9 +530,6 @@ msgstr "工作區 %d" +@@ -371,9 +514,6 @@ msgstr "工作區 %d" #~ msgid "Display" #~ msgstr "顯示" @@ -24395,7 +26727,7 @@ index 74a95f8..8a675aa 100644 #~ msgid "Suspend" #~ msgstr "暫停" -@@ -481,9 +637,6 @@ msgstr "工作區 %d" +@@ -481,9 +621,6 @@ msgstr "工作區 %d" #~ msgid "Enable/disable autohide" #~ msgstr "啟用/停用自動隱藏" @@ -24406,5 +26738,5 @@ index 74a95f8..8a675aa 100644 #~ msgstr "Dock 的位置" -- -2.21.0 +2.21.1 diff --git a/SPECS/gnome-shell-extensions.spec b/SPECS/gnome-shell-extensions.spec index aae545a..659ce07 100644 --- a/SPECS/gnome-shell-extensions.spec +++ b/SPECS/gnome-shell-extensions.spec @@ -6,7 +6,7 @@ Name: gnome-shell-extensions Version: 3.32.1 -Release: 11%{?dist} +Release: 14%{?dist} Summary: Modify and extend GNOME Shell functionality and behavior Group: User Interface/Desktops @@ -36,6 +36,9 @@ Patch0007: more-classic-classic-mode.patch Patch0008: 0001-apps-menu-Add-missing-chain-up.patch Patch0009: 0001-dashToDock-Handle-no-overview-case.patch Patch0010: 0001-window-list-Invalid-current-mode-selected-in-Prefere.patch +Patch0011: 0001-Update-desktop-icons-gettext-domain.patch +Patch0012: 0001-desktop-icons-Update-Japanese-translation.patch +Patch0013: 0001-fileItem-Ignore-double-click-distance-clicking-on-it.patch %description GNOME Shell Extensions is a collection of extensions providing additional and @@ -469,6 +472,18 @@ cp $RPM_SOURCE_DIR/gnome-classic.desktop $RPM_BUILD_ROOT%{_datadir}/xsessions %changelog +* Wed Jan 27 2021 Carlos Garnacho - 3.32.1-14 +- Use same logic than Nautilus for double click/tap in desktop-icons extension + Resolves: #1842229 + +* Wed Jan 27 2021 Florian Müllner - 3.32.1-13 +- Update Japanese translation + Related: #1865718 + +* Sat Oct 24 2020 Florian Müllner - 3.32.1-12 +- Adjust gettext locale in desktop-icons extension + Resolves: #1865718 + * Thu Apr 30 2020 Florian Müllner - 3.32.1-11 - Adjust dash-to-dock for classic backports Resolves: #1805929