Merge lp:~junrrein/pantheon-files/fix-1022934 into lp:~elementary-apps/pantheon-files/trunk

Proposed by Julián Unrrein
Status: Merged
Merged at revision: 1219
Proposed branch: lp:~junrrein/pantheon-files/fix-1022934
Merge into: lp:~elementary-apps/pantheon-files/trunk
Diff against target: 4067 lines (+1452/-1464)
12 files modified
libcore/gof-directory-async.vala (+5/-3)
libcore/marlin-file-operations.h (+6/-0)
po/pantheon-files.pot (+1364/-1381)
src/View/Browser.vala (+1/-1)
src/View/Chrome/TopMenu.vala (+6/-1)
src/View/DirectoryNotFound.vala (+35/-61)
src/View/LocationBar.vala (+18/-5)
src/View/OverlayBar.vala (+1/-1)
src/View/ViewContainer.vala (+8/-6)
src/View/Window.vala (+3/-2)
src/exo-tree-view.c (+3/-3)
src/marlin.vapi (+2/-0)
To merge this branch: bzr merge lp:~junrrein/pantheon-files/fix-1022934
Reviewer Review Type Date Requested Status
Cody Garver (community) Approve
Review via email: mp+167861@code.launchpad.net

Description of the change

Use the existing DirectoryNotFound class to display a nice message when trying to access a non-existent directory, and offer options to create said directory, and to go back to the most inmediate existing parent.

This is a collaboration between Jeremy Wootten and me.

To post a comment you must log in.
Revision history for this message
Julián Unrrein (junrrein) wrote :

There is a bug left in this that I am aware of, and I need some help with it.

Basically, I never free the memory I allocate in marlin_file_operations_new_folder_with_name_recursive (http://bazaar.launchpad.net/~junrrein/pantheon-files/fix-1022934/view/head:/libcore/marlin-file-operations.c#L6363).

I should free that memory after that struct is no longer used, in new_folder_with_name_callback (http://bazaar.launchpad.net/~junrrein/pantheon-files/fix-1022934/view/head:/libcore/marlin-file-operations.c#L6339).

When the parent folder was created sucesfully ( "(if (new_folder != NULL)" in the code) then I can safely free that memory after calling marlin_file_operations_new_folder_with_name.

The problem is when the parent folder couldn't be created. I can safely free the memory of the struct, but user_data->done_callback data is just a pointer. If that points to another NewFolderWithNameArgs, I need to free that too. How can I check if done_callback_data is a NewFolderWithNameArgs?

1108. By Julián Unrrein

Partially fix a memory leak.

1109. By Jeremy Wootten

[DirectoryNotFound] Make the browser history don't record the directory again when it is created.

1110. By Jeremy Wootten

[DirectoryNotFound] Provide an option to go to the inmediate existing parent folder.

1111. By Julián Unrrein

[DirectoryNotFound] Don't display full paths. Modify the window title.

Revision history for this message
Julián Unrrein (junrrein) wrote :

Look into the comments of the bug for my conversation with Jeremey Wootter. In particular, I would like your opinion about these issues:

- Show the full path for directories?
- Use asynchronous operations?

Revision history for this message
Cody Garver (codygarver) wrote :

Design team says "Cancel" should not exist, there should only be "Create" choice.

review: Needs Fixing
Revision history for this message
Cody Garver (codygarver) wrote :

"Folder does not exist" should be "Folder does not exist."

"Files can't find the folder "blah"" should instead be "The folder "blah" can't be found."

review: Needs Fixing
1112. By Julián Unrrein

[DirectoryNotFound] Remove the option to go to an existing parent folder.

1113. By Julián Unrrein

Change some strings.

1114. By Julián Unrrein

Change a string.

Revision history for this message
Julián Unrrein (junrrein) wrote :

Do i need to run "make pot" since there are new strings?

Revision history for this message
Cody Garver (codygarver) wrote :

Yeah, make pot too

Sent from my iPhone

On Jun 8, 2013, at 8:04 PM, "Julián Unrrein" <email address hidden> wrote:

> Do i need to run "make pot" since there are new strings?
> --
> https://code.launchpad.net/~junrrein/pantheon-files/fix-1022934/+merge/167861
> You are reviewing the proposed merge of lp:~junrrein/pantheon-files/fix-1022934 into lp:pantheon-files.

1115. By Julián Unrrein

Update translation templates.

Revision history for this message
Julián Unrrein (junrrein) wrote :

About the memory leak issue:

There is no way to completely solve that in C, since there is no "typeof" of any kind... unless I turn NewFolderWithNameArgs into a G class, and that would be overkill.

Alternatives:

- Move that mess to DirectoryNotFound.vala . Programming that in Vala could be done with no problems.
- Scrape that altogether and use GFile.create_with_parents. Very simple, but I don't know if it fits our requirements since we will be changing from an asynchronous method to a synchronous one.

1116. By Jeremy Wootten

Use GLib.File.make_directory_with_parents instead of a custom method.

Revision history for this message
Julián Unrrein (junrrein) wrote :

I settled down for the second alternative since porting the custom method to Vala didn't automagically fix anything.

Please comment on the strings for the new error dialog, since I need to run "make pot" again.

Revision history for this message
Cody Garver (codygarver) wrote :

"Folder does not exist." should be "This Folder Does Not Exist"

That should be good enough for now.

1117. By Julián Unrrein

Merge changes from trunk.

1118. By Julián Unrrein

Change strings and update the translation template.

Revision history for this message
Julián Unrrein (junrrein) wrote :

Done!

Revision history for this message
Julián Unrrein (junrrein) wrote :

When commiting to trunk, remember to give credit to Jeremy Wootten too.

Revision history for this message
Cody Garver (codygarver) wrote :

Great work guys!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'libcore/gof-directory-async.vala'
2--- libcore/gof-directory-async.vala 2013-03-07 04:19:41 +0000
3+++ libcore/gof-directory-async.vala 2013-06-13 15:17:25 +0000
4@@ -486,9 +486,11 @@
5
6 if (directory_cache != null)
7 cached_dir = directory_cache.lookup (file);
8- if (cached_dir != null)
9- debug ("found cached dir %s", cached_dir.file.uri);
10-
11+ if (cached_dir != null) {
12+ debug ("found cached dir %s\n", cached_dir.file.uri);
13+ if (cached_dir.file.info == null)
14+ cached_dir.file.query_update ();
15+ }
16 return cached_dir;
17 }
18
19
20=== modified file 'libcore/marlin-file-operations.h'
21--- libcore/marlin-file-operations.h 2012-05-31 17:19:38 +0000
22+++ libcore/marlin-file-operations.h 2013-06-13 15:17:25 +0000
23@@ -62,6 +62,12 @@
24 gchar* folder_name,
25 MarlinCreateCallback done_callback,
26 gpointer done_callback_data);
27+void marlin_file_operations_new_folder_with_name_recursive (GtkWidget *parent_view,
28+ GdkPoint *target_point,
29+ GFile *parent_dir,
30+ gchar* folder_name,
31+ MarlinCreateCallback done_callback,
32+ gpointer done_callback_data);
33 void marlin_file_operations_new_file (GtkWidget *parent_view,
34 GdkPoint *target_point,
35 const char *parent_dir,
36
37=== modified file 'po/pantheon-files.pot'
38--- po/pantheon-files.pot 2013-05-27 23:24:59 +0000
39+++ po/pantheon-files.pot 2013-06-13 15:17:25 +0000
40@@ -8,7 +8,7 @@
41 msgstr ""
42 "Project-Id-Version: PACKAGE VERSION\n"
43 "Report-Msgid-Bugs-To: \n"
44-"POT-Creation-Date: 2013-05-27 23:24+0000\n"
45+"POT-Creation-Date: 2013-06-13 12:12-0300\n"
46 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
47 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
48 "Language-Team: LANGUAGE <LL@li.org>\n"
49@@ -18,1437 +18,1755 @@
50 "Content-Transfer-Encoding: 8bit\n"
51 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
52
53-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:73
54-msgid "Properties"
55-msgstr ""
56-
57-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:126
58-msgid "General"
59-msgstr ""
60-
61-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:134
62-msgid "More"
63-msgstr ""
64-
65-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:146
66-msgid "Preview"
67-msgstr ""
68-
69-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:333
70-msgid "Created"
71-msgstr ""
72-
73-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:335
74-#: /home/cody/files/po/../src/fm-list-view.c:59
75-msgid "Modified"
76-msgstr ""
77-
78-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:338
79-msgid "Last Access"
80-msgstr ""
81-
82-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:344
83-msgid "Deleted"
84-msgstr ""
85-
86-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:349
87-msgid "MimeType"
88-msgstr ""
89-
90-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:357
91-msgid "MimeTypes"
92-msgstr ""
93-
94-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:361
95-msgid "Location"
96-msgstr ""
97-
98-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:363
99-msgid "Target"
100-msgstr ""
101-
102-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:369
103-msgid "Origin Location"
104-msgstr ""
105-
106-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:379
107-msgid "Info:"
108-msgstr ""
109-
110-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:414
111-msgid "Other application..."
112-msgstr ""
113-
114-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:438
115-msgid "Open with:"
116-msgstr ""
117-
118-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:459
119-msgid "Usage:"
120-msgstr ""
121-
122-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:464
123-msgid "Device usage:"
124-msgstr ""
125-
126-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:471
127-#, c-format
128-msgid "%s free of %s (%d%% used)"
129-msgstr ""
130-
131-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:610
132-msgid "Read"
133-msgstr ""
134-
135-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:615
136-msgid "Write"
137-msgstr ""
138-
139-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:620
140-msgid "Execute"
141-msgstr ""
142-
143-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:838
144-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:851
145-msgid "Owner"
146-msgstr ""
147-
148-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:843
149-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:855
150-msgid "Group"
151-msgstr ""
152-
153-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:859
154-msgid "Everyone"
155-msgstr ""
156-
157-#: /home/cody/files/po/../src/View/PropertiesWindow.vala:1115
158-msgid "Select an aplication to open "
159-msgstr ""
160-
161-#: /home/cody/files/po/../src/View/OverlayBar.vala:247
162-#, c-format
163-msgid "%u items selected (%s)"
164-msgstr ""
165-
166-#: /home/cody/files/po/../src/View/ViewContainer.vala:144
167-#: /home/cody/files/po/../src/marlin-places-sidebar.c:300
168-msgid "Home"
169-msgstr ""
170-
171-#: /home/cody/files/po/../src/View/ViewContainer.vala:146
172-#: /home/cody/files/po/../src/marlin-places-sidebar.c:370
173-msgid "File System"
174-msgstr ""
175-
176-#: /home/cody/files/po/../src/View/ViewContainer.vala:151
177-msgid "(as Administrator)"
178-msgstr ""
179-
180-#: /home/cody/files/po/../src/View/DirectoryNotFound.vala:72
181-#, c-format
182-msgid "Folder does not exist"
183-msgstr ""
184-
185-#: /home/cody/files/po/../src/View/DirectoryNotFound.vala:75
186-#, c-format
187-msgid "Files can't find the folder %s"
188-msgstr ""
189-
190-#: /home/cody/files/po/../src/View/DirectoryNotFound.vala:80
191-msgid "Create"
192-msgstr ""
193-
194-#: /home/cody/files/po/../src/View/DirectoryNotFound.vala:80
195-#, c-format
196-msgid "Create the folder %s"
197-msgstr ""
198-
199-#: /home/cody/files/po/../src/View/LocationBar.vala:108
200-msgid "AFP"
201-msgstr ""
202-
203-#: /home/cody/files/po/../src/View/LocationBar.vala:109
204-msgid "DAV"
205-msgstr ""
206-
207-#: /home/cody/files/po/../src/View/LocationBar.vala:110
208-msgid "DAVS"
209-msgstr ""
210-
211-#: /home/cody/files/po/../src/View/LocationBar.vala:111
212-msgid "FTP"
213-msgstr ""
214-
215-#: /home/cody/files/po/../src/View/LocationBar.vala:112
216-#: /home/cody/files/po/../src/marlin-places-sidebar.c:564
217-msgid "Network"
218-msgstr ""
219-
220-#: /home/cody/files/po/../src/View/LocationBar.vala:113
221-msgid "SFTP"
222-msgstr ""
223-
224-#: /home/cody/files/po/../src/View/LocationBar.vala:114
225-msgid "SMB"
226-msgstr ""
227-
228-#: /home/cody/files/po/../src/View/LocationBar.vala:115
229-#: /home/cody/files/po/../src/marlin-places-sidebar.c:346
230-msgid "Trash"
231-msgstr ""
232-
233-#: /home/cody/files/po/../src/View/LocationBar.vala:289
234-msgid "Open in New Tab"
235-msgstr ""
236-
237-#: /home/cody/files/po/../src/View/Window.vala:126
238+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:126
239 msgid "Files isn't your default file manager."
240 msgstr ""
241
242-#: /home/cody/files/po/../src/View/Window.vala:132
243-#: /home/cody/files/po/../src/fm-directory-view.c:3426
244+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:132
245+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3426
246 msgid "Set as default"
247 msgstr ""
248
249-#: /home/cody/files/po/../src/View/Window.vala:137
250+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:137
251 msgid "Ignore"
252 msgstr ""
253
254-#: /home/cody/files/po/../src/View/Window.vala:400
255+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:401
256 msgid "Undo"
257 msgstr ""
258
259-#: /home/cody/files/po/../src/View/Window.vala:401
260-#: /home/cody/files/po/../src/View/Window.vala:646
261+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:402
262+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:647
263 msgid "Undo the last action"
264 msgstr ""
265
266-#: /home/cody/files/po/../src/View/Window.vala:410
267+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:411
268 msgid "Redo"
269 msgstr ""
270
271-#: /home/cody/files/po/../src/View/Window.vala:411
272-#: /home/cody/files/po/../src/View/Window.vala:649
273+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:412
274+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:650
275 msgid "Redo the last action"
276 msgstr ""
277
278-#: /home/cody/files/po/../src/View/Window.vala:624
279+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:625
280 msgid "_File"
281 msgstr ""
282
283-#: /home/cody/files/po/../src/View/Window.vala:625
284+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:626
285 msgid "_Edit"
286 msgstr ""
287
288-#: /home/cody/files/po/../src/View/Window.vala:626
289+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:627
290 msgid "_View"
291 msgstr ""
292
293-#: /home/cody/files/po/../src/View/Window.vala:627
294+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:628
295 msgid "_Go"
296 msgstr ""
297
298-#: /home/cody/files/po/../src/View/Window.vala:628
299+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:629
300 msgid "_Help"
301 msgstr ""
302
303-#: /home/cody/files/po/../src/View/Window.vala:630
304-#: /home/cody/files/po/../src/DesktopLauncher.vala:9
305+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:631
306+#: /home/julian/elementary-projects/fix-1022934/po/../src/DesktopLauncher.vala:9
307 msgid "New _Window"
308 msgstr ""
309
310-#: /home/cody/files/po/../src/View/Window.vala:631
311+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:632
312 msgid "Open another Files window for the displayed location"
313 msgstr ""
314
315-#: /home/cody/files/po/../src/View/Window.vala:634
316-#: /home/cody/files/po/../src/DesktopLauncher.vala:8
317+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:635
318+#: /home/julian/elementary-projects/fix-1022934/po/../src/DesktopLauncher.vala:8
319 msgid "New _Tab"
320 msgstr ""
321
322-#: /home/cody/files/po/../src/View/Window.vala:635
323+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:636
324 msgid "Open another tab for the displayed location"
325 msgstr ""
326
327-#: /home/cody/files/po/../src/View/Window.vala:639
328+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:640
329 msgid "_Close"
330 msgstr ""
331
332-#: /home/cody/files/po/../src/View/Window.vala:640
333+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:641
334 msgid "Close this folder"
335 msgstr ""
336
337-#: /home/cody/files/po/../src/View/Window.vala:645
338+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:646
339 msgid "_Undo"
340 msgstr ""
341
342-#: /home/cody/files/po/../src/View/Window.vala:648
343+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:649
344 msgid "_Redo"
345 msgstr ""
346
347-#: /home/cody/files/po/../src/View/Window.vala:651
348+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:652
349 msgid "Open _Parent"
350 msgstr ""
351
352-#: /home/cody/files/po/../src/View/Window.vala:652
353+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:653
354 msgid "Open the parent folder"
355 msgstr ""
356
357-#: /home/cody/files/po/../src/View/Window.vala:654
358+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:655
359 msgid "_Back"
360 msgstr ""
361
362-#: /home/cody/files/po/../src/View/Window.vala:655
363+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:656
364 msgid "Go to the previous visited location"
365 msgstr ""
366
367-#: /home/cody/files/po/../src/View/Window.vala:658
368+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:659
369 msgid "_Forward"
370 msgstr ""
371
372-#: /home/cody/files/po/../src/View/Window.vala:659
373+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:660
374 msgid "Go to the next visited location"
375 msgstr ""
376
377-#: /home/cody/files/po/../src/View/Window.vala:661
378+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:662
379 msgid "_Reload"
380 msgstr ""
381
382-#: /home/cody/files/po/../src/View/Window.vala:662
383+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:663
384 msgid "Reload the current location"
385 msgstr ""
386
387-#: /home/cody/files/po/../src/View/Window.vala:665
388+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:666
389 msgid "_Home Folder"
390 msgstr ""
391
392-#: /home/cody/files/po/../src/View/Window.vala:666
393-#: /home/cody/files/po/../src/marlin-places-sidebar.c:305
394+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:667
395+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:305
396 msgid "Open your personal folder"
397 msgstr ""
398
399-#: /home/cody/files/po/../src/View/Window.vala:669
400+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:670
401 msgid "_Trash"
402 msgstr ""
403
404-#: /home/cody/files/po/../src/View/Window.vala:670
405+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:671
406 msgid "Open your personal trash folder"
407 msgstr ""
408
409-#: /home/cody/files/po/../src/View/Window.vala:673
410+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:674
411 msgid "_Network"
412 msgstr ""
413
414-#: /home/cody/files/po/../src/View/Window.vala:674
415+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:675
416 msgid "Browse bookmarked and local network locations"
417 msgstr ""
418
419-#: /home/cody/files/po/../src/View/Window.vala:677
420+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:678
421 msgid "Zoom _In"
422 msgstr ""
423
424-#: /home/cody/files/po/../src/View/Window.vala:678
425+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:679
426 msgid "Increase the view size"
427 msgstr ""
428
429-#: /home/cody/files/po/../src/View/Window.vala:689
430+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:690
431 msgid "Zoom _Out"
432 msgstr ""
433
434-#: /home/cody/files/po/../src/View/Window.vala:690
435+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:691
436 msgid "Decrease the view size"
437 msgstr ""
438
439-#: /home/cody/files/po/../src/View/Window.vala:697
440+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:698
441 msgid "Normal Si_ze"
442 msgstr ""
443
444-#: /home/cody/files/po/../src/View/Window.vala:698
445+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:699
446 msgid "Use the normal view size"
447 msgstr ""
448
449-#: /home/cody/files/po/../src/View/Window.vala:701
450+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:702
451 msgid "Next Tab"
452 msgstr ""
453
454-#: /home/cody/files/po/../src/View/Window.vala:705
455+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:706
456 msgid "Previous Tab"
457 msgstr ""
458
459-#: /home/cody/files/po/../src/View/Window.vala:709
460+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:710
461 msgid "Connect to _Server..."
462 msgstr ""
463
464-#: /home/cody/files/po/../src/View/Window.vala:710
465+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:711
466 msgid "Connect to a remote computer or shared disk"
467 msgstr ""
468
469-#: /home/cody/files/po/../src/View/Window.vala:713
470+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:714
471 msgid "_About"
472 msgstr ""
473
474-#: /home/cody/files/po/../src/View/Window.vala:714
475+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:715
476 msgid "Display credits"
477 msgstr ""
478
479-#: /home/cody/files/po/../src/View/Window.vala:717
480+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:718
481 msgid "Report a Problem..."
482 msgstr ""
483
484-#: /home/cody/files/po/../src/View/Window.vala:718
485+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:719
486 msgid "File a bug on Launchpad"
487 msgstr ""
488
489-#: /home/cody/files/po/../src/View/Window.vala:721
490+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:722
491 msgid "Get Help Online..."
492 msgstr ""
493
494-#: /home/cody/files/po/../src/View/Window.vala:725
495+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:726
496 msgid "Translate This Application..."
497 msgstr ""
498
499-#: /home/cody/files/po/../src/View/Window.vala:734
500+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:735
501 msgid "Show _Hidden Files"
502 msgstr ""
503
504-#: /home/cody/files/po/../src/View/Window.vala:735
505+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:736
506 msgid "Toggle the display of hidden files in the current window"
507 msgstr ""
508
509-#: /home/cody/files/po/../src/View/Window.vala:739
510+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:740
511 msgid "_Places"
512 msgstr ""
513
514-#: /home/cody/files/po/../src/View/Window.vala:740
515+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:741
516 msgid "Change the visibility of this window's side pane"
517 msgstr ""
518
519-#: /home/cody/files/po/../src/View/Window.vala:748
520+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:749
521 msgid "Icon"
522 msgstr ""
523
524-#: /home/cody/files/po/../src/View/Window.vala:751
525+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:752
526 msgid "List"
527 msgstr ""
528
529-#: /home/cody/files/po/../src/View/Window.vala:754
530+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Window.vala:755
531 msgid "Columns"
532 msgstr ""
533
534-#: /home/cody/files/po/../src/fm-abstract-icon-view.c:139
535-#: /home/cody/files/po/../src/fm-columns-view.c:186
536-#: /home/cody/files/po/../src/fm-list-view.c:199
537-#, c-format
538-msgid "Failed to rename %s to %s"
539-msgstr ""
540-
541-#: /home/cody/files/po/../src/fm-abstract-icon-view.c:283
542-msgid "Arran_ge Items"
543-msgstr ""
544-
545-#: /home/cody/files/po/../src/fm-abstract-icon-view.c:288
546-msgid "Re_versed Order"
547-msgstr ""
548-
549-#: /home/cody/files/po/../src/fm-abstract-icon-view.c:289
550-msgid "Display icons in the opposite order"
551-msgstr ""
552-
553-#: /home/cody/files/po/../src/fm-abstract-icon-view.c:296
554-msgid "By _Name"
555-msgstr ""
556-
557-#: /home/cody/files/po/../src/fm-abstract-icon-view.c:297
558-msgid "Keep icons sorted by name in rows"
559-msgstr ""
560-
561-#: /home/cody/files/po/../src/fm-abstract-icon-view.c:300
562-msgid "By _Size"
563-msgstr ""
564-
565-#: /home/cody/files/po/../src/fm-abstract-icon-view.c:301
566-msgid "Keep icons sorted by size in rows"
567-msgstr ""
568-
569-#: /home/cody/files/po/../src/fm-abstract-icon-view.c:304
570-msgid "By _Type"
571-msgstr ""
572-
573-#: /home/cody/files/po/../src/fm-abstract-icon-view.c:305
574-msgid "Keep icons sorted by type in rows"
575-msgstr ""
576-
577-#: /home/cody/files/po/../src/fm-abstract-icon-view.c:308
578-msgid "By Modification _Date"
579-msgstr ""
580-
581-#: /home/cody/files/po/../src/fm-abstract-icon-view.c:309
582-msgid "Keep icons sorted by modification date in rows"
583-msgstr ""
584-
585-#: /home/cody/files/po/../src/fm-abstract-icon-view.c:573
586-#: /home/cody/files/po/../src/fm-columns-view.c:82
587-#: /home/cody/files/po/../src/fm-list-view.c:616
588-msgid "This folder is empty."
589-msgstr ""
590-
591-#: /home/cody/files/po/../src/marlin-toolbar-editor.c:445
592-msgid "Customize Toolbar"
593-msgstr ""
594-
595-#: /home/cody/files/po/../src/marlin-toolbar-editor.c:464
596-msgid ""
597-"Select items to be displayed on the toolbar. Items can be reordered by drag "
598-"and drop."
599-msgstr ""
600-
601-#: /home/cody/files/po/../src/marlin-toolbar-editor.c:478
602-msgid "Available Items"
603-msgstr ""
604-
605-#: /home/cody/files/po/../src/marlin-toolbar-editor.c:497
606-msgid "Displayed Items"
607-msgstr ""
608-
609-#: /home/cody/files/po/../src/eel-editable-label.c:3190
610-#: /home/cody/files/po/../src/fm-directory-view.c:3540
611-msgid "Select All"
612-msgstr ""
613-
614-#: /home/cody/files/po/../src/eel-editable-label.c:3201
615-msgid "Input Methods"
616-msgstr ""
617-
618-#: /home/cody/files/po/../src/marlin-places-sidebar.c:286
619-msgid "Personal"
620-msgstr ""
621-
622-#: /home/cody/files/po/../src/marlin-places-sidebar.c:291
623-msgid "Your common places and bookmarks"
624-msgstr ""
625-
626-#: /home/cody/files/po/../src/marlin-places-sidebar.c:348
627-msgid "Open the trash"
628-msgstr ""
629-
630-#: /home/cody/files/po/../src/marlin-places-sidebar.c:358
631-msgid "Devices"
632-msgstr ""
633-
634-#: /home/cody/files/po/../src/marlin-places-sidebar.c:363
635-msgid "Your local partitions and devices"
636-msgstr ""
637-
638-#: /home/cody/files/po/../src/marlin-places-sidebar.c:372
639-msgid "Open the contents of the File System"
640-msgstr ""
641-
642-#: /home/cody/files/po/../src/marlin-places-sidebar.c:431
643-#: /home/cody/files/po/../src/marlin-places-sidebar.c:456
644-#, c-format
645-msgid "Mount and open %s"
646-msgstr ""
647-
648-#: /home/cody/files/po/../src/marlin-places-sidebar.c:569
649-msgid "Your network places"
650-msgstr ""
651-
652-#: /home/cody/files/po/../src/marlin-places-sidebar.c:600
653-msgid "Entire network"
654-msgstr ""
655-
656-#: /home/cody/files/po/../src/marlin-places-sidebar.c:602
657-msgid "Browse the contents of the network"
658-msgstr ""
659-
660-#: /home/cody/files/po/../src/marlin-places-sidebar.c:1590
661-msgid "_Start"
662-msgstr ""
663-
664-#: /home/cody/files/po/../src/marlin-places-sidebar.c:1591
665-msgid "_Stop"
666-msgstr ""
667-
668-#: /home/cody/files/po/../src/marlin-places-sidebar.c:1596
669-msgid "_Power On"
670-msgstr ""
671-
672-#: /home/cody/files/po/../src/marlin-places-sidebar.c:1597
673-msgid "_Safely Remove Drive"
674-msgstr ""
675-
676-#: /home/cody/files/po/../src/marlin-places-sidebar.c:1600
677-msgid "_Connect Drive"
678-msgstr ""
679-
680-#: /home/cody/files/po/../src/marlin-places-sidebar.c:1601
681-msgid "_Disconnect Drive"
682-msgstr ""
683-
684-#: /home/cody/files/po/../src/marlin-places-sidebar.c:1604
685-msgid "_Start Multi-disk Device"
686-msgstr ""
687-
688-#: /home/cody/files/po/../src/marlin-places-sidebar.c:1605
689-msgid "_Stop Multi-disk Device"
690-msgstr ""
691-
692-#: /home/cody/files/po/../src/marlin-places-sidebar.c:1609
693-msgid "_Unlock Drive"
694-msgstr ""
695-
696-#: /home/cody/files/po/../src/marlin-places-sidebar.c:1610
697-msgid "_Lock Drive"
698-msgstr ""
699-
700-#: /home/cody/files/po/../src/marlin-places-sidebar.c:1684
701-#: /home/cody/files/po/../src/marlin-places-sidebar.c:2231
702-#, c-format
703-msgid "Unable to start %s"
704-msgstr ""
705-
706-#: /home/cody/files/po/../src/marlin-places-sidebar.c:1974
707-#: /home/cody/files/po/../src/marlin-places-sidebar.c:2003
708-#: /home/cody/files/po/../src/marlin-places-sidebar.c:2032
709-#, c-format
710-msgid "Unable to eject %s"
711-msgstr ""
712-
713-#: /home/cody/files/po/../src/marlin-places-sidebar.c:2177
714-#, c-format
715-msgid "Unable to poll %s for media changes"
716-msgstr ""
717-
718-#: /home/cody/files/po/../src/marlin-places-sidebar.c:2287
719-#, c-format
720-msgid "Unable to stop %s"
721-msgstr ""
722-
723-#: /home/cody/files/po/../src/marlin-places-sidebar.c:2385
724-#: /home/cody/files/po/../src/fm-directory-view.c:1978
725-#: /home/cody/files/po/../src/fm-directory-view.c:3506
726-msgid "_Open"
727-msgstr ""
728-
729-#: /home/cody/files/po/../src/marlin-places-sidebar.c:2393
730-#: /home/cody/files/po/../src/fm-directory-view.c:1998
731-#: /home/cody/files/po/../src/fm-directory-view.c:3518
732-msgid "Open in New _Tab"
733-msgstr ""
734-
735-#: /home/cody/files/po/../src/marlin-places-sidebar.c:2400
736-#: /home/cody/files/po/../src/fm-directory-view.c:2007
737-msgid "Open in New _Window"
738-msgstr ""
739-
740-#: /home/cody/files/po/../src/marlin-places-sidebar.c:2409
741-msgid "Remove"
742-msgstr ""
743-
744-#: /home/cody/files/po/../src/marlin-places-sidebar.c:2418
745-msgid "Rename..."
746-msgstr ""
747-
748-#: /home/cody/files/po/../src/marlin-places-sidebar.c:2431
749-msgid "_Mount"
750-msgstr ""
751-
752-#: /home/cody/files/po/../src/marlin-places-sidebar.c:2438
753-msgid "_Unmount"
754-msgstr ""
755-
756-#: /home/cody/files/po/../src/marlin-places-sidebar.c:2445
757-msgid "_Eject"
758-msgstr ""
759-
760-#: /home/cody/files/po/../src/marlin-places-sidebar.c:2453
761-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1422
762-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2312
763-msgid "Empty _Trash"
764-msgstr ""
765-
766-#: /home/cody/files/po/../src/marlin-places-sidebar.c:2463
767-msgid "Connect to Server…"
768-msgstr ""
769-
770-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:125
771-msgid "SSH"
772-msgstr ""
773-
774-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:128
775-msgid "Public FTP"
776-msgstr ""
777-
778-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:130
779-msgid "FTP (with login)"
780-msgstr ""
781-
782-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:133
783-msgid "AFP (Apple Filing Protocol)"
784-msgstr ""
785-
786-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:135
787-msgid "Windows share"
788-msgstr ""
789-
790-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:137
791-msgid "WebDAV (HTTP)"
792-msgstr ""
793-
794-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:139
795-msgid "Secure WebDAV (HTTPS)"
796-msgstr ""
797-
798-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:186
799-msgid "Connecting..."
800-msgstr ""
801-
802-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:210
803-msgid ""
804-"Can't load the supported server method list.\n"
805-"Please check your gvfs installation."
806-msgstr ""
807-
808-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:288
809-#, c-format
810-msgid "The folder \"%s\" cannot be opened on \"%s\"."
811-msgstr ""
812-
813-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:298
814-#, c-format
815-msgid "The server at \"%s\" cannot be found."
816-msgstr ""
817-
818-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:333
819-msgid "Try Again"
820-msgstr ""
821-
822-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:398
823-msgid "Please verify your user details."
824-msgstr ""
825-
826-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:428
827-msgid "Continue"
828-msgstr ""
829-
830-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:766
831-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:1156
832-msgid "C_onnect"
833-msgstr ""
834-
835-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:891
836-msgid "Connect to Server"
837-msgstr ""
838-
839-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:909
840-msgid "Server Details"
841-msgstr ""
842-
843-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:933
844-msgid "_Server:"
845-msgstr ""
846-
847-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:953
848-msgid "_Port:"
849-msgstr ""
850-
851-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:971
852-msgid "_Type:"
853-msgstr ""
854-
855-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:1040
856-msgid "Sh_are:"
857-msgstr ""
858-
859-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:1055
860-msgid "_Folder:"
861-msgstr ""
862-
863-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:1073
864-msgid "User Details"
865-msgstr ""
866-
867-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:1096
868-msgid "_Domain name:"
869-msgstr ""
870-
871-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:1111
872-msgid "_User name:"
873-msgstr ""
874-
875-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:1126
876-msgid "Pass_word:"
877-msgstr ""
878-
879-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:1142
880-msgid "_Remember this password"
881-msgstr ""
882-
883-#: /home/cody/files/po/../src/marlin-connect-server-dialog.c:1245
884-msgid "Operation cancelled"
885-msgstr ""
886-
887-#: /home/cody/files/po/../src/exo-tree-view.c:167
888-msgid "Single Click"
889-msgstr ""
890-
891-#: /home/cody/files/po/../src/exo-tree-view.c:168
892-msgid "Whether the items in the view can be activated with single clicks"
893-msgstr ""
894-
895-#: /home/cody/files/po/../src/exo-tree-view.c:184
896-msgid "Single Click Timeout"
897-msgstr ""
898-
899-#: /home/cody/files/po/../src/exo-tree-view.c:185
900-msgid ""
901-"The amount of time after which the item under the mouse cursor will be "
902-"selected automatically in single click mode"
903-msgstr ""
904-
905-#: /home/cody/files/po/../src/exo-icon-view.c:887
906-msgid "Layout mode"
907-msgstr ""
908-
909-#: /home/cody/files/po/../src/exo-icon-view.c:888
910-msgid "The layout mode"
911-msgstr ""
912-
913-#: /home/cody/files/po/../src/marlin-application.c:423
914-msgid "Show the version of the program."
915-msgstr ""
916-
917-#: /home/cody/files/po/../src/marlin-application.c:427
918-msgid "Open uri(s) in new tab"
919-msgstr ""
920-
921-#: /home/cody/files/po/../src/marlin-application.c:429
922-msgid "Quit Files."
923-msgstr ""
924-
925-#: /home/cody/files/po/../src/marlin-application.c:431
926-msgid "Enable debug logging"
927-msgstr ""
928-
929-#: /home/cody/files/po/../src/marlin-application.c:432
930-msgid "[URI...]"
931-msgstr ""
932-
933-#: /home/cody/files/po/../src/marlin-application.c:441
934-msgid ""
935-"\n"
936-"\n"
937-"Browse the file system with the file manager"
938-msgstr ""
939-
940-#: /home/cody/files/po/../src/marlin-application.c:461
941-msgid "--quit cannot be used with URIs."
942-msgstr ""
943-
944-#: /home/cody/files/po/../src/marlin-clipboard-manager.c:369
945-msgid "There is nothing on the clipboard to paste"
946-msgstr ""
947-
948-#: /home/cody/files/po/../src/fm-directory-view.c:1177
949+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/OverlayBar.vala:249
950+#, c-format
951+msgid "%u items selected (%s)"
952+msgstr ""
953+
954+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/DirectoryNotFound.vala:39
955+msgid "This folder does not exist."
956+msgstr ""
957+
958+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/DirectoryNotFound.vala:39
959+#, c-format
960+msgid "The folder \"%s\" can't be found."
961+msgstr ""
962+
963+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/DirectoryNotFound.vala:41
964+msgid "Create"
965+msgstr ""
966+
967+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/DirectoryNotFound.vala:41
968+#, c-format
969+msgid "Create the folder \"%s\""
970+msgstr ""
971+
972+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/DirectoryNotFound.vala:55
973+#, c-format
974+msgid ""
975+"Failed to create the folder\n"
976+"\n"
977+"%s"
978+msgstr ""
979+
980+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/ViewContainer.vala:144
981+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:300
982+msgid "Home"
983+msgstr ""
984+
985+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/ViewContainer.vala:146
986+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:370
987+msgid "File System"
988+msgstr ""
989+
990+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/ViewContainer.vala:150
991+msgid "This folder does not exist"
992+msgstr ""
993+
994+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/ViewContainer.vala:153
995+msgid "(as Administrator)"
996+msgstr ""
997+
998+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:73
999+msgid "Properties"
1000+msgstr ""
1001+
1002+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:126
1003+msgid "General"
1004+msgstr ""
1005+
1006+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:134
1007+msgid "More"
1008+msgstr ""
1009+
1010+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:146
1011+msgid "Preview"
1012+msgstr ""
1013+
1014+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:333
1015+msgid "Created"
1016+msgstr ""
1017+
1018+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:335
1019+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-list-view.c:59
1020+msgid "Modified"
1021+msgstr ""
1022+
1023+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:338
1024+msgid "Last Access"
1025+msgstr ""
1026+
1027+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:344
1028+msgid "Deleted"
1029+msgstr ""
1030+
1031+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:349
1032+msgid "MimeType"
1033+msgstr ""
1034+
1035+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:357
1036+msgid "MimeTypes"
1037+msgstr ""
1038+
1039+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:361
1040+msgid "Location"
1041+msgstr ""
1042+
1043+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:363
1044+msgid "Target"
1045+msgstr ""
1046+
1047+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:369
1048+msgid "Origin Location"
1049+msgstr ""
1050+
1051+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:379
1052+msgid "Info:"
1053+msgstr ""
1054+
1055+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:414
1056+msgid "Other application..."
1057+msgstr ""
1058+
1059+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:438
1060+msgid "Open with:"
1061+msgstr ""
1062+
1063+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:459
1064+msgid "Usage:"
1065+msgstr ""
1066+
1067+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:464
1068+msgid "Device usage:"
1069+msgstr ""
1070+
1071+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:471
1072+#, c-format
1073+msgid "%s free of %s (%d%% used)"
1074+msgstr ""
1075+
1076+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:610
1077+msgid "Read"
1078+msgstr ""
1079+
1080+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:615
1081+msgid "Write"
1082+msgstr ""
1083+
1084+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:620
1085+msgid "Execute"
1086+msgstr ""
1087+
1088+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:838
1089+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:851
1090+msgid "Owner"
1091+msgstr ""
1092+
1093+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:843
1094+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:855
1095+msgid "Group"
1096+msgstr ""
1097+
1098+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:859
1099+msgid "Everyone"
1100+msgstr ""
1101+
1102+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/PropertiesWindow.vala:1115
1103+msgid "Select an aplication to open "
1104+msgstr ""
1105+
1106+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/LocationBar.vala:116
1107+msgid "AFP"
1108+msgstr ""
1109+
1110+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/LocationBar.vala:117
1111+msgid "DAV"
1112+msgstr ""
1113+
1114+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/LocationBar.vala:118
1115+msgid "DAVS"
1116+msgstr ""
1117+
1118+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/LocationBar.vala:119
1119+msgid "FTP"
1120+msgstr ""
1121+
1122+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/LocationBar.vala:120
1123+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:564
1124+msgid "Network"
1125+msgstr ""
1126+
1127+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/LocationBar.vala:121
1128+msgid "SFTP"
1129+msgstr ""
1130+
1131+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/LocationBar.vala:122
1132+msgid "SMB"
1133+msgstr ""
1134+
1135+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/LocationBar.vala:123
1136+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:346
1137+msgid "Trash"
1138+msgstr ""
1139+
1140+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/LocationBar.vala:302
1141+msgid "Open in New Tab"
1142+msgstr ""
1143+
1144+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:1177
1145 msgid "Invalid filename provided by XDS drag site"
1146 msgstr ""
1147
1148-#: /home/cody/files/po/../src/fm-directory-view.c:1335
1149+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:1335
1150 #, c-format
1151 msgid "Failed to create a link for the URL \"%s\""
1152 msgstr ""
1153
1154-#: /home/cody/files/po/../src/fm-directory-view.c:1820
1155+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:1820
1156 #, c-format
1157 msgid "Use \"%s\" to open the selected item"
1158 msgid_plural "Use \"%s\" to open the selected items"
1159 msgstr[0] ""
1160 msgstr[1] ""
1161
1162-#: /home/cody/files/po/../src/fm-directory-view.c:1972
1163+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:1972
1164 #, c-format
1165 msgid "_Open With %s"
1166 msgstr ""
1167
1168-#: /home/cody/files/po/../src/fm-directory-view.c:1994
1169+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:1978
1170+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3506
1171+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:2385
1172+msgid "_Open"
1173+msgstr ""
1174+
1175+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:1994
1176 #, c-format
1177 msgid "Open in %'d New _Tabs"
1178 msgstr ""
1179
1180-#: /home/cody/files/po/../src/fm-directory-view.c:2003
1181+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:1998
1182+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3518
1183+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:2393
1184+msgid "Open in New _Tab"
1185+msgstr ""
1186+
1187+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:2003
1188 #, c-format
1189 msgid "Open in %'d New _Windows"
1190 msgstr ""
1191
1192-#: /home/cody/files/po/../src/fm-directory-view.c:3478
1193+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:2007
1194+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:2400
1195+msgid "Open in New _Window"
1196+msgstr ""
1197+
1198+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3478
1199 msgid "Prepare the selected files to be moved with a Paste command"
1200 msgstr ""
1201
1202-#: /home/cody/files/po/../src/fm-directory-view.c:3482
1203+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3482
1204 msgid "Prepare the selected files to be copied with a Paste command"
1205 msgstr ""
1206
1207-#: /home/cody/files/po/../src/fm-directory-view.c:3486
1208+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3486
1209 msgid "Move or copy files previously selected by a Cut or Copy command"
1210 msgstr ""
1211
1212-#: /home/cody/files/po/../src/fm-directory-view.c:3489
1213+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3489
1214 msgid "Paste Into Folder"
1215 msgstr ""
1216
1217-#: /home/cody/files/po/../src/fm-directory-view.c:3490
1218+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3490
1219 msgid ""
1220 "Move or copy files previously selected by a Cut or Copy command into "
1221 "selected folder"
1222 msgstr ""
1223
1224-#: /home/cody/files/po/../src/fm-directory-view.c:3493
1225+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3493
1226 msgid "_Rename..."
1227 msgstr ""
1228
1229-#: /home/cody/files/po/../src/fm-directory-view.c:3494
1230+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3494
1231 msgid "Rename selected item"
1232 msgstr ""
1233
1234-#: /home/cody/files/po/../src/fm-directory-view.c:3497
1235+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3497
1236 msgid "Create New _Folder"
1237 msgstr ""
1238
1239-#: /home/cody/files/po/../src/fm-directory-view.c:3498
1240+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3498
1241 msgid "Create a new empty folder inside this folder"
1242 msgstr ""
1243
1244-#: /home/cody/files/po/../src/fm-directory-view.c:3500
1245+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3500
1246 msgid "Create New _File"
1247 msgstr ""
1248
1249-#: /home/cody/files/po/../src/fm-directory-view.c:3502
1250+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3502
1251 msgid "_Empty File"
1252 msgstr ""
1253
1254-#: /home/cody/files/po/../src/fm-directory-view.c:3503
1255+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3503
1256 msgid "Create a new empty file inside this folder"
1257 msgstr ""
1258
1259-#: /home/cody/files/po/../src/fm-directory-view.c:3507
1260+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3507
1261 msgid "Open the selected item"
1262 msgstr ""
1263
1264-#: /home/cody/files/po/../src/fm-directory-view.c:3514
1265+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3514
1266 msgid "Open in new Window"
1267 msgstr ""
1268
1269-#: /home/cody/files/po/../src/fm-directory-view.c:3515
1270+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3515
1271 msgid "Open each selected item in a new window"
1272 msgstr ""
1273
1274-#: /home/cody/files/po/../src/fm-directory-view.c:3519
1275+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3519
1276 msgid "Open each selected item in a new tab"
1277 msgstr ""
1278
1279-#: /home/cody/files/po/../src/fm-directory-view.c:3521
1280+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3521
1281 msgid "Open Wit_h"
1282 msgstr ""
1283
1284-#: /home/cody/files/po/../src/fm-directory-view.c:3522
1285+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3522
1286 msgid "Choose a program with which to open the selected item"
1287 msgstr ""
1288
1289-#: /home/cody/files/po/../src/fm-directory-view.c:3524
1290+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3524
1291 msgid "Other _Application..."
1292 msgstr ""
1293
1294-#: /home/cody/files/po/../src/fm-directory-view.c:3525
1295+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3525
1296 msgid "Choose another application with which to open the selected item"
1297 msgstr ""
1298
1299-#: /home/cody/files/po/../src/fm-directory-view.c:3528
1300+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3528
1301 msgid "Mo_ve to Trash"
1302 msgstr ""
1303
1304-#: /home/cody/files/po/../src/fm-directory-view.c:3529
1305+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3529
1306 msgid "Move each selected item to the Trash"
1307 msgstr ""
1308
1309-#: /home/cody/files/po/../src/fm-directory-view.c:3532
1310+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3532
1311 msgid "_Delete Permanently"
1312 msgstr ""
1313
1314-#: /home/cody/files/po/../src/fm-directory-view.c:3533
1315+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3533
1316 msgid "Delete each selected item, without moving to the Trash"
1317 msgstr ""
1318
1319-#: /home/cody/files/po/../src/fm-directory-view.c:3536
1320+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3536
1321 msgid "_Restore"
1322 msgstr ""
1323
1324-#: /home/cody/files/po/../src/fm-directory-view.c:3544
1325+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3540
1326+#: /home/julian/elementary-projects/fix-1022934/po/../src/eel-editable-label.c:3190
1327+msgid "Select All"
1328+msgstr ""
1329+
1330+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3544
1331 msgid "_Properties"
1332 msgstr ""
1333
1334-#: /home/cody/files/po/../src/fm-directory-view.c:3545
1335+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3545
1336 msgid "View or modify the properties of each selected item"
1337 msgstr ""
1338
1339-#: /home/cody/files/po/../src/fm-directory-view.c:3651
1340+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-directory-view.c:3651
1341 msgid "Set Color:"
1342 msgstr ""
1343
1344-#: /home/cody/files/po/../src/fm-list-view.c:59
1345-msgid "Filename"
1346-msgstr ""
1347-
1348-#: /home/cody/files/po/../src/fm-list-view.c:59
1349-msgid "Size"
1350-msgstr ""
1351-
1352-#: /home/cody/files/po/../src/fm-list-view.c:59
1353-msgid "Type"
1354-msgstr ""
1355-
1356-#: /home/cody/files/po/../src/marlin-progress-ui-handler.c:114
1357-#: /home/cody/files/po/../src/marlin-progress-ui-handler.c:164
1358-#: /home/cody/files/po/../src/marlin-progress-ui-handler.c:419
1359-#: /home/cody/files/po/../src/marlin-progress-ui-handler.c:475
1360+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-application.c:423
1361+msgid "Show the version of the program."
1362+msgstr ""
1363+
1364+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-application.c:427
1365+msgid "Open uri(s) in new tab"
1366+msgstr ""
1367+
1368+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-application.c:429
1369+msgid "Quit Files."
1370+msgstr ""
1371+
1372+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-application.c:431
1373+msgid "Enable debug logging"
1374+msgstr ""
1375+
1376+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-application.c:432
1377+msgid "[URI...]"
1378+msgstr ""
1379+
1380+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-application.c:441
1381+msgid ""
1382+"\n"
1383+"\n"
1384+"Browse the file system with the file manager"
1385+msgstr ""
1386+
1387+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-application.c:461
1388+msgid "--quit cannot be used with URIs."
1389+msgstr ""
1390+
1391+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:125
1392+msgid "SSH"
1393+msgstr ""
1394+
1395+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:128
1396+msgid "Public FTP"
1397+msgstr ""
1398+
1399+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:130
1400+msgid "FTP (with login)"
1401+msgstr ""
1402+
1403+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:133
1404+msgid "AFP (Apple Filing Protocol)"
1405+msgstr ""
1406+
1407+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:135
1408+msgid "Windows share"
1409+msgstr ""
1410+
1411+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:137
1412+msgid "WebDAV (HTTP)"
1413+msgstr ""
1414+
1415+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:139
1416+msgid "Secure WebDAV (HTTPS)"
1417+msgstr ""
1418+
1419+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:186
1420+msgid "Connecting..."
1421+msgstr ""
1422+
1423+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:210
1424+msgid ""
1425+"Can't load the supported server method list.\n"
1426+"Please check your gvfs installation."
1427+msgstr ""
1428+
1429+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:288
1430+#, c-format
1431+msgid "The folder \"%s\" cannot be opened on \"%s\"."
1432+msgstr ""
1433+
1434+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:298
1435+#, c-format
1436+msgid "The server at \"%s\" cannot be found."
1437+msgstr ""
1438+
1439+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:333
1440+msgid "Try Again"
1441+msgstr ""
1442+
1443+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:398
1444+msgid "Please verify your user details."
1445+msgstr ""
1446+
1447+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:428
1448+msgid "Continue"
1449+msgstr ""
1450+
1451+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:766
1452+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:1156
1453+msgid "C_onnect"
1454+msgstr ""
1455+
1456+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:891
1457+msgid "Connect to Server"
1458+msgstr ""
1459+
1460+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:909
1461+msgid "Server Details"
1462+msgstr ""
1463+
1464+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:933
1465+msgid "_Server:"
1466+msgstr ""
1467+
1468+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:953
1469+msgid "_Port:"
1470+msgstr ""
1471+
1472+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:971
1473+msgid "_Type:"
1474+msgstr ""
1475+
1476+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:1040
1477+msgid "Sh_are:"
1478+msgstr ""
1479+
1480+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:1055
1481+msgid "_Folder:"
1482+msgstr ""
1483+
1484+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:1073
1485+msgid "User Details"
1486+msgstr ""
1487+
1488+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:1096
1489+msgid "_Domain name:"
1490+msgstr ""
1491+
1492+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:1111
1493+msgid "_User name:"
1494+msgstr ""
1495+
1496+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:1126
1497+msgid "Pass_word:"
1498+msgstr ""
1499+
1500+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:1142
1501+msgid "_Remember this password"
1502+msgstr ""
1503+
1504+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-connect-server-dialog.c:1245
1505+msgid "Operation cancelled"
1506+msgstr ""
1507+
1508+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-columns-view.c:82
1509+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-list-view.c:616
1510+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-abstract-icon-view.c:573
1511+msgid "This folder is empty."
1512+msgstr ""
1513+
1514+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-columns-view.c:186
1515+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-list-view.c:199
1516+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-abstract-icon-view.c:139
1517+#, c-format
1518+msgid "Failed to rename %s to %s"
1519+msgstr ""
1520+
1521+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-progress-ui-handler.c:114
1522+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-progress-ui-handler.c:164
1523+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-progress-ui-handler.c:419
1524+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-progress-ui-handler.c:475
1525 msgid "File Operations"
1526 msgstr ""
1527
1528-#: /home/cody/files/po/../src/marlin-progress-ui-handler.c:123
1529+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-progress-ui-handler.c:123
1530 msgid "Show Details"
1531 msgstr ""
1532
1533-#: /home/cody/files/po/../src/marlin-progress-ui-handler.c:158
1534-#: /home/cody/files/po/../src/marlin-progress-ui-handler.c:180
1535+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-progress-ui-handler.c:158
1536+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-progress-ui-handler.c:180
1537 #, c-format
1538 msgid "%'d file operation active"
1539 msgid_plural "%'d file operations active"
1540 msgstr[0] ""
1541 msgstr[1] ""
1542
1543-#: /home/cody/files/po/../src/marlin-progress-ui-handler.c:286
1544+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-progress-ui-handler.c:286
1545 msgid "Show Copy Dialog"
1546 msgstr ""
1547
1548-#: /home/cody/files/po/../src/marlin-progress-ui-handler.c:298
1549+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-progress-ui-handler.c:298
1550 msgid "Cancel All In-progress Actions"
1551 msgstr ""
1552
1553-#: /home/cody/files/po/../src/marlin-progress-ui-handler.c:476
1554+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-progress-ui-handler.c:476
1555 msgid "All file operations have been successfully completed"
1556 msgstr ""
1557
1558-#: /home/cody/files/po/../src/fm-icon-view.c:86
1559+#: /home/julian/elementary-projects/fix-1022934/po/../src/eel-editable-label.c:3201
1560+msgid "Input Methods"
1561+msgstr ""
1562+
1563+#: /home/julian/elementary-projects/fix-1022934/po/../src/exo-tree-view.c:159
1564+msgid "Single Click"
1565+msgstr ""
1566+
1567+#: /home/julian/elementary-projects/fix-1022934/po/../src/exo-tree-view.c:160
1568+msgid "Whether the items in the view can be activated with single clicks"
1569+msgstr ""
1570+
1571+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:286
1572+msgid "Personal"
1573+msgstr ""
1574+
1575+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:291
1576+msgid "Your common places and bookmarks"
1577+msgstr ""
1578+
1579+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:348
1580+msgid "Open the trash"
1581+msgstr ""
1582+
1583+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:358
1584+msgid "Devices"
1585+msgstr ""
1586+
1587+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:363
1588+msgid "Your local partitions and devices"
1589+msgstr ""
1590+
1591+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:372
1592+msgid "Open the contents of the File System"
1593+msgstr ""
1594+
1595+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:431
1596+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:456
1597+#, c-format
1598+msgid "Mount and open %s"
1599+msgstr ""
1600+
1601+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:569
1602+msgid "Your network places"
1603+msgstr ""
1604+
1605+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:600
1606+msgid "Entire network"
1607+msgstr ""
1608+
1609+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:602
1610+msgid "Browse the contents of the network"
1611+msgstr ""
1612+
1613+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:1590
1614+msgid "_Start"
1615+msgstr ""
1616+
1617+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:1591
1618+msgid "_Stop"
1619+msgstr ""
1620+
1621+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:1596
1622+msgid "_Power On"
1623+msgstr ""
1624+
1625+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:1597
1626+msgid "_Safely Remove Drive"
1627+msgstr ""
1628+
1629+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:1600
1630+msgid "_Connect Drive"
1631+msgstr ""
1632+
1633+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:1601
1634+msgid "_Disconnect Drive"
1635+msgstr ""
1636+
1637+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:1604
1638+msgid "_Start Multi-disk Device"
1639+msgstr ""
1640+
1641+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:1605
1642+msgid "_Stop Multi-disk Device"
1643+msgstr ""
1644+
1645+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:1609
1646+msgid "_Unlock Drive"
1647+msgstr ""
1648+
1649+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:1610
1650+msgid "_Lock Drive"
1651+msgstr ""
1652+
1653+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:1684
1654+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:2231
1655+#, c-format
1656+msgid "Unable to start %s"
1657+msgstr ""
1658+
1659+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:1974
1660+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:2003
1661+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:2032
1662+#, c-format
1663+msgid "Unable to eject %s"
1664+msgstr ""
1665+
1666+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:2177
1667+#, c-format
1668+msgid "Unable to poll %s for media changes"
1669+msgstr ""
1670+
1671+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:2287
1672+#, c-format
1673+msgid "Unable to stop %s"
1674+msgstr ""
1675+
1676+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:2409
1677+msgid "Remove"
1678+msgstr ""
1679+
1680+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:2418
1681+msgid "Rename..."
1682+msgstr ""
1683+
1684+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:2431
1685+msgid "_Mount"
1686+msgstr ""
1687+
1688+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:2438
1689+msgid "_Unmount"
1690+msgstr ""
1691+
1692+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:2445
1693+msgid "_Eject"
1694+msgstr ""
1695+
1696+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:2453
1697+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1422
1698+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2312
1699+msgid "Empty _Trash"
1700+msgstr ""
1701+
1702+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-places-sidebar.c:2463
1703+msgid "Connect to Server…"
1704+msgstr ""
1705+
1706+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-icon-view.c:86
1707 msgid "Icon directory listing"
1708 msgstr ""
1709
1710-#: /home/cody/files/po/../src/fm-icon-view.c:87
1711+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-icon-view.c:87
1712 msgid "Icon view"
1713 msgstr ""
1714
1715-#: /home/cody/files/po/../src/marlin-dnd.c:103
1716+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-clipboard-manager.c:369
1717+msgid "There is nothing on the clipboard to paste"
1718+msgstr ""
1719+
1720+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-dnd.c:103
1721 msgid "_Move Here"
1722 msgstr ""
1723
1724-#: /home/cody/files/po/../src/marlin-dnd.c:108
1725+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-dnd.c:108
1726 msgid "_Copy Here"
1727 msgstr ""
1728
1729-#: /home/cody/files/po/../src/marlin-dnd.c:113
1730+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-dnd.c:113
1731 msgid "_Link Here"
1732 msgstr ""
1733
1734-#: /home/cody/files/po/../src/marlin-dnd.c:118
1735+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-dnd.c:118
1736 msgid "Set as _Background"
1737 msgstr ""
1738
1739-#: /home/cody/files/po/../src/marlin-dnd.c:125
1740+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-dnd.c:125
1741 msgid "Cancel"
1742 msgstr ""
1743
1744-#: /home/cody/files/po/../src/marlin-dnd.c:217
1745+#: /home/julian/elementary-projects/fix-1022934/po/../src/marlin-dnd.c:217
1746 #, c-format
1747 msgid "Failed to execute file \"%s\""
1748 msgstr ""
1749
1750-#: /home/cody/files/po/../src/DesktopLauncher.vala:6
1751+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-list-view.c:59
1752+msgid "Filename"
1753+msgstr ""
1754+
1755+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-list-view.c:59
1756+msgid "Size"
1757+msgstr ""
1758+
1759+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-list-view.c:59
1760+msgid "Type"
1761+msgstr ""
1762+
1763+#: /home/julian/elementary-projects/fix-1022934/po/../src/exo-icon-view.c:857
1764+msgid "Layout mode"
1765+msgstr ""
1766+
1767+#: /home/julian/elementary-projects/fix-1022934/po/../src/exo-icon-view.c:858
1768+msgid "The layout mode"
1769+msgstr ""
1770+
1771+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-abstract-icon-view.c:283
1772+msgid "Arran_ge Items"
1773+msgstr ""
1774+
1775+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-abstract-icon-view.c:288
1776+msgid "Re_versed Order"
1777+msgstr ""
1778+
1779+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-abstract-icon-view.c:289
1780+msgid "Display icons in the opposite order"
1781+msgstr ""
1782+
1783+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-abstract-icon-view.c:296
1784+msgid "By _Name"
1785+msgstr ""
1786+
1787+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-abstract-icon-view.c:297
1788+msgid "Keep icons sorted by name in rows"
1789+msgstr ""
1790+
1791+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-abstract-icon-view.c:300
1792+msgid "By _Size"
1793+msgstr ""
1794+
1795+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-abstract-icon-view.c:301
1796+msgid "Keep icons sorted by size in rows"
1797+msgstr ""
1798+
1799+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-abstract-icon-view.c:304
1800+msgid "By _Type"
1801+msgstr ""
1802+
1803+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-abstract-icon-view.c:305
1804+msgid "Keep icons sorted by type in rows"
1805+msgstr ""
1806+
1807+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-abstract-icon-view.c:308
1808+msgid "By Modification _Date"
1809+msgstr ""
1810+
1811+#: /home/julian/elementary-projects/fix-1022934/po/../src/fm-abstract-icon-view.c:309
1812+msgid "Keep icons sorted by modification date in rows"
1813+msgstr ""
1814+
1815+#: /home/julian/elementary-projects/fix-1022934/po/../src/DesktopLauncher.vala:6
1816 msgid "Browse your files"
1817 msgstr ""
1818
1819-#: /home/cody/files/po/../src/DesktopLauncher.vala:7
1820+#: /home/julian/elementary-projects/fix-1022934/po/../src/DesktopLauncher.vala:7
1821 msgid "File Manager"
1822 msgstr ""
1823
1824-#: /home/cody/files/po/../src/DesktopLauncher.vala:10
1825+#: /home/julian/elementary-projects/fix-1022934/po/../src/DesktopLauncher.vala:10
1826 msgid "New Window As _Administrator"
1827 msgstr ""
1828
1829-#: /home/cody/files/po/../src/DesktopLauncher.vala:11
1830+#: /home/julian/elementary-projects/fix-1022934/po/../src/DesktopLauncher.vala:11
1831 msgid "Files"
1832 msgstr ""
1833
1834-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:146
1835-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:361
1836+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-progress-info.c:192
1837+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-progress-info.c:210
1838+msgid "Preparing"
1839+msgstr ""
1840+
1841+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/eel-vfs-extensions.c:72
1842+msgid " (invalid Unicode)"
1843+msgstr ""
1844+
1845+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:146
1846+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:361
1847 #, c-format
1848 msgid "Merge folder \"%s\"?"
1849 msgstr ""
1850
1851-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:150
1852-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:364
1853+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:150
1854+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:364
1855 msgid ""
1856 "Merging will ask for confirmation before replacing any files in the folder "
1857 "that conflict with the files being copied."
1858 msgstr ""
1859
1860-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:155
1861-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:369
1862+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:155
1863+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:369
1864 #, c-format
1865 msgid "An older folder with the same name already exists in \"%s\"."
1866 msgstr ""
1867
1868-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:159
1869-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:373
1870+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:159
1871+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:373
1872 #, c-format
1873 msgid "A newer folder with the same name already exists in \"%s\"."
1874 msgstr ""
1875
1876-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:163
1877-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:377
1878+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:163
1879+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:377
1880 #, c-format
1881 msgid "Another folder with the same name already exists in \"%s\"."
1882 msgstr ""
1883
1884-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:168
1885-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:382
1886+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:168
1887+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:382
1888 msgid "Replacing it will remove all files in the folder."
1889 msgstr ""
1890
1891-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:170
1892-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:384
1893+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:170
1894+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:384
1895 #, c-format
1896 msgid "Replace folder \"%s\"?"
1897 msgstr ""
1898
1899-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:172
1900-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:386
1901+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:172
1902+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:386
1903 #, c-format
1904 msgid "A folder with the same name already exists in \"%s\"."
1905 msgstr ""
1906
1907-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:177
1908-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:391
1909+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:177
1910+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:391
1911 #, c-format
1912 msgid "Replace file \"%s\"?"
1913 msgstr ""
1914
1915-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:179
1916-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:393
1917+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:179
1918+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:393
1919 msgid "Replacing it will overwrite its content."
1920 msgstr ""
1921
1922-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:183
1923-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:397
1924+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:183
1925+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:397
1926 #, c-format
1927 msgid "An older file with the same name already exists in \"%s\"."
1928 msgstr ""
1929
1930-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:187
1931-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:401
1932+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:187
1933+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:401
1934 #, c-format
1935 msgid "A newer file with the same name already exists in \"%s\"."
1936 msgstr ""
1937
1938-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:191
1939-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:405
1940+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:191
1941+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:405
1942 #, c-format
1943 msgid "Another file with the same name already exists in \"%s\"."
1944 msgstr ""
1945
1946-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:253
1947-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:460
1948+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:253
1949+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:460
1950 msgid "Original file"
1951 msgstr ""
1952
1953-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:254
1954-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:285
1955-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:461
1956-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:482
1957+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:254
1958+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:285
1959+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:461
1960+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:482
1961 msgid "Size:"
1962 msgstr ""
1963
1964-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:257
1965-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:288
1966-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:464
1967-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:485
1968+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:257
1969+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:288
1970+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:464
1971+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:485
1972 msgid "Type:"
1973 msgstr ""
1974
1975-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:260
1976-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:291
1977-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:467
1978-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:488
1979+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:260
1980+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:291
1981+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:467
1982+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:488
1983 msgid "Last modified:"
1984 msgstr ""
1985
1986-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:284
1987-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:481
1988+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:284
1989+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:481
1990 msgid "Replace with"
1991 msgstr ""
1992
1993-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:313
1994-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:506
1995+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:313
1996+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:506
1997 msgid "Merge"
1998 msgstr ""
1999
2000-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:700
2001+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:700
2002 msgid "_Select a new name for the destination"
2003 msgstr ""
2004
2005-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:714
2006+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:714
2007 msgid "Reset"
2008 msgstr ""
2009
2010-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:726
2011+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:726
2012 msgid "Apply this action to all files"
2013 msgstr ""
2014
2015-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:737
2016-#: /home/cody/files/po/../libcore/marlin-file-operations.c:200
2017+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:737
2018+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:200
2019 msgid "_Skip"
2020 msgstr ""
2021
2022-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:742
2023+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:742
2024 msgid "Re_name"
2025 msgstr ""
2026
2027-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:748
2028+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:748
2029 msgid "Replace"
2030 msgstr ""
2031
2032-#: /home/cody/files/po/../libcore/marlin-file-conflict-dialog.c:821
2033+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-conflict-dialog.c:821
2034 msgid "File conflict"
2035 msgstr ""
2036
2037-#: /home/cody/files/po/../libcore/gof-file.c:280
2038-#, c-format
2039-msgid "link to %s"
2040-msgstr ""
2041-
2042-#: /home/cody/files/po/../libcore/gof-file.c:1739
2043-#, c-format
2044-msgid "Failed to parse the desktop file: %s"
2045-msgstr ""
2046-
2047-#: /home/cody/files/po/../libcore/gof-file.c:1777
2048-msgid "No Exec field specified"
2049-msgstr ""
2050-
2051-#: /home/cody/files/po/../libcore/gof-file.c:1797
2052-msgid "No URL field specified"
2053-msgstr ""
2054-
2055-#: /home/cody/files/po/../libcore/gof-file.c:1803
2056-msgid "Invalid desktop file"
2057-msgstr ""
2058-
2059-#: /home/cody/files/po/../libcore/gof-file.c:2093
2060-msgid "Slashes are not allowed in filenames"
2061-msgstr ""
2062-
2063-#: /home/cody/files/po/../libcore/gof-file.c:2113
2064-msgid "Toplevel files cannot be renamed"
2065-msgstr ""
2066-
2067-#: /home/cody/files/po/../libcore/eel-fcts.c:81
2068-msgid "Today at %-I:%M %p"
2069-msgstr ""
2070-
2071-#: /home/cody/files/po/../libcore/eel-fcts.c:85
2072-msgid "Yesterday at %-I:%M %p"
2073-msgstr ""
2074-
2075-#: /home/cody/files/po/../libcore/eel-fcts.c:89
2076-msgid "%a %-d %b %Y at %-I:%M %p"
2077-msgstr ""
2078-
2079-#: /home/cody/files/po/../libcore/eel-vfs-extensions.c:72
2080-msgid " (invalid Unicode)"
2081-msgstr ""
2082-
2083-#: /home/cody/files/po/../libcore/marlin-file-utilities.c:119
2084+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1202
2085+#, c-format
2086+msgid "Delete %d copied items"
2087+msgstr ""
2088+
2089+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1205
2090+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1215
2091+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1246
2092+#, c-format
2093+msgid "Delete '%s'"
2094+msgstr ""
2095+
2096+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1212
2097+#, c-format
2098+msgid "Delete %d duplicated items"
2099+msgstr ""
2100+
2101+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1223
2102+#, c-format
2103+msgid "Move %d items back to '%s'"
2104+msgstr ""
2105+
2106+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1227
2107+#, c-format
2108+msgid "Move '%s' back to '%s'"
2109+msgstr ""
2110+
2111+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1236
2112+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1403
2113+#, c-format
2114+msgid "Rename '%s' as '%s'"
2115+msgstr ""
2116+
2117+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1255
2118+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1450
2119+#, c-format
2120+msgid "Restore %d items from trash"
2121+msgstr ""
2122+
2123+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1263
2124+#, c-format
2125+msgid "Restore '%s' to '%s'"
2126+msgstr ""
2127+
2128+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1274
2129+#, c-format
2130+msgid "Move %d items back to trash"
2131+msgstr ""
2132+
2133+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1277
2134+#, c-format
2135+msgid "Move '%s' back to trash"
2136+msgstr ""
2137+
2138+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1286
2139+#, c-format
2140+msgid "Delete links to %d items"
2141+msgstr ""
2142+
2143+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1289
2144+#, c-format
2145+msgid "Delete link to '%s'"
2146+msgstr ""
2147+
2148+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1299
2149+#, c-format
2150+msgid "Restore original permissions of items enclosed in '%s'"
2151+msgstr ""
2152+
2153+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1307
2154+#, c-format
2155+msgid "Restore original permissions of '%s'"
2156+msgstr ""
2157+
2158+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1316
2159+#, c-format
2160+msgid "Restore group of '%s' to '%s'"
2161+msgstr ""
2162+
2163+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1326
2164+#, c-format
2165+msgid "Restore owner of '%s' to '%s'"
2166+msgstr ""
2167+
2168+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1365
2169+#, c-format
2170+msgid "Copy %d items to '%s'"
2171+msgstr ""
2172+
2173+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1369
2174+#, c-format
2175+msgid "Copy '%s' to '%s'"
2176+msgstr ""
2177+
2178+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1377
2179+#, c-format
2180+msgid "Duplicate of %d items in '%s'"
2181+msgstr ""
2182+
2183+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1382
2184+#, c-format
2185+msgid "Duplicate '%s' in '%s'"
2186+msgstr ""
2187+
2188+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1390
2189+#, c-format
2190+msgid "Move %d items to '%s'"
2191+msgstr ""
2192+
2193+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1394
2194+#, c-format
2195+msgid "Move '%s' to '%s'"
2196+msgstr ""
2197+
2198+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1412
2199+#, c-format
2200+msgid "Create new file '%s' from template "
2201+msgstr ""
2202+
2203+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1419
2204+#, c-format
2205+msgid "Create an empty file '%s'"
2206+msgstr ""
2207+
2208+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1426
2209+#, c-format
2210+msgid "Create a new folder '%s'"
2211+msgstr ""
2212+
2213+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1434
2214+#, c-format
2215+msgid "Move %d items to trash"
2216+msgstr ""
2217+
2218+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1440
2219+#, c-format
2220+msgid "Move '%s' to trash"
2221+msgstr ""
2222+
2223+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1453
2224+#, c-format
2225+msgid "Restore '%s' from trash"
2226+msgstr ""
2227+
2228+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1462
2229+#, c-format
2230+msgid "Create links to %d items"
2231+msgstr ""
2232+
2233+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1465
2234+#, c-format
2235+msgid "Create link to '%s'"
2236+msgstr ""
2237+
2238+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1474
2239+#, c-format
2240+msgid "Set permissions of items enclosed in '%s'"
2241+msgstr ""
2242+
2243+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1482
2244+#, c-format
2245+msgid "Set permissions of '%s'"
2246+msgstr ""
2247+
2248+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1491
2249+#, c-format
2250+msgid "Set group of '%s' to '%s'"
2251+msgstr ""
2252+
2253+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1501
2254+#, c-format
2255+msgid "Set owner of '%s' to '%s'"
2256+msgstr ""
2257+
2258+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1533
2259+#, c-format
2260+msgid "_Undo copy of %d item"
2261+msgid_plural "_Undo copy of %d items"
2262+msgstr[0] ""
2263+msgstr[1] ""
2264+
2265+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1538
2266+#, c-format
2267+msgid "_Undo duplicate of %d item"
2268+msgid_plural "_Undo duplicate of %d items"
2269+msgstr[0] ""
2270+msgstr[1] ""
2271+
2272+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1543
2273+#, c-format
2274+msgid "_Undo move of %d item"
2275+msgid_plural "_Undo move of %d items"
2276+msgstr[0] ""
2277+msgstr[1] ""
2278+
2279+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1548
2280+#, c-format
2281+msgid "_Undo rename of %d item"
2282+msgid_plural "_Undo rename of %d items"
2283+msgstr[0] ""
2284+msgstr[1] ""
2285+
2286+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1552
2287+msgid "_Undo creation of an empty file"
2288+msgstr ""
2289+
2290+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1555
2291+msgid "_Undo creation of a file from template"
2292+msgstr ""
2293+
2294+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1559
2295+#, c-format
2296+msgid "_Undo creation of %d folder"
2297+msgid_plural "_Undo creation of %d folders"
2298+msgstr[0] ""
2299+msgstr[1] ""
2300+
2301+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1564
2302+#, c-format
2303+msgid "_Undo move to trash of %d item"
2304+msgid_plural "_Undo move to trash of %d items"
2305+msgstr[0] ""
2306+msgstr[1] ""
2307+
2308+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1569
2309+#, c-format
2310+msgid "_Undo restore from trash of %d item"
2311+msgid_plural "_Undo restore from trash of %d items"
2312+msgstr[0] ""
2313+msgstr[1] ""
2314+
2315+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1574
2316+#, c-format
2317+msgid "_Undo create link to %d item"
2318+msgid_plural "_Undo create link to %d items"
2319+msgstr[0] ""
2320+msgstr[1] ""
2321+
2322+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1579
2323+#, c-format
2324+msgid "_Undo delete of %d item"
2325+msgid_plural "_Undo delete of %d items"
2326+msgstr[0] ""
2327+msgstr[1] ""
2328+
2329+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1584
2330+#, c-format
2331+msgid "Undo recursive change permissions of %d item"
2332+msgid_plural "Undo recursive change permissions of %d items"
2333+msgstr[0] ""
2334+msgstr[1] ""
2335+
2336+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1590
2337+#, c-format
2338+msgid "Undo change permissions of %d item"
2339+msgid_plural "Undo change permissions of %d items"
2340+msgstr[0] ""
2341+msgstr[1] ""
2342+
2343+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1595
2344+#, c-format
2345+msgid "Undo change group of %d item"
2346+msgid_plural "Undo change group of %d items"
2347+msgstr[0] ""
2348+msgstr[1] ""
2349+
2350+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1600
2351+#, c-format
2352+msgid "Undo change owner of %d item"
2353+msgid_plural "Undo change owner of %d items"
2354+msgstr[0] ""
2355+msgstr[1] ""
2356+
2357+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1628
2358+#, c-format
2359+msgid "_Redo copy of %d item"
2360+msgid_plural "_Redo copy of %d items"
2361+msgstr[0] ""
2362+msgstr[1] ""
2363+
2364+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1633
2365+#, c-format
2366+msgid "_Redo duplicate of %d item"
2367+msgid_plural "_Redo duplicate of %d items"
2368+msgstr[0] ""
2369+msgstr[1] ""
2370+
2371+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1638
2372+#, c-format
2373+msgid "_Redo move of %d item"
2374+msgid_plural "_Redo move of %d items"
2375+msgstr[0] ""
2376+msgstr[1] ""
2377+
2378+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1643
2379+#, c-format
2380+msgid "_Redo rename of %d item"
2381+msgid_plural "_Redo rename of %d items"
2382+msgstr[0] ""
2383+msgstr[1] ""
2384+
2385+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1647
2386+msgid "_Redo creation of an empty file"
2387+msgstr ""
2388+
2389+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1650
2390+msgid "_Redo creation of a file from template"
2391+msgstr ""
2392+
2393+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1654
2394+#, c-format
2395+msgid "_Redo creation of %d folder"
2396+msgid_plural "_Redo creation of %d folders"
2397+msgstr[0] ""
2398+msgstr[1] ""
2399+
2400+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1659
2401+#, c-format
2402+msgid "_Redo move to trash of %d item"
2403+msgid_plural "_Redo move to trash of %d items"
2404+msgstr[0] ""
2405+msgstr[1] ""
2406+
2407+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1664
2408+#, c-format
2409+msgid "_Redo restore from trash of %d item"
2410+msgid_plural "_Redo restore from trash of %d items"
2411+msgstr[0] ""
2412+msgstr[1] ""
2413+
2414+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1669
2415+#, c-format
2416+msgid "_Redo create link to %d item"
2417+msgid_plural "_Redo create link to %d items"
2418+msgstr[0] ""
2419+msgstr[1] ""
2420+
2421+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1674
2422+#, c-format
2423+msgid "_Redo delete of %d item"
2424+msgid_plural "_Redo delete of %d items"
2425+msgstr[0] ""
2426+msgstr[1] ""
2427+
2428+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1679
2429+#, c-format
2430+msgid "Redo recursive change permissions of %d item"
2431+msgid_plural "Redo recursive change permissions of %d items"
2432+msgstr[0] ""
2433+msgstr[1] ""
2434+
2435+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1685
2436+#, c-format
2437+msgid "Redo change permissions of %d item"
2438+msgid_plural "Redo change permissions of %d items"
2439+msgstr[0] ""
2440+msgstr[1] ""
2441+
2442+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1690
2443+#, c-format
2444+msgid "Redo change group of %d item"
2445+msgid_plural "Redo change group of %d items"
2446+msgstr[0] ""
2447+msgstr[1] ""
2448+
2449+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-undostack-manager.c:1695
2450+#, c-format
2451+msgid "Redo change owner of %d item"
2452+msgid_plural "Redo change owner of %d items"
2453+msgstr[0] ""
2454+msgstr[1] ""
2455+
2456+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-utilities.c:119
2457 #, c-format
2458 msgid "Could not determine original location of \"%s\" "
2459 msgstr ""
2460
2461-#: /home/cody/files/po/../libcore/marlin-file-utilities.c:122
2462+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-utilities.c:122
2463 msgid "The item cannot be restored from trash"
2464 msgstr ""
2465
2466-#: /home/cody/files/po/../libcore/marlin-file-operations.c:201
2467+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:201
2468 msgid "S_kip All"
2469 msgstr ""
2470
2471-#: /home/cody/files/po/../libcore/marlin-file-operations.c:202
2472+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:202
2473 msgid "_Retry"
2474 msgstr ""
2475
2476-#: /home/cody/files/po/../libcore/marlin-file-operations.c:203
2477+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:203
2478 msgid "Delete _All"
2479 msgstr ""
2480
2481-#: /home/cody/files/po/../libcore/marlin-file-operations.c:204
2482+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:204
2483 msgid "_Replace"
2484 msgstr ""
2485
2486-#: /home/cody/files/po/../libcore/marlin-file-operations.c:205
2487+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:205
2488 msgid "Replace _All"
2489 msgstr ""
2490
2491-#: /home/cody/files/po/../libcore/marlin-file-operations.c:206
2492+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:206
2493 msgid "_Merge"
2494 msgstr ""
2495
2496-#: /home/cody/files/po/../libcore/marlin-file-operations.c:207
2497+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:207
2498 msgid "Merge _All"
2499 msgstr ""
2500
2501-#: /home/cody/files/po/../libcore/marlin-file-operations.c:208
2502+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:208
2503 msgid "Copy _Anyway"
2504 msgstr ""
2505
2506-#: /home/cody/files/po/../libcore/marlin-file-operations.c:294
2507+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:294
2508 #, c-format
2509 msgid "%'d second"
2510 msgid_plural "%'d seconds"
2511 msgstr[0] ""
2512 msgstr[1] ""
2513
2514-#: /home/cody/files/po/../libcore/marlin-file-operations.c:299
2515-#: /home/cody/files/po/../libcore/marlin-file-operations.c:310
2516+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:299
2517+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:310
2518 #, c-format
2519 msgid "%'d minute"
2520 msgid_plural "%'d minutes"
2521 msgstr[0] ""
2522 msgstr[1] ""
2523
2524-#: /home/cody/files/po/../libcore/marlin-file-operations.c:309
2525+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:309
2526 #, c-format
2527 msgid "%'d hour"
2528 msgid_plural "%'d hours"
2529 msgstr[0] ""
2530 msgstr[1] ""
2531
2532-#: /home/cody/files/po/../libcore/marlin-file-operations.c:317
2533+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:317
2534 #, c-format
2535 msgid "approximately %'d hour"
2536 msgid_plural "approximately %'d hours"
2537 msgstr[0] ""
2538 msgstr[1] ""
2539
2540-#: /home/cody/files/po/../libcore/marlin-file-operations.c:393
2541+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:393
2542 #, c-format
2543 msgid "Link to %s"
2544 msgstr ""
2545
2546-#: /home/cody/files/po/../libcore/marlin-file-operations.c:397
2547+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:397
2548 #, c-format
2549 msgid "Another link to %s"
2550 msgstr ""
2551
2552-#: /home/cody/files/po/../libcore/marlin-file-operations.c:413
2553+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:413
2554 #, c-format
2555 msgid "%'dst link to %s"
2556 msgstr ""
2557
2558-#: /home/cody/files/po/../libcore/marlin-file-operations.c:417
2559+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:417
2560 #, c-format
2561 msgid "%'dnd link to %s"
2562 msgstr ""
2563
2564-#: /home/cody/files/po/../libcore/marlin-file-operations.c:421
2565+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:421
2566 #, c-format
2567 msgid "%'drd link to %s"
2568 msgstr ""
2569
2570-#: /home/cody/files/po/../libcore/marlin-file-operations.c:425
2571+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:425
2572 #, c-format
2573 msgid "%'dth link to %s"
2574 msgstr ""
2575
2576-#: /home/cody/files/po/../libcore/marlin-file-operations.c:463
2577+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:463
2578 msgid " (copy)"
2579 msgstr ""
2580
2581-#: /home/cody/files/po/../libcore/marlin-file-operations.c:465
2582+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:465
2583 msgid " (another copy)"
2584 msgstr ""
2585
2586-#: /home/cody/files/po/../libcore/marlin-file-operations.c:468
2587-#: /home/cody/files/po/../libcore/marlin-file-operations.c:470
2588-#: /home/cody/files/po/../libcore/marlin-file-operations.c:472
2589-#: /home/cody/files/po/../libcore/marlin-file-operations.c:482
2590+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:468
2591+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:470
2592+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:472
2593+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:482
2594 msgid "th copy)"
2595 msgstr ""
2596
2597-#: /home/cody/files/po/../libcore/marlin-file-operations.c:475
2598+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:475
2599 msgid "st copy)"
2600 msgstr ""
2601
2602-#: /home/cody/files/po/../libcore/marlin-file-operations.c:477
2603+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:477
2604 msgid "nd copy)"
2605 msgstr ""
2606
2607-#: /home/cody/files/po/../libcore/marlin-file-operations.c:479
2608+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:479
2609 msgid "rd copy)"
2610 msgstr ""
2611
2612-#: /home/cody/files/po/../libcore/marlin-file-operations.c:496
2613+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:496
2614 #, c-format
2615 msgid "%s (copy)%s"
2616 msgstr ""
2617
2618-#: /home/cody/files/po/../libcore/marlin-file-operations.c:498
2619+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:498
2620 #, c-format
2621 msgid "%s (another copy)%s"
2622 msgstr ""
2623
2624-#: /home/cody/files/po/../libcore/marlin-file-operations.c:501
2625-#: /home/cody/files/po/../libcore/marlin-file-operations.c:503
2626-#: /home/cody/files/po/../libcore/marlin-file-operations.c:505
2627-#: /home/cody/files/po/../libcore/marlin-file-operations.c:519
2628+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:501
2629+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:503
2630+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:505
2631+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:519
2632 #, c-format
2633 msgid "%s (%'dth copy)%s"
2634 msgstr ""
2635
2636-#: /home/cody/files/po/../libcore/marlin-file-operations.c:513
2637+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:513
2638 #, c-format
2639 msgid "%s (%'dst copy)%s"
2640 msgstr ""
2641
2642-#: /home/cody/files/po/../libcore/marlin-file-operations.c:515
2643+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:515
2644 #, c-format
2645 msgid "%s (%'dnd copy)%s"
2646 msgstr ""
2647
2648-#: /home/cody/files/po/../libcore/marlin-file-operations.c:517
2649+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:517
2650 #, c-format
2651 msgid "%s (%'drd copy)%s"
2652 msgstr ""
2653
2654-#: /home/cody/files/po/../libcore/marlin-file-operations.c:617
2655+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:617
2656 msgid " ("
2657 msgstr ""
2658
2659-#: /home/cody/files/po/../libcore/marlin-file-operations.c:625
2660+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:625
2661 #, c-format
2662 msgid " (%'d"
2663 msgstr ""
2664
2665-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1381
2666+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1381
2667 msgid "Are you sure you want to permanently delete \"%B\" from the trash?"
2668 msgstr ""
2669
2670-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1384
2671+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1384
2672 #, c-format
2673 msgid ""
2674 "Are you sure you want to permanently delete the %'d selected item from the "
2675@@ -1459,24 +1777,24 @@
2676 msgstr[0] ""
2677 msgstr[1] ""
2678
2679-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1394
2680-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1462
2681+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1394
2682+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1462
2683 msgid "If you delete an item, it will be permanently lost."
2684 msgstr ""
2685
2686-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1415
2687+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1415
2688 msgid "Empty all items from Trash?"
2689 msgstr ""
2690
2691-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1419
2692+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1419
2693 msgid "All items in the Trash will be permanently deleted."
2694 msgstr ""
2695
2696-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1450
2697+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1450
2698 msgid "Are you sure you want to permanently delete \"%B\"?"
2699 msgstr ""
2700
2701-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1453
2702+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1453
2703 #, c-format
2704 msgid "Are you sure you want to permanently delete the %'d selected item?"
2705 msgid_plural ""
2706@@ -1484,875 +1802,540 @@
2707 msgstr[0] ""
2708 msgstr[1] ""
2709
2710-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1478
2711-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1510
2712+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1478
2713+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1510
2714 msgid "Deleting files"
2715 msgstr ""
2716
2717-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1504
2718+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1504
2719 #, c-format
2720 msgid "%'d file left to delete"
2721 msgid_plural "%'d files left to delete"
2722 msgstr[0] ""
2723 msgstr[1] ""
2724
2725-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1524
2726+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1524
2727 msgid "%T left"
2728 msgid_plural "%T left"
2729 msgstr[0] ""
2730 msgstr[1] ""
2731
2732-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1592
2733-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1626
2734-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1665
2735-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1742
2736-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2575
2737+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1592
2738+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1626
2739+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1665
2740+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1742
2741+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2575
2742 msgid "Error while deleting."
2743 msgstr ""
2744
2745-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1596
2746+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1596
2747 msgid ""
2748 "Files in the folder \"%B\" cannot be deleted because you do not have "
2749 "permissions to see them."
2750 msgstr ""
2751
2752-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1599
2753-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2634
2754-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3630
2755+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1599
2756+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2634
2757+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3630
2758 msgid ""
2759 "There was an error getting information about the files in the folder \"%B\"."
2760 msgstr ""
2761
2762-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1608
2763-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3639
2764+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1608
2765+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3639
2766 msgid "_Skip files"
2767 msgstr ""
2768
2769-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1629
2770+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1629
2771 msgid ""
2772 "The folder \"%B\" cannot be deleted because you do not have permissions to "
2773 "read it."
2774 msgstr ""
2775
2776-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1632
2777-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2673
2778-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3675
2779+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1632
2780+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2673
2781+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3675
2782 msgid "There was an error reading the folder \"%B\"."
2783 msgstr ""
2784
2785-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1666
2786+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1666
2787 msgid "Could not remove the folder %B."
2788 msgstr ""
2789
2790-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1743
2791+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1743
2792 msgid "There was an error deleting %B."
2793 msgstr ""
2794
2795-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1819
2796-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1831
2797+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1819
2798+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1831
2799 msgid "Moving files to trash"
2800 msgstr ""
2801
2802-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1833
2803+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1833
2804 #, c-format
2805 msgid "%'d file left to trash"
2806 msgid_plural "%'d files left to trash"
2807 msgstr[0] ""
2808 msgstr[1] ""
2809
2810-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1888
2811+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1888
2812 msgid "Cannot move file to trash. Delete Immediately?"
2813 msgstr ""
2814
2815-#: /home/cody/files/po/../libcore/marlin-file-operations.c:1889
2816+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:1889
2817 msgid ""
2818 "This file is located on an external media and cannot be moved to the trash. "
2819 "Once deleted, it cannot be restored."
2820 msgstr ""
2821
2822-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2071
2823+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2071
2824 msgid "Trashing Files"
2825 msgstr ""
2826
2827-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2073
2828+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2073
2829 msgid "Deleting Files"
2830 msgstr ""
2831
2832-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2145
2833+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2145
2834 msgid "Unable to eject %V"
2835 msgstr ""
2836
2837-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2147
2838+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2147
2839 msgid "Unable to unmount %V"
2840 msgstr ""
2841
2842-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2302
2843+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2302
2844 msgid "Do you want to empty the trash before you unmount?"
2845 msgstr ""
2846
2847-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2304
2848+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2304
2849 msgid ""
2850 "In order to regain the free space on this volume the trash must be emptied. "
2851 "All trashed items on the volume will be permanently lost."
2852 msgstr ""
2853
2854-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2310
2855+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2310
2856 msgid "Do _not Empty Trash"
2857 msgstr ""
2858
2859-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2365
2860+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2365
2861 msgid "Emptying the trash"
2862 msgstr ""
2863
2864-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2432
2865+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2432
2866 #, c-format
2867 msgid "Unable to mount %s"
2868 msgstr ""
2869
2870-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2510
2871+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2510
2872 #, c-format
2873 msgid "Preparing to copy %'d file (%S)"
2874 msgid_plural "Preparing to copy %'d files (%S)"
2875 msgstr[0] ""
2876 msgstr[1] ""
2877
2878-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2516
2879+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2516
2880 #, c-format
2881 msgid "Preparing to move %'d file (%S)"
2882 msgid_plural "Preparing to move %'d files (%S)"
2883 msgstr[0] ""
2884 msgstr[1] ""
2885
2886-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2522
2887+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2522
2888 #, c-format
2889 msgid "Preparing to delete %'d file (%S)"
2890 msgid_plural "Preparing to delete %'d files (%S)"
2891 msgstr[0] ""
2892 msgstr[1] ""
2893
2894-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2528
2895+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2528
2896 #, c-format
2897 msgid "Preparing to trash %'d file"
2898 msgid_plural "Preparing to trash %'d files"
2899 msgstr[0] ""
2900 msgstr[1] ""
2901
2902-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2571
2903-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3491
2904-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3622
2905-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3667
2906+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2571
2907+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3491
2908+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3622
2909+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3667
2910 msgid "Error while copying."
2911 msgstr ""
2912
2913-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2573
2914-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3620
2915-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3665
2916+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2573
2917+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3620
2918+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3665
2919 msgid "Error while moving."
2920 msgstr ""
2921
2922-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2577
2923+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2577
2924 msgid "Error while moving files to trash."
2925 msgstr ""
2926
2927-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2631
2928+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2631
2929 msgid ""
2930 "Files in the folder \"%B\" cannot be handled because you do not have "
2931 "permissions to see them."
2932 msgstr ""
2933
2934-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2670
2935+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2670
2936 msgid ""
2937 "The folder \"%B\" cannot be handled because you do not have permissions to "
2938 "read it."
2939 msgstr ""
2940
2941-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2747
2942+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2747
2943 msgid ""
2944 "The file \"%B\" cannot be handled because you do not have permissions to "
2945 "read it."
2946 msgstr ""
2947
2948-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2750
2949+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2750
2950 msgid "There was an error getting information about \"%B\"."
2951 msgstr ""
2952
2953-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2850
2954-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2892
2955-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2925
2956-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2955
2957+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2850
2958+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2892
2959+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2925
2960+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2955
2961 msgid "Error while copying to \"%B\"."
2962 msgstr ""
2963
2964-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2854
2965+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2854
2966 msgid "You do not have permissions to access the destination folder."
2967 msgstr ""
2968
2969-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2856
2970+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2856
2971 msgid "There was an error getting information about the destination."
2972 msgstr ""
2973
2974-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2893
2975+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2893
2976 msgid "The destination is not a folder."
2977 msgstr ""
2978
2979-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2926
2980+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2926
2981 msgid ""
2982 "There is not enough space on the destination. Try to remove files to make "
2983 "space."
2984 msgstr ""
2985
2986-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2928
2987+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2928
2988 #, c-format
2989 msgid "There is %S available, but %S is required."
2990 msgstr ""
2991
2992-#: /home/cody/files/po/../libcore/marlin-file-operations.c:2956
2993+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:2956
2994 msgid "The destination is read-only."
2995 msgstr ""
2996
2997-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3017
2998+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3017
2999 msgid "Moving \"%B\" to \"%B\""
3000 msgstr ""
3001
3002-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3018
3003+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3018
3004 msgid "Copying \"%B\" to \"%B\""
3005 msgstr ""
3006
3007-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3022
3008+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3022
3009 msgid "Duplicating \"%B\""
3010 msgstr ""
3011
3012-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3026
3013+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3026
3014 msgid "Moving %'d file (in \"%B\") to \"%B\""
3015 msgid_plural "Moving %'d files (in \"%B\") to \"%B\""
3016 msgstr[0] ""
3017 msgstr[1] ""
3018
3019-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3029
3020+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3029
3021 msgid "Copying %'d file (in \"%B\") to \"%B\""
3022 msgid_plural "Copying %'d files (in \"%B\") to \"%B\""
3023 msgstr[0] ""
3024 msgstr[1] ""
3025
3026-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3036
3027+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3036
3028 msgid "Duplicating %'d file (in \"%B\")"
3029 msgid_plural "Duplicating %'d files (in \"%B\")"
3030 msgstr[0] ""
3031 msgstr[1] ""
3032
3033-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3045
3034+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3045
3035 msgid "Moving %'d file to \"%B\""
3036 msgid_plural "Moving %'d files to \"%B\""
3037 msgstr[0] ""
3038 msgstr[1] ""
3039
3040-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3049
3041+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3049
3042 msgid "Copying %'d file to \"%B\""
3043 msgid_plural "Copying %'d files to \"%B\""
3044 msgstr[0] ""
3045 msgstr[1] ""
3046
3047-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3054
3048+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3054
3049 #, c-format
3050 msgid "Duplicating %'d file"
3051 msgid_plural "Duplicating %'d files"
3052 msgstr[0] ""
3053 msgstr[1] ""
3054
3055-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3105
3056+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3105
3057 #, c-format
3058 msgid "%S of %S"
3059 msgstr ""
3060
3061-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3116
3062+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3116
3063 msgid "%S of %S — %T left (%S/sec)"
3064 msgid_plural "%S of %S — %T left (%S/sec)"
3065 msgstr[0] ""
3066 msgstr[1] ""
3067
3068-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3495
3069+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3495
3070 msgid ""
3071 "The folder \"%B\" cannot be copied because you do not have permissions to "
3072 "create it in the destination."
3073 msgstr ""
3074
3075-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3498
3076+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3498
3077 msgid "There was an error creating the folder \"%B\"."
3078 msgstr ""
3079
3080-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3627
3081+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3627
3082 msgid ""
3083 "Files in the folder \"%B\" cannot be copied because you do not have "
3084 "permissions to see them."
3085 msgstr ""
3086
3087-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3672
3088+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3672
3089 msgid ""
3090 "The folder \"%B\" cannot be copied because you do not have permissions to "
3091 "read it."
3092 msgstr ""
3093
3094-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3717
3095-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4418
3096-#: /home/cody/files/po/../libcore/marlin-file-operations.c:5006
3097+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3717
3098+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4418
3099+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:5006
3100 msgid "Error while moving \"%B\"."
3101 msgstr ""
3102
3103-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3718
3104+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3718
3105 msgid "Could not remove the source folder."
3106 msgstr ""
3107
3108-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3803
3109-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3844
3110-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4420
3111-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4491
3112+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3803
3113+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3844
3114+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4420
3115+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4491
3116 msgid "Error while copying \"%B\"."
3117 msgstr ""
3118
3119-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3804
3120+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3804
3121 #, c-format
3122 msgid "Could not remove files from the already existing folder %F."
3123 msgstr ""
3124
3125-#: /home/cody/files/po/../libcore/marlin-file-operations.c:3845
3126+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:3845
3127 #, c-format
3128 msgid "Could not remove the already existing file %F."
3129 msgstr ""
3130
3131-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4174
3132-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4846
3133+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4174
3134+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4846
3135 msgid "You cannot move a folder into itself."
3136 msgstr ""
3137
3138-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4175
3139-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4847
3140+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4175
3141+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4847
3142 msgid "You cannot copy a folder into itself."
3143 msgstr ""
3144
3145-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4176
3146-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4848
3147+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4176
3148+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4848
3149 msgid "The destination folder is inside the source folder."
3150 msgstr ""
3151
3152-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4207
3153+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4207
3154 msgid "You cannot move a file over itself."
3155 msgstr ""
3156
3157-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4208
3158+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4208
3159 msgid "You cannot copy a file over itself."
3160 msgstr ""
3161
3162-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4209
3163+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4209
3164 msgid "The source file would be overwritten by the destination."
3165 msgstr ""
3166
3167-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4422
3168+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4422
3169 #, c-format
3170 msgid "Could not remove the already existing file with the same name in %F."
3171 msgstr ""
3172
3173-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4492
3174+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4492
3175 #, c-format
3176 msgid "There was an error copying the file into %F."
3177 msgstr ""
3178
3179-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4720
3180+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4720
3181 msgid "Copying Files"
3182 msgstr ""
3183
3184-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4746
3185+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4746
3186 msgid "Preparing to move to \"%B\""
3187 msgstr ""
3188
3189-#: /home/cody/files/po/../libcore/marlin-file-operations.c:4758
3190+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:4758
3191 #, c-format
3192 msgid "Preparing to move %'d file"
3193 msgid_plural "Preparing to move %'d files"
3194 msgstr[0] ""
3195 msgstr[1] ""
3196
3197-#: /home/cody/files/po/../libcore/marlin-file-operations.c:5007
3198+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:5007
3199 #, c-format
3200 msgid "There was an error moving the file into %F."
3201 msgstr ""
3202
3203-#: /home/cody/files/po/../libcore/marlin-file-operations.c:5270
3204+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:5270
3205 msgid "Moving Files"
3206 msgstr ""
3207
3208-#: /home/cody/files/po/../libcore/marlin-file-operations.c:5300
3209+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:5300
3210 msgid "Creating links in \"%B\""
3211 msgstr ""
3212
3213-#: /home/cody/files/po/../libcore/marlin-file-operations.c:5311
3214+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:5311
3215 #, c-format
3216 msgid "Making link to %'d file"
3217 msgid_plural "Making links to %'d files"
3218 msgstr[0] ""
3219 msgstr[1] ""
3220
3221-#: /home/cody/files/po/../libcore/marlin-file-operations.c:5446
3222+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:5446
3223 msgid "Error while creating link to %B."
3224 msgstr ""
3225
3226-#: /home/cody/files/po/../libcore/marlin-file-operations.c:5448
3227+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:5448
3228 msgid "Symbolic links only supported for local files"
3229 msgstr ""
3230
3231-#: /home/cody/files/po/../libcore/marlin-file-operations.c:5451
3232+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:5451
3233 msgid "The target doesn't support symbolic links."
3234 msgstr ""
3235
3236-#: /home/cody/files/po/../libcore/marlin-file-operations.c:5454
3237+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:5454
3238 #, c-format
3239 msgid "There was an error creating the symlink in %F."
3240 msgstr ""
3241
3242-#: /home/cody/files/po/../libcore/marlin-file-operations.c:5782
3243-#: /home/cody/files/po/../libcore/marlin-file-operations.c:5785
3244+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:5782
3245+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:5785
3246 msgid "Setting permissions"
3247 msgstr ""
3248
3249-#: /home/cody/files/po/../libcore/marlin-file-operations.c:6036
3250+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:6036
3251 msgid "untitled folder"
3252 msgstr ""
3253
3254-#: /home/cody/files/po/../libcore/marlin-file-operations.c:6044
3255+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:6044
3256 msgid "new file"
3257 msgstr ""
3258
3259-#: /home/cody/files/po/../libcore/marlin-file-operations.c:6215
3260+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:6215
3261 msgid "Error while creating directory %B."
3262 msgstr ""
3263
3264-#: /home/cody/files/po/../libcore/marlin-file-operations.c:6217
3265+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:6217
3266 msgid "Error while creating file %B."
3267 msgstr ""
3268
3269-#: /home/cody/files/po/../libcore/marlin-file-operations.c:6219
3270+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:6219
3271 #, c-format
3272 msgid "There was an error creating the directory in %F."
3273 msgstr ""
3274
3275-#: /home/cody/files/po/../libcore/marlin-file-operations.c:6536
3276+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/marlin-file-operations.c:6536
3277 msgid "Emptying Trash"
3278 msgstr ""
3279
3280-#: /home/cody/files/po/../libcore/eel-stock-dialogs.c:35
3281+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/gof-file.c:302
3282+#, c-format
3283+msgid "link to %s"
3284+msgstr ""
3285+
3286+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/gof-file.c:1761
3287+#, c-format
3288+msgid "Failed to parse the desktop file: %s"
3289+msgstr ""
3290+
3291+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/gof-file.c:1799
3292+msgid "No Exec field specified"
3293+msgstr ""
3294+
3295+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/gof-file.c:1819
3296+msgid "No URL field specified"
3297+msgstr ""
3298+
3299+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/gof-file.c:1825
3300+msgid "Invalid desktop file"
3301+msgstr ""
3302+
3303+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/gof-file.c:2115
3304+msgid "Slashes are not allowed in filenames"
3305+msgstr ""
3306+
3307+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/gof-file.c:2135
3308+msgid "Toplevel files cannot be renamed"
3309+msgstr ""
3310+
3311+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/eel-fcts.c:81
3312+msgid "Today at %-I:%M %p"
3313+msgstr ""
3314+
3315+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/eel-fcts.c:85
3316+msgid "Yesterday at %-I:%M %p"
3317+msgstr ""
3318+
3319+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/eel-fcts.c:89
3320+msgid "%a %-d %b %Y at %-I:%M %p"
3321+msgstr ""
3322+
3323+#: /home/julian/elementary-projects/fix-1022934/po/../libcore/eel-stock-dialogs.c:35
3324 msgid "Show more _details"
3325 msgstr ""
3326
3327-#: /home/cody/files/po/../libcore/marlin-progress-info.c:192
3328-#: /home/cody/files/po/../libcore/marlin-progress-info.c:210
3329-msgid "Preparing"
3330-msgstr ""
3331-
3332-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1202
3333-#, c-format
3334-msgid "Delete %d copied items"
3335-msgstr ""
3336-
3337-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1205
3338-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1215
3339-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1246
3340-#, c-format
3341-msgid "Delete '%s'"
3342-msgstr ""
3343-
3344-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1212
3345-#, c-format
3346-msgid "Delete %d duplicated items"
3347-msgstr ""
3348-
3349-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1223
3350-#, c-format
3351-msgid "Move %d items back to '%s'"
3352-msgstr ""
3353-
3354-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1227
3355-#, c-format
3356-msgid "Move '%s' back to '%s'"
3357-msgstr ""
3358-
3359-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1236
3360-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1403
3361-#, c-format
3362-msgid "Rename '%s' as '%s'"
3363-msgstr ""
3364-
3365-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1255
3366-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1450
3367-#, c-format
3368-msgid "Restore %d items from trash"
3369-msgstr ""
3370-
3371-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1263
3372-#, c-format
3373-msgid "Restore '%s' to '%s'"
3374-msgstr ""
3375-
3376-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1274
3377-#, c-format
3378-msgid "Move %d items back to trash"
3379-msgstr ""
3380-
3381-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1277
3382-#, c-format
3383-msgid "Move '%s' back to trash"
3384-msgstr ""
3385-
3386-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1286
3387-#, c-format
3388-msgid "Delete links to %d items"
3389-msgstr ""
3390-
3391-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1289
3392-#, c-format
3393-msgid "Delete link to '%s'"
3394-msgstr ""
3395-
3396-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1299
3397-#, c-format
3398-msgid "Restore original permissions of items enclosed in '%s'"
3399-msgstr ""
3400-
3401-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1307
3402-#, c-format
3403-msgid "Restore original permissions of '%s'"
3404-msgstr ""
3405-
3406-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1316
3407-#, c-format
3408-msgid "Restore group of '%s' to '%s'"
3409-msgstr ""
3410-
3411-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1326
3412-#, c-format
3413-msgid "Restore owner of '%s' to '%s'"
3414-msgstr ""
3415-
3416-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1365
3417-#, c-format
3418-msgid "Copy %d items to '%s'"
3419-msgstr ""
3420-
3421-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1369
3422-#, c-format
3423-msgid "Copy '%s' to '%s'"
3424-msgstr ""
3425-
3426-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1377
3427-#, c-format
3428-msgid "Duplicate of %d items in '%s'"
3429-msgstr ""
3430-
3431-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1382
3432-#, c-format
3433-msgid "Duplicate '%s' in '%s'"
3434-msgstr ""
3435-
3436-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1390
3437-#, c-format
3438-msgid "Move %d items to '%s'"
3439-msgstr ""
3440-
3441-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1394
3442-#, c-format
3443-msgid "Move '%s' to '%s'"
3444-msgstr ""
3445-
3446-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1412
3447-#, c-format
3448-msgid "Create new file '%s' from template "
3449-msgstr ""
3450-
3451-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1419
3452-#, c-format
3453-msgid "Create an empty file '%s'"
3454-msgstr ""
3455-
3456-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1426
3457-#, c-format
3458-msgid "Create a new folder '%s'"
3459-msgstr ""
3460-
3461-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1434
3462-#, c-format
3463-msgid "Move %d items to trash"
3464-msgstr ""
3465-
3466-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1440
3467-#, c-format
3468-msgid "Move '%s' to trash"
3469-msgstr ""
3470-
3471-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1453
3472-#, c-format
3473-msgid "Restore '%s' from trash"
3474-msgstr ""
3475-
3476-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1462
3477-#, c-format
3478-msgid "Create links to %d items"
3479-msgstr ""
3480-
3481-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1465
3482-#, c-format
3483-msgid "Create link to '%s'"
3484-msgstr ""
3485-
3486-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1474
3487-#, c-format
3488-msgid "Set permissions of items enclosed in '%s'"
3489-msgstr ""
3490-
3491-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1482
3492-#, c-format
3493-msgid "Set permissions of '%s'"
3494-msgstr ""
3495-
3496-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1491
3497-#, c-format
3498-msgid "Set group of '%s' to '%s'"
3499-msgstr ""
3500-
3501-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1501
3502-#, c-format
3503-msgid "Set owner of '%s' to '%s'"
3504-msgstr ""
3505-
3506-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1533
3507-#, c-format
3508-msgid "_Undo copy of %d item"
3509-msgid_plural "_Undo copy of %d items"
3510-msgstr[0] ""
3511-msgstr[1] ""
3512-
3513-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1538
3514-#, c-format
3515-msgid "_Undo duplicate of %d item"
3516-msgid_plural "_Undo duplicate of %d items"
3517-msgstr[0] ""
3518-msgstr[1] ""
3519-
3520-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1543
3521-#, c-format
3522-msgid "_Undo move of %d item"
3523-msgid_plural "_Undo move of %d items"
3524-msgstr[0] ""
3525-msgstr[1] ""
3526-
3527-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1548
3528-#, c-format
3529-msgid "_Undo rename of %d item"
3530-msgid_plural "_Undo rename of %d items"
3531-msgstr[0] ""
3532-msgstr[1] ""
3533-
3534-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1552
3535-msgid "_Undo creation of an empty file"
3536-msgstr ""
3537-
3538-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1555
3539-msgid "_Undo creation of a file from template"
3540-msgstr ""
3541-
3542-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1559
3543-#, c-format
3544-msgid "_Undo creation of %d folder"
3545-msgid_plural "_Undo creation of %d folders"
3546-msgstr[0] ""
3547-msgstr[1] ""
3548-
3549-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1564
3550-#, c-format
3551-msgid "_Undo move to trash of %d item"
3552-msgid_plural "_Undo move to trash of %d items"
3553-msgstr[0] ""
3554-msgstr[1] ""
3555-
3556-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1569
3557-#, c-format
3558-msgid "_Undo restore from trash of %d item"
3559-msgid_plural "_Undo restore from trash of %d items"
3560-msgstr[0] ""
3561-msgstr[1] ""
3562-
3563-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1574
3564-#, c-format
3565-msgid "_Undo create link to %d item"
3566-msgid_plural "_Undo create link to %d items"
3567-msgstr[0] ""
3568-msgstr[1] ""
3569-
3570-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1579
3571-#, c-format
3572-msgid "_Undo delete of %d item"
3573-msgid_plural "_Undo delete of %d items"
3574-msgstr[0] ""
3575-msgstr[1] ""
3576-
3577-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1584
3578-#, c-format
3579-msgid "Undo recursive change permissions of %d item"
3580-msgid_plural "Undo recursive change permissions of %d items"
3581-msgstr[0] ""
3582-msgstr[1] ""
3583-
3584-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1590
3585-#, c-format
3586-msgid "Undo change permissions of %d item"
3587-msgid_plural "Undo change permissions of %d items"
3588-msgstr[0] ""
3589-msgstr[1] ""
3590-
3591-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1595
3592-#, c-format
3593-msgid "Undo change group of %d item"
3594-msgid_plural "Undo change group of %d items"
3595-msgstr[0] ""
3596-msgstr[1] ""
3597-
3598-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1600
3599-#, c-format
3600-msgid "Undo change owner of %d item"
3601-msgid_plural "Undo change owner of %d items"
3602-msgstr[0] ""
3603-msgstr[1] ""
3604-
3605-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1628
3606-#, c-format
3607-msgid "_Redo copy of %d item"
3608-msgid_plural "_Redo copy of %d items"
3609-msgstr[0] ""
3610-msgstr[1] ""
3611-
3612-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1633
3613-#, c-format
3614-msgid "_Redo duplicate of %d item"
3615-msgid_plural "_Redo duplicate of %d items"
3616-msgstr[0] ""
3617-msgstr[1] ""
3618-
3619-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1638
3620-#, c-format
3621-msgid "_Redo move of %d item"
3622-msgid_plural "_Redo move of %d items"
3623-msgstr[0] ""
3624-msgstr[1] ""
3625-
3626-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1643
3627-#, c-format
3628-msgid "_Redo rename of %d item"
3629-msgid_plural "_Redo rename of %d items"
3630-msgstr[0] ""
3631-msgstr[1] ""
3632-
3633-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1647
3634-msgid "_Redo creation of an empty file"
3635-msgstr ""
3636-
3637-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1650
3638-msgid "_Redo creation of a file from template"
3639-msgstr ""
3640-
3641-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1654
3642-#, c-format
3643-msgid "_Redo creation of %d folder"
3644-msgid_plural "_Redo creation of %d folders"
3645-msgstr[0] ""
3646-msgstr[1] ""
3647-
3648-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1659
3649-#, c-format
3650-msgid "_Redo move to trash of %d item"
3651-msgid_plural "_Redo move to trash of %d items"
3652-msgstr[0] ""
3653-msgstr[1] ""
3654-
3655-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1664
3656-#, c-format
3657-msgid "_Redo restore from trash of %d item"
3658-msgid_plural "_Redo restore from trash of %d items"
3659-msgstr[0] ""
3660-msgstr[1] ""
3661-
3662-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1669
3663-#, c-format
3664-msgid "_Redo create link to %d item"
3665-msgid_plural "_Redo create link to %d items"
3666-msgstr[0] ""
3667-msgstr[1] ""
3668-
3669-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1674
3670-#, c-format
3671-msgid "_Redo delete of %d item"
3672-msgid_plural "_Redo delete of %d items"
3673-msgstr[0] ""
3674-msgstr[1] ""
3675-
3676-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1679
3677-#, c-format
3678-msgid "Redo recursive change permissions of %d item"
3679-msgid_plural "Redo recursive change permissions of %d items"
3680-msgstr[0] ""
3681-msgstr[1] ""
3682-
3683-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1685
3684-#, c-format
3685-msgid "Redo change permissions of %d item"
3686-msgid_plural "Redo change permissions of %d items"
3687-msgstr[0] ""
3688-msgstr[1] ""
3689-
3690-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1690
3691-#, c-format
3692-msgid "Redo change group of %d item"
3693-msgid_plural "Redo change group of %d items"
3694-msgstr[0] ""
3695-msgstr[1] ""
3696-
3697-#: /home/cody/files/po/../libcore/marlin-undostack-manager.c:1695
3698-#, c-format
3699-msgid "Redo change owner of %d item"
3700-msgid_plural "Redo change owner of %d items"
3701-msgstr[0] ""
3702-msgstr[1] ""
3703-
3704-#: /home/cody/files/po/../libwidgets/LocationBar.vala:321
3705+#: /home/julian/elementary-projects/fix-1022934/po/../libwidgets/LocationBar.vala:321
3706 msgid "Cut the selected text to the clipboard"
3707 msgstr ""
3708
3709-#: /home/cody/files/po/../libwidgets/LocationBar.vala:325
3710+#: /home/julian/elementary-projects/fix-1022934/po/../libwidgets/LocationBar.vala:325
3711 msgid "Copy the selected text to the clipboard"
3712 msgstr ""
3713
3714-#: /home/cody/files/po/../libwidgets/LocationBar.vala:329
3715-#: /home/cody/files/po/../libwidgets/LocationBar.vala:333
3716+#: /home/julian/elementary-projects/fix-1022934/po/../libwidgets/LocationBar.vala:329
3717+#: /home/julian/elementary-projects/fix-1022934/po/../libwidgets/LocationBar.vala:333
3718 msgid "Paste the text stored on the clipboard"
3719 msgstr ""
3720
3721-#: /home/cody/files/po/../libwidgets/LocationBar.vala:812
3722+#: /home/julian/elementary-projects/fix-1022934/po/../libwidgets/LocationBar.vala:812
3723 #, c-format
3724 msgid "Go to %s"
3725 msgstr ""
3726
3727-#: /home/cody/files/po/../src/View/Chrome/ViewSwicher.vala:82
3728+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Chrome/ViewSwicher.vala:82
3729 msgid "View as Grid"
3730 msgstr ""
3731
3732-#: /home/cody/files/po/../src/View/Chrome/ViewSwicher.vala:85
3733+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Chrome/ViewSwicher.vala:85
3734 msgid "View as List"
3735 msgstr ""
3736
3737-#: /home/cody/files/po/../src/View/Chrome/ViewSwicher.vala:88
3738+#: /home/julian/elementary-projects/fix-1022934/po/../src/View/Chrome/ViewSwicher.vala:88
3739 msgid "View in Columns"
3740 msgstr ""
3741
3742-#: /home/cody/files/po/../plugins/marlin-trash/plugin.vala:46
3743+#: /home/julian/elementary-projects/fix-1022934/po/../plugins/marlin-trash/plugin.vala:46
3744 msgid "These items may be deleted by emptying the trash."
3745 msgstr ""
3746
3747-#: /home/cody/files/po/../plugins/marlin-trash/plugin.vala:47
3748+#: /home/julian/elementary-projects/fix-1022934/po/../plugins/marlin-trash/plugin.vala:47
3749 msgid "Empty the Trash"
3750 msgstr ""
3751
3752=== modified file 'src/View/Browser.vala'
3753--- src/View/Browser.vala 2011-05-31 00:39:42 +0000
3754+++ src/View/Browser.vala 2013-06-13 15:17:25 +0000
3755@@ -45,7 +45,7 @@
3756 */
3757 public void record_uri (string uri)
3758 {
3759- if (current_uri != null)
3760+ if (current_uri != null && current_uri != uri)
3761 {
3762 back_stack.push (current_uri);
3763 forward_stack.clear ();
3764
3765=== modified file 'src/View/Chrome/TopMenu.vala'
3766--- src/View/Chrome/TopMenu.vala 2013-05-13 00:20:59 +0000
3767+++ src/View/Chrome/TopMenu.vala 2013-06-13 15:17:25 +0000
3768@@ -85,7 +85,12 @@
3769 //debug ("topmenu test path %s", location_bar.path);
3770 }
3771
3772- location_bar.escape.connect( () => { ((FM.Directory.View) win.current_tab.slot.view_box).grab_focus(); });
3773+ location_bar.escape.connect( () => {
3774+ if (win.current_tab.slot.directory.file.exists)
3775+ win.current_tab.slot.view_box.grab_focus();
3776+ else
3777+ win.current_tab.content.grab_focus();
3778+ });
3779 location_bar.activate.connect(() => { win.current_tab.path_changed(File.new_for_commandline_arg(location_bar.path)); });
3780 location_bar.activate_alternate.connect((a) => { win.add_tab(File.new_for_commandline_arg(a)); });
3781 location_bar.show_all();
3782
3783=== modified file 'src/View/DirectoryNotFound.vala'
3784--- src/View/DirectoryNotFound.vala 2012-11-06 20:18:52 +0000
3785+++ src/View/DirectoryNotFound.vala 2013-06-13 15:17:25 +0000
3786@@ -18,75 +18,49 @@
3787 *
3788 */
3789
3790-using Gtk;
3791 namespace Marlin.View
3792 {
3793- class ImageButton : Button
3794- {
3795- public ImageButton(string title, string subtitle, string icon_name)
3796- {
3797- var hbox = new Box(Orientation.HORIZONTAL, 15);
3798-
3799- /* Image */
3800- hbox.pack_start(new Image.from_icon_name (icon_name, Gtk.IconSize.DIALOG), false, false);
3801- var vbox = new Box(Orientation.VERTICAL, 0);
3802-
3803- /* Title */
3804- var label = new Label(title);
3805- label.set_alignment(0, 0.5f);
3806- vbox.pack_start(label);
3807-
3808- /* Subtitle */
3809- label = new Label(subtitle);
3810- label.set_sensitive(false);
3811- label.set_alignment(0, 0.5f);
3812-
3813- /* Pack all */
3814- vbox.pack_start(label);
3815- hbox.pack_start(vbox);
3816-
3817- set_relief(Gtk.ReliefStyle.NONE);
3818- add(hbox);
3819- }
3820- }
3821-
3822- static void make_and_jump_to_new_dir (File new_folder, void *data) {
3823- ViewContainer tab = (ViewContainer) data;
3824- //message ("make and jump %s", new_folder.get_uri ());
3825- tab.path_changed (new_folder);
3826- }
3827-
3828- public class DirectoryNotFound : Alignment
3829- {
3830+
3831+ public static int show_dialog (string message, Gtk.MessageType type, Gtk.ButtonsType buttons) {
3832+ var dialog = new Gtk.MessageDialog (null, Gtk.DialogFlags.MODAL,
3833+ type, buttons, "%s", message);
3834+
3835+ dialog.set_position (Gtk.WindowPosition.MOUSE);
3836+ var response = dialog.run ();
3837+ dialog.destroy ();
3838+ return response;
3839+ }
3840+
3841+ public class DirectoryNotFound : Granite.Widgets.Welcome {
3842 public GOF.Directory.Async dir_saved;
3843 public ViewContainer ctab;
3844
3845- public DirectoryNotFound(GOF.Directory.Async dir, ViewContainer tab)
3846- {
3847- set(0.5f,0.4f,0,0.1f);
3848+ public DirectoryNotFound(GOF.Directory.Async dir, ViewContainer tab) {
3849+ base (_("This folder does not exist."), _("The folder \"%s\" can't be found.").printf (dir.location.get_basename ()));
3850+
3851+ append ("folder-new", _("Create"), _("Create the folder \"%s\"").printf (dir.location.get_basename ()));
3852+
3853 dir_saved = dir;
3854 ctab = tab;
3855- var box = new Box(Orientation.VERTICAL, 5);
3856- var label = new Label("");
3857-
3858- label.set_markup("<span size=\"x-large\">%s</span>".printf(_("Folder does not exist")));
3859- box.pack_start(label, false, false);
3860-
3861- label = new Label(_("Files can't find the folder %s").printf(dir.location.get_basename()));
3862- label.set_sensitive(false);
3863- label.set_alignment(0.5f, 0.0f);
3864- box.pack_start(label, true, true);
3865-
3866- var create_button = new ImageButton(_("Create"), _("Create the folder %s").printf(dir.location.get_basename()), "folder-new");
3867- create_button.clicked.connect( () => {
3868- Marlin.FileOperations.new_folder_with_name(null, null,
3869- dir_saved.location.get_parent(),
3870- dir_saved.location.get_basename(),
3871- (void *) make_and_jump_to_new_dir, tab);
3872+
3873+ this.activated.connect ((index) => {
3874+ bool success = false;
3875+
3876+ try {
3877+ success = dir.location.make_directory_with_parents (null);
3878+ } catch (Error e) {
3879+ if (e is IOError.EXISTS)
3880+ success = true;
3881+ else
3882+ show_dialog (_("Failed to create the folder\n\n%s").printf (e.message),
3883+ Gtk.MessageType.ERROR, Gtk.ButtonsType.CLOSE);
3884+ }
3885+
3886+ if (success)
3887+ ctab.path_changed (dir_saved.location);
3888 });
3889- box.pack_start(create_button, false, false);
3890-
3891- add(box);
3892+
3893+ show_all ();
3894 }
3895 }
3896 }
3897
3898=== modified file 'src/View/LocationBar.vala'
3899--- src/View/LocationBar.vala 2013-05-20 08:12:59 +0000
3900+++ src/View/LocationBar.vala 2013-06-13 15:17:25 +0000
3901@@ -68,13 +68,21 @@
3902 add(bread);
3903 }
3904
3905- private void on_bread_changed(string changed)
3906- {
3907+ private void on_bread_changed (string changed) {
3908 /* focus back the view */
3909- ((FM.Directory.View) win.current_tab.slot.view_box).grab_focus();
3910+ if (win.current_tab.slot.directory.file.exists)
3911+ win.current_tab.slot.view_box.grab_focus ();
3912+ else
3913+ win.current_tab.content.grab_focus ();
3914+
3915 //_path = changed;
3916 path = changed;
3917 activate();
3918+
3919+ /* This prevents that the location bar is left in a weird state
3920+ * when going from a non-existent folder to another one underneath. */
3921+ bread.entry.reset ();
3922+ bread.change_breadcrumbs (changed);
3923 }
3924 }
3925
3926@@ -184,9 +192,14 @@
3927 icon.exploded = {"/"};
3928 add_icon(icon);
3929
3930- entry.down.connect(() => {
3931- ((FM.Directory.View) win.current_tab.slot.view_box).grab_focus();
3932+ entry.down.connect (() => {
3933+ /* focus back the view */
3934+ if (win.current_tab.slot.directory.file.exists)
3935+ win.current_tab.slot.view_box.grab_focus ();
3936+ else
3937+ win.current_tab.content.grab_focus ();
3938 });
3939+
3940 entry.completed.connect(() => {
3941 string path = get_elements_path ();
3942 update_breadcrumbs (entry.text, path);
3943
3944=== modified file 'src/View/OverlayBar.vala'
3945--- src/View/OverlayBar.vala 2013-05-29 09:59:12 +0000
3946+++ src/View/OverlayBar.vala 2013-06-13 15:17:25 +0000
3947@@ -180,7 +180,7 @@
3948 real_update (list);
3949 } else {
3950 GOF.Window.Slot slot = window.current_tab.slot;
3951- if (slot != null) {
3952+ if (slot != null && slot.directory.file.exists) {
3953 unowned List<GOF.File> list = ((FM.Directory.View) slot.view_box).get_selection ();
3954 real_update (list);
3955 }
3956
3957=== modified file 'src/View/ViewContainer.vala'
3958--- src/View/ViewContainer.vala 2013-05-12 05:27:30 +0000
3959+++ src/View/ViewContainer.vala 2013-06-13 15:17:25 +0000
3960@@ -144,17 +144,19 @@
3961 tab_name = _("Home");
3962 else if (slot_path == "/")
3963 tab_name = _("File System");
3964+ else if (slot.directory.file.exists && (aslot.directory.file.info is FileInfo))
3965+ tab_name = aslot.directory.file.info.get_attribute_string (FileAttribute.STANDARD_DISPLAY_NAME);
3966 else
3967- tab_name = aslot.directory.file.info.get_attribute_string(FileAttribute.STANDARD_DISPLAY_NAME);
3968+ tab_name = _("This folder does not exist");
3969
3970 if (Posix.getuid() == 0)
3971 tab_name = tab_name + " " + _("(as Administrator)");
3972
3973 /* update window title */
3974- if(window.current_tab == this) {
3975- window.set_title(tab_name);
3976+ if (window.current_tab == this) {
3977+ window.set_title (tab_name);
3978 if (window.top_menu.location_bar != null)
3979- window.top_menu.location_bar.path = aslot.directory.file.location.get_parse_name();
3980+ window.top_menu.location_bar.path = aslot.directory.file.location.get_parse_name ();
3981 }
3982
3983 }
3984@@ -181,7 +183,7 @@
3985 /* we re just changing view keep the same location */
3986 location = get_active_slot ().location;
3987 /* store the old selection to restore it */
3988- if (slot != null) {
3989+ if (slot != null && slot.directory.file.exists) {
3990 unowned List<GOF.File> list = ((FM.Directory.View) slot.view_box).get_selection ();
3991 foreach (var elem in list)
3992 select_childs.prepend (elem.location);
3993@@ -216,7 +218,7 @@
3994 window.top_menu.view_switcher.mode = (ViewMode) view_mode;
3995
3996 connect_available_info();
3997- if (slot != null && slot.directory.file.exists) {
3998+ if (slot != null) {
3999 slot.directory.done_loading.connect (directory_done_loading);
4000 slot.directory.need_reload.connect (reload);
4001 }
4002
4003=== modified file 'src/View/Window.vala'
4004--- src/View/Window.vala 2013-05-25 06:23:09 +0000
4005+++ src/View/Window.vala 2013-06-13 15:17:25 +0000
4006@@ -276,7 +276,8 @@
4007 }
4008
4009 public void colorize_current_tab_selection (int n) {
4010- ((FM.Directory.View) current_tab.slot.view_box).colorize_selection(n);
4011+ if (current_tab.slot.directory.file.exists)
4012+ ((FM.Directory.View) current_tab.slot.view_box).colorize_selection(n);
4013 }
4014
4015
4016@@ -310,7 +311,7 @@
4017 /* update radio action view state */
4018 update_action_radio_view(current_tab.view_mode);
4019 /* sync selection */
4020- if (cur_slot.view_box != null)
4021+ if (cur_slot.view_box != null && cur_slot.directory.file.exists)
4022 ((FM.Directory.View) cur_slot.view_box).sync_selection();
4023 /* sync sidebar selection */
4024 loading_uri (current_tab.slot.directory.file.uri, sidebar);
4025
4026=== modified file 'src/exo-tree-view.c'
4027--- src/exo-tree-view.c 2013-06-01 20:18:10 +0000
4028+++ src/exo-tree-view.c 2013-06-13 15:17:25 +0000
4029@@ -298,7 +298,7 @@
4030 * remember the selected paths here and restore them later.
4031 */
4032 if (event->type == GDK_BUTTON_PRESS && (event->state & gtk_accelerator_get_default_mod_mask ()) == 0
4033- && path != NULL && gtk_tree_selection_path_is_selected (selection, path))
4034+ && path != NULL && GTK_IS_TREE_SELECTION (selection) && gtk_tree_selection_path_is_selected (selection, path))
4035 {
4036 /* if no custom select function is set, we simply use exo_noop_false here,
4037 * to tell the tree view that it may not alter the selection.
4038@@ -349,7 +349,7 @@
4039
4040 /* restore previous selection if the path is still selected */
4041 if (event->type == GDK_BUTTON_PRESS && (event->state & gtk_accelerator_get_default_mod_mask ()) == 0
4042- && path != NULL && gtk_tree_selection_path_is_selected (selection, path))
4043+ && path != NULL && GTK_IS_TREE_SELECTION (selection) && gtk_tree_selection_path_is_selected (selection, path))
4044 {
4045 /* check if we have to restore paths */
4046 if (G_LIKELY (gtk_tree_selection_get_select_function (selection) != (GtkTreeSelectionFunc) exo_noop_false))
4047@@ -361,7 +361,7 @@
4048 }
4049
4050 /* see bug http://bugzilla.xfce.org/show_bug.cgi?id=6230 for more information */
4051- if (G_LIKELY (gtk_tree_selection_get_select_function (selection) == (GtkTreeSelectionFunc) exo_noop_false))
4052+ if (G_LIKELY (GTK_IS_TREE_SELECTION (selection) && gtk_tree_selection_get_select_function (selection) == (GtkTreeSelectionFunc) exo_noop_false))
4053 {
4054 /* just reset the select function (previously set to exo_noop_false),
4055 * there's no clean way to do this, so what the heck.
4056
4057=== modified file 'src/marlin.vapi'
4058--- src/marlin.vapi 2012-05-30 18:28:41 +0000
4059+++ src/marlin.vapi 2013-06-13 15:17:25 +0000
4060@@ -106,6 +106,8 @@
4061 public void new_folder(Gtk.Widget? parent_view, Gdk.Point? target_point, File file, void* callback, void* data_callback);
4062 [CCode (cheader_filename = "marlin-file-operations.h")]
4063 public void new_folder_with_name(Gtk.Widget? parent_view, Gdk.Point? target_point, File file, string name, void* callback, void* data_callback);
4064+ [CCode (cheader_filename = "marlin-file-operations.h")]
4065+ public void new_folder_with_name_recursive(Gtk.Widget? parent_view, Gdk.Point? target_point, File file, string name, void* callback, void* data_callback);
4066 }
4067 }
4068

Subscribers

People subscribed via source and target branches

to all changes: