diff -Nru gnome-shell-extension-desktop-icons-20.04.0/createFolderDialog.js gnome-shell-extension-desktop-icons-20.04.0+git20200908/createFolderDialog.js --- gnome-shell-extension-desktop-icons-20.04.0/createFolderDialog.js 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/createFolderDialog.js 2020-09-08 08:05:17.000000000 +0000 @@ -70,7 +70,7 @@ label: _('Create') }); this.addButton({ action: this.close.bind(this), label: _('Cancel'), - key: Clutter.Escape }); + key: Clutter.KEY_Escape }); this._onTextChanged(); } diff -Nru gnome-shell-extension-desktop-icons-20.04.0/dbusUtils.js gnome-shell-extension-desktop-icons-20.04.0+git20200908/dbusUtils.js --- gnome-shell-extension-desktop-icons-20.04.0/dbusUtils.js 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/dbusUtils.js 2020-09-08 08:05:17.000000000 +0000 @@ -2,6 +2,7 @@ const GLib = imports.gi.GLib; var NautilusFileOperationsProxy; var FreeDesktopFileManagerProxy; +var GnomeNautilusPreviewerProxy; const NautilusFileOperationsInterface = ` @@ -50,6 +51,18 @@ const FreeDesktopFileManagerProxyInterface = Gio.DBusProxy.makeProxyWrapper(FreeDesktopFileManagerInterface); +const GnomeNautilusPreviewerInterface = ` + + + + + + + +`; + +const GnomeNautilusPreviewerProxyInterface = Gio.DBusProxy.makeProxyWrapper(GnomeNautilusPreviewerInterface); + function init() { NautilusFileOperationsProxy = new NautilusFileOperationsProxyInterface( Gio.DBus.session, @@ -72,6 +85,17 @@ } } ); + + GnomeNautilusPreviewerProxy = new GnomeNautilusPreviewerProxyInterface( + Gio.DBus.session, + 'org.gnome.NautilusPreviewer', + '/org/gnome/NautilusPreviewer', + (proxy, error) => { + if (error) { + log('Error connecting to Nautilus Previewer'); + } + } + ); } function openFileWithOtherApplication(filePath) { diff -Nru gnome-shell-extension-desktop-icons-20.04.0/debian/changelog gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/changelog --- gnome-shell-extension-desktop-icons-20.04.0/debian/changelog 2020-04-16 07:10:08.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/changelog 2021-03-11 22:37:09.000000000 +0000 @@ -1,3 +1,73 @@ +gnome-shell-extension-desktop-icons (20.04.0+git20200908-5+zorin1) focal; urgency=medium + + * Uploaded to the Zorin OS 16 repositories + + -- Artyom Zorin Thu, 11 Mar 2021 22:37:09 +0000 + +gnome-shell-extension-desktop-icons (20.04.0+git20200908-5) unstable; urgency=medium + + [ Daniel van Vugt ] + * Add fix-lp1898462.patch to fix broken drag-and-drop (LP: #1898462) + + [ Iain Lane ] + * Rename fix-*.patch to more descriptive names following their commit + subjects + + -- Iain Lane Mon, 07 Dec 2020 18:16:04 +0000 + +gnome-shell-extension-desktop-icons (20.04.0+git20200908-4) unstable; urgency=medium + + * Add fix-lp1898462.patch to fix broken drag-and-drop (LP: #1898462). + + -- Daniel van Vugt Mon, 07 Dec 2020 16:10:42 +0800 + +gnome-shell-extension-desktop-icons (20.04.0+git20200908-3) unstable; urgency=medium + + * Add fix-lp1898005.patch to fix crashes in st_bin_destroy (LP: #1898005). + + -- Daniel van Vugt Fri, 27 Nov 2020 15:50:56 +0800 + +gnome-shell-extension-desktop-icons (20.04.0+git20200908-2) unstable; urgency=medium + + * Upload to unstable + + -- Marco Trevisan (Treviño) Sun, 27 Sep 2020 17:08:39 +0200 + +gnome-shell-extension-desktop-icons (20.04.0+git20200908-1) experimental; urgency=medium + + * New upstream git snapshot: + - Fix image icons aspect ratio + - Fix Switcheroo controls + - Translations updates + * debian/control: + - Bump dependency on gnome-shell 3.37 + * debian/patches: + - Add support for gnome-shell 3.38: + + d/p/cleanup-Use-template-strings-to-write-in-logs.patch + + d/p/createFolderDialog-Port-to-use-new-shell-dialog-APIs.patch + + d/p/desktopManager-Use-Shell-s-native-switcheroo-controller.patch + + d/p/metadata-Bump-dependency-on-gnome-shell-3.38.patch + - Dropped applied patches upstream + + -- Marco Trevisan (Treviño) Thu, 10 Sep 2020 06:36:24 +0200 + +gnome-shell-extension-desktop-icons (20.04.0-3) unstable; urgency=medium + + * d/p/Fix-incorrect-aspect-ratio.patch, + d/p/desktopGrid.js-fix-errors-when-screen-size-changes.patch: + - Fix incorrect icon aspect ratio (LP: #1880031) + + -- Marco Trevisan (Treviño) Tue, 21 Jul 2020 18:16:08 +0200 + +gnome-shell-extension-desktop-icons (20.04.0-2) unstable; urgency=medium + + * debian/patches: Update translations from git + * fileItem.js: unselect a file with Ctrl or Shift (LP: #1845491) + * general: Fix key symbols (LP: #1844808) + * fileItem.js: Refresh thumbnails if file changes (LP: #1879375) + + -- Marco Trevisan (Treviño) Mon, 18 May 2020 20:32:21 +0200 + gnome-shell-extension-desktop-icons (20.04.0-1) unstable; urgency=medium * New upstream (bugfix) release diff -Nru gnome-shell-extension-desktop-icons-20.04.0/debian/control gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/control --- gnome-shell-extension-desktop-icons-20.04.0/debian/control 2020-04-16 07:10:08.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/control 2021-03-11 22:37:09.000000000 +0000 @@ -20,7 +20,7 @@ Package: gnome-shell-extension-desktop-icons Architecture: all Depends: ${misc:Depends}, - gnome-shell (>= 3.33), + gnome-shell (>= 3.37), gjs, nautilus (>= 3.30.4), xdg-desktop-portal diff -Nru gnome-shell-extension-desktop-icons-20.04.0/debian/control.in gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/control.in --- gnome-shell-extension-desktop-icons-20.04.0/debian/control.in 2020-04-16 07:10:08.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/control.in 2020-12-07 18:16:04.000000000 +0000 @@ -16,7 +16,7 @@ Package: gnome-shell-extension-desktop-icons Architecture: all Depends: ${misc:Depends}, - gnome-shell (>= 3.33), + gnome-shell (>= 3.37), gjs, nautilus (>= 3.30.4), xdg-desktop-portal diff -Nru gnome-shell-extension-desktop-icons-20.04.0/debian/patches/Add-Persian-translation.patch gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/Add-Persian-translation.patch --- gnome-shell-extension-desktop-icons-20.04.0/debian/patches/Add-Persian-translation.patch 2020-04-16 07:10:08.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/Add-Persian-translation.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,216 +0,0 @@ -From: Danial Behzadi -Date: Mon, 6 Apr 2020 20:22:46 +0200 -Subject: Add Persian translation - -https://gitlab.gnome.org/World/ShellExtensions/desktop-icons/-/commit/10f2fbb5 ---- - po/LINGUAS | 1 + - po/fa.po | 187 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 188 insertions(+) - create mode 100644 po/fa.po - -diff --git a/po/LINGUAS b/po/LINGUAS -index 67c633a..efe114e 100644 ---- a/po/LINGUAS -+++ b/po/LINGUAS -@@ -6,6 +6,7 @@ el - en_GB - es - eu -+fa - fi - fr - fur -diff --git a/po/fa.po b/po/fa.po -new file mode 100644 -index 0000000..4538923 ---- /dev/null -+++ b/po/fa.po -@@ -0,0 +1,187 @@ -+# Persian translation for desktop-icons. -+# Copyright (C) 2020 desktop-icons's COPYRIGHT HOLDER -+# This file is distributed under the same license as the desktop-icons package. -+# Danial Behzadi , 2020. -+# -+msgid "" -+msgstr "" -+"Project-Id-Version: desktop-icons master\n" -+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -+"icons/issues\n" -+"POT-Creation-Date: 2020-04-06 14:18+0000\n" -+"PO-Revision-Date: 2020-04-06 18:21+0000\n" -+"Language-Team: Persian \n" -+"Language: fa\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Last-Translator: \n" -+"X-Generator: Poedit 2.3\n" -+ -+#: createFolderDialog.js:46 -+msgid "New folder name" -+msgstr "نام شاخهٔ جدید" -+ -+#: createFolderDialog.js:70 -+msgid "Create" -+msgstr "ایجاد" -+ -+#: createFolderDialog.js:72 -+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:343 -+msgid "New Folder" -+msgstr "شاخه جدید" -+ -+#: desktopGrid.js:345 -+msgid "Paste" -+msgstr "چسباندن" -+ -+#: desktopGrid.js:346 -+msgid "Undo" -+msgstr "برگردان" -+ -+#: desktopGrid.js:347 -+msgid "Redo" -+msgstr "انجام دوباره" -+ -+#: desktopGrid.js:349 -+msgid "Show Desktop in Files" -+msgstr "نمایش میزکار در پرونده‌ها" -+ -+#: desktopGrid.js:350 fileItem.js:651 -+msgid "Open in Terminal" -+msgstr "گشودن در پایانه" -+ -+#: desktopGrid.js:352 -+msgid "Change Background…" -+msgstr "تغییر پس‌زمینه…" -+ -+#: desktopGrid.js:354 -+msgid "Display Settings" -+msgstr "تنظیمات نمایشگر" -+ -+#: desktopGrid.js:355 -+msgid "Settings" -+msgstr "تنظیمات" -+ -+#: desktopGrid.js:653 -+msgid "Rename" -+msgstr "تغییر نام" -+ -+#: desktopIconsUtil.js:61 -+msgid "Command not found" -+msgstr "فرمان پیدا نشد" -+ -+#: fileItem.js:521 -+msgid "Don’t Allow Launching" -+msgstr "اجازه ندادن به اجرا" -+ -+#: fileItem.js:523 -+msgid "Allow Launching" -+msgstr "اجازهٔ اجرا" -+ -+#: fileItem.js:619 -+msgid "Open" -+msgstr "گشودن" -+ -+#: fileItem.js:623 -+msgid "Open With Other Application" -+msgstr "گشودن با برنامه‌ای دیگر" -+ -+#: fileItem.js:627 -+msgid "Cut" -+msgstr "برش" -+ -+#: fileItem.js:628 -+msgid "Copy" -+msgstr "رونوشت" -+ -+#: fileItem.js:630 -+msgid "Rename…" -+msgstr "تغییر نام…" -+ -+#: fileItem.js:631 -+msgid "Move to Trash" -+msgstr "انداختن در زباله‌دان" -+ -+#: fileItem.js:641 -+msgid "Empty Trash" -+msgstr "خالی کردن زباله‌دان" -+ -+#: fileItem.js:647 -+msgid "Properties" -+msgstr "ویژگی‌ها" -+ -+#: fileItem.js:649 -+msgid "Show in Files" -+msgstr "نمایش در پرونده‌ها" -+ -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 -+msgid "Icon size" -+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 "نمایش نقشک زباله‌دان در میزکار." diff -Nru gnome-shell-extension-desktop-icons-20.04.0/debian/patches/cleanup-Use-template-strings-to-write-in-logs.patch gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/cleanup-Use-template-strings-to-write-in-logs.patch --- gnome-shell-extension-desktop-icons-20.04.0/debian/patches/cleanup-Use-template-strings-to-write-in-logs.patch 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/cleanup-Use-template-strings-to-write-in-logs.patch 2020-12-07 18:16:04.000000000 +0000 @@ -0,0 +1,39 @@ +From: =?utf-8?b?Ik1hcmNvIFRyZXZpc2FuIChUcmV2acOxbyki?= +Date: Thu, 10 Sep 2020 05:44:04 +0200 +Subject: cleanup: Use template strings to write in logs + +Otherwise new shell will complain about the multiple arguments + +Origin: https://gitlab.gnome.org/World/ShellExtensions/desktop-icons/-/merge_requests/190 +Forwarded: yes +--- + desktopManager.js | 2 +- + fileItem.js | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/desktopManager.js b/desktopManager.js +index 249ce7f..2d0a000 100644 +--- a/desktopManager.js ++++ b/desktopManager.js +@@ -302,7 +302,7 @@ var DesktopManager = GObject.registerClass({ + this._fileItems = tmpFileItems; + } catch (e) { + if (!e.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED)) +- log(`Error loading desktop files ${e.message}`); ++ log(`Error loading desktop files ${e.message}`, logError(e)); + return; + } + +diff --git a/fileItem.js b/fileItem.js +index 8752688..832599d 100644 +--- a/fileItem.js ++++ b/fileItem.js +@@ -836,7 +836,7 @@ var FileItem = GObject.registerClass({ + let [success, info] = source.set_attributes_finish(result); + } catch (error) { + if (!error.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED)) +- log('Error setting metadata to desktop files ', error); ++ log(`Error setting metadata to desktop files ${error}`); + } + } + diff -Nru gnome-shell-extension-desktop-icons-20.04.0/debian/patches/createFolderDialog-Port-to-use-new-shell-dialog-APIs.patch gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/createFolderDialog-Port-to-use-new-shell-dialog-APIs.patch --- gnome-shell-extension-desktop-icons-20.04.0/debian/patches/createFolderDialog-Port-to-use-new-shell-dialog-APIs.patch 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/createFolderDialog-Port-to-use-new-shell-dialog-APIs.patch 2020-12-07 18:16:04.000000000 +0000 @@ -0,0 +1,88 @@ +From: =?utf-8?b?Ik1hcmNvIFRyZXZpc2FuIChUcmV2acOxbyki?= +Date: Thu, 10 Sep 2020 05:53:52 +0200 +Subject: createFolderDialog: Port to use new shell dialog APIs + +Old classes are gone, we need to follow this new pattern now + +Origin: https://gitlab.gnome.org/World/ShellExtensions/desktop-icons/-/merge_requests/190 +Forwarded: ye +--- + createFolderDialog.js | 34 ++++++++++++++++++---------------- + stylesheet.css | 4 ---- + 2 files changed, 18 insertions(+), 20 deletions(-) + +diff --git a/createFolderDialog.js b/createFolderDialog.js +index ca2656e..fddcdc9 100644 +--- a/createFolderDialog.js ++++ b/createFolderDialog.js +@@ -16,7 +16,7 @@ + * along with this program. If not, see . + */ + +-const { Clutter, GObject, GLib, Gio, St } = imports.gi; ++const { Clutter, GObject, GLib, Gio, Pango, St } = imports.gi; + + const Signals = imports.signals; + +@@ -42,29 +42,31 @@ var CreateFolderDialog = GObject.registerClass({ + _init() { + super._init({ styleClass: 'create-folder-dialog' }); + +- let label = new St.Label({ style_class: 'create-folder-dialog-label', +- text: _('New folder name') }); +- this.contentLayout.add(label, { x_align: St.Align.START }); ++ let dialogContent = new Dialog.MessageDialogContent({ ++ title: _('New folder name'), ++ }); ++ this.contentLayout.add_child(dialogContent); + + this._entry = new St.Entry({ style_class: 'create-folder-dialog-entry', + can_focus: true }); ++ ShellEntry.addContextMenu(this._entry); + this._entry.clutter_text.connect('activate', this._onEntryActivate.bind(this)); + this._entry.clutter_text.connect('text-changed', this._onTextChanged.bind(this)); +- ShellEntry.addContextMenu(this._entry); +- this.contentLayout.add(this._entry); +- this.setInitialKeyFocus(this._entry); + +- this._errorBox = new St.BoxLayout({ style_class: 'create-folder-dialog-error-box', +- visible: false }); +- this.contentLayout.add(this._errorBox, { expand: true }); ++ this.setInitialKeyFocus(this._entry.clutter_text); ++ ++ dialogContent.add(this._entry); ++ ++ this._errorBox = new St.BoxLayout({ vertical: true }); ++ dialogContent.add_child(this._errorBox); + +- this._errorMessage = new St.Label({ style_class: 'create-folder-dialog-error-label' }); ++ this._errorMessage = new St.Label({ ++ style_class: 'create-folder-dialog-error-label', ++ y_expand: false, ++ x_expand: false, ++ }); + this._errorMessage.clutter_text.line_wrap = true; +- this._errorBox.add(this._errorMessage, { expand: true, +- x_align: St.Align.START, +- x_fill: false, +- y_align: St.Align.MIDDLE, +- y_fill: false }); ++ this._errorBox.add_child(this._errorMessage); + + this._createButton = this.addButton({ action: this._onCreateButton.bind(this), + label: _('Create') }); +diff --git a/stylesheet.css b/stylesheet.css +index aeebd17..61b4ce8 100644 +--- a/stylesheet.css ++++ b/stylesheet.css +@@ -36,10 +36,6 @@ + margin-bottom: 6px; + } + +-.create-folder-dialog-label { +- padding-bottom: .4em; +-} +- + .create-folder-dialog-error-box { + padding-top: 16px; + spacing: 6px; diff -Nru gnome-shell-extension-desktop-icons-20.04.0/debian/patches/desktopManager-Allocate-the-draggable-actor-before-starti.patch gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/desktopManager-Allocate-the-draggable-actor-before-starti.patch --- gnome-shell-extension-desktop-icons-20.04.0/debian/patches/desktopManager-Allocate-the-draggable-actor-before-starti.patch 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/desktopManager-Allocate-the-draggable-actor-before-starti.patch 2020-12-07 18:16:04.000000000 +0000 @@ -0,0 +1,28 @@ +From: Daniel van Vugt +Date: Mon, 7 Dec 2020 18:09:05 +0000 +Subject: desktopManager: Allocate the draggable actor before starting the + drag + +Origin: https://gitlab.gnome.org/World/ShellExtensions/desktop-icons/-/merge_requests/193 +Bug-Ubuntu: https://bugs.launchpad.net/bugs/1898462 +Forwarded: yes +Last-Update: 2020-12-07 +--- + desktopManager.js | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/desktopManager.js b/desktopManager.js +index 7d4b562..1aad8c6 100644 +--- a/desktopManager.js ++++ b/desktopManager.js +@@ -504,6 +504,10 @@ var DesktopManager = GObject.registerClass({ + } + + Main.layoutManager.uiGroup.add_child(this._draggableContainer); ++ ++ if (this._draggableContainer.get_fixed_position !== undefined) ++ this._draggableContainer.allocate_preferred_size(0, 0); ++ + this._draggable.startDrag(x, y, global.get_current_time(), event.get_event_sequence()); + } + diff -Nru gnome-shell-extension-desktop-icons-20.04.0/debian/patches/desktopManager-Avoid-scheduling-multiple-_layoutChildren-.patch gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/desktopManager-Avoid-scheduling-multiple-_layoutChildren-.patch --- gnome-shell-extension-desktop-icons-20.04.0/debian/patches/desktopManager-Avoid-scheduling-multiple-_layoutChildren-.patch 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/desktopManager-Avoid-scheduling-multiple-_layoutChildren-.patch 2020-12-07 18:16:04.000000000 +0000 @@ -0,0 +1,26 @@ +From: Daniel van Vugt +Date: Mon, 7 Dec 2020 18:09:05 +0000 +Subject: desktopManager: Avoid scheduling multiple _layoutChildren idlers + +Origin: https://gitlab.gnome.org/World/ShellExtensions/desktop-icons/-/merge_requests/191 +Bug-Ubuntu: https://bugs.launchpad.net/bugs/1898005 +Forwarded: yes +Last-Update: 2020-11-27 +--- + desktopManager.js | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/desktopManager.js b/desktopManager.js +index 392220d..7d4b562 100644 +--- a/desktopManager.js ++++ b/desktopManager.js +@@ -651,7 +651,8 @@ var DesktopManager = GObject.registerClass({ + + Object.values(this._desktopGrids).forEach((grid) => grid.reset()); + +- this._layoutChildrenId = GLib.idle_add(GLib.PRIORITY_LOW, () => this._layoutChildren()); ++ if (!this._layoutChildrenId) ++ this._layoutChildrenId = GLib.idle_add(GLib.PRIORITY_LOW, () => this._layoutChildren()); + + return GLib.SOURCE_REMOVE; + } diff -Nru gnome-shell-extension-desktop-icons-20.04.0/debian/patches/desktopManager-Use-Shell-s-native-switcheroo-controller.patch gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/desktopManager-Use-Shell-s-native-switcheroo-controller.patch --- gnome-shell-extension-desktop-icons-20.04.0/debian/patches/desktopManager-Use-Shell-s-native-switcheroo-controller.patch 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/desktopManager-Use-Shell-s-native-switcheroo-controller.patch 2020-12-07 18:16:04.000000000 +0000 @@ -0,0 +1,86 @@ +From: =?utf-8?b?Ik1hcmNvIFRyZXZpc2FuIChUcmV2acOxbyki?= +Date: Thu, 10 Sep 2020 05:50:52 +0200 +Subject: desktopManager: Use Shell's native switcheroo controller + +We don't have to manage this via dbus anymore as the shell exposes these +properties now. + +While it has not anymore the switcheroo xml interface exported, so the +extension should ship it instead. + +Origin: https://gitlab.gnome.org/World/ShellExtensions/desktop-icons/-/merge_requests/190 +Forwarded: yes +--- + desktopManager.js | 41 +++++++++++------------------------------ + 1 file changed, 11 insertions(+), 30 deletions(-) + +diff --git a/desktopManager.js b/desktopManager.js +index 2d0a000..392220d 100644 +--- a/desktopManager.js ++++ b/desktopManager.js +@@ -45,10 +45,6 @@ const { loadInterfaceXML } = imports.misc.fileUtils; + const Clipboard = St.Clipboard.get_default(); + const CLIPBOARD_TYPE = St.ClipboardType.CLIPBOARD; + +-const SWITCHEROO_BUS_NAME = 'net.hadess.SwitcherooControl'; +-const SWITCHEROO_OBJECT_PATH = '/net/hadess/SwitcherooControl'; +- +-var SwitcherooProxy; + var S_IWOTH = 0x00002; + + function getDpy() { +@@ -118,35 +114,19 @@ var DesktopManager = GObject.registerClass({ + this._dragXStart = Number.POSITIVE_INFINITY; + this._dragYStart = Number.POSITIVE_INFINITY; + +- Gio.DBus.system.watch_name(SWITCHEROO_BUS_NAME, +- Gio.BusNameWatcherFlags.NONE, +- this._switcherooProxyAppeared.bind(this), +- () => { +- this._switcherooProxy = null; +- this._updateDiscreteGpuAvailable(); +- }); ++ this._switcherooNotifyId = global.connect('notify::switcheroo-control', ++ () => this._updateDiscreteGpuAvailable()); ++ this._updateDiscreteGpuAvailable(); + } + + _updateDiscreteGpuAvailable() { +- if (this._switcherooProxy) +- this._discreteGpuAvailable = this._switcherooProxy.HasDualGpu; +- else ++ this._switcherooProxy = global.get_switcheroo_control(); ++ if (this._switcherooProxy) { ++ let prop = this._switcherooProxy.get_cached_property('HasDualGpu'); ++ this._discreteGpuAvailable = prop ? prop.unpack() : false; ++ } else { + this._discreteGpuAvailable = false; +- } +- +- _switcherooProxyAppeared() { +- let SwitcherooProxyInterface = loadInterfaceXML('net.hadess.SwitcherooControl'); +- SwitcherooProxy = Gio.DBusProxy.makeProxyWrapper(SwitcherooProxyInterface); +- this._switcherooProxy = new SwitcherooProxy(Gio.DBus.system, +- SWITCHEROO_BUS_NAME, +- SWITCHEROO_OBJECT_PATH, +- (proxy, error) => { +- if (error) { +- log(error.message); +- return; +- } +- this._updateDiscreteGpuAvailable(); +- }); ++ } + } + + startRubberBand(x, y) { +@@ -420,7 +400,8 @@ var DesktopManager = GObject.registerClass({ + log('Could not apply discrete GPU environment, switcheroo-control not available'); + return null; + } +- return this._switcherooProxy.GPUs; ++ let prop = this._switcherooProxy.get_cached_property("GPUs"); ++ return prop ? prop.unpack() : null; + } + + _updateDesktopIfChanged (file, otherFile, eventType) { diff -Nru gnome-shell-extension-desktop-icons-20.04.0/debian/patches/metadata-Bump-dependency-on-gnome-shell-3.38.patch gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/metadata-Bump-dependency-on-gnome-shell-3.38.patch --- gnome-shell-extension-desktop-icons-20.04.0/debian/patches/metadata-Bump-dependency-on-gnome-shell-3.38.patch 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/metadata-Bump-dependency-on-gnome-shell-3.38.patch 2020-12-07 18:16:04.000000000 +0000 @@ -0,0 +1,25 @@ +From: =?utf-8?b?Ik1hcmNvIFRyZXZpc2FuIChUcmV2acOxbyki?= +Date: Thu, 10 Sep 2020 05:57:17 +0200 +Subject: metadata: Bump dependency on gnome-shell 3.38 + +While the desktop will work even in previous versions, some features +would just be broken, so it's time to bump again the dependency + +Origin: https://gitlab.gnome.org/World/ShellExtensions/desktop-icons/-/merge_requests/190 +Forwarded: ye +--- + metadata.json | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/metadata.json b/metadata.json +index 16e07fc..a6784d2 100644 +--- a/metadata.json ++++ b/metadata.json +@@ -2,6 +2,6 @@ + "name": "Desktop Icons", + "description": "Add icons to the desktop", + "uuid": "desktop-icons@csoriano", +- "shell-version": ["3.34.0"], ++ "shell-version": ["3.38.0"], + "url": "https://gitlab.gnome.org/World/ShellExtensions/desktop-icons" + } diff -Nru gnome-shell-extension-desktop-icons-20.04.0/debian/patches/po-Updated-po-files.patch gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/po-Updated-po-files.patch --- gnome-shell-extension-desktop-icons-20.04.0/debian/patches/po-Updated-po-files.patch 2020-04-16 07:10:08.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/po-Updated-po-files.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,4362 +0,0 @@ -From: Sergio Costas -Date: Sun, 5 Apr 2020 21:12:29 +0200 -Subject: po: Updated po files - -Origin: https://gitlab.gnome.org/World/ShellExtensions/desktop-icons/-/commit/9f889af4 ---- - po/ca.po | 111 ++++++++++++++++++++++----------------------- - po/cs.po | 70 ++++++++++++++--------------- - po/da.po | 71 +++++++++++++++-------------- - po/de.po | 70 ++++++++++++++++------------- - po/el.po | 70 ++++++++++++++--------------- - po/en_GB.po | 68 ++++++++++++++-------------- - po/es.po | 71 ++++++++++++++--------------- - po/eu.po | 70 +++++++++++++++-------------- - po/fi.po | 70 ++++++++++++++--------------- - po/fr.po | 70 ++++++++++++++--------------- - po/fur.po | 70 ++++++++++++++++------------- - po/hr.po | 70 ++++++++++++++--------------- - po/hu.po | 71 ++++++++++++++--------------- - po/id.po | 70 ++++++++++++++--------------- - po/it.po | 70 ++++++++++++++++------------- - po/ja.po | 38 ++++++++-------- - po/nl.po | 70 ++++++++++++++--------------- - po/pl.po | 70 ++++++++++++++--------------- - po/pt_BR.po | 71 ++++++++++++++--------------- - po/ru.po | 147 ++++++++++++++++++++++++++++++++++++++++-------------------- - po/sv.po | 70 ++++++++++++++--------------- - po/tr.po | 71 ++++++++++++++--------------- - po/uk.po | 29 ++++++------ - po/zh_TW.po | 136 +++++++++++++++++++++++++++++++++++++++---------------- - 24 files changed, 949 insertions(+), 845 deletions(-) - -diff --git a/po/ca.po b/po/ca.po -index 5b8a243..5944330 100644 ---- a/po/ca.po -+++ b/po/ca.po -@@ -5,187 +5,188 @@ - msgid "" - msgstr "" - "Project-Id-Version: 1.0\n" --"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" --"icons/issues\n" --"POT-Creation-Date: 2019-07-22 10:24+0200\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2019-07-22 10:24+0200\n" --"Language: ca\n" -+"Last-Translator: Jordi Mas \n" - "Language-Team: Catalan \n" -+"Language: ca\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"Last-Translator: Jordi Mas \n" --"Language: ca\n" - "X-Generator: Poedit 2.2.1\n" - --#: ../createFolderDialog.js:48 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Nom de la carpeta nou" - --#: ../createFolderDialog.js:72 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Crea" - --#: ../createFolderDialog.js:74 ../desktopGrid.js:592 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Cancel·la" - --#: ../createFolderDialog.js:145 -+#: createFolderDialog.js:145 - msgid "Folder names cannot contain “/”." - msgstr "Els noms de carpetes no poden contenir «/»." - --#: ../createFolderDialog.js:148 -+#: createFolderDialog.js:148 - msgid "A folder cannot be called “.”." - msgstr "Una carpeta no es pot anomenar «.»." - --#: ../createFolderDialog.js:151 -+#: createFolderDialog.js:151 - msgid "A folder cannot be called “..”." - msgstr "Una carpeta no es pot anomenar «..»." - --#: ../createFolderDialog.js:153 -+#: 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 -+#: 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 -+#: prefs.js:102 - msgid "Size for the desktop icons" - msgstr "Mida de les icones d'escriptori" - --#: ../prefs.js:102 -+#: prefs.js:102 - msgid "Small" - msgstr "Petita" - --#: ../prefs.js:102 -+#: prefs.js:102 - msgid "Standard" - msgstr "Estàndard" - --#: ../prefs.js:102 -+#: prefs.js:102 - msgid "Large" - msgstr "Gran" - --#: ../prefs.js:103 -+#: prefs.js:103 - msgid "Show the personal folder in the desktop" - msgstr "Mostra la carpeta personal a l'escriptori" - --#: ../prefs.js:104 -+#: prefs.js:104 - msgid "Show the trash icon in the desktop" - msgstr "Mostra la icona de la paperera a l'escriptori" - --#: ../desktopGrid.js:323 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Carpeta nova" - --#: ../desktopGrid.js:325 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Enganxa" - --#: ../desktopGrid.js:326 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Desfés" - --#: ../desktopGrid.js:327 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Refés" - --#: ../desktopGrid.js:329 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Mostra l'escriptori al Fitxers" - --#: ../desktopGrid.js:330 ../fileItem.js:612 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Obre al Terminal" - --#: ../desktopGrid.js:332 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Canvia el fons de l'escriptori…" - --#: ../desktopGrid.js:334 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Paràmetres de la pantalla" - --#: ../desktopGrid.js:335 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Paràmetres" - --#: ../desktopGrid.js:582 --msgid "Enter file name…" --msgstr "Introduïu un nom de fitxer…" -- --#: ../desktopGrid.js:586 --msgid "OK" --msgstr "D'acord" -+#: desktopGrid.js:653 -+#, fuzzy -+msgid "Rename" -+msgstr "Canvia el nom…" - --#: ../desktopIconsUtil.js:61 -+#: desktopIconsUtil.js:61 - msgid "Command not found" --msgstr " No s'ha trobat l'ordre" -+msgstr "\tNo s'ha trobat l'ordre" - --#: ../fileItem.js:500 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "No permetis que s'iniciï" - --#: ../fileItem.js:502 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Permet que s'iniciï" - --#: ../fileItem.js:580 -+#: fileItem.js:619 - msgid "Open" - msgstr "Obre" - --#: ../fileItem.js:584 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Obre amb una altra aplicació..." - --#: ../fileItem.js:588 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Retalla" - --#: ../fileItem.js:589 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Copia" - --#: ../fileItem.js:591 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Canvia el nom…" - --#: ../fileItem.js:592 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Mou a la paperera" - --#: ../fileItem.js:602 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Buida la paperera" - --#: ../fileItem.js:608 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Propietats" - --#: ../fileItem.js:610 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Mostra al Fitxers" - --#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:1 -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 - msgid "Icon size" - msgstr "Mida d'icona" - --#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:2 -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 - msgid "Set the size for the desktop icons." - msgstr "Estableix la mida per les icones de l'escriptori." - --#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:3 -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 - msgid "Show personal folder" - msgstr "Mostra la carpeta personal" - --#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:4 -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 - msgid "Show the personal folder in the desktop." - msgstr "Mostra la carpeta personal a l'escriptori." - --#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:5 -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 - msgid "Show trash icon" - msgstr "Mostra la icona de la paperera" - --#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:6 -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 - msgid "Show the trash icon in the desktop." - msgstr "Mostra la icona de la paperera a l'escriptori." -+ -+#~ msgid "Enter file name…" -+#~ msgstr "Introduïu un nom de fitxer…" -+ -+#~ msgid "OK" -+#~ msgstr "D'acord" -diff --git a/po/cs.po b/po/cs.po -index 1bc2982..3fbad80 100644 ---- a/po/cs.po -+++ b/po/cs.po -@@ -7,9 +7,8 @@ - msgid "" - msgstr "" - "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-10-08 18:47+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2020-01-16 13:00+0100\n" - "Last-Translator: Daniel Rusek \n" - "Language-Team: Czech \n" -@@ -20,35 +19,35 @@ msgstr "" - "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - "X-Generator: Poedit 2.2.4\n" - --#: createFolderDialog.js:49 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Název nové složky" - --#: createFolderDialog.js:73 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Vytvořit" - --#: createFolderDialog.js:75 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Zrušit" - --#: createFolderDialog.js:146 -+#: createFolderDialog.js:145 - msgid "Folder names cannot contain “/”." - msgstr "Názvy složek nesmí obsahovat „/“." - --#: createFolderDialog.js:149 -+#: createFolderDialog.js:148 - msgid "A folder cannot be called “.”." - msgstr "Složka se nemůže jmenovat „.“." - --#: createFolderDialog.js:152 -+#: createFolderDialog.js:151 - msgid "A folder cannot be called “..”." - msgstr "Složka se nemůže jmenovat „..“." - --#: createFolderDialog.js:154 -+#: 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:156 -+#: 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." - -@@ -76,47 +75,43 @@ msgstr "Zobrazovat osobní složku na pracovní ploše" - msgid "Show the trash icon in the desktop" - msgstr "Zobrazovat ikonu koše na pracovní ploše" - --#: desktopGrid.js:328 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Nová složka" - --#: desktopGrid.js:330 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Vložit" - --#: desktopGrid.js:331 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Zpět" - --#: desktopGrid.js:332 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Znovu" - --#: desktopGrid.js:334 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Zobrazit plochu v Souborech" - --#: desktopGrid.js:335 fileItem.js:633 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Otevřít v terminálu" - --#: desktopGrid.js:337 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Změnit pozadí…" - --#: desktopGrid.js:339 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Nastavení zobrazení" - --#: desktopGrid.js:340 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Nastavení" - --#: desktopGrid.js:612 --msgid "Enter file name…" --msgstr "Zadejte název souboru…" -- --#: desktopGrid.js:629 -+#: desktopGrid.js:653 - msgid "Rename" - msgstr "Přejmenovat" - -@@ -124,47 +119,47 @@ msgstr "Přejmenovat" - msgid "Command not found" - msgstr "Příkaz nebyl nalezen" - --#: fileItem.js:500 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Nepovolit spouštění" - --#: fileItem.js:502 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Povolit spouštění" - --#: fileItem.js:601 -+#: fileItem.js:619 - msgid "Open" - msgstr "Otevřít" - --#: fileItem.js:605 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Otevřít pomocí jiné aplikace" - --#: fileItem.js:609 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Vyjmout" - --#: fileItem.js:610 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Kopírovat" - --#: fileItem.js:612 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Přejmenovat…" - --#: fileItem.js:613 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Přesunout do koše" - --#: fileItem.js:623 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Vyprázdnit koš" - --#: fileItem.js:629 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Vlastnosti" - --#: fileItem.js:631 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Zobrazit v Souborech" - -@@ -192,6 +187,9 @@ msgstr "Zobrazovat koš" - msgid "Show the trash icon in the desktop." - msgstr "Zobrazovat ikonu koše na pracovní ploše." - -+#~ msgid "Enter file name…" -+#~ msgstr "Zadejte název souboru…" -+ - #~ msgid "OK" - #~ msgstr "Budiž" - -diff --git a/po/da.po b/po/da.po -index d23dedd..e8a3e25 100644 ---- a/po/da.po -+++ b/po/da.po -@@ -6,9 +6,8 @@ - msgid "" - msgstr "" - "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" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2019-03-04 14:55+0200\n" - "Last-Translator: scootergrisen\n" - "Language-Team: Danish \n" -@@ -18,16 +17,15 @@ msgstr "" - "Content-Transfer-Encoding: 8bit\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - --#: createFolderDialog.js:48 --#| msgid "New Folder" -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Nyt mappenavn" - --#: createFolderDialog.js:72 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Opret" - --#: createFolderDialog.js:74 desktopGrid.js:586 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Annullér" - -@@ -75,91 +73,92 @@ msgstr "Vis den personlige mappe på skrivebordet" - msgid "Show the trash icon in the desktop" - msgstr "Vis papirkurvsikonet på skrivebordet" - --#: desktopGrid.js:320 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Ny mappe" - --#: desktopGrid.js:322 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Indsæt" - --#: desktopGrid.js:323 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Fortryd" - --#: desktopGrid.js:324 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Omgør" - --#: desktopGrid.js:326 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Vis skrivebordet i Filer" - --#: desktopGrid.js:327 fileItem.js:606 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Åbn i terminal" - --#: desktopGrid.js:329 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Skift baggrund …" - --#: desktopGrid.js:331 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Skærmindstillinger" - --#: desktopGrid.js:332 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Indstillinger" - --#: desktopGrid.js:576 --msgid "Enter file name…" --msgstr "Indtast filnavn …" -+#: desktopGrid.js:653 -+#, fuzzy -+msgid "Rename" -+msgstr "Omdøb …" - --#: desktopGrid.js:580 --msgid "OK" --msgstr "OK" -+#: desktopIconsUtil.js:61 -+msgid "Command not found" -+msgstr "" - --#: fileItem.js:490 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Tillad ikke opstart" - --#: fileItem.js:492 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Tillad opstart" - --#: fileItem.js:574 -+#: fileItem.js:619 - msgid "Open" - msgstr "Åbn" - --#: fileItem.js:578 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Åbn med et andet program" - --#: fileItem.js:582 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Klip" - --#: fileItem.js:583 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Kopiér" - --#: fileItem.js:585 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Omdøb …" - --#: fileItem.js:586 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Flyt til papirkurven" - --#: fileItem.js:596 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Tøm papirkurven" - --#: fileItem.js:602 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Egenskaber" - --#: fileItem.js:604 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Vis i Filer" - -@@ -187,5 +186,11 @@ msgstr "Vis papirkurvsikon" - msgid "Show the trash icon in the desktop." - msgstr "Vis papirkurvsikonet på skrivebordet." - -+#~ msgid "Enter file name…" -+#~ msgstr "Indtast filnavn …" -+ -+#~ msgid "OK" -+#~ msgstr "OK" -+ - #~ msgid "Huge" - #~ msgstr "Enorme" -diff --git a/po/de.po b/po/de.po -index ed5a257..8b01a27 100644 ---- a/po/de.po -+++ b/po/de.po -@@ -7,9 +7,8 @@ - msgid "" - msgstr "" - "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-07 22:46+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2019-03-09 15:42+0100\n" - "Last-Translator: Tim Sabsch \n" - "Language-Team: German \n" -@@ -20,15 +19,15 @@ msgstr "" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - "X-Generator: Poedit 2.2.1\n" - --#: createFolderDialog.js:48 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Neuer Ordner" - --#: createFolderDialog.js:72 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Erstellen" - --#: createFolderDialog.js:74 desktopGrid.js:586 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Abbrechen" - -@@ -76,91 +75,92 @@ msgstr "Den persönlichen Ordner auf der Arbeitsfläche anzeigen" - msgid "Show the trash icon in the desktop" - msgstr "Papierkorb-Symbol auf der Arbeitsfläche anzeigen" - --#: desktopGrid.js:320 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Neuer Ordner" - --#: desktopGrid.js:322 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Einfügen" - --#: desktopGrid.js:323 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Rückgängig" - --#: desktopGrid.js:324 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Wiederholen" - --#: desktopGrid.js:326 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Schreibtisch in Dateien anzeigen" - --#: desktopGrid.js:327 fileItem.js:606 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Im Terminal öffnen" - --#: desktopGrid.js:329 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Hintergrund ändern …" - --#: desktopGrid.js:331 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Anzeigeeinstellungen" - --#: desktopGrid.js:332 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Einstellungen" - --#: desktopGrid.js:576 --msgid "Enter file name…" --msgstr "Dateinamen eingeben …" -+#: desktopGrid.js:653 -+#, fuzzy -+msgid "Rename" -+msgstr "Umbenennen …" - --#: desktopGrid.js:580 --msgid "OK" --msgstr "OK" -+#: desktopIconsUtil.js:61 -+msgid "Command not found" -+msgstr "" - --#: fileItem.js:490 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Start nicht erlauben" - --#: fileItem.js:492 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Start erlauben" - --#: fileItem.js:574 -+#: fileItem.js:619 - msgid "Open" - msgstr "Öffnen" - --#: fileItem.js:578 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Mit anderer Anwendung öffnen" - --#: fileItem.js:582 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Ausschneiden" - --#: fileItem.js:583 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Kopieren" - --#: fileItem.js:585 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Umbenennen …" - --#: fileItem.js:586 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "In den Papierkorb verschieben" - --#: fileItem.js:596 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Papierkorb leeren" - --#: fileItem.js:602 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Eigenschaften" - --#: fileItem.js:604 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "In Dateiverwaltung anzeigen" - -@@ -188,5 +188,11 @@ msgstr "Papierkorb-Symbol anzeigen" - msgid "Show the trash icon in the desktop." - msgstr "Das Papierkorb-Symbol auf der Arbeitsfläche anzeigen." - -+#~ msgid "Enter file name…" -+#~ msgstr "Dateinamen eingeben …" -+ -+#~ msgid "OK" -+#~ msgstr "OK" -+ - #~ msgid "Huge" - #~ msgstr "Riesig" -diff --git a/po/el.po b/po/el.po -index a77b6f0..302aea8 100644 ---- a/po/el.po -+++ b/po/el.po -@@ -6,9 +6,8 @@ - msgid "" - msgstr "" - "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-10-24 13:50+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2019-10-30 23:18+0200\n" - "Last-Translator: Emmanouil I. Kapernaros \n" - "Language-Team: Greek, Modern (1453-) \n" -@@ -19,35 +18,35 @@ msgstr "" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - "X-Generator: Gtranslator 3.34.0\n" - --#: createFolderDialog.js:49 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Όνομα νέου φακέλου" - --#: createFolderDialog.js:73 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Δημιουργία" - --#: createFolderDialog.js:75 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Ακύρωση" - --#: createFolderDialog.js:146 -+#: createFolderDialog.js:145 - msgid "Folder names cannot contain “/”." - msgstr "Τα ονόματα φακέλων δεν μπορούν να περιέχουν “/”." - --#: createFolderDialog.js:149 -+#: createFolderDialog.js:148 - msgid "A folder cannot be called “.”." - msgstr "Ο φάκελος δεν μπορεί να ονομάζεται “.”." - --#: createFolderDialog.js:152 -+#: createFolderDialog.js:151 - msgid "A folder cannot be called “..”." - msgstr "Ο φάκελος δεν μπορεί να ονομάζεται “..”." - --#: createFolderDialog.js:154 -+#: createFolderDialog.js:153 - msgid "Folders with “.” at the beginning of their name are hidden." - msgstr "Οι φάκελοι με “.” στην αρχή του ονόματος τους είναι κρυφοί" - --#: createFolderDialog.js:156 -+#: createFolderDialog.js:155 - msgid "There is already a file or folder with that name." - msgstr "Υπάρχει ήδη ένας φάκελος ή αρχείο με αυτό το όνομα" - -@@ -75,47 +74,43 @@ msgstr "Εμφάνιση του προσωπικού φακέλου στην ε - msgid "Show the trash icon in the desktop" - msgstr "Εμφάνιση του εικονίδιου απορριμάτων στην επιφάνεια εργασίας" - --#: desktopGrid.js:348 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Νέος Φάκελος" - --#: desktopGrid.js:350 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Επικόλληση" - --#: desktopGrid.js:351 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Αναίρεση" - --#: desktopGrid.js:352 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Επανάληψη" - --#: desktopGrid.js:354 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Εμφάνιση Επιφάνειας εργασίας στα Αρχεία" - --#: desktopGrid.js:355 fileItem.js:637 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Άνοιγμα στο Τερματικό" - --#: desktopGrid.js:357 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Αλλαγή Φόντου" - --#: desktopGrid.js:359 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Ρυθμίσεις Οθόνης" - --#: desktopGrid.js:360 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Ρυθμίσεις" - --#: desktopGrid.js:637 --msgid "Enter file name…" --msgstr "Εισάγετε όνομα αρχείου..." -- --#: desktopGrid.js:654 -+#: desktopGrid.js:653 - msgid "Rename" - msgstr "Μετονομασία" - -@@ -123,47 +118,47 @@ msgstr "Μετονομασία" - msgid "Command not found" - msgstr "Η εντολή δεν βρέθηκε" - --#: fileItem.js:504 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Μην Επιτρέψεις Εκτέλεση" - --#: fileItem.js:506 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Επέτρεψε Εκτέλεση" - --#: fileItem.js:605 -+#: fileItem.js:619 - msgid "Open" - msgstr "Άνοιγμα" - --#: fileItem.js:609 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Άνοιγμα Με Άλλη Εφαρμογή" - --#: fileItem.js:613 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Αποκοπή" - --#: fileItem.js:614 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Αντιγραφή" - --#: fileItem.js:616 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Μετονομασία" - --#: fileItem.js:617 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Μετακίνηση στα Απορρίματα" - --#: fileItem.js:627 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Άδειασμα Απορριμάτων" - --#: fileItem.js:633 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Ιδιότητες" - --#: fileItem.js:635 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Εμφάνιση στα Αρχεία" - -@@ -190,3 +185,6 @@ msgstr "Εμφάνιση του εικονιδίου απορριμμάτων" - #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 - msgid "Show the trash icon in the desktop." - msgstr "Εμφάνιση του εικονιδίου απορριμμάτων στην επιφάνεια εργασίας" -+ -+#~ msgid "Enter file name…" -+#~ msgstr "Εισάγετε όνομα αρχείου..." -diff --git a/po/en_GB.po b/po/en_GB.po -index d81be9c..d30b74d 100644 ---- a/po/en_GB.po -+++ b/po/en_GB.po -@@ -6,9 +6,8 @@ - msgid "" - msgstr "" - "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-08-22 15:53+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2019-08-23 21:48+0100\n" - "Last-Translator: Zander Brown \n" - "Language-Team: English - United Kingdom \n" -@@ -19,15 +18,15 @@ msgstr "" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - "X-Generator: Gtranslator 3.32.1\n" - --#: createFolderDialog.js:48 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "New folder name" - --#: createFolderDialog.js:72 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Create" - --#: createFolderDialog.js:74 desktopGrid.js:592 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Cancel" - -@@ -75,95 +74,92 @@ msgstr "Show the personal folder on the desktop" - msgid "Show the trash icon in the desktop" - msgstr "Show the wastebasket icon on the desktop" - --#: desktopGrid.js:323 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "New Folder" - --#: desktopGrid.js:325 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Paste" - --#: desktopGrid.js:326 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Undo" - --#: desktopGrid.js:327 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Redo" - --#: desktopGrid.js:329 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Show Desktop in Files" - --#: desktopGrid.js:330 fileItem.js:626 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Open in Terminal" - --#: desktopGrid.js:332 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Change Background…" - --#: desktopGrid.js:334 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Display Settings" - --#: desktopGrid.js:335 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Settings" - --#: desktopGrid.js:582 --msgid "Enter file name…" --msgstr "Enter file name…" -- --#: desktopGrid.js:586 --msgid "OK" --msgstr "OK" -+#: desktopGrid.js:653 -+#, fuzzy -+msgid "Rename" -+msgstr "Rename…" - - #: desktopIconsUtil.js:61 - msgid "Command not found" - msgstr "Command not found" - --#: fileItem.js:499 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Don’t Allow Launching" - --#: fileItem.js:501 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Allow Launching" - --#: fileItem.js:594 -+#: fileItem.js:619 - msgid "Open" - msgstr "Open" - --#: fileItem.js:598 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Open With Other Application" - --#: fileItem.js:602 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Cut" - --#: fileItem.js:603 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Copy" - --#: fileItem.js:605 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Rename…" - --#: fileItem.js:606 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Move to Wastebasket" - --#: fileItem.js:616 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Empty Wastebasket" - --#: fileItem.js:622 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Properties" - --#: fileItem.js:624 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Show in Files" - -@@ -190,3 +186,9 @@ msgstr "Show wastebasket icon" - #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 - msgid "Show the trash icon in the desktop." - msgstr "Show the trash icon on the desktop." -+ -+#~ msgid "Enter file name…" -+#~ msgstr "Enter file name…" -+ -+#~ msgid "OK" -+#~ msgstr "OK" -diff --git a/po/es.po b/po/es.po -index e98cc72..be97137 100644 ---- a/po/es.po -+++ b/po/es.po -@@ -8,9 +8,8 @@ - msgid "" - msgstr "" - "Project-Id-Version: 1.0\n" --"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" --"icons/issues\n" --"POT-Creation-Date: 2019-10-08 18:47+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2019-10-10 15:23+0200\n" - "Last-Translator: Daniel Mustieles \n" - "Language-Team: Spanish - Spain \n" -@@ -21,35 +20,35 @@ msgstr "" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - "X-Generator: Gtranslator 3.34.0\n" - --#: createFolderDialog.js:49 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Nombre de la nueva carpeta" - --#: createFolderDialog.js:73 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Crear" - --#: createFolderDialog.js:75 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Cancelar" - --#: createFolderDialog.js:146 -+#: createFolderDialog.js:145 - msgid "Folder names cannot contain “/”." - msgstr "Los nombres de carpetas no pueden contener «/»." - --#: createFolderDialog.js:149 -+#: createFolderDialog.js:148 - msgid "A folder cannot be called “.”." - msgstr "Una carpeta no se puede llamar «.»." - --#: createFolderDialog.js:152 -+#: createFolderDialog.js:151 - msgid "A folder cannot be called “..”." - msgstr "Una carpeta no se puede llamar «..»." - --#: createFolderDialog.js:154 -+#: 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:156 -+#: createFolderDialog.js:155 - msgid "There is already a file or folder with that name." - msgstr "Ya hay un archivo o carpeta con ese nombre." - -@@ -77,48 +76,43 @@ msgstr "Mostrar la carpeta personal en el escritorio" - msgid "Show the trash icon in the desktop" - msgstr "Mostrar la papelera en el escritorio" - --#: desktopGrid.js:328 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Nueva carpeta" - --#: desktopGrid.js:330 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Pegar" - --#: desktopGrid.js:331 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Deshacer" - --#: desktopGrid.js:332 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Rehacer" - --#: desktopGrid.js:334 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Mostrar el escritorio en Archivos" - --#: desktopGrid.js:335 fileItem.js:633 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Abrir en una terminal" - --#: desktopGrid.js:337 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Cambiar el fondo..." - --#: desktopGrid.js:339 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Configuración de pantalla" - --#: desktopGrid.js:340 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Configuración" - --#: desktopGrid.js:612 --msgid "Enter file name…" --msgstr "Introduzca el nombre del archivo…" -- --#: desktopGrid.js:629 --#| msgid "Rename…" -+#: desktopGrid.js:653 - msgid "Rename" - msgstr "Renombrar" - -@@ -126,47 +120,47 @@ msgstr "Renombrar" - msgid "Command not found" - msgstr "Comando no encontrado" - --#: fileItem.js:500 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "No permitir lanzar" - --#: fileItem.js:502 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Permitir lanzar" - --#: fileItem.js:601 -+#: fileItem.js:619 - msgid "Open" - msgstr "Abrir" - --#: fileItem.js:605 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Abrir con otra aplicación" - --#: fileItem.js:609 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Cortar" - --#: fileItem.js:610 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Copiar" - --#: fileItem.js:612 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Renombrar…" - --#: fileItem.js:613 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Mover a la papelera" - --#: fileItem.js:623 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Vaciar la papelera" - --#: fileItem.js:629 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Propiedades" - --#: fileItem.js:631 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Mostrar en Files" - -@@ -194,6 +188,9 @@ msgstr "Mostrar la papelera" - msgid "Show the trash icon in the desktop." - msgstr "Mostrar la papelera en el escritorio." - -+#~ msgid "Enter file name…" -+#~ msgstr "Introduzca el nombre del archivo…" -+ - #~ msgid "OK" - #~ msgstr "Aceptar" - -diff --git a/po/eu.po b/po/eu.po -index a4b7ce4..d662e0d 100644 ---- a/po/eu.po -+++ b/po/eu.po -@@ -4,9 +4,10 @@ - # Asier Sarasua Garmendia , 2019. - # - msgid "" --msgstr "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-09-09 06:12+0000\n" -+msgstr "" -+"Project-Id-Version: desktop-icons master\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2019-09-15 10:00+0100\n" - "Last-Translator: Asier Sarasua Garmendia \n" - "Language-Team: Basque \n" -@@ -15,15 +16,15 @@ msgstr "Project-Id-Version: desktop-icons master\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - --#: createFolderDialog.js:48 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Karpetaren izen berria" - --#: createFolderDialog.js:72 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Sorrera" - --#: createFolderDialog.js:74 desktopGrid.js:592 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Utzi" - -@@ -71,95 +72,92 @@ msgstr "Erakutsi karpeta pertsonala mahaigainean" - msgid "Show the trash icon in the desktop" - msgstr "Erakutsi zakarrontziaren ikonoa mahaigainean" - --#: desktopGrid.js:323 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Karpeta berria" - --#: desktopGrid.js:325 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Itsatsi" - --#: desktopGrid.js:326 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Desegin" - --#: desktopGrid.js:327 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Berregin" - --#: desktopGrid.js:329 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Erakutsi mahaigaina Fitxategiak aplikazioan" - --#: desktopGrid.js:330 fileItem.js:626 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Ireki terminalean" - --#: desktopGrid.js:332 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Aldatu atzeko planoa…" - --#: desktopGrid.js:334 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Pantailaren ezarpenak" - --#: desktopGrid.js:335 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Ezarpenak" - --#: desktopGrid.js:582 --msgid "Enter file name…" --msgstr "Sartu fitxategi-izena…" -- --#: desktopGrid.js:586 --msgid "OK" --msgstr "Ados" -+#: desktopGrid.js:653 -+#, fuzzy -+msgid "Rename" -+msgstr "Aldatu izena…" - - #: desktopIconsUtil.js:61 - msgid "Command not found" - msgstr "Ez da komandoa aurkitu" - --#: fileItem.js:499 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Ez baimendu abiaraztea" - --#: fileItem.js:501 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Baimendu abiaraztea" - --#: fileItem.js:594 -+#: fileItem.js:619 - msgid "Open" - msgstr "Ireki" - --#: fileItem.js:598 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Ireki beste aplikazio batekin" - --#: fileItem.js:602 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Ebaki" - --#: fileItem.js:603 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Kopiatu" - --#: fileItem.js:605 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Aldatu izena…" - --#: fileItem.js:606 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Bota zakarrontzira" - --#: fileItem.js:616 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Hustu zakarrontzia" - --#: fileItem.js:622 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Propietateak" - --#: fileItem.js:624 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Erakutsi Fitxategiak aplikazioan" - -@@ -186,3 +184,9 @@ msgstr "Erakutsi zakarrontziaren ikonoa" - #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 - msgid "Show the trash icon in the desktop." - msgstr "Erakutsi zakarrontziaren ikonoa mahaigainean." -+ -+#~ msgid "Enter file name…" -+#~ msgstr "Sartu fitxategi-izena…" -+ -+#~ msgid "OK" -+#~ msgstr "Ados" -diff --git a/po/fi.po b/po/fi.po -index 23cd63b..8a1f813 100644 ---- a/po/fi.po -+++ b/po/fi.po -@@ -6,9 +6,8 @@ - msgid "" - msgstr "" - "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-10-08 18:47+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2020-02-23 13:36+0200\n" - "Last-Translator: Jiri Grönroos \n" - "Language-Team: Finnish \n" -@@ -19,35 +18,35 @@ msgstr "" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - "X-Generator: Poedit 2.3\n" - --#: createFolderDialog.js:49 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Uusi kansion nimi" - --#: createFolderDialog.js:73 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Luo" - --#: createFolderDialog.js:75 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Peru" - --#: createFolderDialog.js:146 -+#: createFolderDialog.js:145 - msgid "Folder names cannot contain “/”." - msgstr "Kansion nimi ei voi sisältää merkkiä “/”." - --#: createFolderDialog.js:149 -+#: createFolderDialog.js:148 - msgid "A folder cannot be called “.”." - msgstr "Kansion nimi ei voi olla “.”." - --#: createFolderDialog.js:152 -+#: createFolderDialog.js:151 - msgid "A folder cannot be called “..”." - msgstr "Kansion nimi ei voi olla “..”." - --#: createFolderDialog.js:154 -+#: createFolderDialog.js:153 - msgid "Folders with “.” at the beginning of their name are hidden." - msgstr "Kansiot, joiden nimi alkaa merkillä “.”, ovat piilotettuja." - --#: createFolderDialog.js:156 -+#: 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ä." - -@@ -75,47 +74,43 @@ msgstr "Näytä kotikansio työpöydällä" - msgid "Show the trash icon in the desktop" - msgstr "Näytä roskakorin kuvake työpöydällä" - --#: desktopGrid.js:328 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Uusi kansio" - --#: desktopGrid.js:330 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Liitä" - --#: desktopGrid.js:331 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Kumoa" - --#: desktopGrid.js:332 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Tee uudeleen" - --#: desktopGrid.js:334 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Näytä työpöytä tiedostonhallinnassa" - --#: desktopGrid.js:335 fileItem.js:633 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Avaa päätteessä" - --#: desktopGrid.js:337 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Vaihda taustakuvaa…" - --#: desktopGrid.js:339 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Näytön asetukset" - --#: desktopGrid.js:340 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Asetukset" - --#: desktopGrid.js:612 --msgid "Enter file name…" --msgstr "Anna tiedostonimi…" -- --#: desktopGrid.js:629 -+#: desktopGrid.js:653 - msgid "Rename" - msgstr "Nimeä uudelleen" - -@@ -123,47 +118,47 @@ msgstr "Nimeä uudelleen" - msgid "Command not found" - msgstr "Komentoa ei löydy" - --#: fileItem.js:500 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Älä salli käynnistämistä" - --#: fileItem.js:502 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Salli käynnistäminen" - --#: fileItem.js:601 -+#: fileItem.js:619 - msgid "Open" - msgstr "Avaa" - --#: fileItem.js:605 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Avaa toisella sovelluksella" - --#: fileItem.js:609 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Leikkaa" - --#: fileItem.js:610 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Kopioi" - --#: fileItem.js:612 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Nimeä uudelleen…" - --#: fileItem.js:613 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Siirrä roskakoriin" - --#: fileItem.js:623 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Tyhjennä roskakori" - --#: fileItem.js:629 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Ominaisuudet" - --#: fileItem.js:631 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Näytä tiedostonhallinnassa" - -@@ -191,6 +186,9 @@ msgstr "Näytä roskakorin kuvake" - msgid "Show the trash icon in the desktop." - msgstr "Näytä roskakorin kuvake työpöydällä." - -+#~ msgid "Enter file name…" -+#~ msgstr "Anna tiedostonimi…" -+ - #~ msgid "OK" - #~ msgstr "OK" - -diff --git a/po/fr.po b/po/fr.po -index fefe5bf..85272cb 100644 ---- a/po/fr.po -+++ b/po/fr.po -@@ -8,9 +8,8 @@ - msgid "" - msgstr "" - "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-10-08 18:47+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2020-02-23 16:32+0100\n" - "Last-Translator: Claude Paroz \n" - "Language-Team: GNOME French Team \n" -@@ -20,35 +19,35 @@ msgstr "" - "Content-Transfer-Encoding: 8bit\n" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" - --#: createFolderDialog.js:49 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Nouveau nom de dossier" - --#: createFolderDialog.js:73 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Créer" - --#: createFolderDialog.js:75 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Annuler" - --#: createFolderDialog.js:146 -+#: createFolderDialog.js:145 - msgid "Folder names cannot contain “/”." - msgstr "Les noms de dossiers ne peuvent pas contenir « / »." - --#: createFolderDialog.js:149 -+#: createFolderDialog.js:148 - msgid "A folder cannot be called “.”." - msgstr "Un dossier ne peut pas être nommé « . »." - --#: createFolderDialog.js:152 -+#: createFolderDialog.js:151 - msgid "A folder cannot be called “..”." - msgstr "Un dossier ne peut pas être nommé « .. »." - --#: createFolderDialog.js:154 -+#: createFolderDialog.js:153 - msgid "Folders with “.” at the beginning of their name are hidden." - msgstr "Les dossiers dont le nom commence par « . » sont masqués." - --#: createFolderDialog.js:156 -+#: createFolderDialog.js:155 - msgid "There is already a file or folder with that name." - msgstr "Il existe déjà un fichier ou dossier ayant ce nom." - -@@ -76,47 +75,43 @@ msgstr "Montrer le dossier personnel sur le bureau" - msgid "Show the trash icon in the desktop" - msgstr "Montrer la corbeille sur le bureau" - --#: desktopGrid.js:328 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Nouveau dossier" - --#: desktopGrid.js:330 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Coller" - --#: desktopGrid.js:331 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Annuler" - --#: desktopGrid.js:332 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Refaire" - --#: desktopGrid.js:334 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Afficher le bureau dans Fichiers" - --#: desktopGrid.js:335 fileItem.js:633 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Ouvrir dans un terminal" - --#: desktopGrid.js:337 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Changer l’arrière-plan…" - --#: desktopGrid.js:339 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Configuration d’affichage" - --#: desktopGrid.js:340 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Paramètres" - --#: desktopGrid.js:612 --msgid "Enter file name…" --msgstr "Saisir un nom de fichier…" -- --#: desktopGrid.js:629 -+#: desktopGrid.js:653 - msgid "Rename" - msgstr "Renommer" - -@@ -124,47 +119,47 @@ msgstr "Renommer" - msgid "Command not found" - msgstr "Commande introuvable" - --#: fileItem.js:500 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Ne pas autoriser le lancement" - --#: fileItem.js:502 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Autoriser le lancement" - --#: fileItem.js:601 -+#: fileItem.js:619 - msgid "Open" - msgstr "Ouvrir" - --#: fileItem.js:605 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Ouvrir avec une autre application" - --#: fileItem.js:609 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Couper" - --#: fileItem.js:610 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Copier" - --#: fileItem.js:612 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Renommer…" - --#: fileItem.js:613 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Mettre à la corbeille" - --#: fileItem.js:623 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Vider la corbeille" - --#: fileItem.js:629 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Propriétés" - --#: fileItem.js:631 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Montrer dans Fichiers" - -@@ -192,5 +187,8 @@ msgstr "Montrer l’icône de la corbeille" - msgid "Show the trash icon in the desktop." - msgstr "Montrer la corbeille sur le bureau." - -+#~ msgid "Enter file name…" -+#~ msgstr "Saisir un nom de fichier…" -+ - #~ msgid "Huge" - #~ msgstr "Immense" -diff --git a/po/fur.po b/po/fur.po -index 3ab6129..f0be09a 100644 ---- a/po/fur.po -+++ b/po/fur.po -@@ -6,9 +6,8 @@ - msgid "" - msgstr "" - "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" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2019-03-05 22:20+0100\n" - "Last-Translator: Fabio Tomat \n" - "Language-Team: Friulian \n" -@@ -18,15 +17,15 @@ msgstr "" - "Content-Transfer-Encoding: 8bit\n" - "X-Generator: Poedit 2.2.1\n" - --#: createFolderDialog.js:48 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Gnûf non de cartele" - --#: createFolderDialog.js:72 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Cree" - --#: createFolderDialog.js:74 desktopGrid.js:586 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Anule" - -@@ -74,91 +73,92 @@ msgstr "Mostre la cartele personâl intal scritori" - msgid "Show the trash icon in the desktop" - msgstr "Mostre la icone de scovacere intal scritori" - --#: desktopGrid.js:320 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Gnove cartele" - --#: desktopGrid.js:322 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Tache" - --#: desktopGrid.js:323 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Anule" - --#: desktopGrid.js:324 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Torne fâ" - --#: desktopGrid.js:326 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Mostre Scritori in File" - --#: desktopGrid.js:327 fileItem.js:606 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Vierç in Terminâl" - --#: desktopGrid.js:329 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Cambie sfont…" - --#: desktopGrid.js:331 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Impostazions visôr" - --#: desktopGrid.js:332 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Impostazions" - --#: desktopGrid.js:576 --msgid "Enter file name…" --msgstr "Inserìs il non dal file…" -+#: desktopGrid.js:653 -+#, fuzzy -+msgid "Rename" -+msgstr "Cambie non..." - --#: desktopGrid.js:580 --msgid "OK" --msgstr "Va ben" -+#: desktopIconsUtil.js:61 -+msgid "Command not found" -+msgstr "" - --#: fileItem.js:490 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "No sta permeti inviament" - --#: fileItem.js:492 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Permet inviament" - --#: fileItem.js:574 -+#: fileItem.js:619 - msgid "Open" - msgstr "Vierç" - --#: fileItem.js:578 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Vierç cuntune altre aplicazion" - --#: fileItem.js:582 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Taie" - --#: fileItem.js:583 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Copie" - --#: fileItem.js:585 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Cambie non..." - --#: fileItem.js:586 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Sposte te scovacere" - --#: fileItem.js:596 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Disvuede scovacere" - --#: fileItem.js:602 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Propietâts" - --#: fileItem.js:604 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Mostre in File" - -@@ -185,3 +185,9 @@ 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 "Enter file name…" -+#~ msgstr "Inserìs il non dal file…" -+ -+#~ msgid "OK" -+#~ msgstr "Va ben" -diff --git a/po/hr.po b/po/hr.po -index 1728fb7..76b3f31 100644 ---- a/po/hr.po -+++ b/po/hr.po -@@ -6,9 +6,8 @@ - msgid "" - msgstr "" - "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-10-08 18:47+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2020-03-01 19:23+0100\n" - "Last-Translator: gogo \n" - "Language-Team: Croatian \n" -@@ -19,35 +18,35 @@ msgstr "" - "X-Launchpad-Export-Date: 2019-03-27 09:36+0000\n" - "X-Generator: Poedit 2.0.6\n" - --#: createFolderDialog.js:49 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Novi naziv mape" - --#: createFolderDialog.js:73 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Stvori" - --#: createFolderDialog.js:75 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Odustani" - --#: createFolderDialog.js:146 -+#: createFolderDialog.js:145 - msgid "Folder names cannot contain “/”." - msgstr "Naziv mape ne može sadržavati “/”." - --#: createFolderDialog.js:149 -+#: createFolderDialog.js:148 - msgid "A folder cannot be called “.”." - msgstr "Mapa se ne može nazvati “.”." - --#: createFolderDialog.js:152 -+#: createFolderDialog.js:151 - msgid "A folder cannot be called “..”." - msgstr "Mapa se ne može nazvati “..”." - --#: createFolderDialog.js:154 -+#: 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:156 -+#: createFolderDialog.js:155 - msgid "There is already a file or folder with that name." - msgstr "Već postoji datoteka ili mapa s tim nazivom." - -@@ -75,47 +74,43 @@ msgstr "Prikaži osobnu mapu na radnoj površini" - msgid "Show the trash icon in the desktop" - msgstr "Prikaži mapu smeća na radnoj površini" - --#: desktopGrid.js:328 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Nova mapa" - --#: desktopGrid.js:330 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Zalijepi" - --#: desktopGrid.js:331 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Poništi" - --#: desktopGrid.js:332 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Ponovi" - --#: desktopGrid.js:334 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Prikaži radnu površinu u Datotekama" - --#: desktopGrid.js:335 fileItem.js:633 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Otvori u Terminalu" - --#: desktopGrid.js:337 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Promijeni pozadinu…" - --#: desktopGrid.js:339 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Postavke zaslona" - --#: desktopGrid.js:340 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Postavke" - --#: desktopGrid.js:612 --msgid "Enter file name…" --msgstr "Upiši naziv datoteke…" -- --#: desktopGrid.js:629 -+#: desktopGrid.js:653 - msgid "Rename" - msgstr "Preimenuj" - -@@ -123,47 +118,47 @@ msgstr "Preimenuj" - msgid "Command not found" - msgstr "Naredba nije pronađena" - --#: fileItem.js:500 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Ne dopuštaj pokretanje" - --#: fileItem.js:502 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Dopusti pokretanje" - --#: fileItem.js:601 -+#: fileItem.js:619 - msgid "Open" - msgstr "Otvori" - --#: fileItem.js:605 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Otvori s drugom aplikacijom" - --#: fileItem.js:609 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Izreži" - --#: fileItem.js:610 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Kopiraj" - --#: fileItem.js:612 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Preimenuj…" - --#: fileItem.js:613 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Premjesti u smeće" - --#: fileItem.js:623 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Isprazni smeće" - --#: fileItem.js:629 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Svojstva" - --#: fileItem.js:631 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Prikaži u Datotekama" - -@@ -191,5 +186,8 @@ msgstr "Prikaži ikonu smeća" - msgid "Show the trash icon in the desktop." - msgstr "Prikaži ikonu smeća na radnoj površini." - -+#~ msgid "Enter file name…" -+#~ msgstr "Upiši naziv datoteke…" -+ - #~ msgid "OK" - #~ msgstr "U redu" -diff --git a/po/hu.po b/po/hu.po -index 59fdc05..eef8e02 100644 ---- a/po/hu.po -+++ b/po/hu.po -@@ -6,9 +6,8 @@ - msgid "" - msgstr "" - "Project-Id-Version: desktop-icons master\n" --"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-i" --"cons/issues\n" --"POT-Creation-Date: 2019-10-08 18:47+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2019-10-10 14:42+0200\n" - "Last-Translator: Balázs Úr \n" - "Language-Team: Hungarian \n" -@@ -19,35 +18,35 @@ msgstr "" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - "X-Generator: Lokalize 18.12.3\n" - --#: createFolderDialog.js:49 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Új mappa neve" - --#: createFolderDialog.js:73 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Létrehozás" - --#: createFolderDialog.js:75 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Mégse" - --#: createFolderDialog.js:146 -+#: createFolderDialog.js:145 - msgid "Folder names cannot contain “/”." - msgstr "A mappanevek nem tartalmazhatnak „/” karaktert." - --#: createFolderDialog.js:149 -+#: createFolderDialog.js:148 - msgid "A folder cannot be called “.”." - msgstr "Egy mappának nem lehet „.” a neve." - --#: createFolderDialog.js:152 -+#: createFolderDialog.js:151 - msgid "A folder cannot be called “..”." - msgstr "Egy mappának nem lehet „..” a neve." - --#: createFolderDialog.js:154 -+#: 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:156 -+#: 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." - -@@ -75,48 +74,43 @@ msgstr "A személyes mappa megjelenítése az asztalon" - msgid "Show the trash icon in the desktop" - msgstr "A kuka ikon megjelenítése az asztalon" - --#: desktopGrid.js:328 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Új mappa" - --#: desktopGrid.js:330 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Beillesztés" - --#: desktopGrid.js:331 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Visszavonás" - --#: desktopGrid.js:332 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Újra" - --#: desktopGrid.js:334 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Asztal megjelenítése a Fájlokban" - --#: desktopGrid.js:335 fileItem.js:633 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Megnyitás terminálban" - --#: desktopGrid.js:337 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Háttér megváltoztatása…" - --#: desktopGrid.js:339 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Megjelenítés beállításai" - --#: desktopGrid.js:340 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Beállítások" - --#: desktopGrid.js:612 --msgid "Enter file name…" --msgstr "Adjon meg egy fájlnevet…" -- --#: desktopGrid.js:629 --#| msgid "Rename…" -+#: desktopGrid.js:653 - msgid "Rename" - msgstr "Átnevezés" - -@@ -124,47 +118,47 @@ msgstr "Átnevezés" - msgid "Command not found" - msgstr "A parancs nem található" - --#: fileItem.js:500 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Ne engedélyezzen indítást" - --#: fileItem.js:502 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Indítás engedélyezése" - --#: fileItem.js:601 -+#: fileItem.js:619 - msgid "Open" - msgstr "Megnyitás" - --#: fileItem.js:605 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Megnyitás egyéb alkalmazással" - --#: fileItem.js:609 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Kivágás" - --#: fileItem.js:610 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Másolás" - --#: fileItem.js:612 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Átnevezés…" - --#: fileItem.js:613 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Áthelyezés a Kukába" - --#: fileItem.js:623 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Kuka ürítése" - --#: fileItem.js:629 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Tulajdonságok" - --#: fileItem.js:631 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Megjelenítés a Fájlokban" - -@@ -191,3 +185,6 @@ 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." -+ -+#~ msgid "Enter file name…" -+#~ msgstr "Adjon meg egy fájlnevet…" -diff --git a/po/id.po b/po/id.po -index db2b23e..2d41738 100644 ---- a/po/id.po -+++ b/po/id.po -@@ -6,9 +6,8 @@ - msgid "" - msgstr "" - "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-10-08 18:47+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2020-01-14 20:04+0700\n" - "Last-Translator: Kukuh Syafaat \n" - "Language-Team: Indonesian \n" -@@ -18,35 +17,35 @@ msgstr "" - "Content-Transfer-Encoding: 8bit\n" - "X-Generator: Poedit 2.2.4\n" - --#: createFolderDialog.js:49 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Nama folder baru" - --#: createFolderDialog.js:73 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Buat" - --#: createFolderDialog.js:75 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Batal" - --#: createFolderDialog.js:146 -+#: createFolderDialog.js:145 - msgid "Folder names cannot contain “/”." - msgstr "Nama folder tak boleh memuat \"/\"." - --#: createFolderDialog.js:149 -+#: createFolderDialog.js:148 - msgid "A folder cannot be called “.”." - msgstr "Sebuah folder tak bisa dinamai \".\"." - --#: createFolderDialog.js:152 -+#: createFolderDialog.js:151 - msgid "A folder cannot be called “..”." - msgstr "Sebuah folder tak bisa dinamai \"..\"." - --#: createFolderDialog.js:154 -+#: createFolderDialog.js:153 - msgid "Folders with “.” at the beginning of their name are hidden." - msgstr "Folder dengan \".\" di awal nama mereka disembunyikan." - --#: createFolderDialog.js:156 -+#: createFolderDialog.js:155 - msgid "There is already a file or folder with that name." - msgstr "Folder dengan nama itu sudah ada." - -@@ -74,47 +73,43 @@ msgstr "Tampilkan folder pribadi di destop" - msgid "Show the trash icon in the desktop" - msgstr "Tampilkan ikon tong sampah di destop" - --#: desktopGrid.js:328 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Folder Baru" - --#: desktopGrid.js:330 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Tempel" - --#: desktopGrid.js:331 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Tak Jadi" - --#: desktopGrid.js:332 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Jadi Lagi" - --#: desktopGrid.js:334 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Tampilkan Destop pada Berkas" - --#: desktopGrid.js:335 fileItem.js:633 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Buka dalam Terminal" - --#: desktopGrid.js:337 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Ubah Latar Belakang…" - --#: desktopGrid.js:339 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Pengaturan Tampilan" - --#: desktopGrid.js:340 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Pengaturan" - --#: desktopGrid.js:612 --msgid "Enter file name…" --msgstr "Masukkan nama berkas…" -- --#: desktopGrid.js:629 -+#: desktopGrid.js:653 - msgid "Rename" - msgstr "Ganti Nama" - -@@ -122,47 +117,47 @@ msgstr "Ganti Nama" - msgid "Command not found" - msgstr "Perintah tidak ditemukan" - --#: fileItem.js:500 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Jangan Izinkan Peluncuran" - --#: fileItem.js:502 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Izinkan Peluncuran" - --#: fileItem.js:601 -+#: fileItem.js:619 - msgid "Open" - msgstr "Buka" - --#: fileItem.js:605 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Buka Dengan Aplikasi Lain" - --#: fileItem.js:609 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Potong" - --#: fileItem.js:610 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Salin" - --#: fileItem.js:612 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Ganti Nama…" - --#: fileItem.js:613 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Pindahkan ke Tong Sampah" - --#: fileItem.js:623 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Kosongkan Tong Sampah" - --#: fileItem.js:629 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Properti" - --#: fileItem.js:631 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Tampilkan pada Berkas" - -@@ -190,6 +185,9 @@ msgstr "Tampilkan ikon tong sampah" - msgid "Show the trash icon in the desktop." - msgstr "Tampilkan ikon tong sampah di destop." - -+#~ msgid "Enter file name…" -+#~ msgstr "Masukkan nama berkas…" -+ - #~ msgid "OK" - #~ msgstr "OK" - -diff --git a/po/it.po b/po/it.po -index 5001da4..e05476c 100644 ---- a/po/it.po -+++ b/po/it.po -@@ -7,9 +7,8 @@ - msgid "" - msgstr "" - "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" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2019-03-12 09:51+0100\n" - "Last-Translator: Milo Casagrande \n" - "Language-Team: Italian \n" -@@ -20,15 +19,15 @@ msgstr "" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - "X-Generator: Poedit 2.2.1\n" - --#: createFolderDialog.js:48 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Nuova cartella" - --#: createFolderDialog.js:72 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Crea" - --#: createFolderDialog.js:74 desktopGrid.js:586 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Annulla" - -@@ -76,91 +75,92 @@ msgstr "Mostra la cartella personale sulla scrivania" - msgid "Show the trash icon in the desktop" - msgstr "Mostra il cestino sulla scrivania" - --#: desktopGrid.js:320 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Nuova cartella" - --#: desktopGrid.js:322 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Incolla" - --#: desktopGrid.js:323 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Annulla" - --#: desktopGrid.js:324 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Ripeti" - --#: desktopGrid.js:326 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Mostra la scrivania in File" - --#: desktopGrid.js:327 fileItem.js:606 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Apri in Terminale" - --#: desktopGrid.js:329 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Cambia lo sfondo…" - --#: desktopGrid.js:331 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Impostazioni dello schermo" - --#: desktopGrid.js:332 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Impostazioni" - --#: desktopGrid.js:576 --msgid "Enter file name…" --msgstr "Indicare un nome per il file…" -+#: desktopGrid.js:653 -+#, fuzzy -+msgid "Rename" -+msgstr "Rinomina…" - --#: desktopGrid.js:580 --msgid "OK" --msgstr "Ok" -+#: desktopIconsUtil.js:61 -+msgid "Command not found" -+msgstr "" - --#: fileItem.js:490 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Non permettere l'esecuzione" - --#: fileItem.js:492 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Permetti l'esecuzione" - --#: fileItem.js:574 -+#: fileItem.js:619 - msgid "Open" - msgstr "Apri" - --#: fileItem.js:578 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Apri con altra applicazione" - --#: fileItem.js:582 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Taglia" - --#: fileItem.js:583 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Copia" - --#: fileItem.js:585 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Rinomina…" - --#: fileItem.js:586 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Sposta nel cestino" - --#: fileItem.js:596 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Svuota il cestino" - --#: fileItem.js:602 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Proprietà" - --#: fileItem.js:604 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Mostra in File" - -@@ -187,3 +187,9 @@ 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." -+ -+#~ msgid "Enter file name…" -+#~ msgstr "Indicare un nome per il file…" -+ -+#~ msgid "OK" -+#~ msgstr "Ok" -diff --git a/po/ja.po b/po/ja.po -index d7694f1..88da6a4 100644 ---- a/po/ja.po -+++ b/po/ja.po -@@ -6,9 +6,8 @@ - msgid "" - msgstr "" - "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-12-18 14:41+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2020-02-27 21:00+0900\n" - "Last-Translator: sicklylife \n" - "Language-Team: Japanese \n" -@@ -94,7 +93,7 @@ msgstr "やり直す" - msgid "Show Desktop in Files" - msgstr "“ファイル”でデスクトップを表示" - --#: desktopGrid.js:350 fileItem.js:643 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "端末で開く" - -@@ -110,11 +109,7 @@ msgstr "ディスプレイの設定" - msgid "Settings" - msgstr "設定" - --#: desktopGrid.js:637 --msgid "Enter file name…" --msgstr "ファイル名を入力してください…" -- --#: desktopGrid.js:654 -+#: desktopGrid.js:653 - msgid "Rename" - msgstr "名前を変更" - -@@ -122,47 +117,47 @@ msgstr "名前を変更" - msgid "Command not found" - msgstr "コマンドが見つかりませんでした" - --#: fileItem.js:513 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "起動を許可しない" - --#: fileItem.js:515 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "起動を許可する" - --#: fileItem.js:611 -+#: fileItem.js:619 - msgid "Open" - msgstr "開く" - --#: fileItem.js:615 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "別のアプリケーションで開く" - --#: fileItem.js:619 -+#: fileItem.js:627 - msgid "Cut" - msgstr "切り取り" - --#: fileItem.js:620 -+#: fileItem.js:628 - msgid "Copy" - msgstr "コピー" - --#: fileItem.js:622 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "名前を変更…" - --#: fileItem.js:623 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "ゴミ箱へ移動する" - --#: fileItem.js:633 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "ゴミ箱を空にする" - --#: fileItem.js:639 -+#: fileItem.js:647 - msgid "Properties" - msgstr "プロパティ" - --#: fileItem.js:641 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "“ファイル”で表示" - -@@ -189,3 +184,6 @@ msgstr "ゴミ箱アイコンを表示する" - #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 - msgid "Show the trash icon in the desktop." - msgstr "デスクトップにゴミ箱のアイコンを表示します。" -+ -+#~ msgid "Enter file name…" -+#~ msgstr "ファイル名を入力してください…" -diff --git a/po/nl.po b/po/nl.po -index aacbdae..2996b9f 100644 ---- a/po/nl.po -+++ b/po/nl.po -@@ -6,9 +6,8 @@ - msgid "" - msgstr "" - "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-10-08 18:47+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2020-03-07 23:19+0100\n" - "Last-Translator: Nathan Follens \n" - "Language-Team: Dutch \n" -@@ -19,35 +18,35 @@ msgstr "" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - "X-Generator: Poedit 2.3\n" - --#: createFolderDialog.js:49 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Nieuwe mapnaam" - --#: createFolderDialog.js:73 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Aanmaken" - --#: createFolderDialog.js:75 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Annuleren" - --#: createFolderDialog.js:146 -+#: createFolderDialog.js:145 - msgid "Folder names cannot contain “/”." - msgstr "Mapnamen kunnen geen ‘/’ bevatten." - --#: createFolderDialog.js:149 -+#: createFolderDialog.js:148 - msgid "A folder cannot be called “.”." - msgstr "Een map kan niet ‘.’ worden genoemd." - --#: createFolderDialog.js:152 -+#: createFolderDialog.js:151 - msgid "A folder cannot be called “..”." - msgstr "Een map kan niet ‘..’ worden genoemd." - --#: createFolderDialog.js:154 -+#: 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:156 -+#: 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." - -@@ -75,47 +74,43 @@ msgstr "Toon de persoonlijke map op het bureaublad" - msgid "Show the trash icon in the desktop" - msgstr "Toon het prullenbakpictogram op het bureaublad" - --#: desktopGrid.js:328 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Nieuwe map" - --#: desktopGrid.js:330 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Plakken" - --#: desktopGrid.js:331 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Ongedaan maken" - --#: desktopGrid.js:332 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Opnieuw" - --#: desktopGrid.js:334 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Bureaublad tonen in Bestanden" - --#: desktopGrid.js:335 fileItem.js:633 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Openen in terminalvenster" - --#: desktopGrid.js:337 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Achtergrond aanpassen…" - --#: desktopGrid.js:339 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Scherminstellingen" - --#: desktopGrid.js:340 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Instellingen" - --#: desktopGrid.js:612 --msgid "Enter file name…" --msgstr "Voer bestandsnaam in…" -- --#: desktopGrid.js:629 -+#: desktopGrid.js:653 - msgid "Rename" - msgstr "Hernoemen" - -@@ -123,47 +118,47 @@ msgstr "Hernoemen" - msgid "Command not found" - msgstr "Opdracht niet gevonden" - --#: fileItem.js:500 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Toepassingen starten niet toestaan" - --#: fileItem.js:502 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Toepassingen starten toestaan" - --#: fileItem.js:601 -+#: fileItem.js:619 - msgid "Open" - msgstr "Openen" - --#: fileItem.js:605 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Met andere toepassing openen" - --#: fileItem.js:609 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Knippen" - --#: fileItem.js:610 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Kopiëren" - --#: fileItem.js:612 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Hernoemen…" - --#: fileItem.js:613 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Verplaatsen naar prullenbak" - --#: fileItem.js:623 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Prullenbak legen" - --#: fileItem.js:629 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Eigenschappen" - --#: fileItem.js:631 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Tonen in Bestanden" - -@@ -191,5 +186,8 @@ msgstr "Prullenbakpictogram tonen" - msgid "Show the trash icon in the desktop." - msgstr "Toon het prullenbakpictogram op het bureaublad." - -+#~ msgid "Enter file name…" -+#~ msgstr "Voer bestandsnaam in…" -+ - #~ msgid "OK" - #~ msgstr "Oké" -diff --git a/po/pl.po b/po/pl.po -index 4b4ccb9..fdd59bf 100644 ---- a/po/pl.po -+++ b/po/pl.po -@@ -7,9 +7,8 @@ - msgid "" - msgstr "" - "Project-Id-Version: desktop-icons\n" --"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" --"icons/issues\n" --"POT-Creation-Date: 2019-10-08 18:47+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2019-10-10 13:35+0200\n" - "Last-Translator: Piotr Drąg \n" - "Language-Team: Polish \n" -@@ -20,35 +19,35 @@ msgstr "" - "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " - "|| n%100>=20) ? 1 : 2);\n" - --#: createFolderDialog.js:49 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Nazwa nowego katalogu" - --#: createFolderDialog.js:73 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Utwórz" - --#: createFolderDialog.js:75 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Anuluj" - --#: createFolderDialog.js:146 -+#: createFolderDialog.js:145 - msgid "Folder names cannot contain “/”." - msgstr "Nazwy katalogów nie mogą zawierać znaku „/”." - --#: createFolderDialog.js:149 -+#: createFolderDialog.js:148 - msgid "A folder cannot be called “.”." - msgstr "Katalog nie może mieć nazwy „.”." - --#: createFolderDialog.js:152 -+#: createFolderDialog.js:151 - msgid "A folder cannot be called “..”." - msgstr "Katalog nie może mieć nazwy „..”." - --#: createFolderDialog.js:154 -+#: 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:156 -+#: createFolderDialog.js:155 - msgid "There is already a file or folder with that name." - msgstr "Plik lub katalog o tej nazwie już istnieje." - -@@ -76,47 +75,43 @@ msgstr "Katalog domowy na pulpicie" - msgid "Show the trash icon in the desktop" - msgstr "Kosz na pulpicie" - --#: desktopGrid.js:328 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Nowy katalog" - --#: desktopGrid.js:330 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Wklej" - --#: desktopGrid.js:331 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Cofnij" - --#: desktopGrid.js:332 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Ponów" - --#: desktopGrid.js:334 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Wyświetl pulpit w menedżerze plików" - --#: desktopGrid.js:335 fileItem.js:633 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Otwórz w terminalu" - --#: desktopGrid.js:337 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Zmień tło…" - --#: desktopGrid.js:339 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Ustawienia ekranu" - --#: desktopGrid.js:340 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Ustawienia" - --#: desktopGrid.js:612 --msgid "Enter file name…" --msgstr "Nazwa pliku…" -- --#: desktopGrid.js:629 -+#: desktopGrid.js:653 - msgid "Rename" - msgstr "Zmień nazwę" - -@@ -124,47 +119,47 @@ msgstr "Zmień nazwę" - msgid "Command not found" - msgstr "Nie odnaleziono polecenia" - --#: fileItem.js:500 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Nie zezwalaj na uruchamianie" - --#: fileItem.js:502 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Zezwól na uruchamianie" - --#: fileItem.js:601 -+#: fileItem.js:619 - msgid "Open" - msgstr "Otwórz" - --#: fileItem.js:605 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Otwórz za pomocą innego programu" - --#: fileItem.js:609 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Wytnij" - --#: fileItem.js:610 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Skopiuj" - --#: fileItem.js:612 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Zmień nazwę…" - --#: fileItem.js:613 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Przenieś do kosza" - --#: fileItem.js:623 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Opróżnij kosz" - --#: fileItem.js:629 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Właściwości" - --#: fileItem.js:631 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Wyświetl w menedżerze plików" - -@@ -191,3 +186,6 @@ 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." -+ -+#~ msgid "Enter file name…" -+#~ msgstr "Nazwa pliku…" -diff --git a/po/pt_BR.po b/po/pt_BR.po -index e8f6133..48f4f48 100644 ---- a/po/pt_BR.po -+++ b/po/pt_BR.po -@@ -7,9 +7,8 @@ - msgid "" - msgstr "" - "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-10-08 18:47+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2019-10-24 10:49-0300\n" - "Last-Translator: Rafael Fontenelle \n" - "Language-Team: Brazilian Portuguese \n" -@@ -20,35 +19,35 @@ msgstr "" - "Plural-Forms: nplurals=2; plural=(n > 1)\n" - "X-Generator: Gtranslator 3.32.0\n" - --#: createFolderDialog.js:49 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Nome da nova pasta" - --#: createFolderDialog.js:73 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Criar" - --#: createFolderDialog.js:75 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Cancelar" - --#: createFolderDialog.js:146 -+#: createFolderDialog.js:145 - msgid "Folder names cannot contain “/”." - msgstr "Nomes de pastas não podem conter “/”." - --#: createFolderDialog.js:149 -+#: createFolderDialog.js:148 - msgid "A folder cannot be called “.”." - msgstr "Uma pasta não pode ser chamada “.”." - --#: createFolderDialog.js:152 -+#: createFolderDialog.js:151 - msgid "A folder cannot be called “..”." - msgstr "Uma pasta não pode ser chamada “..”." - --#: createFolderDialog.js:154 -+#: 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:156 -+#: 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." - -@@ -76,48 +75,43 @@ msgstr "Mostrar a pasta pessoal na área de trabalho" - msgid "Show the trash icon in the desktop" - msgstr "Mostrar o ícone da lixeira na área de trabalho" - --#: desktopGrid.js:328 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Nova pasta" - --#: desktopGrid.js:330 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Colar" - --#: desktopGrid.js:331 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Desfazer" - --#: desktopGrid.js:332 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Refazer" - --#: desktopGrid.js:334 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Mostrar a área de trabalho no Arquivos" - --#: desktopGrid.js:335 fileItem.js:633 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Abrir no terminal" - --#: desktopGrid.js:337 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Alterar plano de fundo…" - --#: desktopGrid.js:339 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Configurações de exibição" - --#: desktopGrid.js:340 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Configurações" - --#: desktopGrid.js:612 --msgid "Enter file name…" --msgstr "Insira um nome de arquivo…" -- --#: desktopGrid.js:629 --#| msgid "Rename…" -+#: desktopGrid.js:653 - msgid "Rename" - msgstr "Renomear" - -@@ -125,47 +119,47 @@ msgstr "Renomear" - msgid "Command not found" - msgstr "Comando não encontrado" - --#: fileItem.js:500 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Não permitir iniciar" - --#: fileItem.js:502 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Permitir iniciar" - --#: fileItem.js:601 -+#: fileItem.js:619 - msgid "Open" - msgstr "Abrir" - --#: fileItem.js:605 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Abrir com outro aplicativo" - --#: fileItem.js:609 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Recortar" - --#: fileItem.js:610 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Copiar" - --#: fileItem.js:612 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Renomear…" - --#: fileItem.js:613 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Mover para a lixeira" - --#: fileItem.js:623 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Esvaziar lixeira" - --#: fileItem.js:629 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Propriedades" - --#: fileItem.js:631 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Mostrar no Arquivos" - -@@ -193,6 +187,9 @@ msgstr "Mostrar ícone da lixeira" - msgid "Show the trash icon in the desktop." - msgstr "Mostra o ícone da lixeira na área de trabalho." - -+#~ msgid "Enter file name…" -+#~ msgstr "Insira um nome de arquivo…" -+ - #~ msgid "OK" - #~ msgstr "OK" - -diff --git a/po/ru.po b/po/ru.po -index 4094f16..3ea35a1 100644 ---- a/po/ru.po -+++ b/po/ru.po -@@ -6,9 +6,8 @@ - msgid "" - msgstr "" - "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" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2018-11-22 22:02+0300\n" - "Last-Translator: Stas Solovey \n" - "Language-Team: Russian \n" -@@ -20,134 +19,184 @@ msgstr "" - "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - "X-Generator: Poedit 2.2\n" - --#: prefs.js:89 -+#: createFolderDialog.js:46 -+#, fuzzy -+msgid "New folder name" -+msgstr "Создать папку" -+ -+#: createFolderDialog.js:70 -+msgid "Create" -+msgstr "" -+ -+#: createFolderDialog.js:72 -+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:89 -+#: prefs.js:102 - msgid "Small" - msgstr "Маленький" - --#: prefs.js:89 -+#: prefs.js:102 - msgid "Standard" - msgstr "Стандартный" - --#: prefs.js:89 -+#: prefs.js:102 - msgid "Large" - msgstr "Большой" - --#: prefs.js:89 --msgid "Huge" --msgstr "Огромный" -- --#: prefs.js:90 -+#: prefs.js:103 - msgid "Show the personal folder in the desktop" - msgstr "Показывать домашнюю папку на рабочем столе" - --#: prefs.js:91 -+#: prefs.js:104 - msgid "Show the trash icon in the desktop" - msgstr "Показывать «Корзину» на рабочем столе" - --#: desktopGrid.js:185 desktopGrid.js:304 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Создать папку" - --#: desktopGrid.js:306 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Вставить" - --#: desktopGrid.js:307 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Отменить" - --#: desktopGrid.js:308 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Повторить" - --#: desktopGrid.js:310 --msgid "Open Desktop in Files" -+#: desktopGrid.js:349 -+#, fuzzy -+msgid "Show Desktop in Files" - msgstr "Открыть «Рабочий стол» в «Файлах»" - --#: desktopGrid.js:311 --msgid "Open Terminal" -+#: desktopGrid.js:350 fileItem.js:651 -+#, fuzzy -+msgid "Open in Terminal" - msgstr "Открыть терминал" - --#: desktopGrid.js:313 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Изменить фон…" - --#: desktopGrid.js:314 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Настройки дисплея" - --#: desktopGrid.js:315 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Параметры" - --#: desktopGrid.js:569 --msgid "Enter file name…" --msgstr "Ввести имя файла…" -+#: desktopGrid.js:653 -+msgid "Rename" -+msgstr "Переименовать" -+ -+#: desktopIconsUtil.js:61 -+msgid "Command not found" -+msgstr "" - --#: desktopGrid.js:573 --msgid "Ok" --msgstr "ОК" -+#: fileItem.js:521 -+msgid "Don’t Allow Launching" -+msgstr "" - --#: desktopGrid.js:579 --msgid "Cancel" --msgstr "Отмена" -+#: fileItem.js:523 -+msgid "Allow Launching" -+msgstr "" - --#: fileItem.js:390 -+#: fileItem.js:619 - msgid "Open" - msgstr "Открыть" - --#: fileItem.js:393 -+#: fileItem.js:623 -+msgid "Open With Other Application" -+msgstr "" -+ -+#: fileItem.js:627 - msgid "Cut" - msgstr "Вырезать" - --#: fileItem.js:394 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Вставить" - --#: fileItem.js:395 --msgid "Rename" -+#: fileItem.js:630 -+#, fuzzy -+msgid "Rename…" - msgstr "Переименовать" - --#: fileItem.js:396 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Переместить в корзину" - --#: fileItem.js:400 --msgid "Empty trash" -+#: fileItem.js:641 -+#, fuzzy -+msgid "Empty Trash" - msgstr "Очистить корзину" - --#: fileItem.js:406 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Свойства" - --#: fileItem.js:408 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Показать в «Файлах»" - --#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 - msgid "Icon size" - msgstr "Размер значков" - --#: 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 "Установить размер значков на рабочем столе." - --#: 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 "Показывать домашнюю папку" - --#: 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 "Показывать значок домашней папки на рабочем столе." - --#: 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 "Показывать значок корзины" - --#: 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 "Показывать значок корзины на рабочем столе." -+ -+#~ msgid "Huge" -+#~ msgstr "Огромный" -+ -+#~ msgid "Enter file name…" -+#~ msgstr "Ввести имя файла…" -+ -+#~ msgid "Ok" -+#~ msgstr "ОК" -diff --git a/po/sv.po b/po/sv.po -index a37b90f..23d8a86 100644 ---- a/po/sv.po -+++ b/po/sv.po -@@ -7,9 +7,8 @@ - msgid "" - msgstr "" - "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-10-08 18:47+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2019-11-10 19:02+0100\n" - "Last-Translator: Anders Jonsson \n" - "Language-Team: Swedish \n" -@@ -20,35 +19,35 @@ msgstr "" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - "X-Generator: Poedit 2.2.4\n" - --#: createFolderDialog.js:49 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Nytt mappnamn" - --#: createFolderDialog.js:73 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Skapa" - --#: createFolderDialog.js:75 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "Avbryt" - --#: createFolderDialog.js:146 -+#: createFolderDialog.js:145 - msgid "Folder names cannot contain “/”." - msgstr "Mappnamn kan inte innehålla ”/”." - --#: createFolderDialog.js:149 -+#: createFolderDialog.js:148 - msgid "A folder cannot be called “.”." - msgstr "En mapp kan inte kallas ”.”." - --#: createFolderDialog.js:152 -+#: createFolderDialog.js:151 - msgid "A folder cannot be called “..”." - msgstr "En mapp kan inte kallas ”..”." - --#: createFolderDialog.js:154 -+#: 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:156 -+#: 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" - -@@ -78,47 +77,43 @@ msgstr "Visa den personliga mappen på skrivbordet" - msgid "Show the trash icon in the desktop" - msgstr "Visa papperskorgsikonen på skrivbordet" - --#: desktopGrid.js:328 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Ny mapp" - --#: desktopGrid.js:330 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Klistra in" - --#: desktopGrid.js:331 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Ångra" - --#: desktopGrid.js:332 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Gör om" - --#: desktopGrid.js:334 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Visa skrivbord i Filer" - --#: desktopGrid.js:335 fileItem.js:633 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Öppna i terminal" - --#: desktopGrid.js:337 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Ändra bakgrund…" - --#: desktopGrid.js:339 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Visningsinställningar" - --#: desktopGrid.js:340 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Inställningar" - --#: desktopGrid.js:612 --msgid "Enter file name…" --msgstr "Ange filnamn…" -- --#: desktopGrid.js:629 -+#: desktopGrid.js:653 - msgid "Rename" - msgstr "Byt namn" - -@@ -126,47 +121,47 @@ msgstr "Byt namn" - msgid "Command not found" - msgstr "Kommandot hittades inte" - --#: fileItem.js:500 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Tillåt ej programstart" - --#: fileItem.js:502 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Tillåt programstart" - --#: fileItem.js:601 -+#: fileItem.js:619 - msgid "Open" - msgstr "Öppna" - --#: fileItem.js:605 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Öppna med annat program" - --#: fileItem.js:609 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Klipp ut" - --#: fileItem.js:610 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Kopiera" - --#: fileItem.js:612 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Byt namn…" - --#: fileItem.js:613 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Flytta till papperskorgen" - --#: fileItem.js:623 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Töm papperskorgen" - --#: fileItem.js:629 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Egenskaper" - --#: fileItem.js:631 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Visa i Filer" - -@@ -197,6 +192,9 @@ msgstr "Visa papperskorgsikon" - msgid "Show the trash icon in the desktop." - msgstr "Visa papperskorgsikonen på skrivbordet." - -+#~ msgid "Enter file name…" -+#~ msgstr "Ange filnamn…" -+ - #~ msgid "OK" - #~ msgstr "OK" - -diff --git a/po/tr.po b/po/tr.po -index b640622..3b424f9 100644 ---- a/po/tr.po -+++ b/po/tr.po -@@ -9,9 +9,8 @@ - msgid "" - msgstr "" - "Project-Id-Version: \n" --"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" --"icons/issues\n" --"POT-Creation-Date: 2019-10-08 18:47+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2019-11-03 05:20+0300\n" - "Last-Translator: Sabri Ünal \n" - "Language-Team: Türkçe \n" -@@ -22,35 +21,35 @@ msgstr "" - "X-Generator: Poedit 2.0.6\n" - "Plural-Forms: nplurals=1; plural=0;\n" - --#: createFolderDialog.js:49 -+#: createFolderDialog.js:46 - msgid "New folder name" - msgstr "Yeni klasör adı" - --#: createFolderDialog.js:73 -+#: createFolderDialog.js:70 - msgid "Create" - msgstr "Oluştur" - --#: createFolderDialog.js:75 -+#: createFolderDialog.js:72 - msgid "Cancel" - msgstr "İptal" - --#: createFolderDialog.js:146 -+#: createFolderDialog.js:145 - msgid "Folder names cannot contain “/”." - msgstr "Klasör adları “/” içeremez." - --#: createFolderDialog.js:149 -+#: createFolderDialog.js:148 - msgid "A folder cannot be called “.”." - msgstr "Klasör “.” olarak adlandırılamaz." - --#: createFolderDialog.js:152 -+#: createFolderDialog.js:151 - msgid "A folder cannot be called “..”." - msgstr "Klasör “..” olarak adlandırılamaz." - --#: createFolderDialog.js:154 -+#: 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:156 -+#: createFolderDialog.js:155 - msgid "There is already a file or folder with that name." - msgstr "Zaten bu adda dosya veya klasör var." - -@@ -78,48 +77,43 @@ msgstr "Kişisel klasörü masaüstünde göster" - msgid "Show the trash icon in the desktop" - msgstr "Çöp kutusunu masaüstünde göster" - --#: desktopGrid.js:328 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "Yeni Klasör" - --#: desktopGrid.js:330 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "Yapıştır" - --#: desktopGrid.js:331 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "Geri Al" - --#: desktopGrid.js:332 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "Yinele" - --#: desktopGrid.js:334 -+#: desktopGrid.js:349 - msgid "Show Desktop in Files" - msgstr "Masaüstünü Dosyalarʼda Göster" - --#: desktopGrid.js:335 fileItem.js:633 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Uçbirimde Aç" - --#: desktopGrid.js:337 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "Arka Planı Değiştir…" - --#: desktopGrid.js:339 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "Görüntü Ayarları" - --#: desktopGrid.js:340 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "Ayarlar" - --#: desktopGrid.js:612 --msgid "Enter file name…" --msgstr "Dosya adını gir…" -- --#: desktopGrid.js:629 --#| msgid "Rename…" -+#: desktopGrid.js:653 - msgid "Rename" - msgstr "Yeniden Adlandır" - -@@ -127,47 +121,47 @@ msgstr "Yeniden Adlandır" - msgid "Command not found" - msgstr "Komut bulunamadı" - --#: fileItem.js:500 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Başlatmaya İzin Verme" - --#: fileItem.js:502 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Başlatmaya İzin Ver" - --#: fileItem.js:601 -+#: fileItem.js:619 - msgid "Open" - msgstr "Aç" - --#: fileItem.js:605 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Başka Uygulamayla Aç" - --#: fileItem.js:609 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Kes" - --#: fileItem.js:610 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Kopyala" - --#: fileItem.js:612 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Yeniden Adlandır…" - --#: fileItem.js:613 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Çöpe Taşı" - --#: fileItem.js:623 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Çöpü Boşalt" - --#: fileItem.js:629 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Özellikler" - --#: fileItem.js:631 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Dosyalarʼda Göster" - -@@ -195,5 +189,8 @@ msgstr "Çöp kutusunu göster" - msgid "Show the trash icon in the desktop." - msgstr "Çöp kutusu simgesini masaüstünde göster." - -+#~ msgid "Enter file name…" -+#~ msgstr "Dosya adını gir…" -+ - #~ msgid "OK" - #~ msgstr "Tamam" -diff --git a/po/uk.po b/po/uk.po -index 3595887..9d4d369 100644 ---- a/po/uk.po -+++ b/po/uk.po -@@ -6,9 +6,8 @@ - msgid "" - msgstr "" - "Project-Id-Version: desktop-icons master\n" --"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-i" --"cons/issues\n" --"POT-Creation-Date: 2020-03-19 20:31+0000\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2020-03-26 18:33+0200\n" - "Last-Translator: Yuri Chornoivan \n" - "Language-Team: Ukrainian \n" -@@ -96,7 +95,7 @@ msgstr "Повторити" - msgid "Show Desktop in Files" - msgstr "Показувати «Стільницю» у «Файлах»" - --#: desktopGrid.js:350 fileItem.js:645 -+#: desktopGrid.js:350 fileItem.js:651 - msgid "Open in Terminal" - msgstr "Відкрити у терміналі" - -@@ -120,47 +119,47 @@ msgstr "Перейменувати" - msgid "Command not found" - msgstr "Команди не знайдено" - --#: fileItem.js:515 -+#: fileItem.js:521 - msgid "Don’t Allow Launching" - msgstr "Не дозволяти запуск" - --#: fileItem.js:517 -+#: fileItem.js:523 - msgid "Allow Launching" - msgstr "Дозволяти запуск" - --#: fileItem.js:613 -+#: fileItem.js:619 - msgid "Open" - msgstr "Відкрити" - --#: fileItem.js:617 -+#: fileItem.js:623 - msgid "Open With Other Application" - msgstr "Відкрити за допомогою іншої програми" - --#: fileItem.js:621 -+#: fileItem.js:627 - msgid "Cut" - msgstr "Вирізати" - --#: fileItem.js:622 -+#: fileItem.js:628 - msgid "Copy" - msgstr "Копіювати" - --#: fileItem.js:624 -+#: fileItem.js:630 - msgid "Rename…" - msgstr "Перейменувати…" - --#: fileItem.js:625 -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "Пересунути до смітника" - --#: fileItem.js:635 -+#: fileItem.js:641 - msgid "Empty Trash" - msgstr "Спорожнити смітник" - --#: fileItem.js:641 -+#: fileItem.js:647 - msgid "Properties" - msgstr "Властивості" - --#: fileItem.js:643 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "Показувати у «Файлах»" - -diff --git a/po/zh_TW.po b/po/zh_TW.po -index 8ce4ab9..90c41ee 100644 ---- a/po/zh_TW.po -+++ b/po/zh_TW.po -@@ -6,130 +6,188 @@ - msgid "" - msgstr "" - "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" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2020-04-05 21:12+0200\n" - "PO-Revision-Date: 2018-10-24 21:31+0800\n" -+"Last-Translator: pan93412 \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" - --#: prefs.js:89 -+#: createFolderDialog.js:46 -+#, fuzzy -+msgid "New folder name" -+msgstr "新增資料夾" -+ -+#: createFolderDialog.js:70 -+msgid "Create" -+msgstr "" -+ -+#: createFolderDialog.js:72 -+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:89 -+#: prefs.js:102 - msgid "Small" - msgstr "小圖示" - --#: prefs.js:89 -+#: prefs.js:102 - msgid "Standard" - msgstr "標準大小圖示" - --#: prefs.js:89 -+#: prefs.js:102 - msgid "Large" - msgstr "大圖示" - --#: prefs.js:89 --msgid "Huge" --msgstr "巨大圖示" -- --#: prefs.js:90 -+#: prefs.js:103 - msgid "Show the personal folder in the desktop" - msgstr "在桌面顯示個人資料夾" - --#: prefs.js:91 -+#: prefs.js:104 - msgid "Show the trash icon in the desktop" - msgstr "在桌面顯示垃圾桶圖示" - --#: desktopGrid.js:178 desktopGrid.js:297 -+#: desktopGrid.js:343 - msgid "New Folder" - msgstr "新增資料夾" - --#: desktopGrid.js:299 -+#: desktopGrid.js:345 - msgid "Paste" - msgstr "貼上" - --#: desktopGrid.js:300 -+#: desktopGrid.js:346 - msgid "Undo" - msgstr "復原" - --#: desktopGrid.js:301 -+#: desktopGrid.js:347 - msgid "Redo" - msgstr "重做" - --#: desktopGrid.js:303 --msgid "Open Desktop in Files" -+#: desktopGrid.js:349 -+#, fuzzy -+msgid "Show Desktop in Files" - msgstr "在《檔案》中開啟桌面" - --#: desktopGrid.js:304 --msgid "Open Terminal" -+#: desktopGrid.js:350 fileItem.js:651 -+#, fuzzy -+msgid "Open in Terminal" - msgstr "開啟終端器" - --#: desktopGrid.js:306 -+#: desktopGrid.js:352 - msgid "Change Background…" - msgstr "變更背景圖片…" - --#: desktopGrid.js:307 -+#: desktopGrid.js:354 - msgid "Display Settings" - msgstr "顯示設定" - --#: desktopGrid.js:308 -+#: desktopGrid.js:355 - msgid "Settings" - msgstr "設定" - --#: fileItem.js:223 -+#: desktopGrid.js:653 -+msgid "Rename" -+msgstr "" -+ -+#: desktopIconsUtil.js:61 -+msgid "Command not found" -+msgstr "" -+ -+#: fileItem.js:521 -+msgid "Don’t Allow Launching" -+msgstr "" -+ -+#: fileItem.js:523 -+msgid "Allow Launching" -+msgstr "" -+ -+#: fileItem.js:619 - msgid "Open" - msgstr "開啟" - --#: fileItem.js:226 -+#: fileItem.js:623 -+msgid "Open With Other Application" -+msgstr "" -+ -+#: fileItem.js:627 - msgid "Cut" - msgstr "剪下" - --#: fileItem.js:227 -+#: fileItem.js:628 - msgid "Copy" - msgstr "複製" - --#: fileItem.js:228 -+#: fileItem.js:630 -+msgid "Rename…" -+msgstr "" -+ -+#: fileItem.js:631 - msgid "Move to Trash" - msgstr "移動到垃圾桶" - --#: fileItem.js:232 --msgid "Empty trash" -+#: fileItem.js:641 -+#, fuzzy -+msgid "Empty Trash" - msgstr "清空回收桶" - --#: fileItem.js:238 -+#: fileItem.js:647 - msgid "Properties" - msgstr "屬性" - --#: fileItem.js:240 -+#: fileItem.js:649 - msgid "Show in Files" - msgstr "在《檔案》中顯示" - --#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 -+#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 - msgid "Icon size" - msgstr "圖示大小" - --#: 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 "設定桌面圖示的大小。" - --#: 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 "顯示個人資料夾" - --#: 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 "在桌面顯示個人資料夾。" - --#: 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 "顯示垃圾桶圖示" - --#: 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 "在桌面顯示垃圾桶圖示。" -+ -+#~ msgid "Huge" -+#~ msgstr "巨大圖示" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/debian/patches/series gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/series --- gnome-shell-extension-desktop-icons-20.04.0/debian/patches/series 2020-04-16 07:10:08.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/series 2020-12-07 18:16:04.000000000 +0000 @@ -1,5 +1,6 @@ -po-Updated-po-files.patch -Update-Finnish-translation.patch -Add-Persian-translation.patch -Update-Russian-translation.patch -Update-Italian-translation.patch +cleanup-Use-template-strings-to-write-in-logs.patch +desktopManager-Use-Shell-s-native-switcheroo-controller.patch +createFolderDialog-Port-to-use-new-shell-dialog-APIs.patch +metadata-Bump-dependency-on-gnome-shell-3.38.patch +desktopManager-Avoid-scheduling-multiple-_layoutChildren-.patch +desktopManager-Allocate-the-draggable-actor-before-starti.patch diff -Nru gnome-shell-extension-desktop-icons-20.04.0/debian/patches/Update-Finnish-translation.patch gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/Update-Finnish-translation.patch --- gnome-shell-extension-desktop-icons-20.04.0/debian/patches/Update-Finnish-translation.patch 2020-04-16 07:10:08.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/Update-Finnish-translation.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -From: =?utf-8?q?Jiri_Gr=C3=B6nroos?= -Date: Mon, 6 Apr 2020 16:17:52 +0200 -Subject: Update Finnish translation - -https://gitlab.gnome.org/World/ShellExtensions/desktop-icons/-/commit/78bb4035 ---- - po/fi.po | 11 ++++++----- - 1 file changed, 6 insertions(+), 5 deletions(-) - -diff --git a/po/fi.po b/po/fi.po -index 8a1f813..a1340e5 100644 ---- a/po/fi.po -+++ b/po/fi.po -@@ -6,9 +6,10 @@ - msgid "" - msgstr "" - "Project-Id-Version: desktop-icons master\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2020-04-05 21:12+0200\n" --"PO-Revision-Date: 2020-02-23 13:36+0200\n" -+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -+"icons/issues\n" -+"POT-Creation-Date: 2020-04-05 19:13+0000\n" -+"PO-Revision-Date: 2020-04-06 17:17+0300\n" - "Last-Translator: Jiri Grönroos \n" - "Language-Team: Finnish \n" - "Language: fi\n" -@@ -52,7 +53,7 @@ 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" -+msgstr "Työpöydän kuvakkeiden koko" - - #: prefs.js:102 - msgid "Small" -@@ -100,7 +101,7 @@ msgstr "Avaa päätteessä" - - #: desktopGrid.js:352 - msgid "Change Background…" --msgstr "Vaihda taustakuvaa…" -+msgstr "Vaihda taustakuva…" - - #: desktopGrid.js:354 - msgid "Display Settings" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/debian/patches/Update-Italian-translation.patch gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/Update-Italian-translation.patch --- gnome-shell-extension-desktop-icons-20.04.0/debian/patches/Update-Italian-translation.patch 2020-04-16 07:10:08.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/Update-Italian-translation.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,70 +0,0 @@ -From: Milo Casagrande -Date: Tue, 7 Apr 2020 09:37:58 +0200 -Subject: Update Italian translation - -https://gitlab.gnome.org/World/ShellExtensions/desktop-icons/-/commit/7baf30c2 ---- - po/it.po | 24 +++++++++--------------- - 1 file changed, 9 insertions(+), 15 deletions(-) - -diff --git a/po/it.po b/po/it.po -index e05476c..bd3eb24 100644 ---- a/po/it.po -+++ b/po/it.po -@@ -1,15 +1,16 @@ - # Italian translation for desktop-icons. --# Copyright (C) 2019 desktop-icons's COPYRIGHT HOLDER -+# Copyright (C) 2019, 2020 desktop-icons's COPYRIGHT HOLDER - # This file is distributed under the same license as the desktop-icons package. - # Massimo Branchini , 2019. --# Milo Casagrande , 2019. -+# Milo Casagrande , 2019, 2020. - # - msgid "" - msgstr "" - "Project-Id-Version: desktop-icons master\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2020-04-05 21:12+0200\n" --"PO-Revision-Date: 2019-03-12 09:51+0100\n" -+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -+"icons/issues\n" -+"POT-Creation-Date: 2020-04-05 19:13+0000\n" -+"PO-Revision-Date: 2020-04-07 09:36+0200\n" - "Last-Translator: Milo Casagrande \n" - "Language-Team: Italian \n" - "Language: it\n" -@@ -17,7 +18,7 @@ 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.2.1\n" -+"X-Generator: Poedit 2.2.4\n" - - #: createFolderDialog.js:46 - msgid "New folder name" -@@ -112,13 +113,12 @@ msgid "Settings" - msgstr "Impostazioni" - - #: desktopGrid.js:653 --#, fuzzy - msgid "Rename" --msgstr "Rinomina…" -+msgstr "Rinomina" - - #: desktopIconsUtil.js:61 - msgid "Command not found" --msgstr "" -+msgstr "Comando non trovato" - - #: fileItem.js:521 - msgid "Don’t Allow Launching" -@@ -187,9 +187,3 @@ 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." -- --#~ msgid "Enter file name…" --#~ msgstr "Indicare un nome per il file…" -- --#~ msgid "OK" --#~ msgstr "Ok" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/debian/patches/Update-Russian-translation.patch gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/Update-Russian-translation.patch --- gnome-shell-extension-desktop-icons-20.04.0/debian/patches/Update-Russian-translation.patch 2020-04-16 07:10:08.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/debian/patches/Update-Russian-translation.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,143 +0,0 @@ -From: Stas Solovey -Date: Mon, 6 Apr 2020 22:00:13 +0200 -Subject: Update Russian translation - -https://gitlab.gnome.org/World/ShellExtensions/desktop-icons/-/commit/3c34040b ---- - po/ru.po | 39 +++++++++++++++++---------------------- - 1 file changed, 17 insertions(+), 22 deletions(-) - -diff --git a/po/ru.po b/po/ru.po -index 3ea35a1..a373301 100644 ---- a/po/ru.po -+++ b/po/ru.po -@@ -8,7 +8,7 @@ msgstr "" - "Project-Id-Version: \n" - "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2020-04-05 21:12+0200\n" --"PO-Revision-Date: 2018-11-22 22:02+0300\n" -+"PO-Revision-Date: 2020-04-06 22:29+0300\n" - "Last-Translator: Stas Solovey \n" - "Language-Team: Russian \n" - "Language: ru\n" -@@ -17,16 +17,15 @@ msgstr "" - "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: Poedit 2.3\n" - - #: createFolderDialog.js:46 --#, fuzzy - msgid "New folder name" --msgstr "Создать папку" -+msgstr "Имя новой папки" - - #: createFolderDialog.js:70 - msgid "Create" --msgstr "" -+msgstr "Создать" - - #: createFolderDialog.js:72 - msgid "Cancel" -@@ -34,23 +33,23 @@ msgstr "Отмена" - - #: createFolderDialog.js:145 - msgid "Folder names cannot contain “/”." --msgstr "" -+msgstr "Имена папок не могут содержать «/»." - - #: createFolderDialog.js:148 - msgid "A folder cannot be called “.”." --msgstr "" -+msgstr "Папка не может быть названа как «.»." - - #: createFolderDialog.js:151 - msgid "A folder cannot be called “..”." --msgstr "" -+msgstr "Папка не может быть названа как «..»." - - #: createFolderDialog.js:153 - msgid "Folders with “.” at the beginning of their name are hidden." --msgstr "" -+msgstr "Папки с точкой «.» в начале их имени скрываются." - - #: createFolderDialog.js:155 - msgid "There is already a file or folder with that name." --msgstr "" -+msgstr "Файл или папка с таким именем уже существует." - - #: prefs.js:102 - msgid "Size for the desktop icons" -@@ -93,14 +92,12 @@ msgid "Redo" - msgstr "Повторить" - - #: desktopGrid.js:349 --#, fuzzy - msgid "Show Desktop in Files" --msgstr "Открыть «Рабочий стол» в «Файлах»" -+msgstr "Показывать папку «Рабочий стол» в приложении «Файлы»" - - #: desktopGrid.js:350 fileItem.js:651 --#, fuzzy - msgid "Open in Terminal" --msgstr "Открыть терминал" -+msgstr "Открыть в терминале" - - #: desktopGrid.js:352 - msgid "Change Background…" -@@ -120,15 +117,15 @@ msgstr "Переименовать" - - #: desktopIconsUtil.js:61 - msgid "Command not found" --msgstr "" -+msgstr "Команда не найдена" - - #: fileItem.js:521 - msgid "Don’t Allow Launching" --msgstr "" -+msgstr "Запретить запуск" - - #: fileItem.js:523 - msgid "Allow Launching" --msgstr "" -+msgstr "Разрешить запуск" - - #: fileItem.js:619 - msgid "Open" -@@ -136,7 +133,7 @@ msgstr "Открыть" - - #: fileItem.js:623 - msgid "Open With Other Application" --msgstr "" -+msgstr "Открыть в другом приложении" - - #: fileItem.js:627 - msgid "Cut" -@@ -147,16 +144,14 @@ msgid "Copy" - msgstr "Вставить" - - #: fileItem.js:630 --#, fuzzy - msgid "Rename…" --msgstr "Переименовать" -+msgstr "Переименовать…" - - #: fileItem.js:631 - msgid "Move to Trash" - msgstr "Переместить в корзину" - - #: fileItem.js:641 --#, fuzzy - msgid "Empty Trash" - msgstr "Очистить корзину" - -@@ -174,7 +169,7 @@ msgstr "Размер значков" - - #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 - msgid "Set the size for the desktop icons." --msgstr "Установить размер значков на рабочем столе." -+msgstr "Установить размер значков рабочего стола." - - #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 - msgid "Show personal folder" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/desktopGrid.js gnome-shell-extension-desktop-icons-20.04.0+git20200908/desktopGrid.js --- gnome-shell-extension-desktop-icons-20.04.0/desktopGrid.js 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/desktopGrid.js 2020-09-08 08:05:17.000000000 +0000 @@ -127,7 +127,7 @@ this._grid.connect('key-press-event', this._onKeyPress.bind(this)); - this._grid.connect('allocation-changed', () => Extension.desktopManager.scheduleReLayoutChildren()); + this._grid.connect('notify::allocation', () => Extension.desktopManager.scheduleReLayoutChildren()); let themeNodeBase = this.get_theme_node(); let themeContext = St.ThemeContext.get_for_stage(global.stage); @@ -155,39 +155,42 @@ let symbol = event.get_key_symbol(); let isCtrl = (event.get_state() & Clutter.ModifierType.CONTROL_MASK) != 0; let isShift = (event.get_state() & Clutter.ModifierType.SHIFT_MASK) != 0; - if (isCtrl && isShift && [Clutter.Z, Clutter.z].indexOf(symbol) > -1) { + + if (isCtrl && isShift && [Clutter.KEY_Z, Clutter.KEY_z].indexOf(symbol) > -1) { this._doRedo(); return Clutter.EVENT_STOP; } - else if (isCtrl && [Clutter.Z, Clutter.z].indexOf(symbol) > -1) { + else if (isCtrl && [Clutter.KEY_Z, Clutter.KEY_z].indexOf(symbol) > -1) { this._doUndo(); return Clutter.EVENT_STOP; } - else if (isCtrl && [Clutter.C, Clutter.c].indexOf(symbol) > -1) { + else if (isCtrl && [Clutter.KEY_C, Clutter.KEY_c].indexOf(symbol) > -1) { Extension.desktopManager.doCopy(); return Clutter.EVENT_STOP; } - else if (isCtrl && [Clutter.X, Clutter.x].indexOf(symbol) > -1) { + else if (isCtrl && [Clutter.KEY_X, Clutter.KEY_x].indexOf(symbol) > -1) { Extension.desktopManager.doCut(); return Clutter.EVENT_STOP; } - else if (isCtrl && [Clutter.V, Clutter.v].indexOf(symbol) > -1) { + else if (isCtrl && [Clutter.KEY_V, Clutter.KEY_v].indexOf(symbol) > -1) { this._doPaste(); return Clutter.EVENT_STOP; } - else if (symbol == Clutter.Return) { + else if (symbol == Clutter.KEY_Return) { Extension.desktopManager.doOpen(); return Clutter.EVENT_STOP; } - else if (symbol == Clutter.Delete) { + else if (symbol == Clutter.KEY_Delete) { Extension.desktopManager.doTrash(); return Clutter.EVENT_STOP; - } else if (symbol == Clutter.F2) { + } else if (symbol == Clutter.KEY_F2) { // Support renaming other grids file items. Extension.desktopManager.doRename(); return Clutter.EVENT_STOP; + } else if (symbol == Clutter.KEY_space) { + Extension.desktopManager.doPreview(); + return Clutter.EVENT_STOP; } - return Clutter.EVENT_PROPAGATE; } @@ -341,6 +344,8 @@ let menu = new PopupMenu.PopupMenu(Main.layoutManager.dummyCursor, 0, St.Side.TOP); menu.addAction(_("New Folder"), () => this._onNewFolderClicked()); + this._submenu = new PopupMenu.PopupSubMenuMenuItem(_("New Document"), false); + menu.addMenuItem(this._submenu); menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem()); this._pasteMenuItem = menu.addAction(_("Paste"), () => this._onPasteClicked()); this._undoMenuItem = menu.addAction(_("Undo"), () => this._onUndoClicked()); @@ -384,6 +389,16 @@ _openMenu(x, y) { Main.layoutManager.setDummyCursorGeometry(x, y, 0, 0); + this._submenu.menu.removeAll(); + let templates = Extension.templateManager.getTemplates(); + if (templates.length == 0) { + this._submenu.hide(); + } else { + for(let template of templates) { + this._submenu.menu.addAction(template["name"], () => {this._newDocument(template)}, template["icon"]); + } + this._submenu.show(); + } this._desktopBackgroundMenu.open(BoxPointer.PopupAnimation.NONE); /* Since the handler is in the press event it needs to ignore the release event * to not immediately close the menu on release @@ -391,6 +406,32 @@ this._menuManager.ignoreRelease(); } + _newDocument(template) { + let file = Extension.templateManager.getTemplateFile(template["file"]); + if (file == null) + return; + let counter = 0; + let finalName = `${template["name"]}${template["extension"]}`; + let destination; + do { + if (counter != 0) { + finalName = `${template["name"]} ${counter}${template["extension"]}` + } + destination = Gio.File.new_for_path( + GLib.build_filenamev([GLib.get_user_special_dir(GLib.UserDirectory.DIRECTORY_DESKTOP), + finalName]) + ); + counter++; + } while(destination.query_exists(null)); + file.copy_async(destination, Gio.FileCopyFlags.NONE, GLib.PRIORITY_DEFAULT, null, null, (source, result) => { + try { + source.copy_finish(result); + } catch(e) { + log(`Failed to create template ${e.message}`); + } + }); + } + _addFileItemTo(fileItem, column, row, coordinatesAction) { let placeholder = this.layout.get_child_at(column, row); placeholder.child = fileItem; @@ -424,25 +465,23 @@ } _getEmptyPlaceClosestTo(x, y, coordinatesAction) { - let maxColumns = this._getMaxColumns(); - let maxRows = this._getMaxRows(); let [actorX, actorY] = this._grid.get_transformed_position(); let actorWidth = this._grid.allocation.x2 - this._grid.allocation.x1; let actorHeight = this._grid.allocation.y2 - this._grid.allocation.y1; - let placeX = Math.round((x - actorX) * maxColumns / actorWidth); - let placeY = Math.round((y - actorY) * maxRows / actorHeight); + let placeX = Math.round((x - actorX) * this._columns / actorWidth); + let placeY = Math.round((y - actorY) * this._rows / actorHeight); - placeX = DesktopIconsUtil.clamp(placeX, 0, maxColumns - 1); - placeY = DesktopIconsUtil.clamp(placeY, 0, maxRows - 1); + placeX = DesktopIconsUtil.clamp(placeX, 0, this._columns - 1); + placeY = DesktopIconsUtil.clamp(placeY, 0, this._rows - 1); if (this.layout.get_child_at(placeX, placeY).child == null) return [placeX, placeY]; let found = false; let resColumn = null; let resRow = null; let minDistance = Infinity; - for (let column = 0; column < maxColumns; column++) { - for (let row = 0; row < maxRows; row++) { + for (let column = 0; column < this._columns; column++) { + for (let row = 0; row < this._rows; row++) { let placeholder = this.layout.get_child_at(column, row); if (placeholder.child != null) continue; @@ -482,13 +521,19 @@ } _fillPlaceholders() { - for (let column = 0; column < this._getMaxColumns(); column++) { - for (let row = 0; row < this._getMaxRows(); row++) { + this._rows = this._getMaxRows(); + this._columns = this._getMaxColumns(); + for (let column = 0; column < this._columns; column++) { + for (let row = 0; row < this._rows; row++) { this.layout.attach(new Placeholder(), column, row, 1, 1); } } } + usingNewAllocationAPI() { + return (this.get_fixed_position !== undefined); + } + reset() { let tmpFileItemsCopy = this._fileItems.slice(); for (let fileItem of tmpFileItemsCopy) @@ -496,6 +541,9 @@ this._grid.remove_all_children(); this._fillPlaceholders(); + + if (this.usingNewAllocationAPI()) + this.allocate_preferred_size(0, 0); } _onStageMotion(actor, event) { @@ -569,12 +617,10 @@ throw new Error('Error at _getPosOfFileItem: child cannot be null'); let found = false; - let maxColumns = this._getMaxColumns(); - let maxRows = this._getMaxRows(); let column = 0; let row = 0; - for (column = 0; column < maxColumns; column++) { - for (row = 0; row < maxRows; row++) { + for (column = 0; column < this._columns; column++) { + for (row = 0; row < this._rows; row++) { let item = this.layout.get_child_at(column, row); if (item.child && item.child.file.equal(itemToFind.file)) { found = true; @@ -592,7 +638,7 @@ return [column, row]; } - _onFileItemSelected(fileItem, keepCurrentSelection, addToSelection) { + _onFileItemSelected(fileItem, keepCurrentSelection, rubberBandSelection, addToSelection) { this._grid.grab_key_focus(); } diff -Nru gnome-shell-extension-desktop-icons-20.04.0/desktop-icons.doap gnome-shell-extension-desktop-icons-20.04.0+git20200908/desktop-icons.doap --- gnome-shell-extension-desktop-icons-20.04.0/desktop-icons.doap 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/desktop-icons.doap 2020-09-08 08:05:17.000000000 +0000 @@ -0,0 +1,15 @@ + + Desktop Icons + A Gnome Shell extension for providing desktop icons. + A Gnome Shell extension that provides desktop icons, compatible with both X11 and Wayland. + + javascript + + + + Sergio Costas + + eea02cdfec3be0f3156f1259e055f5fa59161758 + + + diff -Nru gnome-shell-extension-desktop-icons-20.04.0/desktopIconsUtil.js gnome-shell-extension-desktop-icons-20.04.0+git20200908/desktopIconsUtil.js --- gnome-shell-extension-desktop-icons-20.04.0/desktopIconsUtil.js 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/desktopIconsUtil.js 2020-09-08 08:05:17.000000000 +0000 @@ -22,6 +22,8 @@ const ExtensionUtils = imports.misc.extensionUtils; const Me = ExtensionUtils.getCurrentExtension(); const Prefs = Me.imports.prefs; +const Main = imports.ui.main; +const ShellMountOperation = imports.ui.shellMountOperation; const TERMINAL_SCHEMA = 'org.gnome.desktop.default-applications.terminal'; const EXEC_KEY = 'exec'; @@ -121,3 +123,42 @@ context.add_class(classname); return context.get_background_color(state); } + +// Reference the extension org.gnome.shell.extensions.drive-menu +function eject(mount) { + let unmountArgs = [ + Gio.MountUnmountFlags.NONE, + (new ShellMountOperation.ShellMountOperation(mount)).mountOp, + null, // Gio.Cancellable + ]; + + if (mount.can_eject()) { + mount.eject_with_operation(...unmountArgs, + _ejectFinish.bind(mount)); + } else { + mount.unmount_with_operation(...unmountArgs, + _unmountFinish.bind(mount)); + } +} + +function _unmountFinish(mount, result) { + try { + mount.unmount_with_operation_finish(result); + } catch (e) { + this._reportFailure(e); + } +} + +function _ejectFinish(mount, result) { + try { + mount.eject_with_operation_finish(result); + } catch (e) { + this._reportFailure(e); + } +} + +function _reportFailure(exception) { + // TRANSLATORS: %s is the filesystem name + let msg = _('Ejecting drive “%s” failed:').format(this.mount.get_name()); + Main.notifyError(msg, exception.message); +} diff -Nru gnome-shell-extension-desktop-icons-20.04.0/desktopManager.js gnome-shell-extension-desktop-icons-20.04.0+git20200908/desktopManager.js --- gnome-shell-extension-desktop-icons-20.04.0/desktopManager.js 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/desktopManager.js 2020-09-08 08:05:17.000000000 +0000 @@ -40,9 +40,15 @@ const DBusUtils = Me.imports.dbusUtils; const DesktopIconsUtil = Me.imports.desktopIconsUtil; +const { loadInterfaceXML } = imports.misc.fileUtils; + const Clipboard = St.Clipboard.get_default(); const CLIPBOARD_TYPE = St.ClipboardType.CLIPBOARD; +const SWITCHEROO_BUS_NAME = 'net.hadess.SwitcherooControl'; +const SWITCHEROO_OBJECT_PATH = '/net/hadess/SwitcherooControl'; + +var SwitcherooProxy; var S_IWOTH = 0x00002; function getDpy() { @@ -79,6 +85,7 @@ this._queryFileInfoCancellable = null; this._unixMode = null; this._writableByOthers = null; + this._discreteGpuAvailable = false; this._monitorsChangedId = Main.layoutManager.connect('monitors-changed', () => this._recreateDesktopIcons()); this._rubberBand = new St.Widget({ style_class: 'rubber-band' }); @@ -86,6 +93,12 @@ Main.layoutManager._backgroundGroup.add_child(this._rubberBand); this._grabHelper = new GrabHelper.GrabHelper(global.stage); + this._mountMonitor = Gio.VolumeMonitor.get(); + this._mountAddedId = this._mountMonitor.connect('mount-added', (monitor, mount) => { + this._recreateDesktopIcons(); }); + this._mountRemovedId = this._mountMonitor.connect('mount-removed', (monitor, mount) => { + this._recreateDesktopIcons(); }); + this._addDesktopIcons(); this._monitorDesktopFolder(); @@ -104,6 +117,36 @@ this._inDrag = false; this._dragXStart = Number.POSITIVE_INFINITY; this._dragYStart = Number.POSITIVE_INFINITY; + + Gio.DBus.system.watch_name(SWITCHEROO_BUS_NAME, + Gio.BusNameWatcherFlags.NONE, + this._switcherooProxyAppeared.bind(this), + () => { + this._switcherooProxy = null; + this._updateDiscreteGpuAvailable(); + }); + } + + _updateDiscreteGpuAvailable() { + if (this._switcherooProxy) + this._discreteGpuAvailable = this._switcherooProxy.HasDualGpu; + else + this._discreteGpuAvailable = false; + } + + _switcherooProxyAppeared() { + let SwitcherooProxyInterface = loadInterfaceXML('net.hadess.SwitcherooControl'); + SwitcherooProxy = Gio.DBusProxy.makeProxyWrapper(SwitcherooProxyInterface); + this._switcherooProxy = new SwitcherooProxy(Gio.DBus.system, + SWITCHEROO_BUS_NAME, + SWITCHEROO_OBJECT_PATH, + (proxy, error) => { + if (error) { + log(error.message); + return; + } + this._updateDiscreteGpuAvailable(); + }); } startRubberBand(x, y) { @@ -238,8 +281,14 @@ } try { + let items = []; + for (let item of await this._enumerateDesktop()) + items.push(item); + for (let item of this._getMounts()) + items.push(item); + let tmpFileItems = new Map(); - for (let [file, info, extra] of await this._enumerateDesktop()) { + for (let [file, info, extra] of items) { let fileItem = new FileItem.FileItem(file, info, extra); tmpFileItems.set(fileItem.file.get_uri(), fileItem); let fileItemHandler = {} @@ -311,6 +360,33 @@ this._monitorDesktopDir.connect('changed', (obj, file, otherFile, eventType) => this._updateDesktopIfChanged(file, otherFile, eventType)); } + _getMounts() { + let files = []; + if (!Prefs.settings.get_boolean('show-mount')) + return files; + + this._mountMonitor.get_mounts().forEach( mount => { + if (this._isNetworkMount(mount)) + return; + + let file = mount.get_root(); + let info = file.query_info(DesktopIconsUtil.DEFAULT_ATTRIBUTES, + Gio.FileQueryInfoFlags.NONE, + null); + files.push([file, info, Prefs.FileType.MOUNT_DISK]); + }); + + return files; + } + + _isNetworkMount(mount) { + let volume = mount.get_volume(); + if (!volume) + return true; + + return volume.get_identifier('class') == 'network'; + } + checkIfSpecialFilesAreSelected() { for (let fileItem of this._selection) { if (fileItem.isSpecial) @@ -335,6 +411,18 @@ this.notify('writable-by-others'); } + get discreteGpuAvailable() { + return this._discreteGpuAvailable; + } + + get switcherooProxyGPUs() { + if (!this._switcherooProxy) { + log('Could not apply discrete GPU environment, switcheroo-control not available'); + return null; + } + return this._switcherooProxy.GPUs; + } + _updateDesktopIfChanged (file, otherFile, eventType) { let { DELETED, MOVED_IN, MOVED_OUT, CREATED, RENAMED, CHANGES_DONE_HINT, ATTRIBUTE_CHANGED @@ -658,6 +746,14 @@ item.doRename(); } + doPreview() { + if (this._selection.size == 0) + return; + + let item = [...this._selection][0]; + DBusUtils.GnomeNautilusPreviewProxy.ShowFileRemote(item.file.get_uri(), 0, false); + } + doOpen() { for (let fileItem of this._selection) fileItem.doOpen(); @@ -723,6 +819,13 @@ this._monitorDesktopDir.cancel(); this._monitorDesktopDir = null; + if (this._mountAddedId) + this._mountMonitor.disconnect(this._mountAddedId); + this._mountAddedId = 0; + if (this._mountRemovedId) + this._mountMonitor.disconnect(this._mountRemovedId); + this._mountRemovedId = 0; + if (this.settingsId) Prefs.settings.disconnect(this.settingsId); this.settingsId = 0; diff -Nru gnome-shell-extension-desktop-icons-20.04.0/extension.js gnome-shell-extension-desktop-icons-20.04.0+git20200908/extension.js --- gnome-shell-extension-desktop-icons-20.04.0/extension.js 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/extension.js 2020-09-08 08:05:17.000000000 +0000 @@ -22,9 +22,11 @@ const Me = ExtensionUtils.getCurrentExtension(); const Prefs = Me.imports.prefs; const { DesktopManager } = Me.imports.desktopManager; +const { TemplateManager } = Me.imports.templateManager; const DBusUtils = Me.imports.dbusUtils; var desktopManager = null; +var templateManager = null; var addBackgroundMenuOrig = null; var _startupPreparedId; var lockActivitiesButton = false; @@ -62,10 +64,12 @@ Prefs.init(); Main.layoutManager._addBackgroundMenu = function() {}; desktopManager = new DesktopManager(); + templateManager = new TemplateManager(); } function disable() { desktopManager.destroy(); + templateManager.destroy(); Main.layoutManager._addBackgroundMenu = addBackgroundMenuOrig; Main.overview.shouldToggleByCornerOrButton = oldShouldToggleByCornerOrButtonFunction; } diff -Nru gnome-shell-extension-desktop-icons-20.04.0/fileItem.js gnome-shell-extension-desktop-icons-20.04.0+git20200908/fileItem.js --- gnome-shell-extension-desktop-icons-20.04.0/fileItem.js 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/fileItem.js 2020-09-08 08:05:17.000000000 +0000 @@ -77,6 +77,9 @@ this._isSpecial = this._fileExtra != Prefs.FileType.NONE; this._file = file; + this._mount = null; + if (this._fileExtra == Prefs.FileType.MOUNT_DISK) + this._mount = this._file.find_enclosing_mount(null); this._savedCoordinates = null; let savedCoordinates = fileInfo.get_attribute_as_string('metadata::nautilus-icon-position'); @@ -85,7 +88,9 @@ this._state = State.NORMAL; - this.set_fill(true, true); + try { + this.set_fill(true, true); + } catch(error) {} let scaleFactor = St.ThemeContext.get_for_stage(global.stage).scale_factor; this._delegate = this; this.connect('destroy', () => this._onDestroy()); @@ -101,6 +106,17 @@ this.set_child(this._container); this._icon = new St.Bin(); this._icon.set_height(Prefs.get_icon_size() * scaleFactor); + this._iconAllocationIdleId = 0; + this._iconAllocationId = this._icon.connect("notify::allocation", () => { + if (this._iconAllocationIdleId) + GLib.source_remove(this._iconAllocationIdleId); + this._iconAllocationIdleId = GLib.idle_add(GLib.PRIORITY_DEFAULT, () => { + GLib.source_remove(this._iconAllocationIdleId); + this._iconAllocationIdleId = 0; + this._updateIcon(); + return GLib.SOURCE_REMOVE; + }); + }); this._iconContainer = new St.Bin({ visible: true }); this._iconContainer.child = this._icon; @@ -206,6 +222,11 @@ if (this._scheduleTrashRefreshId) GLib.source_remove(this._scheduleTrashRefreshId); + /* Icon */ + this._icon.disconnect(this._iconAllocationId); + if (this._iconAllocationIdleId) + GLib.source_remove(this._iconAllocationIdleId); + /* Menu */ this._removeMenu(); } @@ -223,10 +244,9 @@ let newFileInfo = source.query_info_finish(result); this._queryFileInfoCancellable = null; this._updateMetadataFromFileInfo(newFileInfo); - if (rebuild) { + if (rebuild) this._recreateMenu(); - this._updateIcon(); - } + this._updateIcon(); } catch(error) { if (!error.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED)) global.log("Error getting the file info: " + error); @@ -291,6 +311,10 @@ this._icon.child = this._createEmblemedStIcon(this._fileInfo.get_icon(), null); return; } + if (this._fileExtra == Prefs.FileType.MOUNT_DISK) { + this._icon.child = this._createEmblemedStIcon(this._mount.get_icon(), null); + return; + } let thumbnailFactory = GnomeDesktop.DesktopThumbnailFactory.new(GnomeDesktop.DesktopThumbnailSize.LARGE); if ((Prefs.nautilusSettings.get_string('show-image-thumbnails') != 'never') && @@ -346,18 +370,22 @@ ); let icon = new Clutter.Actor(); icon.set_content(thumbnailImage); - let containerWidth = Prefs.getDesiredWidth(scaleFactor, 0); + let containerWidth = (this._icon.allocation.x2 - this._icon.allocation.x1) * scaleFactor; let containerHeight = Prefs.get_icon_size() * scaleFactor; let containerAspectRatio = containerWidth / containerHeight; let iconAspectRatio = thumbnailPixbuf.width / thumbnailPixbuf.height; if (containerAspectRatio > iconAspectRatio) { let iconWidth = containerHeight * iconAspectRatio; icon.set_size(iconWidth, containerHeight); - icon.margin_left = icon.margin_right = Math.floor((containerWidth - iconWidth) / 2); + let margin = (containerWidth - iconWidth) / 2; + icon.margin_left = Math.ceil(margin); + icon.margin_right = Math.floor(margin); } else { let iconHeight = containerWidth / iconAspectRatio; icon.set_size(containerWidth, iconHeight); - icon.margin_top = icon.margin_bottom = Math.floor((containerHeight - iconHeight) / 2); + let margin = (containerHeight - iconHeight) / 2; + icon.margin_top = Math.ceil(margin); + icon.margin_bottom = Math.floor(margin); } this._icon.child = icon; } @@ -448,14 +476,14 @@ this.emit('rename-clicked'); } - doOpen() { + _doOpenContext(context) { if (this._isBrokenSymlink) { log(`Error: Can’t open ${this.file.get_uri()} because it is a broken symlink.`); return; } if (this.trustedDesktopFile) { - this._desktopFile.launch_uris_as_manager([], null, GLib.SpawnFlags.SEARCH_PATH, null, null); + this._desktopFile.launch_uris_as_manager([], context, GLib.SpawnFlags.SEARCH_PATH, null, null); return; } @@ -480,6 +508,39 @@ ); } + doOpen() { + this._doOpenContext(null); + } + + _doDiscreteGpu() { + let gpus = Extension.desktopManager.switcherooProxyGPUs; + if (!gpus) { + log('Could not apply discrete GPU environment, no GPUs in list'); + } + + for(let gpu in gpus) { + if (!gpus[gpu]) + continue; + + let default_variant = gpus[gpu]['Default']; + if (!default_variant || default_variant.get_boolean()) + continue; + + let env = gpus[gpu]['Environment']; + if (!env) + continue; + + let env_s = env.get_strv(); + let context = new Gio.AppLaunchContext; + for (let i = 0; i < env_s.length; i=i+2) { + context.setenv(env_s[i], env_s[i+1]); + } + this._doOpenContext(context); + return; + } + log('Could not find discrete GPU data in switcheroo-control'); + } + _onCopyClicked() { Extension.desktopManager.doCopy(); } @@ -516,6 +577,10 @@ Extension.desktopManager.doEmptyTrash(); } + _onEjectClicked() { + DesktopIconsUtil.eject(this._mount); + } + get _allowLaunchingText() { if (this.trustedDesktopFile) return _("Don’t Allow Launching"); @@ -619,10 +684,13 @@ this._menu.addAction(_('Open'), () => this.doOpen()); switch (this._fileExtra) { case Prefs.FileType.NONE: - if (!this._isDirectory) + if (!this._isDirectory) { this._actionOpenWith = this._menu.addAction(_('Open With Other Application'), () => this._doOpenWith()); - else + if (Extension.desktopManager.discreteGpuAvailable) + this._menu.addAction(_('Launch using Dedicated Graphics Card'), () => this._doDiscreteGpu()); + } else { this._actionOpenWith = null; + } this._menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem()); this._actionCut = this._menu.addAction(_('Cut'), () => this._onCutClicked()); this._actionCopy = this._menu.addAction(_('Copy'), () => this._onCopyClicked()); @@ -640,6 +708,10 @@ this._menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem()); this._menu.addAction(_('Empty Trash'), () => this._onEmptyTrashClicked()); break; + case Prefs.FileType.MOUNT_DISK: + this._menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem()); + this._menu.addAction(_('Eject'), () => this._onEjectClicked()); + break; default: break; } @@ -693,9 +765,10 @@ this._buttonPressInitialY = y; let shiftPressed = !!(event.get_state() & Clutter.ModifierType.SHIFT_MASK); let controlPressed = !!(event.get_state() & Clutter.ModifierType.CONTROL_MASK); - if (!this.isSelected) { - this.emit('selected', shiftPressed || controlPressed, false, true); - } + if (controlPressed || shiftPressed) + this.emit('selected', true, false, !this._isSelected); + else + this.emit('selected', false, false, true); } return Clutter.EVENT_STOP; } @@ -746,7 +819,6 @@ let controlPressed = !!(event.get_state() & Clutter.ModifierType.CONTROL_MASK); if ((event.get_click_count() == 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)) @@ -851,6 +923,8 @@ } get displayName() { + if (this._fileExtra == Prefs.FileType.USER_DIRECTORY_HOME) + return _("Home"); if (this.trustedDesktopFile) return this._desktopFile.get_name(); diff -Nru gnome-shell-extension-desktop-icons-20.04.0/meson.build gnome-shell-extension-desktop-icons-20.04.0+git20200908/meson.build --- gnome-shell-extension-desktop-icons-20.04.0/meson.build 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/meson.build 2020-09-08 08:05:17.000000000 +0000 @@ -23,7 +23,8 @@ 'fileItem.js', 'metadata.json', 'prefs.js', - 'stylesheet.css' + 'stylesheet.css', + 'templateManager.js' ], install_dir: extensions_dir ) diff -Nru gnome-shell-extension-desktop-icons-20.04.0/metadata.json gnome-shell-extension-desktop-icons-20.04.0+git20200908/metadata.json --- gnome-shell-extension-desktop-icons-20.04.0/metadata.json 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/metadata.json 2020-09-08 08:05:17.000000000 +0000 @@ -2,5 +2,6 @@ "name": "Desktop Icons", "description": "Add icons to the desktop", "uuid": "desktop-icons@csoriano", - "shell-version": ["3.34.0"] + "shell-version": ["3.34.0"], + "url": "https://gitlab.gnome.org/World/ShellExtensions/desktop-icons" } diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/ca.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/ca.po --- gnome-shell-extension-desktop-icons-20.04.0/po/ca.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/ca.po 2020-09-08 08:05:17.000000000 +0000 @@ -5,187 +5,188 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" -"icons/issues\n" -"POT-Creation-Date: 2019-07-22 10:24+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-05 21:12+0200\n" "PO-Revision-Date: 2019-07-22 10:24+0200\n" -"Language: ca\n" +"Last-Translator: Jordi Mas \n" "Language-Team: Catalan \n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Last-Translator: Jordi Mas \n" -"Language: ca\n" "X-Generator: Poedit 2.2.1\n" -#: ../createFolderDialog.js:48 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Nom de la carpeta nou" -#: ../createFolderDialog.js:72 +#: createFolderDialog.js:70 msgid "Create" msgstr "Crea" -#: ../createFolderDialog.js:74 ../desktopGrid.js:592 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Cancel·la" -#: ../createFolderDialog.js:145 +#: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." msgstr "Els noms de carpetes no poden contenir «/»." -#: ../createFolderDialog.js:148 +#: createFolderDialog.js:148 msgid "A folder cannot be called “.”." msgstr "Una carpeta no es pot anomenar «.»." -#: ../createFolderDialog.js:151 +#: createFolderDialog.js:151 msgid "A folder cannot be called “..”." msgstr "Una carpeta no es pot anomenar «..»." -#: ../createFolderDialog.js:153 +#: 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 +#: 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 +#: prefs.js:102 msgid "Size for the desktop icons" msgstr "Mida de les icones d'escriptori" -#: ../prefs.js:102 +#: prefs.js:102 msgid "Small" msgstr "Petita" -#: ../prefs.js:102 +#: prefs.js:102 msgid "Standard" msgstr "Estàndard" -#: ../prefs.js:102 +#: prefs.js:102 msgid "Large" msgstr "Gran" -#: ../prefs.js:103 +#: prefs.js:103 msgid "Show the personal folder in the desktop" msgstr "Mostra la carpeta personal a l'escriptori" -#: ../prefs.js:104 +#: prefs.js:104 msgid "Show the trash icon in the desktop" msgstr "Mostra la icona de la paperera a l'escriptori" -#: ../desktopGrid.js:323 +#: desktopGrid.js:343 msgid "New Folder" msgstr "Carpeta nova" -#: ../desktopGrid.js:325 +#: desktopGrid.js:345 msgid "Paste" msgstr "Enganxa" -#: ../desktopGrid.js:326 +#: desktopGrid.js:346 msgid "Undo" msgstr "Desfés" -#: ../desktopGrid.js:327 +#: desktopGrid.js:347 msgid "Redo" msgstr "Refés" -#: ../desktopGrid.js:329 +#: desktopGrid.js:349 msgid "Show Desktop in Files" msgstr "Mostra l'escriptori al Fitxers" -#: ../desktopGrid.js:330 ../fileItem.js:612 +#: desktopGrid.js:350 fileItem.js:651 msgid "Open in Terminal" msgstr "Obre al Terminal" -#: ../desktopGrid.js:332 +#: desktopGrid.js:352 msgid "Change Background…" msgstr "Canvia el fons de l'escriptori…" -#: ../desktopGrid.js:334 +#: desktopGrid.js:354 msgid "Display Settings" msgstr "Paràmetres de la pantalla" -#: ../desktopGrid.js:335 +#: desktopGrid.js:355 msgid "Settings" msgstr "Paràmetres" -#: ../desktopGrid.js:582 -msgid "Enter file name…" -msgstr "Introduïu un nom de fitxer…" - -#: ../desktopGrid.js:586 -msgid "OK" -msgstr "D'acord" +#: desktopGrid.js:653 +#, fuzzy +msgid "Rename" +msgstr "Canvia el nom…" -#: ../desktopIconsUtil.js:61 +#: desktopIconsUtil.js:61 msgid "Command not found" -msgstr " No s'ha trobat l'ordre" +msgstr "\tNo s'ha trobat l'ordre" -#: ../fileItem.js:500 +#: fileItem.js:521 msgid "Don’t Allow Launching" msgstr "No permetis que s'iniciï" -#: ../fileItem.js:502 +#: fileItem.js:523 msgid "Allow Launching" msgstr "Permet que s'iniciï" -#: ../fileItem.js:580 +#: fileItem.js:619 msgid "Open" msgstr "Obre" -#: ../fileItem.js:584 +#: fileItem.js:623 msgid "Open With Other Application" msgstr "Obre amb una altra aplicació..." -#: ../fileItem.js:588 +#: fileItem.js:627 msgid "Cut" msgstr "Retalla" -#: ../fileItem.js:589 +#: fileItem.js:628 msgid "Copy" msgstr "Copia" -#: ../fileItem.js:591 +#: fileItem.js:630 msgid "Rename…" msgstr "Canvia el nom…" -#: ../fileItem.js:592 +#: fileItem.js:631 msgid "Move to Trash" msgstr "Mou a la paperera" -#: ../fileItem.js:602 +#: fileItem.js:641 msgid "Empty Trash" msgstr "Buida la paperera" -#: ../fileItem.js:608 +#: fileItem.js:647 msgid "Properties" msgstr "Propietats" -#: ../fileItem.js:610 +#: fileItem.js:649 msgid "Show in Files" msgstr "Mostra al Fitxers" -#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:1 +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "Mida d'icona" -#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:2 +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 msgid "Set the size for the desktop icons." msgstr "Estableix la mida per les icones de l'escriptori." -#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:3 +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 msgid "Show personal folder" msgstr "Mostra la carpeta personal" -#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:4 +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 msgid "Show the personal folder in the desktop." msgstr "Mostra la carpeta personal a l'escriptori." -#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:5 +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 msgid "Show trash icon" msgstr "Mostra la icona de la paperera" -#: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:6 +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 msgid "Show the trash icon in the desktop." msgstr "Mostra la icona de la paperera a l'escriptori." + +#~ msgid "Enter file name…" +#~ msgstr "Introduïu un nom de fitxer…" + +#~ msgid "OK" +#~ msgstr "D'acord" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/cs.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/cs.po --- gnome-shell-extension-desktop-icons-20.04.0/po/cs.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/cs.po 2020-09-08 08:05:17.000000000 +0000 @@ -9,8 +9,8 @@ "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-10-08 18:47+0000\n" -"PO-Revision-Date: 2020-01-16 13:00+0100\n" +"POT-Creation-Date: 2020-05-26 20:08+0000\n" +"PO-Revision-Date: 2020-06-16 14:22+0200\n" "Last-Translator: Daniel Rusek \n" "Language-Team: Czech \n" "Language: cs\n" @@ -18,156 +18,178 @@ "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: Poedit 2.2.4\n" +"X-Generator: Poedit 2.3.1\n" -#: createFolderDialog.js:49 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Název nové složky" -#: createFolderDialog.js:73 +#: createFolderDialog.js:70 msgid "Create" msgstr "Vytvořit" -#: createFolderDialog.js:75 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Zrušit" -#: createFolderDialog.js:146 +#: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." msgstr "Názvy složek nesmí obsahovat „/“." -#: createFolderDialog.js:149 +#: createFolderDialog.js:148 msgid "A folder cannot be called “.”." msgstr "Složka se nemůže jmenovat „.“." -#: createFolderDialog.js:152 +#: createFolderDialog.js:151 msgid "A folder cannot be called “..”." msgstr "Složka se nemůže jmenovat „..“." -#: createFolderDialog.js:154 +#: 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:156 +#: 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 +#: prefs.js:103 msgid "Size for the desktop icons" msgstr "Velikost ikon na pracovní ploše" -#: prefs.js:102 +#: prefs.js:103 msgid "Small" msgstr "malé" -#: prefs.js:102 +#: prefs.js:103 msgid "Standard" msgstr "standardní" -#: prefs.js:102 +#: prefs.js:103 msgid "Large" msgstr "velké" -#: prefs.js:103 +#: prefs.js:104 msgid "Show the personal folder in the desktop" msgstr "Zobrazovat osobní složku na pracovní ploše" -#: prefs.js:104 +#: prefs.js:105 msgid "Show the trash icon in the desktop" msgstr "Zobrazovat ikonu koše na pracovní ploše" -#: desktopGrid.js:328 +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "Zobrazovat připojené svazky na pracovní ploše" + +#: desktopGrid.js:346 msgid "New Folder" msgstr "Nová složka" -#: desktopGrid.js:330 +#: desktopGrid.js:347 +msgid "New Document" +msgstr "Nový dokument" + +#: desktopGrid.js:350 msgid "Paste" msgstr "Vložit" -#: desktopGrid.js:331 +#: desktopGrid.js:351 msgid "Undo" msgstr "Zpět" -#: desktopGrid.js:332 +#: desktopGrid.js:352 msgid "Redo" msgstr "Znovu" -#: desktopGrid.js:334 +#: desktopGrid.js:354 msgid "Show Desktop in Files" msgstr "Zobrazit plochu v Souborech" -#: desktopGrid.js:335 fileItem.js:633 +#: desktopGrid.js:355 fileItem.js:721 msgid "Open in Terminal" msgstr "Otevřít v terminálu" -#: desktopGrid.js:337 +#: desktopGrid.js:357 msgid "Change Background…" msgstr "Změnit pozadí…" -#: desktopGrid.js:339 +#: desktopGrid.js:359 msgid "Display Settings" msgstr "Nastavení zobrazení" -#: desktopGrid.js:340 +#: desktopGrid.js:360 msgid "Settings" msgstr "Nastavení" -#: desktopGrid.js:612 -msgid "Enter file name…" -msgstr "Zadejte název souboru…" - -#: desktopGrid.js:629 +#: desktopGrid.js:692 msgid "Rename" msgstr "Přejmenovat" -#: desktopIconsUtil.js:61 +#: desktopIconsUtil.js:63 msgid "Command not found" msgstr "Příkaz nebyl nalezen" -#: fileItem.js:500 +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "Vysunutí svazku „%s“ selhalo:" + +#: fileItem.js:584 msgid "Don’t Allow Launching" msgstr "Nepovolit spouštění" -#: fileItem.js:502 +#: fileItem.js:586 msgid "Allow Launching" msgstr "Povolit spouštění" -#: fileItem.js:601 +#: fileItem.js:682 msgid "Open" msgstr "Otevřít" -#: fileItem.js:605 +#: fileItem.js:686 msgid "Open With Other Application" msgstr "Otevřít pomocí jiné aplikace" -#: fileItem.js:609 +#: fileItem.js:688 +msgid "Launch using Dedicated Graphics Card" +msgstr "Spustit pomocí vyhrazené grafické karty" + +#: fileItem.js:693 msgid "Cut" msgstr "Vyjmout" -#: fileItem.js:610 +#: fileItem.js:694 msgid "Copy" msgstr "Kopírovat" -#: fileItem.js:612 +#: fileItem.js:696 msgid "Rename…" msgstr "Přejmenovat…" -#: fileItem.js:613 +#: fileItem.js:697 msgid "Move to Trash" msgstr "Přesunout do koše" -#: fileItem.js:623 +#: fileItem.js:707 msgid "Empty Trash" msgstr "Vyprázdnit koš" -#: fileItem.js:629 +#: fileItem.js:711 +msgid "Eject" +msgstr "Vysunout" + +#: fileItem.js:717 msgid "Properties" msgstr "Vlastnosti" -#: fileItem.js:631 +#: fileItem.js:719 msgid "Show in Files" msgstr "Zobrazit v Souborech" +#: fileItem.js:925 +msgid "Home" +msgstr "Domů" + #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "Velikost ikon" @@ -192,6 +214,17 @@ msgid "Show the trash icon in the desktop." msgstr "Zobrazovat ikonu koše na pracovní ploše." +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "Zobrazovat připojené svazky" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "Zobrazovat připojené svazky na pracovní ploše." + +#~ msgid "Enter file name…" +#~ msgstr "Zadejte název souboru…" + #~ msgid "OK" #~ msgstr "Budiž" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/da.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/da.po --- gnome-shell-extension-desktop-icons-20.04.0/po/da.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/da.po 2020-09-08 08:05:17.000000000 +0000 @@ -6,9 +6,8 @@ msgid "" msgstr "" "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" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-05 21:12+0200\n" "PO-Revision-Date: 2019-03-04 14:55+0200\n" "Last-Translator: scootergrisen\n" "Language-Team: Danish \n" @@ -18,16 +17,15 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: createFolderDialog.js:48 -#| msgid "New Folder" +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Nyt mappenavn" -#: createFolderDialog.js:72 +#: createFolderDialog.js:70 msgid "Create" msgstr "Opret" -#: createFolderDialog.js:74 desktopGrid.js:586 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Annullér" @@ -75,91 +73,92 @@ msgid "Show the trash icon in the desktop" msgstr "Vis papirkurvsikonet på skrivebordet" -#: desktopGrid.js:320 +#: desktopGrid.js:343 msgid "New Folder" msgstr "Ny mappe" -#: desktopGrid.js:322 +#: desktopGrid.js:345 msgid "Paste" msgstr "Indsæt" -#: desktopGrid.js:323 +#: desktopGrid.js:346 msgid "Undo" msgstr "Fortryd" -#: desktopGrid.js:324 +#: desktopGrid.js:347 msgid "Redo" msgstr "Omgør" -#: desktopGrid.js:326 +#: desktopGrid.js:349 msgid "Show Desktop in Files" msgstr "Vis skrivebordet i Filer" -#: desktopGrid.js:327 fileItem.js:606 +#: desktopGrid.js:350 fileItem.js:651 msgid "Open in Terminal" msgstr "Åbn i terminal" -#: desktopGrid.js:329 +#: desktopGrid.js:352 msgid "Change Background…" msgstr "Skift baggrund …" -#: desktopGrid.js:331 +#: desktopGrid.js:354 msgid "Display Settings" msgstr "Skærmindstillinger" -#: desktopGrid.js:332 +#: desktopGrid.js:355 msgid "Settings" msgstr "Indstillinger" -#: desktopGrid.js:576 -msgid "Enter file name…" -msgstr "Indtast filnavn …" - -#: desktopGrid.js:580 -msgid "OK" -msgstr "OK" +#: desktopGrid.js:653 +#, fuzzy +msgid "Rename" +msgstr "Omdøb …" -#: fileItem.js:490 +#: desktopIconsUtil.js:61 +msgid "Command not found" +msgstr "" + +#: fileItem.js:521 msgid "Don’t Allow Launching" msgstr "Tillad ikke opstart" -#: fileItem.js:492 +#: fileItem.js:523 msgid "Allow Launching" msgstr "Tillad opstart" -#: fileItem.js:574 +#: fileItem.js:619 msgid "Open" msgstr "Åbn" -#: fileItem.js:578 +#: fileItem.js:623 msgid "Open With Other Application" msgstr "Åbn med et andet program" -#: fileItem.js:582 +#: fileItem.js:627 msgid "Cut" msgstr "Klip" -#: fileItem.js:583 +#: fileItem.js:628 msgid "Copy" msgstr "Kopiér" -#: fileItem.js:585 +#: fileItem.js:630 msgid "Rename…" msgstr "Omdøb …" -#: fileItem.js:586 +#: fileItem.js:631 msgid "Move to Trash" msgstr "Flyt til papirkurven" -#: fileItem.js:596 +#: fileItem.js:641 msgid "Empty Trash" msgstr "Tøm papirkurven" -#: fileItem.js:602 +#: fileItem.js:647 msgid "Properties" msgstr "Egenskaber" -#: fileItem.js:604 +#: fileItem.js:649 msgid "Show in Files" msgstr "Vis i Filer" @@ -187,5 +186,11 @@ msgid "Show the trash icon in the desktop." msgstr "Vis papirkurvsikonet på skrivebordet." +#~ msgid "Enter file name…" +#~ msgstr "Indtast filnavn …" + +#~ msgid "OK" +#~ msgstr "OK" + #~ msgid "Huge" #~ msgstr "Enorme" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/de.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/de.po --- gnome-shell-extension-desktop-icons-20.04.0/po/de.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/de.po 2020-09-08 08:05:17.000000000 +0000 @@ -9,26 +9,26 @@ "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-07 22:46+0000\n" -"PO-Revision-Date: 2019-03-09 15:42+0100\n" -"Last-Translator: Tim Sabsch \n" +"POT-Creation-Date: 2020-08-16 14:44+0000\n" +"PO-Revision-Date: 2020-08-26 22:46+0200\n" +"Last-Translator: Christian Kirbach \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.2.1\n" +"X-Generator: Poedit 2.3.1\n" -#: createFolderDialog.js:48 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Neuer Ordner" -#: createFolderDialog.js:72 +#: createFolderDialog.js:70 msgid "Create" msgstr "Erstellen" -#: createFolderDialog.js:74 desktopGrid.js:586 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Abbrechen" @@ -52,118 +52,144 @@ 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 +#: prefs.js:103 msgid "Size for the desktop icons" msgstr "Größe der Arbeitsflächensymbole" -#: prefs.js:102 +#: prefs.js:103 msgid "Small" msgstr "Klein" -#: prefs.js:102 +#: prefs.js:103 msgid "Standard" msgstr "Standard" -#: prefs.js:102 +#: prefs.js:103 msgid "Large" msgstr "Groß" -#: prefs.js:103 +#: prefs.js:104 msgid "Show the personal folder in the desktop" msgstr "Den persönlichen Ordner auf der Arbeitsfläche anzeigen" -#: prefs.js:104 +#: prefs.js:105 msgid "Show the trash icon in the desktop" msgstr "Papierkorb-Symbol auf der Arbeitsfläche anzeigen" -#: desktopGrid.js:320 +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "Eingebundene Laufwerke auf der Arbeitsfläche anzeigen" + +#: desktopGrid.js:346 msgid "New Folder" msgstr "Neuer Ordner" -#: desktopGrid.js:322 +#: desktopGrid.js:347 +msgid "New Document" +msgstr "Neues Dokument" + +#: desktopGrid.js:350 msgid "Paste" msgstr "Einfügen" -#: desktopGrid.js:323 +#: desktopGrid.js:351 msgid "Undo" msgstr "Rückgängig" -#: desktopGrid.js:324 +#: desktopGrid.js:352 msgid "Redo" msgstr "Wiederholen" -#: desktopGrid.js:326 +#: desktopGrid.js:354 msgid "Show Desktop in Files" msgstr "Schreibtisch in Dateien anzeigen" -#: desktopGrid.js:327 fileItem.js:606 +#: desktopGrid.js:355 fileItem.js:723 msgid "Open in Terminal" msgstr "Im Terminal öffnen" -#: desktopGrid.js:329 +#: desktopGrid.js:357 msgid "Change Background…" msgstr "Hintergrund ändern …" -#: desktopGrid.js:331 +#: desktopGrid.js:359 msgid "Display Settings" msgstr "Anzeigeeinstellungen" -#: desktopGrid.js:332 +#: desktopGrid.js:360 msgid "Settings" msgstr "Einstellungen" -#: desktopGrid.js:576 -msgid "Enter file name…" -msgstr "Dateinamen eingeben …" - -#: desktopGrid.js:580 -msgid "OK" -msgstr "OK" +#: desktopGrid.js:699 +msgid "Rename" +msgstr "Umbenennen" + +#: desktopIconsUtil.js:63 +msgid "Command not found" +msgstr "Befehl nicht gefunden" + +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "Auswerfen des Laufwerks »%s« fehlgeschlagen:" -#: fileItem.js:490 +#: fileItem.js:586 msgid "Don’t Allow Launching" msgstr "Start nicht erlauben" -#: fileItem.js:492 +#: fileItem.js:588 msgid "Allow Launching" msgstr "Start erlauben" -#: fileItem.js:574 +#: fileItem.js:684 msgid "Open" msgstr "Öffnen" -#: fileItem.js:578 +#: fileItem.js:688 msgid "Open With Other Application" msgstr "Mit anderer Anwendung öffnen" -#: fileItem.js:582 +#: fileItem.js:690 +msgid "Launch using Dedicated Graphics Card" +msgstr "Start mit dedizierter Grafikkarte" + +#: fileItem.js:695 msgid "Cut" msgstr "Ausschneiden" -#: fileItem.js:583 +#: fileItem.js:696 msgid "Copy" msgstr "Kopieren" -#: fileItem.js:585 +#: fileItem.js:698 msgid "Rename…" msgstr "Umbenennen …" -#: fileItem.js:586 +#: fileItem.js:699 msgid "Move to Trash" msgstr "In den Papierkorb verschieben" -#: fileItem.js:596 +#: fileItem.js:709 msgid "Empty Trash" msgstr "Papierkorb leeren" -#: fileItem.js:602 +#: fileItem.js:713 +msgid "Eject" +msgstr "Auswerfen" + +#: fileItem.js:719 msgid "Properties" msgstr "Eigenschaften" -#: fileItem.js:604 +#: fileItem.js:721 msgid "Show in Files" msgstr "In Dateiverwaltung anzeigen" +#: fileItem.js:927 +msgid "Home" +msgstr "Startseite" + #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "Symbolgröße" @@ -188,5 +214,19 @@ msgid "Show the trash icon in the desktop." msgstr "Das Papierkorb-Symbol auf der Arbeitsfläche anzeigen." +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "Eingebundene Laufwerke anzeigen" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "Eingebundene Laufwerke auf der Arbeitsfläche anzeigen." + +#~ msgid "Enter file name…" +#~ msgstr "Dateinamen eingeben …" + +#~ msgid "OK" +#~ msgstr "OK" + #~ msgid "Huge" #~ msgstr "Riesig" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/el.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/el.po --- gnome-shell-extension-desktop-icons-20.04.0/po/el.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/el.po 2020-09-08 08:05:17.000000000 +0000 @@ -6,9 +6,8 @@ msgid "" msgstr "" "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-10-24 13:50+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-05 21:12+0200\n" "PO-Revision-Date: 2019-10-30 23:18+0200\n" "Last-Translator: Emmanouil I. Kapernaros \n" "Language-Team: Greek, Modern (1453-) \n" @@ -19,35 +18,35 @@ "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Generator: Gtranslator 3.34.0\n" -#: createFolderDialog.js:49 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Όνομα νέου φακέλου" -#: createFolderDialog.js:73 +#: createFolderDialog.js:70 msgid "Create" msgstr "Δημιουργία" -#: createFolderDialog.js:75 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Ακύρωση" -#: createFolderDialog.js:146 +#: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." msgstr "Τα ονόματα φακέλων δεν μπορούν να περιέχουν “/”." -#: createFolderDialog.js:149 +#: createFolderDialog.js:148 msgid "A folder cannot be called “.”." msgstr "Ο φάκελος δεν μπορεί να ονομάζεται “.”." -#: createFolderDialog.js:152 +#: createFolderDialog.js:151 msgid "A folder cannot be called “..”." msgstr "Ο φάκελος δεν μπορεί να ονομάζεται “..”." -#: createFolderDialog.js:154 +#: createFolderDialog.js:153 msgid "Folders with “.” at the beginning of their name are hidden." msgstr "Οι φάκελοι με “.” στην αρχή του ονόματος τους είναι κρυφοί" -#: createFolderDialog.js:156 +#: createFolderDialog.js:155 msgid "There is already a file or folder with that name." msgstr "Υπάρχει ήδη ένας φάκελος ή αρχείο με αυτό το όνομα" @@ -75,47 +74,43 @@ msgid "Show the trash icon in the desktop" msgstr "Εμφάνιση του εικονίδιου απορριμάτων στην επιφάνεια εργασίας" -#: desktopGrid.js:348 +#: desktopGrid.js:343 msgid "New Folder" msgstr "Νέος Φάκελος" -#: desktopGrid.js:350 +#: desktopGrid.js:345 msgid "Paste" msgstr "Επικόλληση" -#: desktopGrid.js:351 +#: desktopGrid.js:346 msgid "Undo" msgstr "Αναίρεση" -#: desktopGrid.js:352 +#: desktopGrid.js:347 msgid "Redo" msgstr "Επανάληψη" -#: desktopGrid.js:354 +#: desktopGrid.js:349 msgid "Show Desktop in Files" msgstr "Εμφάνιση Επιφάνειας εργασίας στα Αρχεία" -#: desktopGrid.js:355 fileItem.js:637 +#: desktopGrid.js:350 fileItem.js:651 msgid "Open in Terminal" msgstr "Άνοιγμα στο Τερματικό" -#: desktopGrid.js:357 +#: desktopGrid.js:352 msgid "Change Background…" msgstr "Αλλαγή Φόντου" -#: desktopGrid.js:359 +#: desktopGrid.js:354 msgid "Display Settings" msgstr "Ρυθμίσεις Οθόνης" -#: desktopGrid.js:360 +#: desktopGrid.js:355 msgid "Settings" msgstr "Ρυθμίσεις" -#: desktopGrid.js:637 -msgid "Enter file name…" -msgstr "Εισάγετε όνομα αρχείου..." - -#: desktopGrid.js:654 +#: desktopGrid.js:653 msgid "Rename" msgstr "Μετονομασία" @@ -123,47 +118,47 @@ msgid "Command not found" msgstr "Η εντολή δεν βρέθηκε" -#: fileItem.js:504 +#: fileItem.js:521 msgid "Don’t Allow Launching" msgstr "Μην Επιτρέψεις Εκτέλεση" -#: fileItem.js:506 +#: fileItem.js:523 msgid "Allow Launching" msgstr "Επέτρεψε Εκτέλεση" -#: fileItem.js:605 +#: fileItem.js:619 msgid "Open" msgstr "Άνοιγμα" -#: fileItem.js:609 +#: fileItem.js:623 msgid "Open With Other Application" msgstr "Άνοιγμα Με Άλλη Εφαρμογή" -#: fileItem.js:613 +#: fileItem.js:627 msgid "Cut" msgstr "Αποκοπή" -#: fileItem.js:614 +#: fileItem.js:628 msgid "Copy" msgstr "Αντιγραφή" -#: fileItem.js:616 +#: fileItem.js:630 msgid "Rename…" msgstr "Μετονομασία" -#: fileItem.js:617 +#: fileItem.js:631 msgid "Move to Trash" msgstr "Μετακίνηση στα Απορρίματα" -#: fileItem.js:627 +#: fileItem.js:641 msgid "Empty Trash" msgstr "Άδειασμα Απορριμάτων" -#: fileItem.js:633 +#: fileItem.js:647 msgid "Properties" msgstr "Ιδιότητες" -#: fileItem.js:635 +#: fileItem.js:649 msgid "Show in Files" msgstr "Εμφάνιση στα Αρχεία" @@ -190,3 +185,6 @@ #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 msgid "Show the trash icon in the desktop." msgstr "Εμφάνιση του εικονιδίου απορριμμάτων στην επιφάνεια εργασίας" + +#~ msgid "Enter file name…" +#~ msgstr "Εισάγετε όνομα αρχείου..." diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/en_GB.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/en_GB.po --- gnome-shell-extension-desktop-icons-20.04.0/po/en_GB.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/en_GB.po 2020-09-08 08:05:17.000000000 +0000 @@ -6,9 +6,8 @@ msgid "" msgstr "" "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-08-22 15:53+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-05 21:12+0200\n" "PO-Revision-Date: 2019-08-23 21:48+0100\n" "Last-Translator: Zander Brown \n" "Language-Team: English - United Kingdom \n" @@ -19,15 +18,15 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Gtranslator 3.32.1\n" -#: createFolderDialog.js:48 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "New folder name" -#: createFolderDialog.js:72 +#: createFolderDialog.js:70 msgid "Create" msgstr "Create" -#: createFolderDialog.js:74 desktopGrid.js:592 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Cancel" @@ -75,95 +74,92 @@ msgid "Show the trash icon in the desktop" msgstr "Show the wastebasket icon on the desktop" -#: desktopGrid.js:323 +#: desktopGrid.js:343 msgid "New Folder" msgstr "New Folder" -#: desktopGrid.js:325 +#: desktopGrid.js:345 msgid "Paste" msgstr "Paste" -#: desktopGrid.js:326 +#: desktopGrid.js:346 msgid "Undo" msgstr "Undo" -#: desktopGrid.js:327 +#: desktopGrid.js:347 msgid "Redo" msgstr "Redo" -#: desktopGrid.js:329 +#: desktopGrid.js:349 msgid "Show Desktop in Files" msgstr "Show Desktop in Files" -#: desktopGrid.js:330 fileItem.js:626 +#: desktopGrid.js:350 fileItem.js:651 msgid "Open in Terminal" msgstr "Open in Terminal" -#: desktopGrid.js:332 +#: desktopGrid.js:352 msgid "Change Background…" msgstr "Change Background…" -#: desktopGrid.js:334 +#: desktopGrid.js:354 msgid "Display Settings" msgstr "Display Settings" -#: desktopGrid.js:335 +#: desktopGrid.js:355 msgid "Settings" msgstr "Settings" -#: desktopGrid.js:582 -msgid "Enter file name…" -msgstr "Enter file name…" - -#: desktopGrid.js:586 -msgid "OK" -msgstr "OK" +#: desktopGrid.js:653 +#, fuzzy +msgid "Rename" +msgstr "Rename…" #: desktopIconsUtil.js:61 msgid "Command not found" msgstr "Command not found" -#: fileItem.js:499 +#: fileItem.js:521 msgid "Don’t Allow Launching" msgstr "Don’t Allow Launching" -#: fileItem.js:501 +#: fileItem.js:523 msgid "Allow Launching" msgstr "Allow Launching" -#: fileItem.js:594 +#: fileItem.js:619 msgid "Open" msgstr "Open" -#: fileItem.js:598 +#: fileItem.js:623 msgid "Open With Other Application" msgstr "Open With Other Application" -#: fileItem.js:602 +#: fileItem.js:627 msgid "Cut" msgstr "Cut" -#: fileItem.js:603 +#: fileItem.js:628 msgid "Copy" msgstr "Copy" -#: fileItem.js:605 +#: fileItem.js:630 msgid "Rename…" msgstr "Rename…" -#: fileItem.js:606 +#: fileItem.js:631 msgid "Move to Trash" msgstr "Move to Wastebasket" -#: fileItem.js:616 +#: fileItem.js:641 msgid "Empty Trash" msgstr "Empty Wastebasket" -#: fileItem.js:622 +#: fileItem.js:647 msgid "Properties" msgstr "Properties" -#: fileItem.js:624 +#: fileItem.js:649 msgid "Show in Files" msgstr "Show in Files" @@ -190,3 +186,9 @@ #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 msgid "Show the trash icon in the desktop." msgstr "Show the trash icon on the desktop." + +#~ msgid "Enter file name…" +#~ msgstr "Enter file name…" + +#~ msgid "OK" +#~ msgstr "OK" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/es.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/es.po --- gnome-shell-extension-desktop-icons-20.04.0/po/es.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/es.po 2020-09-08 08:05:17.000000000 +0000 @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # Sergio Costas , 2018. -# Daniel Mustieles , 2018-2019. +# Daniel Mustieles , 2018-2020. # msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" "icons/issues\n" -"POT-Creation-Date: 2019-10-08 18:47+0000\n" -"PO-Revision-Date: 2019-10-10 15:23+0200\n" +"POT-Creation-Date: 2020-05-11 22:15+0000\n" +"PO-Revision-Date: 2020-05-14 16:59+0200\n" "Last-Translator: Daniel Mustieles \n" "Language-Team: Spanish - Spain \n" "Language: es_ES\n" @@ -19,157 +19,174 @@ "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.34.0\n" +"X-Generator: Gtranslator 3.36.0\n" -#: createFolderDialog.js:49 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Nombre de la nueva carpeta" -#: createFolderDialog.js:73 +#: createFolderDialog.js:70 msgid "Create" msgstr "Crear" -#: createFolderDialog.js:75 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Cancelar" -#: createFolderDialog.js:146 +#: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." msgstr "Los nombres de carpetas no pueden contener «/»." -#: createFolderDialog.js:149 +#: createFolderDialog.js:148 msgid "A folder cannot be called “.”." msgstr "Una carpeta no se puede llamar «.»." -#: createFolderDialog.js:152 +#: createFolderDialog.js:151 msgid "A folder cannot be called “..”." msgstr "Una carpeta no se puede llamar «..»." -#: createFolderDialog.js:154 +#: 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:156 +#: 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 +#: prefs.js:103 msgid "Size for the desktop icons" msgstr "Tamaño de los iconos del escritorio" -#: prefs.js:102 +#: prefs.js:103 msgid "Small" msgstr "Pequeño" -#: prefs.js:102 +#: prefs.js:103 msgid "Standard" msgstr "Estándar" -#: prefs.js:102 +#: prefs.js:103 msgid "Large" msgstr "Grande" -#: prefs.js:103 +#: prefs.js:104 msgid "Show the personal folder in the desktop" msgstr "Mostrar la carpeta personal en el escritorio" -#: prefs.js:104 +#: prefs.js:105 msgid "Show the trash icon in the desktop" msgstr "Mostrar la papelera en el escritorio" -#: desktopGrid.js:328 +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "Mostrar unidades montadas en el escritorio" + +#: desktopGrid.js:343 msgid "New Folder" msgstr "Nueva carpeta" -#: desktopGrid.js:330 +#: desktopGrid.js:345 msgid "Paste" msgstr "Pegar" -#: desktopGrid.js:331 +#: desktopGrid.js:346 msgid "Undo" msgstr "Deshacer" -#: desktopGrid.js:332 +#: desktopGrid.js:347 msgid "Redo" msgstr "Rehacer" -#: desktopGrid.js:334 +#: desktopGrid.js:349 msgid "Show Desktop in Files" msgstr "Mostrar el escritorio en Archivos" -#: desktopGrid.js:335 fileItem.js:633 +#: desktopGrid.js:350 fileItem.js:702 msgid "Open in Terminal" msgstr "Abrir en una terminal" -#: desktopGrid.js:337 +#: desktopGrid.js:352 msgid "Change Background…" msgstr "Cambiar el fondo..." -#: desktopGrid.js:339 +#: desktopGrid.js:354 msgid "Display Settings" msgstr "Configuración de pantalla" -#: desktopGrid.js:340 +#: desktopGrid.js:355 msgid "Settings" msgstr "Configuración" -#: desktopGrid.js:612 -msgid "Enter file name…" -msgstr "Introduzca el nombre del archivo…" - -#: desktopGrid.js:629 -#| msgid "Rename…" +#: desktopGrid.js:653 msgid "Rename" msgstr "Renombrar" -#: desktopIconsUtil.js:61 +#: desktopIconsUtil.js:63 msgid "Command not found" msgstr "Comando no encontrado" -#: fileItem.js:500 +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "Falló al expulsar la unidad «%s»:" + +#: fileItem.js:565 msgid "Don’t Allow Launching" msgstr "No permitir lanzar" -#: fileItem.js:502 +#: fileItem.js:567 msgid "Allow Launching" msgstr "Permitir lanzar" -#: fileItem.js:601 +#: fileItem.js:663 msgid "Open" msgstr "Abrir" -#: fileItem.js:605 +#: fileItem.js:667 msgid "Open With Other Application" msgstr "Abrir con otra aplicación" -#: fileItem.js:609 +#: fileItem.js:669 +msgid "Launch using Dedicated Graphics Card" +msgstr "Lanza usando la tarjeta gráfica dedicada" + +#: fileItem.js:674 msgid "Cut" msgstr "Cortar" -#: fileItem.js:610 +#: fileItem.js:675 msgid "Copy" msgstr "Copiar" -#: fileItem.js:612 +#: fileItem.js:677 msgid "Rename…" msgstr "Renombrar…" -#: fileItem.js:613 +#: fileItem.js:678 msgid "Move to Trash" msgstr "Mover a la papelera" -#: fileItem.js:623 +#: fileItem.js:688 msgid "Empty Trash" msgstr "Vaciar la papelera" -#: fileItem.js:629 +#: fileItem.js:692 +msgid "Eject" +msgstr "Expulsar" + +#: fileItem.js:698 msgid "Properties" msgstr "Propiedades" -#: fileItem.js:631 +#: fileItem.js:700 msgid "Show in Files" msgstr "Mostrar en Files" +#: fileItem.js:906 +msgid "Home" +msgstr "Carpeta personal" + #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "Tamaño de los iconos" @@ -194,6 +211,17 @@ msgid "Show the trash icon in the desktop." msgstr "Mostrar la papelera en el escritorio." +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "Mostrar unidades montadas" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "Mostrar unidades montadas en el escritorio." + +#~ msgid "Enter file name…" +#~ msgstr "Introduzca el nombre del archivo…" + #~ msgid "OK" #~ msgstr "Aceptar" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/eu.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/eu.po --- gnome-shell-extension-desktop-icons-20.04.0/po/eu.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/eu.po 2020-09-08 08:05:17.000000000 +0000 @@ -4,9 +4,10 @@ # Asier Sarasua Garmendia , 2019. # msgid "" -msgstr "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-09-09 06:12+0000\n" +msgstr "" +"Project-Id-Version: desktop-icons master\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-05 21:12+0200\n" "PO-Revision-Date: 2019-09-15 10:00+0100\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" @@ -15,15 +16,15 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: createFolderDialog.js:48 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Karpetaren izen berria" -#: createFolderDialog.js:72 +#: createFolderDialog.js:70 msgid "Create" msgstr "Sorrera" -#: createFolderDialog.js:74 desktopGrid.js:592 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Utzi" @@ -71,95 +72,92 @@ msgid "Show the trash icon in the desktop" msgstr "Erakutsi zakarrontziaren ikonoa mahaigainean" -#: desktopGrid.js:323 +#: desktopGrid.js:343 msgid "New Folder" msgstr "Karpeta berria" -#: desktopGrid.js:325 +#: desktopGrid.js:345 msgid "Paste" msgstr "Itsatsi" -#: desktopGrid.js:326 +#: desktopGrid.js:346 msgid "Undo" msgstr "Desegin" -#: desktopGrid.js:327 +#: desktopGrid.js:347 msgid "Redo" msgstr "Berregin" -#: desktopGrid.js:329 +#: desktopGrid.js:349 msgid "Show Desktop in Files" msgstr "Erakutsi mahaigaina Fitxategiak aplikazioan" -#: desktopGrid.js:330 fileItem.js:626 +#: desktopGrid.js:350 fileItem.js:651 msgid "Open in Terminal" msgstr "Ireki terminalean" -#: desktopGrid.js:332 +#: desktopGrid.js:352 msgid "Change Background…" msgstr "Aldatu atzeko planoa…" -#: desktopGrid.js:334 +#: desktopGrid.js:354 msgid "Display Settings" msgstr "Pantailaren ezarpenak" -#: desktopGrid.js:335 +#: desktopGrid.js:355 msgid "Settings" msgstr "Ezarpenak" -#: desktopGrid.js:582 -msgid "Enter file name…" -msgstr "Sartu fitxategi-izena…" - -#: desktopGrid.js:586 -msgid "OK" -msgstr "Ados" +#: desktopGrid.js:653 +#, fuzzy +msgid "Rename" +msgstr "Aldatu izena…" #: desktopIconsUtil.js:61 msgid "Command not found" msgstr "Ez da komandoa aurkitu" -#: fileItem.js:499 +#: fileItem.js:521 msgid "Don’t Allow Launching" msgstr "Ez baimendu abiaraztea" -#: fileItem.js:501 +#: fileItem.js:523 msgid "Allow Launching" msgstr "Baimendu abiaraztea" -#: fileItem.js:594 +#: fileItem.js:619 msgid "Open" msgstr "Ireki" -#: fileItem.js:598 +#: fileItem.js:623 msgid "Open With Other Application" msgstr "Ireki beste aplikazio batekin" -#: fileItem.js:602 +#: fileItem.js:627 msgid "Cut" msgstr "Ebaki" -#: fileItem.js:603 +#: fileItem.js:628 msgid "Copy" msgstr "Kopiatu" -#: fileItem.js:605 +#: fileItem.js:630 msgid "Rename…" msgstr "Aldatu izena…" -#: fileItem.js:606 +#: fileItem.js:631 msgid "Move to Trash" msgstr "Bota zakarrontzira" -#: fileItem.js:616 +#: fileItem.js:641 msgid "Empty Trash" msgstr "Hustu zakarrontzia" -#: fileItem.js:622 +#: fileItem.js:647 msgid "Properties" msgstr "Propietateak" -#: fileItem.js:624 +#: fileItem.js:649 msgid "Show in Files" msgstr "Erakutsi Fitxategiak aplikazioan" @@ -186,3 +184,9 @@ #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 msgid "Show the trash icon in the desktop." msgstr "Erakutsi zakarrontziaren ikonoa mahaigainean." + +#~ msgid "Enter file name…" +#~ msgstr "Sartu fitxategi-izena…" + +#~ msgid "OK" +#~ msgstr "Ados" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/fa.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/fa.po --- gnome-shell-extension-desktop-icons-20.04.0/po/fa.po 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/fa.po 2020-09-08 08:05:17.000000000 +0000 @@ -0,0 +1,187 @@ +# Persian translation for desktop-icons. +# Copyright (C) 2020 desktop-icons's COPYRIGHT HOLDER +# This file is distributed under the same license as the desktop-icons package. +# Danial Behzadi , 2020. +# +msgid "" +msgstr "" +"Project-Id-Version: desktop-icons master\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" +"POT-Creation-Date: 2020-04-06 14:18+0000\n" +"PO-Revision-Date: 2020-04-06 18:21+0000\n" +"Language-Team: Persian \n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Last-Translator: \n" +"X-Generator: Poedit 2.3\n" + +#: createFolderDialog.js:46 +msgid "New folder name" +msgstr "نام شاخهٔ جدید" + +#: createFolderDialog.js:70 +msgid "Create" +msgstr "ایجاد" + +#: createFolderDialog.js:72 +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:343 +msgid "New Folder" +msgstr "شاخه جدید" + +#: desktopGrid.js:345 +msgid "Paste" +msgstr "چسباندن" + +#: desktopGrid.js:346 +msgid "Undo" +msgstr "برگردان" + +#: desktopGrid.js:347 +msgid "Redo" +msgstr "انجام دوباره" + +#: desktopGrid.js:349 +msgid "Show Desktop in Files" +msgstr "نمایش میزکار در پرونده‌ها" + +#: desktopGrid.js:350 fileItem.js:651 +msgid "Open in Terminal" +msgstr "گشودن در پایانه" + +#: desktopGrid.js:352 +msgid "Change Background…" +msgstr "تغییر پس‌زمینه…" + +#: desktopGrid.js:354 +msgid "Display Settings" +msgstr "تنظیمات نمایشگر" + +#: desktopGrid.js:355 +msgid "Settings" +msgstr "تنظیمات" + +#: desktopGrid.js:653 +msgid "Rename" +msgstr "تغییر نام" + +#: desktopIconsUtil.js:61 +msgid "Command not found" +msgstr "فرمان پیدا نشد" + +#: fileItem.js:521 +msgid "Don’t Allow Launching" +msgstr "اجازه ندادن به اجرا" + +#: fileItem.js:523 +msgid "Allow Launching" +msgstr "اجازهٔ اجرا" + +#: fileItem.js:619 +msgid "Open" +msgstr "گشودن" + +#: fileItem.js:623 +msgid "Open With Other Application" +msgstr "گشودن با برنامه‌ای دیگر" + +#: fileItem.js:627 +msgid "Cut" +msgstr "برش" + +#: fileItem.js:628 +msgid "Copy" +msgstr "رونوشت" + +#: fileItem.js:630 +msgid "Rename…" +msgstr "تغییر نام…" + +#: fileItem.js:631 +msgid "Move to Trash" +msgstr "انداختن در زباله‌دان" + +#: fileItem.js:641 +msgid "Empty Trash" +msgstr "خالی کردن زباله‌دان" + +#: fileItem.js:647 +msgid "Properties" +msgstr "ویژگی‌ها" + +#: fileItem.js:649 +msgid "Show in Files" +msgstr "نمایش در پرونده‌ها" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 +msgid "Icon size" +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 "نمایش نقشک زباله‌دان در میزکار." diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/fi.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/fi.po --- gnome-shell-extension-desktop-icons-20.04.0/po/fi.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/fi.po 2020-09-08 08:05:17.000000000 +0000 @@ -8,8 +8,8 @@ "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-10-08 18:47+0000\n" -"PO-Revision-Date: 2020-02-23 13:36+0200\n" +"POT-Creation-Date: 2020-05-26 20:08+0000\n" +"PO-Revision-Date: 2020-08-16 17:43+0300\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -17,156 +17,178 @@ "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.3\n" +"X-Generator: Poedit 2.4.1\n" -#: createFolderDialog.js:49 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Uusi kansion nimi" -#: createFolderDialog.js:73 +#: createFolderDialog.js:70 msgid "Create" msgstr "Luo" -#: createFolderDialog.js:75 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Peru" -#: createFolderDialog.js:146 +#: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." msgstr "Kansion nimi ei voi sisältää merkkiä “/”." -#: createFolderDialog.js:149 +#: createFolderDialog.js:148 msgid "A folder cannot be called “.”." msgstr "Kansion nimi ei voi olla “.”." -#: createFolderDialog.js:152 +#: createFolderDialog.js:151 msgid "A folder cannot be called “..”." msgstr "Kansion nimi ei voi olla “..”." -#: createFolderDialog.js:154 +#: createFolderDialog.js:153 msgid "Folders with “.” at the beginning of their name are hidden." msgstr "Kansiot, joiden nimi alkaa merkillä “.”, ovat piilotettuja." -#: createFolderDialog.js:156 +#: 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 +#: prefs.js:103 msgid "Size for the desktop icons" -msgstr "Työpöytäkuvakkeiden koko" +msgstr "Työpöydän kuvakkeiden koko" -#: prefs.js:102 +#: prefs.js:103 msgid "Small" msgstr "Pieni" -#: prefs.js:102 +#: prefs.js:103 msgid "Standard" msgstr "Normaali" -#: prefs.js:102 +#: prefs.js:103 msgid "Large" msgstr "Suuri" -#: prefs.js:103 +#: prefs.js:104 msgid "Show the personal folder in the desktop" msgstr "Näytä kotikansio työpöydällä" -#: prefs.js:104 +#: prefs.js:105 msgid "Show the trash icon in the desktop" msgstr "Näytä roskakorin kuvake työpöydällä" -#: desktopGrid.js:328 +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "Näytä liitetyt asemat työpöydällä" + +#: desktopGrid.js:346 msgid "New Folder" msgstr "Uusi kansio" -#: desktopGrid.js:330 +#: desktopGrid.js:347 +msgid "New Document" +msgstr "Uusi asiakirja" + +#: desktopGrid.js:350 msgid "Paste" msgstr "Liitä" -#: desktopGrid.js:331 +#: desktopGrid.js:351 msgid "Undo" msgstr "Kumoa" -#: desktopGrid.js:332 +#: desktopGrid.js:352 msgid "Redo" msgstr "Tee uudeleen" -#: desktopGrid.js:334 +#: desktopGrid.js:354 msgid "Show Desktop in Files" msgstr "Näytä työpöytä tiedostonhallinnassa" -#: desktopGrid.js:335 fileItem.js:633 +#: desktopGrid.js:355 fileItem.js:721 msgid "Open in Terminal" msgstr "Avaa päätteessä" -#: desktopGrid.js:337 +#: desktopGrid.js:357 msgid "Change Background…" -msgstr "Vaihda taustakuvaa…" +msgstr "Vaihda taustakuva…" -#: desktopGrid.js:339 +#: desktopGrid.js:359 msgid "Display Settings" msgstr "Näytön asetukset" -#: desktopGrid.js:340 +#: desktopGrid.js:360 msgid "Settings" msgstr "Asetukset" -#: desktopGrid.js:612 -msgid "Enter file name…" -msgstr "Anna tiedostonimi…" - -#: desktopGrid.js:629 +#: desktopGrid.js:692 msgid "Rename" msgstr "Nimeä uudelleen" -#: desktopIconsUtil.js:61 +#: desktopIconsUtil.js:63 msgid "Command not found" msgstr "Komentoa ei löydy" -#: fileItem.js:500 +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "Aseman “%s” avaaminen epäonnistui:" + +#: fileItem.js:584 msgid "Don’t Allow Launching" msgstr "Älä salli käynnistämistä" -#: fileItem.js:502 +#: fileItem.js:586 msgid "Allow Launching" msgstr "Salli käynnistäminen" -#: fileItem.js:601 +#: fileItem.js:682 msgid "Open" msgstr "Avaa" -#: fileItem.js:605 +#: fileItem.js:686 msgid "Open With Other Application" msgstr "Avaa toisella sovelluksella" -#: fileItem.js:609 +#: fileItem.js:688 +msgid "Launch using Dedicated Graphics Card" +msgstr "Käynnistä käyttäen erillistä näytönohjainta" + +#: fileItem.js:693 msgid "Cut" msgstr "Leikkaa" -#: fileItem.js:610 +#: fileItem.js:694 msgid "Copy" msgstr "Kopioi" -#: fileItem.js:612 +#: fileItem.js:696 msgid "Rename…" msgstr "Nimeä uudelleen…" -#: fileItem.js:613 +#: fileItem.js:697 msgid "Move to Trash" msgstr "Siirrä roskakoriin" -#: fileItem.js:623 +#: fileItem.js:707 msgid "Empty Trash" msgstr "Tyhjennä roskakori" -#: fileItem.js:629 +#: fileItem.js:711 +msgid "Eject" +msgstr "Poista asemasta" + +#: fileItem.js:717 msgid "Properties" msgstr "Ominaisuudet" -#: fileItem.js:631 +#: fileItem.js:719 msgid "Show in Files" msgstr "Näytä tiedostonhallinnassa" +#: fileItem.js:925 +msgid "Home" +msgstr "Koti" + #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "Kuvakekoko" @@ -191,6 +213,17 @@ msgid "Show the trash icon in the desktop." msgstr "Näytä roskakorin kuvake työpöydällä." +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "Näytä liitetyt asemat" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "Näytä liitetyt asemat työpöydällä." + +#~ msgid "Enter file name…" +#~ msgstr "Anna tiedostonimi…" + #~ msgid "OK" #~ msgstr "OK" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/fr.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/fr.po --- gnome-shell-extension-desktop-icons-20.04.0/po/fr.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/fr.po 2020-09-08 08:05:17.000000000 +0000 @@ -8,9 +8,8 @@ msgid "" msgstr "" "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-10-08 18:47+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-05 21:12+0200\n" "PO-Revision-Date: 2020-02-23 16:32+0100\n" "Last-Translator: Claude Paroz \n" "Language-Team: GNOME French Team \n" @@ -20,35 +19,35 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: createFolderDialog.js:49 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Nouveau nom de dossier" -#: createFolderDialog.js:73 +#: createFolderDialog.js:70 msgid "Create" msgstr "Créer" -#: createFolderDialog.js:75 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Annuler" -#: createFolderDialog.js:146 +#: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." msgstr "Les noms de dossiers ne peuvent pas contenir « / »." -#: createFolderDialog.js:149 +#: createFolderDialog.js:148 msgid "A folder cannot be called “.”." msgstr "Un dossier ne peut pas être nommé « . »." -#: createFolderDialog.js:152 +#: createFolderDialog.js:151 msgid "A folder cannot be called “..”." msgstr "Un dossier ne peut pas être nommé « .. »." -#: createFolderDialog.js:154 +#: createFolderDialog.js:153 msgid "Folders with “.” at the beginning of their name are hidden." msgstr "Les dossiers dont le nom commence par « . » sont masqués." -#: createFolderDialog.js:156 +#: createFolderDialog.js:155 msgid "There is already a file or folder with that name." msgstr "Il existe déjà un fichier ou dossier ayant ce nom." @@ -76,47 +75,43 @@ msgid "Show the trash icon in the desktop" msgstr "Montrer la corbeille sur le bureau" -#: desktopGrid.js:328 +#: desktopGrid.js:343 msgid "New Folder" msgstr "Nouveau dossier" -#: desktopGrid.js:330 +#: desktopGrid.js:345 msgid "Paste" msgstr "Coller" -#: desktopGrid.js:331 +#: desktopGrid.js:346 msgid "Undo" msgstr "Annuler" -#: desktopGrid.js:332 +#: desktopGrid.js:347 msgid "Redo" msgstr "Refaire" -#: desktopGrid.js:334 +#: desktopGrid.js:349 msgid "Show Desktop in Files" msgstr "Afficher le bureau dans Fichiers" -#: desktopGrid.js:335 fileItem.js:633 +#: desktopGrid.js:350 fileItem.js:651 msgid "Open in Terminal" msgstr "Ouvrir dans un terminal" -#: desktopGrid.js:337 +#: desktopGrid.js:352 msgid "Change Background…" msgstr "Changer l’arrière-plan…" -#: desktopGrid.js:339 +#: desktopGrid.js:354 msgid "Display Settings" msgstr "Configuration d’affichage" -#: desktopGrid.js:340 +#: desktopGrid.js:355 msgid "Settings" msgstr "Paramètres" -#: desktopGrid.js:612 -msgid "Enter file name…" -msgstr "Saisir un nom de fichier…" - -#: desktopGrid.js:629 +#: desktopGrid.js:653 msgid "Rename" msgstr "Renommer" @@ -124,47 +119,47 @@ msgid "Command not found" msgstr "Commande introuvable" -#: fileItem.js:500 +#: fileItem.js:521 msgid "Don’t Allow Launching" msgstr "Ne pas autoriser le lancement" -#: fileItem.js:502 +#: fileItem.js:523 msgid "Allow Launching" msgstr "Autoriser le lancement" -#: fileItem.js:601 +#: fileItem.js:619 msgid "Open" msgstr "Ouvrir" -#: fileItem.js:605 +#: fileItem.js:623 msgid "Open With Other Application" msgstr "Ouvrir avec une autre application" -#: fileItem.js:609 +#: fileItem.js:627 msgid "Cut" msgstr "Couper" -#: fileItem.js:610 +#: fileItem.js:628 msgid "Copy" msgstr "Copier" -#: fileItem.js:612 +#: fileItem.js:630 msgid "Rename…" msgstr "Renommer…" -#: fileItem.js:613 +#: fileItem.js:631 msgid "Move to Trash" msgstr "Mettre à la corbeille" -#: fileItem.js:623 +#: fileItem.js:641 msgid "Empty Trash" msgstr "Vider la corbeille" -#: fileItem.js:629 +#: fileItem.js:647 msgid "Properties" msgstr "Propriétés" -#: fileItem.js:631 +#: fileItem.js:649 msgid "Show in Files" msgstr "Montrer dans Fichiers" @@ -192,5 +187,8 @@ msgid "Show the trash icon in the desktop." msgstr "Montrer la corbeille sur le bureau." +#~ msgid "Enter file name…" +#~ msgstr "Saisir un nom de fichier…" + #~ msgid "Huge" #~ msgstr "Immense" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/fur.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/fur.po --- gnome-shell-extension-desktop-icons-20.04.0/po/fur.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/fur.po 2020-09-08 08:05:17.000000000 +0000 @@ -8,31 +8,31 @@ "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" +"POT-Creation-Date: 2020-05-26 20:08+0000\n" +"PO-Revision-Date: 2020-09-08 10:04+0200\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" +"X-Generator: Poedit 2.4.1\n" -#: createFolderDialog.js:48 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Gnûf non de cartele" -#: createFolderDialog.js:72 +#: createFolderDialog.js:70 msgid "Create" msgstr "Cree" -#: createFolderDialog.js:74 desktopGrid.js:586 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Anule" #: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." -msgstr "I nons des cartelis no puedin contignî il caratar “/”" +msgstr "I nons des cartelis no puedin contignî il caratar “/”." #: createFolderDialog.js:148 msgid "A folder cannot be called “.”." @@ -50,118 +50,144 @@ 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 +#: prefs.js:103 msgid "Size for the desktop icons" msgstr "Dimension pes iconis dal scritori" -#: prefs.js:102 +#: prefs.js:103 msgid "Small" msgstr "Piçule" -#: prefs.js:102 +#: prefs.js:103 msgid "Standard" msgstr "Standard" -#: prefs.js:102 +#: prefs.js:103 msgid "Large" msgstr "Largje" -#: prefs.js:103 +#: prefs.js:104 msgid "Show the personal folder in the desktop" msgstr "Mostre la cartele personâl intal scritori" -#: prefs.js:104 +#: prefs.js:105 msgid "Show the trash icon in the desktop" msgstr "Mostre la icone de scovacere intal scritori" -#: desktopGrid.js:320 +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "Mostre lis unitâts montadis tal scritori" + +#: desktopGrid.js:346 msgid "New Folder" msgstr "Gnove cartele" -#: desktopGrid.js:322 +#: desktopGrid.js:347 +msgid "New Document" +msgstr "Gnûf document" + +#: desktopGrid.js:350 msgid "Paste" msgstr "Tache" -#: desktopGrid.js:323 +#: desktopGrid.js:351 msgid "Undo" msgstr "Anule" -#: desktopGrid.js:324 +#: desktopGrid.js:352 msgid "Redo" msgstr "Torne fâ" -#: desktopGrid.js:326 +#: desktopGrid.js:354 msgid "Show Desktop in Files" msgstr "Mostre Scritori in File" -#: desktopGrid.js:327 fileItem.js:606 +#: desktopGrid.js:355 fileItem.js:721 msgid "Open in Terminal" msgstr "Vierç in Terminâl" -#: desktopGrid.js:329 +#: desktopGrid.js:357 msgid "Change Background…" msgstr "Cambie sfont…" -#: desktopGrid.js:331 +#: desktopGrid.js:359 msgid "Display Settings" msgstr "Impostazions visôr" -#: desktopGrid.js:332 +#: desktopGrid.js:360 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" +#: desktopGrid.js:692 +msgid "Rename" +msgstr "Cambie non" + +#: desktopIconsUtil.js:63 +msgid "Command not found" +msgstr "Comant no cjatât" + +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "No si è rivâts a parâ fûr la unitât “%s”:" -#: fileItem.js:490 +#: fileItem.js:584 msgid "Don’t Allow Launching" msgstr "No sta permeti inviament" -#: fileItem.js:492 +#: fileItem.js:586 msgid "Allow Launching" msgstr "Permet inviament" -#: fileItem.js:574 +#: fileItem.js:682 msgid "Open" msgstr "Vierç" -#: fileItem.js:578 +#: fileItem.js:686 msgid "Open With Other Application" msgstr "Vierç cuntune altre aplicazion" -#: fileItem.js:582 +#: fileItem.js:688 +msgid "Launch using Dedicated Graphics Card" +msgstr "Invie doprant une schede grafiche dedicade" + +#: fileItem.js:693 msgid "Cut" msgstr "Taie" -#: fileItem.js:583 +#: fileItem.js:694 msgid "Copy" msgstr "Copie" -#: fileItem.js:585 +#: fileItem.js:696 msgid "Rename…" -msgstr "Cambie non..." +msgstr "Cambie non…" -#: fileItem.js:586 +#: fileItem.js:697 msgid "Move to Trash" msgstr "Sposte te scovacere" -#: fileItem.js:596 +#: fileItem.js:707 msgid "Empty Trash" msgstr "Disvuede scovacere" -#: fileItem.js:602 +#: fileItem.js:711 +msgid "Eject" +msgstr "Pare fûr" + +#: fileItem.js:717 msgid "Properties" msgstr "Propietâts" -#: fileItem.js:604 +#: fileItem.js:719 msgid "Show in Files" msgstr "Mostre in File" +#: fileItem.js:925 +msgid "Home" +msgstr "Home" + #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "Dimension icone" @@ -185,3 +211,17 @@ #: 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." + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "Mostre unitâts montadis" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "Mostre lis unitâts montadis intal scritori." + +#~ msgid "Enter file name…" +#~ msgstr "Inserìs il non dal file…" + +#~ msgid "OK" +#~ msgstr "Va ben" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/hr.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/hr.po --- gnome-shell-extension-desktop-icons-20.04.0/po/hr.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/hr.po 2020-09-08 08:05:17.000000000 +0000 @@ -6,9 +6,8 @@ msgid "" msgstr "" "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-10-08 18:47+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-05 21:12+0200\n" "PO-Revision-Date: 2020-03-01 19:23+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -19,35 +18,35 @@ "X-Launchpad-Export-Date: 2019-03-27 09:36+0000\n" "X-Generator: Poedit 2.0.6\n" -#: createFolderDialog.js:49 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Novi naziv mape" -#: createFolderDialog.js:73 +#: createFolderDialog.js:70 msgid "Create" msgstr "Stvori" -#: createFolderDialog.js:75 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Odustani" -#: createFolderDialog.js:146 +#: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." msgstr "Naziv mape ne može sadržavati “/”." -#: createFolderDialog.js:149 +#: createFolderDialog.js:148 msgid "A folder cannot be called “.”." msgstr "Mapa se ne može nazvati “.”." -#: createFolderDialog.js:152 +#: createFolderDialog.js:151 msgid "A folder cannot be called “..”." msgstr "Mapa se ne može nazvati “..”." -#: createFolderDialog.js:154 +#: 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:156 +#: createFolderDialog.js:155 msgid "There is already a file or folder with that name." msgstr "Već postoji datoteka ili mapa s tim nazivom." @@ -75,47 +74,43 @@ msgid "Show the trash icon in the desktop" msgstr "Prikaži mapu smeća na radnoj površini" -#: desktopGrid.js:328 +#: desktopGrid.js:343 msgid "New Folder" msgstr "Nova mapa" -#: desktopGrid.js:330 +#: desktopGrid.js:345 msgid "Paste" msgstr "Zalijepi" -#: desktopGrid.js:331 +#: desktopGrid.js:346 msgid "Undo" msgstr "Poništi" -#: desktopGrid.js:332 +#: desktopGrid.js:347 msgid "Redo" msgstr "Ponovi" -#: desktopGrid.js:334 +#: desktopGrid.js:349 msgid "Show Desktop in Files" msgstr "Prikaži radnu površinu u Datotekama" -#: desktopGrid.js:335 fileItem.js:633 +#: desktopGrid.js:350 fileItem.js:651 msgid "Open in Terminal" msgstr "Otvori u Terminalu" -#: desktopGrid.js:337 +#: desktopGrid.js:352 msgid "Change Background…" msgstr "Promijeni pozadinu…" -#: desktopGrid.js:339 +#: desktopGrid.js:354 msgid "Display Settings" msgstr "Postavke zaslona" -#: desktopGrid.js:340 +#: desktopGrid.js:355 msgid "Settings" msgstr "Postavke" -#: desktopGrid.js:612 -msgid "Enter file name…" -msgstr "Upiši naziv datoteke…" - -#: desktopGrid.js:629 +#: desktopGrid.js:653 msgid "Rename" msgstr "Preimenuj" @@ -123,47 +118,47 @@ msgid "Command not found" msgstr "Naredba nije pronađena" -#: fileItem.js:500 +#: fileItem.js:521 msgid "Don’t Allow Launching" msgstr "Ne dopuštaj pokretanje" -#: fileItem.js:502 +#: fileItem.js:523 msgid "Allow Launching" msgstr "Dopusti pokretanje" -#: fileItem.js:601 +#: fileItem.js:619 msgid "Open" msgstr "Otvori" -#: fileItem.js:605 +#: fileItem.js:623 msgid "Open With Other Application" msgstr "Otvori s drugom aplikacijom" -#: fileItem.js:609 +#: fileItem.js:627 msgid "Cut" msgstr "Izreži" -#: fileItem.js:610 +#: fileItem.js:628 msgid "Copy" msgstr "Kopiraj" -#: fileItem.js:612 +#: fileItem.js:630 msgid "Rename…" msgstr "Preimenuj…" -#: fileItem.js:613 +#: fileItem.js:631 msgid "Move to Trash" msgstr "Premjesti u smeće" -#: fileItem.js:623 +#: fileItem.js:641 msgid "Empty Trash" msgstr "Isprazni smeće" -#: fileItem.js:629 +#: fileItem.js:647 msgid "Properties" msgstr "Svojstva" -#: fileItem.js:631 +#: fileItem.js:649 msgid "Show in Files" msgstr "Prikaži u Datotekama" @@ -191,5 +186,8 @@ msgid "Show the trash icon in the desktop." msgstr "Prikaži ikonu smeća na radnoj površini." +#~ msgid "Enter file name…" +#~ msgstr "Upiši naziv datoteke…" + #~ msgid "OK" #~ msgstr "U redu" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/hu.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/hu.po --- gnome-shell-extension-desktop-icons-20.04.0/po/hu.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/hu.po 2020-09-08 08:05:17.000000000 +0000 @@ -6,9 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: desktop-icons master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-i" -"cons/issues\n" -"POT-Creation-Date: 2019-10-08 18:47+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-05 21:12+0200\n" "PO-Revision-Date: 2019-10-10 14:42+0200\n" "Last-Translator: Balázs Úr \n" "Language-Team: Hungarian \n" @@ -19,35 +18,35 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 18.12.3\n" -#: createFolderDialog.js:49 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Új mappa neve" -#: createFolderDialog.js:73 +#: createFolderDialog.js:70 msgid "Create" msgstr "Létrehozás" -#: createFolderDialog.js:75 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Mégse" -#: createFolderDialog.js:146 +#: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." msgstr "A mappanevek nem tartalmazhatnak „/” karaktert." -#: createFolderDialog.js:149 +#: createFolderDialog.js:148 msgid "A folder cannot be called “.”." msgstr "Egy mappának nem lehet „.” a neve." -#: createFolderDialog.js:152 +#: createFolderDialog.js:151 msgid "A folder cannot be called “..”." msgstr "Egy mappának nem lehet „..” a neve." -#: createFolderDialog.js:154 +#: 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:156 +#: 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." @@ -75,48 +74,43 @@ msgid "Show the trash icon in the desktop" msgstr "A kuka ikon megjelenítése az asztalon" -#: desktopGrid.js:328 +#: desktopGrid.js:343 msgid "New Folder" msgstr "Új mappa" -#: desktopGrid.js:330 +#: desktopGrid.js:345 msgid "Paste" msgstr "Beillesztés" -#: desktopGrid.js:331 +#: desktopGrid.js:346 msgid "Undo" msgstr "Visszavonás" -#: desktopGrid.js:332 +#: desktopGrid.js:347 msgid "Redo" msgstr "Újra" -#: desktopGrid.js:334 +#: desktopGrid.js:349 msgid "Show Desktop in Files" msgstr "Asztal megjelenítése a Fájlokban" -#: desktopGrid.js:335 fileItem.js:633 +#: desktopGrid.js:350 fileItem.js:651 msgid "Open in Terminal" msgstr "Megnyitás terminálban" -#: desktopGrid.js:337 +#: desktopGrid.js:352 msgid "Change Background…" msgstr "Háttér megváltoztatása…" -#: desktopGrid.js:339 +#: desktopGrid.js:354 msgid "Display Settings" msgstr "Megjelenítés beállításai" -#: desktopGrid.js:340 +#: desktopGrid.js:355 msgid "Settings" msgstr "Beállítások" -#: desktopGrid.js:612 -msgid "Enter file name…" -msgstr "Adjon meg egy fájlnevet…" - -#: desktopGrid.js:629 -#| msgid "Rename…" +#: desktopGrid.js:653 msgid "Rename" msgstr "Átnevezés" @@ -124,47 +118,47 @@ msgid "Command not found" msgstr "A parancs nem található" -#: fileItem.js:500 +#: fileItem.js:521 msgid "Don’t Allow Launching" msgstr "Ne engedélyezzen indítást" -#: fileItem.js:502 +#: fileItem.js:523 msgid "Allow Launching" msgstr "Indítás engedélyezése" -#: fileItem.js:601 +#: fileItem.js:619 msgid "Open" msgstr "Megnyitás" -#: fileItem.js:605 +#: fileItem.js:623 msgid "Open With Other Application" msgstr "Megnyitás egyéb alkalmazással" -#: fileItem.js:609 +#: fileItem.js:627 msgid "Cut" msgstr "Kivágás" -#: fileItem.js:610 +#: fileItem.js:628 msgid "Copy" msgstr "Másolás" -#: fileItem.js:612 +#: fileItem.js:630 msgid "Rename…" msgstr "Átnevezés…" -#: fileItem.js:613 +#: fileItem.js:631 msgid "Move to Trash" msgstr "Áthelyezés a Kukába" -#: fileItem.js:623 +#: fileItem.js:641 msgid "Empty Trash" msgstr "Kuka ürítése" -#: fileItem.js:629 +#: fileItem.js:647 msgid "Properties" msgstr "Tulajdonságok" -#: fileItem.js:631 +#: fileItem.js:649 msgid "Show in Files" msgstr "Megjelenítés a Fájlokban" @@ -191,3 +185,6 @@ #: 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." + +#~ msgid "Enter file name…" +#~ msgstr "Adjon meg egy fájlnevet…" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/id.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/id.po --- gnome-shell-extension-desktop-icons-20.04.0/po/id.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/id.po 2020-09-08 08:05:17.000000000 +0000 @@ -2,170 +2,193 @@ # Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER # This file is distributed under the same license as the desktop-icons package. # Kukuh Syafaat , 2018-2020. +# Andika Triwidada , 2020. # msgid "" msgstr "" "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-10-08 18:47+0000\n" -"PO-Revision-Date: 2020-01-14 20:04+0700\n" -"Last-Translator: Kukuh Syafaat \n" +"POT-Creation-Date: 2020-05-26 20:08+0000\n" +"PO-Revision-Date: 2020-06-06 16:30+0700\n" +"Last-Translator: Andika Triwidada \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.4\n" +"X-Generator: Poedit 2.3.1\n" -#: createFolderDialog.js:49 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Nama folder baru" -#: createFolderDialog.js:73 +#: createFolderDialog.js:70 msgid "Create" msgstr "Buat" -#: createFolderDialog.js:75 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Batal" -#: createFolderDialog.js:146 +#: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." msgstr "Nama folder tak boleh memuat \"/\"." -#: createFolderDialog.js:149 +#: createFolderDialog.js:148 msgid "A folder cannot be called “.”." msgstr "Sebuah folder tak bisa dinamai \".\"." -#: createFolderDialog.js:152 +#: createFolderDialog.js:151 msgid "A folder cannot be called “..”." msgstr "Sebuah folder tak bisa dinamai \"..\"." -#: createFolderDialog.js:154 +#: createFolderDialog.js:153 msgid "Folders with “.” at the beginning of their name are hidden." msgstr "Folder dengan \".\" di awal nama mereka disembunyikan." -#: createFolderDialog.js:156 +#: createFolderDialog.js:155 msgid "There is already a file or folder with that name." msgstr "Folder dengan nama itu sudah ada." -#: prefs.js:102 +#: prefs.js:103 msgid "Size for the desktop icons" msgstr "Ukuran untuk ikon destop" -#: prefs.js:102 +#: prefs.js:103 msgid "Small" msgstr "Kecil" -#: prefs.js:102 +#: prefs.js:103 msgid "Standard" msgstr "Standar" -#: prefs.js:102 +#: prefs.js:103 msgid "Large" msgstr "Besar" -#: prefs.js:103 +#: prefs.js:104 msgid "Show the personal folder in the desktop" msgstr "Tampilkan folder pribadi di destop" -#: prefs.js:104 +#: prefs.js:105 msgid "Show the trash icon in the desktop" msgstr "Tampilkan ikon tong sampah di destop" -#: desktopGrid.js:328 +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "Tampilkan kandar yang dikaitkan di destop" + +#: desktopGrid.js:346 msgid "New Folder" msgstr "Folder Baru" -#: desktopGrid.js:330 +#: desktopGrid.js:347 +msgid "New Document" +msgstr "Dokumen Baru" + +#: desktopGrid.js:350 msgid "Paste" msgstr "Tempel" -#: desktopGrid.js:331 +#: desktopGrid.js:351 msgid "Undo" msgstr "Tak Jadi" -#: desktopGrid.js:332 +#: desktopGrid.js:352 msgid "Redo" msgstr "Jadi Lagi" -#: desktopGrid.js:334 +#: desktopGrid.js:354 msgid "Show Desktop in Files" msgstr "Tampilkan Destop pada Berkas" -#: desktopGrid.js:335 fileItem.js:633 +#: desktopGrid.js:355 fileItem.js:721 msgid "Open in Terminal" msgstr "Buka dalam Terminal" -#: desktopGrid.js:337 +#: desktopGrid.js:357 msgid "Change Background…" msgstr "Ubah Latar Belakang…" -#: desktopGrid.js:339 +#: desktopGrid.js:359 msgid "Display Settings" msgstr "Pengaturan Tampilan" -#: desktopGrid.js:340 +#: desktopGrid.js:360 msgid "Settings" msgstr "Pengaturan" -#: desktopGrid.js:612 -msgid "Enter file name…" -msgstr "Masukkan nama berkas…" - -#: desktopGrid.js:629 +#: desktopGrid.js:692 msgid "Rename" msgstr "Ganti Nama" -#: desktopIconsUtil.js:61 +#: desktopIconsUtil.js:63 msgid "Command not found" msgstr "Perintah tidak ditemukan" -#: fileItem.js:500 +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "Mengeluarkan kandar \"%s\" gagal:" + +#: fileItem.js:584 msgid "Don’t Allow Launching" msgstr "Jangan Izinkan Peluncuran" -#: fileItem.js:502 +#: fileItem.js:586 msgid "Allow Launching" msgstr "Izinkan Peluncuran" -#: fileItem.js:601 +#: fileItem.js:682 msgid "Open" msgstr "Buka" -#: fileItem.js:605 +#: fileItem.js:686 msgid "Open With Other Application" msgstr "Buka Dengan Aplikasi Lain" -#: fileItem.js:609 +#: fileItem.js:688 +msgid "Launch using Dedicated Graphics Card" +msgstr "Luncurkan menggunakan Kartu Grafis Terdedikasi" + +#: fileItem.js:693 msgid "Cut" msgstr "Potong" -#: fileItem.js:610 +#: fileItem.js:694 msgid "Copy" msgstr "Salin" -#: fileItem.js:612 +#: fileItem.js:696 msgid "Rename…" msgstr "Ganti Nama…" -#: fileItem.js:613 +#: fileItem.js:697 msgid "Move to Trash" msgstr "Pindahkan ke Tong Sampah" -#: fileItem.js:623 +#: fileItem.js:707 msgid "Empty Trash" msgstr "Kosongkan Tong Sampah" -#: fileItem.js:629 +#: fileItem.js:711 +msgid "Eject" +msgstr "Keluarkan" + +#: fileItem.js:717 msgid "Properties" msgstr "Properti" -#: fileItem.js:631 +#: fileItem.js:719 msgid "Show in Files" msgstr "Tampilkan pada Berkas" +#: fileItem.js:925 +msgid "Home" +msgstr "Rumah" + #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "Ukuran ikon" @@ -190,8 +213,10 @@ msgid "Show the trash icon in the desktop." msgstr "Tampilkan ikon tong sampah di destop." -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Huge" -#~ msgstr "Sangat besar" +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "Tampilkan kandar yang dikaitkan" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "Tampilkan kandar yang dikaitkan di destop." diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/it.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/it.po --- gnome-shell-extension-desktop-icons-20.04.0/po/it.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/it.po 2020-09-08 08:05:17.000000000 +0000 @@ -1,16 +1,16 @@ # Italian translation for desktop-icons. -# Copyright (C) 2019 desktop-icons's COPYRIGHT HOLDER +# Copyright (C) 2019, 2020 desktop-icons's COPYRIGHT HOLDER # This file is distributed under the same license as the desktop-icons package. # Massimo Branchini , 2019. -# Milo Casagrande , 2019. +# Milo Casagrande , 2019, 2020. # msgid "" msgstr "" "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" +"POT-Creation-Date: 2020-04-05 19:13+0000\n" +"PO-Revision-Date: 2020-04-07 09:36+0200\n" "Last-Translator: Milo Casagrande \n" "Language-Team: Italian \n" "Language: it\n" @@ -18,17 +18,17 @@ "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" +"X-Generator: Poedit 2.2.4\n" -#: createFolderDialog.js:48 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Nuova cartella" -#: createFolderDialog.js:72 +#: createFolderDialog.js:70 msgid "Create" msgstr "Crea" -#: createFolderDialog.js:74 desktopGrid.js:586 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Annulla" @@ -76,91 +76,91 @@ msgid "Show the trash icon in the desktop" msgstr "Mostra il cestino sulla scrivania" -#: desktopGrid.js:320 +#: desktopGrid.js:343 msgid "New Folder" msgstr "Nuova cartella" -#: desktopGrid.js:322 +#: desktopGrid.js:345 msgid "Paste" msgstr "Incolla" -#: desktopGrid.js:323 +#: desktopGrid.js:346 msgid "Undo" msgstr "Annulla" -#: desktopGrid.js:324 +#: desktopGrid.js:347 msgid "Redo" msgstr "Ripeti" -#: desktopGrid.js:326 +#: desktopGrid.js:349 msgid "Show Desktop in Files" msgstr "Mostra la scrivania in File" -#: desktopGrid.js:327 fileItem.js:606 +#: desktopGrid.js:350 fileItem.js:651 msgid "Open in Terminal" msgstr "Apri in Terminale" -#: desktopGrid.js:329 +#: desktopGrid.js:352 msgid "Change Background…" msgstr "Cambia lo sfondo…" -#: desktopGrid.js:331 +#: desktopGrid.js:354 msgid "Display Settings" msgstr "Impostazioni dello schermo" -#: desktopGrid.js:332 +#: desktopGrid.js:355 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" +#: desktopGrid.js:653 +msgid "Rename" +msgstr "Rinomina" + +#: desktopIconsUtil.js:61 +msgid "Command not found" +msgstr "Comando non trovato" -#: fileItem.js:490 +#: fileItem.js:521 msgid "Don’t Allow Launching" msgstr "Non permettere l'esecuzione" -#: fileItem.js:492 +#: fileItem.js:523 msgid "Allow Launching" msgstr "Permetti l'esecuzione" -#: fileItem.js:574 +#: fileItem.js:619 msgid "Open" msgstr "Apri" -#: fileItem.js:578 +#: fileItem.js:623 msgid "Open With Other Application" msgstr "Apri con altra applicazione" -#: fileItem.js:582 +#: fileItem.js:627 msgid "Cut" msgstr "Taglia" -#: fileItem.js:583 +#: fileItem.js:628 msgid "Copy" msgstr "Copia" -#: fileItem.js:585 +#: fileItem.js:630 msgid "Rename…" msgstr "Rinomina…" -#: fileItem.js:586 +#: fileItem.js:631 msgid "Move to Trash" msgstr "Sposta nel cestino" -#: fileItem.js:596 +#: fileItem.js:641 msgid "Empty Trash" msgstr "Svuota il cestino" -#: fileItem.js:602 +#: fileItem.js:647 msgid "Properties" msgstr "Proprietà" -#: fileItem.js:604 +#: fileItem.js:649 msgid "Show in Files" msgstr "Mostra in File" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/ja.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/ja.po --- gnome-shell-extension-desktop-icons-20.04.0/po/ja.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/ja.po 2020-09-08 08:05:17.000000000 +0000 @@ -8,8 +8,8 @@ "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-12-18 14:41+0000\n" -"PO-Revision-Date: 2020-02-27 21:00+0900\n" +"POT-Creation-Date: 2020-05-26 20:08+0000\n" +"PO-Revision-Date: 2020-05-30 00:00+0900\n" "Last-Translator: sicklylife \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -32,7 +32,7 @@ #: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." -msgstr "“/”は、フォルダー名に含められません。" +msgstr "“/”はフォルダー名に含められません。" #: createFolderDialog.js:148 msgid "A folder cannot be called “.”." @@ -44,128 +44,150 @@ #: createFolderDialog.js:153 msgid "Folders with “.” at the beginning of their name are hidden." -msgstr "名前が“.”で始まるフォルダーは、隠しフォルダーになります。" +msgstr "“.”で始まるフォルダーは隠しフォルダーになります。" #: createFolderDialog.js:155 msgid "There is already a file or folder with that name." msgstr "その名前のファイルかフォルダーがすでに存在します。" -#: prefs.js:102 +#: prefs.js:103 msgid "Size for the desktop icons" msgstr "デスクトップアイコンのサイズ" -#: prefs.js:102 +#: prefs.js:103 msgid "Small" msgstr "小さい" -#: prefs.js:102 +#: prefs.js:103 msgid "Standard" msgstr "標準" -#: prefs.js:102 +#: prefs.js:103 msgid "Large" msgstr "大きい" -#: prefs.js:103 +#: prefs.js:104 msgid "Show the personal folder in the desktop" -msgstr "デスクトップにホームフォルダーを表示する" +msgstr "ホームフォルダーをデスクトップに表示する" -#: prefs.js:104 +#: prefs.js:105 msgid "Show the trash icon in the desktop" -msgstr "デスクトップにゴミ箱を表示する" +msgstr "ゴミ箱をデスクトップに表示する" + +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "マウントしたドライブをデスクトップに表示する" -#: desktopGrid.js:343 +#: desktopGrid.js:346 msgid "New Folder" msgstr "新しいフォルダー" -#: desktopGrid.js:345 +#: desktopGrid.js:347 +msgid "New Document" +msgstr "新しいドキュメント" + +#: desktopGrid.js:350 msgid "Paste" msgstr "貼り付け" -#: desktopGrid.js:346 +#: desktopGrid.js:351 msgid "Undo" msgstr "元に戻す" -#: desktopGrid.js:347 +#: desktopGrid.js:352 msgid "Redo" msgstr "やり直す" -#: desktopGrid.js:349 +#: desktopGrid.js:354 msgid "Show Desktop in Files" msgstr "“ファイル”でデスクトップを表示" -#: desktopGrid.js:350 fileItem.js:643 +#: desktopGrid.js:355 fileItem.js:721 msgid "Open in Terminal" msgstr "端末で開く" -#: desktopGrid.js:352 +#: desktopGrid.js:357 msgid "Change Background…" msgstr "背景を変更…" -#: desktopGrid.js:354 +#: desktopGrid.js:359 msgid "Display Settings" msgstr "ディスプレイの設定" -#: desktopGrid.js:355 +#: desktopGrid.js:360 msgid "Settings" msgstr "設定" -#: desktopGrid.js:637 -msgid "Enter file name…" -msgstr "ファイル名を入力してください…" - -#: desktopGrid.js:654 +#: desktopGrid.js:692 msgid "Rename" msgstr "名前を変更" -#: desktopIconsUtil.js:61 +#: desktopIconsUtil.js:63 msgid "Command not found" msgstr "コマンドが見つかりませんでした" -#: fileItem.js:513 +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "“%s”の取り出しに失敗しました:" + +#: fileItem.js:584 msgid "Don’t Allow Launching" msgstr "起動を許可しない" -#: fileItem.js:515 +#: fileItem.js:586 msgid "Allow Launching" msgstr "起動を許可する" -#: fileItem.js:611 +#: fileItem.js:682 msgid "Open" msgstr "開く" -#: fileItem.js:615 +#: fileItem.js:686 msgid "Open With Other Application" msgstr "別のアプリケーションで開く" -#: fileItem.js:619 +#: fileItem.js:688 +msgid "Launch using Dedicated Graphics Card" +msgstr "専用のグラフィックカードを使用して起動" + +#: fileItem.js:693 msgid "Cut" msgstr "切り取り" -#: fileItem.js:620 +#: fileItem.js:694 msgid "Copy" msgstr "コピー" -#: fileItem.js:622 +#: fileItem.js:696 msgid "Rename…" msgstr "名前を変更…" -#: fileItem.js:623 +#: fileItem.js:697 msgid "Move to Trash" msgstr "ゴミ箱へ移動する" -#: fileItem.js:633 +#: fileItem.js:707 msgid "Empty Trash" msgstr "ゴミ箱を空にする" -#: fileItem.js:639 +#: fileItem.js:711 +msgid "Eject" +msgstr "取り出す" + +#: fileItem.js:717 msgid "Properties" msgstr "プロパティ" -#: fileItem.js:641 +#: fileItem.js:719 msgid "Show in Files" msgstr "“ファイル”で表示" +#: fileItem.js:925 +msgid "Home" +msgstr "ホーム" + #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "アイコンサイズ" @@ -189,3 +211,11 @@ #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 msgid "Show the trash icon in the desktop." msgstr "デスクトップにゴミ箱のアイコンを表示します。" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "マウントしたドライブを表示する" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "デスクトップにマウントしたドライブを表示します。" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/LINGUAS gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/LINGUAS --- gnome-shell-extension-desktop-icons-20.04.0/po/LINGUAS 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/LINGUAS 2020-09-08 08:05:17.000000000 +0000 @@ -6,6 +6,7 @@ en_GB es eu +fa fi fr fur @@ -17,8 +18,12 @@ nl pl pt_BR +ro ru +sk +sl sv tr uk +zh_CN zh_TW diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/nl.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/nl.po --- gnome-shell-extension-desktop-icons-20.04.0/po/nl.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/nl.po 2020-09-08 08:05:17.000000000 +0000 @@ -8,8 +8,8 @@ "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-10-08 18:47+0000\n" -"PO-Revision-Date: 2020-03-07 23:19+0100\n" +"POT-Creation-Date: 2020-05-26 20:08+0000\n" +"PO-Revision-Date: 2020-08-25 21:34+0200\n" "Last-Translator: Nathan Follens \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -17,156 +17,178 @@ "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.3\n" +"X-Generator: Poedit 2.4.1\n" -#: createFolderDialog.js:49 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Nieuwe mapnaam" -#: createFolderDialog.js:73 +#: createFolderDialog.js:70 msgid "Create" msgstr "Aanmaken" -#: createFolderDialog.js:75 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Annuleren" -#: createFolderDialog.js:146 +#: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." msgstr "Mapnamen kunnen geen ‘/’ bevatten." -#: createFolderDialog.js:149 +#: createFolderDialog.js:148 msgid "A folder cannot be called “.”." msgstr "Een map kan niet ‘.’ worden genoemd." -#: createFolderDialog.js:152 +#: createFolderDialog.js:151 msgid "A folder cannot be called “..”." msgstr "Een map kan niet ‘..’ worden genoemd." -#: createFolderDialog.js:154 +#: 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:156 +#: 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 +#: prefs.js:103 msgid "Size for the desktop icons" msgstr "Grootte van bureaubladpictogrammen" -#: prefs.js:102 +#: prefs.js:103 msgid "Small" msgstr "Klein" -#: prefs.js:102 +#: prefs.js:103 msgid "Standard" msgstr "Standaard" -#: prefs.js:102 +#: prefs.js:103 msgid "Large" msgstr "Groot" -#: prefs.js:103 +#: prefs.js:104 msgid "Show the personal folder in the desktop" msgstr "Toon de persoonlijke map op het bureaublad" -#: prefs.js:104 +#: prefs.js:105 msgid "Show the trash icon in the desktop" msgstr "Toon het prullenbakpictogram op het bureaublad" -#: desktopGrid.js:328 +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "Gekoppelde volumes tonen op het bureaublad" + +#: desktopGrid.js:346 msgid "New Folder" msgstr "Nieuwe map" -#: desktopGrid.js:330 +#: desktopGrid.js:347 +msgid "New Document" +msgstr "Nieuw document" + +#: desktopGrid.js:350 msgid "Paste" msgstr "Plakken" -#: desktopGrid.js:331 +#: desktopGrid.js:351 msgid "Undo" msgstr "Ongedaan maken" -#: desktopGrid.js:332 +#: desktopGrid.js:352 msgid "Redo" msgstr "Opnieuw" -#: desktopGrid.js:334 +#: desktopGrid.js:354 msgid "Show Desktop in Files" msgstr "Bureaublad tonen in Bestanden" -#: desktopGrid.js:335 fileItem.js:633 +#: desktopGrid.js:355 fileItem.js:721 msgid "Open in Terminal" msgstr "Openen in terminalvenster" -#: desktopGrid.js:337 +#: desktopGrid.js:357 msgid "Change Background…" msgstr "Achtergrond aanpassen…" -#: desktopGrid.js:339 +#: desktopGrid.js:359 msgid "Display Settings" msgstr "Scherminstellingen" -#: desktopGrid.js:340 +#: desktopGrid.js:360 msgid "Settings" msgstr "Instellingen" -#: desktopGrid.js:612 -msgid "Enter file name…" -msgstr "Voer bestandsnaam in…" - -#: desktopGrid.js:629 +#: desktopGrid.js:692 msgid "Rename" msgstr "Hernoemen" -#: desktopIconsUtil.js:61 +#: desktopIconsUtil.js:63 msgid "Command not found" msgstr "Opdracht niet gevonden" -#: fileItem.js:500 +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "Uitwerpen van station ‘%s’ mislukt:" + +#: fileItem.js:584 msgid "Don’t Allow Launching" msgstr "Toepassingen starten niet toestaan" -#: fileItem.js:502 +#: fileItem.js:586 msgid "Allow Launching" msgstr "Toepassingen starten toestaan" -#: fileItem.js:601 +#: fileItem.js:682 msgid "Open" msgstr "Openen" -#: fileItem.js:605 +#: fileItem.js:686 msgid "Open With Other Application" msgstr "Met andere toepassing openen" -#: fileItem.js:609 +#: fileItem.js:688 +msgid "Launch using Dedicated Graphics Card" +msgstr "Met grafische kaart opstarten" + +#: fileItem.js:693 msgid "Cut" msgstr "Knippen" -#: fileItem.js:610 +#: fileItem.js:694 msgid "Copy" msgstr "Kopiëren" -#: fileItem.js:612 +#: fileItem.js:696 msgid "Rename…" msgstr "Hernoemen…" -#: fileItem.js:613 +#: fileItem.js:697 msgid "Move to Trash" msgstr "Verplaatsen naar prullenbak" -#: fileItem.js:623 +#: fileItem.js:707 msgid "Empty Trash" msgstr "Prullenbak legen" -#: fileItem.js:629 +#: fileItem.js:711 +msgid "Eject" +msgstr "Uitwerpen" + +#: fileItem.js:717 msgid "Properties" msgstr "Eigenschappen" -#: fileItem.js:631 +#: fileItem.js:719 msgid "Show in Files" msgstr "Tonen in Bestanden" +#: fileItem.js:925 +msgid "Home" +msgstr "Persoonlijke map" + #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "Pictogramgrootte" @@ -191,5 +213,16 @@ msgid "Show the trash icon in the desktop." msgstr "Toon het prullenbakpictogram op het bureaublad." +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "Gekoppelde volumes tonen" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "Gekoppelde volumes tonen op het bureaublad." + +#~ msgid "Enter file name…" +#~ msgstr "Voer bestandsnaam in…" + #~ msgid "OK" #~ msgstr "Oké" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/pl.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/pl.po --- gnome-shell-extension-desktop-icons-20.04.0/po/pl.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/pl.po 2020-09-08 08:05:17.000000000 +0000 @@ -1,16 +1,16 @@ # Polish translation for desktop-icons. -# Copyright © 2018-2019 the desktop-icons authors. +# Copyright © 2018-2020 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. +# Piotr Drąg , 2018-2020. +# Aviary.pl , 2018-2020. # msgid "" msgstr "" "Project-Id-Version: desktop-icons\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" "icons/issues\n" -"POT-Creation-Date: 2019-10-08 18:47+0000\n" -"PO-Revision-Date: 2019-10-10 13:35+0200\n" +"POT-Creation-Date: 2020-05-26 20:08+0000\n" +"PO-Revision-Date: 2020-05-31 14:15+0200\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "Language: pl\n" @@ -20,154 +20,176 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -#: createFolderDialog.js:49 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Nazwa nowego katalogu" -#: createFolderDialog.js:73 +#: createFolderDialog.js:70 msgid "Create" msgstr "Utwórz" -#: createFolderDialog.js:75 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Anuluj" -#: createFolderDialog.js:146 +#: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." msgstr "Nazwy katalogów nie mogą zawierać znaku „/”." -#: createFolderDialog.js:149 +#: createFolderDialog.js:148 msgid "A folder cannot be called “.”." msgstr "Katalog nie może mieć nazwy „.”." -#: createFolderDialog.js:152 +#: createFolderDialog.js:151 msgid "A folder cannot be called “..”." msgstr "Katalog nie może mieć nazwy „..”." -#: createFolderDialog.js:154 +#: 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:156 +#: 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 +#: prefs.js:103 msgid "Size for the desktop icons" msgstr "Rozmiar ikon na pulpicie" -#: prefs.js:102 +#: prefs.js:103 msgid "Small" msgstr "Mały" -#: prefs.js:102 +#: prefs.js:103 msgid "Standard" msgstr "Standardowy" -#: prefs.js:102 +#: prefs.js:103 msgid "Large" msgstr "Duży" -#: prefs.js:103 +#: prefs.js:104 msgid "Show the personal folder in the desktop" msgstr "Katalog domowy na pulpicie" -#: prefs.js:104 +#: prefs.js:105 msgid "Show the trash icon in the desktop" msgstr "Kosz na pulpicie" -#: desktopGrid.js:328 +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "Zamontowane napędy na pulpicie" + +#: desktopGrid.js:346 msgid "New Folder" msgstr "Nowy katalog" -#: desktopGrid.js:330 +#: desktopGrid.js:347 +msgid "New Document" +msgstr "Nowy dokument" + +#: desktopGrid.js:350 msgid "Paste" msgstr "Wklej" -#: desktopGrid.js:331 +#: desktopGrid.js:351 msgid "Undo" msgstr "Cofnij" -#: desktopGrid.js:332 +#: desktopGrid.js:352 msgid "Redo" msgstr "Ponów" -#: desktopGrid.js:334 +#: desktopGrid.js:354 msgid "Show Desktop in Files" msgstr "Wyświetl pulpit w menedżerze plików" -#: desktopGrid.js:335 fileItem.js:633 +#: desktopGrid.js:355 fileItem.js:721 msgid "Open in Terminal" msgstr "Otwórz w terminalu" -#: desktopGrid.js:337 +#: desktopGrid.js:357 msgid "Change Background…" msgstr "Zmień tło…" -#: desktopGrid.js:339 +#: desktopGrid.js:359 msgid "Display Settings" msgstr "Ustawienia ekranu" -#: desktopGrid.js:340 +#: desktopGrid.js:360 msgid "Settings" msgstr "Ustawienia" -#: desktopGrid.js:612 -msgid "Enter file name…" -msgstr "Nazwa pliku…" - -#: desktopGrid.js:629 +#: desktopGrid.js:692 msgid "Rename" msgstr "Zmień nazwę" -#: desktopIconsUtil.js:61 +#: desktopIconsUtil.js:63 msgid "Command not found" msgstr "Nie odnaleziono polecenia" -#: fileItem.js:500 +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "Wysunięcie napędu „%s” się nie powiodło:" + +#: fileItem.js:584 msgid "Don’t Allow Launching" msgstr "Nie zezwalaj na uruchamianie" -#: fileItem.js:502 +#: fileItem.js:586 msgid "Allow Launching" msgstr "Zezwól na uruchamianie" -#: fileItem.js:601 +#: fileItem.js:682 msgid "Open" msgstr "Otwórz" -#: fileItem.js:605 +#: fileItem.js:686 msgid "Open With Other Application" msgstr "Otwórz za pomocą innego programu" -#: fileItem.js:609 +#: fileItem.js:688 +msgid "Launch using Dedicated Graphics Card" +msgstr "Uruchom za pomocą dedykowanej karty graficznej" + +#: fileItem.js:693 msgid "Cut" msgstr "Wytnij" -#: fileItem.js:610 +#: fileItem.js:694 msgid "Copy" msgstr "Skopiuj" -#: fileItem.js:612 +#: fileItem.js:696 msgid "Rename…" msgstr "Zmień nazwę…" -#: fileItem.js:613 +#: fileItem.js:697 msgid "Move to Trash" msgstr "Przenieś do kosza" -#: fileItem.js:623 +#: fileItem.js:707 msgid "Empty Trash" msgstr "Opróżnij kosz" -#: fileItem.js:629 +#: fileItem.js:711 +msgid "Eject" +msgstr "Wysuń" + +#: fileItem.js:717 msgid "Properties" msgstr "Właściwości" -#: fileItem.js:631 +#: fileItem.js:719 msgid "Show in Files" msgstr "Wyświetl w menedżerze plików" +#: fileItem.js:925 +msgid "Home" +msgstr "Katalog domowy" + #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "Rozmiar ikon" @@ -191,3 +213,11 @@ #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 msgid "Show the trash icon in the desktop." msgstr "Wyświetla kosz na pulpicie." + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "Zamontowane napędy" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "Wyświetla zamontowane napędy na pulpicie." diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/pt_BR.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/pt_BR.po --- gnome-shell-extension-desktop-icons-20.04.0/po/pt_BR.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/pt_BR.po 2020-09-08 08:05:17.000000000 +0000 @@ -1,16 +1,16 @@ # Brazilian Portuguese translation for desktop-icons. -# Copyright (C) 2019 desktop-icons's COPYRIGHT HOLDER +# Copyright (C) 2020 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. +# Rafael Fontenelle , 2018-2020. # msgid "" msgstr "" "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-10-08 18:47+0000\n" -"PO-Revision-Date: 2019-10-24 10:49-0300\n" +"POT-Creation-Date: 2020-05-26 20:08+0000\n" +"PO-Revision-Date: 2020-05-28 18:35-0300\n" "Last-Translator: Rafael Fontenelle \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" @@ -18,157 +18,178 @@ "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.32.0\n" +"X-Generator: Gtranslator 3.36.0\n" -#: createFolderDialog.js:49 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Nome da nova pasta" -#: createFolderDialog.js:73 +#: createFolderDialog.js:70 msgid "Create" msgstr "Criar" -#: createFolderDialog.js:75 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Cancelar" -#: createFolderDialog.js:146 +#: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." msgstr "Nomes de pastas não podem conter “/”." -#: createFolderDialog.js:149 +#: createFolderDialog.js:148 msgid "A folder cannot be called “.”." msgstr "Uma pasta não pode ser chamada “.”." -#: createFolderDialog.js:152 +#: createFolderDialog.js:151 msgid "A folder cannot be called “..”." msgstr "Uma pasta não pode ser chamada “..”." -#: createFolderDialog.js:154 +#: 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:156 +#: 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:102 +#: prefs.js:103 msgid "Size for the desktop icons" msgstr "Tamanho para os ícones da área de trabalho" -#: prefs.js:102 +#: prefs.js:103 msgid "Small" msgstr "Pequeno" -#: prefs.js:102 +#: prefs.js:103 msgid "Standard" msgstr "Padrão" -#: prefs.js:102 +#: prefs.js:103 msgid "Large" msgstr "Grande" -#: prefs.js:103 +#: prefs.js:104 msgid "Show the personal folder in the desktop" msgstr "Mostrar a pasta pessoal na área de trabalho" -#: prefs.js:104 +#: prefs.js:105 msgid "Show the trash icon in the desktop" msgstr "Mostrar o ícone da lixeira na área de trabalho" -#: desktopGrid.js:328 +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "Mostrar as unidades montadas na área de trabalho" + +#: desktopGrid.js:346 msgid "New Folder" msgstr "Nova pasta" -#: desktopGrid.js:330 +#: desktopGrid.js:347 +msgid "New Document" +msgstr "Novo documento" + +#: desktopGrid.js:350 msgid "Paste" msgstr "Colar" -#: desktopGrid.js:331 +#: desktopGrid.js:351 msgid "Undo" msgstr "Desfazer" -#: desktopGrid.js:332 +#: desktopGrid.js:352 msgid "Redo" msgstr "Refazer" -#: desktopGrid.js:334 +#: desktopGrid.js:354 msgid "Show Desktop in Files" msgstr "Mostrar a área de trabalho no Arquivos" -#: desktopGrid.js:335 fileItem.js:633 +#: desktopGrid.js:355 fileItem.js:721 msgid "Open in Terminal" msgstr "Abrir no terminal" -#: desktopGrid.js:337 +#: desktopGrid.js:357 msgid "Change Background…" msgstr "Alterar plano de fundo…" -#: desktopGrid.js:339 +#: desktopGrid.js:359 msgid "Display Settings" msgstr "Configurações de exibição" -#: desktopGrid.js:340 +#: desktopGrid.js:360 msgid "Settings" msgstr "Configurações" -#: desktopGrid.js:612 -msgid "Enter file name…" -msgstr "Insira um nome de arquivo…" - -#: desktopGrid.js:629 -#| msgid "Rename…" +#: desktopGrid.js:692 msgid "Rename" msgstr "Renomear" -#: desktopIconsUtil.js:61 +#: desktopIconsUtil.js:63 msgid "Command not found" msgstr "Comando não encontrado" -#: fileItem.js:500 +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "A ejeção a unidade “%s” falhou:" + +#: fileItem.js:584 msgid "Don’t Allow Launching" msgstr "Não permitir iniciar" -#: fileItem.js:502 +#: fileItem.js:586 msgid "Allow Launching" msgstr "Permitir iniciar" -#: fileItem.js:601 +#: fileItem.js:682 msgid "Open" msgstr "Abrir" -#: fileItem.js:605 +#: fileItem.js:686 msgid "Open With Other Application" msgstr "Abrir com outro aplicativo" -#: fileItem.js:609 +#: fileItem.js:688 +msgid "Launch using Dedicated Graphics Card" +msgstr "Iniciar usando placa gráfica dedicada" + +#: fileItem.js:693 msgid "Cut" msgstr "Recortar" -#: fileItem.js:610 +#: fileItem.js:694 msgid "Copy" msgstr "Copiar" -#: fileItem.js:612 +#: fileItem.js:696 msgid "Rename…" msgstr "Renomear…" -#: fileItem.js:613 +#: fileItem.js:697 msgid "Move to Trash" msgstr "Mover para a lixeira" -#: fileItem.js:623 +#: fileItem.js:707 msgid "Empty Trash" msgstr "Esvaziar lixeira" -#: fileItem.js:629 +#: fileItem.js:711 +msgid "Eject" +msgstr "Ejetar" + +#: fileItem.js:717 msgid "Properties" msgstr "Propriedades" -#: fileItem.js:631 +#: fileItem.js:719 msgid "Show in Files" msgstr "Mostrar no Arquivos" +#: fileItem.js:925 +msgid "Home" +msgstr "Home" + #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "Tamanho do ícone" @@ -193,6 +214,17 @@ msgid "Show the trash icon in the desktop." msgstr "Mostra o ícone da lixeira na área de trabalho." +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "Mostrar unidades montadas" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "Mostra as unidades montadas na área de trabalho." + +#~ msgid "Enter file name…" +#~ msgstr "Insira um nome de arquivo…" + #~ msgid "OK" #~ msgstr "OK" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/ro.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/ro.po --- gnome-shell-extension-desktop-icons-20.04.0/po/ro.po 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/ro.po 2020-09-08 08:05:17.000000000 +0000 @@ -0,0 +1,223 @@ +# Romanian translation for desktop-icons. +# Copyright (C) 2020 desktop-icons's COPYRIGHT HOLDER +# This file is distributed under the same license as the desktop-icons package. +# Florentina Mușat , 2020. +# +msgid "" +msgstr "" +"Project-Id-Version: desktop-icons master\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" +"POT-Creation-Date: 2020-05-26 20:08+0000\n" +"PO-Revision-Date: 2020-06-06 12:24+0300\n" +"Last-Translator: Florentina Mușat \n" +"Language-Team: Romanian \n" +"Language: ro\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==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);;\n" +"X-Generator: Poedit 2.3.1\n" + +#: createFolderDialog.js:46 +msgid "New folder name" +msgstr "Nume nou de fișier" + +#: createFolderDialog.js:70 +msgid "Create" +msgstr "Creează" + +#: createFolderDialog.js:72 +msgid "Cancel" +msgstr "Anulează" + +#: createFolderDialog.js:145 +msgid "Folder names cannot contain “/”." +msgstr "Numele dosarelor nu pot conține „/”." + +#: createFolderDialog.js:148 +msgid "A folder cannot be called “.”." +msgstr "Un dosar nu poate fi numit „.”." + +#: createFolderDialog.js:151 +msgid "A folder cannot be called “..”." +msgstr "Un dosar nu poate fi numit „..”." + +#: createFolderDialog.js:153 +msgid "Folders with “.” at the beginning of their name are hidden." +msgstr "Dosarele cu „.” la începutul numelui sunt ascunse." + +#: createFolderDialog.js:155 +msgid "There is already a file or folder with that name." +msgstr "Există deja un fișier sau doar cu acel nume." + +#: prefs.js:103 +msgid "Size for the desktop icons" +msgstr "Dimensiunea pentru iconițele desktopului" + +#: prefs.js:103 +msgid "Small" +msgstr "Mic" + +#: prefs.js:103 +msgid "Standard" +msgstr "Standard" + +#: prefs.js:103 +msgid "Large" +msgstr "Mare" + +#: prefs.js:104 +msgid "Show the personal folder in the desktop" +msgstr "Arată dosarul personal pe desktop" + +#: prefs.js:105 +msgid "Show the trash icon in the desktop" +msgstr "Arată iconița gunoiului pe desktop" + +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "Arată dispozitivele montate pe desktop" + +#: desktopGrid.js:346 +msgid "New Folder" +msgstr "Dosar nou" + +#: desktopGrid.js:347 +msgid "New Document" +msgstr "Document nou" + +#: desktopGrid.js:350 +msgid "Paste" +msgstr "Lipește" + +#: desktopGrid.js:351 +msgid "Undo" +msgstr "Refă" + +#: desktopGrid.js:352 +msgid "Redo" +msgstr "Repetă" + +#: desktopGrid.js:354 +msgid "Show Desktop in Files" +msgstr "Aratată Desktopul în Fișiere" + +#: desktopGrid.js:355 fileItem.js:721 +msgid "Open in Terminal" +msgstr "Deschide în Terminal" + +#: desktopGrid.js:357 +msgid "Change Background…" +msgstr "Schimbă fundalul…" + +#: desktopGrid.js:359 +msgid "Display Settings" +msgstr "Configurări afișaj" + +#: desktopGrid.js:360 +msgid "Settings" +msgstr "Configurări" + +#: desktopGrid.js:692 +msgid "Rename" +msgstr "Redenumește" + +#: desktopIconsUtil.js:63 +msgid "Command not found" +msgstr "Comanda nu a fost găsită" + +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "Scoaterea unității „%s” a eșuat:" + +#: fileItem.js:584 +msgid "Don’t Allow Launching" +msgstr "Nu permite lansarea" + +#: fileItem.js:586 +msgid "Allow Launching" +msgstr "Permite lansarea" + +#: fileItem.js:682 +msgid "Open" +msgstr "Deschide" + +#: fileItem.js:686 +msgid "Open With Other Application" +msgstr "Deschide cu altă aplicație" + +#: fileItem.js:688 +msgid "Launch using Dedicated Graphics Card" +msgstr "Lansează folosind placa grafică dedicată" + +#: fileItem.js:693 +msgid "Cut" +msgstr "Taie" + +#: fileItem.js:694 +msgid "Copy" +msgstr "Copiază" + +#: fileItem.js:696 +msgid "Rename…" +msgstr "Redenumește…" + +#: fileItem.js:697 +msgid "Move to Trash" +msgstr "Mută la gunoi" + +#: fileItem.js:707 +msgid "Empty Trash" +msgstr "Golește gunoiul" + +#: fileItem.js:711 +msgid "Eject" +msgstr "Ejectează" + +#: fileItem.js:717 +msgid "Properties" +msgstr "Proprietăți" + +#: fileItem.js:719 +msgid "Show in Files" +msgstr "Arată în Fișiere" + +#: fileItem.js:925 +msgid "Home" +msgstr "Acasă" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 +msgid "Icon size" +msgstr "Dimensiune iconiță" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 +msgid "Set the size for the desktop icons." +msgstr "Stabilește dimensiunea pentru iconițele desktopului." + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 +msgid "Show personal folder" +msgstr "Arată dosarul personal" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 +msgid "Show the personal folder in the desktop." +msgstr "Arată dosarul personal pe desktop." + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 +msgid "Show trash icon" +msgstr "Arată iconița gunoiului" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 +msgid "Show the trash icon in the desktop." +msgstr "Arată iconița gunoiului pe deskop." + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "Arată dispozitivele montate" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "Arată dispozitivele montate pe desktop." diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/ru.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/ru.po --- gnome-shell-extension-desktop-icons-20.04.0/po/ru.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/ru.po 2020-09-08 08:05:17.000000000 +0000 @@ -6,10 +6,9 @@ msgid "" msgstr "" "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" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-05 21:12+0200\n" +"PO-Revision-Date: 2020-04-06 22:29+0300\n" "Last-Translator: Stas Solovey \n" "Language-Team: Russian \n" "Language: ru\n" @@ -18,136 +17,181 @@ "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: Poedit 2.3\n" -#: prefs.js:89 +#: createFolderDialog.js:46 +msgid "New folder name" +msgstr "Имя новой папки" + +#: createFolderDialog.js:70 +msgid "Create" +msgstr "Создать" + +#: createFolderDialog.js:72 +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:89 +#: prefs.js:102 msgid "Small" msgstr "Маленький" -#: prefs.js:89 +#: prefs.js:102 msgid "Standard" msgstr "Стандартный" -#: prefs.js:89 +#: prefs.js:102 msgid "Large" msgstr "Большой" -#: prefs.js:89 -msgid "Huge" -msgstr "Огромный" - -#: prefs.js:90 +#: prefs.js:103 msgid "Show the personal folder in the desktop" msgstr "Показывать домашнюю папку на рабочем столе" -#: prefs.js:91 +#: prefs.js:104 msgid "Show the trash icon in the desktop" msgstr "Показывать «Корзину» на рабочем столе" -#: desktopGrid.js:185 desktopGrid.js:304 +#: desktopGrid.js:343 msgid "New Folder" msgstr "Создать папку" -#: desktopGrid.js:306 +#: desktopGrid.js:345 msgid "Paste" msgstr "Вставить" -#: desktopGrid.js:307 +#: desktopGrid.js:346 msgid "Undo" msgstr "Отменить" -#: desktopGrid.js:308 +#: desktopGrid.js:347 msgid "Redo" msgstr "Повторить" -#: desktopGrid.js:310 -msgid "Open Desktop in Files" -msgstr "Открыть «Рабочий стол» в «Файлах»" - -#: desktopGrid.js:311 -msgid "Open Terminal" -msgstr "Открыть терминал" +#: desktopGrid.js:349 +msgid "Show Desktop in Files" +msgstr "Показывать папку «Рабочий стол» в приложении «Файлы»" + +#: desktopGrid.js:350 fileItem.js:651 +msgid "Open in Terminal" +msgstr "Открыть в терминале" -#: desktopGrid.js:313 +#: desktopGrid.js:352 msgid "Change Background…" msgstr "Изменить фон…" -#: desktopGrid.js:314 +#: desktopGrid.js:354 msgid "Display Settings" msgstr "Настройки дисплея" -#: desktopGrid.js:315 +#: desktopGrid.js:355 msgid "Settings" msgstr "Параметры" -#: desktopGrid.js:569 -msgid "Enter file name…" -msgstr "Ввести имя файла…" - -#: desktopGrid.js:573 -msgid "Ok" -msgstr "ОК" +#: desktopGrid.js:653 +msgid "Rename" +msgstr "Переименовать" -#: desktopGrid.js:579 -msgid "Cancel" -msgstr "Отмена" +#: desktopIconsUtil.js:61 +msgid "Command not found" +msgstr "Команда не найдена" + +#: fileItem.js:521 +msgid "Don’t Allow Launching" +msgstr "Запретить запуск" + +#: fileItem.js:523 +msgid "Allow Launching" +msgstr "Разрешить запуск" -#: fileItem.js:390 +#: fileItem.js:619 msgid "Open" msgstr "Открыть" -#: fileItem.js:393 +#: fileItem.js:623 +msgid "Open With Other Application" +msgstr "Открыть в другом приложении" + +#: fileItem.js:627 msgid "Cut" msgstr "Вырезать" -#: fileItem.js:394 +#: fileItem.js:628 msgid "Copy" msgstr "Вставить" -#: fileItem.js:395 -msgid "Rename" -msgstr "Переименовать" +#: fileItem.js:630 +msgid "Rename…" +msgstr "Переименовать…" -#: fileItem.js:396 +#: fileItem.js:631 msgid "Move to Trash" msgstr "Переместить в корзину" -#: fileItem.js:400 -msgid "Empty trash" +#: fileItem.js:641 +msgid "Empty Trash" msgstr "Очистить корзину" -#: fileItem.js:406 +#: fileItem.js:647 msgid "Properties" msgstr "Свойства" -#: fileItem.js:408 +#: fileItem.js:649 msgid "Show in Files" msgstr "Показать в «Файлах»" -#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "Размер значков" -#: 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 "Установить размер значков рабочего стола." -#: 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 "Показывать домашнюю папку" -#: 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 "Показывать значок домашней папки на рабочем столе." -#: 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 "Показывать значок корзины" -#: 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 "Показывать значок корзины на рабочем столе." + +#~ msgid "Huge" +#~ msgstr "Огромный" + +#~ msgid "Enter file name…" +#~ msgstr "Ввести имя файла…" + +#~ msgid "Ok" +#~ msgstr "ОК" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/sk.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/sk.po --- gnome-shell-extension-desktop-icons-20.04.0/po/sk.po 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/sk.po 2020-09-08 08:05:17.000000000 +0000 @@ -0,0 +1,222 @@ +# Slovak translation for desktop-icons. +# Copyright (C) 2020 desktop-icons's COPYRIGHT HOLDER +# This file is distributed under the same license as the desktop-icons package. +# Dušan Kazik , 2020. +# +msgid "" +msgstr "" +"Project-Id-Version: desktop-icons master\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" +"POT-Creation-Date: 2020-09-05 22:22+0000\n" +"PO-Revision-Date: 2020-09-06 18:40+0200\n" +"Language-Team: Slovak \n" +"Language: sk\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) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n" +"Last-Translator: Dušan Kazik \n" +"X-Generator: Poedit 2.4.1\n" + +#: createFolderDialog.js:46 +msgid "New folder name" +msgstr "Nový názov priečinka" + +#: createFolderDialog.js:70 +msgid "Create" +msgstr "Vytvoriť" + +#: createFolderDialog.js:72 +msgid "Cancel" +msgstr "Zrušiť" + +#: createFolderDialog.js:145 +msgid "Folder names cannot contain “/”." +msgstr "Názvy priečinkov nemôžu obsahovať znak „/“." + +#: createFolderDialog.js:148 +msgid "A folder cannot be called “.”." +msgstr "Priečinok nemôže byť nazvaný „.“." + +#: createFolderDialog.js:151 +msgid "A folder cannot be called “..”." +msgstr "Priečinok nemôže byť nazvaný „..“." + +#: createFolderDialog.js:153 +msgid "Folders with “.” at the beginning of their name are hidden." +msgstr "Priečinky s názvami začínajúcimi znakom „.“ sú skryté." + +#: createFolderDialog.js:155 +msgid "There is already a file or folder with that name." +msgstr "Súbor alebo priečinok s týmto názvom už existuje." + +#: prefs.js:103 +msgid "Size for the desktop icons" +msgstr "Veľkosť ikon pracovnej plochy" + +#: prefs.js:103 +msgid "Small" +msgstr "Malé" + +#: prefs.js:103 +msgid "Standard" +msgstr "Štandardné" + +#: prefs.js:103 +msgid "Large" +msgstr "Veľké" + +#: prefs.js:104 +msgid "Show the personal folder in the desktop" +msgstr "Zobraziť osobný priečinok na pracovnej ploche" + +#: prefs.js:105 +msgid "Show the trash icon in the desktop" +msgstr "Zobraziť ikonu Koša na pracovnej ploche" + +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "Zobraziť pripojené jednotky na pracovnej ploche" + +#: desktopGrid.js:346 +msgid "New Folder" +msgstr "Nový priečinok" + +#: desktopGrid.js:347 +msgid "New Document" +msgstr "Nový dokument" + +#: desktopGrid.js:350 +msgid "Paste" +msgstr "Vložiť" + +#: desktopGrid.js:351 +msgid "Undo" +msgstr "Vráti späť" + +#: desktopGrid.js:352 +msgid "Redo" +msgstr "Opakovať vrátené" + +#: desktopGrid.js:354 +msgid "Show Desktop in Files" +msgstr "Zobraziť Plochu v aplikácii Súbory" + +#: desktopGrid.js:355 fileItem.js:723 +msgid "Open in Terminal" +msgstr "Otvoriť v termináli" + +#: desktopGrid.js:357 +msgid "Change Background…" +msgstr "Zmeniť pozadie…" + +#: desktopGrid.js:359 +msgid "Display Settings" +msgstr "Nastavenia displejov" + +#: desktopGrid.js:360 +msgid "Settings" +msgstr "Nastavenia" + +#: desktopGrid.js:699 +msgid "Rename" +msgstr "Premenovanie" + +#: desktopIconsUtil.js:63 +msgid "Command not found" +msgstr "Príkaz sa nenašiel" + +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "Zlyhalo vysúvanie jednotky „%s“:" + +#: fileItem.js:586 +msgid "Don’t Allow Launching" +msgstr "Neumožniť spúšťanie" + +#: fileItem.js:588 +msgid "Allow Launching" +msgstr "Umožniť spúšťanie" + +#: fileItem.js:684 +msgid "Open" +msgstr "Otvorené" + +#: fileItem.js:688 +msgid "Open With Other Application" +msgstr "Otvoriť inou aplikáciou" + +#: fileItem.js:690 +msgid "Launch using Dedicated Graphics Card" +msgstr "Spustiť pomocou vyhradenej grafickej karty" + +#: fileItem.js:695 +msgid "Cut" +msgstr "Vystrihnúť" + +#: fileItem.js:696 +msgid "Copy" +msgstr "Skopíruje" + +#: fileItem.js:698 +msgid "Rename…" +msgstr "Premenovať…" + +#: fileItem.js:699 +msgid "Move to Trash" +msgstr "Presunúť do Koša" + +#: fileItem.js:709 +msgid "Empty Trash" +msgstr "Vyprázdniť Kôš" + +#: fileItem.js:713 +msgid "Eject" +msgstr "Vysunúť" + +#: fileItem.js:719 +msgid "Properties" +msgstr "Vlastnosti" + +#: fileItem.js:721 +msgid "Show in Files" +msgstr "Zobraziť v aplikácii Súbory" + +#: fileItem.js:927 +msgid "Home" +msgstr "Domov" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 +msgid "Icon size" +msgstr "Veľkosť ikon" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 +msgid "Set the size for the desktop icons." +msgstr "Nastaví veľkosť ikon na pracovnej ploche." + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 +msgid "Show personal folder" +msgstr "Zobraziť osobný priečinok" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 +msgid "Show the personal folder in the desktop." +msgstr "Zobrazí osobný priečinok na pracovnej ploche." + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 +msgid "Show trash icon" +msgstr "Zobraziť ikonu Koša" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 +msgid "Show the trash icon in the desktop." +msgstr "Zobrazí ikonu Koša na pracovnej ploche." + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "Zobraziť pripojené jednotky" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "Zobrazí pripojené jednotky na pracovnej ploche." diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/sl.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/sl.po --- gnome-shell-extension-desktop-icons-20.04.0/po/sl.po 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/sl.po 2020-09-08 08:05:17.000000000 +0000 @@ -0,0 +1,227 @@ +# Slovenian translations for desktop-icons. +# Copyright (C) 2018 desktop-icons's COPYRIGHT HOLDER +# This file is distributed under the same license as the atomix package. +# +# Matej Urbančič , + 2018–. +# +msgid "" +msgstr "" +"Project-Id-Version: desktop-icons master\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" +"POT-Creation-Date: 2020-08-28 03:11+0000\n" +"PO-Revision-Date: 2020-09-03 21:58+0200\n" +"Last-Translator: \n" +"Language-Team: Slovenian \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" +"%100==4 ? 3 : 0);\n" +"X-Generator: Poedit 2.3\n" + +#: createFolderDialog.js:46 +msgid "New folder name" +msgstr "Ime nove mape" + +#: createFolderDialog.js:70 +msgid "Create" +msgstr "Ustvari" + +#: createFolderDialog.js:72 +msgid "Cancel" +msgstr "Prekliči" + +#: createFolderDialog.js:145 +msgid "Folder names cannot contain “/”." +msgstr "Ime mape ne sme vsebovati poševnice » / «." + +#: createFolderDialog.js:148 +msgid "A folder cannot be called “.”." +msgstr "Mapa ne sme biti poimenovana » . «." + +#: createFolderDialog.js:151 +msgid "A folder cannot be called “..”." +msgstr "Mapa ne sme biti poimenovana » .. «." + +#: createFolderDialog.js:153 +msgid "Folders with “.” at the beginning of their name are hidden." +msgstr "Mape, katerih ime se začne s piko » . «, so skrite mape." + +#: createFolderDialog.js:155 +msgid "There is already a file or folder with that name." +msgstr "Mapa oziroma datoteka z enakim imenom že obstaja." + +#: prefs.js:103 +msgid "Size for the desktop icons" +msgstr "Velikost ikon namizja" + +#: prefs.js:103 +msgid "Small" +msgstr "Majhne" + +#: prefs.js:103 +msgid "Standard" +msgstr "Običajne" + +#: prefs.js:103 +msgid "Large" +msgstr "Velike" + +#: prefs.js:104 +msgid "Show the personal folder in the desktop" +msgstr "Pokaži osebno mapo na namizju" + +#: prefs.js:105 +msgid "Show the trash icon in the desktop" +msgstr "Pokaži smeti na namizju" + +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "Pokaži priklopljene nosilce na namizju" + +#: desktopGrid.js:346 +msgid "New Folder" +msgstr "Nova mapa" + +#: desktopGrid.js:347 +msgid "New Document" +msgstr "Nov dokument" + +#: desktopGrid.js:350 +msgid "Paste" +msgstr "Prilepi" + +#: desktopGrid.js:351 +msgid "Undo" +msgstr "Razveljavi" + +#: desktopGrid.js:352 +msgid "Redo" +msgstr "Ponovno uveljavi" + +#: desktopGrid.js:354 +msgid "Show Desktop in Files" +msgstr "Odpri Namizje v upravljalniku datotek" + +#: desktopGrid.js:355 fileItem.js:723 +msgid "Open in Terminal" +msgstr "Odpri v terminalu" + +#: desktopGrid.js:357 +msgid "Change Background…" +msgstr "Spremeni ozadje …" + +#: desktopGrid.js:359 +msgid "Display Settings" +msgstr "Nastavitve zaslona" + +#: desktopGrid.js:360 +msgid "Settings" +msgstr "Nastavitve" + +#: desktopGrid.js:699 +msgid "Rename" +msgstr "Preimenuj" + +#: desktopIconsUtil.js:63 +msgid "Command not found" +msgstr "Ukaza ni mogoče najti" + +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "Izmetavanje pogona »%s« je spodletelo:" + +#: fileItem.js:586 +msgid "Don’t Allow Launching" +msgstr "Ne dovoli zaganjanja" + +#: fileItem.js:588 +msgid "Allow Launching" +msgstr "Dovoli zaganjanje" + +#: fileItem.js:684 +msgid "Open" +msgstr "Odpri" + +#: fileItem.js:688 +msgid "Open With Other Application" +msgstr "Odpri z drugim programom …" + +#: fileItem.js:690 +msgid "Launch using Dedicated Graphics Card" +msgstr "Zaženi z uporabo določene grafične kartice" + +#: fileItem.js:695 +msgid "Cut" +msgstr "Izreži" + +#: fileItem.js:696 +msgid "Copy" +msgstr "Kopiraj" + +#: fileItem.js:698 +msgid "Rename…" +msgstr "Preimenuj …" + +#: fileItem.js:699 +msgid "Move to Trash" +msgstr "Premakni v smeti" + +#: fileItem.js:709 +msgid "Empty Trash" +msgstr "Izprazni smeti" + +#: fileItem.js:713 +msgid "Eject" +msgstr "Izvrzi" + +#: fileItem.js:719 +msgid "Properties" +msgstr "Lastnosti" + +#: fileItem.js:721 +msgid "Show in Files" +msgstr "Pokaži v upravljalniku datotek" + +#: fileItem.js:927 +msgid "Home" +msgstr "Na začetek" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 +msgid "Icon size" +msgstr "Velikost ikon" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 +msgid "Set the size for the desktop icons." +msgstr "Nastavitev velikosti ikon na namizju." + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:16 +msgid "Show personal folder" +msgstr "Pokaži osebno mapo" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:17 +msgid "Show the personal folder in the desktop." +msgstr "Pokaže ikono osebne mape na namizju." + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:21 +msgid "Show trash icon" +msgstr "Pokaži ikono smeti" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 +msgid "Show the trash icon in the desktop." +msgstr "Pokaže ikono smeti na namizju." + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "Pokaži priklopljene nosilce" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "Pokaži priklopljene nosilce na namizju." + +#~ msgid "Huge" +#~ msgstr "Velikanske" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/sv.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/sv.po --- gnome-shell-extension-desktop-icons-20.04.0/po/sv.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/sv.po 2020-09-08 08:05:17.000000000 +0000 @@ -1,7 +1,7 @@ # Swedish translation for desktop-icons. -# Copyright © 2018, 2019 desktop-icons's COPYRIGHT HOLDER +# Copyright © 2018-2020 desktop-icons's COPYRIGHT HOLDER # This file is distributed under the same license as the desktop-icons package. -# Anders Jonsson , 2018, 2019. +# Anders Jonsson , 2018, 2019, 2020. # Josef Andersson , 2019. # msgid "" @@ -9,8 +9,8 @@ "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-10-08 18:47+0000\n" -"PO-Revision-Date: 2019-11-10 19:02+0100\n" +"POT-Creation-Date: 2020-05-26 20:08+0000\n" +"PO-Revision-Date: 2020-05-27 01:14+0200\n" "Last-Translator: Anders Jonsson \n" "Language-Team: Swedish \n" "Language: sv\n" @@ -18,158 +18,181 @@ "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.4\n" +"X-Generator: Poedit 2.3.1\n" -#: createFolderDialog.js:49 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Nytt mappnamn" -#: createFolderDialog.js:73 +#: createFolderDialog.js:70 msgid "Create" msgstr "Skapa" -#: createFolderDialog.js:75 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "Avbryt" -#: createFolderDialog.js:146 +#: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." msgstr "Mappnamn kan inte innehålla ”/”." -#: createFolderDialog.js:149 +#: createFolderDialog.js:148 msgid "A folder cannot be called “.”." msgstr "En mapp kan inte kallas ”.”." -#: createFolderDialog.js:152 +#: createFolderDialog.js:151 msgid "A folder cannot be called “..”." msgstr "En mapp kan inte kallas ”..”." -#: createFolderDialog.js:154 +#: 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:156 +#: 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" +msgstr "Det finns redan en fil eller mapp med det namnet." -#: prefs.js:102 +#: prefs.js:103 msgid "Size for the desktop icons" msgstr "Storlek för skrivbordsikonerna" -#: prefs.js:102 +#: prefs.js:103 msgid "Small" msgstr "Liten" -#: prefs.js:102 +#: prefs.js:103 msgid "Standard" msgstr "Standard" -#: prefs.js:102 +#: prefs.js:103 msgid "Large" msgstr "Stor" # TODO: *ON* the desktop? -#: prefs.js:103 +#: prefs.js:104 msgid "Show the personal folder in the desktop" msgstr "Visa den personliga mappen på skrivbordet" # TODO: *ON* the desktop? -#: prefs.js:104 +#: prefs.js:105 msgid "Show the trash icon in the desktop" msgstr "Visa papperskorgsikonen på skrivbordet" -#: desktopGrid.js:328 +# TODO: *ON* the desktop? +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "Visa monterade enheter på skrivbordet" + +#: desktopGrid.js:346 msgid "New Folder" msgstr "Ny mapp" -#: desktopGrid.js:330 +#: desktopGrid.js:347 +msgid "New Document" +msgstr "Nytt dokument" + +#: desktopGrid.js:350 msgid "Paste" msgstr "Klistra in" -#: desktopGrid.js:331 +#: desktopGrid.js:351 msgid "Undo" msgstr "Ångra" -#: desktopGrid.js:332 +#: desktopGrid.js:352 msgid "Redo" msgstr "Gör om" -#: desktopGrid.js:334 +#: desktopGrid.js:354 msgid "Show Desktop in Files" msgstr "Visa skrivbord i Filer" -#: desktopGrid.js:335 fileItem.js:633 +#: desktopGrid.js:355 fileItem.js:721 msgid "Open in Terminal" msgstr "Öppna i terminal" -#: desktopGrid.js:337 +#: desktopGrid.js:357 msgid "Change Background…" msgstr "Ändra bakgrund…" -#: desktopGrid.js:339 +#: desktopGrid.js:359 msgid "Display Settings" msgstr "Visningsinställningar" -#: desktopGrid.js:340 +#: desktopGrid.js:360 msgid "Settings" msgstr "Inställningar" -#: desktopGrid.js:612 -msgid "Enter file name…" -msgstr "Ange filnamn…" - -#: desktopGrid.js:629 +#: desktopGrid.js:692 msgid "Rename" msgstr "Byt namn" -#: desktopIconsUtil.js:61 +#: desktopIconsUtil.js:63 msgid "Command not found" msgstr "Kommandot hittades inte" -#: fileItem.js:500 +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "Utmatning av enhet ”%s” misslyckades:" + +#: fileItem.js:584 msgid "Don’t Allow Launching" msgstr "Tillåt ej programstart" -#: fileItem.js:502 +#: fileItem.js:586 msgid "Allow Launching" msgstr "Tillåt programstart" -#: fileItem.js:601 +#: fileItem.js:682 msgid "Open" msgstr "Öppna" -#: fileItem.js:605 +#: fileItem.js:686 msgid "Open With Other Application" msgstr "Öppna med annat program" -#: fileItem.js:609 +#: fileItem.js:688 +msgid "Launch using Dedicated Graphics Card" +msgstr "Kör med diskret grafikkort" + +#: fileItem.js:693 msgid "Cut" msgstr "Klipp ut" -#: fileItem.js:610 +#: fileItem.js:694 msgid "Copy" msgstr "Kopiera" -#: fileItem.js:612 +#: fileItem.js:696 msgid "Rename…" msgstr "Byt namn…" -#: fileItem.js:613 +#: fileItem.js:697 msgid "Move to Trash" msgstr "Flytta till papperskorgen" -#: fileItem.js:623 +#: fileItem.js:707 msgid "Empty Trash" msgstr "Töm papperskorgen" -#: fileItem.js:629 +#: fileItem.js:711 +msgid "Eject" +msgstr "Mata ut" + +#: fileItem.js:717 msgid "Properties" msgstr "Egenskaper" -#: fileItem.js:631 +#: fileItem.js:719 msgid "Show in Files" msgstr "Visa i Filer" +#: fileItem.js:925 +msgid "Home" +msgstr "Hem" + #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "Ikonstorlek" @@ -197,6 +220,18 @@ msgid "Show the trash icon in the desktop." msgstr "Visa papperskorgsikonen på skrivbordet." +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "Visa monterade enheter" + +# TODO: *ON* the desktop? +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "Visa monterade enheter på skrivbordet." + +#~ msgid "Enter file name…" +#~ msgstr "Ange filnamn…" + #~ msgid "OK" #~ msgstr "OK" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/tr.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/tr.po --- gnome-shell-extension-desktop-icons-20.04.0/po/tr.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/tr.po 2020-09-08 08:05:17.000000000 +0000 @@ -4,16 +4,16 @@ # # Sabri Ünal , 2019. # Serdar Sağlam , 2019 -# Emin Tufan Çetin , 2019. +# Emin Tufan Çetin , 2019, 2020. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" "icons/issues\n" -"POT-Creation-Date: 2019-10-08 18:47+0000\n" -"PO-Revision-Date: 2019-11-03 05:20+0300\n" -"Last-Translator: Sabri Ünal \n" +"POT-Creation-Date: 2020-05-26 20:08+0000\n" +"PO-Revision-Date: 2020-09-06 01:02+0300\n" +"Last-Translator: Emin Tufan Çetin \n" "Language-Team: Türkçe \n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -22,155 +22,176 @@ "X-Generator: Poedit 2.0.6\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: createFolderDialog.js:49 +#: createFolderDialog.js:46 msgid "New folder name" msgstr "Yeni klasör adı" -#: createFolderDialog.js:73 +#: createFolderDialog.js:70 msgid "Create" msgstr "Oluştur" -#: createFolderDialog.js:75 +#: createFolderDialog.js:72 msgid "Cancel" msgstr "İptal" -#: createFolderDialog.js:146 +#: createFolderDialog.js:145 msgid "Folder names cannot contain “/”." msgstr "Klasör adları “/” içeremez." -#: createFolderDialog.js:149 +#: createFolderDialog.js:148 msgid "A folder cannot be called “.”." msgstr "Klasör “.” olarak adlandırılamaz." -#: createFolderDialog.js:152 +#: createFolderDialog.js:151 msgid "A folder cannot be called “..”." msgstr "Klasör “..” olarak adlandırılamaz." -#: createFolderDialog.js:154 +#: createFolderDialog.js:153 msgid "Folders with “.” at the beginning of their name are hidden." -msgstr "Adlarının başında “.” bulunan klasörler gizlenir." +msgstr "Adının başında “.” bulunan klasörler gizlenir." -#: createFolderDialog.js:156 +#: createFolderDialog.js:155 msgid "There is already a file or folder with that name." -msgstr "Zaten bu adda dosya veya klasör var." +msgstr "Bu adda dosya veya klasör var." -#: prefs.js:102 +#: prefs.js:103 msgid "Size for the desktop icons" msgstr "Masaüstü simgeleri boyutu" -#: prefs.js:102 +#: prefs.js:103 msgid "Small" msgstr "Küçük" -#: prefs.js:102 +#: prefs.js:103 msgid "Standard" msgstr "Standart" -#: prefs.js:102 +#: prefs.js:103 msgid "Large" msgstr "Büyük" -#: prefs.js:103 +#: prefs.js:104 msgid "Show the personal folder in the desktop" msgstr "Kişisel klasörü masaüstünde göster" -#: prefs.js:104 +#: prefs.js:105 msgid "Show the trash icon in the desktop" msgstr "Çöp kutusunu masaüstünde göster" -#: desktopGrid.js:328 +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "Bağlı sürücüleri masaüstünde göster" + +#: desktopGrid.js:346 msgid "New Folder" msgstr "Yeni Klasör" -#: desktopGrid.js:330 +#: desktopGrid.js:347 +msgid "New Document" +msgstr "Yeni Belge" + +#: desktopGrid.js:350 msgid "Paste" msgstr "Yapıştır" -#: desktopGrid.js:331 +#: desktopGrid.js:351 msgid "Undo" msgstr "Geri Al" -#: desktopGrid.js:332 +#: desktopGrid.js:352 msgid "Redo" msgstr "Yinele" -#: desktopGrid.js:334 +#: desktopGrid.js:354 msgid "Show Desktop in Files" msgstr "Masaüstünü Dosyalarʼda Göster" -#: desktopGrid.js:335 fileItem.js:633 +#: desktopGrid.js:355 fileItem.js:721 msgid "Open in Terminal" msgstr "Uçbirimde Aç" -#: desktopGrid.js:337 +#: desktopGrid.js:357 msgid "Change Background…" msgstr "Arka Planı Değiştir…" -#: desktopGrid.js:339 +#: desktopGrid.js:359 msgid "Display Settings" msgstr "Görüntü Ayarları" -#: desktopGrid.js:340 +#: desktopGrid.js:360 msgid "Settings" msgstr "Ayarlar" -#: desktopGrid.js:612 -msgid "Enter file name…" -msgstr "Dosya adını gir…" - -#: desktopGrid.js:629 -#| msgid "Rename…" +#: desktopGrid.js:692 msgid "Rename" msgstr "Yeniden Adlandır" -#: desktopIconsUtil.js:61 +#: desktopIconsUtil.js:63 msgid "Command not found" msgstr "Komut bulunamadı" -#: fileItem.js:500 +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "“%s” sürücüsü çıkarılamadı:" + +#: fileItem.js:584 msgid "Don’t Allow Launching" msgstr "Başlatmaya İzin Verme" -#: fileItem.js:502 +#: fileItem.js:586 msgid "Allow Launching" msgstr "Başlatmaya İzin Ver" -#: fileItem.js:601 +#: fileItem.js:682 msgid "Open" msgstr "Aç" -#: fileItem.js:605 +#: fileItem.js:686 msgid "Open With Other Application" msgstr "Başka Uygulamayla Aç" -#: fileItem.js:609 +#: fileItem.js:688 +msgid "Launch using Dedicated Graphics Card" +msgstr "Ayrık Ekran Kartıyla Başlat" + +#: fileItem.js:693 msgid "Cut" msgstr "Kes" -#: fileItem.js:610 +#: fileItem.js:694 msgid "Copy" msgstr "Kopyala" -#: fileItem.js:612 +#: fileItem.js:696 msgid "Rename…" msgstr "Yeniden Adlandır…" -#: fileItem.js:613 +#: fileItem.js:697 msgid "Move to Trash" msgstr "Çöpe Taşı" -#: fileItem.js:623 +#: fileItem.js:707 msgid "Empty Trash" msgstr "Çöpü Boşalt" -#: fileItem.js:629 +#: fileItem.js:711 +msgid "Eject" +msgstr "Çıkar" + +#: fileItem.js:717 msgid "Properties" msgstr "Özellikler" -#: fileItem.js:631 +#: fileItem.js:719 msgid "Show in Files" msgstr "Dosyalarʼda Göster" +#: fileItem.js:925 +msgid "Home" +msgstr "Ev" + #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "Simge boyutu" @@ -195,5 +216,16 @@ msgid "Show the trash icon in the desktop." msgstr "Çöp kutusu simgesini masaüstünde göster." +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "Bağlı sürücüleri göster" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "Bağlı sürücüleri masaüstünde göster." + +#~ msgid "Enter file name…" +#~ msgstr "Dosya adını gir…" + #~ msgid "OK" #~ msgstr "Tamam" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/uk.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/uk.po --- gnome-shell-extension-desktop-icons-20.04.0/po/uk.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/uk.po 2020-09-08 08:05:17.000000000 +0000 @@ -8,8 +8,8 @@ "Project-Id-Version: desktop-icons master\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-i" "cons/issues\n" -"POT-Creation-Date: 2020-03-19 20:31+0000\n" -"PO-Revision-Date: 2020-03-26 18:33+0200\n" +"POT-Creation-Date: 2020-05-26 20:08+0000\n" +"PO-Revision-Date: 2020-05-27 11:46+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -18,7 +18,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Lokalize 20.03.70\n" +"X-Generator: Lokalize 20.07.70\n" #: createFolderDialog.js:46 msgid "New folder name" @@ -52,118 +52,144 @@ msgid "There is already a file or folder with that name." msgstr "Файл або тека із такою назвою вже існують." -#: prefs.js:102 +#: prefs.js:103 msgid "Size for the desktop icons" msgstr "Розмір піктограм на стільниці" -#: prefs.js:102 +#: prefs.js:103 msgid "Small" msgstr "Малий" -#: prefs.js:102 +#: prefs.js:103 msgid "Standard" msgstr "Стандартний" -#: prefs.js:102 +#: prefs.js:103 msgid "Large" msgstr "Великий" -#: prefs.js:103 +#: prefs.js:104 msgid "Show the personal folder in the desktop" msgstr "Показувати особисту теку на стільниці" -#: prefs.js:104 +#: prefs.js:105 msgid "Show the trash icon in the desktop" msgstr "Показувати піктограму смітника на стільниці" -#: desktopGrid.js:343 +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "Показувати змонтовані диски на стільниці" + +#: desktopGrid.js:346 msgid "New Folder" msgstr "Нова тека" -#: desktopGrid.js:345 +#: desktopGrid.js:347 +msgid "New Document" +msgstr "Новий документ" + +#: desktopGrid.js:350 msgid "Paste" msgstr "Вставити" -#: desktopGrid.js:346 +#: desktopGrid.js:351 msgid "Undo" msgstr "Скасувати" -#: desktopGrid.js:347 +#: desktopGrid.js:352 msgid "Redo" msgstr "Повторити" -#: desktopGrid.js:349 +#: desktopGrid.js:354 msgid "Show Desktop in Files" msgstr "Показувати «Стільницю» у «Файлах»" -#: desktopGrid.js:350 fileItem.js:645 +#: desktopGrid.js:355 fileItem.js:721 msgid "Open in Terminal" msgstr "Відкрити у терміналі" -#: desktopGrid.js:352 +#: desktopGrid.js:357 msgid "Change Background…" msgstr "Змінити тло…" -#: desktopGrid.js:354 +#: desktopGrid.js:359 msgid "Display Settings" msgstr "Параметри екрана" -#: desktopGrid.js:355 +#: desktopGrid.js:360 msgid "Settings" msgstr "Параметри" -#: desktopGrid.js:653 +#: desktopGrid.js:692 msgid "Rename" msgstr "Перейменувати" -#: desktopIconsUtil.js:61 +#: desktopIconsUtil.js:63 msgid "Command not found" msgstr "Команди не знайдено" -#: fileItem.js:515 +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "Не вдалося виштовхнути пристрій «%s»:" + +#: fileItem.js:584 msgid "Don’t Allow Launching" msgstr "Не дозволяти запуск" -#: fileItem.js:517 +#: fileItem.js:586 msgid "Allow Launching" msgstr "Дозволяти запуск" -#: fileItem.js:613 +#: fileItem.js:682 msgid "Open" msgstr "Відкрити" -#: fileItem.js:617 +#: fileItem.js:686 msgid "Open With Other Application" msgstr "Відкрити за допомогою іншої програми" -#: fileItem.js:621 +#: fileItem.js:688 +msgid "Launch using Dedicated Graphics Card" +msgstr "Запустити через відповідну графічну плату" + +#: fileItem.js:693 msgid "Cut" msgstr "Вирізати" -#: fileItem.js:622 +#: fileItem.js:694 msgid "Copy" msgstr "Копіювати" -#: fileItem.js:624 +#: fileItem.js:696 msgid "Rename…" msgstr "Перейменувати…" -#: fileItem.js:625 +#: fileItem.js:697 msgid "Move to Trash" msgstr "Пересунути до смітника" -#: fileItem.js:635 +#: fileItem.js:707 msgid "Empty Trash" msgstr "Спорожнити смітник" -#: fileItem.js:641 +#: fileItem.js:711 +msgid "Eject" +msgstr "Виштовхнути" + +#: fileItem.js:717 msgid "Properties" msgstr "Властивості" -#: fileItem.js:643 +#: fileItem.js:719 msgid "Show in Files" msgstr "Показувати у «Файлах»" +#: fileItem.js:925 +msgid "Home" +msgstr "Домівка" + #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "Розмір піктограм" @@ -187,3 +213,11 @@ #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22 msgid "Show the trash icon in the desktop." msgstr "Показувати піктограму смітника на стільниці." + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "Показувати змонтовані диски" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "Показувати змонтовані диски на стільниці." diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/zh_CN.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/zh_CN.po --- gnome-shell-extension-desktop-icons-20.04.0/po/zh_CN.po 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/zh_CN.po 2020-09-08 08:05:17.000000000 +0000 @@ -0,0 +1,228 @@ +# Chinese (China) 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. +# Dingzhong Chen , 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: desktop-icons master\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-" +"icons/issues\n" +"POT-Creation-Date: 2020-05-26 20:08+0000\n" +"PO-Revision-Date: 2020-06-23 21:51-0400\n" +"Last-Translator: Boyuan Yang <073plan@gmail.com>\n" +"Language-Team: Chinese (China) \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.3.1\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: createFolderDialog.js:46 +msgid "New folder name" +msgstr "新文件夹名称" + +#: createFolderDialog.js:70 +msgid "Create" +msgstr "创建" + +#: createFolderDialog.js:72 +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:103 +msgid "Size for the desktop icons" +msgstr "桌面图标大小" + +#: prefs.js:103 +msgid "Small" +msgstr "小" + +#: prefs.js:103 +msgid "Standard" +msgstr "标准" + +#: prefs.js:103 +msgid "Large" +msgstr "大" + +#: prefs.js:104 +msgid "Show the personal folder in the desktop" +msgstr "在桌面上显示个人文件夹" + +#: prefs.js:105 +msgid "Show the trash icon in the desktop" +msgstr "在桌面上显示回收站图标" + +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "在桌面上显示已挂载的驱动器" + +#: desktopGrid.js:346 +msgid "New Folder" +msgstr "新建文件夹" + +#: desktopGrid.js:347 +msgid "New Document" +msgstr "新建文档" + +#: desktopGrid.js:350 +msgid "Paste" +msgstr "粘贴" + +#: desktopGrid.js:351 +msgid "Undo" +msgstr "撤消" + +#: desktopGrid.js:352 +msgid "Redo" +msgstr "恢复" + +#: desktopGrid.js:354 +msgid "Show Desktop in Files" +msgstr "在文件管理器中显示桌面" + +#: desktopGrid.js:355 fileItem.js:721 +msgid "Open in Terminal" +msgstr "在终端中打开" + +#: desktopGrid.js:357 +msgid "Change Background…" +msgstr "更换壁纸…" + +#: desktopGrid.js:359 +msgid "Display Settings" +msgstr "显示设置" + +#: desktopGrid.js:360 +msgid "Settings" +msgstr "设置" + +#: desktopGrid.js:692 +msgid "Rename" +msgstr "重命名" + +#: desktopIconsUtil.js:63 +msgid "Command not found" +msgstr "命令未找到" + +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "弹出驱动器“%s”失败:" + +#: fileItem.js:584 +msgid "Don’t Allow Launching" +msgstr "不允许启动" + +#: fileItem.js:586 +msgid "Allow Launching" +msgstr "允许启动" + +#: fileItem.js:682 +msgid "Open" +msgstr "打开" + +#: fileItem.js:686 +msgid "Open With Other Application" +msgstr "用其他应用程序打开" + +#: fileItem.js:688 +msgid "Launch using Dedicated Graphics Card" +msgstr "使用独立显卡启动" + +#: fileItem.js:693 +msgid "Cut" +msgstr "剪除" + +#: fileItem.js:694 +msgid "Copy" +msgstr "复制" + +#: fileItem.js:696 +msgid "Rename…" +msgstr "重命名…" + +#: fileItem.js:697 +msgid "Move to Trash" +msgstr "移到回收站" + +#: fileItem.js:707 +msgid "Empty Trash" +msgstr "清空回收站" + +#: fileItem.js:711 +msgid "Eject" +msgstr "弹出" + +#: fileItem.js:717 +msgid "Properties" +msgstr "属性" + +#: fileItem.js:719 +msgid "Show in Files" +msgstr "在文件管理器中显示" + +#: fileItem.js:925 +msgid "Home" +msgstr "主文件夹" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 +msgid "Icon size" +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 "在桌面上显示回收站图标。" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "显示已挂载的驱动器" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "在桌面上显示已挂载的驱动器。" + +#~ msgid "Enter file name…" +#~ msgstr "输入文件名…" + +#~ msgid "OK" +#~ msgstr "确定" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/po/zh_TW.po gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/zh_TW.po --- gnome-shell-extension-desktop-icons-20.04.0/po/zh_TW.po 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/po/zh_TW.po 2020-09-08 08:05:17.000000000 +0000 @@ -8,128 +8,213 @@ "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" +"POT-Creation-Date: 2020-05-14 18:46+0000\n" +"PO-Revision-Date: 2020-05-25 01:21+0800\n" +"Last-Translator: Yi-Jyun Pan \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" +"X-Generator: Poedit 2.3.1\n" -#: prefs.js:89 +#: createFolderDialog.js:46 +msgid "New folder name" +msgstr "新資料夾名稱" + +#: createFolderDialog.js:70 +msgid "Create" +msgstr "建立" + +#: createFolderDialog.js:72 +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:103 msgid "Size for the desktop icons" msgstr "桌面圖示的大小" -#: prefs.js:89 +#: prefs.js:103 msgid "Small" msgstr "小圖示" -#: prefs.js:89 +#: prefs.js:103 msgid "Standard" msgstr "標準大小圖示" -#: prefs.js:89 +#: prefs.js:103 msgid "Large" msgstr "大圖示" -#: prefs.js:89 -msgid "Huge" -msgstr "巨大圖示" - -#: prefs.js:90 +#: prefs.js:104 msgid "Show the personal folder in the desktop" msgstr "在桌面顯示個人資料夾" -#: prefs.js:91 +#: prefs.js:105 msgid "Show the trash icon in the desktop" msgstr "在桌面顯示垃圾桶圖示" -#: desktopGrid.js:178 desktopGrid.js:297 +#: prefs.js:106 +msgid "Show mounted drives in the desktop" +msgstr "在桌面顯示掛載裝置" + +#: desktopGrid.js:343 msgid "New Folder" msgstr "新增資料夾" -#: desktopGrid.js:299 +#: desktopGrid.js:345 msgid "Paste" msgstr "貼上" -#: desktopGrid.js:300 +#: desktopGrid.js:346 msgid "Undo" msgstr "復原" -#: desktopGrid.js:301 +#: desktopGrid.js:347 msgid "Redo" msgstr "重做" -#: desktopGrid.js:303 -msgid "Open Desktop in Files" -msgstr "在《檔案》中開啟桌面" - -#: desktopGrid.js:304 -msgid "Open Terminal" -msgstr "開啟終端器" +#: desktopGrid.js:349 +msgid "Show Desktop in Files" +msgstr "在《檔案》中顯示桌面" + +#: desktopGrid.js:350 fileItem.js:702 +msgid "Open in Terminal" +msgstr "在終端器開啟" -#: desktopGrid.js:306 +#: desktopGrid.js:352 msgid "Change Background…" msgstr "變更背景圖片…" -#: desktopGrid.js:307 +#: desktopGrid.js:354 msgid "Display Settings" msgstr "顯示設定" -#: desktopGrid.js:308 +#: desktopGrid.js:355 msgid "Settings" msgstr "設定" -#: fileItem.js:223 +#: desktopGrid.js:653 +msgid "Rename" +msgstr "重新命名" + +#: desktopIconsUtil.js:63 +msgid "Command not found" +msgstr "找不到命令" + +#. TRANSLATORS: %s is the filesystem name +#: desktopIconsUtil.js:162 +#, javascript-format +msgid "Ejecting drive “%s” failed:" +msgstr "退出「%s」裝置失敗:" + +#: fileItem.js:565 +msgid "Don’t Allow Launching" +msgstr "不允許啟動" + +#: fileItem.js:567 +msgid "Allow Launching" +msgstr "允許啟動" + +#: fileItem.js:663 msgid "Open" msgstr "開啟" -#: fileItem.js:226 +#: fileItem.js:667 +msgid "Open With Other Application" +msgstr "以其他應用程式開啟" + +#: fileItem.js:669 +msgid "Launch using Dedicated Graphics Card" +msgstr "使用獨立圖形卡啟動" + +#: fileItem.js:674 msgid "Cut" msgstr "剪下" -#: fileItem.js:227 +#: fileItem.js:675 msgid "Copy" msgstr "複製" -#: fileItem.js:228 +#: fileItem.js:677 +msgid "Rename…" +msgstr "重新命名…" + +#: fileItem.js:678 msgid "Move to Trash" msgstr "移動到垃圾桶" -#: fileItem.js:232 -msgid "Empty trash" -msgstr "清空回收桶" +#: fileItem.js:688 +msgid "Empty Trash" +msgstr "清空垃圾桶" + +#: fileItem.js:692 +msgid "Eject" +msgstr "退出" -#: fileItem.js:238 +#: fileItem.js:698 msgid "Properties" msgstr "屬性" -#: fileItem.js:240 +#: fileItem.js:700 msgid "Show in Files" msgstr "在《檔案》中顯示" -#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:12 +#: fileItem.js:906 +msgid "Home" +msgstr "首頁" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:11 msgid "Icon size" msgstr "圖示大小" -#: 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 "設定桌面圖示的大小。" -#: 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 "顯示個人資料夾" -#: 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 "在桌面顯示個人資料夾。" -#: 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 "顯示垃圾桶圖示" -#: 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 "在桌面顯示垃圾桶圖示。" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:26 +msgid "Show mounted drives" +msgstr "顯示掛載裝置" + +#: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:27 +msgid "Show mounted drives in the desktop." +msgstr "在桌面顯示掛載裝置。" + +#~ msgid "Huge" +#~ msgstr "巨大圖示" diff -Nru gnome-shell-extension-desktop-icons-20.04.0/prefs.js gnome-shell-extension-desktop-icons-20.04.0+git20200908/prefs.js --- gnome-shell-extension-desktop-icons-20.04.0/prefs.js 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/prefs.js 2020-09-08 08:05:17.000000000 +0000 @@ -40,6 +40,7 @@ NONE: null, USER_DIRECTORY_HOME: 'show-home', USER_DIRECTORY_TRASH: 'show-trash', + MOUNT_DISK: 'mount-disk', } var nautilusSettings; @@ -102,6 +103,7 @@ frame.add(buildSelector('icon-size', _("Size for the desktop icons"), { 'small': _("Small"), 'standard': _("Standard"), 'large': _("Large") })); frame.add(buildSwitcher('show-home', _("Show the personal folder in the desktop"))); frame.add(buildSwitcher('show-trash', _("Show the trash icon in the desktop"))); + frame.add(buildSwitcher('show-mount', _("Show mounted drives in the desktop"))); frame.show_all(); return frame; } diff -Nru gnome-shell-extension-desktop-icons-20.04.0/schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml gnome-shell-extension-desktop-icons-20.04.0+git20200908/schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml --- gnome-shell-extension-desktop-icons-20.04.0/schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml 2020-04-03 18:46:01.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml 2020-09-08 08:05:17.000000000 +0000 @@ -21,5 +21,10 @@ Show trash icon Show the trash icon in the desktop. + + true + Show mounted drives + Show mounted drives in the desktop. + diff -Nru gnome-shell-extension-desktop-icons-20.04.0/templateManager.js gnome-shell-extension-desktop-icons-20.04.0+git20200908/templateManager.js --- gnome-shell-extension-desktop-icons-20.04.0/templateManager.js 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-desktop-icons-20.04.0+git20200908/templateManager.js 2020-09-08 08:05:17.000000000 +0000 @@ -0,0 +1,104 @@ +/* DING: Desktop Icons New Generation for GNOME Shell + * + * Copyright (C) 2020 Sergio Costas (rastersoft@gmail.com) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, version 3 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +const Gio = imports.gi.Gio; +const GLib = imports.gi.GLib; + +const ExtensionUtils = imports.misc.extensionUtils; +const Me = ExtensionUtils.getCurrentExtension(); +const DesktopIconsUtil = Me.imports.desktopIconsUtil; + +var TemplateManager = class { + + constructor() { + this._templates = []; + this._templatesEnumerateCancellable = null; + this._templateDir = GLib.get_user_special_dir(GLib.UserDirectory.DIRECTORY_TEMPLATES); + if (this._templateDir == GLib.get_home_dir()) + this._templateDir = null; + this.updated = true; + if (this._templateDir != null) { + this._templateGFile = Gio.File.new_for_path(this._templateDir); + this._monitor = this._templateGFile.monitor_directory(Gio.FileMonitorFlags.NONE, null); + this._monitorId = this._monitor.connect("changed", () => { + this._refreshTemplates(); + }); + this._refreshTemplates(); + } else { + this._templateGFile = null; + this._monitorId = null; + } + } + + destroy() { + if (this._monitorId) + this._monitor.disconnect(this._monitorId); + this._monitorId = null; + } + + getTemplates() { + let templates = []; + for(let template of this._templates) { + let data = {}; + data["icon"] = template.get_icon(); + let name = template.get_name(); + let offset = DesktopIconsUtil.getFileExtensionOffset(name, false); + data["name"] = name.substring(0, offset); + data["extension"] = name.substring(offset); + data["file"] = name; + templates.push(data); + } + this.updated = false; + return templates; + } + + _refreshTemplates() { + if (this._templatesEnumerateCancellable) + this._templatesEnumerateCancellable.cancel(); + this._templatesEnumerateCancellable = new Gio.Cancellable(); + this._templateGFile.enumerate_children_async( + DesktopIconsUtil.DEFAULT_ATTRIBUTES, + Gio.FileQueryInfoFlags.NONE, + GLib.PRIORITY_DEFAULT, + this._templatesEnumerateCancellable, + (source, result) => { + try { + let fileEnum = source.enumerate_children_finish(result); + this._templates = []; + let info; + while ((info = fileEnum.next_file(null))) { + if (info.get_file_type() != Gio.FileType.DIRECTORY) + this._templates.push(info); + } + this.updated = true; + } catch(e) { + global.log(`Exception while reading templates ${e}`); + } + } + ); + } + + getTemplateFile(name) { + if (this._templateGFile == null) + return null; + let template = Gio.File.new_for_path(GLib.build_filenamev([this._templateDir, name])); + if (template.query_exists(null)) + return template; + else + return null; + } +}