Merge lp:~noskcaj/ubuntu/trusty/xfdesktop4/4.11.6 into lp:ubuntu/trusty/xfdesktop4

Proposed by Jackson Doak
Status: Merged
Merge reported by: Martin Pitt
Merged at revision: not available
Proposed branch: lp:~noskcaj/ubuntu/trusty/xfdesktop4/4.11.6
Merge into: lp:ubuntu/trusty/xfdesktop4
Diff against target: 6279 lines (+1455/-1316)
29 files modified
.pc/xubuntu_improve-nautilus-interactions.patch/src/xfce-desktop.c (+4/-37)
.pc/xubuntu_set-accountsservice-user-bg.patch/src/xfce-desktop.c (+4/-37)
ChangeLog (+194/-0)
NEWS (+23/-1)
common/xfdesktop-common.c (+19/-0)
common/xfdesktop-common.h (+2/-0)
configure (+10/-10)
configure.ac (+2/-2)
debian/changelog (+17/-0)
debian/patches/xubuntu_improve-nautilus-interactions.patch (+3/-3)
po/cs.po (+78/-76)
po/en_AU.po (+79/-77)
po/es.po (+81/-79)
po/it.po (+81/-79)
po/ja.po (+78/-76)
po/kk.po (+162/-163)
po/nl.po (+161/-162)
po/pl.po (+80/-78)
po/sr.po (+87/-85)
po/sv.po (+78/-76)
po/th.po (+80/-78)
settings/main.c (+11/-3)
src/xfce-backdrop.c (+3/-99)
src/xfce-backdrop.h (+0/-5)
src/xfce-desktop.c (+4/-37)
src/xfce-workspace.c (+2/-49)
src/xfce-workspace.h (+0/-3)
src/xfdesktop-file-icon-manager.c (+10/-1)
src/xfdesktop-file-utils.c (+102/-0)
To merge this branch: bzr merge lp:~noskcaj/ubuntu/trusty/xfdesktop4/4.11.6
Reviewer Review Type Date Requested Status
Martin Pitt Approve
Review via email: mp+214886@code.launchpad.net

Description of the change

New upstream bugfix release. Needed for xubuntu 14.04

To post a comment you must log in.
Revision history for this message
Martin Pitt (pitti) wrote :

