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
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt 2012-05-31 17:47:07 +0000
+++ CMakeLists.txt 2012-06-01 06:29:18 +0000
@@ -5,13 +5,14 @@
5project(Marlin)5project(Marlin)
6enable_testing()6enable_testing()
7list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake )7list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake )
8set(GETTEXT_PACKAGE "marlin")8set(GETTEXT_PACKAGE "pantheon-files")
9set(PIXMAP_DIR "${CMAKE_INSTALL_PREFIX}/share/pixmaps/marlin/")9set(PIXMAP_DIR "${CMAKE_INSTALL_PREFIX}/share/pixmaps/marlin/")
10set(GNOMELOCALEDIR "${CMAKE_INSTALL_PREFIX}/share/locale/")10set(GNOMELOCALEDIR "${CMAKE_INSTALL_PREFIX}/share/locale/")
11set(UI_DIR "${CMAKE_INSTALL_PREFIX}/share/pantheon-files/ui/")11set(UI_DIR "${CMAKE_INSTALL_PREFIX}/share/pantheon-files/ui/")
12set(PACKAGE_VERSION 0.1)12set(PACKAGE_VERSION 0.1)
13set(VERSION 0.1)13set(VERSION 0.1)
14configure_file (${CMAKE_SOURCE_DIR}/config.h.cmake ${CMAKE_BINARY_DIR}/config.h)14configure_file (${CMAKE_SOURCE_DIR}/config.h.cmake ${CMAKE_BINARY_DIR}/config.h)
15configure_file (${CMAKE_SOURCE_DIR}/config.vala.cmake ${CMAKE_BINARY_DIR}/src/config.vala)
15add_subdirectory (src)16add_subdirectory (src)
16add_subdirectory (data)17add_subdirectory (data)
17add_subdirectory (marlin-daemon)18add_subdirectory (marlin-daemon)
1819
=== modified file 'cmake/ValaPrecompile.cmake'
--- cmake/ValaPrecompile.cmake 2011-08-11 10:57:32 +0000
+++ cmake/ValaPrecompile.cmake 2012-06-01 06:29:18 +0000
@@ -117,11 +117,23 @@
117 set(out_files "")117 set(out_files "")
118 set(${output} "")118 set(${output} "")
119 foreach(src ${ARGS_DEFAULT_ARGS})119 foreach(src ${ARGS_DEFAULT_ARGS})
120 list(APPEND in_files "${CMAKE_CURRENT_SOURCE_DIR}/${src}")120 string(REPLACE ${CMAKE_CURRENT_SOURCE_DIR}/ "" src ${src})
121 string(REGEX MATCH "^/" IS_MATCHED ${src})
122 if(${IS_MATCHED} MATCHES "/")
123 list(APPEND in_files "${src}")
124 else()
125 list(APPEND in_files "${CMAKE_CURRENT_SOURCE_DIR}/${src}")
126 endif()
121 string(REPLACE ".vala" ".c" src ${src})127 string(REPLACE ".vala" ".c" src ${src})
122 string(REPLACE ".gs" ".c" src ${src})128 string(REPLACE ".gs" ".c" src ${src})
123 set(out_file "${DIRECTORY}/${src}")129 if(${IS_MATCHED} MATCHES "/")
124 list(APPEND out_files "${DIRECTORY}/${src}")130 get_filename_component(VALA_FILE_NAME ${src} NAME)
131 set(out_file "${CMAKE_CURRENT_BINARY_DIR}/${VALA_FILE_NAME}")
132 list(APPEND out_files "${CMAKE_CURRENT_BINARY_DIR}/${VALA_FILE_NAME}")
133 else()
134 set(out_file "${DIRECTORY}/${src}")
135 list(APPEND out_files "${DIRECTORY}/${src}")
136 endif()
125 list(APPEND ${output} ${out_file})137 list(APPEND ${output} ${out_file})
126 endforeach(src ${ARGS_DEFAULT_ARGS})138 endforeach(src ${ARGS_DEFAULT_ARGS})
127139
128140
=== added file 'config.vala.cmake'
--- config.vala.cmake 1970-01-01 00:00:00 +0000
+++ config.vala.cmake 2012-06-01 06:29:18 +0000
@@ -0,0 +1,8 @@
1namespace Constants {
2 /* Translatable launcher (.desktop) strings to be added to */
3 /* template (.pot) file. These strings should reflect any */
4 /* changes in these launcher keys in .desktop file. */
5 public const string COMMENT = N_("Browse your files");
6 public const string GENERIC_NAME = N_("File Manager");
7}
8
09
=== modified file 'data/pantheon-files.desktop.in'
--- data/pantheon-files.desktop.in 2012-05-31 17:19:38 +0000
+++ data/pantheon-files.desktop.in 2012-06-01 06:29:18 +0000
@@ -1,105 +1,7 @@
1[Desktop Entry]1[Desktop Entry]
2Name=Files2Name=Files
3Comment=Browse your files3Comment=Browse your files
4Comment[ar]=تصفح ملفات النظام بمدير الملفات
5Comment[ast]=Restolar el sistema de ficheros col alministrador de ficheros
6Comment[be]=Вандроўка па файлавай сыстэме з кіраўніком файлаў
7Comment[bn]=ফাইল ম্যানেজার দিয়ে ফাইলসিস্টেম ব্রাউজ করুন
8Comment[ca]=Navega el sistema de fitxers amb el gestor de fitxers
9Comment[cs]=Procházet systém souborů správcem souborů
10Comment[da]=Gennemsøg filsystem med filhåndteringen
11Comment[de]=Das Dateisystem im Dateimanager anzeigen
12Comment[dz]=ཡིག་སྣོད་འཛིན་སྐྱོང་པ་དང་བཅས་ཡིག་སྣོད་རིམ་ལུགས་འདི་བརྡ་འཚོལ་འབད།
13Comment[el]=Περιήγηση του συστήματος αρχείων με τον διαχειριστή αρχείων
14Comment[en_GB]=Browse the filesystem with the file manager
15Comment[eo]=Rigardu dosier-sistemon per dosier-administrilo
16Comment[es]=Explore el sistema de archivos con el administrador de archivos
17Comment[et]=Lehitseda failisüsteemi kasutades failihaldurit
18Comment[eu]=Fitxategi kudeatzaileaz fitxategi sistema arakatu
19Comment[fi]=Selaa tiedostojärjestelmää tiedostonhallinnassa
20Comment[fr]=Parcourir le système de fichiers avec le gestionnaire de fichiers
21Comment[gl]=Explorar o sistema de ficheiros co xestor de ficheiros
22Comment[he]=עיון במערכת הקבצים עם מנהל הקבצים
23Comment[hr]=Pregledaj datotečni sustav sa upraviteljem datoteka
24Comment[hu]=A fájlrendszer böngészése a fájlkezelővel
25Comment[id]=Ramban sistem berkas dengan manajer berkas
26Comment[it]=Esplora il file system con il gestore di file
27Comment[ja]=ファイルマネージャでファイルシステムを参照します
28Comment[kk]=Файлдық жүйені файлдар басқарушысымен шолу
29Comment[ko]=화일 관리자로 화일시스템을 탐색합니다.
30Comment[lt]=Naršyti failų sistemą su failų tvarkykle
31Comment[lv]=Pārlūko failu sistēmu ar failu pārvaldnieku
32Comment[mk]=Пребарајте го датотечниот систем со менаџерот на датотки
33Comment[nb]=Utforsk filsystemet med filbehandleren
34Comment[nl]=Met de bestandsbeheerder door het bestandssysteem bladeren
35Comment[nn]=Bla gjennom filsystemet med filhandsamaren
36Comment[pa]=ਫਾਇਲ ਮੈਨੇਜਰ ਨਾਲ ਫਾਇਲ ਸਿਸਟਮ ਨਾਲ ਬਰਾਊਜ਼ ਕਰੋ
37Comment[pl]=Przegląda system plików za pomocą menedżera plików
38Comment[pt]=Navegar o sistema de ficheiros com o gestor de ficheiros
39Comment[pt_BR]=Navegue no sistema de arquivos com o gerenciador de arquivos
40Comment[ro]=Parcurgeți sistemul de fișiere cu managerul de fișiere
41Comment[ru]=Просмотр файловой системы с помощью файлового менеджера
42Comment[sk]=Prehliada súborový systém pomocou správcu súborov
43Comment[sq]=Shfletoni sistemin e kartelave me përgjegjësin e kartelave
44Comment[sv]=Bläddra i filsystemet med filhanteraren
45Comment[tr]=Dosya yöneticisi ile gezin
46Comment[ug]=ھۆججەت باشقۇرغۇدا ھۆججەت سىستېمىسىنى كور
47Comment[uk]=Перегляд файлової системи менеджером файлів
48Comment[ur]=فائل سسٹم کو فائل منیجر سے دیکھیں
49Comment[ur_PK]=فائل سسٹم کو فائل منیجر سے دیکھیں
50Comment[vi]=Duyệt hê thống tập tin với trình quản lý tập tin
51Comment[zh_CN]=使用文件管理器浏览文件系统
52Comment[zh_TW]=使用檔案管理員瀏覽檔案系統
53GenericName=File Manager4GenericName=File Manager
54GenericName[ar]=مدير الملفات
55GenericName[ast]=Alministrador de ficheros
56GenericName[be]=Кіраўнік файлаў
57GenericName[bn]=ফাইল ব্যবস্থাপক
58GenericName[ca]=Gestor de fitxers
59GenericName[cs]=Správce souborů
60GenericName[da]=Filhåndtering
61GenericName[de]=Dateimanager
62GenericName[dz]=ཡིག་སྣོད་འཛིན་སྐྱོང་པ།
63GenericName[el]=Διαχειριστής αρχείων
64GenericName[en_GB]=File Manager
65GenericName[eo]=Dosier-administrilo
66GenericName[es]=Administrador de archivos
67GenericName[et]=Failihaldur
68GenericName[eu]=Fitxategi kudeatzailea
69GenericName[fi]=Tiedostonhallinta
70GenericName[fr]=Gestionnaire de fichiers
71GenericName[gl]=Xestor de ficheiros
72GenericName[he]=מנהל קבצים
73GenericName[hr]=Upravitelj datotekama
74GenericName[hu]=Fájlkezelő
75GenericName[id]=Manajer Berkas
76GenericName[it]=Gestore di file
77GenericName[ja]=ファイルマネージャ
78GenericName[kk]=Файлдар басқарушысы
79GenericName[ko]=화일 관리자
80GenericName[ku]=Gerinendeyê Pelan
81GenericName[lt]=Failų tvarkyklė
82GenericName[lv]=Failu pārvaldnieks
83GenericName[mk]=Менаџер на датотеки
84GenericName[nb]=Filbehandler
85GenericName[nl]=Bestandsbeheerder
86GenericName[nn]=Filhandsamar
87GenericName[pa]=ਫਾਇਲ ਮੈਨੇਜਰ
88GenericName[pl]=Menedżer plików
89GenericName[pt]=Gestor de ficheiros
90GenericName[pt_BR]=Gerenciador de arquivos
91GenericName[ro]=Manager de fișiere
92GenericName[ru]=Файловый менеджер
93GenericName[sk]=Správca súborov
94GenericName[sq]=Përgjegjës Kartelash
95GenericName[sv]=Filhanterare
96GenericName[tr]=Dosya Yöneticisi
97GenericName[ug]=ھۆججەت باشقۇرغۇچ
98GenericName[uk]=Файловий менеджер
99GenericName[ur]=فائل منیجر
100GenericName[ur_PK]=فائل منیجر
101GenericName[zh_CN]=文件管理器
102GenericName[zh_TW]=檔案管理員
103Exec=pantheon-files %U5Exec=pantheon-files %U
104Icon=system-file-manager6Icon=system-file-manager
105Terminal=false7Terminal=false
@@ -107,6 +9,7 @@
107Type=Application9Type=Application
108MimeType=x-directory/gnome-default-handler;x-directory/normal;inode/directory;10MimeType=x-directory/gnome-default-handler;x-directory/normal;inode/directory;
109Categories=System;Utility;Core;GTK;FileTools;FileManager;11Categories=System;Utility;Core;GTK;FileTools;FileManager;
12X-GNOME-Gettext-Domain=pantheon-files
11013
111X-Ayatana-Desktop-Shortcuts=TabNew;WindowNew;Root14X-Ayatana-Desktop-Shortcuts=TabNew;WindowNew;Root
11215
11316
=== removed file 'po/marlin.pot'
--- po/marlin.pot 2012-05-31 17:19:38 +0000
+++ po/marlin.pot 1970-01-01 00:00:00 +0000
@@ -1,1484 +0,0 @@
1# SOME DESCRIPTIVE TITLE.
2# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3# This file is distributed under the same license as the PACKAGE package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5#
6#, fuzzy
7msgid ""
8msgstr ""
9"Project-Id-Version: PACKAGE VERSION\n"
10"Report-Msgid-Bugs-To: \n"
11"POT-Creation-Date: 2012-01-02 20:43+0100\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n"
15"Language: \n"
16"MIME-Version: 1.0\n"
17"Content-Type: text/plain; charset=UTF-8\n"
18"Content-Transfer-Encoding: 8bit\n"
19"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
21#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:52
22msgid "Properties"
23msgstr ""
24
25#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:98
26msgid "Info"
27msgstr ""
28
29#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:103
30msgid "Permissions"
31msgstr ""
32
33#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:114
34msgid "Preview"
35msgstr ""
36
37#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:310
38msgid "Created"
39msgstr ""
40
41#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:311
42#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/ContextView.vala:320
43msgid "Modified"
44msgstr ""
45
46#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:312
47msgid "Last Access"
48msgstr ""
49
50#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:316
51msgid "Deleted"
52msgstr ""
53
54#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:320
55msgid "MimeType"
56msgstr ""
57
58#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:328
59msgid "MimeTypes"
60msgstr ""
61
62#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:332
63msgid "Location"
64msgstr ""
65
66#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:334
67#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/ContextView.vala:316
68msgid "Target"
69msgstr ""
70
71#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:340
72msgid "Origin Location"
73msgstr ""
74
75#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:378
76msgid "Other application..."
77msgstr ""
78
79#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:402
80msgid "Open with"
81msgstr ""
82
83#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:524
84msgid "Read"
85msgstr ""
86
87#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:529
88msgid "Write"
89msgstr ""
90
91#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:534
92msgid "Execute"
93msgstr ""
94
95#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:752
96#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:765
97#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/ContextView.vala:321
98msgid "Owner"
99msgstr ""
100
101#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:757
102#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:769
103msgid "Group"
104msgstr ""
105
106#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:773
107msgid "Everyone"
108msgstr ""
109
110#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/PropertiesWindow.vala:1025
111msgid "Select an aplication to open "
112msgstr ""
113
114#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/ContextView.vala:312
115msgid "Name"
116msgstr ""
117
118#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/ContextView.vala:313
119msgid "Type"
120msgstr ""
121
122#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/ContextView.vala:318
123msgid "Size"
124msgstr ""
125
126#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/DirectoryNotFound.vala:72
127#, c-format
128msgid "Folder does not exist"
129msgstr ""
130
131#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/DirectoryNotFound.vala:75
132#, c-format
133msgid "Marlin can't find the folder %s"
134msgstr ""
135
136#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/DirectoryNotFound.vala:80
137msgid "Create"
138msgstr ""
139
140#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/DirectoryNotFound.vala:80
141#, c-format
142msgid "Create the folder %s"
143msgstr ""
144
145#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:31
146msgid "Marlin Preferences"
147msgstr ""
148
149#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:48
150msgid "Single click to open:"
151msgstr ""
152
153#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:58
154msgid "Mouse auto-selection speed:"
155msgstr ""
156
157#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:75
158msgid "Properties Dialog set modal:"
159msgstr ""
160
161#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:86
162msgid "Default File Manager:"
163msgstr ""
164
165#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:95
166msgid "Behavior"
167msgstr ""
168
169#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:102
170msgid "small"
171msgstr ""
172
173#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:103
174msgid "medium"
175msgstr ""
176
177#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:104
178msgid "large"
179msgstr ""
180
181#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:105
182msgid "extra-large"
183msgstr ""
184
185#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:126
186msgid "Sidebar icon size:"
187msgstr ""
188
189#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:137
190msgid "iso"
191msgstr ""
192
193#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:138
194msgid "locale"
195msgstr ""
196
197#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:139
198msgid "informal"
199msgstr ""
200
201#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:146
202msgid "Date format:"
203msgstr ""
204
205#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:154
206msgid "Display"
207msgstr ""
208
209#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/SettingsDialog.vala:203
210msgid "Extensions"
211msgstr ""
212
213#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/LocationBar.vala:95
214#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:370
215msgid "Trash"
216msgstr ""
217
218#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/LocationBar.vala:96
219#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:588
220msgid "Network"
221msgstr ""
222
223#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/ViewContainer.vala:131
224#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:324
225msgid "Home"
226msgstr ""
227
228#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/View/ViewContainer.vala:133
229#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:394
230msgid "File System"
231msgstr ""
232
233#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/exo-tree-view.c:167
234msgid "Single Click"
235msgstr ""
236
237#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/exo-tree-view.c:168
238msgid "Whether the items in the view can be activated with single clicks"
239msgstr ""
240
241#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/exo-tree-view.c:184
242msgid "Single Click Timeout"
243msgstr ""
244
245#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/exo-tree-view.c:185
246msgid ""
247"The amount of time after which the item under the mouse cursor will be "
248"selected automatically in single click mode"
249msgstr ""
250
251#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:124
252msgid "SSH"
253msgstr ""
254
255#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:127
256msgid "Public FTP"
257msgstr ""
258
259#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:129
260msgid "FTP (with login)"
261msgstr ""
262
263#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:132
264msgid "Windows share"
265msgstr ""
266
267#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:134
268msgid "WebDAV (HTTP)"
269msgstr ""
270
271#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:136
272msgid "Secure WebDAV (HTTPS)"
273msgstr ""
274
275#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:183
276msgid "Connecting..."
277msgstr ""
278
279#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:207
280msgid ""
281"Can't load the supported server method list.\n"
282"Please check your gvfs installation."
283msgstr ""
284
285#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:285
286#, c-format
287msgid "The folder \"%s\" cannot be opened on \"%s\"."
288msgstr ""
289
290#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:295
291#, c-format
292msgid "The server at \"%s\" cannot be found."
293msgstr ""
294
295#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:330
296msgid "Try Again"
297msgstr ""
298
299#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:395
300msgid "Please verify your user details."
301msgstr ""
302
303#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:425
304msgid "Continue"
305msgstr ""
306
307#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:750
308#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:1169
309msgid "C_onnect"
310msgstr ""
311
312#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:875
313msgid "Connect to Server"
314msgstr ""
315
316#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:893
317msgid "Server Details"
318msgstr ""
319
320#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:914
321msgid "_Server:"
322msgstr ""
323
324#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:938
325msgid "_Port:"
326msgstr ""
327
328#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:956
329msgid "_Type:"
330msgstr ""
331
332#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:1030
333msgid "Sh_are:"
334msgstr ""
335
336#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:1050
337msgid "_Folder:"
338msgstr ""
339
340#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:1073
341msgid "User Details"
342msgstr ""
343
344#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:1093
345msgid "_Domain name:"
346msgstr ""
347
348#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:1112
349msgid "_Username:"
350msgstr ""
351
352#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:1132
353msgid "Pass_word:"
354msgstr ""
355
356#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:1153
357msgid "_Remember this password"
358msgstr ""
359
360#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-connect-server-dialog.c:1258
361msgid "Operation cancelled"
362msgstr ""
363
364#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-compact-view.c:86
365msgid "Compact directory listing"
366msgstr ""
367
368#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-compact-view.c:87
369msgid "Compact view"
370msgstr ""
371
372#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-columns-view.c:82
373#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-abstract-icon-view.c:569
374#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-list-view.c:623
375msgid "This folder is empty."
376msgstr ""
377
378#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-columns-view.c:186
379#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-abstract-icon-view.c:139
380#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-list-view.c:199
381#, c-format
382msgid "Failed to rename %s to %s"
383msgstr ""
384
385#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-dnd.c:779
386msgid "_Move Here"
387msgstr ""
388
389#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-dnd.c:784
390msgid "_Copy Here"
391msgstr ""
392
393#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-dnd.c:789
394msgid "_Link Here"
395msgstr ""
396
397#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-dnd.c:794
398msgid "Set as _Background"
399msgstr ""
400
401#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-dnd.c:801
402msgid "Cancel"
403msgstr ""
404
405#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-dnd.c:893
406#, c-format
407msgid "Failed to execute file \"%s\""
408msgstr ""
409
410#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-icon-view.c:86
411msgid "Icon directory listing"
412msgstr ""
413
414#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-icon-view.c:87
415msgid "Icon view"
416msgstr ""
417
418#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-toolbar-editor.c:445
419msgid "Customize Toolbar"
420msgstr ""
421
422#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-toolbar-editor.c:461
423msgid ""
424"Select items to be displayed on the toolbar. Items can be reordered by drag "
425"and drop."
426msgstr ""
427
428#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-toolbar-editor.c:477
429msgid "Available Items"
430msgstr ""
431
432#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-toolbar-editor.c:498
433msgid "Displayed Items"
434msgstr ""
435
436#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:310
437msgid "Personal"
438msgstr ""
439
440#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:315
441msgid "Your common places and bookmarks"
442msgstr ""
443
444#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:329
445msgid "Open your personal folder"
446msgstr ""
447
448#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:372
449msgid "Open the trash"
450msgstr ""
451
452#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:382
453msgid "Devices"
454msgstr ""
455
456#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:387
457msgid "Your local partitions and devices"
458msgstr ""
459
460#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:396
461msgid "Open the contents of the File System"
462msgstr ""
463
464#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:455
465#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:480
466#, c-format
467msgid "Mount and open %s"
468msgstr ""
469
470#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:593
471msgid "Your network places"
472msgstr ""
473
474#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:624
475msgid "Entire network"
476msgstr ""
477
478#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:626
479msgid "Browse the contents of the network"
480msgstr ""
481
482#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:1610
483msgid "_Start"
484msgstr ""
485
486#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:1611
487msgid "_Stop"
488msgstr ""
489
490#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:1616
491msgid "_Power On"
492msgstr ""
493
494#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:1617
495msgid "_Safely Remove Drive"
496msgstr ""
497
498#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:1620
499msgid "_Connect Drive"
500msgstr ""
501
502#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:1621
503msgid "_Disconnect Drive"
504msgstr ""
505
506#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:1624
507msgid "_Start Multi-disk Device"
508msgstr ""
509
510#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:1625
511msgid "_Stop Multi-disk Device"
512msgstr ""
513
514#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:1629
515msgid "_Unlock Drive"
516msgstr ""
517
518#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:1630
519msgid "_Lock Drive"
520msgstr ""
521
522#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:1704
523#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:2251
524#, c-format
525msgid "Unable to start %s"
526msgstr ""
527
528#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:1994
529#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:2023
530#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:2052
531#, c-format
532msgid "Unable to eject %s"
533msgstr ""
534
535#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:2197
536#, c-format
537msgid "Unable to poll %s for media changes"
538msgstr ""
539
540#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:2307
541#, c-format
542msgid "Unable to stop %s"
543msgstr ""
544
545#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:2399
546#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-directory-view.c:1882
547msgid "_Open"
548msgstr ""
549
550#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:2407
551#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-directory-view.c:1902
552msgid "Open in New _Tab"
553msgstr ""
554
555#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:2414
556#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-directory-view.c:1911
557msgid "Open in New _Window"
558msgstr ""
559
560#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:2423
561msgid "Remove"
562msgstr ""
563
564#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:2432
565msgid "Rename..."
566msgstr ""
567
568#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:2444
569msgid "_Mount"
570msgstr ""
571
572#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:2451
573msgid "_Unmount"
574msgstr ""
575
576#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:2458
577msgid "_Eject"
578msgstr ""
579
580#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:2466
581#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1410
582#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2281
583msgid "Empty _Trash"
584msgstr ""
585
586#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:3123
587msgid "Icon Size"
588msgstr ""
589
590#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-places-sidebar.c:3124
591msgid "Icon size"
592msgstr ""
593
594#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-directory-view.c:1090
595msgid "Invalid filename provided by XDS drag site"
596msgstr ""
597
598#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-directory-view.c:1248
599#, c-format
600msgid "Failed to create a link for the URL \"%s\""
601msgstr ""
602
603#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-directory-view.c:1730
604#, c-format
605msgid "Use \"%s\" to open the selected item"
606msgid_plural "Use \"%s\" to open the selected items"
607msgstr[0] ""
608msgstr[1] ""
609
610#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-directory-view.c:1876
611#, c-format
612msgid "_Open With %s"
613msgstr ""
614
615#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-directory-view.c:1898
616#, c-format
617msgid "Open in %'d New _Tabs"
618msgstr ""
619
620#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-directory-view.c:1907
621#, c-format
622msgid "Open in %'d New _Windows"
623msgstr ""
624
625#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-directory-view.c:3236
626msgid "Set as default"
627msgstr ""
628
629#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/fm-directory-view.c:3454
630msgid "Set Color:"
631msgstr ""
632
633#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-clipboard-manager.c:380
634msgid "There is nothing on the clipboard to paste"
635msgstr ""
636
637#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-progress-ui-handler.c:113
638#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-progress-ui-handler.c:163
639#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-progress-ui-handler.c:470
640#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-progress-ui-handler.c:526
641msgid "File Operations"
642msgstr ""
643
644#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-progress-ui-handler.c:122
645msgid "Show Details"
646msgstr ""
647
648#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-progress-ui-handler.c:157
649#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-progress-ui-handler.c:179
650#, c-format
651msgid "%'d file operation active"
652msgid_plural "%'d file operations active"
653msgstr[0] ""
654msgstr[1] ""
655
656#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-progress-ui-handler.c:279
657msgid "Show copy dialog"
658msgstr ""
659
660#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-progress-ui-handler.c:290
661msgid "Cancel all in-progress actions"
662msgstr ""
663
664#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-progress-ui-handler.c:527
665msgid "All file operations have been successfully completed"
666msgstr ""
667
668#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/eel-editable-label.c:3188
669msgid "Select All"
670msgstr ""
671
672#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/eel-editable-label.c:3199
673msgid "Input Methods"
674msgstr ""
675
676#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/exo-icon-view.c:887
677msgid "Layout mode"
678msgstr ""
679
680#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/exo-icon-view.c:888
681msgid "The layout mode"
682msgstr ""
683
684#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-application.c:439
685msgid ""
686"\n"
687"\n"
688"Browse the file system with the file manager"
689msgstr ""
690
691#: /home/am_sav/dev/marlin/marlin51/marlin/po/../src/marlin-application.c:459
692msgid "--quit cannot be used with URIs."
693msgstr ""
694
695#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-progress-info.c:192
696#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-progress-info.c:210
697msgid "Preparing"
698msgstr ""
699
700#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/eel-vfs-extensions.c:72
701msgid " (invalid Unicode)"
702msgstr ""
703
704#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:199
705#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:733
706msgid "_Skip"
707msgstr ""
708
709#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:200
710msgid "S_kip All"
711msgstr ""
712
713#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:201
714msgid "_Retry"
715msgstr ""
716
717#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:202
718msgid "Delete _All"
719msgstr ""
720
721#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:203
722msgid "_Replace"
723msgstr ""
724
725#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:204
726msgid "Replace _All"
727msgstr ""
728
729#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:205
730msgid "_Merge"
731msgstr ""
732
733#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:206
734msgid "Merge _All"
735msgstr ""
736
737#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:207
738msgid "Copy _Anyway"
739msgstr ""
740
741#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:293
742#, c-format
743msgid "%'d second"
744msgid_plural "%'d seconds"
745msgstr[0] ""
746msgstr[1] ""
747
748#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:298
749#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:309
750#, c-format
751msgid "%'d minute"
752msgid_plural "%'d minutes"
753msgstr[0] ""
754msgstr[1] ""
755
756#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:308
757#, c-format
758msgid "%'d hour"
759msgid_plural "%'d hours"
760msgstr[0] ""
761msgstr[1] ""
762
763#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:316
764#, c-format
765msgid "approximately %'d hour"
766msgid_plural "approximately %'d hours"
767msgstr[0] ""
768msgstr[1] ""
769
770#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:392
771#, c-format
772msgid "Link to %s"
773msgstr ""
774
775#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:396
776#, c-format
777msgid "Another link to %s"
778msgstr ""
779
780#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:412
781#, c-format
782msgid "%'dst link to %s"
783msgstr ""
784
785#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:416
786#, c-format
787msgid "%'dnd link to %s"
788msgstr ""
789
790#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:420
791#, c-format
792msgid "%'drd link to %s"
793msgstr ""
794
795#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:424
796#, c-format
797msgid "%'dth link to %s"
798msgstr ""
799
800#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:616
801msgid " ("
802msgstr ""
803
804#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:624
805#, c-format
806msgid " (%'d"
807msgstr ""
808
809#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1369
810msgid "Are you sure you want to permanently delete \"%B\" from the trash?"
811msgstr ""
812
813#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1372
814#, c-format
815msgid ""
816"Are you sure you want to permanently delete the %'d selected item from the "
817"trash?"
818msgid_plural ""
819"Are you sure you want to permanently delete the %'d selected items from the "
820"trash?"
821msgstr[0] ""
822msgstr[1] ""
823
824#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1382
825#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1450
826msgid "If you delete an item, it will be permanently lost."
827msgstr ""
828
829#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1403
830msgid "Empty all items from Trash?"
831msgstr ""
832
833#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1407
834msgid "All items in the Trash will be permanently deleted."
835msgstr ""
836
837#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1438
838msgid "Are you sure you want to permanently delete \"%B\"?"
839msgstr ""
840
841#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1441
842#, c-format
843msgid "Are you sure you want to permanently delete the %'d selected item?"
844msgid_plural ""
845"Are you sure you want to permanently delete the %'d selected items?"
846msgstr[0] ""
847msgstr[1] ""
848
849#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1466
850#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1498
851msgid "Deleting files"
852msgstr ""
853
854#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1492
855#, c-format
856msgid "%'d file left to delete"
857msgid_plural "%'d files left to delete"
858msgstr[0] ""
859msgstr[1] ""
860
861#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1512
862msgid "%T left"
863msgid_plural "%T left"
864msgstr[0] ""
865msgstr[1] ""
866
867#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1580
868#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1614
869#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1653
870#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1730
871#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2544
872msgid "Error while deleting."
873msgstr ""
874
875#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1584
876msgid ""
877"Files in the folder \"%B\" cannot be deleted because you do not have "
878"permissions to see them."
879msgstr ""
880
881#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1587
882#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2603
883#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3594
884msgid ""
885"There was an error getting information about the files in the folder \"%B\"."
886msgstr ""
887
888#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1596
889#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3603
890msgid "_Skip files"
891msgstr ""
892
893#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1617
894msgid ""
895"The folder \"%B\" cannot be deleted because you do not have permissions to "
896"read it."
897msgstr ""
898
899#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1620
900#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2642
901#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3639
902msgid "There was an error reading the folder \"%B\"."
903msgstr ""
904
905#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1654
906msgid "Could not remove the folder %B."
907msgstr ""
908
909#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1731
910msgid "There was an error deleting %B."
911msgstr ""
912
913#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1807
914#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1819
915msgid "Moving files to trash"
916msgstr ""
917
918#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1821
919#, c-format
920msgid "%'d file left to trash"
921msgid_plural "%'d files left to trash"
922msgstr[0] ""
923msgstr[1] ""
924
925#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1872
926msgid "Cannot move file to trash, do you want to delete immediately?"
927msgstr ""
928
929#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:1873
930msgid "The file \"%B\" cannot be moved to the trash."
931msgstr ""
932
933#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2049
934msgid "Trashing Files"
935msgstr ""
936
937#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2051
938msgid "Deleting Files"
939msgstr ""
940
941#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2114
942msgid "Unable to eject %V"
943msgstr ""
944
945#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2116
946msgid "Unable to unmount %V"
947msgstr ""
948
949#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2271
950msgid "Do you want to empty the trash before you unmount?"
951msgstr ""
952
953#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2273
954msgid ""
955"In order to regain the free space on this volume the trash must be emptied. "
956"All trashed items on the volume will be permanently lost."
957msgstr ""
958
959#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2279
960msgid "Do _not Empty Trash"
961msgstr ""
962
963#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2334
964msgid "Emptying the trash"
965msgstr ""
966
967#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2401
968#, c-format
969msgid "Unable to mount %s"
970msgstr ""
971
972#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2479
973#, c-format
974msgid "Preparing to copy %'d file (%S)"
975msgid_plural "Preparing to copy %'d files (%S)"
976msgstr[0] ""
977msgstr[1] ""
978
979#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2485
980#, c-format
981msgid "Preparing to move %'d file (%S)"
982msgid_plural "Preparing to move %'d files (%S)"
983msgstr[0] ""
984msgstr[1] ""
985
986#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2491
987#, c-format
988msgid "Preparing to delete %'d file (%S)"
989msgid_plural "Preparing to delete %'d files (%S)"
990msgstr[0] ""
991msgstr[1] ""
992
993#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2497
994#, c-format
995msgid "Preparing to trash %'d file"
996msgid_plural "Preparing to trash %'d files"
997msgstr[0] ""
998msgstr[1] ""
999
1000#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2540
1001#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3460
1002#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3586
1003#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3631
1004msgid "Error while copying."
1005msgstr ""
1006
1007#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2542
1008#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3584
1009#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3629
1010msgid "Error while moving."
1011msgstr ""
1012
1013#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2546
1014msgid "Error while moving files to trash."
1015msgstr ""
1016
1017#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2600
1018msgid ""
1019"Files in the folder \"%B\" cannot be handled because you do not have "
1020"permissions to see them."
1021msgstr ""
1022
1023#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2639
1024msgid ""
1025"The folder \"%B\" cannot be handled because you do not have permissions to "
1026"read it."
1027msgstr ""
1028
1029#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2716
1030msgid ""
1031"The file \"%B\" cannot be handled because you do not have permissions to "
1032"read it."
1033msgstr ""
1034
1035#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2719
1036msgid "There was an error getting information about \"%B\"."
1037msgstr ""
1038
1039#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2819
1040#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2861
1041#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2894
1042#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2924
1043msgid "Error while copying to \"%B\"."
1044msgstr ""
1045
1046#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2823
1047msgid "You do not have permissions to access the destination folder."
1048msgstr ""
1049
1050#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2825
1051msgid "There was an error getting information about the destination."
1052msgstr ""
1053
1054#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2862
1055msgid "The destination is not a folder."
1056msgstr ""
1057
1058#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2895
1059msgid ""
1060"There is not enough space on the destination. Try to remove files to make "
1061"space."
1062msgstr ""
1063
1064#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2897
1065#, c-format
1066msgid "There is %S available, but %S is required."
1067msgstr ""
1068
1069#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2925
1070msgid "The destination is read-only."
1071msgstr ""
1072
1073#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2986
1074msgid "Moving \"%B\" to \"%B\""
1075msgstr ""
1076
1077#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2987
1078msgid "Copying \"%B\" to \"%B\""
1079msgstr ""
1080
1081#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2991
1082msgid "Duplicating \"%B\""
1083msgstr ""
1084
1085#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2995
1086msgid "Moving %'d file (in \"%B\") to \"%B\""
1087msgid_plural "Moving %'d files (in \"%B\") to \"%B\""
1088msgstr[0] ""
1089msgstr[1] ""
1090
1091#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:2998
1092msgid "Copying %'d file (in \"%B\") to \"%B\""
1093msgid_plural "Copying %'d files (in \"%B\") to \"%B\""
1094msgstr[0] ""
1095msgstr[1] ""
1096
1097#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3005
1098msgid "Duplicating %'d file (in \"%B\")"
1099msgid_plural "Duplicating %'d files (in \"%B\")"
1100msgstr[0] ""
1101msgstr[1] ""
1102
1103#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3014
1104msgid "Moving %'d file to \"%B\""
1105msgid_plural "Moving %'d files to \"%B\""
1106msgstr[0] ""
1107msgstr[1] ""
1108
1109#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3018
1110msgid "Copying %'d file to \"%B\""
1111msgid_plural "Copying %'d files to \"%B\""
1112msgstr[0] ""
1113msgstr[1] ""
1114
1115#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3023
1116#, c-format
1117msgid "Duplicating %'d file"
1118msgid_plural "Duplicating %'d files"
1119msgstr[0] ""
1120msgstr[1] ""
1121
1122#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3074
1123#, c-format
1124msgid "%S of %S"
1125msgstr ""
1126
1127#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3085
1128msgid "%S of %S — %T left (%S/sec)"
1129msgid_plural "%S of %S — %T left (%S/sec)"
1130msgstr[0] ""
1131msgstr[1] ""
1132
1133#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3464
1134msgid ""
1135"The folder \"%B\" cannot be copied because you do not have permissions to "
1136"create it in the destination."
1137msgstr ""
1138
1139#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3467
1140msgid "There was an error creating the folder \"%B\"."
1141msgstr ""
1142
1143#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3591
1144msgid ""
1145"Files in the folder \"%B\" cannot be copied because you do not have "
1146"permissions to see them."
1147msgstr ""
1148
1149#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3636
1150msgid ""
1151"The folder \"%B\" cannot be copied because you do not have permissions to "
1152"read it."
1153msgstr ""
1154
1155#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3681
1156#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4378
1157#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4952
1158msgid "Error while moving \"%B\"."
1159msgstr ""
1160
1161#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3682
1162msgid "Could not remove the source folder."
1163msgstr ""
1164
1165#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3767
1166#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3808
1167#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4380
1168#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4451
1169msgid "Error while copying \"%B\"."
1170msgstr ""
1171
1172#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3768
1173#, c-format
1174msgid "Could not remove files from the already existing folder %F."
1175msgstr ""
1176
1177#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:3809
1178#, c-format
1179msgid "Could not remove the already existing file %F."
1180msgstr ""
1181
1182#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4138
1183#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4796
1184msgid "You cannot move a folder into itself."
1185msgstr ""
1186
1187#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4139
1188#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4797
1189msgid "You cannot copy a folder into itself."
1190msgstr ""
1191
1192#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4140
1193#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4798
1194msgid "The destination folder is inside the source folder."
1195msgstr ""
1196
1197#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4171
1198msgid "You cannot move a file over itself."
1199msgstr ""
1200
1201#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4172
1202msgid "You cannot copy a file over itself."
1203msgstr ""
1204
1205#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4173
1206msgid "The source file would be overwritten by the destination."
1207msgstr ""
1208
1209#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4382
1210#, c-format
1211msgid "Could not remove the already existing file with the same name in %F."
1212msgstr ""
1213
1214#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4452
1215#, c-format
1216msgid "There was an error copying the file into %F."
1217msgstr ""
1218
1219#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4680
1220msgid "Copying Files"
1221msgstr ""
1222
1223#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4696
1224msgid "Preparing to move to \"%B\""
1225msgstr ""
1226
1227#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4708
1228#, c-format
1229msgid "Preparing to move %'d file"
1230msgid_plural "Preparing to move %'d files"
1231msgstr[0] ""
1232msgstr[1] ""
1233
1234#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:4953
1235#, c-format
1236msgid "There was an error moving the file into %F."
1237msgstr ""
1238
1239#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:5216
1240msgid "Moving Files"
1241msgstr ""
1242
1243#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:5232
1244msgid "Creating links in \"%B\""
1245msgstr ""
1246
1247#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:5243
1248#, c-format
1249msgid "Making link to %'d file"
1250msgid_plural "Making links to %'d files"
1251msgstr[0] ""
1252msgstr[1] ""
1253
1254#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:5373
1255msgid "Error while creating link to %B."
1256msgstr ""
1257
1258#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:5375
1259msgid "Symbolic links only supported for local files"
1260msgstr ""
1261
1262#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:5378
1263msgid "The target doesn't support symbolic links."
1264msgstr ""
1265
1266#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:5381
1267#, c-format
1268msgid "There was an error creating the symlink in %F."
1269msgstr ""
1270
1271#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:5684
1272#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:5687
1273msgid "Setting permissions"
1274msgstr ""
1275
1276#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:5929
1277msgid "untitled folder"
1278msgstr ""
1279
1280#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:5937
1281msgid "new file"
1282msgstr ""
1283
1284#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:6087
1285msgid "Error while creating directory %B."
1286msgstr ""
1287
1288#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:6089
1289msgid "Error while creating file %B."
1290msgstr ""
1291
1292#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:6091
1293#, c-format
1294msgid "There was an error creating the directory in %F."
1295msgstr ""
1296
1297#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-operations.c:6387
1298msgid "Emptying Trash"
1299msgstr ""
1300
1301#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-utilities.c:267
1302#, c-format
1303msgid "Could not determine original location of \"%s\" "
1304msgstr ""
1305
1306#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-utilities.c:270
1307msgid "The item cannot be restored from trash"
1308msgstr ""
1309
1310#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:146
1311#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:356
1312#, c-format
1313msgid "Merge folder \"%s\"?"
1314msgstr ""
1315
1316#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:150
1317#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:360
1318msgid ""
1319"Merging will ask for confirmation before replacing any files in the folder "
1320"that conflict with the files being copied."
1321msgstr ""
1322
1323#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:155
1324#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:365
1325#, c-format
1326msgid "An older folder with the same name already exists in \"%s\"."
1327msgstr ""
1328
1329#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:159
1330#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:369
1331#, c-format
1332msgid "A newer folder with the same name already exists in \"%s\"."
1333msgstr ""
1334
1335#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:163
1336#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:373
1337#, c-format
1338msgid "Another folder with the same name already exists in \"%s\"."
1339msgstr ""
1340
1341#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:168
1342#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:378
1343msgid "Replacing it will remove all files in the folder."
1344msgstr ""
1345
1346#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:170
1347#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:380
1348#, c-format
1349msgid "Replace folder \"%s\"?"
1350msgstr ""
1351
1352#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:172
1353#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:382
1354#, c-format
1355msgid "A folder with the same name already exists in \"%s\"."
1356msgstr ""
1357
1358#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:177
1359#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:387
1360#, c-format
1361msgid "Replace file \"%s\"?"
1362msgstr ""
1363
1364#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:179
1365#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:389
1366msgid "Replacing it will overwrite its content."
1367msgstr ""
1368
1369#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:183
1370#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:393
1371#, c-format
1372msgid "An older file with the same name already exists in \"%s\"."
1373msgstr ""
1374
1375#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:187
1376#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:397
1377#, c-format
1378msgid "A newer file with the same name already exists in \"%s\"."
1379msgstr ""
1380
1381#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:191
1382#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:401
1383#, c-format
1384msgid "Another file with the same name already exists in \"%s\"."
1385msgstr ""
1386
1387#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:253
1388#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:456
1389msgid "Original file"
1390msgstr ""
1391
1392#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:254
1393#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:285
1394#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:457
1395#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:478
1396msgid "Size:"
1397msgstr ""
1398
1399#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:257
1400#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:288
1401#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:460
1402#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:481
1403msgid "Type:"
1404msgstr ""
1405
1406#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:260
1407#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:291
1408#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:463
1409#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:484
1410msgid "Last modified:"
1411msgstr ""
1412
1413#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:284
1414#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:477
1415msgid "Replace with"
1416msgstr ""
1417
1418#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:313
1419#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:502
1420msgid "Merge"
1421msgstr ""
1422
1423#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:696
1424msgid "_Select a new name for the destination"
1425msgstr ""
1426
1427#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:710
1428msgid "Reset"
1429msgstr ""
1430
1431#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:722
1432msgid "Apply this action to all files"
1433msgstr ""
1434
1435#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:738
1436msgid "Re_name"
1437msgstr ""
1438
1439#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:744
1440msgid "Replace"
1441msgstr ""
1442
1443#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/marlin-file-conflict-dialog.c:817
1444msgid "File conflict"
1445msgstr ""
1446
1447#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/eel-stock-dialogs.c:35
1448msgid "Show more _details"
1449msgstr ""
1450
1451#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/gof-file.c:245
1452#, c-format
1453msgid "link to %s"
1454msgstr ""
1455
1456#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/gof-file.c:1603
1457#, c-format
1458msgid "Failed to parse the desktop file: %s"
1459msgstr ""
1460
1461#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/gof-file.c:1641
1462msgid "No Exec field specified"
1463msgstr ""
1464
1465#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/gof-file.c:1661
1466msgid "No URL field specified"
1467msgstr ""
1468
1469#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/gof-file.c:1667
1470msgid "Invalid desktop file"
1471msgstr ""
1472
1473#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/gof-file.c:1955
1474msgid "Slashes are not allowed in filenames"
1475msgstr ""
1476
1477#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libcore/gof-file.c:1975
1478msgid "Toplevel files cannot be renamed"
1479msgstr ""
1480
1481#: /home/am_sav/dev/marlin/marlin51/marlin/po/../libwidgets/LocationBar.vala:709
1482#, c-format
1483msgid "Go to %s"
1484msgstr ""
14850
=== added file 'po/pantheon-files.pot'
--- po/pantheon-files.pot 1970-01-01 00:00:00 +0000
+++ po/pantheon-files.pot 2012-06-01 06:29:18 +0000
@@ -0,0 +1,2500 @@
1# SOME DESCRIPTIVE TITLE.
2# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3# This file is distributed under the same license as the PACKAGE package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5#
6#, fuzzy
7msgid ""
8msgstr ""
9"Project-Id-Version: PACKAGE VERSION\n"
10"Report-Msgid-Bugs-To: \n"
11"POT-Creation-Date: 2012-05-30 00:35-0700\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n"
15"Language: \n"
16"MIME-Version: 1.0\n"
17"Content-Type: text/plain; charset=UTF-8\n"
18"Content-Transfer-Encoding: 8bit\n"
19"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
21#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:31
22msgid "Files Preferences"
23msgstr ""
24
25#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:54
26msgid "Single click to open:"
27msgstr ""
28
29#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:64
30msgid "Mouse auto-selection speed:"
31msgstr ""
32
33#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:80
34msgid "Default File Manager:"
35msgstr ""
36
37#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:89
38msgid "Behavior"
39msgstr ""
40
41#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:96
42msgid "small"
43msgstr ""
44
45#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:97
46msgid "medium"
47msgstr ""
48
49#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:98
50msgid "large"
51msgstr ""
52
53#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:99
54msgid "extra-large"
55msgstr ""
56
57#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:120
58msgid "Sidebar icon size:"
59msgstr ""
60
61#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:131
62msgid "iso"
63msgstr ""
64
65#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:132
66msgid "locale"
67msgstr ""
68
69#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:133
70msgid "informal"
71msgstr ""
72
73#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:140
74msgid "Date format:"
75msgstr ""
76
77#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:148
78msgid "Appearance"
79msgstr ""
80
81#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:197
82msgid "Extensions"
83msgstr ""
84
85#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/DirectoryNotFound.vala:72
86#, c-format
87msgid "Folder does not exist"
88msgstr ""
89
90#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/DirectoryNotFound.vala:75
91#, c-format
92msgid "Marlin can't find the folder %s"
93msgstr ""
94
95#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/DirectoryNotFound.vala:80
96msgid "Create"
97msgstr ""
98
99#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/DirectoryNotFound.vala:80
100#, c-format
101msgid "Create the folder %s"
102msgstr ""
103
104#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ViewContainer.vala:141
105#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:324
106msgid "Home"
107msgstr ""
108
109#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ViewContainer.vala:143
110#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:394
111msgid "File System"
112msgstr ""
113
114#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:137
115#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3406
116msgid "Set as default"
117msgstr ""
118
119#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:142
120msgid "Ignore"
121msgstr ""
122
123#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:454
124msgid "Undo"
125msgstr ""
126
127#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:455
128#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:749
129msgid "Undo the last action"
130msgstr ""
131
132#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:464
133msgid "Redo"
134msgstr ""
135
136#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:465
137#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:752
138msgid "Redo the last action"
139msgstr ""
140
141#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:720
142msgid "_File"
143msgstr ""
144
145#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:721
146msgid "_Edit"
147msgstr ""
148
149#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:722
150msgid "_View"
151msgstr ""
152
153#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:723
154msgid "_Go"
155msgstr ""
156
157#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:724
158msgid "_Help"
159msgstr ""
160
161#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:726
162msgid "New _Window"
163msgstr ""
164
165#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:727
166msgid "Open another Marlin window for the displayed location"
167msgstr ""
168
169#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:730
170msgid "New _Tab"
171msgstr ""
172
173#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:731
174msgid "Open another tab for the displayed location"
175msgstr ""
176
177#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:734
178msgid "_Close"
179msgstr ""
180
181#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:735
182msgid "Close this folder"
183msgstr ""
184
185#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:738
186msgid "Customize _Toolbar..."
187msgstr ""
188
189#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:739
190msgid "Easily edit the toolbar layout"
191msgstr ""
192
193#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:742
194msgid "Preferences"
195msgstr ""
196
197#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:743
198msgid "Change Marlin's preferences"
199msgstr ""
200
201#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:748
202msgid "_Undo"
203msgstr ""
204
205#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:751
206msgid "_Redo"
207msgstr ""
208
209#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:754
210msgid "Open _Parent"
211msgstr ""
212
213#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:755
214msgid "Open the parent folder"
215msgstr ""
216
217#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:757
218msgid "_Back"
219msgstr ""
220
221#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:758
222msgid "Go to the previous visited location"
223msgstr ""
224
225#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:761
226msgid "_Forward"
227msgstr ""
228
229#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:762
230msgid "Go to the next visited location"
231msgstr ""
232
233#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:764
234msgid "_Reload"
235msgstr ""
236
237#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:765
238msgid "Reload the current location"
239msgstr ""
240
241#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:768
242msgid "_Home Folder"
243msgstr ""
244
245#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:769
246#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:329
247msgid "Open your personal folder"
248msgstr ""
249
250#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:772
251msgid "_Trash"
252msgstr ""
253
254#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:773
255msgid "Open your personal trash folder"
256msgstr ""
257
258#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:776
259msgid "_Network"
260msgstr ""
261
262#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:777
263msgid "Browse bookmarked and local network locations"
264msgstr ""
265
266#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:780
267msgid "Zoom _In"
268msgstr ""
269
270#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:781
271msgid "Increase the view size"
272msgstr ""
273
274#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:792
275msgid "Zoom _Out"
276msgstr ""
277
278#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:793
279msgid "Decrease the view size"
280msgstr ""
281
282#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:800
283msgid "Normal Si_ze"
284msgstr ""
285
286#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:801
287msgid "Use the normal view size"
288msgstr ""
289
290#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:804
291msgid "Next Tab"
292msgstr ""
293
294#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:808
295msgid "Previous Tab"
296msgstr ""
297
298#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:812
299msgid "Connect to _Server..."
300msgstr ""
301
302#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:813
303msgid "Connect to a remote computer or shared disk"
304msgstr ""
305
306#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:816
307msgid "_About"
308msgstr ""
309
310#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:817
311msgid "Display credits"
312msgstr ""
313
314#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:820
315msgid "Report a Problem..."
316msgstr ""
317
318#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:821
319msgid "File a bug on Launchpad"
320msgstr ""
321
322#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:824
323msgid "Get Help Online..."
324msgstr ""
325
326#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:828
327msgid "Translate This Application..."
328msgstr ""
329
330#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:837
331msgid "Show _Hidden Files"
332msgstr ""
333
334#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:838
335msgid "Toggle the display of hidden files in the current window"
336msgstr ""
337
338#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:843
339msgid "Show _Desktop Files"
340msgstr ""
341
342#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:844
343msgid "Toggle the display of desktop files"
344msgstr ""
345
346#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:848
347msgid "_Context Pane"
348msgstr ""
349
350#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:849
351msgid "Change the visibility of the context pane"
352msgstr ""
353
354#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:853
355msgid "_Menubar"
356msgstr ""
357
358#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:854
359msgid "Change the visibility of this window's menubar"
360msgstr ""
361
362#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:858
363msgid "_Places"
364msgstr ""
365
366#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:859
367msgid "Change the visibility of this window's side pane"
368msgstr ""
369
370#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:867
371msgid "Icon"
372msgstr ""
373
374#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:870
375msgid "List"
376msgstr ""
377
378#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:873
379msgid "Compact"
380msgstr ""
381
382#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:876
383msgid "Columns"
384msgstr ""
385
386#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/LocationBar.vala:100
387#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:588
388msgid "Network"
389msgstr ""
390
391#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ContextView.vala:317
392msgid "Name"
393msgstr ""
394
395#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ContextView.vala:318
396#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-list-view.c:59
397msgid "Type"
398msgstr ""
399
400#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ContextView.vala:321
401#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:375
402msgid "Target"
403msgstr ""
404
405#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ContextView.vala:323
406#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-list-view.c:59
407msgid "Size"
408msgstr ""
409
410#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ContextView.vala:325
411#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:347
412#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-list-view.c:59
413msgid "Modified"
414msgstr ""
415
416#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ContextView.vala:326
417#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:832
418#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:845
419msgid "Owner"
420msgstr ""
421
422#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:63
423msgid "Properties"
424msgstr ""
425
426#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:118
427msgid "Info"
428msgstr ""
429
430#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:126
431msgid "Permissions"
432msgstr ""
433
434#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:138
435msgid "Preview"
436msgstr ""
437
438#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:345
439msgid "Created"
440msgstr ""
441
442#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:350
443msgid "Last Access"
444msgstr ""
445
446#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:356
447msgid "Deleted"
448msgstr ""
449
450#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:361
451msgid "MimeType"
452msgstr ""
453
454#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:369
455msgid "MimeTypes"
456msgstr ""
457
458#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:373
459msgid "Location"
460msgstr ""
461
462#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:381
463msgid "Origin Location"
464msgstr ""
465
466#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:419
467msgid "Other application..."
468msgstr ""
469
470#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:443
471msgid "Open with"
472msgstr ""
473
474#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:459
475msgid "Device usage"
476msgstr ""
477
478#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:604
479msgid "Read"
480msgstr ""
481
482#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:609
483msgid "Write"
484msgstr ""
485
486#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:614
487msgid "Execute"
488msgstr ""
489
490#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:837
491#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:849
492msgid "Group"
493msgstr ""
494
495#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:853
496msgid "Everyone"
497msgstr ""
498
499#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:1109
500msgid "Select an aplication to open "
501msgstr ""
502
503#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:124
504msgid "SSH"
505msgstr ""
506
507#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:127
508msgid "Public FTP"
509msgstr ""
510
511#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:129
512msgid "FTP (with login)"
513msgstr ""
514
515#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:132
516msgid "Windows share"
517msgstr ""
518
519#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:134
520msgid "WebDAV (HTTP)"
521msgstr ""
522
523#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:136
524msgid "Secure WebDAV (HTTPS)"
525msgstr ""
526
527#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:183
528msgid "Connecting..."
529msgstr ""
530
531#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:207
532msgid ""
533"Can't load the supported server method list.\n"
534"Please check your gvfs installation."
535msgstr ""
536
537#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:285
538#, c-format
539msgid "The folder \"%s\" cannot be opened on \"%s\"."
540msgstr ""
541
542#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:295
543#, c-format
544msgid "The server at \"%s\" cannot be found."
545msgstr ""
546
547#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:330
548msgid "Try Again"
549msgstr ""
550
551#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:395
552msgid "Please verify your user details."
553msgstr ""
554
555#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:425
556msgid "Continue"
557msgstr ""
558
559#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:750
560#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1140
561msgid "C_onnect"
562msgstr ""
563
564#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:875
565msgid "Connect to Server"
566msgstr ""
567
568#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:893
569msgid "Server Details"
570msgstr ""
571
572#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:917
573msgid "_Server:"
574msgstr ""
575
576#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:937
577msgid "_Port:"
578msgstr ""
579
580#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:955
581msgid "_Type:"
582msgstr ""
583
584#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1024
585msgid "Sh_are:"
586msgstr ""
587
588#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1039
589msgid "_Folder:"
590msgstr ""
591
592#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1057
593msgid "User Details"
594msgstr ""
595
596#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1080
597msgid "_Domain name:"
598msgstr ""
599
600#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1095
601msgid "_User name:"
602msgstr ""
603
604#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1110
605msgid "Pass_word:"
606msgstr ""
607
608#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1126
609msgid "_Remember this password"
610msgstr ""
611
612#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1229
613msgid "Operation cancelled"
614msgstr ""
615
616#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:113
617#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:163
618#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:471
619#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:527
620msgid "File Operations"
621msgstr ""
622
623#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:122
624msgid "Show Details"
625msgstr ""
626
627#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:157
628#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:179
629#, c-format
630msgid "%'d file operation active"
631msgid_plural "%'d file operations active"
632msgstr[0] ""
633msgstr[1] ""
634
635#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:280
636msgid "Show copy dialog"
637msgstr ""
638
639#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:291
640msgid "Cancel all in-progress actions"
641msgstr ""
642
643#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:528
644msgid "All file operations have been successfully completed"
645msgstr ""
646
647#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-clipboard-manager.c:369
648msgid "There is nothing on the clipboard to paste"
649msgstr ""
650
651#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-application.c:416
652msgid "Show the version of the program."
653msgstr ""
654
655#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-application.c:420
656msgid "Open uri(s) in new tab"
657msgstr ""
658
659#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-application.c:422
660msgid "Quit Marlin."
661msgstr ""
662
663#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-application.c:424
664msgid "Enable debug logging"
665msgstr ""
666
667#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-application.c:425
668msgid "[URI...]"
669msgstr ""
670
671#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-application.c:434
672msgid ""
673"\n"
674"\n"
675"Browse the file system with the file manager"
676msgstr ""
677
678#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-application.c:454
679msgid "--quit cannot be used with URIs."
680msgstr ""
681
682#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-columns-view.c:82
683#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:572
684#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-list-view.c:616
685msgid "This folder is empty."
686msgstr ""
687
688#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-columns-view.c:186
689#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:139
690#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-list-view.c:199
691#, c-format
692msgid "Failed to rename %s to %s"
693msgstr ""
694
695#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-icon-view.c:86
696msgid "Icon directory listing"
697msgstr ""
698
699#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-icon-view.c:87
700msgid "Icon view"
701msgstr ""
702
703#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:283
704msgid "Arran_ge Items"
705msgstr ""
706
707#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:288
708msgid "Re_versed Order"
709msgstr ""
710
711#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:289
712msgid "Display icons in the opposite order"
713msgstr ""
714
715#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:296
716msgid "By _Name"
717msgstr ""
718
719#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:297
720msgid "Keep icons sorted by name in rows"
721msgstr ""
722
723#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:300
724msgid "By _Size"
725msgstr ""
726
727#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:301
728msgid "Keep icons sorted by size in rows"
729msgstr ""
730
731#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:304
732msgid "By _Type"
733msgstr ""
734
735#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:305
736msgid "Keep icons sorted by type in rows"
737msgstr ""
738
739#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:308
740msgid "By Modification _Date"
741msgstr ""
742
743#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:309
744msgid "Keep icons sorted by modification date in rows"
745msgstr ""
746
747#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-dnd.c:779
748msgid "_Move Here"
749msgstr ""
750
751#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-dnd.c:784
752msgid "_Copy Here"
753msgstr ""
754
755#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-dnd.c:789
756msgid "_Link Here"
757msgstr ""
758
759#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-dnd.c:794
760msgid "Set as _Background"
761msgstr ""
762
763#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-dnd.c:801
764msgid "Cancel"
765msgstr ""
766
767#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-dnd.c:893
768#, c-format
769msgid "Failed to execute file \"%s\""
770msgstr ""
771
772#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/eel-editable-label.c:3188
773#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3517
774msgid "Select All"
775msgstr ""
776
777#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/eel-editable-label.c:3199
778msgid "Input Methods"
779msgstr ""
780
781#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-compact-view.c:86
782msgid "Compact directory listing"
783msgstr ""
784
785#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-compact-view.c:87
786msgid "Compact view"
787msgstr ""
788
789#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1150
790msgid "Invalid filename provided by XDS drag site"
791msgstr ""
792
793#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1308
794#, c-format
795msgid "Failed to create a link for the URL \"%s\""
796msgstr ""
797
798#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1793
799#, c-format
800msgid "Use \"%s\" to open the selected item"
801msgid_plural "Use \"%s\" to open the selected items"
802msgstr[0] ""
803msgstr[1] ""
804
805#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1940
806#, c-format
807msgid "_Open With %s"
808msgstr ""
809
810#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1946
811#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3483
812#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2399
813msgid "_Open"
814msgstr ""
815
816#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1962
817#, c-format
818msgid "Open in %'d New _Tabs"
819msgstr ""
820
821#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1966
822#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3495
823#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2407
824msgid "Open in New _Tab"
825msgstr ""
826
827#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1971
828#, c-format
829msgid "Open in %'d New _Windows"
830msgstr ""
831
832#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1975
833#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2414
834msgid "Open in New _Window"
835msgstr ""
836
837#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3455
838msgid "Prepare the selected files to be moved with a Paste command"
839msgstr ""
840
841#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3459
842msgid "Prepare the selected files to be copied with a Paste command"
843msgstr ""
844
845#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3463
846msgid "Move or copy files previously selected by a Cut or Copy command"
847msgstr ""
848
849#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3466
850msgid "Paste Into Folder"
851msgstr ""
852
853#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3467
854msgid ""
855"Move or copy files previously selected by a Cut or Copy command into "
856"selected folder"
857msgstr ""
858
859#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3470
860msgid "_Rename..."
861msgstr ""
862
863#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3471
864msgid "Rename selected item"
865msgstr ""
866
867#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3474
868msgid "Create New _Folder"
869msgstr ""
870
871#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3475
872msgid "Create a new empty folder inside this folder"
873msgstr ""
874
875#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3477
876msgid "Create New _File"
877msgstr ""
878
879#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3479
880msgid "_Empty Document"
881msgstr ""
882
883#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3480
884msgid "Create a new empty document inside this folder"
885msgstr ""
886
887#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3484
888msgid "Open the selected item"
889msgstr ""
890
891#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3491
892msgid "Open in new Window"
893msgstr ""
894
895#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3492
896msgid "Open each selected item in a new window"
897msgstr ""
898
899#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3496
900msgid "Open each selected item in a new tab"
901msgstr ""
902
903#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3498
904msgid "Open Wit_h"
905msgstr ""
906
907#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3499
908msgid "Choose a program with which to open the selected item"
909msgstr ""
910
911#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3501
912msgid "Other _Application..."
913msgstr ""
914
915#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3502
916msgid "Choose another application with which to open the selected item"
917msgstr ""
918
919#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3505
920msgid "Mo_ve to Trash"
921msgstr ""
922
923#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3506
924msgid "Move each selected item to the Trash"
925msgstr ""
926
927#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3509
928msgid "_Delete Permanently"
929msgstr ""
930
931#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3510
932msgid "Delete each selected item, without moving to the Trash"
933msgstr ""
934
935#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3513
936msgid "_Restore"
937msgstr ""
938
939#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3521
940msgid "_Properties"
941msgstr ""
942
943#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3522
944msgid "View or modify the properties of each selected item"
945msgstr ""
946
947#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3629
948msgid "Set Color:"
949msgstr ""
950
951#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-toolbar-editor.c:445
952msgid "Customize Toolbar"
953msgstr ""
954
955#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-toolbar-editor.c:465
956msgid ""
957"Select items to be displayed on the toolbar. Items can be reordered by drag "
958"and drop."
959msgstr ""
960
961#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-toolbar-editor.c:481
962msgid "Available Items"
963msgstr ""
964
965#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-toolbar-editor.c:502
966msgid "Displayed Items"
967msgstr ""
968
969#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/exo-icon-view.c:887
970msgid "Layout mode"
971msgstr ""
972
973#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/exo-icon-view.c:888
974msgid "The layout mode"
975msgstr ""
976
977#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/exo-tree-view.c:167
978msgid "Single Click"
979msgstr ""
980
981#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/exo-tree-view.c:168
982msgid "Whether the items in the view can be activated with single clicks"
983msgstr ""
984
985#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/exo-tree-view.c:184
986msgid "Single Click Timeout"
987msgstr ""
988
989#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/exo-tree-view.c:185
990msgid ""
991"The amount of time after which the item under the mouse cursor will be "
992"selected automatically in single click mode"
993msgstr ""
994
995#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-list-view.c:59
996msgid "Filename"
997msgstr ""
998
999#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:310
1000msgid "Personal"
1001msgstr ""
1002
1003#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:315
1004msgid "Your common places and bookmarks"
1005msgstr ""
1006
1007#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:370
1008msgid "Trash"
1009msgstr ""
1010
1011#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:372
1012msgid "Open the trash"
1013msgstr ""
1014
1015#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:382
1016msgid "Devices"
1017msgstr ""
1018
1019#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:387
1020msgid "Your local partitions and devices"
1021msgstr ""
1022
1023#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:396
1024msgid "Open the contents of the File System"
1025msgstr ""
1026
1027#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:455
1028#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:480
1029#, c-format
1030msgid "Mount and open %s"
1031msgstr ""
1032
1033#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:593
1034msgid "Your network places"
1035msgstr ""
1036
1037#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:624
1038msgid "Entire network"
1039msgstr ""
1040
1041#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:626
1042msgid "Browse the contents of the network"
1043msgstr ""
1044
1045#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1610
1046msgid "_Start"
1047msgstr ""
1048
1049#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1611
1050msgid "_Stop"
1051msgstr ""
1052
1053#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1616
1054msgid "_Power On"
1055msgstr ""
1056
1057#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1617
1058msgid "_Safely Remove Drive"
1059msgstr ""
1060
1061#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1620
1062msgid "_Connect Drive"
1063msgstr ""
1064
1065#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1621
1066msgid "_Disconnect Drive"
1067msgstr ""
1068
1069#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1624
1070msgid "_Start Multi-disk Device"
1071msgstr ""
1072
1073#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1625
1074msgid "_Stop Multi-disk Device"
1075msgstr ""
1076
1077#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1629
1078msgid "_Unlock Drive"
1079msgstr ""
1080
1081#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1630
1082msgid "_Lock Drive"
1083msgstr ""
1084
1085#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1704
1086#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2251
1087#, c-format
1088msgid "Unable to start %s"
1089msgstr ""
1090
1091#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1994
1092#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2023
1093#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2052
1094#, c-format
1095msgid "Unable to eject %s"
1096msgstr ""
1097
1098#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2197
1099#, c-format
1100msgid "Unable to poll %s for media changes"
1101msgstr ""
1102
1103#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2307
1104#, c-format
1105msgid "Unable to stop %s"
1106msgstr ""
1107
1108#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2423
1109msgid "Remove"
1110msgstr ""
1111
1112#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2432
1113msgid "Rename..."
1114msgstr ""
1115
1116#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2444
1117msgid "_Mount"
1118msgstr ""
1119
1120#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2451
1121msgid "_Unmount"
1122msgstr ""
1123
1124#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2458
1125msgid "_Eject"
1126msgstr ""
1127
1128#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2466
1129#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1418
1130#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2306
1131msgid "Empty _Trash"
1132msgstr ""
1133
1134#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:3123
1135msgid "Icon Size"
1136msgstr ""
1137
1138#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:3124
1139msgid "Icon size"
1140msgstr ""
1141
1142#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/config.vala:5
1143msgid "Browse your files"
1144msgstr ""
1145
1146#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/config.vala:6
1147msgid "File Manager"
1148msgstr ""
1149
1150#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:237
1151msgid "Today at 00:00:00 PM"
1152msgstr ""
1153
1154#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:238
1155msgid "Today at %-I:%M:%S %p"
1156msgstr ""
1157
1158#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:240
1159msgid "Today at 00:00 PM"
1160msgstr ""
1161
1162#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:241
1163msgid "Today at %-I:%M %p"
1164msgstr ""
1165
1166#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:243
1167msgid "Today, 00:00 PM"
1168msgstr ""
1169
1170#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:244
1171msgid "Today, %-I:%M %p"
1172msgstr ""
1173
1174#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:246
1175#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:247
1176msgid "Today"
1177msgstr ""
1178
1179#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:256
1180msgid "Yesterday at 00:00:00 PM"
1181msgstr ""
1182
1183#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:257
1184msgid "Yesterday at %-I:%M:%S %p"
1185msgstr ""
1186
1187#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:259
1188msgid "Yesterday at 00:00 PM"
1189msgstr ""
1190
1191#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:260
1192msgid "Yesterday at %-I:%M %p"
1193msgstr ""
1194
1195#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:262
1196msgid "Yesterday, 00:00 PM"
1197msgstr ""
1198
1199#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:263
1200msgid "Yesterday, %-I:%M %p"
1201msgstr ""
1202
1203#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:265
1204#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:266
1205msgid "Yesterday"
1206msgstr ""
1207
1208#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:277
1209msgid "Wednesday, September 00 0000 at 00:00:00 PM"
1210msgstr ""
1211
1212#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:278
1213msgid "%A, %B %-d %Y at %-I:%M:%S %p"
1214msgstr ""
1215
1216#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:280
1217msgid "Mon, Oct 00 0000 at 00:00:00 PM"
1218msgstr ""
1219
1220#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:281
1221msgid "%a, %b %-d %Y at %-I:%M:%S %p"
1222msgstr ""
1223
1224#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:283
1225msgid "Mon, Oct 00 0000 at 00:00 PM"
1226msgstr ""
1227
1228#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:284
1229msgid "%a, %b %-d %Y at %-I:%M %p"
1230msgstr ""
1231
1232#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:286
1233msgid "Oct 00 0000 at 00:00 PM"
1234msgstr ""
1235
1236#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:287
1237msgid "%b %-d %Y at %-I:%M %p"
1238msgstr ""
1239
1240#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:289
1241msgid "Oct 00 0000, 00:00 PM"
1242msgstr ""
1243
1244#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:290
1245msgid "%b %-d %Y, %-I:%M %p"
1246msgstr ""
1247
1248#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:292
1249msgid "00/00/00, 00:00 PM"
1250msgstr ""
1251
1252#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:293
1253msgid "%m/%-d/%y, %-I:%M %p"
1254msgstr ""
1255
1256#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:295
1257msgid "00/00/00"
1258msgstr ""
1259
1260#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:296
1261msgid "%m/%d/%y"
1262msgstr ""
1263
1264#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-stock-dialogs.c:35
1265msgid "Show more _details"
1266msgstr ""
1267
1268#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/gof-file.c:252
1269#, c-format
1270msgid "link to %s"
1271msgstr ""
1272
1273#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/gof-file.c:1698
1274#, c-format
1275msgid "Failed to parse the desktop file: %s"
1276msgstr ""
1277
1278#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/gof-file.c:1736
1279msgid "No Exec field specified"
1280msgstr ""
1281
1282#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/gof-file.c:1756
1283msgid "No URL field specified"
1284msgstr ""
1285
1286#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/gof-file.c:1762
1287msgid "Invalid desktop file"
1288msgstr ""
1289
1290#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/gof-file.c:2052
1291msgid "Slashes are not allowed in filenames"
1292msgstr ""
1293
1294#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/gof-file.c:2072
1295msgid "Toplevel files cannot be renamed"
1296msgstr ""
1297
1298#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-utilities.c:266
1299#, c-format
1300msgid "Could not determine original location of \"%s\" "
1301msgstr ""
1302
1303#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-utilities.c:269
1304msgid "The item cannot be restored from trash"
1305msgstr ""
1306
1307#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-progress-info.c:192
1308#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-progress-info.c:210
1309msgid "Preparing"
1310msgstr ""
1311
1312#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:146
1313#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:361
1314#, c-format
1315msgid "Merge folder \"%s\"?"
1316msgstr ""
1317
1318#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:150
1319#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:364
1320msgid ""
1321"Merging will ask for confirmation before replacing any files in the folder "
1322"that conflict with the files being copied."
1323msgstr ""
1324
1325#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:155
1326#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:369
1327#, c-format
1328msgid "An older folder with the same name already exists in \"%s\"."
1329msgstr ""
1330
1331#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:159
1332#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:373
1333#, c-format
1334msgid "A newer folder with the same name already exists in \"%s\"."
1335msgstr ""
1336
1337#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:163
1338#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:377
1339#, c-format
1340msgid "Another folder with the same name already exists in \"%s\"."
1341msgstr ""
1342
1343#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:168
1344#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:382
1345msgid "Replacing it will remove all files in the folder."
1346msgstr ""
1347
1348#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:170
1349#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:384
1350#, c-format
1351msgid "Replace folder \"%s\"?"
1352msgstr ""
1353
1354#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:172
1355#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:386
1356#, c-format
1357msgid "A folder with the same name already exists in \"%s\"."
1358msgstr ""
1359
1360#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:177
1361#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:391
1362#, c-format
1363msgid "Replace file \"%s\"?"
1364msgstr ""
1365
1366#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:179
1367#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:393
1368msgid "Replacing it will overwrite its content."
1369msgstr ""
1370
1371#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:183
1372#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:397
1373#, c-format
1374msgid "An older file with the same name already exists in \"%s\"."
1375msgstr ""
1376
1377#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:187
1378#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:401
1379#, c-format
1380msgid "A newer file with the same name already exists in \"%s\"."
1381msgstr ""
1382
1383#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:191
1384#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:405
1385#, c-format
1386msgid "Another file with the same name already exists in \"%s\"."
1387msgstr ""
1388
1389#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:253
1390#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:460
1391msgid "Original file"
1392msgstr ""
1393
1394#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:254
1395#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:285
1396#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:461
1397#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:482
1398msgid "Size:"
1399msgstr ""
1400
1401#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:257
1402#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:288
1403#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:464
1404#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:485
1405msgid "Type:"
1406msgstr ""
1407
1408#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:260
1409#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:291
1410#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:467
1411#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:488
1412msgid "Last modified:"
1413msgstr ""
1414
1415#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:284
1416#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:481
1417msgid "Replace with"
1418msgstr ""
1419
1420#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:313
1421#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:506
1422msgid "Merge"
1423msgstr ""
1424
1425#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:700
1426msgid "_Select a new name for the destination"
1427msgstr ""
1428
1429#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:714
1430msgid "Reset"
1431msgstr ""
1432
1433#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:726
1434msgid "Apply this action to all files"
1435msgstr ""
1436
1437#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:737
1438#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:201
1439msgid "_Skip"
1440msgstr ""
1441
1442#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:742
1443msgid "Re_name"
1444msgstr ""
1445
1446#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:748
1447msgid "Replace"
1448msgstr ""
1449
1450#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:821
1451msgid "File conflict"
1452msgstr ""
1453
1454#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-vfs-extensions.c:72
1455msgid " (invalid Unicode)"
1456msgstr ""
1457
1458#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1202
1459#, c-format
1460msgid "Delete %d copied items"
1461msgstr ""
1462
1463#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1205
1464#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1215
1465#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1246
1466#, c-format
1467msgid "Delete '%s'"
1468msgstr ""
1469
1470#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1212
1471#, c-format
1472msgid "Delete %d duplicated items"
1473msgstr ""
1474
1475#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1223
1476#, c-format
1477msgid "Move %d items back to '%s'"
1478msgstr ""
1479
1480#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1227
1481#, c-format
1482msgid "Move '%s' back to '%s'"
1483msgstr ""
1484
1485#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1236
1486#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1403
1487#, c-format
1488msgid "Rename '%s' as '%s'"
1489msgstr ""
1490
1491#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1255
1492#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1450
1493#, c-format
1494msgid "Restore %d items from trash"
1495msgstr ""
1496
1497#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1263
1498#, c-format
1499msgid "Restore '%s' to '%s'"
1500msgstr ""
1501
1502#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1274
1503#, c-format
1504msgid "Move %d items back to trash"
1505msgstr ""
1506
1507#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1277
1508#, c-format
1509msgid "Move '%s' back to trash"
1510msgstr ""
1511
1512#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1286
1513#, c-format
1514msgid "Delete links to %d items"
1515msgstr ""
1516
1517#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1289
1518#, c-format
1519msgid "Delete link to '%s'"
1520msgstr ""
1521
1522#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1299
1523#, c-format
1524msgid "Restore original permissions of items enclosed in '%s'"
1525msgstr ""
1526
1527#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1307
1528#, c-format
1529msgid "Restore original permissions of '%s'"
1530msgstr ""
1531
1532#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1316
1533#, c-format
1534msgid "Restore group of '%s' to '%s'"
1535msgstr ""
1536
1537#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1326
1538#, c-format
1539msgid "Restore owner of '%s' to '%s'"
1540msgstr ""
1541
1542#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1365
1543#, c-format
1544msgid "Copy %d items to '%s'"
1545msgstr ""
1546
1547#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1369
1548#, c-format
1549msgid "Copy '%s' to '%s'"
1550msgstr ""
1551
1552#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1377
1553#, c-format
1554msgid "Duplicate of %d items in '%s'"
1555msgstr ""
1556
1557#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1382
1558#, c-format
1559msgid "Duplicate '%s' in '%s'"
1560msgstr ""
1561
1562#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1390
1563#, c-format
1564msgid "Move %d items to '%s'"
1565msgstr ""
1566
1567#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1394
1568#, c-format
1569msgid "Move '%s' to '%s'"
1570msgstr ""
1571
1572#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1412
1573#, c-format
1574msgid "Create new file '%s' from template "
1575msgstr ""
1576
1577#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1419
1578#, c-format
1579msgid "Create an empty file '%s'"
1580msgstr ""
1581
1582#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1426
1583#, c-format
1584msgid "Create a new folder '%s'"
1585msgstr ""
1586
1587#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1434
1588#, c-format
1589msgid "Move %d items to trash"
1590msgstr ""
1591
1592#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1440
1593#, c-format
1594msgid "Move '%s' to trash"
1595msgstr ""
1596
1597#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1453
1598#, c-format
1599msgid "Restore '%s' from trash"
1600msgstr ""
1601
1602#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1462
1603#, c-format
1604msgid "Create links to %d items"
1605msgstr ""
1606
1607#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1465
1608#, c-format
1609msgid "Create link to '%s'"
1610msgstr ""
1611
1612#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1474
1613#, c-format
1614msgid "Set permissions of items enclosed in '%s'"
1615msgstr ""
1616
1617#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1482
1618#, c-format
1619msgid "Set permissions of '%s'"
1620msgstr ""
1621
1622#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1491
1623#, c-format
1624msgid "Set group of '%s' to '%s'"
1625msgstr ""
1626
1627#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1501
1628#, c-format
1629msgid "Set owner of '%s' to '%s'"
1630msgstr ""
1631
1632#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1533
1633#, c-format
1634msgid "_Undo copy of %d item"
1635msgid_plural "_Undo copy of %d items"
1636msgstr[0] ""
1637msgstr[1] ""
1638
1639#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1538
1640#, c-format
1641msgid "_Undo duplicate of %d item"
1642msgid_plural "_Undo duplicate of %d items"
1643msgstr[0] ""
1644msgstr[1] ""
1645
1646#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1543
1647#, c-format
1648msgid "_Undo move of %d item"
1649msgid_plural "_Undo move of %d items"
1650msgstr[0] ""
1651msgstr[1] ""
1652
1653#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1548
1654#, c-format
1655msgid "_Undo rename of %d item"
1656msgid_plural "_Undo rename of %d items"
1657msgstr[0] ""
1658msgstr[1] ""
1659
1660#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1552
1661msgid "_Undo creation of an empty file"
1662msgstr ""
1663
1664#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1555
1665msgid "_Undo creation of a file from template"
1666msgstr ""
1667
1668#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1559
1669#, c-format
1670msgid "_Undo creation of %d folder"
1671msgid_plural "_Undo creation of %d folders"
1672msgstr[0] ""
1673msgstr[1] ""
1674
1675#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1564
1676#, c-format
1677msgid "_Undo move to trash of %d item"
1678msgid_plural "_Undo move to trash of %d items"
1679msgstr[0] ""
1680msgstr[1] ""
1681
1682#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1569
1683#, c-format
1684msgid "_Undo restore from trash of %d item"
1685msgid_plural "_Undo restore from trash of %d items"
1686msgstr[0] ""
1687msgstr[1] ""
1688
1689#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1574
1690#, c-format
1691msgid "_Undo create link to %d item"
1692msgid_plural "_Undo create link to %d items"
1693msgstr[0] ""
1694msgstr[1] ""
1695
1696#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1579
1697#, c-format
1698msgid "_Undo delete of %d item"
1699msgid_plural "_Undo delete of %d items"
1700msgstr[0] ""
1701msgstr[1] ""
1702
1703#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1584
1704#, c-format
1705msgid "Undo recursive change permissions of %d item"
1706msgid_plural "Undo recursive change permissions of %d items"
1707msgstr[0] ""
1708msgstr[1] ""
1709
1710#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1590
1711#, c-format
1712msgid "Undo change permissions of %d item"
1713msgid_plural "Undo change permissions of %d items"
1714msgstr[0] ""
1715msgstr[1] ""
1716
1717#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1595
1718#, c-format
1719msgid "Undo change group of %d item"
1720msgid_plural "Undo change group of %d items"
1721msgstr[0] ""
1722msgstr[1] ""
1723
1724#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1600
1725#, c-format
1726msgid "Undo change owner of %d item"
1727msgid_plural "Undo change owner of %d items"
1728msgstr[0] ""
1729msgstr[1] ""
1730
1731#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1628
1732#, c-format
1733msgid "_Redo copy of %d item"
1734msgid_plural "_Redo copy of %d items"
1735msgstr[0] ""
1736msgstr[1] ""
1737
1738#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1633
1739#, c-format
1740msgid "_Redo duplicate of %d item"
1741msgid_plural "_Redo duplicate of %d items"
1742msgstr[0] ""
1743msgstr[1] ""
1744
1745#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1638
1746#, c-format
1747msgid "_Redo move of %d item"
1748msgid_plural "_Redo move of %d items"
1749msgstr[0] ""
1750msgstr[1] ""
1751
1752#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1643
1753#, c-format
1754msgid "_Redo rename of %d item"
1755msgid_plural "_Redo rename of %d items"
1756msgstr[0] ""
1757msgstr[1] ""
1758
1759#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1647
1760msgid "_Redo creation of an empty file"
1761msgstr ""
1762
1763#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1650
1764msgid "_Redo creation of a file from template"
1765msgstr ""
1766
1767#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1654
1768#, c-format
1769msgid "_Redo creation of %d folder"
1770msgid_plural "_Redo creation of %d folders"
1771msgstr[0] ""
1772msgstr[1] ""
1773
1774#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1659
1775#, c-format
1776msgid "_Redo move to trash of %d item"
1777msgid_plural "_Redo move to trash of %d items"
1778msgstr[0] ""
1779msgstr[1] ""
1780
1781#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1664
1782#, c-format
1783msgid "_Redo restore from trash of %d item"
1784msgid_plural "_Redo restore from trash of %d items"
1785msgstr[0] ""
1786msgstr[1] ""
1787
1788#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1669
1789#, c-format
1790msgid "_Redo create link to %d item"
1791msgid_plural "_Redo create link to %d items"
1792msgstr[0] ""
1793msgstr[1] ""
1794
1795#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1674
1796#, c-format
1797msgid "_Redo delete of %d item"
1798msgid_plural "_Redo delete of %d items"
1799msgstr[0] ""
1800msgstr[1] ""
1801
1802#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1679
1803#, c-format
1804msgid "Redo recursive change permissions of %d item"
1805msgid_plural "Redo recursive change permissions of %d items"
1806msgstr[0] ""
1807msgstr[1] ""
1808
1809#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1685
1810#, c-format
1811msgid "Redo change permissions of %d item"
1812msgid_plural "Redo change permissions of %d items"
1813msgstr[0] ""
1814msgstr[1] ""
1815
1816#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1690
1817#, c-format
1818msgid "Redo change group of %d item"
1819msgid_plural "Redo change group of %d items"
1820msgstr[0] ""
1821msgstr[1] ""
1822
1823#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1695
1824#, c-format
1825msgid "Redo change owner of %d item"
1826msgid_plural "Redo change owner of %d items"
1827msgstr[0] ""
1828msgstr[1] ""
1829
1830#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:202
1831msgid "S_kip All"
1832msgstr ""
1833
1834#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:203
1835msgid "_Retry"
1836msgstr ""
1837
1838#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:204
1839msgid "Delete _All"
1840msgstr ""
1841
1842#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:205
1843msgid "_Replace"
1844msgstr ""
1845
1846#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:206
1847msgid "Replace _All"
1848msgstr ""
1849
1850#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:207
1851msgid "_Merge"
1852msgstr ""
1853
1854#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:208
1855msgid "Merge _All"
1856msgstr ""
1857
1858#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:209
1859msgid "Copy _Anyway"
1860msgstr ""
1861
1862#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:295
1863#, c-format
1864msgid "%'d second"
1865msgid_plural "%'d seconds"
1866msgstr[0] ""
1867msgstr[1] ""
1868
1869#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:300
1870#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:311
1871#, c-format
1872msgid "%'d minute"
1873msgid_plural "%'d minutes"
1874msgstr[0] ""
1875msgstr[1] ""
1876
1877#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:310
1878#, c-format
1879msgid "%'d hour"
1880msgid_plural "%'d hours"
1881msgstr[0] ""
1882msgstr[1] ""
1883
1884#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:318
1885#, c-format
1886msgid "approximately %'d hour"
1887msgid_plural "approximately %'d hours"
1888msgstr[0] ""
1889msgstr[1] ""
1890
1891#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:394
1892#, c-format
1893msgid "Link to %s"
1894msgstr ""
1895
1896#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:398
1897#, c-format
1898msgid "Another link to %s"
1899msgstr ""
1900
1901#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:414
1902#, c-format
1903msgid "%'dst link to %s"
1904msgstr ""
1905
1906#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:418
1907#, c-format
1908msgid "%'dnd link to %s"
1909msgstr ""
1910
1911#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:422
1912#, c-format
1913msgid "%'drd link to %s"
1914msgstr ""
1915
1916#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:426
1917#, c-format
1918msgid "%'dth link to %s"
1919msgstr ""
1920
1921#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:464
1922msgid " (copy)"
1923msgstr ""
1924
1925#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:466
1926msgid " (another copy)"
1927msgstr ""
1928
1929#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:469
1930#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:471
1931#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:473
1932#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:483
1933msgid "th copy)"
1934msgstr ""
1935
1936#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:476
1937msgid "st copy)"
1938msgstr ""
1939
1940#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:478
1941msgid "nd copy)"
1942msgstr ""
1943
1944#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:480
1945msgid "rd copy)"
1946msgstr ""
1947
1948#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:497
1949#, c-format
1950msgid "%s (copy)%s"
1951msgstr ""
1952
1953#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:499
1954#, c-format
1955msgid "%s (another copy)%s"
1956msgstr ""
1957
1958#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:502
1959#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:504
1960#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:506
1961#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:520
1962#, c-format
1963msgid "%s (%'dth copy)%s"
1964msgstr ""
1965
1966#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:514
1967#, c-format
1968msgid "%s (%'dst copy)%s"
1969msgstr ""
1970
1971#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:516
1972#, c-format
1973msgid "%s (%'dnd copy)%s"
1974msgstr ""
1975
1976#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:518
1977#, c-format
1978msgid "%s (%'drd copy)%s"
1979msgstr ""
1980
1981#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:618
1982msgid " ("
1983msgstr ""
1984
1985#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:626
1986#, c-format
1987msgid " (%'d"
1988msgstr ""
1989
1990#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1377
1991msgid "Are you sure you want to permanently delete \"%B\" from the trash?"
1992msgstr ""
1993
1994#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1380
1995#, c-format
1996msgid ""
1997"Are you sure you want to permanently delete the %'d selected item from the "
1998"trash?"
1999msgid_plural ""
2000"Are you sure you want to permanently delete the %'d selected items from the "
2001"trash?"
2002msgstr[0] ""
2003msgstr[1] ""
2004
2005#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1390
2006#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1458
2007msgid "If you delete an item, it will be permanently lost."
2008msgstr ""
2009
2010#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1411
2011msgid "Empty all items from Trash?"
2012msgstr ""
2013
2014#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1415
2015msgid "All items in the Trash will be permanently deleted."
2016msgstr ""
2017
2018#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1446
2019msgid "Are you sure you want to permanently delete \"%B\"?"
2020msgstr ""
2021
2022#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1449
2023#, c-format
2024msgid "Are you sure you want to permanently delete the %'d selected item?"
2025msgid_plural ""
2026"Are you sure you want to permanently delete the %'d selected items?"
2027msgstr[0] ""
2028msgstr[1] ""
2029
2030#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1474
2031#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1506
2032msgid "Deleting files"
2033msgstr ""
2034
2035#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1500
2036#, c-format
2037msgid "%'d file left to delete"
2038msgid_plural "%'d files left to delete"
2039msgstr[0] ""
2040msgstr[1] ""
2041
2042#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1520
2043msgid "%T left"
2044msgid_plural "%T left"
2045msgstr[0] ""
2046msgstr[1] ""
2047
2048#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1588
2049#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1622
2050#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1661
2051#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1738
2052#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2569
2053msgid "Error while deleting."
2054msgstr ""
2055
2056#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1592
2057msgid ""
2058"Files in the folder \"%B\" cannot be deleted because you do not have "
2059"permissions to see them."
2060msgstr ""
2061
2062#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1595
2063#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2628
2064#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3624
2065msgid ""
2066"There was an error getting information about the files in the folder \"%B\"."
2067msgstr ""
2068
2069#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1604
2070#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3633
2071msgid "_Skip files"
2072msgstr ""
2073
2074#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1625
2075msgid ""
2076"The folder \"%B\" cannot be deleted because you do not have permissions to "
2077"read it."
2078msgstr ""
2079
2080#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1628
2081#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2667
2082#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3669
2083msgid "There was an error reading the folder \"%B\"."
2084msgstr ""
2085
2086#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1662
2087msgid "Could not remove the folder %B."
2088msgstr ""
2089
2090#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1739
2091msgid "There was an error deleting %B."
2092msgstr ""
2093
2094#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1815
2095#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1827
2096msgid "Moving files to trash"
2097msgstr ""
2098
2099#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1829
2100#, c-format
2101msgid "%'d file left to trash"
2102msgid_plural "%'d files left to trash"
2103msgstr[0] ""
2104msgstr[1] ""
2105
2106#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1884
2107msgid "Cannot move file to trash. Delete Immediately?"
2108msgstr ""
2109
2110#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1885
2111msgid ""
2112"This file is located on an external media and cannot be moved to the trash. "
2113"Once deleted, it cannot be restored."
2114msgstr ""
2115
2116#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2065
2117msgid "Trashing Files"
2118msgstr ""
2119
2120#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2067
2121msgid "Deleting Files"
2122msgstr ""
2123
2124#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2139
2125msgid "Unable to eject %V"
2126msgstr ""
2127
2128#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2141
2129msgid "Unable to unmount %V"
2130msgstr ""
2131
2132#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2296
2133msgid "Do you want to empty the trash before you unmount?"
2134msgstr ""
2135
2136#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2298
2137msgid ""
2138"In order to regain the free space on this volume the trash must be emptied. "
2139"All trashed items on the volume will be permanently lost."
2140msgstr ""
2141
2142#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2304
2143msgid "Do _not Empty Trash"
2144msgstr ""
2145
2146#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2359
2147msgid "Emptying the trash"
2148msgstr ""
2149
2150#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2426
2151#, c-format
2152msgid "Unable to mount %s"
2153msgstr ""
2154
2155#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2504
2156#, c-format
2157msgid "Preparing to copy %'d file (%S)"
2158msgid_plural "Preparing to copy %'d files (%S)"
2159msgstr[0] ""
2160msgstr[1] ""
2161
2162#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2510
2163#, c-format
2164msgid "Preparing to move %'d file (%S)"
2165msgid_plural "Preparing to move %'d files (%S)"
2166msgstr[0] ""
2167msgstr[1] ""
2168
2169#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2516
2170#, c-format
2171msgid "Preparing to delete %'d file (%S)"
2172msgid_plural "Preparing to delete %'d files (%S)"
2173msgstr[0] ""
2174msgstr[1] ""
2175
2176#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2522
2177#, c-format
2178msgid "Preparing to trash %'d file"
2179msgid_plural "Preparing to trash %'d files"
2180msgstr[0] ""
2181msgstr[1] ""
2182
2183#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2565
2184#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3485
2185#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3616
2186#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3661
2187msgid "Error while copying."
2188msgstr ""
2189
2190#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2567
2191#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3614
2192#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3659
2193msgid "Error while moving."
2194msgstr ""
2195
2196#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2571
2197msgid "Error while moving files to trash."
2198msgstr ""
2199
2200#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2625
2201msgid ""
2202"Files in the folder \"%B\" cannot be handled because you do not have "
2203"permissions to see them."
2204msgstr ""
2205
2206#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2664
2207msgid ""
2208"The folder \"%B\" cannot be handled because you do not have permissions to "
2209"read it."
2210msgstr ""
2211
2212#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2741
2213msgid ""
2214"The file \"%B\" cannot be handled because you do not have permissions to "
2215"read it."
2216msgstr ""
2217
2218#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2744
2219msgid "There was an error getting information about \"%B\"."
2220msgstr ""
2221
2222#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2844
2223#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2886
2224#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2919
2225#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2949
2226msgid "Error while copying to \"%B\"."
2227msgstr ""
2228
2229#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2848
2230msgid "You do not have permissions to access the destination folder."
2231msgstr ""
2232
2233#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2850
2234msgid "There was an error getting information about the destination."
2235msgstr ""
2236
2237#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2887
2238msgid "The destination is not a folder."
2239msgstr ""
2240
2241#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2920
2242msgid ""
2243"There is not enough space on the destination. Try to remove files to make "
2244"space."
2245msgstr ""
2246
2247#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2922
2248#, c-format
2249msgid "There is %S available, but %S is required."
2250msgstr ""
2251
2252#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2950
2253msgid "The destination is read-only."
2254msgstr ""
2255
2256#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3011
2257msgid "Moving \"%B\" to \"%B\""
2258msgstr ""
2259
2260#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3012
2261msgid "Copying \"%B\" to \"%B\""
2262msgstr ""
2263
2264#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3016
2265msgid "Duplicating \"%B\""
2266msgstr ""
2267
2268#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3020
2269msgid "Moving %'d file (in \"%B\") to \"%B\""
2270msgid_plural "Moving %'d files (in \"%B\") to \"%B\""
2271msgstr[0] ""
2272msgstr[1] ""
2273
2274#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3023
2275msgid "Copying %'d file (in \"%B\") to \"%B\""
2276msgid_plural "Copying %'d files (in \"%B\") to \"%B\""
2277msgstr[0] ""
2278msgstr[1] ""
2279
2280#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3030
2281msgid "Duplicating %'d file (in \"%B\")"
2282msgid_plural "Duplicating %'d files (in \"%B\")"
2283msgstr[0] ""
2284msgstr[1] ""
2285
2286#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3039
2287msgid "Moving %'d file to \"%B\""
2288msgid_plural "Moving %'d files to \"%B\""
2289msgstr[0] ""
2290msgstr[1] ""
2291
2292#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3043
2293msgid "Copying %'d file to \"%B\""
2294msgid_plural "Copying %'d files to \"%B\""
2295msgstr[0] ""
2296msgstr[1] ""
2297
2298#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3048
2299#, c-format
2300msgid "Duplicating %'d file"
2301msgid_plural "Duplicating %'d files"
2302msgstr[0] ""
2303msgstr[1] ""
2304
2305#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3099
2306#, c-format
2307msgid "%S of %S"
2308msgstr ""
2309
2310#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3110
2311msgid "%S of %S — %T left (%S/sec)"
2312msgid_plural "%S of %S — %T left (%S/sec)"
2313msgstr[0] ""
2314msgstr[1] ""
2315
2316#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3489
2317msgid ""
2318"The folder \"%B\" cannot be copied because you do not have permissions to "
2319"create it in the destination."
2320msgstr ""
2321
2322#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3492
2323msgid "There was an error creating the folder \"%B\"."
2324msgstr ""
2325
2326#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3621
2327msgid ""
2328"Files in the folder \"%B\" cannot be copied because you do not have "
2329"permissions to see them."
2330msgstr ""
2331
2332#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3666
2333msgid ""
2334"The folder \"%B\" cannot be copied because you do not have permissions to "
2335"read it."
2336msgstr ""
2337
2338#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3711
2339#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4412
2340#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5000
2341msgid "Error while moving \"%B\"."
2342msgstr ""
2343
2344#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3712
2345msgid "Could not remove the source folder."
2346msgstr ""
2347
2348#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3797
2349#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3838
2350#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4414
2351#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4485
2352msgid "Error while copying \"%B\"."
2353msgstr ""
2354
2355#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3798
2356#, c-format
2357msgid "Could not remove files from the already existing folder %F."
2358msgstr ""
2359
2360#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3839
2361#, c-format
2362msgid "Could not remove the already existing file %F."
2363msgstr ""
2364
2365#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4168
2366#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4840
2367msgid "You cannot move a folder into itself."
2368msgstr ""
2369
2370#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4169
2371#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4841
2372msgid "You cannot copy a folder into itself."
2373msgstr ""
2374
2375#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4170
2376#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4842
2377msgid "The destination folder is inside the source folder."
2378msgstr ""
2379
2380#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4201
2381msgid "You cannot move a file over itself."
2382msgstr ""
2383
2384#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4202
2385msgid "You cannot copy a file over itself."
2386msgstr ""
2387
2388#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4203
2389msgid "The source file would be overwritten by the destination."
2390msgstr ""
2391
2392#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4416
2393#, c-format
2394msgid "Could not remove the already existing file with the same name in %F."
2395msgstr ""
2396
2397#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4486
2398#, c-format
2399msgid "There was an error copying the file into %F."
2400msgstr ""
2401
2402#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4714
2403msgid "Copying Files"
2404msgstr ""
2405
2406#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4740
2407msgid "Preparing to move to \"%B\""
2408msgstr ""
2409
2410#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4752
2411#, c-format
2412msgid "Preparing to move %'d file"
2413msgid_plural "Preparing to move %'d files"
2414msgstr[0] ""
2415msgstr[1] ""
2416
2417#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5001
2418#, c-format
2419msgid "There was an error moving the file into %F."
2420msgstr ""
2421
2422#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5264
2423msgid "Moving Files"
2424msgstr ""
2425
2426#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5294
2427msgid "Creating links in \"%B\""
2428msgstr ""
2429
2430#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5305
2431#, c-format
2432msgid "Making link to %'d file"
2433msgid_plural "Making links to %'d files"
2434msgstr[0] ""
2435msgstr[1] ""
2436
2437#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5440
2438msgid "Error while creating link to %B."
2439msgstr ""
2440
2441#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5442
2442msgid "Symbolic links only supported for local files"
2443msgstr ""
2444
2445#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5445
2446msgid "The target doesn't support symbolic links."
2447msgstr ""
2448
2449#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5448
2450#, c-format
2451msgid "There was an error creating the symlink in %F."
2452msgstr ""
2453
2454#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5776
2455#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5779
2456msgid "Setting permissions"
2457msgstr ""
2458
2459#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:6030
2460msgid "untitled folder"
2461msgstr ""
2462
2463#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:6038
2464msgid "new file"
2465msgstr ""
2466
2467#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:6209
2468msgid "Error while creating directory %B."
2469msgstr ""
2470
2471#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:6211
2472msgid "Error while creating file %B."
2473msgstr ""
2474
2475#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:6213
2476#, c-format
2477msgid "There was an error creating the directory in %F."
2478msgstr ""
2479
2480#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:6530
2481msgid "Emptying Trash"
2482msgstr ""
2483
2484#: /home/ttosttos/pantheon-files-fix-1004294/po/../libwidgets/LocationBar.vala:241
2485msgid "Cut the selected text to the clipboard"
2486msgstr ""
2487
2488#: /home/ttosttos/pantheon-files-fix-1004294/po/../libwidgets/LocationBar.vala:245
2489msgid "Copy the selected text to the clipboard"
2490msgstr ""
2491
2492#: /home/ttosttos/pantheon-files-fix-1004294/po/../libwidgets/LocationBar.vala:249
2493#: /home/ttosttos/pantheon-files-fix-1004294/po/../libwidgets/LocationBar.vala:253
2494msgid "Paste the text stored on the clipboard"
2495msgstr ""
2496
2497#: /home/ttosttos/pantheon-files-fix-1004294/po/../libwidgets/LocationBar.vala:722
2498#, c-format
2499msgid "Go to %s"
2500msgstr ""
02501
=== modified file 'src/CMakeLists.txt'
--- src/CMakeLists.txt 2012-05-28 14:53:21 +0000
+++ src/CMakeLists.txt 2012-06-01 06:29:18 +0000
@@ -43,6 +43,8 @@
43 -O243 -O2
44 )44 )
45vala_precompile(VALA_C45vala_precompile(VALA_C
46 ${CMAKE_BINARY_DIR}/src/config.vala
47
46 marlin-deep-count.vala48 marlin-deep-count.vala
47 View/SettingsDialog.vala49 View/SettingsDialog.vala
48 View/DiskRenderer.vala50 View/DiskRenderer.vala

Subscribers

People subscribed via source and target branches

to all changes: