Codebase list gnome-shell-extension-desktop-icons / upstream/19.01.3+git20190814.1
New upstream version 19.01.3+git20190814.1 Iain Lane 4 years ago
12 changed file(s) with 469 addition(s) and 232 deletion(s). Raw diff Collapse all Expand all
+0
-4
.gitignore less more
0 builddir/
1 desktop-icons@csoriano/
2 schemas/gschemas.compiled
3 *.zip
+0
-34
.gitlab/issue_templates/I have a Bug.md less more
0 📩 Version and System
1 ------------------------------------------
2 <!--
3 🎓 Instructions for obtaining information about your system
4 1ïžâƒŁ Open đŸ’» Gnome Terminal
5 2ïžâƒŁ Paste these Commands into đŸ’» Gnome Terminal:
6 gnome-shell --version
7 nautilus --version
8 cat /etc/*-release
9 cat $HOME/.local/share/gnome-shell/extensions/desktop-icons@csoriano/metadata.json
10 3ïžâƒŁ Paste the Output of the Commands within the ticks below, where [here] is written
11
12 -->
13
14 ```
15 [here]
16 ```
17
18 Optionally, can it be reproduced with the git version in this repository?
19
20 📜 Description of the Issue
21 -------------------------------
22
23
24
25
26 đŸŽ„ Screencast or Screenshot
27 -------------------------------
28 <!--
29 Go to the following link for instructions how to screencast: https://help.gnome.org/users/gnome-help/stable/screen-shot-record.html.en#screencast
30
31 Alternatively an image of the result might be helpful.
32 -->
33
203203 this._desktopGrids = {};
204204 }
205205
206 /**
206 /**
207207 * Initialize rubberband color from the GTK rubberband class
208208 * */
209209 _initRubberBandColor() {
341341 case ATTRIBUTE_CHANGED:
342342 /* a file changed, rather than the desktop itself */
343343 let desktopDir = DesktopIconsUtil.getDesktopDir();
344 if (file.get_uri() != desktopDir.get_uri())
344 if (file.get_uri() != desktopDir.get_uri()) {
345 fileItem.onAttributeChanged();
345346 return;
347 }
346348
347349 if (this._queryFileInfoCancellable)
348350 this._queryFileInfoCancellable.cancel();
117117 /* Set the metadata and update relevant UI */
118118 this._updateMetadataFromFileInfo(fileInfo);
119119
120 if (this._isDesktopFile) {
121 /* watch for the executable bit being removed or added */
122 this._monitorDesktopFile = this._file.monitor_file(Gio.FileMonitorFlags.NONE, null);
123 this._monitorDesktopFileId = this._monitorDesktopFile.connect('changed',
124 (obj, file, otherFile, eventType) => {
125 switch(eventType) {
126 case Gio.FileMonitorEvent.ATTRIBUTE_CHANGED:
127 this._refreshMetadataAsync(true);
128 break;
129 }
130 });
131 }
132
133 this._createMenu();
120 this._menuManager = null;
121 this._menu = null;
134122 this._updateIcon();
135123
136124 this._isSelected = false;
137125 this._primaryButtonPressed = false;
138 if (this._attributeCanExecute && !this._isDesktopFile)
126 if (this._attributeCanExecute && !this._isValidDesktopFile)
139127 this._execLine = this.file.get_path();
140128 if (fileExtra == Prefs.FileType.USER_DIRECTORY_TRASH) {
141129 // if this icon is the trash, monitor the state of the directory to update the icon
142130 this._trashChanged = false;
143 this._trashInitializeCancellable = null;
131 this._queryTrashInfoCancellable = null;
144132 this._scheduleTrashRefreshId = 0;
145133 this._monitorTrashDir = this._file.monitor_directory(Gio.FileMonitorFlags.WATCH_MOVES, null);
146134 this._monitorTrashId = this._monitorTrashDir.connect('changed', (obj, file, otherFile, eventType) => {
161149 });
162150 }
163151
164 Extension.desktopManager.connect('notify::writable-by-others', () => {
165 if (!this._isDesktopFile)
152 this._writebleByOthersId = Extension.desktopManager.connect('notify::writable-by-others', () => {
153 if (!this._isValidDesktopFile)
166154 return;
167155 this._refreshMetadataAsync(true);
168156 });
157 }
158
159 onAttributeChanged() {
160 if (this._isDesktopFile) {
161 this._refreshMetadataAsync(true);
162 }
169163 }
170164
171165 _onDestroy() {
175169 if (this._queryFileInfoCancellable)
176170 this._queryFileInfoCancellable.cancel();
177171
172 Extension.desktopManager.disconnect(this._writebleByOthersId);
173
178174 /* Thumbnailing */
179175 if (this._thumbnailScriptWatch)
180176 GLib.source_remove(this._thumbnailScriptWatch);
196192 this._queryTrashInfoCancellable.cancel();
197193 if (this._scheduleTrashRefreshId)
198194 GLib.source_remove(this._scheduleTrashRefreshId);
195
196 /* Menu */
197 this._removeMenu();
199198 }
200199
201200 _refreshMetadataAsync(rebuild) {
212211 this._queryFileInfoCancellable = null;
213212 this._updateMetadataFromFileInfo(newFileInfo);
214213 if (rebuild) {
215 this._createMenu();
214 this._recreateMenu();
216215 this._updateIcon();
217216 }
218217 } catch(error) {
242241 this._desktopFile = Gio.DesktopAppInfo.new_from_filename(this._file.get_path());
243242 if (!this._desktopFile) {
244243 log(`Couldn’t parse ${this._displayName} as a desktop file, will treat it as a regular file.`);
245 this._isDesktopFile = false;
246 }
244 this._isValidDesktopFile = false;
245 } else {
246 this._isValidDesktopFile = true;
247 }
248 } else {
249 this._isValidDesktopFile = false;
247250 }
248251
249252 if (this.displayName != oldLabelText) {
295298 this._thumbnailScriptWatch = GLib.child_watch_add(GLib.PRIORITY_DEFAULT,
296299 pid,
297300 (pid, exitCode) => {
301 this._thumbnailScriptWatch = 0;
298302 if (exitCode == 0)
299303 this._updateIcon();
300304 else
312316 thumbnailFile.load_bytes_async(this._loadThumbnailDataCancellable,
313317 (source, result) => {
314318 try {
319 this._loadThumbnailDataCancellable = null;
315320 let [thumbnailData, etag_out] = source.load_bytes_finish(result);
316321 let thumbnailStream = Gio.MemoryInputStream.new_from_bytes(thumbnailData);
317322 let thumbnailPixbuf = GdkPixbuf.Pixbuf.new_from_stream(thumbnailStream, null);
434439 return;
435440 }
436441
437 if (this._attributeCanExecute && !this._isDirectory && !this._isDesktopFile) {
442 if (this._attributeCanExecute && !this._isDirectory && !this._isValidDesktopFile) {
438443 if (this._execLine)
439444 Util.spawnCommandLine(this._execLine);
440445 return;
564569 'border-color: ' + border_color + ';'
565570 }
566571
567 _createMenu() {
572 _removeMenu() {
573 if (this._menu != null) {
574 if (this._menuManager != null)
575 this._menuManager.removeMenu(this._menu);
576
577 Main.layoutManager.uiGroup.remove_child(this._menu.actor);
578 this._menu.destroy();
579 this._menu = null;
580 }
581
582 this._menuManager = null;
583 }
584
585 _recreateMenu() {
586 this._removeMenu();
587
568588 this._menuManager = new PopupMenu.PopupMenuManager({ actor: this.actor });
569589 let side = St.Side.LEFT;
570590 if (Clutter.get_default_text_direction() == Clutter.TextDirection.RTL)
583603 if (this.canRename())
584604 this._menu.addAction(_('Rename
'), () => this.doRename());
585605 this._actionTrash = this._menu.addAction(_('Move to Trash'), () => this._onMoveToTrashClicked());
586 if (this._isDesktopFile && !Extension.desktopManager.writableByOthers && !this._writableByOthers) {
606 if (this._isValidDesktopFile && !Extension.desktopManager.writableByOthers && !this._writableByOthers) {
587607 this._menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem());
588608 this._allowLaunchingMenuItem = this._menu.addAction(this._allowLaunchingText,
589609 () => this._onAllowDisallowLaunchingClicked());
610630 this._menu.actor.hide();
611631 }
612632
633 _ensureMenu() {
634 if (this._menu == null)
635 this._recreateMenu();
636
637 return this._menu;
638 }
639
613640 _onOpenTerminalClicked () {
614641 DesktopIconsUtil.launchTerminal(this.file.get_path());
615642 }
619646 if (button == 3) {
620647 if (!this.isSelected)
621648 this.emit('selected', false, false, true);
622 this._menu.toggle();
649 this._ensureMenu().toggle();
623650 if (this._actionOpenWith) {
624651 let allowOpenWith = (Extension.desktopManager.getNumberOfSelectedItems() == 1);
625652 this._actionOpenWith.setSensitive(allowOpenWith);
716743 info.set_attribute_string('metadata::nautilus-icon-position',
717744 `${pos[0]},${pos[1]}`);
718745 this.file.set_attributes_async(info,
719 Gio.FileQueryInfoFlags.NONE,
720 GLib.PRIORITY_DEFAULT,
721 this._setMetadataCancellable,
722 (source, result) => this._onSetMetadataFileFinished(source, result)
746 Gio.FileQueryInfoFlags.NONE,
747 GLib.PRIORITY_DEFAULT,
748 this._setMetadataCancellable,
749 (source, result) => {
750 this._setMetadataCancellable = null;
751 this._onSetMetadataFileFinished(source, result);
752 }
723753 );
724754 }
725755
774804 }
775805
776806 get trustedDesktopFile() {
777 return this._isDesktopFile &&
807 return this._isValidDesktopFile &&
778808 this._attributeCanExecute &&
779809 this.metadataTrusted &&
780810 !Extension.desktopManager.writableByOthers &&
0 ca
01 cs
12 da
23 de
0 #
1 # This file is distributed under the same license as the PACKAGE package.
2 # Jordi Mas i Hernandez <jmas@softcatala.org>, 2019
3 #
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: 1.0\n"
7 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-"
8 "icons/issues\n"
9 "POT-Creation-Date: 2019-07-22 10:24+0200\n"
10 "PO-Revision-Date: 2019-07-22 10:24+0200\n"
11 "Language: ca\n"
12 "Language-Team: Catalan <info@softcatala.org>\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Last-Translator: Jordi Mas <jmas@softcatala.org>\n"
17 "Language: ca\n"
18 "X-Generator: Poedit 2.2.1\n"
19
20 #: ../createFolderDialog.js:48
21 msgid "New folder name"
22 msgstr "Nom de la carpeta nou"
23
24 #: ../createFolderDialog.js:72
25 msgid "Create"
26 msgstr "Crea"
27
28 #: ../createFolderDialog.js:74 ../desktopGrid.js:592
29 msgid "Cancel"
30 msgstr "Cancel·la"
31
32 #: ../createFolderDialog.js:145
33 msgid "Folder names cannot contain “/”."
34 msgstr "Els noms de carpetes no poden contenir «/»."
35
36 #: ../createFolderDialog.js:148
37 msgid "A folder cannot be called “.”."
38 msgstr "Una carpeta no es pot anomenar «.»."
39
40 #: ../createFolderDialog.js:151
41 msgid "A folder cannot be called “..”."
42 msgstr "Una carpeta no es pot anomenar «..»."
43
44 #: ../createFolderDialog.js:153
45 msgid "Folders with “.” at the beginning of their name are hidden."
46 msgstr "Les carpetes amb un «.» a l'inici del seu nom s'amaguen."
47
48 #: ../createFolderDialog.js:155
49 msgid "There is already a file or folder with that name."
50 msgstr "Ja existeix un fitxer o carpeta amb aquest nom."
51
52 #: ../prefs.js:102
53 msgid "Size for the desktop icons"
54 msgstr "Mida de les icones d'escriptori"
55
56 #: ../prefs.js:102
57 msgid "Small"
58 msgstr "Petita"
59
60 #: ../prefs.js:102
61 msgid "Standard"
62 msgstr "EstĂ ndard"
63
64 #: ../prefs.js:102
65 msgid "Large"
66 msgstr "Gran"
67
68 #: ../prefs.js:103
69 msgid "Show the personal folder in the desktop"
70 msgstr "Mostra la carpeta personal a l'escriptori"
71
72 #: ../prefs.js:104
73 msgid "Show the trash icon in the desktop"
74 msgstr "Mostra la icona de la paperera a l'escriptori"
75
76 #: ../desktopGrid.js:323
77 msgid "New Folder"
78 msgstr "Carpeta nova"
79
80 #: ../desktopGrid.js:325
81 msgid "Paste"
82 msgstr "Enganxa"
83
84 #: ../desktopGrid.js:326
85 msgid "Undo"
86 msgstr "Desfés"
87
88 #: ../desktopGrid.js:327
89 msgid "Redo"
90 msgstr "Refés"
91
92 #: ../desktopGrid.js:329
93 msgid "Show Desktop in Files"
94 msgstr "Mostra l'escriptori al Fitxers"
95
96 #: ../desktopGrid.js:330 ../fileItem.js:612
97 msgid "Open in Terminal"
98 msgstr "Obre al Terminal"
99
100 #: ../desktopGrid.js:332
101 msgid "Change Background
"
102 msgstr "Canvia el fons de l'escriptori
"
103
104 #: ../desktopGrid.js:334
105 msgid "Display Settings"
106 msgstr "ParĂ metres de la pantalla"
107
108 #: ../desktopGrid.js:335
109 msgid "Settings"
110 msgstr "ParĂ metres"
111
112 #: ../desktopGrid.js:582
113 msgid "Enter file name
"
114 msgstr "Introduïu un nom de fitxer
"
115
116 #: ../desktopGrid.js:586
117 msgid "OK"
118 msgstr "D'acord"
119
120 #: ../desktopIconsUtil.js:61
121 msgid "Command not found"
122 msgstr " No s'ha trobat l'ordre"
123
124 #: ../fileItem.js:500
125 msgid "Don’t Allow Launching"
126 msgstr "No permetis que s'iniciĂŻ"
127
128 #: ../fileItem.js:502
129 msgid "Allow Launching"
130 msgstr "Permet que s'iniciĂŻ"
131
132 #: ../fileItem.js:580
133 msgid "Open"
134 msgstr "Obre"
135
136 #: ../fileItem.js:584
137 msgid "Open With Other Application"
138 msgstr "Obre amb una altra aplicaciĂł..."
139
140 #: ../fileItem.js:588
141 msgid "Cut"
142 msgstr "Retalla"
143
144 #: ../fileItem.js:589
145 msgid "Copy"
146 msgstr "Copia"
147
148 #: ../fileItem.js:591
149 msgid "Rename
"
150 msgstr "Canvia el nom
"
151
152 #: ../fileItem.js:592
153 msgid "Move to Trash"
154 msgstr "Mou a la paperera"
155
156 #: ../fileItem.js:602
157 msgid "Empty Trash"
158 msgstr "Buida la paperera"
159
160 #: ../fileItem.js:608
161 msgid "Properties"
162 msgstr "Propietats"
163
164 #: ../fileItem.js:610
165 msgid "Show in Files"
166 msgstr "Mostra al Fitxers"
167
168 #: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:1
169 msgid "Icon size"
170 msgstr "Mida d'icona"
171
172 #: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:2
173 msgid "Set the size for the desktop icons."
174 msgstr "Estableix la mida per les icones de l'escriptori."
175
176 #: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:3
177 msgid "Show personal folder"
178 msgstr "Mostra la carpeta personal"
179
180 #: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:4
181 msgid "Show the personal folder in the desktop."
182 msgstr "Mostra la carpeta personal a l'escriptori."
183
184 #: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:5
185 msgid "Show trash icon"
186 msgstr "Mostra la icona de la paperera"
187
188 #: ../schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml.h:6
189 msgid "Show the trash icon in the desktop."
190 msgstr "Mostra la icona de la paperera a l'escriptori."
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: desktop-icons master\n"
8 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-"
9 "icons/issues\n"
10 "POT-Creation-Date: 2019-01-15 10:59+0000\n"
11 "PO-Revision-Date: 2019-02-09 11:35+0100\n"
12 "Last-Translator: Alan Mortensen <alanmortensen.am@gmail.com>\n"
8 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions"
9 "/desktop-icons/issues\n"
10 "POT-Creation-Date: 2019-03-01 12:11+0000\n"
11 "PO-Revision-Date: 2019-03-04 14:55+0200\n"
12 "Last-Translator: scootergrisen\n"
1313 "Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
1414 "Language: da\n"
1515 "MIME-Version: 1.0\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19 "X-Generator: Poedit 2.0.6\n"
19
20 #: createFolderDialog.js:48
21 #| msgid "New Folder"
22 msgid "New folder name"
23 msgstr "Nyt mappenavn"
24
25 #: createFolderDialog.js:72
26 msgid "Create"
27 msgstr "Opret"
28
29 #: createFolderDialog.js:74 desktopGrid.js:586
30 msgid "Cancel"
31 msgstr "Annullér"
32
33 #: createFolderDialog.js:145
34 msgid "Folder names cannot contain “/”."
35 msgstr "Mappenavne mĂ„ ikke indeholde “/”."
36
37 #: createFolderDialog.js:148
38 msgid "A folder cannot be called “.”."
39 msgstr "En mappe mĂ„ ikke kaldes “.”."
40
41 #: createFolderDialog.js:151
42 msgid "A folder cannot be called “..”."
43 msgstr "En mappe mĂ„ ikke kaldes “..”."
44
45 #: createFolderDialog.js:153
46 msgid "Folders with “.” at the beginning of their name are hidden."
47 msgstr "Mapper med “.” i begyndelsen af deres navn er skjulte."
48
49 #: createFolderDialog.js:155
50 msgid "There is already a file or folder with that name."
51 msgstr "Der findes allerede en fil eller mappe med det navn."
2052
2153 #: prefs.js:102
2254 msgid "Size for the desktop icons"
4274 msgid "Show the trash icon in the desktop"
4375 msgstr "Vis papirkurvsikonet pÄ skrivebordet"
4476
45 #: desktopGrid.js:187 desktopGrid.js:306
77 #: desktopGrid.js:320
4678 msgid "New Folder"
4779 msgstr "Ny mappe"
4880
49 #: desktopGrid.js:308
81 #: desktopGrid.js:322
5082 msgid "Paste"
5183 msgstr "IndsĂŠt"
5284
53 #: desktopGrid.js:309
85 #: desktopGrid.js:323
5486 msgid "Undo"
5587 msgstr "Fortryd"
5688
57 #: desktopGrid.js:310
89 #: desktopGrid.js:324
5890 msgid "Redo"
5991 msgstr "OmgĂžr"
6092
61 #: desktopGrid.js:312
93 #: desktopGrid.js:326
6294 msgid "Show Desktop in Files"
6395 msgstr "Vis skrivebordet i Filer"
6496
65 #: desktopGrid.js:313 fileItem.js:586
97 #: desktopGrid.js:327 fileItem.js:606
6698 msgid "Open in Terminal"
6799 msgstr "Åbn i terminal"
68100
69 #: desktopGrid.js:315
101 #: desktopGrid.js:329
70102 msgid "Change Background
"
71103 msgstr "Skift baggrund 
"
72104
73 #: desktopGrid.js:317
105 #: desktopGrid.js:331
74106 msgid "Display Settings"
75107 msgstr "SkĂŠrmindstillinger"
76108
77 #: desktopGrid.js:318
109 #: desktopGrid.js:332
78110 msgid "Settings"
79111 msgstr "Indstillinger"
80112
81 #: desktopGrid.js:559
113 #: desktopGrid.js:576
82114 msgid "Enter file name
"
83115 msgstr "Indtast filnavn 
"
84116
85 #: desktopGrid.js:563
117 #: desktopGrid.js:580
86118 msgid "OK"
87119 msgstr "OK"
88
89 #: desktopGrid.js:569
90 msgid "Cancel"
91 msgstr "Annullér"
92120
93121 #: fileItem.js:490
94122 msgid "Don’t Allow Launching"
98126 msgid "Allow Launching"
99127 msgstr "Tillad opstart"
100128
101 #: fileItem.js:559
129 #: fileItem.js:574
102130 msgid "Open"
103131 msgstr "Åbn"
104132
105 #: fileItem.js:562
133 #: fileItem.js:578
134 msgid "Open With Other Application"
135 msgstr "Åbn med et andet program"
136
137 #: fileItem.js:582
106138 msgid "Cut"
107139 msgstr "Klip"
108140
109 #: fileItem.js:563
141 #: fileItem.js:583
110142 msgid "Copy"
111143 msgstr "Kopiér"
112144
113 #: fileItem.js:565
145 #: fileItem.js:585
114146 msgid "Rename
"
115147 msgstr "Omdþb 
"
116148
117 #: fileItem.js:566
149 #: fileItem.js:586
118150 msgid "Move to Trash"
119151 msgstr "Flyt til papirkurven"
120152
121 #: fileItem.js:576
153 #: fileItem.js:596
122154 msgid "Empty Trash"
123155 msgstr "TĂžm papirkurven"
124156
125 #: fileItem.js:582
157 #: fileItem.js:602
126158 msgid "Properties"
127159 msgstr "Egenskaber"
128160
129 #: fileItem.js:584
161 #: fileItem.js:604
130162 msgid "Show in Files"
131163 msgstr "Vis i Filer"
132164
99 "Project-Id-Version: 1.0\n"
1010 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-"
1111 "icons/issues\n"
12 "POT-Creation-Date: 2019-03-01 12:11+0000\n"
13 "PO-Revision-Date: 2019-03-04 10:37+0100\n"
12 "POT-Creation-Date: 2019-04-29 14:11+0000\n"
13 "PO-Revision-Date: 2019-05-13 15:13+0200\n"
1414 "Last-Translator: Daniel Mustieles <daniel.mustieles@gmail.com>\n"
1515 "Language-Team: es <gnome-es-list@gnome.org>\n"
1616 "Language: es\n"
1818 "Content-Type: text/plain; charset=UTF-8\n"
1919 "Content-Transfer-Encoding: 8bit\n"
2020 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21 "X-Generator: Gtranslator 3.31.90\n"
21 "X-Generator: Gtranslator 3.32.0\n"
2222
2323 #: createFolderDialog.js:48
24 #| msgid "New Folder"
2524 msgid "New folder name"
2625 msgstr "Nombre de la nueva carpeta"
2726
2928 msgid "Create"
3029 msgstr "Crear"
3130
32 #: createFolderDialog.js:74 desktopGrid.js:586
31 #: createFolderDialog.js:74 desktopGrid.js:592
3332 msgid "Cancel"
3433 msgstr "Cancelar"
3534
7776 msgid "Show the trash icon in the desktop"
7877 msgstr "Mostrar la papelera en el escritorio"
7978
80 #: desktopGrid.js:320
79 #: desktopGrid.js:323
8180 msgid "New Folder"
8281 msgstr "Nueva carpeta"
8382
84 #: desktopGrid.js:322
83 #: desktopGrid.js:325
8584 msgid "Paste"
8685 msgstr "Pegar"
8786
88 #: desktopGrid.js:323
87 #: desktopGrid.js:326
8988 msgid "Undo"
9089 msgstr "Deshacer"
9190
92 #: desktopGrid.js:324
91 #: desktopGrid.js:327
9392 msgid "Redo"
9493 msgstr "Rehacer"
9594
96 #: desktopGrid.js:326
95 #: desktopGrid.js:329
9796 msgid "Show Desktop in Files"
9897 msgstr "Mostrar el escritorio en Archivos"
9998
100 #: desktopGrid.js:327 fileItem.js:606
99 #: desktopGrid.js:330 fileItem.js:610
101100 msgid "Open in Terminal"
102101 msgstr "Abrir en una terminal"
103102
104 #: desktopGrid.js:329
103 #: desktopGrid.js:332
105104 msgid "Change Background
"
106105 msgstr "Cambiar el fondo..."
107106
108 #: desktopGrid.js:331
107 #: desktopGrid.js:334
109108 msgid "Display Settings"
110109 msgstr "ConfiguraciĂłn de pantalla"
111110
112 #: desktopGrid.js:332
111 #: desktopGrid.js:335
113112 msgid "Settings"
114113 msgstr "ConfiguraciĂłn"
115114
116 #: desktopGrid.js:576
115 #: desktopGrid.js:582
117116 msgid "Enter file name
"
118117 msgstr "Introduzca el nombre del archivo
"
119118
120 #: desktopGrid.js:580
119 #: desktopGrid.js:586
121120 msgid "OK"
122121 msgstr "Aceptar"
123122
124 #: fileItem.js:490
123 #: desktopIconsUtil.js:61
124 msgid "Command not found"
125 msgstr "Comando no encontrado"
126
127 #: fileItem.js:494
125128 msgid "Don’t Allow Launching"
126129 msgstr "No permitir lanzar"
127130
128 #: fileItem.js:492
131 #: fileItem.js:496
129132 msgid "Allow Launching"
130133 msgstr "Permitir lanzar"
131134
132 #: fileItem.js:574
135 #: fileItem.js:578
133136 msgid "Open"
134137 msgstr "Abrir"
135138
136 #: fileItem.js:578
139 #: fileItem.js:582
137140 msgid "Open With Other Application"
138141 msgstr "Abrir con otra aplicaciĂłn"
139142
140 #: fileItem.js:582
143 #: fileItem.js:586
141144 msgid "Cut"
142145 msgstr "Cortar"
143146
144 #: fileItem.js:583
147 #: fileItem.js:587
145148 msgid "Copy"
146149 msgstr "Copiar"
147150
148 #: fileItem.js:585
151 #: fileItem.js:589
149152 msgid "Rename
"
150153 msgstr "Renombrar
"
151154
152 #: fileItem.js:586
155 #: fileItem.js:590
153156 msgid "Move to Trash"
154157 msgstr "Mover a la papelera"
155158
156 #: fileItem.js:596
159 #: fileItem.js:600
157160 msgid "Empty Trash"
158161 msgstr "Vaciar la papelera"
159162
160 #: fileItem.js:602
163 #: fileItem.js:606
161164 msgid "Properties"
162165 msgstr "Propiedades"
163166
164 #: fileItem.js:604
167 #: fileItem.js:608
165168 msgid "Show in Files"
166169 msgstr "Mostrar en Files"
167170
77 "Project-Id-Version: desktop-icons master\n"
88 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-"
99 "icons/issues\n"
10 "POT-Creation-Date: 2019-03-01 12:11+0000\n"
11 "PO-Revision-Date: 2019-03-02 11:29+0200\n"
10 "POT-Creation-Date: 2019-04-29 14:11+0000\n"
11 "PO-Revision-Date: 2019-06-02 15:23+0300\n"
1212 "Last-Translator: Jiri Grönroos <jiri.gronroos+l10n@iki.fi>\n"
1313 "Language-Team: Finnish <lokalisointi-lista@googlegroups.com>\n"
1414 "Language: fi\n"
2626 msgid "Create"
2727 msgstr "Luo"
2828
29 #: createFolderDialog.js:74 desktopGrid.js:586
29 #: createFolderDialog.js:74 desktopGrid.js:592
3030 msgid "Cancel"
3131 msgstr "Peru"
3232
7474 msgid "Show the trash icon in the desktop"
7575 msgstr "NÀytÀ roskakorin kuvake työpöydÀllÀ"
7676
77 #: desktopGrid.js:320
77 #: desktopGrid.js:323
7878 msgid "New Folder"
7979 msgstr "Uusi kansio"
8080
81 #: desktopGrid.js:322
81 #: desktopGrid.js:325
8282 msgid "Paste"
8383 msgstr "LiitÀ"
8484
85 #: desktopGrid.js:323
85 #: desktopGrid.js:326
8686 msgid "Undo"
8787 msgstr "Kumoa"
8888
89 #: desktopGrid.js:324
89 #: desktopGrid.js:327
9090 msgid "Redo"
9191 msgstr "Tee uudeleen"
9292
93 #: desktopGrid.js:326
93 #: desktopGrid.js:329
9494 msgid "Show Desktop in Files"
9595 msgstr "NÀytÀ työpöytÀ tiedostonhallinnassa"
9696
97 #: desktopGrid.js:327 fileItem.js:606
97 #: desktopGrid.js:330 fileItem.js:610
9898 msgid "Open in Terminal"
9999 msgstr "Avaa pÀÀtteessÀ"
100100
101 #: desktopGrid.js:329
101 #: desktopGrid.js:332
102102 msgid "Change Background
"
103103 msgstr "Vaihda taustakuvaa
"
104104
105 #: desktopGrid.js:331
105 #: desktopGrid.js:334
106106 msgid "Display Settings"
107107 msgstr "NÀytön asetukset"
108108
109 #: desktopGrid.js:332
109 #: desktopGrid.js:335
110110 msgid "Settings"
111111 msgstr "Asetukset"
112112
113 #: desktopGrid.js:576
113 #: desktopGrid.js:582
114114 msgid "Enter file name
"
115115 msgstr "Anna tiedostonimi
"
116116
117 #: desktopGrid.js:580
117 #: desktopGrid.js:586
118118 msgid "OK"
119119 msgstr "OK"
120120
121 #: fileItem.js:490
121 #: desktopIconsUtil.js:61
122 msgid "Command not found"
123 msgstr "Komentoa ei löydy"
124
125 #: fileItem.js:494
122126 msgid "Don’t Allow Launching"
123127 msgstr "ÄlĂ€ salli kĂ€ynnistĂ€mistĂ€"
124128
125 #: fileItem.js:492
129 #: fileItem.js:496
126130 msgid "Allow Launching"
127131 msgstr "Salli kÀynnistÀminen"
128132
129 #: fileItem.js:574
133 #: fileItem.js:578
130134 msgid "Open"
131135 msgstr "Avaa"
132136
133 #: fileItem.js:578
137 #: fileItem.js:582
134138 msgid "Open With Other Application"
135139 msgstr "Avaa toisella sovelluksella"
136140
137 #: fileItem.js:582
141 #: fileItem.js:586
138142 msgid "Cut"
139143 msgstr "Leikkaa"
140144
141 #: fileItem.js:583
145 #: fileItem.js:587
142146 msgid "Copy"
143147 msgstr "Kopioi"
144148
145 #: fileItem.js:585
149 #: fileItem.js:589
146150 msgid "Rename
"
147151 msgstr "NimeÀ uudelleen
"
148152
149 #: fileItem.js:586
153 #: fileItem.js:590
150154 msgid "Move to Trash"
151155 msgstr "SiirrÀ roskakoriin"
152156
153 #: fileItem.js:596
157 #: fileItem.js:600
154158 msgid "Empty Trash"
155159 msgstr "TyhjennÀ roskakori"
156160
157 #: fileItem.js:602
161 #: fileItem.js:606
158162 msgid "Properties"
159163 msgstr "Ominaisuudet"
160164
161 #: fileItem.js:604
165 #: fileItem.js:608
162166 msgid "Show in Files"
163167 msgstr "NÀytÀ tiedostonhallinnassa"
164168
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: gnome-shell-extension-desktop-icons\n"
8 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
9 "POT-Creation-Date: 2019-03-05 11:27+0000\n"
10 "PO-Revision-Date: 2019-03-23 16:03+0000\n"
8 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-"
9 "icons/issues\n"
10 "POT-Creation-Date: 2019-04-29 14:11+0000\n"
11 "PO-Revision-Date: 2019-06-22 18:52+0200\n"
1112 "Last-Translator: gogo <trebelnik2@gmail.com>\n"
1213 "Language-Team: Croatian <hr@li.org>\n"
14 "Language: hr\n"
1315 "MIME-Version: 1.0\n"
1416 "Content-Type: text/plain; charset=UTF-8\n"
1517 "Content-Transfer-Encoding: 8bit\n"
1618 "X-Launchpad-Export-Date: 2019-03-27 09:36+0000\n"
17 "X-Generator: Launchpad (build 18910)\n"
19 "X-Generator: Poedit 2.2.1\n"
1820
1921 #: createFolderDialog.js:48
2022 msgid "New folder name"
2426 msgid "Create"
2527 msgstr "Stvori"
2628
27 #: createFolderDialog.js:74 desktopGrid.js:586
29 #: createFolderDialog.js:74 desktopGrid.js:592
2830 msgid "Cancel"
2931 msgstr "Odustani"
3032
7274 msgid "Show the trash icon in the desktop"
7375 msgstr "PrikaĆŸi mapu smeća na radnoj povrĆĄini"
7476
75 #: desktopGrid.js:320
77 #: desktopGrid.js:323
7678 msgid "New Folder"
7779 msgstr "Nova mapa"
7880
79 #: desktopGrid.js:322
81 #: desktopGrid.js:325
8082 msgid "Paste"
8183 msgstr "Zalijepi"
8284
83 #: desktopGrid.js:323
85 #: desktopGrid.js:326
8486 msgid "Undo"
8587 msgstr "PoniĆĄti"
8688
87 #: desktopGrid.js:324
89 #: desktopGrid.js:327
8890 msgid "Redo"
8991 msgstr "Ponovi"
9092
91 #: desktopGrid.js:326
93 #: desktopGrid.js:329
9294 msgid "Show Desktop in Files"
9395 msgstr "PrikaĆŸi radnu povrĆĄinu u Datotekama"
9496
95 #: desktopGrid.js:327 fileItem.js:606
97 #: desktopGrid.js:330 fileItem.js:610
9698 msgid "Open in Terminal"
9799 msgstr "Otvori u Terminalu"
98100
99 #: desktopGrid.js:329
101 #: desktopGrid.js:332
100102 msgid "Change Background
"
101103 msgstr "Promijeni pozadinu
"
102104
103 #: desktopGrid.js:331
105 #: desktopGrid.js:334
104106 msgid "Display Settings"
105107 msgstr "Postavke zaslona"
106108
107 #: desktopGrid.js:332
109 #: desktopGrid.js:335
108110 msgid "Settings"
109111 msgstr "Postavke"
110112
111 #: desktopGrid.js:576
113 #: desktopGrid.js:582
112114 msgid "Enter file name
"
113115 msgstr "Upiơi naziv datoteke
"
114116
115 #: desktopGrid.js:580
117 #: desktopGrid.js:586
116118 msgid "OK"
117119 msgstr "U redu"
118120
119 #: fileItem.js:490
121 #: desktopIconsUtil.js:61
122 msgid "Command not found"
123 msgstr "Naredba nije pronađena"
124
125 #: fileItem.js:494
120126 msgid "Don’t Allow Launching"
121127 msgstr "Ne dopuĆĄtaj pokretanje"
122128
123 #: fileItem.js:492
129 #: fileItem.js:496
124130 msgid "Allow Launching"
125131 msgstr "Dopusti pokretanje"
126132
127 #: fileItem.js:574
133 #: fileItem.js:578
128134 msgid "Open"
129135 msgstr "Otvori"
130136
131 #: fileItem.js:578
137 #: fileItem.js:582
132138 msgid "Open With Other Application"
133139 msgstr "Otvori s drugom aplikacijom"
134140
135 #: fileItem.js:582
141 #: fileItem.js:586
136142 msgid "Cut"
137143 msgstr "IzreĆŸi"
138144
139 #: fileItem.js:583
145 #: fileItem.js:587
140146 msgid "Copy"
141147 msgstr "Kopiraj"
142148
143 #: fileItem.js:585
149 #: fileItem.js:589
144150 msgid "Rename
"
145151 msgstr "Preimenuj
"
146152
147 #: fileItem.js:586
153 #: fileItem.js:590
148154 msgid "Move to Trash"
149155 msgstr "Premjesti u smeće"
150156
151 #: fileItem.js:596
157 #: fileItem.js:600
152158 msgid "Empty Trash"
153159 msgstr "Isprazni smeće"
154160
155 #: fileItem.js:602
161 #: fileItem.js:606
156162 msgid "Properties"
157163 msgstr "Svojstva"
158164
159 #: fileItem.js:604
165 #: fileItem.js:608
160166 msgid "Show in Files"
161167 msgstr "PrikaĆŸi u Datotekama"
162168
77 "Project-Id-Version: desktop-icons master\n"
88 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-i"
99 "cons/issues\n"
10 "POT-Creation-Date: 2019-03-01 12:11+0000\n"
11 "PO-Revision-Date: 2019-03-07 23:45+0100\n"
10 "POT-Creation-Date: 2019-04-29 14:11+0000\n"
11 "PO-Revision-Date: 2019-06-01 18:50+0200\n"
1212 "Last-Translator: Balázs Úr <ur.balazs at fsf dot hu>\n"
1313 "Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
1414 "Language: hu\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19 "X-Generator: Lokalize 2.0\n"
19 "X-Generator: Lokalize 18.12.3\n"
2020
2121 #: createFolderDialog.js:48
22 #| msgid "New Folder"
2322 msgid "New folder name"
2423 msgstr "Új mappa neve"
2524
2726 msgid "Create"
2827 msgstr "LĂ©trehozĂĄs"
2928
30 #: createFolderDialog.js:74 desktopGrid.js:586
29 #: createFolderDialog.js:74 desktopGrid.js:592
3130 msgid "Cancel"
3231 msgstr "MĂ©gse"
3332
7574 msgid "Show the trash icon in the desktop"
7675 msgstr "A kuka ikon megjelenítése az asztalon"
7776
78 #: desktopGrid.js:320
77 #: desktopGrid.js:323
7978 msgid "New Folder"
8079 msgstr "Új mappa"
8180
82 #: desktopGrid.js:322
81 #: desktopGrid.js:325
8382 msgid "Paste"
8483 msgstr "Beillesztés"
8584
86 #: desktopGrid.js:323
85 #: desktopGrid.js:326
8786 msgid "Undo"
8887 msgstr "VisszavonĂĄs"
8988
90 #: desktopGrid.js:324
89 #: desktopGrid.js:327
9190 msgid "Redo"
9291 msgstr "Újra"
9392
94 #: desktopGrid.js:326
93 #: desktopGrid.js:329
9594 msgid "Show Desktop in Files"
9695 msgstr "Asztal megjelenítése a Fåjlokban"
9796
98 #: desktopGrid.js:327 fileItem.js:606
97 #: desktopGrid.js:330 fileItem.js:610
9998 msgid "Open in Terminal"
10099 msgstr "MegnyitĂĄs terminĂĄlban"
101100
102 #: desktopGrid.js:329
101 #: desktopGrid.js:332
103102 msgid "Change Background
"
104103 msgstr "Håttér megvåltoztatåsa
"
105104
106 #: desktopGrid.js:331
105 #: desktopGrid.js:334
107106 msgid "Display Settings"
108107 msgstr "Megjelenítés beållítåsai"
109108
110 #: desktopGrid.js:332
109 #: desktopGrid.js:335
111110 msgid "Settings"
112111 msgstr "BeĂĄllĂ­tĂĄsok"
113112
114 #: desktopGrid.js:576
113 #: desktopGrid.js:582
115114 msgid "Enter file name
"
116115 msgstr "Adjon meg egy fájlnevet
"
117116
118 #: desktopGrid.js:580
117 #: desktopGrid.js:586
119118 msgid "OK"
120119 msgstr "Rendben"
121120
122 #: fileItem.js:490
121 #: desktopIconsUtil.js:61
122 msgid "Command not found"
123 msgstr "A parancs nem talĂĄlhatĂł"
124
125 #: fileItem.js:494
123126 msgid "Don’t Allow Launching"
124127 msgstr "Ne engedélyezzen indítåst"
125128
126 #: fileItem.js:492
129 #: fileItem.js:496
127130 msgid "Allow Launching"
128131 msgstr "Indítås engedélyezése"
129132
130 #: fileItem.js:574
133 #: fileItem.js:578
131134 msgid "Open"
132135 msgstr "MegnyitĂĄs"
133136
134 #: fileItem.js:578
137 #: fileItem.js:582
135138 msgid "Open With Other Application"
136139 msgstr "Megnyitås egyéb alkalmazåssal"
137140
138 #: fileItem.js:582
141 #: fileItem.js:586
139142 msgid "Cut"
140143 msgstr "KivĂĄgĂĄs"
141144
142 #: fileItem.js:583
145 #: fileItem.js:587
143146 msgid "Copy"
144147 msgstr "MĂĄsolĂĄs"
145148
146 #: fileItem.js:585
149 #: fileItem.js:589
147150 msgid "Rename
"
148151 msgstr "ÁtnevezĂ©s
"
149152
150 #: fileItem.js:586
153 #: fileItem.js:590
151154 msgid "Move to Trash"
152155 msgstr "Áthelyezés a Kukåba"
153156
154 #: fileItem.js:596
157 #: fileItem.js:600
155158 msgid "Empty Trash"
156159 msgstr "Kuka ĂŒrĂ­tĂ©se"
157160
158 #: fileItem.js:602
161 #: fileItem.js:606
159162 msgid "Properties"
160163 msgstr "TulajdonsĂĄgok"
161164
162 #: fileItem.js:604
165 #: fileItem.js:608
163166 msgid "Show in Files"
164167 msgstr "Megjelenítés a Fåjlokban"
165168
186189 #: schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml:22
187190 msgid "Show the trash icon in the desktop."
188191 msgstr "A kuka ikon megjelenítése az asztalon."
189
77 "Project-Id-Version: desktop-icons master\n"
88 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/ShellExtensions/desktop-"
99 "icons/issues\n"
10 "POT-Creation-Date: 2019-03-01 12:11+0000\n"
11 "PO-Revision-Date: 2019-03-02 19:13+0700\n"
10 "POT-Creation-Date: 2019-04-29 14:11+0000\n"
11 "PO-Revision-Date: 2019-07-11 13:57+0700\n"
1212 "Last-Translator: Kukuh Syafaat <kukuhsyafaat@gnome.org>\n"
1313 "Language-Team: Indonesian <gnome-l10n-id@googlegroups.com>\n"
1414 "Language: id\n"
1515 "MIME-Version: 1.0\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
18 "X-Generator: Poedit 2.2.1\n"
18 "X-Generator: Poedit 2.2.3\n"
1919
2020 #: createFolderDialog.js:48
2121 msgid "New folder name"
2525 msgid "Create"
2626 msgstr "Buat"
2727
28 #: createFolderDialog.js:74 desktopGrid.js:586
28 #: createFolderDialog.js:74 desktopGrid.js:592
2929 msgid "Cancel"
3030 msgstr "Batal"
3131
7373 msgid "Show the trash icon in the desktop"
7474 msgstr "Tampilkan ikon tong sampah di destop"
7575
76 #: desktopGrid.js:320
76 #: desktopGrid.js:323
7777 msgid "New Folder"
7878 msgstr "Folder Baru"
7979
80 #: desktopGrid.js:322
80 #: desktopGrid.js:325
8181 msgid "Paste"
8282 msgstr "Tempel"
8383
84 #: desktopGrid.js:323
84 #: desktopGrid.js:326
8585 msgid "Undo"
8686 msgstr "Tak Jadi"
8787
88 #: desktopGrid.js:324
88 #: desktopGrid.js:327
8989 msgid "Redo"
9090 msgstr "Jadi Lagi"
9191
92 #: desktopGrid.js:326
92 #: desktopGrid.js:329
9393 msgid "Show Desktop in Files"
9494 msgstr "Tampilkan Destop pada Berkas"
9595
96 #: desktopGrid.js:327 fileItem.js:606
96 #: desktopGrid.js:330 fileItem.js:610
9797 msgid "Open in Terminal"
9898 msgstr "Buka dalam Terminal"
9999
100 #: desktopGrid.js:329
100 #: desktopGrid.js:332
101101 msgid "Change Background
"
102102 msgstr "Ubah Latar Belakang
"
103103
104 #: desktopGrid.js:331
104 #: desktopGrid.js:334
105105 msgid "Display Settings"
106106 msgstr "Pengaturan Tampilan"
107107
108 #: desktopGrid.js:332
108 #: desktopGrid.js:335
109109 msgid "Settings"
110110 msgstr "Pengaturan"
111111
112 #: desktopGrid.js:576
112 #: desktopGrid.js:582
113113 msgid "Enter file name
"
114114 msgstr "Masukkan nama berkas
"
115115
116 #: desktopGrid.js:580
116 #: desktopGrid.js:586
117117 msgid "OK"
118118 msgstr "OK"
119119
120 #: fileItem.js:490
120 #: desktopIconsUtil.js:61
121 msgid "Command not found"
122 msgstr "Perintah tidak ditemukan"
123
124 #: fileItem.js:494
121125 msgid "Don’t Allow Launching"
122126 msgstr "Jangan Izinkan Peluncuran"
123127
124 #: fileItem.js:492
128 #: fileItem.js:496
125129 msgid "Allow Launching"
126130 msgstr "Izinkan Peluncuran"
127131
128 #: fileItem.js:574
132 #: fileItem.js:578
129133 msgid "Open"
130134 msgstr "Buka"
131135
132 #: fileItem.js:578
136 #: fileItem.js:582
133137 msgid "Open With Other Application"
134138 msgstr "Buka Dengan Aplikasi Lain"
135139
136 #: fileItem.js:582
140 #: fileItem.js:586
137141 msgid "Cut"
138142 msgstr "Potong"
139143
140 #: fileItem.js:583
144 #: fileItem.js:587
141145 msgid "Copy"
142146 msgstr "Salin"
143147
144 #: fileItem.js:585
148 #: fileItem.js:589
145149 msgid "Rename
"
146150 msgstr "Ganti Nama
"
147151
148 #: fileItem.js:586
152 #: fileItem.js:590
149153 msgid "Move to Trash"
150154 msgstr "Pindahkan ke Tong Sampah"
151155
152 #: fileItem.js:596
156 #: fileItem.js:600
153157 msgid "Empty Trash"
154158 msgstr "Kosongkan Tong Sampah"
155159
156 #: fileItem.js:602
160 #: fileItem.js:606
157161 msgid "Properties"
158162 msgstr "Properti"
159163
160 #: fileItem.js:604
164 #: fileItem.js:608
161165 msgid "Show in Files"
162166 msgstr "Tampilkan pada Berkas"
163167