Uploaded, thanks!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file '.pc/xubuntu_improve-nautilus-interactions.patch/src/xfce-desktop.c'
2--- .pc/xubuntu_improve-nautilus-interactions.patch/src/xfce-desktop.c 2014-04-02 06:58:37 +0000
3+++ .pc/xubuntu_improve-nautilus-interactions.patch/src/xfce-desktop.c 2014-04-09 06:59:22 +0000
4@@ -694,15 +694,10 @@
5 {
6 XfceDesktop *desktop = XFCE_DESKTOP(user_data);
7 gint current_workspace, new_workspace, i;
8- XfceBackdrop *current_backdrop, *new_backdrop;
9+ XfceBackdrop *backdrop;
10
11 TRACE("entering");
12
13- /* Ignore workspace changes in single workspace mode so long as we
14- * already have the bg_pixmap loaded */
15- if(xfce_desktop_get_single_workspace_mode(desktop) && desktop->priv->bg_pixmap)
16- return;
17-
18 current_workspace = desktop->priv->current_workspace;
19 new_workspace = xfce_desktop_get_current_workspace(desktop);
20
21@@ -715,22 +710,9 @@
22 current_workspace, new_workspace);
23
24 for(i = 0; i < xfce_desktop_get_n_monitors(desktop); i++) {
25- /* We want to compare the current workspace backdrop with the new one
26- * and see if we can avoid changing them if they are the same image/style */
27- if(current_workspace < desktop->priv->nworkspaces && current_workspace >= 0) {
28- current_backdrop = xfce_workspace_get_backdrop(desktop->priv->workspaces[current_workspace], i);
29- new_backdrop = xfce_workspace_get_backdrop(desktop->priv->workspaces[new_workspace], i);
30-
31- if(!xfce_backdrop_compare_backdrops(current_backdrop, new_backdrop) || !desktop->priv->bg_pixmap) {
32- /* only update monitors that require it */
33- backdrop_changed_cb(new_backdrop, user_data);
34- }
35- } else {
36- /* If current_workspace was removed or never existed, get the new
37- * backdrop and apply it */
38- new_backdrop = xfce_workspace_get_backdrop(desktop->priv->workspaces[new_workspace], i);
39- backdrop_changed_cb(new_backdrop, user_data);
40- }
41+ backdrop = xfce_workspace_get_backdrop(desktop->priv->workspaces[new_workspace], i);
42+ /* update it */
43+ backdrop_changed_cb(backdrop, user_data);
44
45 /* When we're spanning screens we only care about the first monitor */
46 if(xfce_workspace_get_xinerama_stretch(desktop->priv->workspaces[new_workspace]))
47@@ -762,10 +744,6 @@
48 desktop->priv->property_prefix,
49 nlast_workspace);
50
51- /* Tell workspace whether to cache pixbufs */
52- xfce_workspace_set_cache_pixbufs(desktop->priv->workspaces[nlast_workspace],
53- !desktop->priv->single_workspace_mode);
54-
55 xfce_workspace_monitors_changed(desktop->priv->workspaces[nlast_workspace],
56 desktop->priv->gscreen);
57
58@@ -1405,8 +1383,6 @@
59 (GSourceFunc)style_refresh_cb,
60 w,
61 NULL);
62-
63- GTK_WIDGET_CLASS(xfce_desktop_parent_class)->style_set(w, old_style);
64 }
65
66 static void
67@@ -1636,8 +1612,6 @@
68 xfce_desktop_set_single_workspace_mode(XfceDesktop *desktop,
69 gboolean single_workspace)
70 {
71- gint i;
72-
73 g_return_if_fail(XFCE_IS_DESKTOP(desktop));
74
75 if(single_workspace == desktop->priv->single_workspace_mode)
76@@ -1647,13 +1621,6 @@
77
78 DBG("single_workspace_mode now %s", single_workspace ? "TRUE" : "FALSE");
79
80- /* update the workspaces & backdrops if they should cache their pixbuf */
81- if(desktop->priv->workspaces) {
82- for(i = 0; i < desktop->priv->nworkspaces; i++) {
83- /* set cache to TRUE when single_workspace is FALSE */
84- xfce_workspace_set_cache_pixbufs(desktop->priv->workspaces[i], !single_workspace);
85- }
86- }
87
88 /* If the desktop has been realized then fake a screen size change to
89 * update the backdrop. There's no reason to if there's no desktop yet */
90
91=== modified file '.pc/xubuntu_set-accountsservice-user-bg.patch/src/xfce-desktop.c'
92--- .pc/xubuntu_set-accountsservice-user-bg.patch/src/xfce-desktop.c 2014-04-02 06:58:37 +0000
93+++ .pc/xubuntu_set-accountsservice-user-bg.patch/src/xfce-desktop.c 2014-04-09 06:59:22 +0000
94@@ -607,15 +607,10 @@
95 {
96 XfceDesktop *desktop = XFCE_DESKTOP(user_data);
97 gint current_workspace, new_workspace, i;
98- XfceBackdrop *current_backdrop, *new_backdrop;
99+ XfceBackdrop *backdrop;
100
101 TRACE("entering");
102
103- /* Ignore workspace changes in single workspace mode so long as we
104- * already have the bg_pixmap loaded */
105- if(xfce_desktop_get_single_workspace_mode(desktop) && desktop->priv->bg_pixmap)
106- return;
107-
108 current_workspace = desktop->priv->current_workspace;
109 new_workspace = xfce_desktop_get_current_workspace(desktop);
110
111@@ -628,22 +623,9 @@
112 current_workspace, new_workspace);
113
114 for(i = 0; i < xfce_desktop_get_n_monitors(desktop); i++) {
115- /* We want to compare the current workspace backdrop with the new one
116- * and see if we can avoid changing them if they are the same image/style */
117- if(current_workspace < desktop->priv->nworkspaces && current_workspace >= 0) {
118- current_backdrop = xfce_workspace_get_backdrop(desktop->priv->workspaces[current_workspace], i);
119- new_backdrop = xfce_workspace_get_backdrop(desktop->priv->workspaces[new_workspace], i);
120-
121- if(!xfce_backdrop_compare_backdrops(current_backdrop, new_backdrop) || !desktop->priv->bg_pixmap) {
122- /* only update monitors that require it */
123- backdrop_changed_cb(new_backdrop, user_data);
124- }
125- } else {
126- /* If current_workspace was removed or never existed, get the new
127- * backdrop and apply it */
128- new_backdrop = xfce_workspace_get_backdrop(desktop->priv->workspaces[new_workspace], i);
129- backdrop_changed_cb(new_backdrop, user_data);
130- }
131+ backdrop = xfce_workspace_get_backdrop(desktop->priv->workspaces[new_workspace], i);
132+ /* update it */
133+ backdrop_changed_cb(backdrop, user_data);
134
135 /* When we're spanning screens we only care about the first monitor */
136 if(xfce_workspace_get_xinerama_stretch(desktop->priv->workspaces[new_workspace]))
137@@ -675,10 +657,6 @@
138 desktop->priv->property_prefix,
139 nlast_workspace);
140
141- /* Tell workspace whether to cache pixbufs */
142- xfce_workspace_set_cache_pixbufs(desktop->priv->workspaces[nlast_workspace],
143- !desktop->priv->single_workspace_mode);
144-
145 xfce_workspace_monitors_changed(desktop->priv->workspaces[nlast_workspace],
146 desktop->priv->gscreen);
147
148@@ -1318,8 +1296,6 @@
149 (GSourceFunc)style_refresh_cb,
150 w,
151 NULL);
152-
153- GTK_WIDGET_CLASS(xfce_desktop_parent_class)->style_set(w, old_style);
154 }
155
156 static void
157@@ -1549,8 +1525,6 @@
158 xfce_desktop_set_single_workspace_mode(XfceDesktop *desktop,
159 gboolean single_workspace)
160 {
161- gint i;
162-
163 g_return_if_fail(XFCE_IS_DESKTOP(desktop));
164
165 if(single_workspace == desktop->priv->single_workspace_mode)
166@@ -1560,13 +1534,6 @@
167
168 DBG("single_workspace_mode now %s", single_workspace ? "TRUE" : "FALSE");
169
170- /* update the workspaces & backdrops if they should cache their pixbuf */
171- if(desktop->priv->workspaces) {
172- for(i = 0; i < desktop->priv->nworkspaces; i++) {
173- /* set cache to TRUE when single_workspace is FALSE */
174- xfce_workspace_set_cache_pixbufs(desktop->priv->workspaces[i], !single_workspace);
175- }
176- }
177
178 /* If the desktop has been realized then fake a screen size change to
179 * update the backdrop. There's no reason to if there's no desktop yet */
180
181=== modified file 'ChangeLog'
182--- ChangeLog 2014-04-07 15:39:01 +0000
183+++ ChangeLog 2014-04-09 06:59:22 +0000
184@@ -1,3 +1,197 @@
185+commit 132d0582c7d7228465552fc572948ece5b6750ff
186+Author: Alois Nešpor <info@aloisnespor.info>
187+Date: Mon Apr 7 00:32:01 2014 +0200
188+
189+ I18n: Update translation cs (100%).
190+
191+ 216 translated messages.
192+
193+ Transifex (https://www.transifex.com/projects/p/xfce/).
194+
195+commit 9e1b9dce4a598534a67b8fdaf7c23a37131277b4
196+Author: Eric Koegel <eric.koegel@gmail.com>
197+Date: Sun Apr 6 22:40:54 2014 +0300
198+
199+ Hook up the signal handlers in xfdesktop-settings
200+
201+ When xfdesktop-settings is plugged into the settings manager, it
202+ needs to watch workspace and geometry changes to keep track of the
203+ where it is. This happens differently from when it isn't a GtkPlug.
204+
205+commit 8d98759ac0a576b25c7ede1d07d95ce5084206a4
206+Author: Eric Koegel <eric.koegel@gmail.com>
207+Date: Sun Apr 6 21:52:50 2014 +0300
208+
209+ Fix for monitors not getting updated
210+
211+ When multiple monitors are connected there are cases where the
212+ backgrounds don't get drawn. This patch makes it so that the
213+ backdrop is always drawn on a workspace change. Because of that
214+ change it makes sense to always cache the backdrop image since it
215+ would have to reload the image/canvas often.
216+
217+commit 44fdba5491ad7684d0ca19c5ee80899b8e23c394
218+Author: Eric Koegel <eric.koegel@gmail.com>
219+Date: Sat Apr 5 22:00:09 2014 +0300
220+
221+ Change default image style to zoomed
222+
223+commit 850fd27b6bf4384a4ae5c5a94d66e8f775900ef0
224+Author: Eric Koegel <eric.koegel@gmail.com>
225+Date: Sun Apr 6 08:40:37 2014 +0300
226+
227+ Use GTK_STOCK_EXECUTE for Execute menu entry (Bug 10800)
228+
229+commit 9e4f3d1a2ec0d51e02b675fb7605c5eac74e3a9e
230+Author: Eric Koegel <eric.koegel@gmail.com>
231+Date: Sat Apr 5 21:12:53 2014 +0300
232+
233+ Fix issues with file move events (Bug 10796)
234+
235+ Commit 31143fed1e36 compared file basenames which isn't what we
236+ should be doing. We need to compare the file's parent with our
237+ desktop folder to determine if the file move keeps the file on
238+ the desktop.
239+
240+commit 4654e3220706a4c983d7ca3edfbab244b3aa2b19
241+Author: salepetronije <salepetronije@gmail.com>
242+Date: Sat Apr 5 18:32:03 2014 +0200
243+
244+ I18n: Update translation sr (100%).
245+
246+ 216 translated messages.
247+
248+ Transifex (https://www.transifex.com/projects/p/xfce/).
249+
250+commit a0f90989191031cc443feb4804b9d65b6a074e5b
251+Author: PavelNicklasson <pavelnicklasson@bahnhof.se>
252+Date: Sat Apr 5 12:32:30 2014 +0200
253+
254+ I18n: Update translation sv (100%).
255+
256+ 216 translated messages.
257+
258+ Transifex (https://www.transifex.com/projects/p/xfce/).
259+
260+commit e79db5781cc37183daac2722d84d2d40dc5e1721
261+Author: Piotr Sokół <psokol@jabster.pl>
262+Date: Sat Apr 5 12:32:30 2014 +0200
263+
264+ I18n: Update translation pl (100%).
265+
266+ 216 translated messages.
267+
268+ Transifex (https://www.transifex.com/projects/p/xfce/).
269+
270+commit 83107373dbd6b9e21abd4967aa2ba5753d49df5d
271+Author: Masato HASHIMOTO <cabezon.hashimoto@gmail.com>
272+Date: Sat Apr 5 12:32:30 2014 +0200
273+
274+ I18n: Update translation ja (100%).
275+
276+ 216 translated messages.
277+
278+ Transifex (https://www.transifex.com/projects/p/xfce/).
279+
280+commit a2d36d611d10b96fe16e3b84565cc67f3bdcdce3
281+Author: cri <cri.penta@gmail.com>
282+Date: Sat Apr 5 00:32:02 2014 +0200
283+
284+ I18n: Update translation it (100%).
285+
286+ 216 translated messages.
287+
288+ Transifex (https://www.transifex.com/projects/p/xfce/).
289+
290+commit d1a4197a889233e64e69e87b5bfb60e8cba460f4
291+Author: Pjotr123 <pjotrvertaalt@gmail.com>
292+Date: Fri Apr 4 18:32:19 2014 +0200
293+
294+ I18n: Update translation nl (100%).
295+
296+ 216 translated messages.
297+
298+ Transifex (https://www.transifex.com/projects/p/xfce/).
299+
300+commit bba3d604b10a41225298c841c7508b37740f15ae
301+Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
302+Date: Fri Apr 4 18:32:19 2014 +0200
303+
304+ I18n: Update translation kk (100%).
305+
306+ 216 translated messages.
307+
308+ Transifex (https://www.transifex.com/projects/p/xfce/).
309+
310+commit 8c2ce0ac34ecde41409ade66cfd91a5dd1894ef4
311+Author: theppitak <theppitak@gmail.com>
312+Date: Fri Apr 4 12:32:43 2014 +0200
313+
314+ I18n: Update translation th (100%).
315+
316+ 216 translated messages.
317+
318+ Transifex (https://www.transifex.com/projects/p/xfce/).
319+
320+commit 0f3d71e3e129f9d0073d8f17e89b01b21534862f
321+Author: k3lt01 <keltoiboy@gmail.com>
322+Date: Fri Apr 4 12:32:43 2014 +0200
323+
324+ I18n: Update translation en_AU (100%).
325+
326+ 216 translated messages.
327+
328+ Transifex (https://www.transifex.com/projects/p/xfce/).
329+
330+commit fc73039c9ebd7f73a454e0c5b1bdd05696bd87ca
331+Author: Pablo Lezaeta <prflr88@gmail.com>
332+Date: Fri Apr 4 06:32:21 2014 +0200
333+
334+ I18n: Update translation es (100%).
335+
336+ 216 translated messages.
337+
338+ Transifex (https://www.transifex.com/projects/p/xfce/).
339+
340+commit 31143fed1e365f3cbc36a3e721853663e2e07d67
341+Author: Eric Koegel <eric.koegel@gmail.com>
342+Date: Thu Apr 3 16:37:51 2014 +0300
343+
344+ Fix for moving icons into folders on the desktop (Bug 10785)
345+
346+ When monitoring folders with a g_file_monitor, GIO sends move
347+ notifications instead of delete to the file icon manager's file
348+ monitor. Because of that, we need to update the monitor to check
349+ if the icon has been moved off the desktop and only delete the
350+ icon.
351+
352+commit 5dddbd5a3d96ac876ae8096303c298e3b2bf09a1
353+Author: Eric Koegel <eric.koegel@gmail.com>
354+Date: Wed Apr 2 19:48:41 2014 +0300
355+
356+ Don't chain up style_set (Bug 10788)
357+
358+ Chaining up the style_set function causes the background to
359+ disappear on theme changes.
360+
361+commit f88ce1c815455bb207d3ac608bb8e7bcedfbcc89
362+Author: Eric Koegel <eric.koegel@gmail.com>
363+Date: Tue Apr 1 19:48:11 2014 +0300
364+
365+ g_file_trash_async is too new (Bug 10786)
366+
367+commit f75ca0aa8f0b6f6db0dab42ab6a4a2c4e334c579
368+Author: Eric Koegel <eric.koegel@gmail.com>
369+Date: Mon Mar 31 20:37:43 2014 +0300
370+
371+ Post release tag bump.
372+
373+commit 0684722fe5956be82a2a1b4e7fffc57bf7a36c80
374+Author: Eric Koegel <eric.koegel@gmail.com>
375+Date: Mon Mar 31 20:32:35 2014 +0300
376+
377+ Updates for release.
378+
379 commit f3f876d5dd501dba794153341b8f7747037f9c32
380 Author: Eric Koegel <eric.koegel@gmail.com>
381 Date: Sun Mar 30 20:27:57 2014 +0300
382
383=== modified file 'NEWS'
384--- NEWS 2014-04-07 15:39:01 +0000
385+++ NEWS 2014-04-09 06:59:22 +0000
386@@ -1,8 +1,30 @@
387+4.11.6
388+======
389+[Please note that this is a development release.]
390+
391+Seventh development release of xfdesktop targeting for Xfce 4.12.
392+Please report all problems at bugzilla.xfce.org.
393+
394+* Miscellaneous bug fixes:
395+ - g_file_trash_async is too new (Bug 10786)
396+ - Don't chain up style_set (Bug 10788)
397+ - Fix for moving icons into folders on the desktop (Bug 10785)
398+ - Fix issues with file move events (Bug 10796)
399+ - Use GTK_STOCK_EXECUTE for Execute menu entry (Bug 10800)
400+ - Change default image style to zoomed
401+ - Fix for monitors not getting updated
402+ - Hook up the signal handlers in xfdesktop-settings
403+
404+* Translation updates: Czech (cs), Dutch (Flemish) (nl),
405+ English (Australia) (en_AU), Italian (it), Japanese (ja),
406+ Kazakh (kk), Polish (pl), Serbian (sr), Spanish (Castilian) (es),
407+ Swedish (sv), Thai (th),
408+
409 4.11.5
410 ======
411 [Please note that this is a development release.]
412
413-Seventh development release of xfdesktop targeting for Xfce 4.12.
414+Sixth development release of xfdesktop targeting for Xfce 4.12.
415 Please report all problems at bugzilla.xfce.org.
416
417 * Miscellaneous bug fixes:
418
419=== modified file 'common/xfdesktop-common.c'
420--- common/xfdesktop-common.c 2014-02-20 15:59:49 +0000
421+++ common/xfdesktop-common.c 2014-04-09 06:59:22 +0000
422@@ -54,6 +54,25 @@
423 #include "xfce-backdrop.h" /* for XfceBackdropImageStyle */
424
425
426+gint
427+xfdesktop_compare_paths(GFile *a, GFile *b)
428+{
429+ gchar *path_a, *path_b;
430+ gboolean ret;
431+
432+ path_a = g_file_get_path(a);
433+ path_b = g_file_get_path(b);
434+
435+ DBG("a %s, b %s", path_a, path_b);
436+
437+ ret = g_strcmp0(path_a, path_b);
438+
439+ g_free(path_a);
440+ g_free(path_b);
441+
442+ return ret;
443+}
444+
445 gchar *
446 xfdesktop_get_file_mimetype(const gchar *file)
447 {
448
449=== modified file 'common/xfdesktop-common.h'
450--- common/xfdesktop-common.h 2014-02-20 15:59:49 +0000
451+++ common/xfdesktop-common.h 2014-04-09 06:59:22 +0000
452@@ -87,6 +87,8 @@
453
454 G_BEGIN_DECLS
455
456+gint xfdesktop_compare_paths(GFile *a, GFile *b);
457+
458 gboolean xfdesktop_image_file_is_valid(const gchar *filename);
459
460 gchar *xfdesktop_get_file_mimetype(const gchar *file);
461
462=== modified file 'configure'
463--- configure 2014-04-07 15:39:01 +0000
464+++ configure 2014-04-09 06:59:22 +0000
465@@ -1,6 +1,6 @@
466 #! /bin/sh
467 # Guess values for system-dependent variables and create Makefiles.
468-# Generated by GNU Autoconf 2.69 for xfdesktop 4.11.5.
469+# Generated by GNU Autoconf 2.69 for xfdesktop 4.11.6.
470 #
471 # Report bugs to <http://bugzilla.xfce.org/>.
472 #
473@@ -590,8 +590,8 @@
474 # Identity of this package.
475 PACKAGE_NAME='xfdesktop'
476 PACKAGE_TARNAME='xfdesktop'
477-PACKAGE_VERSION='4.11.5'
478-PACKAGE_STRING='xfdesktop 4.11.5'
479+PACKAGE_VERSION='4.11.6'
480+PACKAGE_STRING='xfdesktop 4.11.6'
481 PACKAGE_BUGREPORT='http://bugzilla.xfce.org/'
482 PACKAGE_URL=''
483
484@@ -1468,7 +1468,7 @@
485 # Omit some internal or obsolete options to make the list less imposing.
486 # This message is too long to be a string in the A/UX 3.1 sh.
487 cat <<_ACEOF
488-\`configure' configures xfdesktop 4.11.5 to adapt to many kinds of systems.
489+\`configure' configures xfdesktop 4.11.6 to adapt to many kinds of systems.
490
491 Usage: $0 [OPTION]... [VAR=VALUE]...
492
493@@ -1542,7 +1542,7 @@
494
495 if test -n "$ac_init_help"; then
496 case $ac_init_help in
497- short | recursive ) echo "Configuration of xfdesktop 4.11.5:";;
498+ short | recursive ) echo "Configuration of xfdesktop 4.11.6:";;
499 esac
500 cat <<\_ACEOF
501
502@@ -1688,7 +1688,7 @@
503 test -n "$ac_init_help" && exit $ac_status
504 if $ac_init_version; then
505 cat <<\_ACEOF
506-xfdesktop configure 4.11.5
507+xfdesktop configure 4.11.6
508 generated by GNU Autoconf 2.69
509
510 Copyright (C) 2012 Free Software Foundation, Inc.
511@@ -2057,7 +2057,7 @@
512 This file contains any messages produced by compilers while
513 running configure, to aid debugging if configure makes a mistake.
514
515-It was created by xfdesktop $as_me 4.11.5, which was
516+It was created by xfdesktop $as_me 4.11.6, which was
517 generated by GNU Autoconf 2.69. Invocation command line was
518
519 $ $0 $@
520@@ -2922,7 +2922,7 @@
521
522 # Define the identity of the package.
523 PACKAGE='xfdesktop'
524- VERSION='4.11.5'
525+ VERSION='4.11.6'
526
527
528 cat >>confdefs.h <<_ACEOF
529@@ -18873,7 +18873,7 @@
530 # report actual input values of CONFIG_FILES etc. instead of their
531 # values after options handling.
532 ac_log="
533-This file was extended by xfdesktop $as_me 4.11.5, which was
534+This file was extended by xfdesktop $as_me 4.11.6, which was
535 generated by GNU Autoconf 2.69. Invocation command line was
536
537 CONFIG_FILES = $CONFIG_FILES
538@@ -18939,7 +18939,7 @@
539 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
540 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
541 ac_cs_version="\\
542-xfdesktop config.status 4.11.5
543+xfdesktop config.status 4.11.6
544 configured by $0, generated by GNU Autoconf 2.69,
545 with options \\"\$ac_cs_config\\"
546
547
548=== modified file 'configure.ac'
549--- configure.ac 2014-04-07 15:39:01 +0000
550+++ configure.ac 2014-04-09 06:59:22 +0000
551@@ -11,9 +11,9 @@
552 dnl version info
553 m4_define([xfdesktop_version_major], [4])
554 m4_define([xfdesktop_version_minor], [11])
555-m4_define([xfdesktop_version_micro], [5])
556+m4_define([xfdesktop_version_micro], [6])
557 m4_define([xfdesktop_version_nano], [])
558-m4_define([xfdesktop_version_build], [f3f876d])
559+m4_define([xfdesktop_version_build], [132d058])
560 m4_define([xfdesktop_version_tag],[])
561 m4_define([xfdesktop_version], [xfdesktop_version_major().xfdesktop_version_minor().xfdesktop_version_micro()ifelse(xfdesktop_version_nano(), [], [], [.xfdesktop_version_nano()])ifelse(xfdesktop_version_tag(), [git], [xfdesktop_version_tag()-xfdesktop_version_build()], [xfdesktop_version_tag()])])
562
563
564=== modified file 'debian/changelog'
565--- debian/changelog 2014-04-07 15:39:01 +0000
566+++ debian/changelog 2014-04-09 06:59:22 +0000
567@@ -1,3 +1,20 @@
568+xfdesktop4 (4.11.6-1ubuntu1) UNRELEASED; urgency=medium
569+
570+ * Merge from Debian experimental. Remaining changes:
571+ - debian/patches/xubuntu_improve-nautilus-interactions.patch: added,
572+ should prevent nautilus from taking over the desktop if xfdesktop is
573+ running (and vice-versa).
574+ - debian/patches/xubuntu_set-accountsservice-user-bg.patch: update the
575+ user background property of Accountsservice on backdrop change.
576+
577+ -- Jackson Doak <noskcaj@ubuntu.com> Wed, 09 Apr 2014 15:55:54 +1000
578+
579+xfdesktop4 (4.11.6-1) experimental; urgency=medium
580+
581+ * New upstream development release.
582+
583+ -- Yves-Alexis Perez <corsac@debian.org> Tue, 08 Apr 2014 07:49:31 +0200
584+
585 xfdesktop4 (4.11.5-1ubuntu1) trusty; urgency=medium
586
587 * Merge from Debian experimental. Remaining changes:
588
589=== modified file 'debian/patches/xubuntu_improve-nautilus-interactions.patch'
590--- debian/patches/xubuntu_improve-nautilus-interactions.patch 2014-04-02 06:58:37 +0000
591+++ debian/patches/xubuntu_improve-nautilus-interactions.patch 2014-04-09 06:59:22 +0000
592@@ -17,7 +17,7 @@
593
594 --- a/src/xfce-desktop.c
595 +++ b/src/xfce-desktop.c
596-@@ -812,8 +812,8 @@ screen_set_selection(XfceDesktop *deskto
597+@@ -790,8 +790,8 @@ screen_set_selection(XfceDesktop *deskto
598 {
599 Window xwin;
600 gint xscreen;
601@@ -28,7 +28,7 @@
602
603 xwin = GDK_WINDOW_XID(gtk_widget_get_window(GTK_WIDGET(desktop)));
604 xscreen = gdk_screen_get_number(desktop->priv->gscreen);
605-@@ -822,6 +822,9 @@ screen_set_selection(XfceDesktop *deskto
606+@@ -800,6 +800,9 @@ screen_set_selection(XfceDesktop *deskto
607 selection_atom = XInternAtom(gdk_x11_get_default_xdisplay(), selection_name, False);
608 manager_atom = XInternAtom(gdk_x11_get_default_xdisplay(), "MANAGER", False);
609
610@@ -38,7 +38,7 @@
611 /* the previous check in src/main.c occurs too early, so workaround by
612 * adding this one. */
613 if(XGetSelectionOwner(gdk_x11_get_default_xdisplay(), selection_atom) != None) {
614-@@ -829,8 +832,16 @@ screen_set_selection(XfceDesktop *deskto
615+@@ -807,8 +810,16 @@ screen_set_selection(XfceDesktop *deskto
616 exit(0);
617 }
618
619
620=== modified file 'po/cs.po'
621--- po/cs.po 2014-04-07 15:39:01 +0000
622+++ po/cs.po 2014-04-09 06:59:22 +0000
623@@ -13,8 +13,8 @@
624 msgstr ""
625 "Project-Id-Version: Xfdesktop\n"
626 "Report-Msgid-Bugs-To: \n"
627-"POT-Creation-Date: 2014-02-24 12:32+0100\n"
628-"PO-Revision-Date: 2014-03-23 20:09+0000\n"
629+"POT-Creation-Date: 2014-04-03 18:32+0200\n"
630+"PO-Revision-Date: 2014-04-06 21:31+0000\n"
631 "Last-Translator: Alois Nešpor <info@aloisnespor.info>\n"
632 "Language-Team: Czech (http://www.transifex.com/projects/p/xfce/language/cs/)\n"
633 "MIME-Version: 1.0\n"
634@@ -23,37 +23,37 @@
635 "Language: cs\n"
636 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
637
638-#: ../settings/main.c:375 ../src/xfdesktop-special-file-icon.c:295
639+#: ../settings/main.c:404 ../src/xfdesktop-special-file-icon.c:295
640 #: ../src/xfdesktop-special-file-icon.c:479
641 msgid "Home"
642 msgstr "Domovská složka"
643
644-#: ../settings/main.c:377
645+#: ../settings/main.c:406
646 msgid "Filesystem"
647 msgstr "Systém souborů"
648
649-#: ../settings/main.c:379
650+#: ../settings/main.c:408
651 msgid "Trash"
652 msgstr "Koš"
653
654-#: ../settings/main.c:381
655+#: ../settings/main.c:410
656 msgid "Removable Devices"
657 msgstr "Vyměnitelné jednotky"
658
659-#: ../settings/main.c:383
660+#: ../settings/main.c:412
661 msgid "Network Shares"
662 msgstr "Sdílení sítě"
663
664-#: ../settings/main.c:385
665+#: ../settings/main.c:414
666 msgid "Disks and Drives"
667 msgstr "Disk a ovladače"
668
669-#: ../settings/main.c:387
670+#: ../settings/main.c:416
671 msgid "Other Devices"
672 msgstr "Jiná zařízení"
673
674 #. Display the file name, file type, and file size in the tooltip.
675-#: ../settings/main.c:500
676+#: ../settings/main.c:529
677 #, c-format
678 msgid ""
679 "<b>%s</b>\n"
680@@ -61,95 +61,95 @@
681 "Size: %s"
682 msgstr "<b>%s</b>⏎\nTyp: %s⏎\nVelikost: %s"
683
684-#: ../settings/main.c:686
685+#: ../settings/main.c:715
686 #, c-format
687 msgid "Wallpaper for Monitor %d (%s)"
688 msgstr "Tapeta pro monitor %d (%s)"
689
690-#: ../settings/main.c:689
691+#: ../settings/main.c:718
692 #, c-format
693 msgid "Wallpaper for Monitor %d"
694 msgstr "Tapeta pro monitor %d"
695
696-#: ../settings/main.c:695
697+#: ../settings/main.c:724
698 msgid "Move this dialog to the display you want to edit the settings for."
699 msgstr "Přesuňte toto dialogové okno na displej, jehož nastavení chcete měnit."
700
701-#: ../settings/main.c:702
702+#: ../settings/main.c:731
703 #, c-format
704 msgid "Wallpaper for %s on Monitor %d (%s)"
705 msgstr "Tapeta pro %s na monitoru %d (%s)"
706
707-#: ../settings/main.c:706
708+#: ../settings/main.c:735
709 #, c-format
710 msgid "Wallpaper for %s on Monitor %d"
711 msgstr "Tapeta pro %s na monitoru %d"
712
713-#: ../settings/main.c:713
714+#: ../settings/main.c:742
715 msgid ""
716 "Move this dialog to the display and workspace you want to edit the settings "
717 "for."
718 msgstr "Přesuňte toto dialogové okno na displej a pracovní plochu, jehož nastavení chcete měnit."
719
720 #. Single monitor and single workspace
721-#: ../settings/main.c:720
722+#: ../settings/main.c:749
723 #, c-format
724 msgid "Wallpaper for my desktop"
725 msgstr "Tapeta pro můj desktop"
726
727 #. Single monitor and per workspace wallpaper
728-#: ../settings/main.c:726
729+#: ../settings/main.c:755
730 #, c-format
731 msgid "Wallpaper for %s"
732 msgstr "Tapeta pro %s"
733
734-#: ../settings/main.c:731
735+#: ../settings/main.c:760
736 msgid "Move this dialog to the workspace you want to edit the settings for."
737 msgstr "Přesuňte toto dialogové okno na pracovní prostor, jehož nastavení chcete měnit."
738
739-#: ../settings/main.c:1134
740+#: ../settings/main.c:1174
741 msgid "Image selection is unavailable while the image style is set to None."
742 msgstr "Výběr obrazu není k dispozici, pokud je styl obrazu nastaven na hodnotu Žádný."
743
744-#: ../settings/main.c:1481
745+#: ../settings/main.c:1523
746 msgid "Spanning screens"
747 msgstr "Rozložení přes obrazovky"
748
749-#: ../settings/main.c:1786
750+#: ../settings/main.c:1825
751 msgid "Image files"
752 msgstr "Soubory s obrázky"
753
754-#: ../settings/main.c:1958
755+#: ../settings/main.c:2001
756 msgid "Settings manager socket"
757 msgstr "Soket správce nastavení"
758
759-#: ../settings/main.c:1958
760+#: ../settings/main.c:2001
761 msgid "SOCKET ID"
762 msgstr "SOCKET ID"
763
764-#: ../settings/main.c:1959
765+#: ../settings/main.c:2002
766 msgid "Version information"
767 msgstr "Informace o verzi"
768
769-#: ../settings/main.c:1986
770+#: ../settings/main.c:2030
771 #, c-format
772 msgid "Type '%s --help' for usage."
773 msgstr "Informace o použití získáte příkazem '%s --help'."
774
775-#: ../settings/main.c:1998
776+#: ../settings/main.c:2042
777 msgid "The Xfce development team. All rights reserved."
778 msgstr "Tým vývojářů Xfce. Všechna práva vyhrazena."
779
780-#: ../settings/main.c:1999
781+#: ../settings/main.c:2043
782 #, c-format
783 msgid "Please report bugs to <%s>."
784 msgstr "Prosíme, abyste chyby hlásili na <%s>."
785
786-#: ../settings/main.c:2006
787+#: ../settings/main.c:2050
788 msgid "Desktop Settings"
789 msgstr "Nastavení plochy"
790
791-#: ../settings/main.c:2008
792+#: ../settings/main.c:2052
793 msgid "Unable to contact settings server"
794 msgstr "Spojení se serverem nastavení nelze navázat"
795
796@@ -337,7 +337,7 @@
797 msgid "File/launcher icons"
798 msgstr "Ikony souborů a spouštěčů"
799
800-#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1015
801+#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1020
802 msgid "Desktop"
803 msgstr "Plocha"
804
805@@ -516,6 +516,22 @@
806 msgid "_Remove Workspace '%s'"
807 msgstr "_Odebrat pracovní plochu '%s'"
808
809+#: ../src/xfdesktop-app-menu-item.c:349
810+#: ../src/xfdesktop-file-icon-manager.c:823
811+#: ../src/xfdesktop-file-icon-manager.c:1084
812+#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
813+#: ../src/xfdesktop-file-utils.c:1132 ../src/xfdesktop-file-utils.c:1209
814+#: ../src/xfdesktop-file-utils.c:1234 ../src/xfdesktop-file-utils.c:1286
815+msgid "Launch Error"
816+msgstr "Chyba při spuštění"
817+
818+#: ../src/xfdesktop-app-menu-item.c:351
819+#: ../src/xfdesktop-file-icon-manager.c:1086
820+msgid ""
821+"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
822+"edit launchers and links on the desktop."
823+msgstr "Nelze spustit \"exo-desktop-item-edit\". Tato aplikace je vyžadována pro vytváření a úpravu spouštěčů a odkazů na ploše."
824+
825 #: ../src/xfdesktop-application.c:768
826 msgid "Display version information"
827 msgstr "Zobrazit informace o verzi"
828@@ -619,8 +635,8 @@
829 msgstr "Žádná z vybraných ikon nepodporuje přejmenování."
830
831 #: ../src/xfdesktop-file-icon-manager.c:675
832-#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:876
833-#: ../src/xfdesktop-file-utils.c:913
834+#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:921
835+#: ../src/xfdesktop-file-utils.c:959
836 msgid "Trash Error"
837 msgstr "Chyba koše"
838
839@@ -631,11 +647,11 @@
840
841 #: ../src/xfdesktop-file-icon-manager.c:677
842 #: ../src/xfdesktop-file-icon-manager.c:721 ../src/xfdesktop-file-utils.c:725
843-#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:828
844-#: ../src/xfdesktop-file-utils.c:959 ../src/xfdesktop-file-utils.c:1006
845-#: ../src/xfdesktop-file-utils.c:1047 ../src/xfdesktop-file-utils.c:1088
846-#: ../src/xfdesktop-file-utils.c:1190 ../src/xfdesktop-file-utils.c:1242
847-#: ../src/xfdesktop-file-utils.c:1315 ../src/xfdesktop-file-utils.c:1393
848+#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:864
849+#: ../src/xfdesktop-file-utils.c:1005 ../src/xfdesktop-file-utils.c:1052
850+#: ../src/xfdesktop-file-utils.c:1093 ../src/xfdesktop-file-utils.c:1134
851+#: ../src/xfdesktop-file-utils.c:1236 ../src/xfdesktop-file-utils.c:1288
852+#: ../src/xfdesktop-file-utils.c:1361 ../src/xfdesktop-file-utils.c:1439
853 msgid ""
854 "This feature requires a file manager service to be present (such as the one "
855 "supplied by Thunar)."
856@@ -648,14 +664,6 @@
857 msgid "Unable to launch \"%s\":"
858 msgstr "Nelze spustit \"%s\":"
859
860-#: ../src/xfdesktop-file-icon-manager.c:823
861-#: ../src/xfdesktop-file-icon-manager.c:1084
862-#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
863-#: ../src/xfdesktop-file-utils.c:1086 ../src/xfdesktop-file-utils.c:1163
864-#: ../src/xfdesktop-file-utils.c:1188 ../src/xfdesktop-file-utils.c:1240
865-msgid "Launch Error"
866-msgstr "Chyba při spuštění"
867-
868 #: ../src/xfdesktop-file-icon-manager.c:1008
869 #, c-format
870 msgid "_Open With \"%s\""
871@@ -666,12 +674,6 @@
872 msgid "Open With \"%s\""
873 msgstr "Otevřít pomocí \"%s\""
874
875-#: ../src/xfdesktop-file-icon-manager.c:1086
876-msgid ""
877-"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
878-"edit launchers and links on the desktop."
879-msgstr "Nelze spustit \"exo-desktop-item-edit\". Tato aplikace je vyžadována pro vytváření a úpravu spouštěčů a odkazů na ploše."
880-
881 #: ../src/xfdesktop-file-icon-manager.c:1337
882 msgid "_Open all"
883 msgstr "_Otevřít vše"
884@@ -742,23 +744,23 @@
885 msgid "P_roperties..."
886 msgstr "_Vlastnosti..."
887
888-#: ../src/xfdesktop-file-icon-manager.c:2716
889+#: ../src/xfdesktop-file-icon-manager.c:2642
890 msgid "Load Error"
891 msgstr "Chyba při načítání"
892
893-#: ../src/xfdesktop-file-icon-manager.c:2718
894+#: ../src/xfdesktop-file-icon-manager.c:2644
895 msgid "Failed to load the desktop folder"
896 msgstr "Složku pracovní plochu se nepodařilo načíst"
897
898-#: ../src/xfdesktop-file-icon-manager.c:3262
899+#: ../src/xfdesktop-file-icon-manager.c:3189
900 msgid "Copy _Here"
901 msgstr "_Zkopírovat sem"
902
903-#: ../src/xfdesktop-file-icon-manager.c:3262
904+#: ../src/xfdesktop-file-icon-manager.c:3189
905 msgid "_Move Here"
906 msgstr "_Přesunout sem"
907
908-#: ../src/xfdesktop-file-icon-manager.c:3262
909+#: ../src/xfdesktop-file-icon-manager.c:3189
910 msgid "_Link Here"
911 msgstr "_Vytvořit zde odkaz"
912
913@@ -807,72 +809,72 @@
914 msgid "The file could not be renamed"
915 msgstr "Soubor nelze přejmenovat"
916
917-#: ../src/xfdesktop-file-utils.c:826
918+#: ../src/xfdesktop-file-utils.c:862
919 msgid "Delete Error"
920 msgstr "Chyba při mazání"
921
922-#: ../src/xfdesktop-file-utils.c:827
923+#: ../src/xfdesktop-file-utils.c:863
924 msgid "The selected files could not be deleted"
925 msgstr "Vybrané soubory nelze smazat"
926
927-#: ../src/xfdesktop-file-utils.c:877
928+#: ../src/xfdesktop-file-utils.c:922
929 msgid "The selected files could not be moved to the trash"
930 msgstr "Vybrané soubory nelze přesunout do koše"
931
932-#: ../src/xfdesktop-file-utils.c:878 ../src/xfdesktop-file-utils.c:915
933+#: ../src/xfdesktop-file-utils.c:923 ../src/xfdesktop-file-utils.c:961
934 msgid ""
935 "This feature requires a trash service to be present (such as the one "
936 "supplied by Thunar)."
937 msgstr "Tato vlastnost vyžaduje přítomnost služby koše (například dodávanou v rámci aplikace Thunar)."
938
939-#: ../src/xfdesktop-file-utils.c:914
940+#: ../src/xfdesktop-file-utils.c:960
941 msgid "Could not empty the trash"
942 msgstr "Nelze vysypat koš"
943
944-#: ../src/xfdesktop-file-utils.c:957
945+#: ../src/xfdesktop-file-utils.c:1003
946 msgid "Create File Error"
947 msgstr "Chyba při vytváření souboru"
948
949-#: ../src/xfdesktop-file-utils.c:958
950+#: ../src/xfdesktop-file-utils.c:1004
951 msgid "Could not create a new file"
952 msgstr "Nelze vytvořit nový soubor"
953
954-#: ../src/xfdesktop-file-utils.c:1004
955+#: ../src/xfdesktop-file-utils.c:1050
956 msgid "Create Document Error"
957 msgstr "Chyba při vytváření dokumentu"
958
959-#: ../src/xfdesktop-file-utils.c:1005
960+#: ../src/xfdesktop-file-utils.c:1051
961 msgid "Could not create a new document from the template"
962 msgstr "Nový dokument ze šablony nelze vytvořit"
963
964-#: ../src/xfdesktop-file-utils.c:1045
965+#: ../src/xfdesktop-file-utils.c:1091
966 msgid "File Properties Error"
967 msgstr "Chyba vlastností souboru"
968
969-#: ../src/xfdesktop-file-utils.c:1046
970+#: ../src/xfdesktop-file-utils.c:1092
971 msgid "The file properties dialog could not be opened"
972 msgstr "Dialogové okno vlastnosti souboru nelze otevřít"
973
974-#: ../src/xfdesktop-file-utils.c:1087
975+#: ../src/xfdesktop-file-utils.c:1133
976 msgid "The file could not be opened"
977 msgstr "Soubor nelze otevřít"
978
979-#: ../src/xfdesktop-file-utils.c:1160 ../src/xfdesktop-file-utils.c:1185
980+#: ../src/xfdesktop-file-utils.c:1206 ../src/xfdesktop-file-utils.c:1231
981 #, c-format
982 msgid "Failed to run \"%s\""
983 msgstr "Spuštění \"%s\" se nezdařilo"
984
985-#: ../src/xfdesktop-file-utils.c:1241
986+#: ../src/xfdesktop-file-utils.c:1287
987 msgid "The application chooser could not be opened"
988 msgstr "Výběr aplikace nebylo možné otevřít"
989
990-#: ../src/xfdesktop-file-utils.c:1299 ../src/xfdesktop-file-utils.c:1313
991-#: ../src/xfdesktop-file-utils.c:1375 ../src/xfdesktop-file-utils.c:1391
992+#: ../src/xfdesktop-file-utils.c:1345 ../src/xfdesktop-file-utils.c:1359
993+#: ../src/xfdesktop-file-utils.c:1421 ../src/xfdesktop-file-utils.c:1437
994 msgid "Transfer Error"
995 msgstr "Chyba při přenosu"
996
997-#: ../src/xfdesktop-file-utils.c:1300 ../src/xfdesktop-file-utils.c:1314
998-#: ../src/xfdesktop-file-utils.c:1376 ../src/xfdesktop-file-utils.c:1392
999+#: ../src/xfdesktop-file-utils.c:1346 ../src/xfdesktop-file-utils.c:1360
1000+#: ../src/xfdesktop-file-utils.c:1422 ../src/xfdesktop-file-utils.c:1438
1001 msgid "The file transfer could not be performed"
1002 msgstr "Přenos souboru nelze uskutečnit"
1003
1004@@ -926,7 +928,7 @@
1005 msgid "Eject Finished"
1006 msgstr "Vysunout dokončené"
1007
1008-#: ../src/xfdesktop-regular-file-icon.c:603
1009+#: ../src/xfdesktop-regular-file-icon.c:741
1010 #, c-format
1011 msgid ""
1012 "Type: %s\n"
1013
1014=== modified file 'po/en_AU.po'
1015--- po/en_AU.po 2014-03-18 22:01:11 +0000
1016+++ po/en_AU.po 2014-04-09 06:59:22 +0000
1017@@ -8,8 +8,8 @@
1018 msgstr ""
1019 "Project-Id-Version: Xfdesktop\n"
1020 "Report-Msgid-Bugs-To: \n"
1021-"POT-Creation-Date: 2014-02-24 12:32+0100\n"
1022-"PO-Revision-Date: 2014-03-01 07:36+0000\n"
1023+"POT-Creation-Date: 2014-04-03 18:32+0200\n"
1024+"PO-Revision-Date: 2014-04-04 08:36+0000\n"
1025 "Last-Translator: k3lt01 <keltoiboy@gmail.com>\n"
1026 "Language-Team: English (Australia) (http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
1027 "MIME-Version: 1.0\n"
1028@@ -18,37 +18,37 @@
1029 "Language: en_AU\n"
1030 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1031
1032-#: ../settings/main.c:375 ../src/xfdesktop-special-file-icon.c:295
1033+#: ../settings/main.c:404 ../src/xfdesktop-special-file-icon.c:295
1034 #: ../src/xfdesktop-special-file-icon.c:479
1035 msgid "Home"
1036 msgstr "Home"
1037
1038-#: ../settings/main.c:377
1039+#: ../settings/main.c:406
1040 msgid "Filesystem"
1041 msgstr "Filesystem"
1042
1043-#: ../settings/main.c:379
1044+#: ../settings/main.c:408
1045 msgid "Trash"
1046 msgstr "Rubbish"
1047
1048-#: ../settings/main.c:381
1049+#: ../settings/main.c:410
1050 msgid "Removable Devices"
1051 msgstr "Removable Devices"
1052
1053-#: ../settings/main.c:383
1054+#: ../settings/main.c:412
1055 msgid "Network Shares"
1056 msgstr "Network Shares"
1057
1058-#: ../settings/main.c:385
1059+#: ../settings/main.c:414
1060 msgid "Disks and Drives"
1061 msgstr "Disks and Drives"
1062
1063-#: ../settings/main.c:387
1064+#: ../settings/main.c:416
1065 msgid "Other Devices"
1066 msgstr "Other Devices"
1067
1068 #. Display the file name, file type, and file size in the tooltip.
1069-#: ../settings/main.c:500
1070+#: ../settings/main.c:529
1071 #, c-format
1072 msgid ""
1073 "<b>%s</b>\n"
1074@@ -56,95 +56,95 @@
1075 "Size: %s"
1076 msgstr "<b>%s</b>\nType: %s\nSize: %s"
1077
1078-#: ../settings/main.c:686
1079+#: ../settings/main.c:715
1080 #, c-format
1081 msgid "Wallpaper for Monitor %d (%s)"
1082 msgstr "Wallpaper for Monitor %d (%s)"
1083
1084-#: ../settings/main.c:689
1085+#: ../settings/main.c:718
1086 #, c-format
1087 msgid "Wallpaper for Monitor %d"
1088 msgstr "Wallpaper for Monitor %d"
1089
1090-#: ../settings/main.c:695
1091+#: ../settings/main.c:724
1092 msgid "Move this dialog to the display you want to edit the settings for."
1093 msgstr "Move this dialogue to the display you want to edit the settings for."
1094
1095-#: ../settings/main.c:702
1096+#: ../settings/main.c:731
1097 #, c-format
1098 msgid "Wallpaper for %s on Monitor %d (%s)"
1099 msgstr "Wallpaper for %s on Monitor %d (%s)"
1100
1101-#: ../settings/main.c:706
1102+#: ../settings/main.c:735
1103 #, c-format
1104 msgid "Wallpaper for %s on Monitor %d"
1105 msgstr "Wallpaper for %s on Monitor %d"
1106
1107-#: ../settings/main.c:713
1108+#: ../settings/main.c:742
1109 msgid ""
1110 "Move this dialog to the display and workspace you want to edit the settings "
1111 "for."
1112 msgstr "Move this dialogue to the display and workspace you want to edit the settings for."
1113
1114 #. Single monitor and single workspace
1115-#: ../settings/main.c:720
1116+#: ../settings/main.c:749
1117 #, c-format
1118 msgid "Wallpaper for my desktop"
1119 msgstr "Wallpaper for my desktop"
1120
1121 #. Single monitor and per workspace wallpaper
1122-#: ../settings/main.c:726
1123+#: ../settings/main.c:755
1124 #, c-format
1125 msgid "Wallpaper for %s"
1126 msgstr "Wallpaper for %s"
1127
1128-#: ../settings/main.c:731
1129+#: ../settings/main.c:760
1130 msgid "Move this dialog to the workspace you want to edit the settings for."
1131 msgstr "Move this dialogue to the workspace you want to edit the settings for."
1132
1133-#: ../settings/main.c:1134
1134+#: ../settings/main.c:1174
1135 msgid "Image selection is unavailable while the image style is set to None."
1136 msgstr "Image selection is unavailable while the image style is set to None."
1137
1138-#: ../settings/main.c:1481
1139+#: ../settings/main.c:1523
1140 msgid "Spanning screens"
1141 msgstr "Spanning screens"
1142
1143-#: ../settings/main.c:1786
1144+#: ../settings/main.c:1825
1145 msgid "Image files"
1146 msgstr "Image files"
1147
1148-#: ../settings/main.c:1958
1149+#: ../settings/main.c:2001
1150 msgid "Settings manager socket"
1151 msgstr "Settings manager socket"
1152
1153-#: ../settings/main.c:1958
1154+#: ../settings/main.c:2001
1155 msgid "SOCKET ID"
1156 msgstr "SOCKET ID"
1157
1158-#: ../settings/main.c:1959
1159+#: ../settings/main.c:2002
1160 msgid "Version information"
1161 msgstr "Version information"
1162
1163-#: ../settings/main.c:1986
1164+#: ../settings/main.c:2030
1165 #, c-format
1166 msgid "Type '%s --help' for usage."
1167 msgstr "Type '%s --help' for usage."
1168
1169-#: ../settings/main.c:1998
1170+#: ../settings/main.c:2042
1171 msgid "The Xfce development team. All rights reserved."
1172 msgstr "The Xfce development team. All rights reserved."
1173
1174-#: ../settings/main.c:1999
1175+#: ../settings/main.c:2043
1176 #, c-format
1177 msgid "Please report bugs to <%s>."
1178 msgstr "Please report bugs to <%s>."
1179
1180-#: ../settings/main.c:2006
1181+#: ../settings/main.c:2050
1182 msgid "Desktop Settings"
1183 msgstr "Desktop Settings"
1184
1185-#: ../settings/main.c:2008
1186+#: ../settings/main.c:2052
1187 msgid "Unable to contact settings server"
1188 msgstr "Unable to contact settings server"
1189
1190@@ -332,7 +332,7 @@
1191 msgid "File/launcher icons"
1192 msgstr "File/launcher icons"
1193
1194-#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1015
1195+#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1020
1196 msgid "Desktop"
1197 msgstr "Desktop"
1198
1199@@ -511,6 +511,22 @@
1200 msgid "_Remove Workspace '%s'"
1201 msgstr "_Remove Workspace '%s'"
1202
1203+#: ../src/xfdesktop-app-menu-item.c:349
1204+#: ../src/xfdesktop-file-icon-manager.c:823
1205+#: ../src/xfdesktop-file-icon-manager.c:1084
1206+#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
1207+#: ../src/xfdesktop-file-utils.c:1132 ../src/xfdesktop-file-utils.c:1209
1208+#: ../src/xfdesktop-file-utils.c:1234 ../src/xfdesktop-file-utils.c:1286
1209+msgid "Launch Error"
1210+msgstr "Launch Error"
1211+
1212+#: ../src/xfdesktop-app-menu-item.c:351
1213+#: ../src/xfdesktop-file-icon-manager.c:1086
1214+msgid ""
1215+"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
1216+"edit launchers and links on the desktop."
1217+msgstr "Unable to launch \"exo-desktop-item-edit\", which is required to create and edit launchers and links on the desktop."
1218+
1219 #: ../src/xfdesktop-application.c:768
1220 msgid "Display version information"
1221 msgstr "Display version information"
1222@@ -614,8 +630,8 @@
1223 msgstr "None of the icons selected support being renamed."
1224
1225 #: ../src/xfdesktop-file-icon-manager.c:675
1226-#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:876
1227-#: ../src/xfdesktop-file-utils.c:913
1228+#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:921
1229+#: ../src/xfdesktop-file-utils.c:959
1230 msgid "Trash Error"
1231 msgstr "Rubbish Error"
1232
1233@@ -626,11 +642,11 @@
1234
1235 #: ../src/xfdesktop-file-icon-manager.c:677
1236 #: ../src/xfdesktop-file-icon-manager.c:721 ../src/xfdesktop-file-utils.c:725
1237-#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:828
1238-#: ../src/xfdesktop-file-utils.c:959 ../src/xfdesktop-file-utils.c:1006
1239-#: ../src/xfdesktop-file-utils.c:1047 ../src/xfdesktop-file-utils.c:1088
1240-#: ../src/xfdesktop-file-utils.c:1190 ../src/xfdesktop-file-utils.c:1242
1241-#: ../src/xfdesktop-file-utils.c:1315 ../src/xfdesktop-file-utils.c:1393
1242+#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:864
1243+#: ../src/xfdesktop-file-utils.c:1005 ../src/xfdesktop-file-utils.c:1052
1244+#: ../src/xfdesktop-file-utils.c:1093 ../src/xfdesktop-file-utils.c:1134
1245+#: ../src/xfdesktop-file-utils.c:1236 ../src/xfdesktop-file-utils.c:1288
1246+#: ../src/xfdesktop-file-utils.c:1361 ../src/xfdesktop-file-utils.c:1439
1247 msgid ""
1248 "This feature requires a file manager service to be present (such as the one "
1249 "supplied by Thunar)."
1250@@ -643,14 +659,6 @@
1251 msgid "Unable to launch \"%s\":"
1252 msgstr "Unable to launch \"%s\":"
1253
1254-#: ../src/xfdesktop-file-icon-manager.c:823
1255-#: ../src/xfdesktop-file-icon-manager.c:1084
1256-#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
1257-#: ../src/xfdesktop-file-utils.c:1086 ../src/xfdesktop-file-utils.c:1163
1258-#: ../src/xfdesktop-file-utils.c:1188 ../src/xfdesktop-file-utils.c:1240
1259-msgid "Launch Error"
1260-msgstr "Launch Error"
1261-
1262 #: ../src/xfdesktop-file-icon-manager.c:1008
1263 #, c-format
1264 msgid "_Open With \"%s\""
1265@@ -661,12 +669,6 @@
1266 msgid "Open With \"%s\""
1267 msgstr "Open With \"%s\""
1268
1269-#: ../src/xfdesktop-file-icon-manager.c:1086
1270-msgid ""
1271-"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
1272-"edit launchers and links on the desktop."
1273-msgstr "Unable to launch \"exo-desktop-item-edit\", which is required to create and edit launchers and links on the desktop."
1274-
1275 #: ../src/xfdesktop-file-icon-manager.c:1337
1276 msgid "_Open all"
1277 msgstr "_Open all"
1278@@ -737,23 +739,23 @@
1279 msgid "P_roperties..."
1280 msgstr "P_roperties..."
1281
1282-#: ../src/xfdesktop-file-icon-manager.c:2716
1283+#: ../src/xfdesktop-file-icon-manager.c:2642
1284 msgid "Load Error"
1285 msgstr "Load Error"
1286
1287-#: ../src/xfdesktop-file-icon-manager.c:2718
1288+#: ../src/xfdesktop-file-icon-manager.c:2644
1289 msgid "Failed to load the desktop folder"
1290 msgstr "Failed to load the desktop folder"
1291
1292-#: ../src/xfdesktop-file-icon-manager.c:3262
1293+#: ../src/xfdesktop-file-icon-manager.c:3189
1294 msgid "Copy _Here"
1295 msgstr "Copy _Here"
1296
1297-#: ../src/xfdesktop-file-icon-manager.c:3262
1298+#: ../src/xfdesktop-file-icon-manager.c:3189
1299 msgid "_Move Here"
1300 msgstr "_Move Here"
1301
1302-#: ../src/xfdesktop-file-icon-manager.c:3262
1303+#: ../src/xfdesktop-file-icon-manager.c:3189
1304 msgid "_Link Here"
1305 msgstr "_Link Here"
1306
1307@@ -802,72 +804,72 @@
1308 msgid "The file could not be renamed"
1309 msgstr "The file could not be renamed"
1310
1311-#: ../src/xfdesktop-file-utils.c:826
1312+#: ../src/xfdesktop-file-utils.c:862
1313 msgid "Delete Error"
1314 msgstr "Delete Error"
1315
1316-#: ../src/xfdesktop-file-utils.c:827
1317+#: ../src/xfdesktop-file-utils.c:863
1318 msgid "The selected files could not be deleted"
1319 msgstr "The selected files could not be deleted"
1320
1321-#: ../src/xfdesktop-file-utils.c:877
1322+#: ../src/xfdesktop-file-utils.c:922
1323 msgid "The selected files could not be moved to the trash"
1324-msgstr "The selected files could not be moved to the rubbish"
1325+msgstr "The selected files could not be moved to the rubbish bin"
1326
1327-#: ../src/xfdesktop-file-utils.c:878 ../src/xfdesktop-file-utils.c:915
1328+#: ../src/xfdesktop-file-utils.c:923 ../src/xfdesktop-file-utils.c:961
1329 msgid ""
1330 "This feature requires a trash service to be present (such as the one "
1331 "supplied by Thunar)."
1332 msgstr "This feature requires a rubbish service to be present (such as the one supplied by Thunar)."
1333
1334-#: ../src/xfdesktop-file-utils.c:914
1335+#: ../src/xfdesktop-file-utils.c:960
1336 msgid "Could not empty the trash"
1337 msgstr "Could not empty the rubbish"
1338
1339-#: ../src/xfdesktop-file-utils.c:957
1340+#: ../src/xfdesktop-file-utils.c:1003
1341 msgid "Create File Error"
1342 msgstr "Create File Error"
1343
1344-#: ../src/xfdesktop-file-utils.c:958
1345+#: ../src/xfdesktop-file-utils.c:1004
1346 msgid "Could not create a new file"
1347 msgstr "Could not create a new file"
1348
1349-#: ../src/xfdesktop-file-utils.c:1004
1350+#: ../src/xfdesktop-file-utils.c:1050
1351 msgid "Create Document Error"
1352 msgstr "Create Document Error"
1353
1354-#: ../src/xfdesktop-file-utils.c:1005
1355+#: ../src/xfdesktop-file-utils.c:1051
1356 msgid "Could not create a new document from the template"
1357 msgstr "Could not create a new document from the template"
1358
1359-#: ../src/xfdesktop-file-utils.c:1045
1360+#: ../src/xfdesktop-file-utils.c:1091
1361 msgid "File Properties Error"
1362 msgstr "File Properties Error"
1363
1364-#: ../src/xfdesktop-file-utils.c:1046
1365+#: ../src/xfdesktop-file-utils.c:1092
1366 msgid "The file properties dialog could not be opened"
1367 msgstr "The file properties dialogue could not be opened"
1368
1369-#: ../src/xfdesktop-file-utils.c:1087
1370+#: ../src/xfdesktop-file-utils.c:1133
1371 msgid "The file could not be opened"
1372 msgstr "The file could not be opened"
1373
1374-#: ../src/xfdesktop-file-utils.c:1160 ../src/xfdesktop-file-utils.c:1185
1375+#: ../src/xfdesktop-file-utils.c:1206 ../src/xfdesktop-file-utils.c:1231
1376 #, c-format
1377 msgid "Failed to run \"%s\""
1378 msgstr "Failed to run \"%s\""
1379
1380-#: ../src/xfdesktop-file-utils.c:1241
1381+#: ../src/xfdesktop-file-utils.c:1287
1382 msgid "The application chooser could not be opened"
1383 msgstr "The application chooser could not be opened"
1384
1385-#: ../src/xfdesktop-file-utils.c:1299 ../src/xfdesktop-file-utils.c:1313
1386-#: ../src/xfdesktop-file-utils.c:1375 ../src/xfdesktop-file-utils.c:1391
1387+#: ../src/xfdesktop-file-utils.c:1345 ../src/xfdesktop-file-utils.c:1359
1388+#: ../src/xfdesktop-file-utils.c:1421 ../src/xfdesktop-file-utils.c:1437
1389 msgid "Transfer Error"
1390 msgstr "Transfer Error"
1391
1392-#: ../src/xfdesktop-file-utils.c:1300 ../src/xfdesktop-file-utils.c:1314
1393-#: ../src/xfdesktop-file-utils.c:1376 ../src/xfdesktop-file-utils.c:1392
1394+#: ../src/xfdesktop-file-utils.c:1346 ../src/xfdesktop-file-utils.c:1360
1395+#: ../src/xfdesktop-file-utils.c:1422 ../src/xfdesktop-file-utils.c:1438
1396 msgid "The file transfer could not be performed"
1397 msgstr "The file transfer could not be performed"
1398
1399@@ -921,7 +923,7 @@
1400 msgid "Eject Finished"
1401 msgstr "Eject Finished"
1402
1403-#: ../src/xfdesktop-regular-file-icon.c:603
1404+#: ../src/xfdesktop-regular-file-icon.c:741
1405 #, c-format
1406 msgid ""
1407 "Type: %s\n"
1408
1409=== modified file 'po/es.po'
1410--- po/es.po 2014-03-19 16:33:54 +0000
1411+++ po/es.po 2014-04-09 06:59:22 +0000
1412@@ -9,8 +9,8 @@
1413 msgstr ""
1414 "Project-Id-Version: Xfdesktop\n"
1415 "Report-Msgid-Bugs-To: \n"
1416-"POT-Creation-Date: 2014-02-24 12:32+0100\n"
1417-"PO-Revision-Date: 2014-02-26 18:03+0000\n"
1418+"POT-Creation-Date: 2014-04-03 18:32+0200\n"
1419+"PO-Revision-Date: 2014-04-04 03:45+0000\n"
1420 "Last-Translator: Pablo Lezaeta <prflr88@gmail.com>\n"
1421 "Language-Team: Spanish (http://www.transifex.com/projects/p/xfce/language/es/)\n"
1422 "MIME-Version: 1.0\n"
1423@@ -19,37 +19,37 @@
1424 "Language: es\n"
1425 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1426
1427-#: ../settings/main.c:375 ../src/xfdesktop-special-file-icon.c:295
1428+#: ../settings/main.c:404 ../src/xfdesktop-special-file-icon.c:295
1429 #: ../src/xfdesktop-special-file-icon.c:479
1430 msgid "Home"
1431 msgstr "Carpeta personal"
1432
1433-#: ../settings/main.c:377
1434+#: ../settings/main.c:406
1435 msgid "Filesystem"
1436 msgstr "Sistema de archivos"
1437
1438-#: ../settings/main.c:379
1439+#: ../settings/main.c:408
1440 msgid "Trash"
1441 msgstr "Papelera"
1442
1443-#: ../settings/main.c:381
1444+#: ../settings/main.c:410
1445 msgid "Removable Devices"
1446 msgstr "Dispositivos extraíbles"
1447
1448-#: ../settings/main.c:383
1449+#: ../settings/main.c:412
1450 msgid "Network Shares"
1451 msgstr "Compartir redes"
1452
1453-#: ../settings/main.c:385
1454+#: ../settings/main.c:414
1455 msgid "Disks and Drives"
1456 msgstr "Discos y dispositivos"
1457
1458-#: ../settings/main.c:387
1459+#: ../settings/main.c:416
1460 msgid "Other Devices"
1461 msgstr "OTROS DISPOSITIVOS"
1462
1463 #. Display the file name, file type, and file size in the tooltip.
1464-#: ../settings/main.c:500
1465+#: ../settings/main.c:529
1466 #, c-format
1467 msgid ""
1468 "<b>%s</b>\n"
1469@@ -57,95 +57,95 @@
1470 "Size: %s"
1471 msgstr "<b>%s</b>\nTipo: %s\nTamaño: %s"
1472
1473-#: ../settings/main.c:686
1474+#: ../settings/main.c:715
1475 #, c-format
1476 msgid "Wallpaper for Monitor %d (%s)"
1477 msgstr "Fondo de pantalla para el Monitor %d (%s)"
1478
1479-#: ../settings/main.c:689
1480+#: ../settings/main.c:718
1481 #, c-format
1482 msgid "Wallpaper for Monitor %d"
1483 msgstr "Fondo de pantalla para el Monitor %d"
1484
1485-#: ../settings/main.c:695
1486+#: ../settings/main.c:724
1487 msgid "Move this dialog to the display you want to edit the settings for."
1488 msgstr "Mueva este diálogo a la pantalla que desea modificar su configuración."
1489
1490-#: ../settings/main.c:702
1491+#: ../settings/main.c:731
1492 #, c-format
1493 msgid "Wallpaper for %s on Monitor %d (%s)"
1494 msgstr "Fondo de pantalla para %s en el monitor %d (%s)"
1495
1496-#: ../settings/main.c:706
1497+#: ../settings/main.c:735
1498 #, c-format
1499 msgid "Wallpaper for %s on Monitor %d"
1500 msgstr "Fondo de pantalla para %s en el monitor %d"
1501
1502-#: ../settings/main.c:713
1503+#: ../settings/main.c:742
1504 msgid ""
1505 "Move this dialog to the display and workspace you want to edit the settings "
1506 "for."
1507 msgstr "Mueva este diálogo a la pantalla que desea modificar su configuración."
1508
1509 #. Single monitor and single workspace
1510-#: ../settings/main.c:720
1511+#: ../settings/main.c:749
1512 #, c-format
1513 msgid "Wallpaper for my desktop"
1514 msgstr "Fondo de pantalla para mi Escritorio"
1515
1516 #. Single monitor and per workspace wallpaper
1517-#: ../settings/main.c:726
1518+#: ../settings/main.c:755
1519 #, c-format
1520 msgid "Wallpaper for %s"
1521 msgstr "Fondo de pantalla para %s"
1522
1523-#: ../settings/main.c:731
1524+#: ../settings/main.c:760
1525 msgid "Move this dialog to the workspace you want to edit the settings for."
1526 msgstr "Mueva este diálogo al área de trabajo que desea modificar su configuración."
1527
1528-#: ../settings/main.c:1134
1529+#: ../settings/main.c:1174
1530 msgid "Image selection is unavailable while the image style is set to None."
1531 msgstr "La selección de imágenes estará desactivada mientras el estilo utilizado sea None (Ninguno)."
1532
1533-#: ../settings/main.c:1481
1534+#: ../settings/main.c:1523
1535 msgid "Spanning screens"
1536 msgstr "Extención de pantallas"
1537
1538-#: ../settings/main.c:1786
1539+#: ../settings/main.c:1825
1540 msgid "Image files"
1541 msgstr "Archivos de imagen"
1542
1543-#: ../settings/main.c:1958
1544+#: ../settings/main.c:2001
1545 msgid "Settings manager socket"
1546 msgstr "Entrada de administración de configuración"
1547
1548-#: ../settings/main.c:1958
1549+#: ../settings/main.c:2001
1550 msgid "SOCKET ID"
1551 msgstr "ID de SOCKET"
1552
1553-#: ../settings/main.c:1959
1554+#: ../settings/main.c:2002
1555 msgid "Version information"
1556 msgstr "Información de versión"
1557
1558-#: ../settings/main.c:1986
1559+#: ../settings/main.c:2030
1560 #, c-format
1561 msgid "Type '%s --help' for usage."
1562 msgstr "Escriba '%s --help' para opciones de uso."
1563
1564-#: ../settings/main.c:1998
1565+#: ../settings/main.c:2042
1566 msgid "The Xfce development team. All rights reserved."
1567 msgstr "El equipo de desarrollo de Xfce. Todos los derechos reservados."
1568
1569-#: ../settings/main.c:1999
1570+#: ../settings/main.c:2043
1571 #, c-format
1572 msgid "Please report bugs to <%s>."
1573 msgstr "Por favor, informe de errores a <%s>."
1574
1575-#: ../settings/main.c:2006
1576+#: ../settings/main.c:2050
1577 msgid "Desktop Settings"
1578 msgstr "Configuración del escritorio"
1579
1580-#: ../settings/main.c:2008
1581+#: ../settings/main.c:2052
1582 msgid "Unable to contact settings server"
1583 msgstr "No se puede contactar con el servidor de configuración"
1584
1585@@ -333,7 +333,7 @@
1586 msgid "File/launcher icons"
1587 msgstr "Iconos de archivo/lanzador"
1588
1589-#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1015
1590+#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1020
1591 msgid "Desktop"
1592 msgstr "Escritorio"
1593
1594@@ -512,6 +512,22 @@
1595 msgid "_Remove Workspace '%s'"
1596 msgstr "Elimina_r área de trabajo '%s'"
1597
1598+#: ../src/xfdesktop-app-menu-item.c:349
1599+#: ../src/xfdesktop-file-icon-manager.c:823
1600+#: ../src/xfdesktop-file-icon-manager.c:1084
1601+#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
1602+#: ../src/xfdesktop-file-utils.c:1132 ../src/xfdesktop-file-utils.c:1209
1603+#: ../src/xfdesktop-file-utils.c:1234 ../src/xfdesktop-file-utils.c:1286
1604+msgid "Launch Error"
1605+msgstr "Error de inicio"
1606+
1607+#: ../src/xfdesktop-app-menu-item.c:351
1608+#: ../src/xfdesktop-file-icon-manager.c:1086
1609+msgid ""
1610+"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
1611+"edit launchers and links on the desktop."
1612+msgstr "No se pudo iniciar \"exo-desktop-item-edit\", el cual se necesita para crear y editar lanzadores y enlaces en el escritorio."
1613+
1614 #: ../src/xfdesktop-application.c:768
1615 msgid "Display version information"
1616 msgstr "Mostrar información de versión"
1617@@ -615,8 +631,8 @@
1618 msgstr "Ninguno de los iconos seleccionados soporta ser renombrado."
1619
1620 #: ../src/xfdesktop-file-icon-manager.c:675
1621-#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:876
1622-#: ../src/xfdesktop-file-utils.c:913
1623+#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:921
1624+#: ../src/xfdesktop-file-utils.c:959
1625 msgid "Trash Error"
1626 msgstr "Error de papelera"
1627
1628@@ -627,11 +643,11 @@
1629
1630 #: ../src/xfdesktop-file-icon-manager.c:677
1631 #: ../src/xfdesktop-file-icon-manager.c:721 ../src/xfdesktop-file-utils.c:725
1632-#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:828
1633-#: ../src/xfdesktop-file-utils.c:959 ../src/xfdesktop-file-utils.c:1006
1634-#: ../src/xfdesktop-file-utils.c:1047 ../src/xfdesktop-file-utils.c:1088
1635-#: ../src/xfdesktop-file-utils.c:1190 ../src/xfdesktop-file-utils.c:1242
1636-#: ../src/xfdesktop-file-utils.c:1315 ../src/xfdesktop-file-utils.c:1393
1637+#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:864
1638+#: ../src/xfdesktop-file-utils.c:1005 ../src/xfdesktop-file-utils.c:1052
1639+#: ../src/xfdesktop-file-utils.c:1093 ../src/xfdesktop-file-utils.c:1134
1640+#: ../src/xfdesktop-file-utils.c:1236 ../src/xfdesktop-file-utils.c:1288
1641+#: ../src/xfdesktop-file-utils.c:1361 ../src/xfdesktop-file-utils.c:1439
1642 msgid ""
1643 "This feature requires a file manager service to be present (such as the one "
1644 "supplied by Thunar)."
1645@@ -644,14 +660,6 @@
1646 msgid "Unable to launch \"%s\":"
1647 msgstr "No se pudo iniciar \"%s\""
1648
1649-#: ../src/xfdesktop-file-icon-manager.c:823
1650-#: ../src/xfdesktop-file-icon-manager.c:1084
1651-#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
1652-#: ../src/xfdesktop-file-utils.c:1086 ../src/xfdesktop-file-utils.c:1163
1653-#: ../src/xfdesktop-file-utils.c:1188 ../src/xfdesktop-file-utils.c:1240
1654-msgid "Launch Error"
1655-msgstr "Error de inicio"
1656-
1657 #: ../src/xfdesktop-file-icon-manager.c:1008
1658 #, c-format
1659 msgid "_Open With \"%s\""
1660@@ -662,12 +670,6 @@
1661 msgid "Open With \"%s\""
1662 msgstr "Abrir con \"%s\""
1663
1664-#: ../src/xfdesktop-file-icon-manager.c:1086
1665-msgid ""
1666-"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
1667-"edit launchers and links on the desktop."
1668-msgstr "No se pudo iniciar \"exo-desktop-item-edit\", el cual se necesita para crear y editar lanzadores y enlaces en el escritorio."
1669-
1670 #: ../src/xfdesktop-file-icon-manager.c:1337
1671 msgid "_Open all"
1672 msgstr "_Abrir todo"
1673@@ -738,23 +740,23 @@
1674 msgid "P_roperties..."
1675 msgstr "P_ropiedades"
1676
1677-#: ../src/xfdesktop-file-icon-manager.c:2716
1678+#: ../src/xfdesktop-file-icon-manager.c:2642
1679 msgid "Load Error"
1680 msgstr "Error al cargar"
1681
1682-#: ../src/xfdesktop-file-icon-manager.c:2718
1683+#: ../src/xfdesktop-file-icon-manager.c:2644
1684 msgid "Failed to load the desktop folder"
1685 msgstr "Error al cargar la carpeta de escritorio"
1686
1687-#: ../src/xfdesktop-file-icon-manager.c:3262
1688+#: ../src/xfdesktop-file-icon-manager.c:3189
1689 msgid "Copy _Here"
1690 msgstr "Copiar _aquí"
1691
1692-#: ../src/xfdesktop-file-icon-manager.c:3262
1693+#: ../src/xfdesktop-file-icon-manager.c:3189
1694 msgid "_Move Here"
1695 msgstr "_Mover aquí"
1696
1697-#: ../src/xfdesktop-file-icon-manager.c:3262
1698+#: ../src/xfdesktop-file-icon-manager.c:3189
1699 msgid "_Link Here"
1700 msgstr "_Enlazar Acá"
1701
1702@@ -803,72 +805,72 @@
1703 msgid "The file could not be renamed"
1704 msgstr "El archivo no puede ser renombrado"
1705
1706-#: ../src/xfdesktop-file-utils.c:826
1707+#: ../src/xfdesktop-file-utils.c:862
1708 msgid "Delete Error"
1709-msgstr "Error al eliminar"
1710+msgstr "Error al borrar"
1711
1712-#: ../src/xfdesktop-file-utils.c:827
1713+#: ../src/xfdesktop-file-utils.c:863
1714 msgid "The selected files could not be deleted"
1715-msgstr "Los archivos seleccionados no pueden ser eliminados"
1716+msgstr "Los archivos seleccionados no pueden ser borrados"
1717
1718-#: ../src/xfdesktop-file-utils.c:877
1719+#: ../src/xfdesktop-file-utils.c:922
1720 msgid "The selected files could not be moved to the trash"
1721-msgstr "Los archivos seleccionados no pueden ser eliminados"
1722+msgstr "Los archivos seleccionados no pueden ser movidos a la papelera"
1723
1724-#: ../src/xfdesktop-file-utils.c:878 ../src/xfdesktop-file-utils.c:915
1725+#: ../src/xfdesktop-file-utils.c:923 ../src/xfdesktop-file-utils.c:961
1726 msgid ""
1727 "This feature requires a trash service to be present (such as the one "
1728 "supplied by Thunar)."
1729 msgstr "Esta funcionalidad necesita la presencia de un servicio de papelera de archivos (como el proporcionado por Thunar)."
1730
1731-#: ../src/xfdesktop-file-utils.c:914
1732+#: ../src/xfdesktop-file-utils.c:960
1733 msgid "Could not empty the trash"
1734 msgstr "No se pudo vaciar la papelera"
1735
1736-#: ../src/xfdesktop-file-utils.c:957
1737+#: ../src/xfdesktop-file-utils.c:1003
1738 msgid "Create File Error"
1739 msgstr "Error al crear archivo"
1740
1741-#: ../src/xfdesktop-file-utils.c:958
1742+#: ../src/xfdesktop-file-utils.c:1004
1743 msgid "Could not create a new file"
1744 msgstr "No se pudo crear nuevo archivo"
1745
1746-#: ../src/xfdesktop-file-utils.c:1004
1747+#: ../src/xfdesktop-file-utils.c:1050
1748 msgid "Create Document Error"
1749 msgstr "Error al crear documento"
1750
1751-#: ../src/xfdesktop-file-utils.c:1005
1752+#: ../src/xfdesktop-file-utils.c:1051
1753 msgid "Could not create a new document from the template"
1754 msgstr "No se pudo crear nuevo documento a partir de la plantilla"
1755
1756-#: ../src/xfdesktop-file-utils.c:1045
1757+#: ../src/xfdesktop-file-utils.c:1091
1758 msgid "File Properties Error"
1759 msgstr "Error al abrir propiedades de archivo"
1760
1761-#: ../src/xfdesktop-file-utils.c:1046
1762+#: ../src/xfdesktop-file-utils.c:1092
1763 msgid "The file properties dialog could not be opened"
1764 msgstr "La ventana de propiedades del archivo no pudo ser abierta"
1765
1766-#: ../src/xfdesktop-file-utils.c:1087
1767+#: ../src/xfdesktop-file-utils.c:1133
1768 msgid "The file could not be opened"
1769 msgstr "El archivo no puede ser abierto"
1770
1771-#: ../src/xfdesktop-file-utils.c:1160 ../src/xfdesktop-file-utils.c:1185
1772+#: ../src/xfdesktop-file-utils.c:1206 ../src/xfdesktop-file-utils.c:1231
1773 #, c-format
1774 msgid "Failed to run \"%s\""
1775 msgstr "Fallo al ejecutar \"%s\""
1776
1777-#: ../src/xfdesktop-file-utils.c:1241
1778+#: ../src/xfdesktop-file-utils.c:1287
1779 msgid "The application chooser could not be opened"
1780 msgstr "El selector de aplicaciones no pudo abrirse"
1781
1782-#: ../src/xfdesktop-file-utils.c:1299 ../src/xfdesktop-file-utils.c:1313
1783-#: ../src/xfdesktop-file-utils.c:1375 ../src/xfdesktop-file-utils.c:1391
1784+#: ../src/xfdesktop-file-utils.c:1345 ../src/xfdesktop-file-utils.c:1359
1785+#: ../src/xfdesktop-file-utils.c:1421 ../src/xfdesktop-file-utils.c:1437
1786 msgid "Transfer Error"
1787 msgstr "Error de trasferencia"
1788
1789-#: ../src/xfdesktop-file-utils.c:1300 ../src/xfdesktop-file-utils.c:1314
1790-#: ../src/xfdesktop-file-utils.c:1376 ../src/xfdesktop-file-utils.c:1392
1791+#: ../src/xfdesktop-file-utils.c:1346 ../src/xfdesktop-file-utils.c:1360
1792+#: ../src/xfdesktop-file-utils.c:1422 ../src/xfdesktop-file-utils.c:1438
1793 msgid "The file transfer could not be performed"
1794 msgstr "La trasferencia de archivos no se pudo realizar"
1795
1796@@ -922,7 +924,7 @@
1797 msgid "Eject Finished"
1798 msgstr "Expulsión finalizada"
1799
1800-#: ../src/xfdesktop-regular-file-icon.c:603
1801+#: ../src/xfdesktop-regular-file-icon.c:741
1802 #, c-format
1803 msgid ""
1804 "Type: %s\n"
1805
1806=== modified file 'po/it.po'
1807--- po/it.po 2014-03-19 16:33:54 +0000
1808+++ po/it.po 2014-04-09 06:59:22 +0000
1809@@ -11,8 +11,8 @@
1810 msgstr ""
1811 "Project-Id-Version: Xfdesktop\n"
1812 "Report-Msgid-Bugs-To: \n"
1813-"POT-Creation-Date: 2014-02-24 12:32+0100\n"
1814-"PO-Revision-Date: 2014-02-25 08:04+0000\n"
1815+"POT-Creation-Date: 2014-04-03 18:32+0200\n"
1816+"PO-Revision-Date: 2014-04-04 20:21+0000\n"
1817 "Last-Translator: cri <cri.penta@gmail.com>\n"
1818 "Language-Team: Italian (http://www.transifex.com/projects/p/xfce/language/it/)\n"
1819 "MIME-Version: 1.0\n"
1820@@ -21,37 +21,37 @@
1821 "Language: it\n"
1822 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1823
1824-#: ../settings/main.c:375 ../src/xfdesktop-special-file-icon.c:295
1825+#: ../settings/main.c:404 ../src/xfdesktop-special-file-icon.c:295
1826 #: ../src/xfdesktop-special-file-icon.c:479
1827 msgid "Home"
1828 msgstr "Casa"
1829
1830-#: ../settings/main.c:377
1831+#: ../settings/main.c:406
1832 msgid "Filesystem"
1833 msgstr "File system"
1834
1835-#: ../settings/main.c:379
1836+#: ../settings/main.c:408
1837 msgid "Trash"
1838 msgstr "Cestino"
1839
1840-#: ../settings/main.c:381
1841+#: ../settings/main.c:410
1842 msgid "Removable Devices"
1843 msgstr "Dispositivi rimovibili"
1844
1845-#: ../settings/main.c:383
1846+#: ../settings/main.c:412
1847 msgid "Network Shares"
1848 msgstr "Condivisioni di rete"
1849
1850-#: ../settings/main.c:385
1851+#: ../settings/main.c:414
1852 msgid "Disks and Drives"
1853 msgstr "Dicshi e dispositivi"
1854
1855-#: ../settings/main.c:387
1856+#: ../settings/main.c:416
1857 msgid "Other Devices"
1858 msgstr "Altri dispositivi"
1859
1860 #. Display the file name, file type, and file size in the tooltip.
1861-#: ../settings/main.c:500
1862+#: ../settings/main.c:529
1863 #, c-format
1864 msgid ""
1865 "<b>%s</b>\n"
1866@@ -59,95 +59,95 @@
1867 "Size: %s"
1868 msgstr "<b>%s</b>\nTipo: %s\nDimensione: %s"
1869
1870-#: ../settings/main.c:686
1871+#: ../settings/main.c:715
1872 #, c-format
1873 msgid "Wallpaper for Monitor %d (%s)"
1874 msgstr "Sfondo per lo schermo %d (%s)"
1875
1876-#: ../settings/main.c:689
1877+#: ../settings/main.c:718
1878 #, c-format
1879 msgid "Wallpaper for Monitor %d"
1880 msgstr "Sfondo per lo schermo %d"
1881
1882-#: ../settings/main.c:695
1883+#: ../settings/main.c:724
1884 msgid "Move this dialog to the display you want to edit the settings for."
1885 msgstr "Spostare questo dialogo nello schermo di cui si vogliono modificare le impostazioni."
1886
1887-#: ../settings/main.c:702
1888+#: ../settings/main.c:731
1889 #, c-format
1890 msgid "Wallpaper for %s on Monitor %d (%s)"
1891 msgstr "Sfondo %s per lo schermo %d (%s)"
1892
1893-#: ../settings/main.c:706
1894+#: ../settings/main.c:735
1895 #, c-format
1896 msgid "Wallpaper for %s on Monitor %d"
1897 msgstr "Sfondo %s per lo schermo %d"
1898
1899-#: ../settings/main.c:713
1900+#: ../settings/main.c:742
1901 msgid ""
1902 "Move this dialog to the display and workspace you want to edit the settings "
1903 "for."
1904 msgstr "Spostare questo dialogo nello schermo e nello spazio di lavoro di cui si vogliono modificare le impostazioni."
1905
1906 #. Single monitor and single workspace
1907-#: ../settings/main.c:720
1908+#: ../settings/main.c:749
1909 #, c-format
1910 msgid "Wallpaper for my desktop"
1911 msgstr "Sfondo per la scrivania"
1912
1913 #. Single monitor and per workspace wallpaper
1914-#: ../settings/main.c:726
1915+#: ../settings/main.c:755
1916 #, c-format
1917 msgid "Wallpaper for %s"
1918 msgstr "Sfondo per %s"
1919
1920-#: ../settings/main.c:731
1921+#: ../settings/main.c:760
1922 msgid "Move this dialog to the workspace you want to edit the settings for."
1923 msgstr "Spostare questa finestra nello schermo e nello spazio di lavoro di cui si vogliono modificare le impostazioni."
1924
1925-#: ../settings/main.c:1134
1926+#: ../settings/main.c:1174
1927 msgid "Image selection is unavailable while the image style is set to None."
1928 msgstr "La selezione dell'immagine è disabilitata quando lo stile dell'immagine è impostato a \"Nessuno\""
1929
1930-#: ../settings/main.c:1481
1931+#: ../settings/main.c:1523
1932 msgid "Spanning screens"
1933 msgstr "Schermi estesi"
1934
1935-#: ../settings/main.c:1786
1936+#: ../settings/main.c:1825
1937 msgid "Image files"
1938 msgstr "File immagine"
1939
1940-#: ../settings/main.c:1958
1941+#: ../settings/main.c:2001
1942 msgid "Settings manager socket"
1943 msgstr "Socket del gestore delle impostazioni"
1944
1945-#: ../settings/main.c:1958
1946+#: ../settings/main.c:2001
1947 msgid "SOCKET ID"
1948 msgstr "ID SOCKET"
1949
1950-#: ../settings/main.c:1959
1951+#: ../settings/main.c:2002
1952 msgid "Version information"
1953 msgstr "Informazioni di versione"
1954
1955-#: ../settings/main.c:1986
1956+#: ../settings/main.c:2030
1957 #, c-format
1958 msgid "Type '%s --help' for usage."
1959 msgstr "Digitare \"%s --help\" per le informazioni d'uso"
1960
1961-#: ../settings/main.c:1998
1962+#: ../settings/main.c:2042
1963 msgid "The Xfce development team. All rights reserved."
1964 msgstr "Il gruppo di sviluppo di Xfce. Tutti i diritti riservati."
1965
1966-#: ../settings/main.c:1999
1967+#: ../settings/main.c:2043
1968 #, c-format
1969 msgid "Please report bugs to <%s>."
1970 msgstr "Segnalare i problemi a <%s>."
1971
1972-#: ../settings/main.c:2006
1973+#: ../settings/main.c:2050
1974 msgid "Desktop Settings"
1975 msgstr "Impostazioni della scrivania"
1976
1977-#: ../settings/main.c:2008
1978+#: ../settings/main.c:2052
1979 msgid "Unable to contact settings server"
1980 msgstr "Impossibile contattare il server delle impostazioni"
1981
1982@@ -335,7 +335,7 @@
1983 msgid "File/launcher icons"
1984 msgstr "Icone di file e avviatori"
1985
1986-#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1015
1987+#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1020
1988 msgid "Desktop"
1989 msgstr "Scrivania"
1990
1991@@ -514,6 +514,22 @@
1992 msgid "_Remove Workspace '%s'"
1993 msgstr "_Rimuovi spazio di lavoro \"%s\""
1994
1995+#: ../src/xfdesktop-app-menu-item.c:349
1996+#: ../src/xfdesktop-file-icon-manager.c:823
1997+#: ../src/xfdesktop-file-icon-manager.c:1084
1998+#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
1999+#: ../src/xfdesktop-file-utils.c:1132 ../src/xfdesktop-file-utils.c:1209
2000+#: ../src/xfdesktop-file-utils.c:1234 ../src/xfdesktop-file-utils.c:1286
2001+msgid "Launch Error"
2002+msgstr "Errore di avvio"
2003+
2004+#: ../src/xfdesktop-app-menu-item.c:351
2005+#: ../src/xfdesktop-file-icon-manager.c:1086
2006+msgid ""
2007+"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
2008+"edit launchers and links on the desktop."
2009+msgstr "Impossibile avviare \"exo-desktop-item-edit\", necessario per creare e modificare avviatori e collegamenti sulla scrivania."
2010+
2011 #: ../src/xfdesktop-application.c:768
2012 msgid "Display version information"
2013 msgstr "Mostra le informazioni di versione"
2014@@ -617,8 +633,8 @@
2015 msgstr "Nessuna delle icone selezionate supporta la rinominazione"
2016
2017 #: ../src/xfdesktop-file-icon-manager.c:675
2018-#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:876
2019-#: ../src/xfdesktop-file-utils.c:913
2020+#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:921
2021+#: ../src/xfdesktop-file-utils.c:959
2022 msgid "Trash Error"
2023 msgstr "Errore nel cestino"
2024
2025@@ -629,11 +645,11 @@
2026
2027 #: ../src/xfdesktop-file-icon-manager.c:677
2028 #: ../src/xfdesktop-file-icon-manager.c:721 ../src/xfdesktop-file-utils.c:725
2029-#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:828
2030-#: ../src/xfdesktop-file-utils.c:959 ../src/xfdesktop-file-utils.c:1006
2031-#: ../src/xfdesktop-file-utils.c:1047 ../src/xfdesktop-file-utils.c:1088
2032-#: ../src/xfdesktop-file-utils.c:1190 ../src/xfdesktop-file-utils.c:1242
2033-#: ../src/xfdesktop-file-utils.c:1315 ../src/xfdesktop-file-utils.c:1393
2034+#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:864
2035+#: ../src/xfdesktop-file-utils.c:1005 ../src/xfdesktop-file-utils.c:1052
2036+#: ../src/xfdesktop-file-utils.c:1093 ../src/xfdesktop-file-utils.c:1134
2037+#: ../src/xfdesktop-file-utils.c:1236 ../src/xfdesktop-file-utils.c:1288
2038+#: ../src/xfdesktop-file-utils.c:1361 ../src/xfdesktop-file-utils.c:1439
2039 msgid ""
2040 "This feature requires a file manager service to be present (such as the one "
2041 "supplied by Thunar)."
2042@@ -646,14 +662,6 @@
2043 msgid "Unable to launch \"%s\":"
2044 msgstr "Impossibile avviare \"%s\":"
2045
2046-#: ../src/xfdesktop-file-icon-manager.c:823
2047-#: ../src/xfdesktop-file-icon-manager.c:1084
2048-#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
2049-#: ../src/xfdesktop-file-utils.c:1086 ../src/xfdesktop-file-utils.c:1163
2050-#: ../src/xfdesktop-file-utils.c:1188 ../src/xfdesktop-file-utils.c:1240
2051-msgid "Launch Error"
2052-msgstr "Errore di avvio"
2053-
2054 #: ../src/xfdesktop-file-icon-manager.c:1008
2055 #, c-format
2056 msgid "_Open With \"%s\""
2057@@ -664,12 +672,6 @@
2058 msgid "Open With \"%s\""
2059 msgstr "Apri con \"%s\""
2060
2061-#: ../src/xfdesktop-file-icon-manager.c:1086
2062-msgid ""
2063-"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
2064-"edit launchers and links on the desktop."
2065-msgstr "Impossibile avviare \"exo-desktop-item-edit\", necessario per creare e modificare avviatori e collegamenti sulla scrivania."
2066-
2067 #: ../src/xfdesktop-file-icon-manager.c:1337
2068 msgid "_Open all"
2069 msgstr "_Apri tutti"
2070@@ -740,23 +742,23 @@
2071 msgid "P_roperties..."
2072 msgstr "_Proprietà..."
2073
2074-#: ../src/xfdesktop-file-icon-manager.c:2716
2075+#: ../src/xfdesktop-file-icon-manager.c:2642
2076 msgid "Load Error"
2077 msgstr "Errore di caricamento"
2078
2079-#: ../src/xfdesktop-file-icon-manager.c:2718
2080+#: ../src/xfdesktop-file-icon-manager.c:2644
2081 msgid "Failed to load the desktop folder"
2082 msgstr "Impossibile caricare la cartella della scrivania"
2083
2084-#: ../src/xfdesktop-file-icon-manager.c:3262
2085+#: ../src/xfdesktop-file-icon-manager.c:3189
2086 msgid "Copy _Here"
2087 msgstr "Copia _qui"
2088
2089-#: ../src/xfdesktop-file-icon-manager.c:3262
2090+#: ../src/xfdesktop-file-icon-manager.c:3189
2091 msgid "_Move Here"
2092 msgstr "_Sposta qui"
2093
2094-#: ../src/xfdesktop-file-icon-manager.c:3262
2095+#: ../src/xfdesktop-file-icon-manager.c:3189
2096 msgid "_Link Here"
2097 msgstr "_Collega qui"
2098
2099@@ -805,72 +807,72 @@
2100 msgid "The file could not be renamed"
2101 msgstr "Il file non può essere rinominato"
2102
2103-#: ../src/xfdesktop-file-utils.c:826
2104+#: ../src/xfdesktop-file-utils.c:862
2105 msgid "Delete Error"
2106-msgstr "Errore di cancellazione"
2107+msgstr "Errore nella rimozione"
2108
2109-#: ../src/xfdesktop-file-utils.c:827
2110+#: ../src/xfdesktop-file-utils.c:863
2111 msgid "The selected files could not be deleted"
2112-msgstr "I file selezionati non possono essere cancellati"
2113+msgstr "Il file selezionato non può essere rimosso"
2114
2115-#: ../src/xfdesktop-file-utils.c:877
2116+#: ../src/xfdesktop-file-utils.c:922
2117 msgid "The selected files could not be moved to the trash"
2118-msgstr "I file selezionati non possono essere spostati nel cestino"
2119+msgstr "Il file selezionato non può essere spostato nel cestino"
2120
2121-#: ../src/xfdesktop-file-utils.c:878 ../src/xfdesktop-file-utils.c:915
2122+#: ../src/xfdesktop-file-utils.c:923 ../src/xfdesktop-file-utils.c:961
2123 msgid ""
2124 "This feature requires a trash service to be present (such as the one "
2125 "supplied by Thunar)."
2126 msgstr "Questa funzionalità richiede la presenza di un servizio di gestione del cestino (come ad esempio quello fornito da Thunar)."
2127
2128-#: ../src/xfdesktop-file-utils.c:914
2129+#: ../src/xfdesktop-file-utils.c:960
2130 msgid "Could not empty the trash"
2131 msgstr "Impossibile svuotare il cestino"
2132
2133-#: ../src/xfdesktop-file-utils.c:957
2134+#: ../src/xfdesktop-file-utils.c:1003
2135 msgid "Create File Error"
2136 msgstr "Errore nella creazione del file"
2137
2138-#: ../src/xfdesktop-file-utils.c:958
2139+#: ../src/xfdesktop-file-utils.c:1004
2140 msgid "Could not create a new file"
2141 msgstr "Impossibile creare un nuovo file"
2142
2143-#: ../src/xfdesktop-file-utils.c:1004
2144+#: ../src/xfdesktop-file-utils.c:1050
2145 msgid "Create Document Error"
2146 msgstr "Errore nella creazione del documento"
2147
2148-#: ../src/xfdesktop-file-utils.c:1005
2149+#: ../src/xfdesktop-file-utils.c:1051
2150 msgid "Could not create a new document from the template"
2151 msgstr "Impossibile creare un nuovo documento dal modello"
2152
2153-#: ../src/xfdesktop-file-utils.c:1045
2154+#: ../src/xfdesktop-file-utils.c:1091
2155 msgid "File Properties Error"
2156 msgstr "Errore nelle proprietà del file"
2157
2158-#: ../src/xfdesktop-file-utils.c:1046
2159+#: ../src/xfdesktop-file-utils.c:1092
2160 msgid "The file properties dialog could not be opened"
2161 msgstr "La finestra delle proprietà del file non può essere aperta"
2162
2163-#: ../src/xfdesktop-file-utils.c:1087
2164+#: ../src/xfdesktop-file-utils.c:1133
2165 msgid "The file could not be opened"
2166 msgstr "Il file non può essere aperto"
2167
2168-#: ../src/xfdesktop-file-utils.c:1160 ../src/xfdesktop-file-utils.c:1185
2169+#: ../src/xfdesktop-file-utils.c:1206 ../src/xfdesktop-file-utils.c:1231
2170 #, c-format
2171 msgid "Failed to run \"%s\""
2172 msgstr "Impossibile avviare \"%s\""
2173
2174-#: ../src/xfdesktop-file-utils.c:1241
2175+#: ../src/xfdesktop-file-utils.c:1287
2176 msgid "The application chooser could not be opened"
2177 msgstr "Il selettore delle applicazioni non può essere aperto"
2178
2179-#: ../src/xfdesktop-file-utils.c:1299 ../src/xfdesktop-file-utils.c:1313
2180-#: ../src/xfdesktop-file-utils.c:1375 ../src/xfdesktop-file-utils.c:1391
2181+#: ../src/xfdesktop-file-utils.c:1345 ../src/xfdesktop-file-utils.c:1359
2182+#: ../src/xfdesktop-file-utils.c:1421 ../src/xfdesktop-file-utils.c:1437
2183 msgid "Transfer Error"
2184 msgstr "Errore di trasferimento"
2185
2186-#: ../src/xfdesktop-file-utils.c:1300 ../src/xfdesktop-file-utils.c:1314
2187-#: ../src/xfdesktop-file-utils.c:1376 ../src/xfdesktop-file-utils.c:1392
2188+#: ../src/xfdesktop-file-utils.c:1346 ../src/xfdesktop-file-utils.c:1360
2189+#: ../src/xfdesktop-file-utils.c:1422 ../src/xfdesktop-file-utils.c:1438
2190 msgid "The file transfer could not be performed"
2191 msgstr "Il trasferimento dei file non è riuscito"
2192
2193@@ -924,7 +926,7 @@
2194 msgid "Eject Finished"
2195 msgstr "Espulsione conclusa"
2196
2197-#: ../src/xfdesktop-regular-file-icon.c:603
2198+#: ../src/xfdesktop-regular-file-icon.c:741
2199 #, c-format
2200 msgid ""
2201 "Type: %s\n"
2202
2203=== modified file 'po/ja.po'
2204--- po/ja.po 2014-03-19 16:33:54 +0000
2205+++ po/ja.po 2014-04-09 06:59:22 +0000
2206@@ -9,8 +9,8 @@
2207 msgstr ""
2208 "Project-Id-Version: Xfdesktop\n"
2209 "Report-Msgid-Bugs-To: \n"
2210-"POT-Creation-Date: 2014-02-24 12:32+0100\n"
2211-"PO-Revision-Date: 2014-02-25 10:44+0000\n"
2212+"POT-Creation-Date: 2014-04-03 18:32+0200\n"
2213+"PO-Revision-Date: 2014-04-05 06:56+0000\n"
2214 "Last-Translator: Masato HASHIMOTO <cabezon.hashimoto@gmail.com>\n"
2215 "Language-Team: Japanese (http://www.transifex.com/projects/p/xfce/language/ja/)\n"
2216 "MIME-Version: 1.0\n"
2217@@ -19,37 +19,37 @@
2218 "Language: ja\n"
2219 "Plural-Forms: nplurals=1; plural=0;\n"
2220
2221-#: ../settings/main.c:375 ../src/xfdesktop-special-file-icon.c:295
2222+#: ../settings/main.c:404 ../src/xfdesktop-special-file-icon.c:295
2223 #: ../src/xfdesktop-special-file-icon.c:479
2224 msgid "Home"
2225 msgstr "ホーム"
2226
2227-#: ../settings/main.c:377
2228+#: ../settings/main.c:406
2229 msgid "Filesystem"
2230 msgstr "ファイルシステム"
2231
2232-#: ../settings/main.c:379
2233+#: ../settings/main.c:408
2234 msgid "Trash"
2235 msgstr "ゴミ箱"
2236
2237-#: ../settings/main.c:381
2238+#: ../settings/main.c:410
2239 msgid "Removable Devices"
2240 msgstr "リムーバブルデバイス"
2241
2242-#: ../settings/main.c:383
2243+#: ../settings/main.c:412
2244 msgid "Network Shares"
2245 msgstr "ネットワーク共有"
2246
2247-#: ../settings/main.c:385
2248+#: ../settings/main.c:414
2249 msgid "Disks and Drives"
2250 msgstr "ディスクとドライブ"
2251
2252-#: ../settings/main.c:387
2253+#: ../settings/main.c:416
2254 msgid "Other Devices"
2255 msgstr "その他のデバイス"
2256
2257 #. Display the file name, file type, and file size in the tooltip.
2258-#: ../settings/main.c:500
2259+#: ../settings/main.c:529
2260 #, c-format
2261 msgid ""
2262 "<b>%s</b>\n"
2263@@ -57,95 +57,95 @@
2264 "Size: %s"
2265 msgstr "<b>%s</b>\nタイプ: %s\nサイズ: %s"
2266
2267-#: ../settings/main.c:686
2268+#: ../settings/main.c:715
2269 #, c-format
2270 msgid "Wallpaper for Monitor %d (%s)"
2271 msgstr "モニター %d (%s) の壁紙"
2272
2273-#: ../settings/main.c:689
2274+#: ../settings/main.c:718
2275 #, c-format
2276 msgid "Wallpaper for Monitor %d"
2277 msgstr "モニター %d の壁紙"
2278
2279-#: ../settings/main.c:695
2280+#: ../settings/main.c:724
2281 msgid "Move this dialog to the display you want to edit the settings for."
2282 msgstr "設定したいディスプレイにこのダイアログを移動してください。"
2283
2284-#: ../settings/main.c:702
2285+#: ../settings/main.c:731
2286 #, c-format
2287 msgid "Wallpaper for %s on Monitor %d (%s)"
2288 msgstr "モニター %2$d (%3$s) %1$s の壁紙"
2289
2290-#: ../settings/main.c:706
2291+#: ../settings/main.c:735
2292 #, c-format
2293 msgid "Wallpaper for %s on Monitor %d"
2294 msgstr "モニター %2$d %1$s の壁紙"
2295
2296-#: ../settings/main.c:713
2297+#: ../settings/main.c:742
2298 msgid ""
2299 "Move this dialog to the display and workspace you want to edit the settings "
2300 "for."
2301 msgstr "設定したいディスプレイおよびワークスペースにこのダイアログを移動してください。"
2302
2303 #. Single monitor and single workspace
2304-#: ../settings/main.c:720
2305+#: ../settings/main.c:749
2306 #, c-format
2307 msgid "Wallpaper for my desktop"
2308 msgstr "デスクトップの壁紙"
2309
2310 #. Single monitor and per workspace wallpaper
2311-#: ../settings/main.c:726
2312+#: ../settings/main.c:755
2313 #, c-format
2314 msgid "Wallpaper for %s"
2315 msgstr "%s の壁紙"
2316
2317-#: ../settings/main.c:731
2318+#: ../settings/main.c:760
2319 msgid "Move this dialog to the workspace you want to edit the settings for."
2320 msgstr "設定したいワークスペースにこのダイアログを移動してください。"
2321
2322-#: ../settings/main.c:1134
2323+#: ../settings/main.c:1174
2324 msgid "Image selection is unavailable while the image style is set to None."
2325 msgstr "画像のスタイルが「なし」の時、壁紙は無効になります。"
2326
2327-#: ../settings/main.c:1481
2328+#: ../settings/main.c:1523
2329 msgid "Spanning screens"
2330 msgstr "複数画面にまたがって表示する"
2331
2332-#: ../settings/main.c:1786
2333+#: ../settings/main.c:1825
2334 msgid "Image files"
2335 msgstr "画像ファイル"
2336
2337-#: ../settings/main.c:1958
2338+#: ../settings/main.c:2001
2339 msgid "Settings manager socket"
2340 msgstr "設定マネージャーソケット"
2341
2342-#: ../settings/main.c:1958
2343+#: ../settings/main.c:2001
2344 msgid "SOCKET ID"
2345 msgstr "SOCKET ID"
2346
2347-#: ../settings/main.c:1959
2348+#: ../settings/main.c:2002
2349 msgid "Version information"
2350 msgstr "バージョン情報"
2351
2352-#: ../settings/main.c:1986
2353+#: ../settings/main.c:2030
2354 #, c-format
2355 msgid "Type '%s --help' for usage."
2356 msgstr "'%s --help' で使用方法が表示されます。"
2357
2358-#: ../settings/main.c:1998
2359+#: ../settings/main.c:2042
2360 msgid "The Xfce development team. All rights reserved."
2361 msgstr "The Xfce development team. All rights reserved."
2362
2363-#: ../settings/main.c:1999
2364+#: ../settings/main.c:2043
2365 #, c-format
2366 msgid "Please report bugs to <%s>."
2367 msgstr "バグの報告は <%s> までおねがいします。"
2368
2369-#: ../settings/main.c:2006
2370+#: ../settings/main.c:2050
2371 msgid "Desktop Settings"
2372 msgstr "デスクトップ設定"
2373
2374-#: ../settings/main.c:2008
2375+#: ../settings/main.c:2052
2376 msgid "Unable to contact settings server"
2377 msgstr "設定サーバーに接続できません"
2378
2379@@ -333,7 +333,7 @@
2380 msgid "File/launcher icons"
2381 msgstr "ファイル/ランチャーアイコン"
2382
2383-#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1015
2384+#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1020
2385 msgid "Desktop"
2386 msgstr "デスクトップ"
2387
2388@@ -512,6 +512,22 @@
2389 msgid "_Remove Workspace '%s'"
2390 msgstr "ワークスペース '%s' を削除(_R)"
2391
2392+#: ../src/xfdesktop-app-menu-item.c:349
2393+#: ../src/xfdesktop-file-icon-manager.c:823
2394+#: ../src/xfdesktop-file-icon-manager.c:1084
2395+#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
2396+#: ../src/xfdesktop-file-utils.c:1132 ../src/xfdesktop-file-utils.c:1209
2397+#: ../src/xfdesktop-file-utils.c:1234 ../src/xfdesktop-file-utils.c:1286
2398+msgid "Launch Error"
2399+msgstr "実行エラー"
2400+
2401+#: ../src/xfdesktop-app-menu-item.c:351
2402+#: ../src/xfdesktop-file-icon-manager.c:1086
2403+msgid ""
2404+"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
2405+"edit launchers and links on the desktop."
2406+msgstr "\"exo-desktop-item-edit\" を実行できません。これはデスクトップにランチャーやリンクを作成したり編集したりするために必要です。"
2407+
2408 #: ../src/xfdesktop-application.c:768
2409 msgid "Display version information"
2410 msgstr "バージョン情報を表示する"
2411@@ -615,8 +631,8 @@
2412 msgstr "名前の変更がサポートされているアイコンが選択されていません。"
2413
2414 #: ../src/xfdesktop-file-icon-manager.c:675
2415-#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:876
2416-#: ../src/xfdesktop-file-utils.c:913
2417+#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:921
2418+#: ../src/xfdesktop-file-utils.c:959
2419 msgid "Trash Error"
2420 msgstr "ゴミ箱エラー"
2421
2422@@ -627,11 +643,11 @@
2423
2424 #: ../src/xfdesktop-file-icon-manager.c:677
2425 #: ../src/xfdesktop-file-icon-manager.c:721 ../src/xfdesktop-file-utils.c:725
2426-#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:828
2427-#: ../src/xfdesktop-file-utils.c:959 ../src/xfdesktop-file-utils.c:1006
2428-#: ../src/xfdesktop-file-utils.c:1047 ../src/xfdesktop-file-utils.c:1088
2429-#: ../src/xfdesktop-file-utils.c:1190 ../src/xfdesktop-file-utils.c:1242
2430-#: ../src/xfdesktop-file-utils.c:1315 ../src/xfdesktop-file-utils.c:1393
2431+#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:864
2432+#: ../src/xfdesktop-file-utils.c:1005 ../src/xfdesktop-file-utils.c:1052
2433+#: ../src/xfdesktop-file-utils.c:1093 ../src/xfdesktop-file-utils.c:1134
2434+#: ../src/xfdesktop-file-utils.c:1236 ../src/xfdesktop-file-utils.c:1288
2435+#: ../src/xfdesktop-file-utils.c:1361 ../src/xfdesktop-file-utils.c:1439
2436 msgid ""
2437 "This feature requires a file manager service to be present (such as the one "
2438 "supplied by Thunar)."
2439@@ -644,14 +660,6 @@
2440 msgid "Unable to launch \"%s\":"
2441 msgstr "\"%s\" を実行できません:"
2442
2443-#: ../src/xfdesktop-file-icon-manager.c:823
2444-#: ../src/xfdesktop-file-icon-manager.c:1084
2445-#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
2446-#: ../src/xfdesktop-file-utils.c:1086 ../src/xfdesktop-file-utils.c:1163
2447-#: ../src/xfdesktop-file-utils.c:1188 ../src/xfdesktop-file-utils.c:1240
2448-msgid "Launch Error"
2449-msgstr "実行エラー"
2450-
2451 #: ../src/xfdesktop-file-icon-manager.c:1008
2452 #, c-format
2453 msgid "_Open With \"%s\""
2454@@ -662,12 +670,6 @@
2455 msgid "Open With \"%s\""
2456 msgstr "%s で開く"
2457
2458-#: ../src/xfdesktop-file-icon-manager.c:1086
2459-msgid ""
2460-"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
2461-"edit launchers and links on the desktop."
2462-msgstr "\"exo-desktop-item-edit\" を実行できません。これはデスクトップにランチャーやリンクを作成したり編集したりするために必要です。"
2463-
2464 #: ../src/xfdesktop-file-icon-manager.c:1337
2465 msgid "_Open all"
2466 msgstr "すべて開く(_O)"
2467@@ -738,23 +740,23 @@
2468 msgid "P_roperties..."
2469 msgstr "プロパティ(_R)..."
2470
2471-#: ../src/xfdesktop-file-icon-manager.c:2716
2472+#: ../src/xfdesktop-file-icon-manager.c:2642
2473 msgid "Load Error"
2474 msgstr "読み込みエラー"
2475
2476-#: ../src/xfdesktop-file-icon-manager.c:2718
2477+#: ../src/xfdesktop-file-icon-manager.c:2644
2478 msgid "Failed to load the desktop folder"
2479 msgstr "デスクトップフォルダーの読み込みに失敗しました"
2480
2481-#: ../src/xfdesktop-file-icon-manager.c:3262
2482+#: ../src/xfdesktop-file-icon-manager.c:3189
2483 msgid "Copy _Here"
2484 msgstr "ここにコピー(_H)"
2485
2486-#: ../src/xfdesktop-file-icon-manager.c:3262
2487+#: ../src/xfdesktop-file-icon-manager.c:3189
2488 msgid "_Move Here"
2489 msgstr "ここに移動(_M)"
2490
2491-#: ../src/xfdesktop-file-icon-manager.c:3262
2492+#: ../src/xfdesktop-file-icon-manager.c:3189
2493 msgid "_Link Here"
2494 msgstr "ここにリンクを作成(_L)"
2495
2496@@ -803,72 +805,72 @@
2497 msgid "The file could not be renamed"
2498 msgstr "ファイルの名前を変更できませんでした"
2499
2500-#: ../src/xfdesktop-file-utils.c:826
2501+#: ../src/xfdesktop-file-utils.c:862
2502 msgid "Delete Error"
2503 msgstr "削除エラー"
2504
2505-#: ../src/xfdesktop-file-utils.c:827
2506+#: ../src/xfdesktop-file-utils.c:863
2507 msgid "The selected files could not be deleted"
2508 msgstr "選択したファイルを削除できませんでした"
2509
2510-#: ../src/xfdesktop-file-utils.c:877
2511+#: ../src/xfdesktop-file-utils.c:922
2512 msgid "The selected files could not be moved to the trash"
2513 msgstr "選択したファイルをゴミ箱へ移動できませんでした"
2514
2515-#: ../src/xfdesktop-file-utils.c:878 ../src/xfdesktop-file-utils.c:915
2516+#: ../src/xfdesktop-file-utils.c:923 ../src/xfdesktop-file-utils.c:961
2517 msgid ""
2518 "This feature requires a trash service to be present (such as the one "
2519 "supplied by Thunar)."
2520 msgstr "この機能には (Thunar が提供するような) ゴミ箱サービスが必要です。"
2521
2522-#: ../src/xfdesktop-file-utils.c:914
2523+#: ../src/xfdesktop-file-utils.c:960
2524 msgid "Could not empty the trash"
2525 msgstr "ゴミ箱を空にできませんでした"
2526
2527-#: ../src/xfdesktop-file-utils.c:957
2528+#: ../src/xfdesktop-file-utils.c:1003
2529 msgid "Create File Error"
2530 msgstr "ファイル作成エラー"
2531
2532-#: ../src/xfdesktop-file-utils.c:958
2533+#: ../src/xfdesktop-file-utils.c:1004
2534 msgid "Could not create a new file"
2535 msgstr "新しいファイルを作成できませんでした"
2536
2537-#: ../src/xfdesktop-file-utils.c:1004
2538+#: ../src/xfdesktop-file-utils.c:1050
2539 msgid "Create Document Error"
2540 msgstr "ドキュメント作成エラー"
2541
2542-#: ../src/xfdesktop-file-utils.c:1005
2543+#: ../src/xfdesktop-file-utils.c:1051
2544 msgid "Could not create a new document from the template"
2545 msgstr "テンプレートから新しいドキュメントを作成できませんでした"
2546
2547-#: ../src/xfdesktop-file-utils.c:1045
2548+#: ../src/xfdesktop-file-utils.c:1091
2549 msgid "File Properties Error"
2550 msgstr "ファイルプロパティエラー"
2551
2552-#: ../src/xfdesktop-file-utils.c:1046
2553+#: ../src/xfdesktop-file-utils.c:1092
2554 msgid "The file properties dialog could not be opened"
2555 msgstr "ファイルのプロパティダイアログを開けませんでした。"
2556
2557-#: ../src/xfdesktop-file-utils.c:1087
2558+#: ../src/xfdesktop-file-utils.c:1133
2559 msgid "The file could not be opened"
2560 msgstr "ファイルを開けませんでした。"
2561
2562-#: ../src/xfdesktop-file-utils.c:1160 ../src/xfdesktop-file-utils.c:1185
2563+#: ../src/xfdesktop-file-utils.c:1206 ../src/xfdesktop-file-utils.c:1231
2564 #, c-format
2565 msgid "Failed to run \"%s\""
2566 msgstr "\"%s\" の実行に失敗しました"
2567
2568-#: ../src/xfdesktop-file-utils.c:1241
2569+#: ../src/xfdesktop-file-utils.c:1287
2570 msgid "The application chooser could not be opened"
2571 msgstr "アプリケーション選択ウィンドウを開けませんでした"
2572
2573-#: ../src/xfdesktop-file-utils.c:1299 ../src/xfdesktop-file-utils.c:1313
2574-#: ../src/xfdesktop-file-utils.c:1375 ../src/xfdesktop-file-utils.c:1391
2575+#: ../src/xfdesktop-file-utils.c:1345 ../src/xfdesktop-file-utils.c:1359
2576+#: ../src/xfdesktop-file-utils.c:1421 ../src/xfdesktop-file-utils.c:1437
2577 msgid "Transfer Error"
2578 msgstr "転送エラー"
2579
2580-#: ../src/xfdesktop-file-utils.c:1300 ../src/xfdesktop-file-utils.c:1314
2581-#: ../src/xfdesktop-file-utils.c:1376 ../src/xfdesktop-file-utils.c:1392
2582+#: ../src/xfdesktop-file-utils.c:1346 ../src/xfdesktop-file-utils.c:1360
2583+#: ../src/xfdesktop-file-utils.c:1422 ../src/xfdesktop-file-utils.c:1438
2584 msgid "The file transfer could not be performed"
2585 msgstr "ファイル転送を実行できませんでした"
2586
2587@@ -922,7 +924,7 @@
2588 msgid "Eject Finished"
2589 msgstr "取り出しが完了しました"
2590
2591-#: ../src/xfdesktop-regular-file-icon.c:603
2592+#: ../src/xfdesktop-regular-file-icon.c:741
2593 #, c-format
2594 msgid ""
2595 "Type: %s\n"
2596
2597=== modified file 'po/kk.po'
2598--- po/kk.po 2014-02-20 15:59:49 +0000
2599+++ po/kk.po 2014-04-09 06:59:22 +0000
2600@@ -8,8 +8,8 @@
2601 msgstr ""
2602 "Project-Id-Version: Xfdesktop\n"
2603 "Report-Msgid-Bugs-To: \n"
2604-"POT-Creation-Date: 2013-12-15 00:31+0100\n"
2605-"PO-Revision-Date: 2014-01-06 11:39+0000\n"
2606+"POT-Creation-Date: 2014-04-03 18:32+0200\n"
2607+"PO-Revision-Date: 2014-04-04 11:10+0000\n"
2608 "Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
2609 "Language-Team: Kazakh (http://www.transifex.com/projects/p/xfce/language/kk/)\n"
2610 "MIME-Version: 1.0\n"
2611@@ -18,37 +18,37 @@
2612 "Language: kk\n"
2613 "Plural-Forms: nplurals=1; plural=0;\n"
2614
2615-#: ../settings/main.c:372 ../src/xfdesktop-special-file-icon.c:295
2616+#: ../settings/main.c:404 ../src/xfdesktop-special-file-icon.c:295
2617 #: ../src/xfdesktop-special-file-icon.c:479
2618 msgid "Home"
2619 msgstr "Үй бумасы"
2620
2621-#: ../settings/main.c:374
2622+#: ../settings/main.c:406
2623 msgid "Filesystem"
2624 msgstr "Файлдық жүйе"
2625
2626-#: ../settings/main.c:376
2627+#: ../settings/main.c:408
2628 msgid "Trash"
2629 msgstr "Қоқыс шелегі"
2630
2631-#: ../settings/main.c:378
2632+#: ../settings/main.c:410
2633 msgid "Removable Devices"
2634 msgstr "Ауыстырмалы құрылғылар"
2635
2636-#: ../settings/main.c:380
2637+#: ../settings/main.c:412
2638 msgid "Network Shares"
2639 msgstr "Желілік ортақ бумалар"
2640
2641-#: ../settings/main.c:382
2642+#: ../settings/main.c:414
2643 msgid "Disks and Drives"
2644 msgstr "Дисктер және жетектер"
2645
2646-#: ../settings/main.c:384
2647-msgid "Other Items"
2648-msgstr "Басқа нәрселер"
2649+#: ../settings/main.c:416
2650+msgid "Other Devices"
2651+msgstr "Басқа құрылғылар"
2652
2653 #. Display the file name, file type, and file size in the tooltip.
2654-#: ../settings/main.c:497
2655+#: ../settings/main.c:529
2656 #, c-format
2657 msgid ""
2658 "<b>%s</b>\n"
2659@@ -56,97 +56,95 @@
2660 "Size: %s"
2661 msgstr "<b>%s</b>\nТүрі: %s\nӨлшемі: %s"
2662
2663-#: ../settings/main.c:681
2664+#: ../settings/main.c:715
2665 #, c-format
2666 msgid "Wallpaper for Monitor %d (%s)"
2667 msgstr "Нөмірі %d мониторы үшін түсқағаз (%s)"
2668
2669-#: ../settings/main.c:684
2670+#: ../settings/main.c:718
2671 #, c-format
2672 msgid "Wallpaper for Monitor %d"
2673 msgstr "Нөмірі %d мониторы үшін түсқағаз"
2674
2675-#: ../settings/main.c:690
2676-msgid ""
2677-"You are using more than one display, move this dialog to the display you "
2678-"want to edit the settings for."
2679-msgstr "Сіз бірден көп экран қолданып отырсыз, баптауларын өзгерту керек экранына бұл сұхбат терезесін тартып апарыңыз."
2680+#: ../settings/main.c:724
2681+msgid "Move this dialog to the display you want to edit the settings for."
2682+msgstr "Бұл сұхбат терезесін баптауларын өзгерту керек экранына тартып апарыңыз."
2683
2684-#: ../settings/main.c:698
2685+#: ../settings/main.c:731
2686 #, c-format
2687 msgid "Wallpaper for %s on Monitor %d (%s)"
2688 msgstr "%s үшін фон суреті, монитор %d (%s)"
2689
2690-#: ../settings/main.c:702
2691+#: ../settings/main.c:735
2692 #, c-format
2693 msgid "Wallpaper for %s on Monitor %d"
2694 msgstr "%s үшін фон суреті, монитор %d"
2695
2696-#: ../settings/main.c:709
2697+#: ../settings/main.c:742
2698 msgid ""
2699-"You are using more than one display, move this dialog to the display and "
2700-"workspace you want to edit the settings for."
2701-msgstr "Сіз бірден көп экран қолданып отырсыз, баптауларын өзгерту керек экраны және жұмыс орнына бұл сұхбат терезесін тартып апарыңыз."
2702+"Move this dialog to the display and workspace you want to edit the settings "
2703+"for."
2704+msgstr "Бұл сұхбат терезесін баптауларын өзгерту керек экраны және жұмыс орнына тартып апарыңыз."
2705
2706 #. Single monitor and single workspace
2707-#: ../settings/main.c:717
2708+#: ../settings/main.c:749
2709 #, c-format
2710 msgid "Wallpaper for my desktop"
2711 msgstr "Менің жұмыс үстелім үшін түсқағаз"
2712
2713 #. Single monitor and per workspace wallpaper
2714-#: ../settings/main.c:723
2715+#: ../settings/main.c:755
2716 #, c-format
2717 msgid "Wallpaper for %s"
2718 msgstr "%s үшін түсқағаз"
2719
2720-#: ../settings/main.c:728
2721+#: ../settings/main.c:760
2722 msgid "Move this dialog to the workspace you want to edit the settings for."
2723 msgstr "Сіз бірден көп экран қолданып отырсыз, баптауларын өзгерту керек экраны және жұмыс орнына бұл сұхбат терезесін тартып апарыңыз."
2724
2725-#: ../settings/main.c:1131
2726+#: ../settings/main.c:1174
2727 msgid "Image selection is unavailable while the image style is set to None."
2728 msgstr "Сурет стилі ешнәрсе болып тұрған кезінде суретті таңдау мүмкін емес."
2729
2730-#: ../settings/main.c:1483
2731+#: ../settings/main.c:1523
2732 msgid "Spanning screens"
2733 msgstr "Біріккен экрандар"
2734
2735-#: ../settings/main.c:1788
2736+#: ../settings/main.c:1825
2737 msgid "Image files"
2738 msgstr "Сурет файлдары"
2739
2740-#: ../settings/main.c:1945
2741+#: ../settings/main.c:2001
2742 msgid "Settings manager socket"
2743 msgstr "Баптаулар басқарушысының сокеті"
2744
2745-#: ../settings/main.c:1945
2746+#: ../settings/main.c:2001
2747 msgid "SOCKET ID"
2748 msgstr "SOCKET ID"
2749
2750-#: ../settings/main.c:1946
2751+#: ../settings/main.c:2002
2752 msgid "Version information"
2753 msgstr "Нұсқа ақпараты"
2754
2755-#: ../settings/main.c:1973
2756+#: ../settings/main.c:2030
2757 #, c-format
2758 msgid "Type '%s --help' for usage."
2759 msgstr "Көмек үшін '%s --help' енгізіңіз."
2760
2761-#: ../settings/main.c:1985
2762+#: ../settings/main.c:2042
2763 msgid "The Xfce development team. All rights reserved."
2764 msgstr "Xfce өндіру тобы. Барлық құқықтары қорғалған."
2765
2766-#: ../settings/main.c:1986
2767+#: ../settings/main.c:2043
2768 #, c-format
2769 msgid "Please report bugs to <%s>."
2770 msgstr "Ақаулықтар жөнінде хабарласыңыз: <%s>."
2771
2772-#: ../settings/main.c:1993
2773+#: ../settings/main.c:2050
2774 msgid "Desktop Settings"
2775 msgstr "Жұмыс үстел баптаулары"
2776
2777-#: ../settings/main.c:1995
2778+#: ../settings/main.c:2052
2779 msgid "Unable to contact settings server"
2780 msgstr "Баптаулар қызметімен байланыс орнату мүмкін емес"
2781
2782@@ -179,16 +177,16 @@
2783 msgstr "_Бума:"
2784
2785 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:6
2786-msgid "Choose the folder to select wallpapers from"
2787-msgstr "Түсқағаздарды алу үшін буманы көрсетіңіз"
2788+msgid "Choose the folder to select wallpapers from."
2789+msgstr "Түсқағаздарды алу үшін буманы көрсетіңіз."
2790
2791 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:7
2792 msgid "St_yle:"
2793 msgstr "Ст_илі:"
2794
2795 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:8
2796-msgid "Specify how the image will be resized to fit the screen"
2797-msgstr "Экран өлшемдеріне дейін сурет қалай өзгертілетінін анықтайды"
2798+msgid "Specify how the image will be resized to fit the screen."
2799+msgstr "Экран өлшемдеріне дейін сурет қалай өзгертілетінін көрсетіңіз."
2800
2801 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:9
2802 #: ../settings/xfdesktop-settings-ui.glade.h:4
2803@@ -224,20 +222,20 @@
2804 msgstr "Тү_с:"
2805
2806 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:17
2807-msgid "Specify the style of the color drawn behind the backdrop image"
2808-msgstr "Фон суреті астындағы түстін мөлдірлігін анықтайды"
2809+msgid "Specify the style of the color drawn behind the backdrop image."
2810+msgstr "Фон суреті астындағы түс стилін көрсетіңіз."
2811
2812 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:18
2813-msgid "Specifies the solid color, or the \"left\" or \"top\" color of the gradient"
2814-msgstr "Градиент үшін \"сол\" мен \"үстіңгі\" түстерін анықтайды"
2815+msgid "Specifies the solid color, or the \"left\" or \"top\" color of the gradient."
2816+msgstr "Градиент үшін бүтін түсті, не \"сол\" мен \"үстіңгі\" түстерін анықтайды."
2817
2818 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:19
2819 msgid "Select First Color"
2820 msgstr "Бірінші түсі"
2821
2822 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:20
2823-msgid "Specifies the \"right\" or \"bottom\" color of the gradient"
2824-msgstr "Градиент үшін \"оң\" мен \"төменгі\" түстерін анықтайды"
2825+msgid "Specifies the \"right\" or \"bottom\" color of the gradient."
2826+msgstr "Градиент үшін \"оң\" мен \"төменгі\" түстерін анықтайды."
2827
2828 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:21
2829 msgid "Select Second Color"
2830@@ -257,8 +255,8 @@
2831 msgstr "Ағымдағы бумадан автоматты түрде басқа фонды алу."
2832
2833 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:25
2834-msgid "Specify how often the background will change"
2835-msgstr "Фондай ауысу жиілігін көрсетіңіз"
2836+msgid "Specify how often the background will change."
2837+msgstr "Фонның ауысу жиілігін көрсетеді."
2838
2839 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:26
2840 msgid "in seconds:"
2841@@ -294,7 +292,7 @@
2842
2843 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:34
2844 msgid "_Random Order"
2845-msgstr "_Кездеісоқ ретпен"
2846+msgstr "_Кездейсоқ ретпен"
2847
2848 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:35
2849 msgid ""
2850@@ -334,7 +332,7 @@
2851 msgid "File/launcher icons"
2852 msgstr "Файл/жөнелткіштер таңбашалары"
2853
2854-#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1010
2855+#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1020
2856 msgid "Desktop"
2857 msgstr "Жұмыс үстелі"
2858
2859@@ -426,7 +424,7 @@
2860 msgid ""
2861 "Select this option to display preview-able files on the desktop as "
2862 "automatically generated thumbnail icons."
2863-msgstr "Алдын-ала көрінісі мүмкін болатын файлдарды олардың аатоматты түрде жасалған кіші көріністері ретінде көрсету үшін бұл опцияны таңдаңыз."
2864+msgstr "Алдын-ала көрінісі мүмкін болатын файлдарды олардың автоматты түрде жасалған кіші көріністері ретінде көрсету үшін бұл опцияны таңдаңыз."
2865
2866 #: ../settings/xfdesktop-settings-ui.glade.h:33
2867 msgid "Single _click to activate items"
2868@@ -513,250 +511,251 @@
2869 msgid "_Remove Workspace '%s'"
2870 msgstr "'%s' жұ_мыс орнын өшіру"
2871
2872-#: ../src/xfdesktop-application.c:772
2873+#: ../src/xfdesktop-app-menu-item.c:349
2874+#: ../src/xfdesktop-file-icon-manager.c:823
2875+#: ../src/xfdesktop-file-icon-manager.c:1084
2876+#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
2877+#: ../src/xfdesktop-file-utils.c:1132 ../src/xfdesktop-file-utils.c:1209
2878+#: ../src/xfdesktop-file-utils.c:1234 ../src/xfdesktop-file-utils.c:1286
2879+msgid "Launch Error"
2880+msgstr "Жөнелту қатесі"
2881+
2882+#: ../src/xfdesktop-app-menu-item.c:351
2883+#: ../src/xfdesktop-file-icon-manager.c:1086
2884+msgid ""
2885+"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
2886+"edit launchers and links on the desktop."
2887+msgstr "\"exo-desktop-item-edit\" жөнелту қатесі, ол жұмыс үстелінде жөнелткіштерді мен сілтемелерді жасау үшін керек."
2888+
2889+#: ../src/xfdesktop-application.c:768
2890 msgid "Display version information"
2891 msgstr "Нұсқа ақпаратын көрсету"
2892
2893-#: ../src/xfdesktop-application.c:773
2894+#: ../src/xfdesktop-application.c:769
2895 msgid "Reload all settings"
2896 msgstr "Баптауларды қайта жүктеу"
2897
2898-#: ../src/xfdesktop-application.c:774
2899+#: ../src/xfdesktop-application.c:770
2900 msgid "Pop up the menu (at the current mouse position)"
2901 msgstr "Мәзірді көрсету (тышқанның ағымдағы орнында)"
2902
2903-#: ../src/xfdesktop-application.c:775
2904+#: ../src/xfdesktop-application.c:771
2905 msgid "Pop up the window list (at the current mouse position)"
2906 msgstr "Терезелер тізімін шығару (тышқанның ағымдағы орнында)"
2907
2908-#: ../src/xfdesktop-application.c:777
2909+#: ../src/xfdesktop-application.c:773
2910 msgid "Automatically arrange all the icons on the desktop"
2911 msgstr "Жұмыс үстеліндегі барлық таңбашаларды автореттеу"
2912
2913-#: ../src/xfdesktop-application.c:779
2914+#: ../src/xfdesktop-application.c:775
2915 msgid "Do not wait for a window manager on startup"
2916 msgstr "Іске қосылғанда, терезелер басқарушысын күтпеу"
2917
2918-#: ../src/xfdesktop-application.c:780
2919+#: ../src/xfdesktop-application.c:776
2920 msgid "Cause xfdesktop to quit"
2921 msgstr "Xfdesktop жұмысын аяқтау"
2922
2923-#: ../src/xfdesktop-application.c:795
2924+#: ../src/xfdesktop-application.c:791
2925 #, c-format
2926 msgid "Failed to parse arguments: %s\n"
2927 msgstr "Аргументтерді өндеу қатемен аяқталды: %s\n"
2928
2929-#: ../src/xfdesktop-application.c:806
2930+#: ../src/xfdesktop-application.c:802
2931 #, c-format
2932 msgid "This is %s version %s, running on Xfce %s.\n"
2933 msgstr "Бұл %s, нұсқасы %s, Xfce %s қосылған.\n"
2934
2935-#: ../src/xfdesktop-application.c:808
2936+#: ../src/xfdesktop-application.c:804
2937 #, c-format
2938 msgid "Built with GTK+ %d.%d.%d, linked with GTK+ %d.%d.%d."
2939 msgstr "Жиналған GTK+ %d.%d.%d нұсқасымен, байланысқан GTK+ %d.%d.%d."
2940
2941-#: ../src/xfdesktop-application.c:812
2942+#: ../src/xfdesktop-application.c:808
2943 #, c-format
2944 msgid "Build options:\n"
2945 msgstr "Жинау опциялары:\n"
2946
2947-#: ../src/xfdesktop-application.c:813
2948+#: ../src/xfdesktop-application.c:809
2949 #, c-format
2950 msgid " Desktop Menu: %s\n"
2951 msgstr " Жұмыс үстел мәзірі: %s\n"
2952
2953-#: ../src/xfdesktop-application.c:815 ../src/xfdesktop-application.c:822
2954-#: ../src/xfdesktop-application.c:829
2955+#: ../src/xfdesktop-application.c:811 ../src/xfdesktop-application.c:818
2956+#: ../src/xfdesktop-application.c:825
2957 msgid "enabled"
2958 msgstr "қосулы"
2959
2960-#: ../src/xfdesktop-application.c:817 ../src/xfdesktop-application.c:824
2961-#: ../src/xfdesktop-application.c:831
2962+#: ../src/xfdesktop-application.c:813 ../src/xfdesktop-application.c:820
2963+#: ../src/xfdesktop-application.c:827
2964 msgid "disabled"
2965 msgstr "сөндірулі"
2966
2967-#: ../src/xfdesktop-application.c:820
2968+#: ../src/xfdesktop-application.c:816
2969 #, c-format
2970 msgid " Desktop Icons: %s\n"
2971 msgstr " Жұмыс үстел таңбашалары: %s\n"
2972
2973-#: ../src/xfdesktop-application.c:827
2974+#: ../src/xfdesktop-application.c:823
2975 #, c-format
2976 msgid " Desktop File Icons: %s\n"
2977 msgstr " Жұмыс үстел файл таңбашалары: %s\n"
2978
2979-#: ../src/xfdesktop-file-icon-manager.c:578
2980-#: ../src/xfdesktop-file-icon-manager.c:595
2981+#: ../src/xfdesktop-file-icon-manager.c:522
2982+#: ../src/xfdesktop-file-icon-manager.c:539
2983 #, c-format
2984 msgid "Could not create the desktop folder \"%s\""
2985 msgstr "\"%s\" жұмыс үстел бумасын жасау мүмкін емес"
2986
2987-#: ../src/xfdesktop-file-icon-manager.c:583
2988-#: ../src/xfdesktop-file-icon-manager.c:600
2989+#: ../src/xfdesktop-file-icon-manager.c:527
2990+#: ../src/xfdesktop-file-icon-manager.c:544
2991 msgid "Desktop Folder Error"
2992 msgstr "Жұмыс үстел бумасының қатесі"
2993
2994-#: ../src/xfdesktop-file-icon-manager.c:602
2995+#: ../src/xfdesktop-file-icon-manager.c:546
2996 msgid ""
2997 "A normal file with the same name already exists. Please delete or rename it."
2998 msgstr "Ондай атауы бар файл бар болып тұр. Алдымен оны өшіріңіз не атын өзгертіңіз."
2999
3000-#: ../src/xfdesktop-file-icon-manager.c:685 ../src/xfdesktop-file-utils.c:716
3001-#: ../src/xfdesktop-file-utils.c:769
3002+#: ../src/xfdesktop-file-icon-manager.c:629 ../src/xfdesktop-file-utils.c:723
3003+#: ../src/xfdesktop-file-utils.c:776
3004 msgid "Rename Error"
3005 msgstr "Атын ауыстыру қатесі"
3006
3007-#: ../src/xfdesktop-file-icon-manager.c:686 ../src/xfdesktop-file-utils.c:770
3008+#: ../src/xfdesktop-file-icon-manager.c:630 ../src/xfdesktop-file-utils.c:777
3009 msgid "The files could not be renamed"
3010 msgstr "Файлдар аттарын ауыстыру мүмкін емес"
3011
3012-#: ../src/xfdesktop-file-icon-manager.c:687
3013+#: ../src/xfdesktop-file-icon-manager.c:631
3014 msgid "None of the icons selected support being renamed."
3015 msgstr "Таңдалған таңбашалардың ешбірі де атын ауыстыруды қолдамайды."
3016
3017-#: ../src/xfdesktop-file-icon-manager.c:731
3018-#: ../src/xfdesktop-file-icon-manager.c:775 ../src/xfdesktop-file-utils.c:869
3019-#: ../src/xfdesktop-file-utils.c:906
3020+#: ../src/xfdesktop-file-icon-manager.c:675
3021+#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:921
3022+#: ../src/xfdesktop-file-utils.c:959
3023 msgid "Trash Error"
3024 msgstr "Қоқыс шелек қатесі"
3025
3026-#: ../src/xfdesktop-file-icon-manager.c:732
3027-#: ../src/xfdesktop-file-icon-manager.c:776
3028+#: ../src/xfdesktop-file-icon-manager.c:676
3029+#: ../src/xfdesktop-file-icon-manager.c:720
3030 msgid "The selected files could not be trashed"
3031 msgstr "Ерекшеленген файлдарды қоқыс шелегіне тастау мүмкін емес"
3032
3033-#: ../src/xfdesktop-file-icon-manager.c:733
3034-#: ../src/xfdesktop-file-icon-manager.c:777 ../src/xfdesktop-file-utils.c:718
3035-#: ../src/xfdesktop-file-utils.c:771 ../src/xfdesktop-file-utils.c:821
3036-#: ../src/xfdesktop-file-utils.c:952 ../src/xfdesktop-file-utils.c:999
3037-#: ../src/xfdesktop-file-utils.c:1040 ../src/xfdesktop-file-utils.c:1081
3038-#: ../src/xfdesktop-file-utils.c:1183 ../src/xfdesktop-file-utils.c:1235
3039-#: ../src/xfdesktop-file-utils.c:1308 ../src/xfdesktop-file-utils.c:1386
3040+#: ../src/xfdesktop-file-icon-manager.c:677
3041+#: ../src/xfdesktop-file-icon-manager.c:721 ../src/xfdesktop-file-utils.c:725
3042+#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:864
3043+#: ../src/xfdesktop-file-utils.c:1005 ../src/xfdesktop-file-utils.c:1052
3044+#: ../src/xfdesktop-file-utils.c:1093 ../src/xfdesktop-file-utils.c:1134
3045+#: ../src/xfdesktop-file-utils.c:1236 ../src/xfdesktop-file-utils.c:1288
3046+#: ../src/xfdesktop-file-utils.c:1361 ../src/xfdesktop-file-utils.c:1439
3047 msgid ""
3048 "This feature requires a file manager service to be present (such as the one "
3049 "supplied by Thunar)."
3050 msgstr "Бұл мүмкіндік бар болып тұрған файлдар басқарушы қызметін талап етеді (Thunar ұсынатын қызмет сияқты)."
3051
3052 #. printf is to be translator-friendly
3053-#: ../src/xfdesktop-file-icon-manager.c:877
3054-#: ../src/xfdesktop-file-icon-manager.c:1335
3055+#: ../src/xfdesktop-file-icon-manager.c:821
3056+#: ../src/xfdesktop-file-icon-manager.c:1279
3057 #, c-format
3058 msgid "Unable to launch \"%s\":"
3059 msgstr "\"%s\" жөнелту қатесі:"
3060
3061-#: ../src/xfdesktop-file-icon-manager.c:879
3062-#: ../src/xfdesktop-file-icon-manager.c:1140
3063-#: ../src/xfdesktop-file-icon-manager.c:1336 ../src/xfdesktop-file-utils.c:657
3064-#: ../src/xfdesktop-file-utils.c:1079 ../src/xfdesktop-file-utils.c:1156
3065-#: ../src/xfdesktop-file-utils.c:1181 ../src/xfdesktop-file-utils.c:1233
3066-msgid "Launch Error"
3067-msgstr "Жөнелту қатесі"
3068-
3069-#: ../src/xfdesktop-file-icon-manager.c:1064
3070+#: ../src/xfdesktop-file-icon-manager.c:1008
3071 #, c-format
3072 msgid "_Open With \"%s\""
3073 msgstr "\"%s\" _көмегімен ашу"
3074
3075-#: ../src/xfdesktop-file-icon-manager.c:1067
3076+#: ../src/xfdesktop-file-icon-manager.c:1011
3077 #, c-format
3078 msgid "Open With \"%s\""
3079 msgstr "\"%s\" көмегімен ашу"
3080
3081-#: ../src/xfdesktop-file-icon-manager.c:1142
3082-msgid ""
3083-"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
3084-"edit launchers and links on the desktop."
3085-msgstr "\"exo-desktop-item-edit\" жөнелту қатесі, ол жұмыс үстелінде жөнелткіштерді мен сілтемелерді жасау үшін керек."
3086-
3087-#: ../src/xfdesktop-file-icon-manager.c:1393
3088+#: ../src/xfdesktop-file-icon-manager.c:1337
3089 msgid "_Open all"
3090 msgstr "Б_арлығын ашу"
3091
3092-#: ../src/xfdesktop-file-icon-manager.c:1409
3093+#: ../src/xfdesktop-file-icon-manager.c:1353
3094 msgid "_Open in New Window"
3095 msgstr "_Жаңа терезеде ашу"
3096
3097-#: ../src/xfdesktop-file-icon-manager.c:1411
3098-#: ../src/xfdesktop-special-file-icon.c:547 ../src/xfdesktop-volume-icon.c:810
3099-#: ../src/xfdesktop-volume-icon.c:814
3100+#: ../src/xfdesktop-file-icon-manager.c:1355
3101+#: ../src/xfdesktop-special-file-icon.c:547 ../src/xfdesktop-volume-icon.c:813
3102 msgid "_Open"
3103 msgstr "А_шу"
3104
3105 #. create launcher item
3106-#: ../src/xfdesktop-file-icon-manager.c:1430
3107+#: ../src/xfdesktop-file-icon-manager.c:1374
3108 msgid "Create _Launcher..."
3109 msgstr "Жөне_лткішті жасау..."
3110
3111 #. create link item
3112-#: ../src/xfdesktop-file-icon-manager.c:1446
3113+#: ../src/xfdesktop-file-icon-manager.c:1390
3114 msgid "Create _URL Link..."
3115 msgstr "URL сіл_темесін жасау..."
3116
3117 #. create folder item
3118-#: ../src/xfdesktop-file-icon-manager.c:1462
3119+#: ../src/xfdesktop-file-icon-manager.c:1406
3120 msgid "Create _Folder..."
3121 msgstr "_Буманы жасау..."
3122
3123-#: ../src/xfdesktop-file-icon-manager.c:1477
3124+#: ../src/xfdesktop-file-icon-manager.c:1421
3125 msgid "Create From _Template"
3126 msgstr "Үл_гіден жасау"
3127
3128-#: ../src/xfdesktop-file-icon-manager.c:1506
3129+#: ../src/xfdesktop-file-icon-manager.c:1450
3130 msgid "_Empty File"
3131 msgstr "Б_ос файл"
3132
3133-#: ../src/xfdesktop-file-icon-manager.c:1523
3134+#: ../src/xfdesktop-file-icon-manager.c:1467
3135 msgid "_Execute"
3136 msgstr "О_рындау"
3137
3138-#: ../src/xfdesktop-file-icon-manager.c:1543
3139+#: ../src/xfdesktop-file-icon-manager.c:1487
3140 msgid "_Edit Launcher"
3141 msgstr "Жөн_елткішті түзету"
3142
3143-#: ../src/xfdesktop-file-icon-manager.c:1578
3144+#: ../src/xfdesktop-file-icon-manager.c:1522
3145 msgid "Open With"
3146 msgstr "Көмегімен ашу"
3147
3148-#: ../src/xfdesktop-file-icon-manager.c:1604
3149+#: ../src/xfdesktop-file-icon-manager.c:1548
3150 msgid "Open With Other _Application..."
3151 msgstr "Б_асқа қолданба көмегімен ашу..."
3152
3153 #. Rename
3154-#: ../src/xfdesktop-file-icon-manager.c:1704
3155+#: ../src/xfdesktop-file-icon-manager.c:1651
3156 msgid "_Rename..."
3157 msgstr "Атын ау_ыстыру..."
3158
3159-#: ../src/xfdesktop-file-icon-manager.c:1732
3160+#: ../src/xfdesktop-file-icon-manager.c:1679
3161 msgid "Arrange Desktop _Icons"
3162 msgstr "Жұ_мыс үстел таңбашаларын реттеу"
3163
3164-#: ../src/xfdesktop-file-icon-manager.c:1743
3165+#: ../src/xfdesktop-file-icon-manager.c:1690
3166 msgid "Desktop _Settings..."
3167 msgstr "Жұмыс ү_стелінің баптаулары..."
3168
3169-#: ../src/xfdesktop-file-icon-manager.c:1754
3170-#: ../src/xfdesktop-volume-icon.c:856
3171+#: ../src/xfdesktop-file-icon-manager.c:1701
3172+#: ../src/xfdesktop-volume-icon.c:855
3173 msgid "P_roperties..."
3174 msgstr "Қас_иеттері..."
3175
3176-#: ../src/xfdesktop-file-icon-manager.c:2744
3177+#: ../src/xfdesktop-file-icon-manager.c:2642
3178 msgid "Load Error"
3179 msgstr "Жүктеу қатесі"
3180
3181-#: ../src/xfdesktop-file-icon-manager.c:2746
3182+#: ../src/xfdesktop-file-icon-manager.c:2644
3183 msgid "Failed to load the desktop folder"
3184 msgstr "Жұмыс үстел бумасын жүктеу сәтсіз"
3185
3186-#: ../src/xfdesktop-file-icon-manager.c:3286
3187+#: ../src/xfdesktop-file-icon-manager.c:3189
3188 msgid "Copy _Here"
3189 msgstr "Ос_ында көшіру"
3190
3191-#: ../src/xfdesktop-file-icon-manager.c:3286
3192+#: ../src/xfdesktop-file-icon-manager.c:3189
3193 msgid "_Move Here"
3194 msgstr "Осында жы_лжыту"
3195
3196-#: ../src/xfdesktop-file-icon-manager.c:3286
3197+#: ../src/xfdesktop-file-icon-manager.c:3189
3198 msgid "_Link Here"
3199 msgstr "Осында _сілтеме жасау"
3200
3201@@ -789,88 +788,88 @@
3202 msgid "Unknown"
3203 msgstr "Белгісіз"
3204
3205-#: ../src/xfdesktop-file-utils.c:658
3206+#: ../src/xfdesktop-file-utils.c:665
3207 msgid "The folder could not be opened"
3208 msgstr "Буманы ашу мүмкін емес"
3209
3210-#: ../src/xfdesktop-file-utils.c:675
3211+#: ../src/xfdesktop-file-utils.c:682
3212 msgid "Error"
3213 msgstr "Қате"
3214
3215-#: ../src/xfdesktop-file-utils.c:676
3216+#: ../src/xfdesktop-file-utils.c:683
3217 msgid "The requested operation could not be completed"
3218 msgstr "Сұралған әрекетті аяқтау мүмкін емес"
3219
3220-#: ../src/xfdesktop-file-utils.c:717
3221+#: ../src/xfdesktop-file-utils.c:724
3222 msgid "The file could not be renamed"
3223 msgstr "Файл атын ауыстыру мүмкін емес"
3224
3225-#: ../src/xfdesktop-file-utils.c:819
3226+#: ../src/xfdesktop-file-utils.c:862
3227 msgid "Delete Error"
3228 msgstr "Өшіру қатесі"
3229
3230-#: ../src/xfdesktop-file-utils.c:820
3231+#: ../src/xfdesktop-file-utils.c:863
3232 msgid "The selected files could not be deleted"
3233-msgstr "Ерекшеленген файлдарды өшіру мүмкін емес"
3234+msgstr "Таңдалған файлдарды өшіру мүмкін емес"
3235
3236-#: ../src/xfdesktop-file-utils.c:870
3237+#: ../src/xfdesktop-file-utils.c:922
3238 msgid "The selected files could not be moved to the trash"
3239-msgstr "Ерекшеленген файлдарды қоқыс шелегіне тастау мүмкін емес"
3240+msgstr "Таңдалған файлдарды қоқыс шелегіне тастау мүмкін емес"
3241
3242-#: ../src/xfdesktop-file-utils.c:871 ../src/xfdesktop-file-utils.c:908
3243+#: ../src/xfdesktop-file-utils.c:923 ../src/xfdesktop-file-utils.c:961
3244 msgid ""
3245 "This feature requires a trash service to be present (such as the one "
3246 "supplied by Thunar)."
3247 msgstr "Бұл мүмкіндік бар болып тұрған қоқыс шелегі қызметін талап етеді (Thunar ұсынатын қызмет сияқты)."
3248
3249-#: ../src/xfdesktop-file-utils.c:907
3250+#: ../src/xfdesktop-file-utils.c:960
3251 msgid "Could not empty the trash"
3252 msgstr "Қоқыс шелегін тазарту мүмкін емес"
3253
3254-#: ../src/xfdesktop-file-utils.c:950
3255+#: ../src/xfdesktop-file-utils.c:1003
3256 msgid "Create File Error"
3257 msgstr "Файлды жасау қатесі"
3258
3259-#: ../src/xfdesktop-file-utils.c:951
3260+#: ../src/xfdesktop-file-utils.c:1004
3261 msgid "Could not create a new file"
3262 msgstr "Жаңа файлды жасау мүмкін емес"
3263
3264-#: ../src/xfdesktop-file-utils.c:997
3265+#: ../src/xfdesktop-file-utils.c:1050
3266 msgid "Create Document Error"
3267 msgstr "Құжатты жасау қатесі"
3268
3269-#: ../src/xfdesktop-file-utils.c:998
3270+#: ../src/xfdesktop-file-utils.c:1051
3271 msgid "Could not create a new document from the template"
3272 msgstr "Үлгіден жаңа құжатты жасау мүмкін емес"
3273
3274-#: ../src/xfdesktop-file-utils.c:1038
3275+#: ../src/xfdesktop-file-utils.c:1091
3276 msgid "File Properties Error"
3277 msgstr "Файл қасиеттер қатесі"
3278
3279-#: ../src/xfdesktop-file-utils.c:1039
3280+#: ../src/xfdesktop-file-utils.c:1092
3281 msgid "The file properties dialog could not be opened"
3282 msgstr "Файл қасиеттері сұхбатын ашу мүмкін емес"
3283
3284-#: ../src/xfdesktop-file-utils.c:1080
3285+#: ../src/xfdesktop-file-utils.c:1133
3286 msgid "The file could not be opened"
3287 msgstr "Файлды ашу мүмкін емес"
3288
3289-#: ../src/xfdesktop-file-utils.c:1153 ../src/xfdesktop-file-utils.c:1178
3290+#: ../src/xfdesktop-file-utils.c:1206 ../src/xfdesktop-file-utils.c:1231
3291 #, c-format
3292 msgid "Failed to run \"%s\""
3293 msgstr "\"%s\" жөнелту сәтсіз"
3294
3295-#: ../src/xfdesktop-file-utils.c:1234
3296+#: ../src/xfdesktop-file-utils.c:1287
3297 msgid "The application chooser could not be opened"
3298 msgstr "Қолданбаларды таңдаушысын ашу мүмкін емес"
3299
3300-#: ../src/xfdesktop-file-utils.c:1292 ../src/xfdesktop-file-utils.c:1306
3301-#: ../src/xfdesktop-file-utils.c:1368 ../src/xfdesktop-file-utils.c:1384
3302+#: ../src/xfdesktop-file-utils.c:1345 ../src/xfdesktop-file-utils.c:1359
3303+#: ../src/xfdesktop-file-utils.c:1421 ../src/xfdesktop-file-utils.c:1437
3304 msgid "Transfer Error"
3305 msgstr "Алмасу қатесі"
3306
3307-#: ../src/xfdesktop-file-utils.c:1293 ../src/xfdesktop-file-utils.c:1307
3308-#: ../src/xfdesktop-file-utils.c:1369 ../src/xfdesktop-file-utils.c:1385
3309+#: ../src/xfdesktop-file-utils.c:1346 ../src/xfdesktop-file-utils.c:1360
3310+#: ../src/xfdesktop-file-utils.c:1422 ../src/xfdesktop-file-utils.c:1438
3311 msgid "The file transfer could not be performed"
3312 msgstr "Файлдар алмасу үрдісін орындау мүмкін емес"
3313
3314@@ -924,7 +923,7 @@
3315 msgid "Eject Finished"
3316 msgstr "Шығару аяқталды"
3317
3318-#: ../src/xfdesktop-regular-file-icon.c:603
3319+#: ../src/xfdesktop-regular-file-icon.c:741
3320 #, c-format
3321 msgid ""
3322 "Type: %s\n"
3323@@ -994,15 +993,15 @@
3324 msgid "Mount Failed"
3325 msgstr "Тіркеу сәтсіз аяқталды"
3326
3327-#: ../src/xfdesktop-volume-icon.c:829
3328+#: ../src/xfdesktop-volume-icon.c:828
3329 msgid "E_ject Volume"
3330 msgstr "Бөлімді _шығару"
3331
3332-#: ../src/xfdesktop-volume-icon.c:836
3333+#: ../src/xfdesktop-volume-icon.c:835
3334 msgid "_Unmount Volume"
3335 msgstr "_Бөлімді тіркеуден босату"
3336
3337-#: ../src/xfdesktop-volume-icon.c:843
3338+#: ../src/xfdesktop-volume-icon.c:842
3339 msgid "_Mount Volume"
3340 msgstr "Бө_лімді тіркеу"
3341
3342
3343=== modified file 'po/nl.po'
3344--- po/nl.po 2014-02-20 15:59:49 +0000
3345+++ po/nl.po 2014-04-09 06:59:22 +0000
3346@@ -4,14 +4,14 @@
3347 #
3348 # Translators:
3349 # Jasper Huijsmans <jasper@xfce.org>, 2004
3350-# Pjotr123 <pjotrvertaalt@gmail.com>, 2013
3351+# Pjotr123 <pjotrvertaalt@gmail.com>, 2013-2014
3352 # Pjotr pjotrvertaalt@gmail.com , 2011,2013
3353 msgid ""
3354 msgstr ""
3355 "Project-Id-Version: Xfdesktop\n"
3356 "Report-Msgid-Bugs-To: \n"
3357-"POT-Creation-Date: 2013-12-15 00:31+0100\n"
3358-"PO-Revision-Date: 2013-12-16 10:12+0000\n"
3359+"POT-Creation-Date: 2014-04-03 18:32+0200\n"
3360+"PO-Revision-Date: 2014-04-04 13:00+0000\n"
3361 "Last-Translator: Pjotr123 <pjotrvertaalt@gmail.com>\n"
3362 "Language-Team: Dutch (http://www.transifex.com/projects/p/xfce/language/nl/)\n"
3363 "MIME-Version: 1.0\n"
3364@@ -20,37 +20,37 @@
3365 "Language: nl\n"
3366 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
3367
3368-#: ../settings/main.c:372 ../src/xfdesktop-special-file-icon.c:295
3369+#: ../settings/main.c:404 ../src/xfdesktop-special-file-icon.c:295
3370 #: ../src/xfdesktop-special-file-icon.c:479
3371 msgid "Home"
3372 msgstr "Persoonlijke map"
3373
3374-#: ../settings/main.c:374
3375+#: ../settings/main.c:406
3376 msgid "Filesystem"
3377 msgstr "Bestandssysteem"
3378
3379-#: ../settings/main.c:376
3380+#: ../settings/main.c:408
3381 msgid "Trash"
3382 msgstr "Prullenbak"
3383
3384-#: ../settings/main.c:378
3385+#: ../settings/main.c:410
3386 msgid "Removable Devices"
3387 msgstr "Verwijderbare apparaten"
3388
3389-#: ../settings/main.c:380
3390+#: ../settings/main.c:412
3391 msgid "Network Shares"
3392 msgstr "Netwerk-Delen"
3393
3394-#: ../settings/main.c:382
3395+#: ../settings/main.c:414
3396 msgid "Disks and Drives"
3397 msgstr "Schijven en stations"
3398
3399-#: ../settings/main.c:384
3400-msgid "Other Items"
3401-msgstr "Andere elementen"
3402+#: ../settings/main.c:416
3403+msgid "Other Devices"
3404+msgstr "Andere apparaten"
3405
3406 #. Display the file name, file type, and file size in the tooltip.
3407-#: ../settings/main.c:497
3408+#: ../settings/main.c:529
3409 #, c-format
3410 msgid ""
3411 "<b>%s</b>\n"
3412@@ -58,97 +58,95 @@
3413 "Size: %s"
3414 msgstr "<b>%s</b>\nType: %s\nGrootte: %s"
3415
3416-#: ../settings/main.c:681
3417+#: ../settings/main.c:715
3418 #, c-format
3419 msgid "Wallpaper for Monitor %d (%s)"
3420 msgstr "Bureaubladachtergrond voor beeldscherm %d (%s)"
3421
3422-#: ../settings/main.c:684
3423+#: ../settings/main.c:718
3424 #, c-format
3425 msgid "Wallpaper for Monitor %d"
3426 msgstr "Bureaubladachtergrond voor beeldscherm %d"
3427
3428-#: ../settings/main.c:690
3429-msgid ""
3430-"You are using more than one display, move this dialog to the display you "
3431-"want to edit the settings for."
3432-msgstr "U gebruikt meer dan één scherm; verplaats dit dialoogvenster naar het scherm waarvan u de instellingen wil bewerken."
3433+#: ../settings/main.c:724
3434+msgid "Move this dialog to the display you want to edit the settings for."
3435+msgstr "Verplaats dit dialoogvenster naar het scherm waarvan u de instellingen wil bewerken."
3436
3437-#: ../settings/main.c:698
3438+#: ../settings/main.c:731
3439 #, c-format
3440 msgid "Wallpaper for %s on Monitor %d (%s)"
3441 msgstr "Bureaubladachtergrond voor %s op beeldscherm %d (%s)"
3442
3443-#: ../settings/main.c:702
3444+#: ../settings/main.c:735
3445 #, c-format
3446 msgid "Wallpaper for %s on Monitor %d"
3447 msgstr "Bureaubladachtergrond voor %s op beeldscherm %d"
3448
3449-#: ../settings/main.c:709
3450+#: ../settings/main.c:742
3451 msgid ""
3452-"You are using more than one display, move this dialog to the display and "
3453-"workspace you want to edit the settings for."
3454-msgstr "U gebruikt meer dan één scherm; verplaats dit dialoogvenster naar het scherm en het werkblad waarvan u de instellingen wil bewerken."
3455+"Move this dialog to the display and workspace you want to edit the settings "
3456+"for."
3457+msgstr "Verplaats dit dialoogvenster naar het scherm en het werkblad waarvan u de instellingen wil bewerken."
3458
3459 #. Single monitor and single workspace
3460-#: ../settings/main.c:717
3461+#: ../settings/main.c:749
3462 #, c-format
3463 msgid "Wallpaper for my desktop"
3464 msgstr "Achtergrond voor mijn bureaublad"
3465
3466 #. Single monitor and per workspace wallpaper
3467-#: ../settings/main.c:723
3468+#: ../settings/main.c:755
3469 #, c-format
3470 msgid "Wallpaper for %s"
3471 msgstr "Bureaubladachtergrond voor %s"
3472
3473-#: ../settings/main.c:728
3474+#: ../settings/main.c:760
3475 msgid "Move this dialog to the workspace you want to edit the settings for."
3476 msgstr "Verplaats dit dialoogvenster naar het werkblad waarvan u de instellingen wil bewerken."
3477
3478-#: ../settings/main.c:1131
3479+#: ../settings/main.c:1174
3480 msgid "Image selection is unavailable while the image style is set to None."
3481 msgstr "Afbeeldingkeuze is niet beschikbaar wanneer de afbeeldingstijl op Geen is ingesteld."
3482
3483-#: ../settings/main.c:1483
3484+#: ../settings/main.c:1523
3485 msgid "Spanning screens"
3486 msgstr "Schermen overbruggen"
3487
3488-#: ../settings/main.c:1788
3489+#: ../settings/main.c:1825
3490 msgid "Image files"
3491 msgstr "Afbeeldingbestanden"
3492
3493-#: ../settings/main.c:1945
3494+#: ../settings/main.c:2001
3495 msgid "Settings manager socket"
3496 msgstr "Contactpunt voor instellingenbeheerder"
3497
3498-#: ../settings/main.c:1945
3499+#: ../settings/main.c:2001
3500 msgid "SOCKET ID"
3501 msgstr "SOCKET ID"
3502
3503-#: ../settings/main.c:1946
3504+#: ../settings/main.c:2002
3505 msgid "Version information"
3506 msgstr "Versie-informatie"
3507
3508-#: ../settings/main.c:1973
3509+#: ../settings/main.c:2030
3510 #, c-format
3511 msgid "Type '%s --help' for usage."
3512 msgstr "Tik '%s --help' voor gebruiksinformatie."
3513
3514-#: ../settings/main.c:1985
3515+#: ../settings/main.c:2042
3516 msgid "The Xfce development team. All rights reserved."
3517 msgstr "De Xfce-ontwikkelploeg. Alle rechten voorbehouden."
3518
3519-#: ../settings/main.c:1986
3520+#: ../settings/main.c:2043
3521 #, c-format
3522 msgid "Please report bugs to <%s>."
3523 msgstr "Gelieve fouten te melden aan <%s>"
3524
3525-#: ../settings/main.c:1993
3526+#: ../settings/main.c:2050
3527 msgid "Desktop Settings"
3528 msgstr "Bureaublad-instellingen"
3529
3530-#: ../settings/main.c:1995
3531+#: ../settings/main.c:2052
3532 msgid "Unable to contact settings server"
3533 msgstr "Kan geen contact maken met de instellingendienst"
3534
3535@@ -181,16 +179,16 @@
3536 msgstr "Map:"
3537
3538 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:6
3539-msgid "Choose the folder to select wallpapers from"
3540-msgstr "Kies de map waarin bureaubladachtergronden kunnen worden gekozen"
3541+msgid "Choose the folder to select wallpapers from."
3542+msgstr "Kies de map waaruit bureaubladachtergronden gekozen moeten worden."
3543
3544 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:7
3545 msgid "St_yle:"
3546 msgstr "St_ijl:"
3547
3548 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:8
3549-msgid "Specify how the image will be resized to fit the screen"
3550-msgstr "Specificeer hoe het formaat van de afbeelding zal worden aangepast om te passen op het scherm"
3551+msgid "Specify how the image will be resized to fit the screen."
3552+msgstr "Geef aan hoe het formaat van de afbeelding zal worden aangepast om te passen op het scherm."
3553
3554 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:9
3555 #: ../settings/xfdesktop-settings-ui.glade.h:4
3556@@ -226,20 +224,20 @@
3557 msgstr "Kleur:"
3558
3559 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:17
3560-msgid "Specify the style of the color drawn behind the backdrop image"
3561-msgstr "Specificeer de stijl van de kleur die getekend zal worden achter de achtergrondafbeelding"
3562+msgid "Specify the style of the color drawn behind the backdrop image."
3563+msgstr "Geef de stijl op van de kleur die getekend zal worden achter de achtergrondafbeelding."
3564
3565 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:18
3566-msgid "Specifies the solid color, or the \"left\" or \"top\" color of the gradient"
3567-msgstr "Specificeert de effen kleur, of de linker- of bovenste kleur van het kleurverloop"
3568+msgid "Specifies the solid color, or the \"left\" or \"top\" color of the gradient."
3569+msgstr "Geeft de effen kleur, of de 'linker'- of 'bovenste' kleur van het kleurverloop aan."
3570
3571 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:19
3572 msgid "Select First Color"
3573 msgstr "Kies eerste kleur:"
3574
3575 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:20
3576-msgid "Specifies the \"right\" or \"bottom\" color of the gradient"
3577-msgstr "Specificeert de rechter- of onderste kleur van het kleurverloop"
3578+msgid "Specifies the \"right\" or \"bottom\" color of the gradient."
3579+msgstr "Geeft de 'rechter'- of 'onderste' kleur van het kleurverloop aan."
3580
3581 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:21
3582 msgid "Select Second Color"
3583@@ -259,8 +257,8 @@
3584 msgstr "Kies automatisch een andere achtergrond vanuit de huidige map."
3585
3586 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:25
3587-msgid "Specify how often the background will change"
3588-msgstr "Geef aan hoe vaak de achtergrond zal veranderen"
3589+msgid "Specify how often the background will change."
3590+msgstr "Geef aan hoe vaak de achtergrond zal veranderen."
3591
3592 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:26
3593 msgid "in seconds:"
3594@@ -336,7 +334,7 @@
3595 msgid "File/launcher icons"
3596 msgstr "Bestand/starterpictogrammen"
3597
3598-#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1010
3599+#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1020
3600 msgid "Desktop"
3601 msgstr "Bureaublad"
3602
3603@@ -515,250 +513,251 @@
3604 msgid "_Remove Workspace '%s'"
3605 msgstr "Werkblad '%s' _verwijderen"
3606
3607-#: ../src/xfdesktop-application.c:772
3608+#: ../src/xfdesktop-app-menu-item.c:349
3609+#: ../src/xfdesktop-file-icon-manager.c:823
3610+#: ../src/xfdesktop-file-icon-manager.c:1084
3611+#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
3612+#: ../src/xfdesktop-file-utils.c:1132 ../src/xfdesktop-file-utils.c:1209
3613+#: ../src/xfdesktop-file-utils.c:1234 ../src/xfdesktop-file-utils.c:1286
3614+msgid "Launch Error"
3615+msgstr "Startfout"
3616+
3617+#: ../src/xfdesktop-app-menu-item.c:351
3618+#: ../src/xfdesktop-file-icon-manager.c:1086
3619+msgid ""
3620+"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
3621+"edit launchers and links on the desktop."
3622+msgstr "Kon 'exo-desktop-item-edit' niet uitvoeren, hetgeen vereist is voor het maken en bewerken van starters en snelkoppelingen op het bureaublad."
3623+
3624+#: ../src/xfdesktop-application.c:768
3625 msgid "Display version information"
3626 msgstr "Toon versie-informatie"
3627
3628-#: ../src/xfdesktop-application.c:773
3629+#: ../src/xfdesktop-application.c:769
3630 msgid "Reload all settings"
3631 msgstr "Herlaad alle instellingen"
3632
3633-#: ../src/xfdesktop-application.c:774
3634+#: ../src/xfdesktop-application.c:770
3635 msgid "Pop up the menu (at the current mouse position)"
3636 msgstr "Laat het menu opduiken (op de huidige muispositie)"
3637
3638-#: ../src/xfdesktop-application.c:775
3639+#: ../src/xfdesktop-application.c:771
3640 msgid "Pop up the window list (at the current mouse position)"
3641 msgstr "Laat de vensterlijst opduiken (op de huidige muispositie)"
3642
3643-#: ../src/xfdesktop-application.c:777
3644+#: ../src/xfdesktop-application.c:773
3645 msgid "Automatically arrange all the icons on the desktop"
3646 msgstr "Alle pictogrammen op het bureaublad automatisch rangschikken"
3647
3648-#: ../src/xfdesktop-application.c:779
3649+#: ../src/xfdesktop-application.c:775
3650 msgid "Do not wait for a window manager on startup"
3651 msgstr "Wacht niet op een vensterbeheerder bij opstart"
3652
3653-#: ../src/xfdesktop-application.c:780
3654+#: ../src/xfdesktop-application.c:776
3655 msgid "Cause xfdesktop to quit"
3656 msgstr "Maak dat xfdesktop volledig sluit"
3657
3658-#: ../src/xfdesktop-application.c:795
3659+#: ../src/xfdesktop-application.c:791
3660 #, c-format
3661 msgid "Failed to parse arguments: %s\n"
3662 msgstr "Kon argumenten niet lezen: %s\n"
3663
3664-#: ../src/xfdesktop-application.c:806
3665+#: ../src/xfdesktop-application.c:802
3666 #, c-format
3667 msgid "This is %s version %s, running on Xfce %s.\n"
3668 msgstr "Dit is %s versie %s, draaiend op Xfce %s.\n"
3669
3670-#: ../src/xfdesktop-application.c:808
3671+#: ../src/xfdesktop-application.c:804
3672 #, c-format
3673 msgid "Built with GTK+ %d.%d.%d, linked with GTK+ %d.%d.%d."
3674 msgstr "Gemaakt met GTK+ %d.%d.%d, gekoppeld aan GTK+ %d.%d.%d."
3675
3676-#: ../src/xfdesktop-application.c:812
3677+#: ../src/xfdesktop-application.c:808
3678 #, c-format
3679 msgid "Build options:\n"
3680 msgstr "Bouw-opties:\n"
3681
3682-#: ../src/xfdesktop-application.c:813
3683+#: ../src/xfdesktop-application.c:809
3684 #, c-format
3685 msgid " Desktop Menu: %s\n"
3686 msgstr "Bureaubladmenu: %s\n"
3687
3688-#: ../src/xfdesktop-application.c:815 ../src/xfdesktop-application.c:822
3689-#: ../src/xfdesktop-application.c:829
3690+#: ../src/xfdesktop-application.c:811 ../src/xfdesktop-application.c:818
3691+#: ../src/xfdesktop-application.c:825
3692 msgid "enabled"
3693 msgstr "ingeschakeld"
3694
3695-#: ../src/xfdesktop-application.c:817 ../src/xfdesktop-application.c:824
3696-#: ../src/xfdesktop-application.c:831
3697+#: ../src/xfdesktop-application.c:813 ../src/xfdesktop-application.c:820
3698+#: ../src/xfdesktop-application.c:827
3699 msgid "disabled"
3700 msgstr "uitgeschakeld"
3701
3702-#: ../src/xfdesktop-application.c:820
3703+#: ../src/xfdesktop-application.c:816
3704 #, c-format
3705 msgid " Desktop Icons: %s\n"
3706 msgstr "Bureaubladpictogrammen: %s\n"
3707
3708-#: ../src/xfdesktop-application.c:827
3709+#: ../src/xfdesktop-application.c:823
3710 #, c-format
3711 msgid " Desktop File Icons: %s\n"
3712 msgstr "Pictogrammen van bureaubladbestanden: %s\n"
3713
3714-#: ../src/xfdesktop-file-icon-manager.c:578
3715-#: ../src/xfdesktop-file-icon-manager.c:595
3716+#: ../src/xfdesktop-file-icon-manager.c:522
3717+#: ../src/xfdesktop-file-icon-manager.c:539
3718 #, c-format
3719 msgid "Could not create the desktop folder \"%s\""
3720 msgstr "Kon de bureaubladmap '%s' niet maken"
3721
3722-#: ../src/xfdesktop-file-icon-manager.c:583
3723-#: ../src/xfdesktop-file-icon-manager.c:600
3724+#: ../src/xfdesktop-file-icon-manager.c:527
3725+#: ../src/xfdesktop-file-icon-manager.c:544
3726 msgid "Desktop Folder Error"
3727 msgstr "Fout van bureaubladmap"
3728
3729-#: ../src/xfdesktop-file-icon-manager.c:602
3730+#: ../src/xfdesktop-file-icon-manager.c:546
3731 msgid ""
3732 "A normal file with the same name already exists. Please delete or rename it."
3733 msgstr "Een normaal bestand met dezelfde naam bestaat al. Gelieve dit te verwijderen of te hernoemen."
3734
3735-#: ../src/xfdesktop-file-icon-manager.c:685 ../src/xfdesktop-file-utils.c:716
3736-#: ../src/xfdesktop-file-utils.c:769
3737+#: ../src/xfdesktop-file-icon-manager.c:629 ../src/xfdesktop-file-utils.c:723
3738+#: ../src/xfdesktop-file-utils.c:776
3739 msgid "Rename Error"
3740 msgstr "Hernoemingsfout"
3741
3742-#: ../src/xfdesktop-file-icon-manager.c:686 ../src/xfdesktop-file-utils.c:770
3743+#: ../src/xfdesktop-file-icon-manager.c:630 ../src/xfdesktop-file-utils.c:777
3744 msgid "The files could not be renamed"
3745 msgstr "De bestanden konden niet worden hernoemd"
3746
3747-#: ../src/xfdesktop-file-icon-manager.c:687
3748+#: ../src/xfdesktop-file-icon-manager.c:631
3749 msgid "None of the icons selected support being renamed."
3750 msgstr "Geen der gekozen pictogrammen ondersteunen hernoeming."
3751
3752-#: ../src/xfdesktop-file-icon-manager.c:731
3753-#: ../src/xfdesktop-file-icon-manager.c:775 ../src/xfdesktop-file-utils.c:869
3754-#: ../src/xfdesktop-file-utils.c:906
3755+#: ../src/xfdesktop-file-icon-manager.c:675
3756+#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:921
3757+#: ../src/xfdesktop-file-utils.c:959
3758 msgid "Trash Error"
3759 msgstr "Prullenbakfout"
3760
3761-#: ../src/xfdesktop-file-icon-manager.c:732
3762-#: ../src/xfdesktop-file-icon-manager.c:776
3763+#: ../src/xfdesktop-file-icon-manager.c:676
3764+#: ../src/xfdesktop-file-icon-manager.c:720
3765 msgid "The selected files could not be trashed"
3766 msgstr "De gekozen bestanden konden niet naar de prullenbak worden verplaatst"
3767
3768-#: ../src/xfdesktop-file-icon-manager.c:733
3769-#: ../src/xfdesktop-file-icon-manager.c:777 ../src/xfdesktop-file-utils.c:718
3770-#: ../src/xfdesktop-file-utils.c:771 ../src/xfdesktop-file-utils.c:821
3771-#: ../src/xfdesktop-file-utils.c:952 ../src/xfdesktop-file-utils.c:999
3772-#: ../src/xfdesktop-file-utils.c:1040 ../src/xfdesktop-file-utils.c:1081
3773-#: ../src/xfdesktop-file-utils.c:1183 ../src/xfdesktop-file-utils.c:1235
3774-#: ../src/xfdesktop-file-utils.c:1308 ../src/xfdesktop-file-utils.c:1386
3775+#: ../src/xfdesktop-file-icon-manager.c:677
3776+#: ../src/xfdesktop-file-icon-manager.c:721 ../src/xfdesktop-file-utils.c:725
3777+#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:864
3778+#: ../src/xfdesktop-file-utils.c:1005 ../src/xfdesktop-file-utils.c:1052
3779+#: ../src/xfdesktop-file-utils.c:1093 ../src/xfdesktop-file-utils.c:1134
3780+#: ../src/xfdesktop-file-utils.c:1236 ../src/xfdesktop-file-utils.c:1288
3781+#: ../src/xfdesktop-file-utils.c:1361 ../src/xfdesktop-file-utils.c:1439
3782 msgid ""
3783 "This feature requires a file manager service to be present (such as the one "
3784 "supplied by Thunar)."
3785 msgstr "Voor deze functie moet er een bestandbeheerdienst actief zijn (zoals die van Thunar)."
3786
3787 #. printf is to be translator-friendly
3788-#: ../src/xfdesktop-file-icon-manager.c:877
3789-#: ../src/xfdesktop-file-icon-manager.c:1335
3790+#: ../src/xfdesktop-file-icon-manager.c:821
3791+#: ../src/xfdesktop-file-icon-manager.c:1279
3792 #, c-format
3793 msgid "Unable to launch \"%s\":"
3794 msgstr "Kan '%s' niet starten:"
3795
3796-#: ../src/xfdesktop-file-icon-manager.c:879
3797-#: ../src/xfdesktop-file-icon-manager.c:1140
3798-#: ../src/xfdesktop-file-icon-manager.c:1336 ../src/xfdesktop-file-utils.c:657
3799-#: ../src/xfdesktop-file-utils.c:1079 ../src/xfdesktop-file-utils.c:1156
3800-#: ../src/xfdesktop-file-utils.c:1181 ../src/xfdesktop-file-utils.c:1233
3801-msgid "Launch Error"
3802-msgstr "Startfout"
3803-
3804-#: ../src/xfdesktop-file-icon-manager.c:1064
3805+#: ../src/xfdesktop-file-icon-manager.c:1008
3806 #, c-format
3807 msgid "_Open With \"%s\""
3808 msgstr "_Openen met '%s'"
3809
3810-#: ../src/xfdesktop-file-icon-manager.c:1067
3811+#: ../src/xfdesktop-file-icon-manager.c:1011
3812 #, c-format
3813 msgid "Open With \"%s\""
3814 msgstr "Openen met '%s'"
3815
3816-#: ../src/xfdesktop-file-icon-manager.c:1142
3817-msgid ""
3818-"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
3819-"edit launchers and links on the desktop."
3820-msgstr "Kon 'exo-desktop-item-edit' niet uitvoeren, hetgeen vereist is voor het maken en bewerken van starters en snelkoppelingen op het bureaublad."
3821-
3822-#: ../src/xfdesktop-file-icon-manager.c:1393
3823+#: ../src/xfdesktop-file-icon-manager.c:1337
3824 msgid "_Open all"
3825 msgstr "Alles _openen"
3826
3827-#: ../src/xfdesktop-file-icon-manager.c:1409
3828+#: ../src/xfdesktop-file-icon-manager.c:1353
3829 msgid "_Open in New Window"
3830 msgstr "_Openen in nieuw venster"
3831
3832-#: ../src/xfdesktop-file-icon-manager.c:1411
3833-#: ../src/xfdesktop-special-file-icon.c:547 ../src/xfdesktop-volume-icon.c:810
3834-#: ../src/xfdesktop-volume-icon.c:814
3835+#: ../src/xfdesktop-file-icon-manager.c:1355
3836+#: ../src/xfdesktop-special-file-icon.c:547 ../src/xfdesktop-volume-icon.c:813
3837 msgid "_Open"
3838 msgstr "_Openen"
3839
3840 #. create launcher item
3841-#: ../src/xfdesktop-file-icon-manager.c:1430
3842+#: ../src/xfdesktop-file-icon-manager.c:1374
3843 msgid "Create _Launcher..."
3844 msgstr "_Starter maken..."
3845
3846 #. create link item
3847-#: ../src/xfdesktop-file-icon-manager.c:1446
3848+#: ../src/xfdesktop-file-icon-manager.c:1390
3849 msgid "Create _URL Link..."
3850 msgstr "_URL-koppeling maken..."
3851
3852 #. create folder item
3853-#: ../src/xfdesktop-file-icon-manager.c:1462
3854+#: ../src/xfdesktop-file-icon-manager.c:1406
3855 msgid "Create _Folder..."
3856 msgstr "_Map maken..."
3857
3858-#: ../src/xfdesktop-file-icon-manager.c:1477
3859+#: ../src/xfdesktop-file-icon-manager.c:1421
3860 msgid "Create From _Template"
3861 msgstr "Maak vanuit _sjabloon"
3862
3863-#: ../src/xfdesktop-file-icon-manager.c:1506
3864+#: ../src/xfdesktop-file-icon-manager.c:1450
3865 msgid "_Empty File"
3866 msgstr "_Leeg bestand"
3867
3868-#: ../src/xfdesktop-file-icon-manager.c:1523
3869+#: ../src/xfdesktop-file-icon-manager.c:1467
3870 msgid "_Execute"
3871 msgstr "_Uitvoeren"
3872
3873-#: ../src/xfdesktop-file-icon-manager.c:1543
3874+#: ../src/xfdesktop-file-icon-manager.c:1487
3875 msgid "_Edit Launcher"
3876 msgstr "Starter _bewerken"
3877
3878-#: ../src/xfdesktop-file-icon-manager.c:1578
3879+#: ../src/xfdesktop-file-icon-manager.c:1522
3880 msgid "Open With"
3881 msgstr "Openen met"
3882
3883-#: ../src/xfdesktop-file-icon-manager.c:1604
3884+#: ../src/xfdesktop-file-icon-manager.c:1548
3885 msgid "Open With Other _Application..."
3886 msgstr "Open met andere _toepassing..."
3887
3888 #. Rename
3889-#: ../src/xfdesktop-file-icon-manager.c:1704
3890+#: ../src/xfdesktop-file-icon-manager.c:1651
3891 msgid "_Rename..."
3892 msgstr "He_rnoemen..."
3893
3894-#: ../src/xfdesktop-file-icon-manager.c:1732
3895+#: ../src/xfdesktop-file-icon-manager.c:1679
3896 msgid "Arrange Desktop _Icons"
3897 msgstr "Bureaubladpictogrammen schikken"
3898
3899-#: ../src/xfdesktop-file-icon-manager.c:1743
3900+#: ../src/xfdesktop-file-icon-manager.c:1690
3901 msgid "Desktop _Settings..."
3902 msgstr "Bureaublad-in_stellingen..."
3903
3904-#: ../src/xfdesktop-file-icon-manager.c:1754
3905-#: ../src/xfdesktop-volume-icon.c:856
3906+#: ../src/xfdesktop-file-icon-manager.c:1701
3907+#: ../src/xfdesktop-volume-icon.c:855
3908 msgid "P_roperties..."
3909 msgstr "_Eigenschappen..."
3910
3911-#: ../src/xfdesktop-file-icon-manager.c:2744
3912+#: ../src/xfdesktop-file-icon-manager.c:2642
3913 msgid "Load Error"
3914 msgstr "Laadfout"
3915
3916-#: ../src/xfdesktop-file-icon-manager.c:2746
3917+#: ../src/xfdesktop-file-icon-manager.c:2644
3918 msgid "Failed to load the desktop folder"
3919 msgstr "Kon de bureaubladmap niet laden"
3920
3921-#: ../src/xfdesktop-file-icon-manager.c:3286
3922+#: ../src/xfdesktop-file-icon-manager.c:3189
3923 msgid "Copy _Here"
3924 msgstr "Hierheen kopiëren"
3925
3926-#: ../src/xfdesktop-file-icon-manager.c:3286
3927+#: ../src/xfdesktop-file-icon-manager.c:3189
3928 msgid "_Move Here"
3929 msgstr "Hierheen verplaatsen"
3930
3931-#: ../src/xfdesktop-file-icon-manager.c:3286
3932+#: ../src/xfdesktop-file-icon-manager.c:3189
3933 msgid "_Link Here"
3934 msgstr "Hier koppelen"
3935
3936@@ -791,88 +790,88 @@
3937 msgid "Unknown"
3938 msgstr "Onbekend"
3939
3940-#: ../src/xfdesktop-file-utils.c:658
3941+#: ../src/xfdesktop-file-utils.c:665
3942 msgid "The folder could not be opened"
3943 msgstr "De map kon niet worden geopend"
3944
3945-#: ../src/xfdesktop-file-utils.c:675
3946+#: ../src/xfdesktop-file-utils.c:682
3947 msgid "Error"
3948 msgstr "Fout"
3949
3950-#: ../src/xfdesktop-file-utils.c:676
3951+#: ../src/xfdesktop-file-utils.c:683
3952 msgid "The requested operation could not be completed"
3953 msgstr "De aangevraagde bewerking kon niet worden voltooid"
3954
3955-#: ../src/xfdesktop-file-utils.c:717
3956+#: ../src/xfdesktop-file-utils.c:724
3957 msgid "The file could not be renamed"
3958 msgstr "Het bestand kon niet worden hernoemd"
3959
3960-#: ../src/xfdesktop-file-utils.c:819
3961+#: ../src/xfdesktop-file-utils.c:862
3962 msgid "Delete Error"
3963-msgstr "Verwijderfout"
3964+msgstr "Fout bij verwijderen"
3965
3966-#: ../src/xfdesktop-file-utils.c:820
3967+#: ../src/xfdesktop-file-utils.c:863
3968 msgid "The selected files could not be deleted"
3969-msgstr "De geselecteerde bestanden konden niet worden gewist"
3970+msgstr "De geselecteerde bestanden konden niet worden verwijderd"
3971
3972-#: ../src/xfdesktop-file-utils.c:870
3973+#: ../src/xfdesktop-file-utils.c:922
3974 msgid "The selected files could not be moved to the trash"
3975 msgstr "De geselecteerde bestanden konden niet worden verplaatst naar de prullenbak"
3976
3977-#: ../src/xfdesktop-file-utils.c:871 ../src/xfdesktop-file-utils.c:908
3978+#: ../src/xfdesktop-file-utils.c:923 ../src/xfdesktop-file-utils.c:961
3979 msgid ""
3980 "This feature requires a trash service to be present (such as the one "
3981 "supplied by Thunar)."
3982 msgstr "Voor deze mogelijkheid moet er een prullenbakdienst actief zijn (zoals die van Thunar)."
3983
3984-#: ../src/xfdesktop-file-utils.c:907
3985+#: ../src/xfdesktop-file-utils.c:960
3986 msgid "Could not empty the trash"
3987 msgstr "Kon de prullenbak niet ledigen"
3988
3989-#: ../src/xfdesktop-file-utils.c:950
3990+#: ../src/xfdesktop-file-utils.c:1003
3991 msgid "Create File Error"
3992 msgstr "Maakfout (bestand)"
3993
3994-#: ../src/xfdesktop-file-utils.c:951
3995+#: ../src/xfdesktop-file-utils.c:1004
3996 msgid "Could not create a new file"
3997 msgstr "Kon geen nieuw bestand maken"
3998
3999-#: ../src/xfdesktop-file-utils.c:997
4000+#: ../src/xfdesktop-file-utils.c:1050
4001 msgid "Create Document Error"
4002 msgstr "Maakfout (document)"
4003
4004-#: ../src/xfdesktop-file-utils.c:998
4005+#: ../src/xfdesktop-file-utils.c:1051
4006 msgid "Could not create a new document from the template"
4007 msgstr "Kon geen nieuw document maken vanuit het sjabloon"
4008
4009-#: ../src/xfdesktop-file-utils.c:1038
4010+#: ../src/xfdesktop-file-utils.c:1091
4011 msgid "File Properties Error"
4012 msgstr "Fout in bestandeigenschappen"
4013
4014-#: ../src/xfdesktop-file-utils.c:1039
4015+#: ../src/xfdesktop-file-utils.c:1092
4016 msgid "The file properties dialog could not be opened"
4017 msgstr "De dialoog voor de bestandeigenschappen kon niet worden geopend"
4018
4019-#: ../src/xfdesktop-file-utils.c:1080
4020+#: ../src/xfdesktop-file-utils.c:1133
4021 msgid "The file could not be opened"
4022 msgstr "Het bestand kon niet worden geopend"
4023
4024-#: ../src/xfdesktop-file-utils.c:1153 ../src/xfdesktop-file-utils.c:1178
4025+#: ../src/xfdesktop-file-utils.c:1206 ../src/xfdesktop-file-utils.c:1231
4026 #, c-format
4027 msgid "Failed to run \"%s\""
4028 msgstr "Kon '%s' niet uitvoeren"
4029
4030-#: ../src/xfdesktop-file-utils.c:1234
4031+#: ../src/xfdesktop-file-utils.c:1287
4032 msgid "The application chooser could not be opened"
4033 msgstr "De toepassingskiezer kon niet worden geopend"
4034
4035-#: ../src/xfdesktop-file-utils.c:1292 ../src/xfdesktop-file-utils.c:1306
4036-#: ../src/xfdesktop-file-utils.c:1368 ../src/xfdesktop-file-utils.c:1384
4037+#: ../src/xfdesktop-file-utils.c:1345 ../src/xfdesktop-file-utils.c:1359
4038+#: ../src/xfdesktop-file-utils.c:1421 ../src/xfdesktop-file-utils.c:1437
4039 msgid "Transfer Error"
4040 msgstr "Overbrengingsfout"
4041
4042-#: ../src/xfdesktop-file-utils.c:1293 ../src/xfdesktop-file-utils.c:1307
4043-#: ../src/xfdesktop-file-utils.c:1369 ../src/xfdesktop-file-utils.c:1385
4044+#: ../src/xfdesktop-file-utils.c:1346 ../src/xfdesktop-file-utils.c:1360
4045+#: ../src/xfdesktop-file-utils.c:1422 ../src/xfdesktop-file-utils.c:1438
4046 msgid "The file transfer could not be performed"
4047 msgstr "Het overbrengen van het bestand kon niet worden uitgevoerd"
4048
4049@@ -926,7 +925,7 @@
4050 msgid "Eject Finished"
4051 msgstr "Uitwerpen voltooid"
4052
4053-#: ../src/xfdesktop-regular-file-icon.c:603
4054+#: ../src/xfdesktop-regular-file-icon.c:741
4055 #, c-format
4056 msgid ""
4057 "Type: %s\n"
4058@@ -996,15 +995,15 @@
4059 msgid "Mount Failed"
4060 msgstr "Aankoppelen is mislukt"
4061
4062-#: ../src/xfdesktop-volume-icon.c:829
4063+#: ../src/xfdesktop-volume-icon.c:828
4064 msgid "E_ject Volume"
4065 msgstr "_Werp opslagmedium uit"
4066
4067-#: ../src/xfdesktop-volume-icon.c:836
4068+#: ../src/xfdesktop-volume-icon.c:835
4069 msgid "_Unmount Volume"
4070 msgstr "Opslagmedium _ontkoppelen"
4071
4072-#: ../src/xfdesktop-volume-icon.c:843
4073+#: ../src/xfdesktop-volume-icon.c:842
4074 msgid "_Mount Volume"
4075 msgstr "Opslagmedium aan_koppelen"
4076
4077
4078=== modified file 'po/pl.po'
4079--- po/pl.po 2014-04-07 15:39:01 +0000
4080+++ po/pl.po 2014-04-09 06:59:22 +0000
4081@@ -17,8 +17,8 @@
4082 msgstr ""
4083 "Project-Id-Version: Xfdesktop\n"
4084 "Report-Msgid-Bugs-To: \n"
4085-"POT-Creation-Date: 2014-02-24 12:32+0100\n"
4086-"PO-Revision-Date: 2014-03-27 11:20+0000\n"
4087+"POT-Creation-Date: 2014-04-03 18:32+0200\n"
4088+"PO-Revision-Date: 2014-04-05 08:59+0000\n"
4089 "Last-Translator: Piotr Sokół <psokol@jabster.pl>\n"
4090 "Language-Team: Polish (http://www.transifex.com/projects/p/xfce/language/pl/)\n"
4091 "MIME-Version: 1.0\n"
4092@@ -27,37 +27,37 @@
4093 "Language: pl\n"
4094 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
4095
4096-#: ../settings/main.c:375 ../src/xfdesktop-special-file-icon.c:295
4097+#: ../settings/main.c:404 ../src/xfdesktop-special-file-icon.c:295
4098 #: ../src/xfdesktop-special-file-icon.c:479
4099 msgid "Home"
4100 msgstr "Katalog użytkownika"
4101
4102-#: ../settings/main.c:377
4103+#: ../settings/main.c:406
4104 msgid "Filesystem"
4105 msgstr "System plików"
4106
4107-#: ../settings/main.c:379
4108+#: ../settings/main.c:408
4109 msgid "Trash"
4110 msgstr "Kosz"
4111
4112-#: ../settings/main.c:381
4113+#: ../settings/main.c:410
4114 msgid "Removable Devices"
4115 msgstr "Nośniki wymienne"
4116
4117-#: ../settings/main.c:383
4118+#: ../settings/main.c:412
4119 msgid "Network Shares"
4120 msgstr "Współdzielone w sieci"
4121
4122-#: ../settings/main.c:385
4123+#: ../settings/main.c:414
4124 msgid "Disks and Drives"
4125 msgstr "Dyski i napędy"
4126
4127-#: ../settings/main.c:387
4128+#: ../settings/main.c:416
4129 msgid "Other Devices"
4130 msgstr "Inne urządzenia"
4131
4132 #. Display the file name, file type, and file size in the tooltip.
4133-#: ../settings/main.c:500
4134+#: ../settings/main.c:529
4135 #, c-format
4136 msgid ""
4137 "<b>%s</b>\n"
4138@@ -65,95 +65,95 @@
4139 "Size: %s"
4140 msgstr "<b>%s</b>\nTyp: %s\nRozmiar: %s"
4141
4142-#: ../settings/main.c:686
4143+#: ../settings/main.c:715
4144 #, c-format
4145 msgid "Wallpaper for Monitor %d (%s)"
4146 msgstr "Tło pulpitu na ekranie %d (%s)"
4147
4148-#: ../settings/main.c:689
4149+#: ../settings/main.c:718
4150 #, c-format
4151 msgid "Wallpaper for Monitor %d"
4152 msgstr "Tło pulpitu na ekranie %d"
4153
4154-#: ../settings/main.c:695
4155+#: ../settings/main.c:724
4156 msgid "Move this dialog to the display you want to edit the settings for."
4157 msgstr "Proszę przemieścić to okno na ekran, którego ustawienia mają zostać zmodyfikowane."
4158
4159-#: ../settings/main.c:702
4160+#: ../settings/main.c:731
4161 #, c-format
4162 msgid "Wallpaper for %s on Monitor %d (%s)"
4163 msgstr "Tło pulpitu dla %s na ekranie %d (%s)"
4164
4165-#: ../settings/main.c:706
4166+#: ../settings/main.c:735
4167 #, c-format
4168 msgid "Wallpaper for %s on Monitor %d"
4169 msgstr "Tło pulpitu dla %s na ekranie %d"
4170
4171-#: ../settings/main.c:713
4172+#: ../settings/main.c:742
4173 msgid ""
4174 "Move this dialog to the display and workspace you want to edit the settings "
4175 "for."
4176 msgstr "Proszę przemieścić to okno na ekran i obszar roboczy, których ustawienia mają zostać zmodyfikowane."
4177
4178 #. Single monitor and single workspace
4179-#: ../settings/main.c:720
4180+#: ../settings/main.c:749
4181 #, c-format
4182 msgid "Wallpaper for my desktop"
4183 msgstr "Tło pulpitu"
4184
4185 #. Single monitor and per workspace wallpaper
4186-#: ../settings/main.c:726
4187+#: ../settings/main.c:755
4188 #, c-format
4189 msgid "Wallpaper for %s"
4190 msgstr "Tło pulpitu dla %s"
4191
4192-#: ../settings/main.c:731
4193+#: ../settings/main.c:760
4194 msgid "Move this dialog to the workspace you want to edit the settings for."
4195 msgstr "Proszę umieścić to okno dialogowe na obszarze roboczym, który ma zostać skonfigurowany."
4196
4197-#: ../settings/main.c:1134
4198+#: ../settings/main.c:1174
4199 msgid "Image selection is unavailable while the image style is set to None."
4200 msgstr "Wybór obrazów jest niedostępny dopóki styl obrazów jest ustawiony na Brak."
4201
4202-#: ../settings/main.c:1481
4203+#: ../settings/main.c:1523
4204 msgid "Spanning screens"
4205 msgstr "Zakres monitorów"
4206
4207-#: ../settings/main.c:1786
4208+#: ../settings/main.c:1825
4209 msgid "Image files"
4210 msgstr "Pliki obrazów"
4211
4212-#: ../settings/main.c:1958
4213+#: ../settings/main.c:2001
4214 msgid "Settings manager socket"
4215 msgstr "Określa gniazdo menedżera ustawień"
4216
4217-#: ../settings/main.c:1958
4218+#: ../settings/main.c:2001
4219 msgid "SOCKET ID"
4220 msgstr "ID_GNIAZDA"
4221
4222-#: ../settings/main.c:1959
4223+#: ../settings/main.c:2002
4224 msgid "Version information"
4225 msgstr "Informacje o wersji"
4226
4227-#: ../settings/main.c:1986
4228+#: ../settings/main.c:2030
4229 #, c-format
4230 msgid "Type '%s --help' for usage."
4231 msgstr "Proszę wprowadzić „%s --help”, aby wypisać komunikat pomocy."
4232
4233-#: ../settings/main.c:1998
4234+#: ../settings/main.c:2042
4235 msgid "The Xfce development team. All rights reserved."
4236 msgstr "Zespół twórców środowiska graficznego Xfce. Wszystkie prawa zastrzeżone."
4237
4238-#: ../settings/main.c:1999
4239+#: ../settings/main.c:2043
4240 #, c-format
4241 msgid "Please report bugs to <%s>."
4242 msgstr "Proszę zgłaszać błędy na adres <%s>."
4243
4244-#: ../settings/main.c:2006
4245+#: ../settings/main.c:2050
4246 msgid "Desktop Settings"
4247 msgstr "Pulpit"
4248
4249-#: ../settings/main.c:2008
4250+#: ../settings/main.c:2052
4251 msgid "Unable to contact settings server"
4252 msgstr "Nie można połączyć z serwerem ustawień"
4253
4254@@ -341,7 +341,7 @@
4255 msgid "File/launcher icons"
4256 msgstr "Pliki i aktywatory"
4257
4258-#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1015
4259+#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1020
4260 msgid "Desktop"
4261 msgstr "Pulpit"
4262
4263@@ -520,6 +520,22 @@
4264 msgid "_Remove Workspace '%s'"
4265 msgstr "_Usuń obszar roboczy „%s”"
4266
4267+#: ../src/xfdesktop-app-menu-item.c:349
4268+#: ../src/xfdesktop-file-icon-manager.c:823
4269+#: ../src/xfdesktop-file-icon-manager.c:1084
4270+#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
4271+#: ../src/xfdesktop-file-utils.c:1132 ../src/xfdesktop-file-utils.c:1209
4272+#: ../src/xfdesktop-file-utils.c:1234 ../src/xfdesktop-file-utils.c:1286
4273+msgid "Launch Error"
4274+msgstr "Błąd uruchamiania"
4275+
4276+#: ../src/xfdesktop-app-menu-item.c:351
4277+#: ../src/xfdesktop-file-icon-manager.c:1086
4278+msgid ""
4279+"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
4280+"edit launchers and links on the desktop."
4281+msgstr "Nie można uruchomić programu „exo-desktop-item-edit”, wymaganego do tworzenia oraz modyfikowania aktywatorów i odnośników na pulpicie."
4282+
4283 #: ../src/xfdesktop-application.c:768
4284 msgid "Display version information"
4285 msgstr "Wypisuje informacje o wersji"
4286@@ -623,8 +639,8 @@
4287 msgstr "Nie zmieniono nazwy żadnej z zaznaczonych ikon."
4288
4289 #: ../src/xfdesktop-file-icon-manager.c:675
4290-#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:876
4291-#: ../src/xfdesktop-file-utils.c:913
4292+#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:921
4293+#: ../src/xfdesktop-file-utils.c:959
4294 msgid "Trash Error"
4295 msgstr "Błąd kosza"
4296
4297@@ -635,11 +651,11 @@
4298
4299 #: ../src/xfdesktop-file-icon-manager.c:677
4300 #: ../src/xfdesktop-file-icon-manager.c:721 ../src/xfdesktop-file-utils.c:725
4301-#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:828
4302-#: ../src/xfdesktop-file-utils.c:959 ../src/xfdesktop-file-utils.c:1006
4303-#: ../src/xfdesktop-file-utils.c:1047 ../src/xfdesktop-file-utils.c:1088
4304-#: ../src/xfdesktop-file-utils.c:1190 ../src/xfdesktop-file-utils.c:1242
4305-#: ../src/xfdesktop-file-utils.c:1315 ../src/xfdesktop-file-utils.c:1393
4306+#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:864
4307+#: ../src/xfdesktop-file-utils.c:1005 ../src/xfdesktop-file-utils.c:1052
4308+#: ../src/xfdesktop-file-utils.c:1093 ../src/xfdesktop-file-utils.c:1134
4309+#: ../src/xfdesktop-file-utils.c:1236 ../src/xfdesktop-file-utils.c:1288
4310+#: ../src/xfdesktop-file-utils.c:1361 ../src/xfdesktop-file-utils.c:1439
4311 msgid ""
4312 "This feature requires a file manager service to be present (such as the one "
4313 "supplied by Thunar)."
4314@@ -652,14 +668,6 @@
4315 msgid "Unable to launch \"%s\":"
4316 msgstr "Nie można uruchomić „%s”:"
4317
4318-#: ../src/xfdesktop-file-icon-manager.c:823
4319-#: ../src/xfdesktop-file-icon-manager.c:1084
4320-#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
4321-#: ../src/xfdesktop-file-utils.c:1086 ../src/xfdesktop-file-utils.c:1163
4322-#: ../src/xfdesktop-file-utils.c:1188 ../src/xfdesktop-file-utils.c:1240
4323-msgid "Launch Error"
4324-msgstr "Błąd uruchamiania"
4325-
4326 #: ../src/xfdesktop-file-icon-manager.c:1008
4327 #, c-format
4328 msgid "_Open With \"%s\""
4329@@ -670,12 +678,6 @@
4330 msgid "Open With \"%s\""
4331 msgstr "Otwórz za pomocą „%s”"
4332
4333-#: ../src/xfdesktop-file-icon-manager.c:1086
4334-msgid ""
4335-"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
4336-"edit launchers and links on the desktop."
4337-msgstr "Nie można uruchomić programu „exo-desktop-item-edit”, wymaganego do tworzenia oraz modyfikowania aktywatorów i odnośników na pulpicie."
4338-
4339 #: ../src/xfdesktop-file-icon-manager.c:1337
4340 msgid "_Open all"
4341 msgstr "Otwórz _wszystkie"
4342@@ -746,23 +748,23 @@
4343 msgid "P_roperties..."
4344 msgstr "_Właściwości..."
4345
4346-#: ../src/xfdesktop-file-icon-manager.c:2716
4347+#: ../src/xfdesktop-file-icon-manager.c:2642
4348 msgid "Load Error"
4349 msgstr "Błąd wczytywania"
4350
4351-#: ../src/xfdesktop-file-icon-manager.c:2718
4352+#: ../src/xfdesktop-file-icon-manager.c:2644
4353 msgid "Failed to load the desktop folder"
4354 msgstr "Nie udało się wczytać katalogu pulpitu"
4355
4356-#: ../src/xfdesktop-file-icon-manager.c:3262
4357+#: ../src/xfdesktop-file-icon-manager.c:3189
4358 msgid "Copy _Here"
4359 msgstr "_Skopiuj tutaj"
4360
4361-#: ../src/xfdesktop-file-icon-manager.c:3262
4362+#: ../src/xfdesktop-file-icon-manager.c:3189
4363 msgid "_Move Here"
4364 msgstr "_Przenieś tutaj"
4365
4366-#: ../src/xfdesktop-file-icon-manager.c:3262
4367+#: ../src/xfdesktop-file-icon-manager.c:3189
4368 msgid "_Link Here"
4369 msgstr "_Dowiąż tutaj"
4370
4371@@ -811,72 +813,72 @@
4372 msgid "The file could not be renamed"
4373 msgstr "Nie można zmienić nazwy pliku"
4374
4375-#: ../src/xfdesktop-file-utils.c:826
4376+#: ../src/xfdesktop-file-utils.c:862
4377 msgid "Delete Error"
4378 msgstr "Błąd usuwania"
4379
4380-#: ../src/xfdesktop-file-utils.c:827
4381+#: ../src/xfdesktop-file-utils.c:863
4382 msgid "The selected files could not be deleted"
4383-msgstr "Nie można usunąć zaznaczonych plików"
4384+msgstr "Nie udało się usunąć zaznaczonych plików"
4385
4386-#: ../src/xfdesktop-file-utils.c:877
4387+#: ../src/xfdesktop-file-utils.c:922
4388 msgid "The selected files could not be moved to the trash"
4389-msgstr "Nie można przenieść do kosza zaznaczonych plików."
4390+msgstr "Nie udało się przenieść do kosza zaznaczonych plików"
4391
4392-#: ../src/xfdesktop-file-utils.c:878 ../src/xfdesktop-file-utils.c:915
4393+#: ../src/xfdesktop-file-utils.c:923 ../src/xfdesktop-file-utils.c:961
4394 msgid ""
4395 "This feature requires a trash service to be present (such as the one "
4396 "supplied by Thunar)."
4397 msgstr "Ta funkcja wymaga obecności usługi kosza (takiej jaką dostarcza program Thunar)."
4398
4399-#: ../src/xfdesktop-file-utils.c:914
4400+#: ../src/xfdesktop-file-utils.c:960
4401 msgid "Could not empty the trash"
4402 msgstr "Nie można opróżnić kosza"
4403
4404-#: ../src/xfdesktop-file-utils.c:957
4405+#: ../src/xfdesktop-file-utils.c:1003
4406 msgid "Create File Error"
4407 msgstr "Błąd tworzenia pliku"
4408
4409-#: ../src/xfdesktop-file-utils.c:958
4410+#: ../src/xfdesktop-file-utils.c:1004
4411 msgid "Could not create a new file"
4412 msgstr "Nie można utworzyć nowego pliku"
4413
4414-#: ../src/xfdesktop-file-utils.c:1004
4415+#: ../src/xfdesktop-file-utils.c:1050
4416 msgid "Create Document Error"
4417 msgstr "Błąd tworzenia dokumentu"
4418
4419-#: ../src/xfdesktop-file-utils.c:1005
4420+#: ../src/xfdesktop-file-utils.c:1051
4421 msgid "Could not create a new document from the template"
4422 msgstr "Nie można utworzyć nowego dokumentu z szablonu"
4423
4424-#: ../src/xfdesktop-file-utils.c:1045
4425+#: ../src/xfdesktop-file-utils.c:1091
4426 msgid "File Properties Error"
4427 msgstr "Błąd właściwości pliku"
4428
4429-#: ../src/xfdesktop-file-utils.c:1046
4430+#: ../src/xfdesktop-file-utils.c:1092
4431 msgid "The file properties dialog could not be opened"
4432 msgstr "Nie można otworzyć okna właściwości pliku"
4433
4434-#: ../src/xfdesktop-file-utils.c:1087
4435+#: ../src/xfdesktop-file-utils.c:1133
4436 msgid "The file could not be opened"
4437 msgstr "Nie można otworzyć pliku"
4438
4439-#: ../src/xfdesktop-file-utils.c:1160 ../src/xfdesktop-file-utils.c:1185
4440+#: ../src/xfdesktop-file-utils.c:1206 ../src/xfdesktop-file-utils.c:1231
4441 #, c-format
4442 msgid "Failed to run \"%s\""
4443 msgstr "Nie udało się uruchomić „%s”"
4444
4445-#: ../src/xfdesktop-file-utils.c:1241
4446+#: ../src/xfdesktop-file-utils.c:1287
4447 msgid "The application chooser could not be opened"
4448 msgstr "Nie można otworzyć okna wyboru programu"
4449
4450-#: ../src/xfdesktop-file-utils.c:1299 ../src/xfdesktop-file-utils.c:1313
4451-#: ../src/xfdesktop-file-utils.c:1375 ../src/xfdesktop-file-utils.c:1391
4452+#: ../src/xfdesktop-file-utils.c:1345 ../src/xfdesktop-file-utils.c:1359
4453+#: ../src/xfdesktop-file-utils.c:1421 ../src/xfdesktop-file-utils.c:1437
4454 msgid "Transfer Error"
4455 msgstr "Błąd przesyłania"
4456
4457-#: ../src/xfdesktop-file-utils.c:1300 ../src/xfdesktop-file-utils.c:1314
4458-#: ../src/xfdesktop-file-utils.c:1376 ../src/xfdesktop-file-utils.c:1392
4459+#: ../src/xfdesktop-file-utils.c:1346 ../src/xfdesktop-file-utils.c:1360
4460+#: ../src/xfdesktop-file-utils.c:1422 ../src/xfdesktop-file-utils.c:1438
4461 msgid "The file transfer could not be performed"
4462 msgstr "Nie można przesłać pliku"
4463
4464@@ -930,7 +932,7 @@
4465 msgid "Eject Finished"
4466 msgstr "Zakończono wysuwanie"
4467
4468-#: ../src/xfdesktop-regular-file-icon.c:603
4469+#: ../src/xfdesktop-regular-file-icon.c:741
4470 #, c-format
4471 msgid ""
4472 "Type: %s\n"
4473
4474=== modified file 'po/sr.po'
4475--- po/sr.po 2014-03-18 22:01:11 +0000
4476+++ po/sr.po 2014-04-09 06:59:22 +0000
4477@@ -9,8 +9,8 @@
4478 msgstr ""
4479 "Project-Id-Version: Xfdesktop\n"
4480 "Report-Msgid-Bugs-To: \n"
4481-"POT-Creation-Date: 2014-02-24 12:32+0100\n"
4482-"PO-Revision-Date: 2014-02-26 10:54+0000\n"
4483+"POT-Creation-Date: 2014-04-03 18:32+0200\n"
4484+"PO-Revision-Date: 2014-04-05 10:41+0000\n"
4485 "Last-Translator: salepetronije <salepetronije@gmail.com>\n"
4486 "Language-Team: Serbian (http://www.transifex.com/projects/p/xfce/language/sr/)\n"
4487 "MIME-Version: 1.0\n"
4488@@ -19,37 +19,37 @@
4489 "Language: sr\n"
4490 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
4491
4492-#: ../settings/main.c:375 ../src/xfdesktop-special-file-icon.c:295
4493+#: ../settings/main.c:404 ../src/xfdesktop-special-file-icon.c:295
4494 #: ../src/xfdesktop-special-file-icon.c:479
4495 msgid "Home"
4496 msgstr "Лична фасцикла"
4497
4498-#: ../settings/main.c:377
4499+#: ../settings/main.c:406
4500 msgid "Filesystem"
4501 msgstr "Систем датотека"
4502
4503-#: ../settings/main.c:379
4504+#: ../settings/main.c:408
4505 msgid "Trash"
4506-msgstr "Корпа"
4507+msgstr "Смеће"
4508
4509-#: ../settings/main.c:381
4510+#: ../settings/main.c:410
4511 msgid "Removable Devices"
4512 msgstr "Уклоњиви уређаји"
4513
4514-#: ../settings/main.c:383
4515+#: ../settings/main.c:412
4516 msgid "Network Shares"
4517 msgstr "Мрежна дељења"
4518
4519-#: ../settings/main.c:385
4520+#: ../settings/main.c:414
4521 msgid "Disks and Drives"
4522 msgstr "Преносиви уређаји и спољни дискови"
4523
4524-#: ../settings/main.c:387
4525+#: ../settings/main.c:416
4526 msgid "Other Devices"
4527 msgstr "Остали уређаји"
4528
4529 #. Display the file name, file type, and file size in the tooltip.
4530-#: ../settings/main.c:500
4531+#: ../settings/main.c:529
4532 #, c-format
4533 msgid ""
4534 "<b>%s</b>\n"
4535@@ -57,95 +57,95 @@
4536 "Size: %s"
4537 msgstr "<b>%s</b>\nВрста: %s\nВеличина: %s"
4538
4539-#: ../settings/main.c:686
4540+#: ../settings/main.c:715
4541 #, c-format
4542 msgid "Wallpaper for Monitor %d (%s)"
4543 msgstr "Позадинска слика за екран %d (%s)"
4544
4545-#: ../settings/main.c:689
4546+#: ../settings/main.c:718
4547 #, c-format
4548 msgid "Wallpaper for Monitor %d"
4549 msgstr "Позадинска слика за екран %d"
4550
4551-#: ../settings/main.c:695
4552+#: ../settings/main.c:724
4553 msgid "Move this dialog to the display you want to edit the settings for."
4554-msgstr "Ово прозорче преместите на екран којем желите да уређујете поставке."
4555+msgstr "Преместите ово прозорче на радни простор којем желите да уредите поставке."
4556
4557-#: ../settings/main.c:702
4558+#: ../settings/main.c:731
4559 #, c-format
4560 msgid "Wallpaper for %s on Monitor %d (%s)"
4561 msgstr "Позадинска слика %s за екран %d (%s)"
4562
4563-#: ../settings/main.c:706
4564+#: ../settings/main.c:735
4565 #, c-format
4566 msgid "Wallpaper for %s on Monitor %d"
4567 msgstr "Позадинска слика за %s на екрану %d"
4568
4569-#: ../settings/main.c:713
4570+#: ../settings/main.c:742
4571 msgid ""
4572 "Move this dialog to the display and workspace you want to edit the settings "
4573 "for."
4574-msgstr "Преместите ово прозорче на екран и радни простор којем желите да уређујете поставке."
4575+msgstr "Преместите ово прозорче на екран и радни простор којем желите да уредите поставке."
4576
4577 #. Single monitor and single workspace
4578-#: ../settings/main.c:720
4579+#: ../settings/main.c:749
4580 #, c-format
4581 msgid "Wallpaper for my desktop"
4582 msgstr "Позадинска слика за моју радну површ"
4583
4584 #. Single monitor and per workspace wallpaper
4585-#: ../settings/main.c:726
4586+#: ../settings/main.c:755
4587 #, c-format
4588 msgid "Wallpaper for %s"
4589 msgstr "Позадинска слика за %s"
4590
4591-#: ../settings/main.c:731
4592+#: ../settings/main.c:760
4593 msgid "Move this dialog to the workspace you want to edit the settings for."
4594 msgstr "Преместите ово прозорче на радни простор којем желите да уредите поставке."
4595
4596-#: ../settings/main.c:1134
4597+#: ../settings/main.c:1174
4598 msgid "Image selection is unavailable while the image style is set to None."
4599 msgstr "Одабир слика није доступан ако је начин приказа подешен на „Ништа“."
4600
4601-#: ../settings/main.c:1481
4602+#: ../settings/main.c:1523
4603 msgid "Spanning screens"
4604 msgstr "Обухватање екрана"
4605
4606-#: ../settings/main.c:1786
4607+#: ../settings/main.c:1825
4608 msgid "Image files"
4609 msgstr "Датотеке слика"
4610
4611-#: ../settings/main.c:1958
4612+#: ../settings/main.c:2001
4613 msgid "Settings manager socket"
4614 msgstr "Управник подешавања утичнице"
4615
4616-#: ../settings/main.c:1958
4617+#: ../settings/main.c:2001
4618 msgid "SOCKET ID"
4619 msgstr "ЛБ УТИЧНИЦЕ"
4620
4621-#: ../settings/main.c:1959
4622+#: ../settings/main.c:2002
4623 msgid "Version information"
4624 msgstr "Подаци о издању"
4625
4626-#: ../settings/main.c:1986
4627+#: ../settings/main.c:2030
4628 #, c-format
4629 msgid "Type '%s --help' for usage."
4630 msgstr "Упишите „%s --help“ за коришћење."
4631
4632-#: ../settings/main.c:1998
4633+#: ../settings/main.c:2042
4634 msgid "The Xfce development team. All rights reserved."
4635 msgstr "ИксФЦЕ развојна дружина. Сва права су задржана."
4636
4637-#: ../settings/main.c:1999
4638+#: ../settings/main.c:2043
4639 #, c-format
4640 msgid "Please report bugs to <%s>."
4641 msgstr "Молим пријавите грешку на <%s>."
4642
4643-#: ../settings/main.c:2006
4644+#: ../settings/main.c:2050
4645 msgid "Desktop Settings"
4646 msgstr "Поставке радне површи"
4647
4648-#: ../settings/main.c:2008
4649+#: ../settings/main.c:2052
4650 msgid "Unable to contact settings server"
4651 msgstr "Нисам успео да покренем служитеља поставки"
4652
4653@@ -179,7 +179,7 @@
4654
4655 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:6
4656 msgid "Choose the folder to select wallpapers from."
4657-msgstr "Изаберите фасциклу из које ће се одабирати слике за позадину површи."
4658+msgstr "Изаберите фасциклу одакле ће се бирати позадине."
4659
4660 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:7
4661 msgid "St_yle:"
4662@@ -187,7 +187,7 @@
4663
4664 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:8
4665 msgid "Specify how the image will be resized to fit the screen."
4666-msgstr "Одредите како ће се слици мењати величина ради уклапања на екран. "
4667+msgstr "Одреди како ће слици бити промењена величина да би се уклопила на екран."
4668
4669 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:9
4670 #: ../settings/xfdesktop-settings-ui.glade.h:4
4671@@ -224,11 +224,11 @@
4672
4673 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:17
4674 msgid "Specify the style of the color drawn behind the backdrop image."
4675-msgstr "Одредите начин исцртавања боје иза позадинске слике."
4676+msgstr "Одреди начин цртања боје иза позадинске слике."
4677
4678 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:18
4679 msgid "Specifies the solid color, or the \"left\" or \"top\" color of the gradient."
4680-msgstr "Одредите пуну боју, или „леви“ или „десни“ прелив боја."
4681+msgstr "Одабери пуну боју, или „леву“ или „горњу“ боју прелива."
4682
4683 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:19
4684 msgid "Select First Color"
4685@@ -236,7 +236,7 @@
4686
4687 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:20
4688 msgid "Specifies the \"right\" or \"bottom\" color of the gradient."
4689-msgstr "Одредите „десну“ или „доњу“ боју прелива."
4690+msgstr "Одреди „десну“ или „доњу“ боју прелива."
4691
4692 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:21
4693 msgid "Select Second Color"
4694@@ -257,7 +257,7 @@
4695
4696 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:25
4697 msgid "Specify how often the background will change."
4698-msgstr "Одредите колико често ће се слика позадине мењати."
4699+msgstr "Одредите колико често ће се мењати позадина."
4700
4701 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:26
4702 msgid "in seconds:"
4703@@ -333,7 +333,7 @@
4704 msgid "File/launcher icons"
4705 msgstr "Датотека/покретач икона"
4706
4707-#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1015
4708+#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1020
4709 msgid "Desktop"
4710 msgstr "Радна површ"
4711
4712@@ -512,6 +512,22 @@
4713 msgid "_Remove Workspace '%s'"
4714 msgstr "_Уклони радну површ „%s“"
4715
4716+#: ../src/xfdesktop-app-menu-item.c:349
4717+#: ../src/xfdesktop-file-icon-manager.c:823
4718+#: ../src/xfdesktop-file-icon-manager.c:1084
4719+#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
4720+#: ../src/xfdesktop-file-utils.c:1132 ../src/xfdesktop-file-utils.c:1209
4721+#: ../src/xfdesktop-file-utils.c:1234 ../src/xfdesktop-file-utils.c:1286
4722+msgid "Launch Error"
4723+msgstr "Грешка покретања програма"
4724+
4725+#: ../src/xfdesktop-app-menu-item.c:351
4726+#: ../src/xfdesktop-file-icon-manager.c:1086
4727+msgid ""
4728+"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
4729+"edit launchers and links on the desktop."
4730+msgstr "Нисам успео да покренем \"exo-desktop-item-edit\", који је неопходан за прављење и уређивање покретача и веза на радном простору."
4731+
4732 #: ../src/xfdesktop-application.c:768
4733 msgid "Display version information"
4734 msgstr "Прикажи податке о издању"
4735@@ -615,8 +631,8 @@
4736 msgstr "Преименовање означених иконица није подржано."
4737
4738 #: ../src/xfdesktop-file-icon-manager.c:675
4739-#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:876
4740-#: ../src/xfdesktop-file-utils.c:913
4741+#: ../src/xfdesktop-file-icon-manager.c:719 ../src/xfdesktop-file-utils.c:921
4742+#: ../src/xfdesktop-file-utils.c:959
4743 msgid "Trash Error"
4744 msgstr "Грешка смећа"
4745
4746@@ -627,11 +643,11 @@
4747
4748 #: ../src/xfdesktop-file-icon-manager.c:677
4749 #: ../src/xfdesktop-file-icon-manager.c:721 ../src/xfdesktop-file-utils.c:725
4750-#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:828
4751-#: ../src/xfdesktop-file-utils.c:959 ../src/xfdesktop-file-utils.c:1006
4752-#: ../src/xfdesktop-file-utils.c:1047 ../src/xfdesktop-file-utils.c:1088
4753-#: ../src/xfdesktop-file-utils.c:1190 ../src/xfdesktop-file-utils.c:1242
4754-#: ../src/xfdesktop-file-utils.c:1315 ../src/xfdesktop-file-utils.c:1393
4755+#: ../src/xfdesktop-file-utils.c:778 ../src/xfdesktop-file-utils.c:864
4756+#: ../src/xfdesktop-file-utils.c:1005 ../src/xfdesktop-file-utils.c:1052
4757+#: ../src/xfdesktop-file-utils.c:1093 ../src/xfdesktop-file-utils.c:1134
4758+#: ../src/xfdesktop-file-utils.c:1236 ../src/xfdesktop-file-utils.c:1288
4759+#: ../src/xfdesktop-file-utils.c:1361 ../src/xfdesktop-file-utils.c:1439
4760 msgid ""
4761 "This feature requires a file manager service to be present (such as the one "
4762 "supplied by Thunar)."
4763@@ -644,14 +660,6 @@
4764 msgid "Unable to launch \"%s\":"
4765 msgstr "Нисам успео да покренем „%s“:"
4766
4767-#: ../src/xfdesktop-file-icon-manager.c:823
4768-#: ../src/xfdesktop-file-icon-manager.c:1084
4769-#: ../src/xfdesktop-file-icon-manager.c:1280 ../src/xfdesktop-file-utils.c:664
4770-#: ../src/xfdesktop-file-utils.c:1086 ../src/xfdesktop-file-utils.c:1163
4771-#: ../src/xfdesktop-file-utils.c:1188 ../src/xfdesktop-file-utils.c:1240
4772-msgid "Launch Error"
4773-msgstr "Грешка покретања програма"
4774-
4775 #: ../src/xfdesktop-file-icon-manager.c:1008
4776 #, c-format
4777 msgid "_Open With \"%s\""
4778@@ -662,12 +670,6 @@
4779 msgid "Open With \"%s\""
4780 msgstr "Отвори програмом „%s“"
4781
4782-#: ../src/xfdesktop-file-icon-manager.c:1086
4783-msgid ""
4784-"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
4785-"edit launchers and links on the desktop."
4786-msgstr "Нисам успео да покренем \"exo-desktop-item-edit\", који је неопходан за прављење и уређивање покретача и веза на радном простору."
4787-
4788 #: ../src/xfdesktop-file-icon-manager.c:1337
4789 msgid "_Open all"
4790 msgstr "_Отвори све"
4791@@ -738,23 +740,23 @@
4792 msgid "P_roperties..."
4793 msgstr "О_собине..."
4794
4795-#: ../src/xfdesktop-file-icon-manager.c:2716
4796+#: ../src/xfdesktop-file-icon-manager.c:2642
4797 msgid "Load Error"
4798 msgstr "Грешка учитавања"
4799
4800-#: ../src/xfdesktop-file-icon-manager.c:2718
4801+#: ../src/xfdesktop-file-icon-manager.c:2644
4802 msgid "Failed to load the desktop folder"
4803 msgstr "Нисам успео да учитам фасциклу радне површи"
4804
4805-#: ../src/xfdesktop-file-icon-manager.c:3262
4806+#: ../src/xfdesktop-file-icon-manager.c:3189
4807 msgid "Copy _Here"
4808 msgstr "Умножи _овде"
4809
4810-#: ../src/xfdesktop-file-icon-manager.c:3262
4811+#: ../src/xfdesktop-file-icon-manager.c:3189
4812 msgid "_Move Here"
4813 msgstr "_Премести овде"
4814
4815-#: ../src/xfdesktop-file-icon-manager.c:3262
4816+#: ../src/xfdesktop-file-icon-manager.c:3189
4817 msgid "_Link Here"
4818 msgstr "_Повежи овде"
4819
4820@@ -803,72 +805,72 @@
4821 msgid "The file could not be renamed"
4822 msgstr "Нисам успео да преименујем датотеку"
4823
4824-#: ../src/xfdesktop-file-utils.c:826
4825+#: ../src/xfdesktop-file-utils.c:862
4826 msgid "Delete Error"
4827 msgstr "Грешка брисања"
4828
4829-#: ../src/xfdesktop-file-utils.c:827
4830+#: ../src/xfdesktop-file-utils.c:863
4831 msgid "The selected files could not be deleted"
4832 msgstr "Нисам успео да избришем означену датотеку"
4833
4834-#: ../src/xfdesktop-file-utils.c:877
4835+#: ../src/xfdesktop-file-utils.c:922
4836 msgid "The selected files could not be moved to the trash"
4837 msgstr "Нисам успео да означену датотеку преместим у смеће"
4838
4839-#: ../src/xfdesktop-file-utils.c:878 ../src/xfdesktop-file-utils.c:915
4840+#: ../src/xfdesktop-file-utils.c:923 ../src/xfdesktop-file-utils.c:961
4841 msgid ""
4842 "This feature requires a trash service to be present (such as the one "
4843 "supplied by Thunar)."
4844 msgstr "Ова могућност захтева присутност услуге смећа (као што је она коју пружа Тунар)."
4845
4846-#: ../src/xfdesktop-file-utils.c:914
4847+#: ../src/xfdesktop-file-utils.c:960
4848 msgid "Could not empty the trash"
4849 msgstr "Нисам успео да испразним корпу"
4850
4851-#: ../src/xfdesktop-file-utils.c:957
4852+#: ../src/xfdesktop-file-utils.c:1003
4853 msgid "Create File Error"
4854 msgstr "Грешка стварања датотеке"
4855
4856-#: ../src/xfdesktop-file-utils.c:958
4857+#: ../src/xfdesktop-file-utils.c:1004
4858 msgid "Could not create a new file"
4859 msgstr "Нисам успео да направим нову датотеку"
4860
4861-#: ../src/xfdesktop-file-utils.c:1004
4862+#: ../src/xfdesktop-file-utils.c:1050
4863 msgid "Create Document Error"
4864 msgstr "Грешка стварања документа"
4865
4866-#: ../src/xfdesktop-file-utils.c:1005
4867+#: ../src/xfdesktop-file-utils.c:1051
4868 msgid "Could not create a new document from the template"
4869 msgstr "Нисам успео да направим нови документ из обрасца"
4870
4871-#: ../src/xfdesktop-file-utils.c:1045
4872+#: ../src/xfdesktop-file-utils.c:1091
4873 msgid "File Properties Error"
4874 msgstr "Грешка својстава датотеке"
4875
4876-#: ../src/xfdesktop-file-utils.c:1046
4877+#: ../src/xfdesktop-file-utils.c:1092
4878 msgid "The file properties dialog could not be opened"
4879 msgstr "Нисам успео да отворим прозорче својства датотеке"
4880
4881-#: ../src/xfdesktop-file-utils.c:1087
4882+#: ../src/xfdesktop-file-utils.c:1133
4883 msgid "The file could not be opened"
4884 msgstr "Нисам успео да отворим датотеку"
4885
4886-#: ../src/xfdesktop-file-utils.c:1160 ../src/xfdesktop-file-utils.c:1185
4887+#: ../src/xfdesktop-file-utils.c:1206 ../src/xfdesktop-file-utils.c:1231
4888 #, c-format
4889 msgid "Failed to run \"%s\""
4890 msgstr "Нисам успео да покренем „%s“"
4891
4892-#: ../src/xfdesktop-file-utils.c:1241
4893+#: ../src/xfdesktop-file-utils.c:1287
4894 msgid "The application chooser could not be opened"
4895 msgstr "Нисам успео да отворим изабирача програма"
4896
4897-#: ../src/xfdesktop-file-utils.c:1299 ../src/xfdesktop-file-utils.c:1313
4898-#: ../src/xfdesktop-file-utils.c:1375 ../src/xfdesktop-file-utils.c:1391
4899+#: ../src/xfdesktop-file-utils.c:1345 ../src/xfdesktop-file-utils.c:1359
4900+#: ../src/xfdesktop-file-utils.c:1421 ../src/xfdesktop-file-utils.c:1437
4901 msgid "Transfer Error"
4902 msgstr "Грешка преноса"
4903
4904-#: ../src/xfdesktop-file-utils.c:1300 ../src/xfdesktop-file-utils.c:1314
4905-#: ../src/xfdesktop-file-utils.c:1376 ../src/xfdesktop-file-utils.c:1392
4906+#: ../src/xfdesktop-file-utils.c:1346 ../src/xfdesktop-file-utils.c:1360
4907+#: ../src/xfdesktop-file-utils.c:1422 ../src/xfdesktop-file-utils.c:1438
4908 msgid "The file transfer could not be performed"
4909 msgstr "Нисам успео да извршим пренос датотека"
4910
4911@@ -922,7 +924,7 @@
4912 msgid "Eject Finished"
4913 msgstr "Избацивање је извршено"
4914
4915-#: ../src/xfdesktop-regular-file-icon.c:603
4916+#: ../src/xfdesktop-regular-file-icon.c:741
4917 #, c-format
4918 msgid ""
4919 "Type: %s\n"
4920
4921=== modified file 'po/sv.po'
4922--- po/sv.po 2014-04-07 15:39:01 +0000
4923+++ po/sv.po 2014-04-09 06:59:22 +0000
4924@@ -13,8 +13,8 @@
4925 msgstr ""
4926 "Project-Id-Version: Xfdesktop\n"
4927 "Report-Msgid-Bugs-To: \n"
4928-"POT-Creation-Date: 2014-02-24 12:32+0100\n"
4929-"PO-Revision-Date: 2014-03-22 09:37+0000\n"
4930+"POT-Creation-Date: 2014-04-03 18:32+0200\n"
4931+"PO-Revision-Date: 2014-04-05 08:17+0000\n"
4932 "Last-Translator: PavelNicklasson <pavelnicklasson@bahnhof.se>\n"
4933 "Language-Team: Swedish (http://www.transifex.com/projects/p/xfce/language/sv/)\n"
4934 "MIME-Version: 1.0\n"
4935@@ -23,37 +23,37 @@
4936 "Language: sv\n"
4937 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
4938
4939-#: ../settings/main.c:375 ../src/xfdesktop-special-file-icon.c:295
4940+#: ../settings/main.c:404 ../src/xfdesktop-special-file-icon.c:295
4941 #: ../src/xfdesktop-special-file-icon.c:479
4942 msgid "Home"
4943 msgstr "Hem"
4944
4945-#: ../settings/main.c:377
4946+#: ../settings/main.c:406
4947 msgid "Filesystem"
4948 msgstr "Filsystem"
4949
4950-#: ../settings/main.c:379
4951+#: ../settings/main.c:408
4952 msgid "Trash"
4953 msgstr "Papperskorg"
4954
4955-#: ../settings/main.c:381
4956+#: ../settings/main.c:410
4957 msgid "Removable Devices"
4958 msgstr "Flyttbara enheter"
4959
4960-#: ../settings/main.c:383
4961+#: ../settings/main.c:412
4962 msgid "Network Shares"
4963 msgstr "Nätverksdelning"
4964
4965-#: ../settings/main.c:385
4966+#: ../settings/main.c:414
4967 msgid "Disks and Drives"
4968 msgstr "Diskar och enheter"
4969
4970-#: ../settings/main.c:387
4971+#: ../settings/main.c:416
4972 msgid "Other Devices"
4973 msgstr "Andra enheter"
4974
4975 #. Display the file name, file type, and file size in the tooltip.
4976-#: ../settings/main.c:500
4977+#: ../settings/main.c:529
4978 #, c-format
4979 msgid ""
4980 "<b>%s</b>\n"
4981@@ -61,95 +61,95 @@
4982 "Size: %s"
4983 msgstr "<b>%s</b>\nTyp: %s\nStorlek: %s"
4984
4985-#: ../settings/main.c:686
4986+#: ../settings/main.c:715
4987 #, c-format
4988 msgid "Wallpaper for Monitor %d (%s)"
4989 msgstr "Bakgrundsbild för monitor %d (%s)"
4990
4991-#: ../settings/main.c:689
4992+#: ../settings/main.c:718
4993 #, c-format
4994 msgid "Wallpaper for Monitor %d"
4995 msgstr "Bakgrundsbild för monitor %d"
4996
4997-#: ../settings/main.c:695
4998+#: ../settings/main.c:724
4999 msgid "Move this dialog to the display you want to edit the settings for."
5000 msgstr "Flytta denna dialogruta till skärmen som du vill ändra inställningar för."
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: