Merge lp:~ttosttos/pantheon-files/fix-1004294 into lp:~elementary-apps/pantheon-files/trunk

Proposed by ttosttos
Status: Merged
Approved by: xapantu
Approved revision: 835
Merged at revision: 838
Proposed branch: lp:~ttosttos/pantheon-files/fix-1004294
Merge into: lp:~elementary-apps/pantheon-files/trunk
Diff against target: 4188 lines (+2528/-1586)
7 files modified
CMakeLists.txt (+2/-1)
cmake/ValaPrecompile.cmake (+15/-3)
config.vala.cmake (+8/-0)
data/pantheon-files.desktop.in (+1/-98)
po/marlin.pot (+0/-1484)
po/pantheon-files.pot (+2500/-0)
src/CMakeLists.txt (+2/-0)
To merge this branch: bzr merge lp:~ttosttos/pantheon-files/fix-1004294
Reviewer Review Type Date Requested Status
xapantu (community) Approve
Cody Garver (community) Needs Fixing
Review via email: mp+107928@code.launchpad.net

Description of the change

- Translation domain changed from marlin to pantheon-files
- App launcher references gettext domain
- Translation template updated (includes now launcher strings)
- Added config.vala.cmake to pull launcher strings into template automatically
- Added required modification to CMakeLists.txt files
- Will re-enter the previous embedded translations via LP

To post a comment you must log in.
Revision history for this message
Cody Garver (codygarver) wrote :

(2:50:45 PM) xapantu: this is wrong: configure_file (${CMAKE_SOURCE_DIR}/config.vala.cmake ${CMAKE_SOURCE_DIR}/src/config.vala)
(2:50:56 PM) xapantu: I am not sure why you need to configure it at all in fact

review: Needs Fixing
Revision history for this message
ttosttos (ttosttos) wrote :

It's the same approach followed in noise, scratch and snap. Generating the config.vala file under ${CMAKE_BINARY_DIR} causes build to fail. Maybe someone with more cmake experience can advise on what changes are needed if any.

835. By ttosttos

Cleaned up cmake ValaPrecompile

Revision history for this message
ttosttos (ttosttos) wrote :

Updated cmake files to generate config.vala file under ${CMAKE_BINARY_DIR} and ValaPrecompile.cmake per https://bugs.launchpad.net/plank/+bug/1007058
Builds and runs fine.

Revision history for this message
ttosttos (ttosttos) wrote :

Meant ValaPrecompile.cmake was updated per https://code.launchpad.net/~xapantu/+junk/cmake-modules

Revision history for this message
xapantu (xapantu) wrote :

Looks good :)

review: Approve

Preview Diff

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

Subscribers

People subscribed via source and target branches

to all changes: