Merge lp:~dpm/ubuntu-filemanager-app/desktop-i18n into lp:ubuntu-filemanager-app

Proposed by David Planella
Status: Merged
Approved by: Alan Pope 🍺🐧🐱 πŸ¦„
Approved revision: 254
Merged at revision: 269
Proposed branch: lp:~dpm/ubuntu-filemanager-app/desktop-i18n
Merge into: lp:ubuntu-filemanager-app
Diff against target: 652 lines (+232/-104)
6 files modified
CMakeLists.txt (+12/-3)
README.translations (+4/-4)
com.ubuntu.filemanager.desktop.in.in (+1/-2)
debian/control (+2/-1)
po/CMakeLists.txt (+14/-9)
po/com.ubuntu.filemanager.pot (+199/-85)
To merge this branch: bzr merge lp:~dpm/ubuntu-filemanager-app/desktop-i18n
Reviewer Review Type Date Requested Status
Ubuntu Phone Apps Jenkins Bot continuous-integration Approve
Victor Thompson (community) Approve
Ubuntu File Manager Developers Pending
Review via email: mp+230591@code.launchpad.net

Commit message

Add .desktop file internationalization support

Description of the change

Add .desktop file internationalization support

To post a comment you must log in.
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
Victor Thompson (vthompson) wrote :

I have 1 inline comment to fix, but otherwise I think this is great!

review: Needs Fixing
Revision history for this message
David Planella (dpm) wrote :

Fixed, thanks Victor!

Revision history for this message
Victor Thompson (vthompson) wrote :

LGTM!

review: Approve
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'CMakeLists.txt'
2--- CMakeLists.txt 2014-07-17 19:38:21 +0000
3+++ CMakeLists.txt 2014-08-16 07:04:20 +0000
4@@ -1,5 +1,7 @@
5 project(com.ubuntu.filemanager C CXX)
6 cmake_minimum_required(VERSION 2.8.9)
7+find_program(INTLTOOL_MERGE intltool-merge)
8+find_program(INTLTOOL_EXTRACT intltool-extract)
9
10 set(CMAKE_AUTOMOC ON)
11 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -fno-permissive -pedantic -Wall -Wextra -fPIC")
12@@ -54,8 +56,9 @@
13 endif(CLICK_MODE)
14
15 file(GLOB_RECURSE I18N_SRC_FILES
16- RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
17- src/app/**.qml *.desktop.in)
18+ RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/po
19+ *.qml *.js *.cpp *.h)
20+list(APPEND I18N_SRC_FILES ${DESKTOP_FILE}.in.in.h)
21 list(SORT I18N_SRC_FILES)
22
23 file(GLOB SRC_FILES
24@@ -63,7 +66,13 @@
25 *.qml *.js *.png *.svg *.json)
26 install(FILES ${SRC_FILES} DESTINATION ${DATA_DIR})
27
28-configure_file(${DESKTOP_FILE}.in ${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_FILE})
29+configure_file(${DESKTOP_FILE}.in.in ${DESKTOP_FILE}.in)
30+
31+add_custom_target(${DESKTOP_FILE} ALL
32+ COMMENT "Merging translations into ${DESKTOP_FILE}..."
33+ COMMAND LC_ALL=C ${INTLTOOL_MERGE} -d -u ${CMAKE_SOURCE_DIR}/po ${DESKTOP_FILE}.in ${DESKTOP_FILE}
34+)
35+
36 install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_FILE}
37 DESTINATION ${DESKTOP_DIR})
38
39
40=== modified file 'README.translations'
41--- README.translations 2013-12-30 20:40:05 +0000
42+++ README.translations 2014-08-16 07:04:20 +0000
43@@ -10,10 +10,10 @@
44 translatable messages to translators. So whenever you add new translatable
45 messages in the code, make sure to follow these steps:
46
47- 1. Change directory to the po/ folder: `cd po`
48- 2. Update the translations template: `qmake && make pot`
49- 3. Commit the generated .pot file: `bzr commit -m"Updated translation template"`
50- 4. Push the branch and send a merge proposal as usual
51+ 1. Run click-buddy retaining the build directory:
52+ `click-buddy --dir . --no-clean`
53+ 2. Commit the generated .pot file: `bzr commit -m"Updated translation template"`
54+ 3. Push the branch and send a merge proposal as usual
55
56 And that's it, once the branch lands Launchpad should take care of all the rest!
57
58
59=== renamed file 'com.ubuntu.filemanager.desktop.in' => 'com.ubuntu.filemanager.desktop.in.in'
60--- com.ubuntu.filemanager.desktop.in 2014-07-21 14:43:45 +0000
61+++ com.ubuntu.filemanager.desktop.in.in 2014-08-16 07:04:20 +0000
62@@ -4,7 +4,6 @@
63 Terminal=false
64 Exec=@EXEC@
65 Icon=@ICON@
66-Name=File Manager
67+_Name=File Manager
68 X-Ubuntu-Touch=true
69-X-Ubuntu-Gettext-Domain=@PROJECT_NAME@
70 X-Ubuntu-Default-Department-ID=accessories
71
72=== modified file 'debian/control'
73--- debian/control 2014-08-07 20:00:29 +0000
74+++ debian/control 2014-08-16 07:04:20 +0000
75@@ -3,11 +3,12 @@
76 Maintainer: Ubuntu App Cats <ubuntu-touch-coreapps@lists.launchpad.net>
77 Build-Depends: cmake,
78 debhelper (>= 9),
79+ intltool,
80 qtbase5-dev,
81 qtdeclarative5-dev,
82 qt5-default,
83 pkg-kde-tools,
84- python3-all,
85+ python3-all,
86 libtag1-dev,
87 libpam0g-dev,
88 Standards-Version: 3.9.5
89
90=== modified file 'po/CMakeLists.txt'
91--- po/CMakeLists.txt 2014-01-31 20:03:12 +0000
92+++ po/CMakeLists.txt 2014-08-16 07:04:20 +0000
93@@ -5,15 +5,20 @@
94 set(POT_FILE ${DOMAIN}.pot)
95 file(GLOB PO_FILES *.po)
96
97-add_custom_target(${POT_FILE}
98- COMMAND ${GETTEXT_XGETTEXT_EXECUTABLE} -o ${POT_FILE}
99- -D ${CMAKE_SOURCE_DIR}
100- --from-code=UTF-8
101- --c++ --qt --add-comments=TRANSLATORS
102- --keyword=tr --keyword=tr:1,2
103- --package-name='${PROJECT}'
104- --copyright-holder='Canonical Ltd.'
105- ${I18N_SRC_FILES})
106+add_custom_target(${POT_FILE} ALL
107+ COMMENT "Generating translation template..."
108+ COMMAND ${INTLTOOL_EXTRACT} --update --type=gettext/ini
109+ --srcdir=${CMAKE_SOURCE_DIR} ${DESKTOP_FILE}.in.in
110+ COMMAND ${GETTEXT_XGETTEXT_EXECUTABLE} -o ${POT_FILE}
111+ -D ${CMAKE_CURRENT_SOURCE_DIR}
112+ -D ${CMAKE_CURRENT_BINARY_DIR}
113+ --from-code=UTF-8
114+ --c++ --qt --add-comments=TRANSLATORS
115+ --keyword=tr --keyword=tr:1,2 --keyword=N_
116+ --package-name='${PROJECT}'
117+ --copyright-holder='Canonical Ltd.'
118+ ${I18N_SRC_FILES}
119+ COMMAND ${CMAKE_COMMAND} -E copy ${POT_FILE} ${CMAKE_CURRENT_SOURCE_DIR})
120
121 foreach(PO_FILE ${PO_FILES})
122 get_filename_component(LANG ${PO_FILE} NAME_WE)
123
124=== modified file 'po/com.ubuntu.filemanager.pot'
125--- po/com.ubuntu.filemanager.pot 2014-08-08 15:47:19 +0000
126+++ po/com.ubuntu.filemanager.pot 2014-08-16 07:04:20 +0000
127@@ -8,7 +8,7 @@
128 msgstr ""
129 "Project-Id-Version: \n"
130 "Report-Msgid-Bugs-To: \n"
131-"POT-Creation-Date: 2014-08-08 17:46+0200\n"
132+"POT-Creation-Date: 2014-08-13 10:37+0200\n"
133 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
134 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
135 "Language-Team: LANGUAGE <LL@li.org>\n"
136@@ -18,318 +18,432 @@
137 "Content-Transfer-Encoding: 8bit\n"
138 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
139
140-#: src/app/qml/components/FolderIconView.qml:58
141-#: src/app/qml/components/FolderListView.qml:36
142+#: ../src/app/qml/components/FolderIconView.qml:58
143+#: ../src/app/qml/components/FolderListView.qml:36
144 #, qt-format
145 msgid "%1 (1 file)"
146 msgstr ""
147
148-#: src/app/qml/components/FolderIconView.qml:59
149-#: src/app/qml/components/FolderListView.qml:37
150+#: ../src/app/qml/components/FolderIconView.qml:59
151+#: ../src/app/qml/components/FolderListView.qml:37
152 #, qt-format
153 msgid "%1 (%2 files)"
154 msgstr ""
155
156-#: src/app/qml/components/PlacesSidebar.qml:54
157-#: src/app/qml/ui/FolderListPage.qml:305
158+#: ../src/app/qml/components/PlacesSidebar.qml:54
159+#: ../src/app/qml/ui/FolderListPage.qml:305
160 msgid "Places"
161 msgstr ""
162
163-#: src/app/qml/filemanager.qml:83 src/app/qml/ui/SettingsSheet.qml:31
164+#: ../src/app/qml/filemanager.qml:83 ../src/app/qml/ui/SettingsSheet.qml:31
165 msgid "Settings"
166 msgstr ""
167
168-#: src/app/qml/filemanager.qml:84
169+#: ../src/app/qml/filemanager.qml:84
170 msgid "Change app settings"
171 msgstr ""
172
173-#: src/app/qml/filemanager.qml:246 src/app/qml/ui/FolderListPage.qml:408
174-#: src/app/qml/ui/ViewPopover.qml:70
175+#: ../src/app/qml/filemanager.qml:246 ../src/app/qml/ui/FolderListPage.qml:408
176+#: ../src/app/qml/ui/ViewPopover.qml:70
177 msgid "Icons"
178 msgstr ""
179
180-#: src/app/qml/filemanager.qml:246 src/app/qml/ui/FolderListPage.qml:425
181-#: src/app/qml/ui/ViewPopover.qml:71
182+#: ../src/app/qml/filemanager.qml:246 ../src/app/qml/ui/FolderListPage.qml:425
183+#: ../src/app/qml/ui/ViewPopover.qml:71
184 msgid "List"
185 msgstr ""
186
187-#: src/app/qml/ui/ConfirmDialog.qml:31
188-#: src/app/qml/ui/ConfirmDialogWithInput.qml:41
189-#: src/app/qml/ui/NotifyDialog.qml:25
190+#: ../src/app/qml/ui/ConfirmDialog.qml:31
191+#: ../src/app/qml/ui/ConfirmDialogWithInput.qml:41
192+#: ../src/app/qml/ui/NotifyDialog.qml:25
193 msgid "Ok"
194 msgstr ""
195
196-#: src/app/qml/ui/ConfirmDialog.qml:41
197-#: src/app/qml/ui/ConfirmDialogWithInput.qml:51
198-#: src/app/qml/ui/FileActionDialog.qml:45
199-#: src/app/qml/ui/FileOperationProgressDialog.qml:44
200-#: src/app/qml/ui/FolderListPage.qml:385 src/app/qml/ui/GoToDialog.qml:66
201+#: ../src/app/qml/ui/ConfirmDialog.qml:41
202+#: ../src/app/qml/ui/ConfirmDialogWithInput.qml:51
203+#: ../src/app/qml/ui/FileActionDialog.qml:45
204+#: ../src/app/qml/ui/FileOperationProgressDialog.qml:44
205+#: ../src/app/qml/ui/FolderListPage.qml:385
206+#: ../src/app/qml/ui/GoToDialog.qml:66
207 msgid "Cancel"
208 msgstr ""
209
210-#: src/app/qml/ui/FileActionDialog.qml:30
211+#: ../src/app/qml/ui/FileActionDialog.qml:30
212 msgid "Choose action"
213 msgstr ""
214
215-#: src/app/qml/ui/FileActionDialog.qml:31
216+#: ../src/app/qml/ui/FileActionDialog.qml:31
217 #, qt-format
218 msgid "For file: %1"
219 msgstr ""
220
221-#: src/app/qml/ui/FileActionDialog.qml:35
222+#: ../src/app/qml/ui/FileActionDialog.qml:35
223 msgid "Open"
224 msgstr ""
225
226-#: src/app/qml/ui/FileDetailsPopover.qml:37
227+#: ../src/app/qml/ui/FileDetailsPopover.qml:37
228 msgid "Readable"
229 msgstr ""
230
231-#: src/app/qml/ui/FileDetailsPopover.qml:40
232+#: ../src/app/qml/ui/FileDetailsPopover.qml:40
233 msgid "Writable"
234 msgstr ""
235
236-#: src/app/qml/ui/FileDetailsPopover.qml:43
237+#: ../src/app/qml/ui/FileDetailsPopover.qml:43
238 msgid "Executable"
239 msgstr ""
240
241-#: src/app/qml/ui/FileDetailsPopover.qml:91
242+#: ../src/app/qml/ui/FileDetailsPopover.qml:91
243 msgid "Path:"
244 msgstr ""
245
246-#: src/app/qml/ui/FileDetailsPopover.qml:102
247+#: ../src/app/qml/ui/FileDetailsPopover.qml:102
248 msgid "Contents:"
249 msgstr ""
250
251-#: src/app/qml/ui/FileDetailsPopover.qml:103
252+#: ../src/app/qml/ui/FileDetailsPopover.qml:103
253 msgid "Size:"
254 msgstr ""
255
256-#: src/app/qml/ui/FileDetailsPopover.qml:112
257+#: ../src/app/qml/ui/FileDetailsPopover.qml:112
258 msgid "Accessed:"
259 msgstr ""
260
261-#: src/app/qml/ui/FileDetailsPopover.qml:121
262+#: ../src/app/qml/ui/FileDetailsPopover.qml:121
263 msgid "Modified:"
264 msgstr ""
265
266-#: src/app/qml/ui/FileDetailsPopover.qml:130
267+#: ../src/app/qml/ui/FileDetailsPopover.qml:130
268 msgid "Permissions:"
269 msgstr ""
270
271-#: src/app/qml/ui/FileOperationProgressDialog.qml:27
272+#: ../src/app/qml/ui/FileOperationProgressDialog.qml:27
273 msgid "Operation in progress"
274 msgstr ""
275
276-#: src/app/qml/ui/FolderListPage.qml:93
277+#: ../src/app/qml/ui/FolderListPage.qml:93
278 #, qt-format
279 msgid "%1 file"
280 msgid_plural "%1 files"
281 msgstr[0] ""
282 msgstr[1] ""
283
284-#: src/app/qml/ui/FolderListPage.qml:118
285+#: ../src/app/qml/ui/FolderListPage.qml:118
286 msgid "Open in a new tab"
287 msgstr ""
288
289-#: src/app/qml/ui/FolderListPage.qml:126
290+#: ../src/app/qml/ui/FolderListPage.qml:126
291 msgid "Close this tab"
292 msgstr ""
293
294-#: src/app/qml/ui/FolderListPage.qml:146
295+#: ../src/app/qml/ui/FolderListPage.qml:146
296 msgid "Create New Folder"
297 msgstr ""
298
299-#: src/app/qml/ui/FolderListPage.qml:166
300+#: ../src/app/qml/ui/FolderListPage.qml:166
301 msgid "Paste"
302 msgstr ""
303
304-#: src/app/qml/ui/FolderListPage.qml:167
305+#: ../src/app/qml/ui/FolderListPage.qml:167
306 #, qt-format
307 msgid "Paste %1 File"
308 msgid_plural "Paste %1 Files"
309 msgstr[0] ""
310 msgstr[1] ""
311
312-#: src/app/qml/ui/FolderListPage.qml:170
313+#: ../src/app/qml/ui/FolderListPage.qml:170
314 msgid "Paste files"
315 msgstr ""
316
317-#: src/app/qml/ui/FolderListPage.qml:182
318+#: ../src/app/qml/ui/FolderListPage.qml:182
319 msgid "Open in Terminal"
320 msgstr ""
321
322-#: src/app/qml/ui/FolderListPage.qml:194 src/app/qml/ui/FolderListPage.qml:567
323+#: ../src/app/qml/ui/FolderListPage.qml:194
324+#: ../src/app/qml/ui/FolderListPage.qml:567
325 msgid "Properties"
326 msgstr ""
327
328-#: src/app/qml/ui/FolderListPage.qml:211
329+#: ../src/app/qml/ui/FolderListPage.qml:211
330 msgid "Create folder"
331 msgstr ""
332
333-#: src/app/qml/ui/FolderListPage.qml:212
334+#: ../src/app/qml/ui/FolderListPage.qml:212
335 msgid "Enter name for new folder"
336 msgstr ""
337
338-#: src/app/qml/ui/FolderListPage.qml:228
339+#: ../src/app/qml/ui/FolderListPage.qml:228
340 msgid "Create file"
341 msgstr ""
342
343-#: src/app/qml/ui/FolderListPage.qml:229
344+#: ../src/app/qml/ui/FolderListPage.qml:229
345 msgid "Enter name for new file"
346 msgstr ""
347
348-#: src/app/qml/ui/FolderListPage.qml:251
349+#: ../src/app/qml/ui/FolderListPage.qml:251
350 msgid "Up"
351 msgstr ""
352
353-#: src/app/qml/ui/FolderListPage.qml:280
354+#: ../src/app/qml/ui/FolderListPage.qml:280
355 msgid "Actions"
356 msgstr ""
357
358-#: src/app/qml/ui/FolderListPage.qml:290
359+#: ../src/app/qml/ui/FolderListPage.qml:290
360 msgid "View"
361 msgstr ""
362
363-#: src/app/qml/ui/FolderListPage.qml:371
364+#: ../src/app/qml/ui/FolderListPage.qml:371
365 msgid "Select"
366 msgstr ""
367
368-#: src/app/qml/ui/FolderListPage.qml:440
369+#: ../src/app/qml/ui/FolderListPage.qml:440
370 msgid "No files"
371 msgstr ""
372
373-#: src/app/qml/ui/FolderListPage.qml:460 src/app/qml/ui/FolderListPage.qml:541
374+#: ../src/app/qml/ui/FolderListPage.qml:460
375+#: ../src/app/qml/ui/FolderListPage.qml:541
376 msgid "Delete"
377 msgstr ""
378
379-#: src/app/qml/ui/FolderListPage.qml:461
380+#: ../src/app/qml/ui/FolderListPage.qml:461
381 #, qt-format
382 msgid "Are you sure you want to permanently delete '%1'?"
383 msgstr ""
384
385-#: src/app/qml/ui/FolderListPage.qml:484 src/app/qml/ui/FolderListPage.qml:554
386+#: ../src/app/qml/ui/FolderListPage.qml:484
387+#: ../src/app/qml/ui/FolderListPage.qml:554
388 msgid "Rename"
389 msgstr ""
390
391-#: src/app/qml/ui/FolderListPage.qml:485
392+#: ../src/app/qml/ui/FolderListPage.qml:485
393 msgid "Enter a new name"
394 msgstr ""
395
396-#: src/app/qml/ui/FolderListPage.qml:494
397+#: ../src/app/qml/ui/FolderListPage.qml:494
398 msgid "Could not rename"
399 msgstr ""
400
401-#: src/app/qml/ui/FolderListPage.qml:495
402+#: ../src/app/qml/ui/FolderListPage.qml:495
403 msgid "Insufficient permissions or name already exists?"
404 msgstr ""
405
406-#: src/app/qml/ui/FolderListPage.qml:518
407+#: ../src/app/qml/ui/FolderListPage.qml:518
408 msgid "Cut"
409 msgstr ""
410
411-#: src/app/qml/ui/FolderListPage.qml:529
412+#: ../src/app/qml/ui/FolderListPage.qml:529
413 msgid "Copy"
414 msgstr ""
415
416-#: src/app/qml/ui/FolderListPage.qml:586 src/app/qml/ui/FolderListPage.qml:709
417+#: ../src/app/qml/ui/FolderListPage.qml:586
418+#: ../src/app/qml/ui/FolderListPage.qml:709
419 msgid "File operation error"
420 msgstr ""
421
422-#: src/app/qml/ui/FolderListPage.qml:635
423+#: ../src/app/qml/ui/FolderListPage.qml:635
424 msgid "~/Desktop"
425 msgstr ""
426
427-#: src/app/qml/ui/FolderListPage.qml:645
428+#: ../src/app/qml/ui/FolderListPage.qml:645
429 msgid "~/Public"
430 msgstr ""
431
432-#: src/app/qml/ui/FolderListPage.qml:647
433+#: ../src/app/qml/ui/FolderListPage.qml:647
434 msgid "~/Programs"
435 msgstr ""
436
437-#: src/app/qml/ui/FolderListPage.qml:649
438+#: ../src/app/qml/ui/FolderListPage.qml:649
439 msgid "~/Templates"
440 msgstr ""
441
442-#: src/app/qml/ui/FolderListPage.qml:662
443+#: ../src/app/qml/ui/FolderListPage.qml:662
444 msgid "Home"
445 msgstr ""
446
447-#: src/app/qml/ui/FolderListPage.qml:664
448+#: ../src/app/qml/ui/FolderListPage.qml:664
449 msgid "Device"
450 msgstr ""
451
452-#: src/app/qml/ui/FolderListPage.qml:709
453+#: ../src/app/qml/ui/FolderListPage.qml:709
454 #, qt-format
455 msgid "Unable to open '%1'"
456 msgstr ""
457
458-#: src/app/qml/ui/FolderListPage.qml:721
459+#: ../src/app/qml/ui/FolderListPage.qml:721
460 msgid "Folder not accessible"
461 msgstr ""
462
463 #. TRANSLATORS: this refers to a folder name
464-#: src/app/qml/ui/FolderListPage.qml:723
465+#: ../src/app/qml/ui/FolderListPage.qml:723
466 #, qt-format
467 msgid "Can not access %1"
468 msgstr ""
469
470-#: src/app/qml/ui/GoToDialog.qml:25
471+#: ../src/app/qml/ui/GoToDialog.qml:25
472 msgid "Go To Location"
473 msgstr ""
474
475-#: src/app/qml/ui/GoToDialog.qml:27
476+#: ../src/app/qml/ui/GoToDialog.qml:27
477 msgid "Enter a location to go to:"
478 msgstr ""
479
480-#: src/app/qml/ui/GoToDialog.qml:44 src/app/qml/ui/PlacesPopover.qml:53
481+#: ../src/app/qml/ui/GoToDialog.qml:44 ../src/app/qml/ui/PlacesPopover.qml:53
482 msgid "Location..."
483 msgstr ""
484
485-#: src/app/qml/ui/GoToDialog.qml:53 src/app/qml/ui/PlacesPopover.qml:68
486+#: ../src/app/qml/ui/GoToDialog.qml:53 ../src/app/qml/ui/PlacesPopover.qml:68
487 msgid "Go"
488 msgstr ""
489
490-#: src/app/qml/ui/SettingsSheet.qml:34
491+#: ../src/app/qml/ui/SettingsSheet.qml:34
492 msgid "Close"
493 msgstr ""
494
495-#: src/app/qml/ui/SettingsSheet.qml:43
496+#: ../src/app/qml/ui/SettingsSheet.qml:43
497 msgid "Show Advanced Features"
498 msgstr ""
499
500-#: src/app/qml/ui/ViewPopover.qml:39
501+#: ../src/app/qml/ui/ViewPopover.qml:39
502 msgid "Show Hidden Files"
503 msgstr ""
504
505-#: src/app/qml/ui/ViewPopover.qml:59
506+#: ../src/app/qml/ui/ViewPopover.qml:59
507 msgid "View As"
508 msgstr ""
509
510-#: src/app/qml/ui/ViewPopover.qml:81
511+#: ../src/app/qml/ui/ViewPopover.qml:81
512 msgid "Sort By"
513 msgstr ""
514
515-#: src/app/qml/ui/ViewPopover.qml:92
516+#: ../src/app/qml/ui/ViewPopover.qml:92
517 msgid "Name"
518 msgstr ""
519
520-#: src/app/qml/ui/ViewPopover.qml:93
521+#: ../src/app/qml/ui/ViewPopover.qml:93
522 msgid "Date"
523 msgstr ""
524
525-#: src/app/qml/ui/ViewPopover.qml:103
526+#: ../src/app/qml/ui/ViewPopover.qml:103
527 msgid "Sort Order"
528 msgstr ""
529
530-#: src/app/qml/ui/ViewPopover.qml:114 src/app/qml/ui/ViewPopover.qml:119
531+#: ../src/app/qml/ui/ViewPopover.qml:114 ../src/app/qml/ui/ViewPopover.qml:119
532 msgid "Ascending"
533 msgstr ""
534
535-#: src/app/qml/ui/ViewPopover.qml:115
536+#: ../src/app/qml/ui/ViewPopover.qml:115
537 msgid "Descending"
538 msgstr ""
539
540-#: src/app/qml/ui/ViewPopover.qml:127
541+#: ../src/app/qml/ui/ViewPopover.qml:127
542 msgid "Filter"
543 msgstr ""
544+
545+#: ../src/plugin/folderlistmodel/dirmodel.cpp:414
546+msgid "path or url may not exist or cannot be read"
547+msgstr ""
548+
549+#: ../src/plugin/folderlistmodel/dirmodel.cpp:527
550+msgid "Rename error"
551+msgstr ""
552+
553+#: ../src/plugin/folderlistmodel/dirmodel.cpp:547
554+msgid "Error creating new folder"
555+msgstr ""
556+
557+#: ../src/plugin/folderlistmodel/dirmodel.cpp:1145
558+msgid "items"
559+msgstr ""
560+
561+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:263
562+msgid "File or Directory does not exist"
563+msgstr ""
564+
565+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:264
566+msgid " does not exist"
567+msgstr ""
568+
569+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:585
570+msgid "Could not remove the item "
571+msgstr ""
572+
573+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:626
574+msgid "Could not find a suitable name to backup"
575+msgstr ""
576+
577+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:680
578+msgid "Could not create the directory"
579+msgstr ""
580+
581+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:689
582+msgid "Could not create link to"
583+msgstr ""
584+
585+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:701
586+msgid "Could not set permissions to dir"
587+msgstr ""
588+
589+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:715
590+msgid "Could not open file"
591+msgstr ""
592+
593+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:734
594+msgid "There is no space on disk to copy"
595+msgstr ""
596+
597+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:744
598+msgid "Could not create file"
599+msgstr ""
600+
601+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:808
602+msgid "Could not remove the directory/file "
603+msgstr ""
604+
605+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:824
606+msgid "Could not move the directory/file "
607+msgstr ""
608+
609+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:858
610+msgid "Cannot copy items"
611+msgstr ""
612+
613+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:859
614+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:878
615+msgid "no write permission on folder "
616+msgstr ""
617+
618+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:877
619+msgid "Cannot move items"
620+msgstr ""
621+
622+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:883
623+msgid "origin and destination folders are the same"
624+msgstr ""
625+
626+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:1099
627+msgid "Write error in "
628+msgstr ""
629+
630+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:1115
631+msgid "Read error in "
632+msgstr ""
633+
634+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:1349
635+msgid " Copy"
636+msgstr ""
637+
638+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:1405
639+msgid "Set permissions error in "
640+msgstr ""
641+
642+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:1489
643+msgid "Could not create trash info file"
644+msgstr ""
645+
646+#: ../src/plugin/folderlistmodel/filesystemaction.cpp:1502
647+msgid "Could not remove the trash info file"
648+msgstr ""
649+
650+#: com.ubuntu.filemanager.desktop.in.in.h:1
651+msgid "File Manager"
652+msgstr ""

Subscribers

People subscribed via source and target branches