Merge lp:~azzar1/unity/fix-799890 into lp:unity

Proposed by Andrea Azzarone
Status: Merged
Approved by: Neil J. Patel
Approved revision: no longer in the source branch.
Merged at revision: 1326
Proposed branch: lp:~azzar1/unity/fix-799890
Merge into: lp:unity
Diff against target: 1484 lines (+378/-70)
33 files modified
plugins/unityshell/src/DeviceLauncherIcon.cpp (+26/-6)
po/ar.po (+11/-2)
po/bg.po (+11/-2)
po/cs.po (+11/-2)
po/da.po (+11/-2)
po/de.po (+11/-2)
po/el.po (+11/-2)
po/es.po (+11/-2)
po/fi.po (+11/-2)
po/fr.po (+11/-2)
po/he.po (+11/-2)
po/hi.po (+11/-2)
po/hr.po (+11/-2)
po/hu.po (+11/-2)
po/it.po (+11/-2)
po/ja.po (+11/-2)
po/ko.po (+11/-2)
po/nb.po (+11/-2)
po/nl.po (+11/-2)
po/pl.po (+11/-2)
po/pt.po (+11/-2)
po/pt_BR.po (+11/-2)
po/ro.po (+11/-2)
po/ru.po (+11/-2)
po/sk.po (+11/-2)
po/sl.po (+11/-2)
po/sr.po (+11/-2)
po/sv.po (+11/-2)
po/th.po (+11/-2)
po/tr.po (+11/-2)
po/unity.pot (+11/-2)
po/zh_CN.po (+11/-2)
po/zh_TW.po (+11/-2)
To merge this branch: bzr merge lp:~azzar1/unity/fix-799890
Reviewer Review Type Date Requested Status
Neil J. Patel (community) Approve
Marco Trevisan (Treviño) Approve
Review via email: mp+69811@code.launchpad.net

Description of the change

Counts the number of volumes for each drive to fix the bug.

To post a comment you must log in.
Revision history for this message
Marco Trevisan (Treviño) (3v1n0) wrote :

I'd prefer the "Safely remove" string, both because it's more used by OS and because it could be less confusing.

review: Approve
Revision history for this message
Andrea Azzarone (azzar1) wrote :

Marco "Safaly remove parent drive" is used only if there are two or more gvolumes for each gdrive (for example two partiions en a single usb pen drive). Read bug #799890 for more information.

Revision history for this message
Neil J. Patel (njpatel) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'plugins/unityshell/src/DeviceLauncherIcon.cpp'
2--- plugins/unityshell/src/DeviceLauncherIcon.cpp 2011-07-29 03:30:59 +0000
3+++ plugins/unityshell/src/DeviceLauncherIcon.cpp 2011-07-29 14:55:48 +0000
4@@ -120,11 +120,21 @@
5 result.push_back(menu_item);
6
7 // "Eject" item
8- if (g_volume_can_eject(volume_))
9- {
10+ if (drive && g_drive_can_eject(drive))
11+ {
12 menu_item = dbusmenu_menuitem_new();
13-
14- dbusmenu_menuitem_property_set(menu_item, DBUSMENU_MENUITEM_PROP_LABEL, _("Eject"));
15+
16+ GList *list = g_drive_get_volumes(drive);
17+ if (list != NULL)
18+ {
19+ if (g_list_length (list) == 1)
20+ dbusmenu_menuitem_property_set(menu_item, DBUSMENU_MENUITEM_PROP_LABEL, _("Eject"));
21+ else
22+ dbusmenu_menuitem_property_set(menu_item, DBUSMENU_MENUITEM_PROP_LABEL, _("Eject parent drive"));
23+
24+ g_list_free_full(list, g_object_unref);
25+ }
26+
27 dbusmenu_menuitem_property_set_bool(menu_item, DBUSMENU_MENUITEM_PROP_ENABLED, true);
28 dbusmenu_menuitem_property_set_bool(menu_item, DBUSMENU_MENUITEM_PROP_VISIBLE, true);
29
30@@ -134,12 +144,22 @@
31 result.push_back(menu_item);
32 }
33
34- // "Safely Remove" item (FIXME: Should it be "Safely remove"?)
35+ // "Safely remove" item
36 if (drive && g_drive_can_stop(drive))
37 {
38 menu_item = dbusmenu_menuitem_new();
39+
40+ GList *list = g_drive_get_volumes(drive);
41+ if (list != NULL)
42+ {
43+ if (g_list_length (list) == 1)
44+ dbusmenu_menuitem_property_set(menu_item, DBUSMENU_MENUITEM_PROP_LABEL, _("Safely remove"));
45+ else
46+ dbusmenu_menuitem_property_set(menu_item, DBUSMENU_MENUITEM_PROP_LABEL, _("Safely remove parent drive"));
47+
48+ g_list_free_full(list, g_object_unref);
49+ }
50
51- dbusmenu_menuitem_property_set(menu_item, DBUSMENU_MENUITEM_PROP_LABEL, _("Safely Remove"));
52 dbusmenu_menuitem_property_set_bool(menu_item, DBUSMENU_MENUITEM_PROP_ENABLED, true);
53 dbusmenu_menuitem_property_set_bool(menu_item, DBUSMENU_MENUITEM_PROP_VISIBLE, true);
54
55
56=== modified file 'po/ar.po'
57--- po/ar.po 2011-06-30 11:08:23 +0000
58+++ po/ar.po 2011-07-29 14:55:48 +0000
59@@ -7,7 +7,7 @@
60 msgstr ""
61 "Project-Id-Version: l 10n\n"
62 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
63-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
64+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
65 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
66 "Last-Translator: Canonical OEM\n"
67 "Language-Team: Arabic\n"
68@@ -34,6 +34,9 @@
69 msgid "Eject"
70 msgstr ""
71
72+msgid "Eject parent drive"
73+msgstr ""
74+
75 msgid "Empty Trash"
76 msgstr ""
77
78@@ -78,7 +81,10 @@
79 msgid "Quit"
80 msgstr "إنهاء"
81
82-msgid "Safely Remove"
83+msgid "Safely remove"
84+msgstr ""
85+
86+msgid "Safely remove parent drive"
87 msgstr ""
88
89 msgid "Search"
90@@ -93,6 +99,9 @@
91 msgid "Shortcuts"
92 msgstr ""
93
94+msgid "The drive has been successfully ejected"
95+msgstr ""
96+
97 msgid "Touches the top left corner of the screen"
98 msgstr ""
99
100
101=== modified file 'po/bg.po'
102--- po/bg.po 2011-06-30 11:08:23 +0000
103+++ po/bg.po 2011-07-29 14:55:48 +0000
104@@ -7,7 +7,7 @@
105 msgstr ""
106 "Project-Id-Version: l 10n\n"
107 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
108-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
109+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
110 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
111 "Last-Translator: Canonical OEM\n"
112 "Language-Team: Bulgarian\n"
113@@ -34,6 +34,9 @@
114 msgid "Eject"
115 msgstr ""
116
117+msgid "Eject parent drive"
118+msgstr ""
119+
120 msgid "Empty Trash"
121 msgstr ""
122
123@@ -78,7 +81,10 @@
124 msgid "Quit"
125 msgstr "Излез"
126
127-msgid "Safely Remove"
128+msgid "Safely remove"
129+msgstr ""
130+
131+msgid "Safely remove parent drive"
132 msgstr ""
133
134 msgid "Search"
135@@ -93,6 +99,9 @@
136 msgid "Shortcuts"
137 msgstr ""
138
139+msgid "The drive has been successfully ejected"
140+msgstr ""
141+
142 msgid "Touches the top left corner of the screen"
143 msgstr ""
144
145
146=== modified file 'po/cs.po'
147--- po/cs.po 2011-06-30 11:08:23 +0000
148+++ po/cs.po 2011-07-29 14:55:48 +0000
149@@ -7,7 +7,7 @@
150 msgstr ""
151 "Project-Id-Version: l 10n\n"
152 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
153-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
154+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
155 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
156 "Last-Translator: Canonical OEM\n"
157 "Language-Team: Czech\n"
158@@ -35,6 +35,9 @@
159 msgid "Eject"
160 msgstr ""
161
162+msgid "Eject parent drive"
163+msgstr ""
164+
165 msgid "Empty Trash"
166 msgstr ""
167
168@@ -79,7 +82,10 @@
169 msgid "Quit"
170 msgstr "Konec"
171
172-msgid "Safely Remove"
173+msgid "Safely remove"
174+msgstr ""
175+
176+msgid "Safely remove parent drive"
177 msgstr ""
178
179 msgid "Search"
180@@ -94,6 +100,9 @@
181 msgid "Shortcuts"
182 msgstr ""
183
184+msgid "The drive has been successfully ejected"
185+msgstr ""
186+
187 msgid "Touches the top left corner of the screen"
188 msgstr ""
189
190
191=== modified file 'po/da.po'
192--- po/da.po 2011-06-30 11:08:23 +0000
193+++ po/da.po 2011-07-29 14:55:48 +0000
194@@ -7,7 +7,7 @@
195 msgstr ""
196 "Project-Id-Version: l 10n\n"
197 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
198-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
199+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
200 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
201 "Last-Translator: Canonical OEM\n"
202 "Language-Team: Danish\n"
203@@ -35,6 +35,9 @@
204 msgid "Eject"
205 msgstr ""
206
207+msgid "Eject parent drive"
208+msgstr ""
209+
210 msgid "Empty Trash"
211 msgstr ""
212
213@@ -79,7 +82,10 @@
214 msgid "Quit"
215 msgstr "Afslut"
216
217-msgid "Safely Remove"
218+msgid "Safely remove"
219+msgstr ""
220+
221+msgid "Safely remove parent drive"
222 msgstr ""
223
224 msgid "Search"
225@@ -94,6 +100,9 @@
226 msgid "Shortcuts"
227 msgstr ""
228
229+msgid "The drive has been successfully ejected"
230+msgstr ""
231+
232 msgid "Touches the top left corner of the screen"
233 msgstr ""
234
235
236=== modified file 'po/de.po'
237--- po/de.po 2011-06-30 11:08:23 +0000
238+++ po/de.po 2011-07-29 14:55:48 +0000
239@@ -7,7 +7,7 @@
240 msgstr ""
241 "Project-Id-Version: l 10n\n"
242 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
243-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
244+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
245 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
246 "Last-Translator: Canonical OEM\n"
247 "Language-Team: German\n"
248@@ -35,6 +35,9 @@
249 msgid "Eject"
250 msgstr ""
251
252+msgid "Eject parent drive"
253+msgstr ""
254+
255 msgid "Empty Trash"
256 msgstr ""
257
258@@ -79,7 +82,10 @@
259 msgid "Quit"
260 msgstr "Beenden"
261
262-msgid "Safely Remove"
263+msgid "Safely remove"
264+msgstr ""
265+
266+msgid "Safely remove parent drive"
267 msgstr ""
268
269 msgid "Search"
270@@ -94,6 +100,9 @@
271 msgid "Shortcuts"
272 msgstr ""
273
274+msgid "The drive has been successfully ejected"
275+msgstr ""
276+
277 msgid "Touches the top left corner of the screen"
278 msgstr ""
279
280
281=== modified file 'po/el.po'
282--- po/el.po 2011-06-30 11:08:23 +0000
283+++ po/el.po 2011-07-29 14:55:48 +0000
284@@ -7,7 +7,7 @@
285 msgstr ""
286 "Project-Id-Version: l 10n\n"
287 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
288-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
289+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
290 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
291 "Last-Translator: Canonical OEM\n"
292 "Language-Team: Greek\n"
293@@ -35,6 +35,9 @@
294 msgid "Eject"
295 msgstr ""
296
297+msgid "Eject parent drive"
298+msgstr ""
299+
300 msgid "Empty Trash"
301 msgstr ""
302
303@@ -79,7 +82,10 @@
304 msgid "Quit"
305 msgstr "Κλείσιμο"
306
307-msgid "Safely Remove"
308+msgid "Safely remove"
309+msgstr ""
310+
311+msgid "Safely remove parent drive"
312 msgstr ""
313
314 msgid "Search"
315@@ -94,6 +100,9 @@
316 msgid "Shortcuts"
317 msgstr ""
318
319+msgid "The drive has been successfully ejected"
320+msgstr ""
321+
322 msgid "Touches the top left corner of the screen"
323 msgstr ""
324
325
326=== modified file 'po/es.po'
327--- po/es.po 2011-06-30 11:08:23 +0000
328+++ po/es.po 2011-07-29 14:55:48 +0000
329@@ -7,7 +7,7 @@
330 msgstr ""
331 "Project-Id-Version: l 10n\n"
332 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
333-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
334+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
335 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
336 "Last-Translator: Canonical OEM\n"
337 "Language-Team: Spanish\n"
338@@ -35,6 +35,9 @@
339 msgid "Eject"
340 msgstr ""
341
342+msgid "Eject parent drive"
343+msgstr ""
344+
345 msgid "Empty Trash"
346 msgstr ""
347
348@@ -79,7 +82,10 @@
349 msgid "Quit"
350 msgstr "Salir"
351
352-msgid "Safely Remove"
353+msgid "Safely remove"
354+msgstr ""
355+
356+msgid "Safely remove parent drive"
357 msgstr ""
358
359 msgid "Search"
360@@ -94,6 +100,9 @@
361 msgid "Shortcuts"
362 msgstr ""
363
364+msgid "The drive has been successfully ejected"
365+msgstr ""
366+
367 msgid "Touches the top left corner of the screen"
368 msgstr ""
369
370
371=== modified file 'po/fi.po'
372--- po/fi.po 2011-06-30 11:08:23 +0000
373+++ po/fi.po 2011-07-29 14:55:48 +0000
374@@ -7,7 +7,7 @@
375 msgstr ""
376 "Project-Id-Version: l 10n\n"
377 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
378-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
379+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
380 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
381 "Last-Translator: Canonical OEM\n"
382 "Language-Team: Finnish\n"
383@@ -35,6 +35,9 @@
384 msgid "Eject"
385 msgstr ""
386
387+msgid "Eject parent drive"
388+msgstr ""
389+
390 msgid "Empty Trash"
391 msgstr ""
392
393@@ -79,7 +82,10 @@
394 msgid "Quit"
395 msgstr "Lopeta"
396
397-msgid "Safely Remove"
398+msgid "Safely remove"
399+msgstr ""
400+
401+msgid "Safely remove parent drive"
402 msgstr ""
403
404 msgid "Search"
405@@ -94,6 +100,9 @@
406 msgid "Shortcuts"
407 msgstr ""
408
409+msgid "The drive has been successfully ejected"
410+msgstr ""
411+
412 msgid "Touches the top left corner of the screen"
413 msgstr ""
414
415
416=== modified file 'po/fr.po'
417--- po/fr.po 2011-06-30 11:08:23 +0000
418+++ po/fr.po 2011-07-29 14:55:48 +0000
419@@ -7,7 +7,7 @@
420 msgstr ""
421 "Project-Id-Version: l 10n\n"
422 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
423-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
424+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
425 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
426 "Last-Translator: Canonical OEM\n"
427 "Language-Team: French\n"
428@@ -35,6 +35,9 @@
429 msgid "Eject"
430 msgstr ""
431
432+msgid "Eject parent drive"
433+msgstr ""
434+
435 msgid "Empty Trash"
436 msgstr ""
437
438@@ -79,7 +82,10 @@
439 msgid "Quit"
440 msgstr "Quitter"
441
442-msgid "Safely Remove"
443+msgid "Safely remove"
444+msgstr ""
445+
446+msgid "Safely remove parent drive"
447 msgstr ""
448
449 msgid "Search"
450@@ -94,6 +100,9 @@
451 msgid "Shortcuts"
452 msgstr ""
453
454+msgid "The drive has been successfully ejected"
455+msgstr ""
456+
457 msgid "Touches the top left corner of the screen"
458 msgstr ""
459
460
461=== modified file 'po/he.po'
462--- po/he.po 2011-06-30 11:08:23 +0000
463+++ po/he.po 2011-07-29 14:55:48 +0000
464@@ -7,7 +7,7 @@
465 msgstr ""
466 "Project-Id-Version: l 10n\n"
467 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
468-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
469+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
470 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
471 "Last-Translator: Canonical OEM\n"
472 "Language-Team: Hebrew\n"
473@@ -35,6 +35,9 @@
474 msgid "Eject"
475 msgstr ""
476
477+msgid "Eject parent drive"
478+msgstr ""
479+
480 msgid "Empty Trash"
481 msgstr ""
482
483@@ -79,7 +82,10 @@
484 msgid "Quit"
485 msgstr "יציאה"
486
487-msgid "Safely Remove"
488+msgid "Safely remove"
489+msgstr ""
490+
491+msgid "Safely remove parent drive"
492 msgstr ""
493
494 msgid "Search"
495@@ -94,6 +100,9 @@
496 msgid "Shortcuts"
497 msgstr ""
498
499+msgid "The drive has been successfully ejected"
500+msgstr ""
501+
502 msgid "Touches the top left corner of the screen"
503 msgstr ""
504
505
506=== modified file 'po/hi.po'
507--- po/hi.po 2011-06-30 11:08:23 +0000
508+++ po/hi.po 2011-07-29 14:55:48 +0000
509@@ -7,7 +7,7 @@
510 msgstr ""
511 "Project-Id-Version: l 10n\n"
512 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
513-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
514+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
515 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
516 "Last-Translator: Canonical OEM\n"
517 "Language-Team: Hindi\n"
518@@ -34,6 +34,9 @@
519 msgid "Eject"
520 msgstr ""
521
522+msgid "Eject parent drive"
523+msgstr ""
524+
525 msgid "Empty Trash"
526 msgstr ""
527
528@@ -78,7 +81,10 @@
529 msgid "Quit"
530 msgstr "छोड़ें"
531
532-msgid "Safely Remove"
533+msgid "Safely remove"
534+msgstr ""
535+
536+msgid "Safely remove parent drive"
537 msgstr ""
538
539 msgid "Search"
540@@ -93,6 +99,9 @@
541 msgid "Shortcuts"
542 msgstr ""
543
544+msgid "The drive has been successfully ejected"
545+msgstr ""
546+
547 msgid "Touches the top left corner of the screen"
548 msgstr ""
549
550
551=== modified file 'po/hr.po'
552--- po/hr.po 2011-06-30 11:08:23 +0000
553+++ po/hr.po 2011-07-29 14:55:48 +0000
554@@ -7,7 +7,7 @@
555 msgstr ""
556 "Project-Id-Version: l 10n\n"
557 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
558-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
559+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
560 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
561 "Last-Translator: Canonical OEM\n"
562 "Language-Team: Croatian\n"
563@@ -36,6 +36,9 @@
564 msgid "Eject"
565 msgstr ""
566
567+msgid "Eject parent drive"
568+msgstr ""
569+
570 msgid "Empty Trash"
571 msgstr ""
572
573@@ -80,7 +83,10 @@
574 msgid "Quit"
575 msgstr "Izlaz"
576
577-msgid "Safely Remove"
578+msgid "Safely remove"
579+msgstr ""
580+
581+msgid "Safely remove parent drive"
582 msgstr ""
583
584 msgid "Search"
585@@ -95,6 +101,9 @@
586 msgid "Shortcuts"
587 msgstr ""
588
589+msgid "The drive has been successfully ejected"
590+msgstr ""
591+
592 msgid "Touches the top left corner of the screen"
593 msgstr ""
594
595
596=== modified file 'po/hu.po'
597--- po/hu.po 2011-06-30 11:08:23 +0000
598+++ po/hu.po 2011-07-29 14:55:48 +0000
599@@ -7,7 +7,7 @@
600 msgstr ""
601 "Project-Id-Version: l 10n\n"
602 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
603-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
604+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
605 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
606 "Last-Translator: Canonical OEM\n"
607 "Language-Team: Hungarian\n"
608@@ -35,6 +35,9 @@
609 msgid "Eject"
610 msgstr ""
611
612+msgid "Eject parent drive"
613+msgstr ""
614+
615 msgid "Empty Trash"
616 msgstr ""
617
618@@ -79,7 +82,10 @@
619 msgid "Quit"
620 msgstr "Kilépés"
621
622-msgid "Safely Remove"
623+msgid "Safely remove"
624+msgstr ""
625+
626+msgid "Safely remove parent drive"
627 msgstr ""
628
629 msgid "Search"
630@@ -94,6 +100,9 @@
631 msgid "Shortcuts"
632 msgstr ""
633
634+msgid "The drive has been successfully ejected"
635+msgstr ""
636+
637 msgid "Touches the top left corner of the screen"
638 msgstr ""
639
640
641=== modified file 'po/it.po'
642--- po/it.po 2011-06-30 11:08:23 +0000
643+++ po/it.po 2011-07-29 14:55:48 +0000
644@@ -7,7 +7,7 @@
645 msgstr ""
646 "Project-Id-Version: l 10n\n"
647 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
648-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
649+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
650 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
651 "Last-Translator: Canonical OEM\n"
652 "Language-Team: Italian\n"
653@@ -35,6 +35,9 @@
654 msgid "Eject"
655 msgstr ""
656
657+msgid "Eject parent drive"
658+msgstr ""
659+
660 msgid "Empty Trash"
661 msgstr ""
662
663@@ -79,7 +82,10 @@
664 msgid "Quit"
665 msgstr "Esci"
666
667-msgid "Safely Remove"
668+msgid "Safely remove"
669+msgstr ""
670+
671+msgid "Safely remove parent drive"
672 msgstr ""
673
674 msgid "Search"
675@@ -94,6 +100,9 @@
676 msgid "Shortcuts"
677 msgstr ""
678
679+msgid "The drive has been successfully ejected"
680+msgstr ""
681+
682 msgid "Touches the top left corner of the screen"
683 msgstr ""
684
685
686=== modified file 'po/ja.po'
687--- po/ja.po 2011-06-30 11:08:23 +0000
688+++ po/ja.po 2011-07-29 14:55:48 +0000
689@@ -7,7 +7,7 @@
690 msgstr ""
691 "Project-Id-Version: l 10n\n"
692 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
693-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
694+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
695 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
696 "Last-Translator: Canonical OEM\n"
697 "Language-Team: Japanese\n"
698@@ -35,6 +35,9 @@
699 msgid "Eject"
700 msgstr ""
701
702+msgid "Eject parent drive"
703+msgstr ""
704+
705 msgid "Empty Trash"
706 msgstr ""
707
708@@ -79,7 +82,10 @@
709 msgid "Quit"
710 msgstr "中止"
711
712-msgid "Safely Remove"
713+msgid "Safely remove"
714+msgstr ""
715+
716+msgid "Safely remove parent drive"
717 msgstr ""
718
719 msgid "Search"
720@@ -94,6 +100,9 @@
721 msgid "Shortcuts"
722 msgstr ""
723
724+msgid "The drive has been successfully ejected"
725+msgstr ""
726+
727 msgid "Touches the top left corner of the screen"
728 msgstr ""
729
730
731=== modified file 'po/ko.po'
732--- po/ko.po 2011-06-30 11:08:23 +0000
733+++ po/ko.po 2011-07-29 14:55:48 +0000
734@@ -7,7 +7,7 @@
735 msgstr ""
736 "Project-Id-Version: l 10n\n"
737 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
738-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
739+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
740 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
741 "Last-Translator: Canonical OEM\n"
742 "Language-Team: Korean\n"
743@@ -35,6 +35,9 @@
744 msgid "Eject"
745 msgstr ""
746
747+msgid "Eject parent drive"
748+msgstr ""
749+
750 msgid "Empty Trash"
751 msgstr ""
752
753@@ -79,7 +82,10 @@
754 msgid "Quit"
755 msgstr "끝내기"
756
757-msgid "Safely Remove"
758+msgid "Safely remove"
759+msgstr ""
760+
761+msgid "Safely remove parent drive"
762 msgstr ""
763
764 msgid "Search"
765@@ -94,6 +100,9 @@
766 msgid "Shortcuts"
767 msgstr ""
768
769+msgid "The drive has been successfully ejected"
770+msgstr ""
771+
772 msgid "Touches the top left corner of the screen"
773 msgstr ""
774
775
776=== modified file 'po/nb.po'
777--- po/nb.po 2011-06-30 11:08:23 +0000
778+++ po/nb.po 2011-07-29 14:55:48 +0000
779@@ -7,7 +7,7 @@
780 msgstr ""
781 "Project-Id-Version: l 10n\n"
782 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
783-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
784+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
785 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
786 "Last-Translator: Canonical OEM\n"
787 "Language-Team: Norwegian Bokmal\n"
788@@ -35,6 +35,9 @@
789 msgid "Eject"
790 msgstr ""
791
792+msgid "Eject parent drive"
793+msgstr ""
794+
795 msgid "Empty Trash"
796 msgstr ""
797
798@@ -79,7 +82,10 @@
799 msgid "Quit"
800 msgstr "Avslutt"
801
802-msgid "Safely Remove"
803+msgid "Safely remove"
804+msgstr ""
805+
806+msgid "Safely remove parent drive"
807 msgstr ""
808
809 msgid "Search"
810@@ -94,6 +100,9 @@
811 msgid "Shortcuts"
812 msgstr ""
813
814+msgid "The drive has been successfully ejected"
815+msgstr ""
816+
817 msgid "Touches the top left corner of the screen"
818 msgstr ""
819
820
821=== modified file 'po/nl.po'
822--- po/nl.po 2011-06-30 11:08:23 +0000
823+++ po/nl.po 2011-07-29 14:55:48 +0000
824@@ -7,7 +7,7 @@
825 msgstr ""
826 "Project-Id-Version: l 10n\n"
827 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
828-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
829+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
830 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
831 "Last-Translator: Canonical OEM\n"
832 "Language-Team: Dutch\n"
833@@ -35,6 +35,9 @@
834 msgid "Eject"
835 msgstr ""
836
837+msgid "Eject parent drive"
838+msgstr ""
839+
840 msgid "Empty Trash"
841 msgstr ""
842
843@@ -79,7 +82,10 @@
844 msgid "Quit"
845 msgstr "Afsluiten"
846
847-msgid "Safely Remove"
848+msgid "Safely remove"
849+msgstr ""
850+
851+msgid "Safely remove parent drive"
852 msgstr ""
853
854 msgid "Search"
855@@ -94,6 +100,9 @@
856 msgid "Shortcuts"
857 msgstr ""
858
859+msgid "The drive has been successfully ejected"
860+msgstr ""
861+
862 msgid "Touches the top left corner of the screen"
863 msgstr ""
864
865
866=== modified file 'po/pl.po'
867--- po/pl.po 2011-06-30 11:08:23 +0000
868+++ po/pl.po 2011-07-29 14:55:48 +0000
869@@ -7,7 +7,7 @@
870 msgstr ""
871 "Project-Id-Version: l 10n\n"
872 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
873-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
874+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
875 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
876 "Last-Translator: Canonical OEM\n"
877 "Language-Team: Polish\n"
878@@ -36,6 +36,9 @@
879 msgid "Eject"
880 msgstr ""
881
882+msgid "Eject parent drive"
883+msgstr ""
884+
885 msgid "Empty Trash"
886 msgstr ""
887
888@@ -80,7 +83,10 @@
889 msgid "Quit"
890 msgstr "Zamknij"
891
892-msgid "Safely Remove"
893+msgid "Safely remove"
894+msgstr ""
895+
896+msgid "Safely remove parent drive"
897 msgstr ""
898
899 msgid "Search"
900@@ -95,6 +101,9 @@
901 msgid "Shortcuts"
902 msgstr ""
903
904+msgid "The drive has been successfully ejected"
905+msgstr ""
906+
907 msgid "Touches the top left corner of the screen"
908 msgstr ""
909
910
911=== modified file 'po/pt.po'
912--- po/pt.po 2011-06-30 11:08:23 +0000
913+++ po/pt.po 2011-07-29 14:55:48 +0000
914@@ -7,7 +7,7 @@
915 msgstr ""
916 "Project-Id-Version: l 10n\n"
917 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
918-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
919+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
920 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
921 "Last-Translator: Canonical OEM\n"
922 "Language-Team: Portuguese\n"
923@@ -35,6 +35,9 @@
924 msgid "Eject"
925 msgstr ""
926
927+msgid "Eject parent drive"
928+msgstr ""
929+
930 msgid "Empty Trash"
931 msgstr ""
932
933@@ -79,7 +82,10 @@
934 msgid "Quit"
935 msgstr "Abandonar"
936
937-msgid "Safely Remove"
938+msgid "Safely remove"
939+msgstr ""
940+
941+msgid "Safely remove parent drive"
942 msgstr ""
943
944 msgid "Search"
945@@ -94,6 +100,9 @@
946 msgid "Shortcuts"
947 msgstr ""
948
949+msgid "The drive has been successfully ejected"
950+msgstr ""
951+
952 msgid "Touches the top left corner of the screen"
953 msgstr ""
954
955
956=== modified file 'po/pt_BR.po'
957--- po/pt_BR.po 2011-06-30 11:08:23 +0000
958+++ po/pt_BR.po 2011-07-29 14:55:48 +0000
959@@ -7,7 +7,7 @@
960 msgstr ""
961 "Project-Id-Version: l 10n\n"
962 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
963-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
964+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
965 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
966 "Last-Translator: Canonical OEM\n"
967 "Language-Team: Brazilian Portuguese\n"
968@@ -35,6 +35,9 @@
969 msgid "Eject"
970 msgstr ""
971
972+msgid "Eject parent drive"
973+msgstr ""
974+
975 msgid "Empty Trash"
976 msgstr ""
977
978@@ -79,7 +82,10 @@
979 msgid "Quit"
980 msgstr "Sair"
981
982-msgid "Safely Remove"
983+msgid "Safely remove"
984+msgstr ""
985+
986+msgid "Safely remove parent drive"
987 msgstr ""
988
989 msgid "Search"
990@@ -94,6 +100,9 @@
991 msgid "Shortcuts"
992 msgstr ""
993
994+msgid "The drive has been successfully ejected"
995+msgstr ""
996+
997 msgid "Touches the top left corner of the screen"
998 msgstr ""
999
1000
1001=== modified file 'po/ro.po'
1002--- po/ro.po 2011-06-30 11:08:23 +0000
1003+++ po/ro.po 2011-07-29 14:55:48 +0000
1004@@ -7,7 +7,7 @@
1005 msgstr ""
1006 "Project-Id-Version: l 10n\n"
1007 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
1008-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
1009+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
1010 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
1011 "Last-Translator: Canonical OEM\n"
1012 "Language-Team: Romanian\n"
1013@@ -36,6 +36,9 @@
1014 msgid "Eject"
1015 msgstr ""
1016
1017+msgid "Eject parent drive"
1018+msgstr ""
1019+
1020 msgid "Empty Trash"
1021 msgstr ""
1022
1023@@ -80,7 +83,10 @@
1024 msgid "Quit"
1025 msgstr "Ieşire"
1026
1027-msgid "Safely Remove"
1028+msgid "Safely remove"
1029+msgstr ""
1030+
1031+msgid "Safely remove parent drive"
1032 msgstr ""
1033
1034 msgid "Search"
1035@@ -95,6 +101,9 @@
1036 msgid "Shortcuts"
1037 msgstr ""
1038
1039+msgid "The drive has been successfully ejected"
1040+msgstr ""
1041+
1042 msgid "Touches the top left corner of the screen"
1043 msgstr ""
1044
1045
1046=== modified file 'po/ru.po'
1047--- po/ru.po 2011-06-30 11:08:23 +0000
1048+++ po/ru.po 2011-07-29 14:55:48 +0000
1049@@ -7,7 +7,7 @@
1050 msgstr ""
1051 "Project-Id-Version: l 10n\n"
1052 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
1053-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
1054+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
1055 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
1056 "Last-Translator: Canonical OEM\n"
1057 "Language-Team: Russian\n"
1058@@ -36,6 +36,9 @@
1059 msgid "Eject"
1060 msgstr ""
1061
1062+msgid "Eject parent drive"
1063+msgstr ""
1064+
1065 msgid "Empty Trash"
1066 msgstr ""
1067
1068@@ -80,7 +83,10 @@
1069 msgid "Quit"
1070 msgstr "Выход"
1071
1072-msgid "Safely Remove"
1073+msgid "Safely remove"
1074+msgstr ""
1075+
1076+msgid "Safely remove parent drive"
1077 msgstr ""
1078
1079 msgid "Search"
1080@@ -95,6 +101,9 @@
1081 msgid "Shortcuts"
1082 msgstr ""
1083
1084+msgid "The drive has been successfully ejected"
1085+msgstr ""
1086+
1087 msgid "Touches the top left corner of the screen"
1088 msgstr ""
1089
1090
1091=== modified file 'po/sk.po'
1092--- po/sk.po 2011-06-30 11:08:23 +0000
1093+++ po/sk.po 2011-07-29 14:55:48 +0000
1094@@ -7,7 +7,7 @@
1095 msgstr ""
1096 "Project-Id-Version: l 10n\n"
1097 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
1098-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
1099+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
1100 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
1101 "Last-Translator: Canonical OEM\n"
1102 "Language-Team: Slovak\n"
1103@@ -35,6 +35,9 @@
1104 msgid "Eject"
1105 msgstr ""
1106
1107+msgid "Eject parent drive"
1108+msgstr ""
1109+
1110 msgid "Empty Trash"
1111 msgstr ""
1112
1113@@ -79,7 +82,10 @@
1114 msgid "Quit"
1115 msgstr "Ukončiť"
1116
1117-msgid "Safely Remove"
1118+msgid "Safely remove"
1119+msgstr ""
1120+
1121+msgid "Safely remove parent drive"
1122 msgstr ""
1123
1124 msgid "Search"
1125@@ -94,6 +100,9 @@
1126 msgid "Shortcuts"
1127 msgstr ""
1128
1129+msgid "The drive has been successfully ejected"
1130+msgstr ""
1131+
1132 msgid "Touches the top left corner of the screen"
1133 msgstr ""
1134
1135
1136=== modified file 'po/sl.po'
1137--- po/sl.po 2011-06-30 11:08:23 +0000
1138+++ po/sl.po 2011-07-29 14:55:48 +0000
1139@@ -7,7 +7,7 @@
1140 msgstr ""
1141 "Project-Id-Version: l 10n\n"
1142 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
1143-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
1144+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
1145 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
1146 "Last-Translator: Canonical OEM\n"
1147 "Language-Team: Slovenian\n"
1148@@ -36,6 +36,9 @@
1149 msgid "Eject"
1150 msgstr ""
1151
1152+msgid "Eject parent drive"
1153+msgstr ""
1154+
1155 msgid "Empty Trash"
1156 msgstr ""
1157
1158@@ -80,7 +83,10 @@
1159 msgid "Quit"
1160 msgstr "Končaj"
1161
1162-msgid "Safely Remove"
1163+msgid "Safely remove"
1164+msgstr ""
1165+
1166+msgid "Safely remove parent drive"
1167 msgstr ""
1168
1169 msgid "Search"
1170@@ -95,6 +101,9 @@
1171 msgid "Shortcuts"
1172 msgstr ""
1173
1174+msgid "The drive has been successfully ejected"
1175+msgstr ""
1176+
1177 msgid "Touches the top left corner of the screen"
1178 msgstr ""
1179
1180
1181=== modified file 'po/sr.po'
1182--- po/sr.po 2011-06-30 11:08:23 +0000
1183+++ po/sr.po 2011-07-29 14:55:48 +0000
1184@@ -7,7 +7,7 @@
1185 msgstr ""
1186 "Project-Id-Version: l 10n\n"
1187 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
1188-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
1189+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
1190 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
1191 "Last-Translator: Canonical OEM\n"
1192 "Language-Team: Serbian\n"
1193@@ -36,6 +36,9 @@
1194 msgid "Eject"
1195 msgstr ""
1196
1197+msgid "Eject parent drive"
1198+msgstr ""
1199+
1200 msgid "Empty Trash"
1201 msgstr ""
1202
1203@@ -80,7 +83,10 @@
1204 msgid "Quit"
1205 msgstr "Napusti"
1206
1207-msgid "Safely Remove"
1208+msgid "Safely remove"
1209+msgstr ""
1210+
1211+msgid "Safely remove parent drive"
1212 msgstr ""
1213
1214 msgid "Search"
1215@@ -95,6 +101,9 @@
1216 msgid "Shortcuts"
1217 msgstr ""
1218
1219+msgid "The drive has been successfully ejected"
1220+msgstr ""
1221+
1222 msgid "Touches the top left corner of the screen"
1223 msgstr ""
1224
1225
1226=== modified file 'po/sv.po'
1227--- po/sv.po 2011-06-30 11:08:23 +0000
1228+++ po/sv.po 2011-07-29 14:55:48 +0000
1229@@ -7,7 +7,7 @@
1230 msgstr ""
1231 "Project-Id-Version: l 10n\n"
1232 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
1233-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
1234+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
1235 "PO-Revision-Date: 2010-03-02 12:36-0500\n"
1236 "Last-Translator: Canonical OEM\n"
1237 "Language-Team: Swedish\n"
1238@@ -35,6 +35,9 @@
1239 msgid "Eject"
1240 msgstr ""
1241
1242+msgid "Eject parent drive"
1243+msgstr ""
1244+
1245 msgid "Empty Trash"
1246 msgstr ""
1247
1248@@ -79,7 +82,10 @@
1249 msgid "Quit"
1250 msgstr "Avsluta"
1251
1252-msgid "Safely Remove"
1253+msgid "Safely remove"
1254+msgstr ""
1255+
1256+msgid "Safely remove parent drive"
1257 msgstr ""
1258
1259 msgid "Search"
1260@@ -94,6 +100,9 @@
1261 msgid "Shortcuts"
1262 msgstr ""
1263
1264+msgid "The drive has been successfully ejected"
1265+msgstr ""
1266+
1267 msgid "Touches the top left corner of the screen"
1268 msgstr ""
1269
1270
1271=== modified file 'po/th.po'
1272--- po/th.po 2011-06-30 11:08:23 +0000
1273+++ po/th.po 2011-07-29 14:55:48 +0000
1274@@ -7,7 +7,7 @@
1275 msgstr ""
1276 "Project-Id-Version: l 10n\n"
1277 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
1278-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
1279+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
1280 "PO-Revision-Date: 2010-03-02 12:37-0500\n"
1281 "Last-Translator: Canonical OEM\n"
1282 "Language-Team: Thai\n"
1283@@ -34,6 +34,9 @@
1284 msgid "Eject"
1285 msgstr ""
1286
1287+msgid "Eject parent drive"
1288+msgstr ""
1289+
1290 msgid "Empty Trash"
1291 msgstr ""
1292
1293@@ -78,7 +81,10 @@
1294 msgid "Quit"
1295 msgstr "จบการทำงาน"
1296
1297-msgid "Safely Remove"
1298+msgid "Safely remove"
1299+msgstr ""
1300+
1301+msgid "Safely remove parent drive"
1302 msgstr ""
1303
1304 msgid "Search"
1305@@ -93,6 +99,9 @@
1306 msgid "Shortcuts"
1307 msgstr ""
1308
1309+msgid "The drive has been successfully ejected"
1310+msgstr ""
1311+
1312 msgid "Touches the top left corner of the screen"
1313 msgstr ""
1314
1315
1316=== modified file 'po/tr.po'
1317--- po/tr.po 2011-06-30 11:08:23 +0000
1318+++ po/tr.po 2011-07-29 14:55:48 +0000
1319@@ -7,7 +7,7 @@
1320 msgstr ""
1321 "Project-Id-Version: l 10n\n"
1322 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
1323-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
1324+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
1325 "PO-Revision-Date: 2010-03-02 12:37-0500\n"
1326 "Last-Translator: Canonical OEM\n"
1327 "Language-Team: Turkish\n"
1328@@ -35,6 +35,9 @@
1329 msgid "Eject"
1330 msgstr ""
1331
1332+msgid "Eject parent drive"
1333+msgstr ""
1334+
1335 msgid "Empty Trash"
1336 msgstr ""
1337
1338@@ -79,7 +82,10 @@
1339 msgid "Quit"
1340 msgstr "Çık"
1341
1342-msgid "Safely Remove"
1343+msgid "Safely remove"
1344+msgstr ""
1345+
1346+msgid "Safely remove parent drive"
1347 msgstr ""
1348
1349 msgid "Search"
1350@@ -94,6 +100,9 @@
1351 msgid "Shortcuts"
1352 msgstr ""
1353
1354+msgid "The drive has been successfully ejected"
1355+msgstr ""
1356+
1357 msgid "Touches the top left corner of the screen"
1358 msgstr ""
1359
1360
1361=== modified file 'po/unity.pot'
1362--- po/unity.pot 2011-07-15 10:01:40 +0000
1363+++ po/unity.pot 2011-07-29 14:55:48 +0000
1364@@ -8,7 +8,7 @@
1365 msgstr ""
1366 "Project-Id-Version: PACKAGE VERSION\n"
1367 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
1368-"POT-Creation-Date: 2011-07-09 23:12+0100\n"
1369+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
1370 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1371 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1372 "Language-Team: LANGUAGE <LL@li.org>\n"
1373@@ -29,12 +29,21 @@
1374 msgid "Eject"
1375 msgstr ""
1376
1377-msgid "Safely Remove"
1378+msgid "Eject parent drive"
1379+msgstr ""
1380+
1381+msgid "Safely remove"
1382+msgstr ""
1383+
1384+msgid "Safely remove parent drive"
1385 msgstr ""
1386
1387 msgid "Unmount"
1388 msgstr ""
1389
1390+msgid "The drive has been successfully ejected"
1391+msgstr ""
1392+
1393 msgid "Workspace Switcher"
1394 msgstr ""
1395
1396
1397=== modified file 'po/zh_CN.po'
1398--- po/zh_CN.po 2011-06-30 11:08:23 +0000
1399+++ po/zh_CN.po 2011-07-29 14:55:48 +0000
1400@@ -7,7 +7,7 @@
1401 msgstr ""
1402 "Project-Id-Version: l 10n\n"
1403 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
1404-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
1405+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
1406 "PO-Revision-Date: 2010-03-02 12:37-0500\n"
1407 "Last-Translator: Canonical OEM\n"
1408 "Language-Team: Chinese (simplified)\n"
1409@@ -34,6 +34,9 @@
1410 msgid "Eject"
1411 msgstr ""
1412
1413+msgid "Eject parent drive"
1414+msgstr ""
1415+
1416 msgid "Empty Trash"
1417 msgstr ""
1418
1419@@ -78,7 +81,10 @@
1420 msgid "Quit"
1421 msgstr "退出"
1422
1423-msgid "Safely Remove"
1424+msgid "Safely remove"
1425+msgstr ""
1426+
1427+msgid "Safely remove parent drive"
1428 msgstr ""
1429
1430 msgid "Search"
1431@@ -93,6 +99,9 @@
1432 msgid "Shortcuts"
1433 msgstr ""
1434
1435+msgid "The drive has been successfully ejected"
1436+msgstr ""
1437+
1438 msgid "Touches the top left corner of the screen"
1439 msgstr ""
1440
1441
1442=== modified file 'po/zh_TW.po'
1443--- po/zh_TW.po 2011-06-30 11:08:23 +0000
1444+++ po/zh_TW.po 2011-07-29 14:55:48 +0000
1445@@ -7,7 +7,7 @@
1446 msgstr ""
1447 "Project-Id-Version: l 10n\n"
1448 "Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
1449-"POT-Creation-Date: 2011-06-20 21:33+0100\n"
1450+"POT-Creation-Date: 2011-07-29 16:39+0200\n"
1451 "PO-Revision-Date: 2010-03-02 12:37-0500\n"
1452 "Last-Translator: Canonical OEM\n"
1453 "Language-Team: Chinese (traditional)\n"
1454@@ -34,6 +34,9 @@
1455 msgid "Eject"
1456 msgstr ""
1457
1458+msgid "Eject parent drive"
1459+msgstr ""
1460+
1461 msgid "Empty Trash"
1462 msgstr ""
1463
1464@@ -78,7 +81,10 @@
1465 msgid "Quit"
1466 msgstr "結束"
1467
1468-msgid "Safely Remove"
1469+msgid "Safely remove"
1470+msgstr ""
1471+
1472+msgid "Safely remove parent drive"
1473 msgstr ""
1474
1475 msgid "Search"
1476@@ -93,6 +99,9 @@
1477 msgid "Shortcuts"
1478 msgstr ""
1479
1480+msgid "The drive has been successfully ejected"
1481+msgstr ""
1482+
1483 msgid "Touches the top left corner of the screen"
1484 msgstr ""
1485