Merge lp:~mterry/ubiquity/plugins into lp:ubiquity

Proposed by Michael Terry
Status: Merged
Merged at revision: not available
Proposed branch: lp:~mterry/ubiquity/plugins
Merge into: lp:ubiquity
Diff against target: None lines
To merge this branch: bzr merge lp:~mterry/ubiquity/plugins
Reviewer Review Type Date Requested Status
Michael Terry (community) Needs Resubmitting
Colin Watson (community) Needs Fixing
Review via email: mp+9443@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Michael Terry (mterry) wrote :

This is phase 1 of my plugins work. I'm 3/4 of the way there, I think. The basic infrastructure is there, I've fully converted the first four pages of ubiquity to plugins (intro, language, location, keyboard) and half-converted the mythbuntu frontend to a series of plugins. The other ubiquity pages I've modified just enough to still work in the new scheme.

Slightly outdated spec about this work here: https://wiki.ubuntu.com/Ubiquity/Plugins . I intend to update that to match what this tree has shortly (tomorrow), but I wanted to get this merge request in, and maybe some eyeballs, before I finished that.

All the frontends should work with the new plugins. A plugin has to explicitly support a given frontend, so this let us much more elegantly handle the case of some frontends (notably debconf) supporting a different set of components than the others. All in all, hopefully 'elegant' is the watchword.

There should be no user-visible changes from this branch.

lp:~mterry/ubiquity/plugins updated
3348. By Michael Terry

remove obsolete function

3349. By Michael Terry

merge from trunk: new timezone bits and more

3350. By Michael Terry

merge with trunk; just use trunk's po files for now, will re-poify after merging this branch, until then it's too much noise

3351. By Michael Terry

whoops, uncommented line in rules

3352. By Michael Terry

support running install code from plugins

3353. By Michael Terry

support simple plugins that don't have an ask script but want to talk to debconf

3354. By Michael Terry

let plugin translation prefixes actually work in gtk/kde

3355. By Michael Terry

let InstallPlugins access debconf

3356. By Michael Terry

Some fixes that Evan suggested. Thanks, Evan

3357. By Michael Terry

remove debugging line

3358. By Michael Terry

use WEIGHT instead of filename ordering

3359. By Michael Terry

fix mythbuntu setup screen by allowing plugins that don't serve pages and by adding a is_install flag to some plugins

3360. By Michael Terry

merge from trunk

Revision history for this message
Colin Watson (cjwatson) wrote :

In general I like this approach. The branch is much too complicated for me to be able to do a line-by-line, so I'm just going to make some general comments and trust that you've done industrial-strength testing. In particular, noting your locale changes, I strongly recommend testing in Portuguese (both Portugal and Brazil) and Chinese.

Any particular reason that po/ubiquity.pot is removed in this branch?

I'd go for /usr/lib/ubiquity/plugins/ rather than /usr/lib/ubiquity/plugins.d/. The reason for this is that, normally, foo.d directories are a split-out analogue of a corresponding single file (see e.g. /etc/apt/sources.list and /etc/apt/sources.list.d/). In this case, there's no corresponding single file, and it would make more sense to drop the ".d".

There are some delicate dependencies in scripts/install.py which I'm not entirely sure you've preserved. The main one that comes to mind is that configure_timezone (scripts/install.py) may require network access for NTP syncing. I don't think configure_network has delicate dependencies of its own so you can probably just run it earlier.

Please always put a blank line between method definitions, even if the methods are short.

I'm not sure I like the get_ui design. Wouldn't it be simpler to just have attributes on the PageGtk etc. instances directly? Then the simple case would just be something like:

  class PageGtk:
      optional_widgets = 'stepMigrationAssistant'

... while in more complicated cases you could initialise attributes in __init__. You can then use hasattr() to find out if a page instance has a particular attribute, if need be.

Unless I'm missing something subtle, you should omit blank __init__ methods from page classes.

Could PageGtk (etc.) instances inherit from something, so that you have a debug method similar to that in FilteredCommand? That would be better than printing directly to sys.stderr in places.

"if type(widget_list).__name__ != 'list'" etc. - what's wrong with isinstance?

review: Needs Fixing
Revision history for this message
Michael Terry (mterry) wrote :

> Any particular reason that po/ubiquity.pot is removed in this branch?

No, that must have been an accident from a po/real-po merge.

> I'd go for /usr/lib/ubiquity/plugins/

OK

> There are some delicate dependencies in scripts/install.py which I'm not
> entirely sure you've preserved. The main one that comes to mind is that
> configure_timezone (scripts/install.py) may require network access for NTP
> syncing. I don't think configure_network has delicate dependencies of its own
> so you can probably just run it earlier.

Good point. Plugins should probably go near the end, since nothing can really depend on them anyway.

> Please always put a blank line between method definitions, even if the methods
> are short.

OK

> I'm not sure I like the get_ui design. Wouldn't it be simpler to just have
> attributes on the PageGtk etc. instances directly?

I didn't like doing that, because I didn't want to collide with future extensions. That is, I don't want a PageGTK to define a convenience member blarg today, if we may start using blarg as part of the API tomorrow. I suppose that's an argument for versioning.

However, it's not like I really avoided that problem with the current design. Right now, there are 3 interactions -- plugin->frontend-methods-and-data (Controller), frontend->plugin-methods (just calls the method on the PageGtk), and frontend->plugin-data (get_ui()). So we already have the collision problem with methods on the PageGtk.

We could fix this by a reverse Controller, putting methods pointers in get_ui() as well, namespacing API PageGtk members, or namespacing non-API PageGtk members.

I think I probably like namespacing non-API members the best and getting rid of get_ui(), as you suggest. Then official recommendations to plugin writers would be that all convenience members should start with an underscore.

> Unless I'm missing something subtle, you should omit blank __init__ methods
> from page classes.
>
> Could PageGtk (etc.) instances inherit from something, so that you have a
> debug method similar to that in FilteredCommand? That would be better than
> printing directly to sys.stderr in places.

OK

> "if type(widget_list).__name__ != 'list'" etc. - what's wrong with isinstance?

Nothing, now that you say it; I used isinstance elsewhere. Not sure what made me be so clunky there.

Revision history for this message
Colin Watson (cjwatson) wrote :

On Tue, Sep 01, 2009 at 01:58:08PM -0000, Michael Terry wrote:
> Colin Watson wrote:
> > There are some delicate dependencies in scripts/install.py which I'm not
> > entirely sure you've preserved. The main one that comes to mind is that
> > configure_timezone (scripts/install.py) may require network access for NTP
> > syncing. I don't think configure_network has delicate dependencies of its own
> > so you can probably just run it earlier.
>
> Good point. Plugins should probably go near the end, since nothing
> can really depend on them anyway.

configure_locales, at least, probably needs to run early.

> I think I probably like namespacing non-API members the best and
> getting rid of get_ui(), as you suggest. Then official
> recommendations to plugin writers would be that all convenience
> members should start with an underscore.

This sounds sensible to me.

lp:~mterry/ubiquity/plugins updated
3361. By Michael Terry

fixups from colin's review; add a PluginUI base class, use a debug() method in it, use plugins/ instead of plugins.d/, some style cleanup

3362. By Michael Terry

drop get_ui(), instead use namespaced members of the UI class

Revision history for this message
Michael Terry (mterry) wrote :

> configure_locales, at least, probably needs to run early.

I just moved network and apt ahead of plugins. Within the plugins, they are configured in the same order they are presented (which isn't necessarily a hard and fast rule -- if we had some page that needed a different ordering, it could be broken into two plugins, one for the UI-side and one for the install-side).

> > I think I probably like namespacing non-API members the best and
> > getting rid of get_ui(), as you suggest. Then official
> > recommendations to plugin writers would be that all convenience
> > members should start with an underscore.
>
> This sounds sensible to me.

OK, your suggested changes and the namespacing are now in my branch. But as we briefly discussed on IRC, this isn't urgent and is too risky for Alpha 5. But after A5, here's hoping!

review: Needs Resubmitting
lp:~mterry/ubiquity/plugins updated
3363. By Michael Terry

sync with trunk

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'd-i/manifest'
2--- d-i/manifest 2009-07-22 05:28:02 +0000
3+++ d-i/manifest 2009-07-28 13:59:30 +0000
4@@ -6,7 +6,7 @@
5 console-setup 1.34ubuntu1
6 debian-installer-utils 1.70ubuntu1
7 flash-kernel 2.13ubuntu8
8-grub-installer 1.39ubuntu1
9+grub-installer 1.40ubuntu1
10 hw-detect 1.72ubuntu1
11 kboot-installer 0.0.1ubuntu9
12 localechooser 2.12ubuntu2
13
14=== modified file 'debian/changelog'
15--- debian/changelog 2009-07-24 16:36:20 +0000
16+++ debian/changelog 2009-07-28 13:59:30 +0000
17@@ -9,6 +9,10 @@
18 * started work on moving over to the new theme/app.ui file
19 * new theme is in place and a simple install can be performed
20
21+ [ root ]
22+ * Automatic update of included source packages: grub-installer
23+ 1.40ubuntu1.
24+
25 -- Colin Watson <cjwatson@ubuntu.com> Wed, 22 Jul 2009 14:16:27 +0100
26
27 ubiquity (1.99.2) karmic; urgency=low
28
29=== modified file 'debian/po/af.po'
30--- debian/po/af.po 2009-07-14 13:14:35 +0000
31+++ debian/po/af.po 2009-07-28 15:35:01 +0000
32@@ -7,7 +7,7 @@
33 msgstr ""
34 "Project-Id-Version: debian-installer\n"
35 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
36-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
37+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
38 "PO-Revision-Date: 2007-10-29 18:09+0000\n"
39 "Last-Translator: Heybes <heybes@gmail.com>\n"
40 "Language-Team: Afrikaans <af@li.org>\n"
41@@ -56,7 +56,9 @@
42
43 #. Type: text
44 #. Description
45-#: ../ubiquity.templates:9001
46+#. Type: text
47+#. Description
48+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
49 msgid "Welcome"
50 msgstr "Welkom"
51
52@@ -1091,6 +1093,48 @@
53 msgid "Applying configuration"
54 msgstr ""
55
56+#. Type: text
57+#. Description
58+#: ../ubiquity.templates:159001
59+msgid "Timezone"
60+msgstr ""
61+
62+#. Type: text
63+#. Description
64+#: ../ubiquity.templates:160001
65+#, fuzzy
66+#| msgid "Keyboard layout"
67+msgid "Keyboard"
68+msgstr "Sleutelbord-uitleg"
69+
70+#. Type: text
71+#. Description
72+#: ../ubiquity.templates:161001
73+#, fuzzy
74+#| msgid "Prepare partitions"
75+msgid "Partition"
76+msgstr "Maak partisies gereed"
77+
78+#. Type: text
79+#. Description
80+#: ../ubiquity.templates:162001
81+msgid "User Info"
82+msgstr ""
83+
84+#. Type: text
85+#. Description
86+#: ../ubiquity.templates:163001
87+msgid "Summary"
88+msgstr ""
89+
90+#. Type: text
91+#. Description
92+#: ../ubiquity.templates:164001
93+#, fuzzy
94+#| msgid "Install"
95+msgid "Installing"
96+msgstr "Installeer"
97+
98 #. Type: note
99 #. Description
100 #: ../ubiquity-frontend-mythbuntu.templates:1001
101
102=== modified file 'debian/po/am.po'
103--- debian/po/am.po 2009-07-14 13:14:35 +0000
104+++ debian/po/am.po 2009-07-28 15:35:01 +0000
105@@ -6,7 +6,7 @@
106 msgstr ""
107 "Project-Id-Version: debian-installer\n"
108 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
109-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
110+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
111 "PO-Revision-Date: 2009-04-10 11:18+0000\n"
112 "Last-Translator: teferra <Unknown>\n"
113 "Language-Team: Amharic\n"
114@@ -55,7 +55,9 @@
115
116 #. Type: text
117 #. Description
118-#: ../ubiquity.templates:9001
119+#. Type: text
120+#. Description
121+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
122 msgid "Welcome"
123 msgstr "እንኳን ደህና መጡ"
124
125@@ -1073,6 +1075,46 @@
126 msgid "Applying configuration"
127 msgstr ""
128
129+#. Type: text
130+#. Description
131+#: ../ubiquity.templates:159001
132+msgid "Timezone"
133+msgstr ""
134+
135+#. Type: text
136+#. Description
137+#: ../ubiquity.templates:160001
138+msgid "Keyboard"
139+msgstr ""
140+
141+#. Type: text
142+#. Description
143+#: ../ubiquity.templates:161001
144+#, fuzzy
145+#| msgid "Prepare partitions"
146+msgid "Partition"
147+msgstr "ክፋይ አዘጋጅ"
148+
149+#. Type: text
150+#. Description
151+#: ../ubiquity.templates:162001
152+msgid "User Info"
153+msgstr ""
154+
155+#. Type: text
156+#. Description
157+#: ../ubiquity.templates:163001
158+msgid "Summary"
159+msgstr ""
160+
161+#. Type: text
162+#. Description
163+#: ../ubiquity.templates:164001
164+#, fuzzy
165+#| msgid "Install"
166+msgid "Installing"
167+msgstr "ትከል"
168+
169 #. Type: note
170 #. Description
171 #: ../ubiquity-frontend-mythbuntu.templates:1001
172
173=== modified file 'debian/po/ar.po'
174--- debian/po/ar.po 2009-07-14 13:14:35 +0000
175+++ debian/po/ar.po 2009-07-28 15:35:01 +0000
176@@ -6,7 +6,7 @@
177 msgstr ""
178 "Project-Id-Version: debian-installer\n"
179 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
180-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
181+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
182 "PO-Revision-Date: 2009-04-12 14:09+0000\n"
183 "Last-Translator: Khaled Hosny <khaledhosny@eglug.org>\n"
184 "Language-Team: Arabic <support@arabeyes.org>\n"
185@@ -57,7 +57,9 @@
186
187 #. Type: text
188 #. Description
189-#: ../ubiquity.templates:9001
190+#. Type: text
191+#. Description
192+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
193 msgid "Welcome"
194 msgstr "أهلا بك"
195
196@@ -1135,6 +1137,48 @@
197 msgid "Applying configuration"
198 msgstr ""
199
200+#. Type: text
201+#. Description
202+#: ../ubiquity.templates:159001
203+msgid "Timezone"
204+msgstr ""
205+
206+#. Type: text
207+#. Description
208+#: ../ubiquity.templates:160001
209+#, fuzzy
210+#| msgid "Keyboard layout"
211+msgid "Keyboard"
212+msgstr "تخطيط لوحة المفاتيح"
213+
214+#. Type: text
215+#. Description
216+#: ../ubiquity.templates:161001
217+#, fuzzy
218+#| msgid "New partition"
219+msgid "Partition"
220+msgstr "قسم جديد"
221+
222+#. Type: text
223+#. Description
224+#: ../ubiquity.templates:162001
225+msgid "User Info"
226+msgstr ""
227+
228+#. Type: text
229+#. Description
230+#: ../ubiquity.templates:163001
231+msgid "Summary"
232+msgstr ""
233+
234+#. Type: text
235+#. Description
236+#: ../ubiquity.templates:164001
237+#, fuzzy
238+#| msgid "Install"
239+msgid "Installing"
240+msgstr "ثبت"
241+
242 #. Type: note
243 #. Description
244 #: ../ubiquity-frontend-mythbuntu.templates:1001
245@@ -1405,8 +1449,5 @@
246 #~ msgid "Select your time zone from the map, or by region and city."
247 #~ msgstr "حدد منطقتك الزمنية من الخريطة او باستخدام الإقليم والمدينة"
248
249-#~ msgid "New partition"
250-#~ msgstr "قسم جديد"
251-
252 #~ msgid "Delete partition"
253 #~ msgstr "احذف القسم"
254
255=== modified file 'debian/po/az.po'
256--- debian/po/az.po 2009-07-14 13:14:35 +0000
257+++ debian/po/az.po 2009-07-28 15:35:01 +0000
258@@ -7,7 +7,7 @@
259 msgstr ""
260 "Project-Id-Version: debian-installer\n"
261 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
262-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
263+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
264 "PO-Revision-Date: 2008-07-17 06:34+0000\n"
265 "Last-Translator: Teymur Huseynov <Unknown>\n"
266 "Language-Team: Azerbaijani <az@li.org>\n"
267@@ -56,7 +56,9 @@
268
269 #. Type: text
270 #. Description
271-#: ../ubiquity.templates:9001
272+#. Type: text
273+#. Description
274+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
275 msgid "Welcome"
276 msgstr ""
277
278@@ -1070,6 +1072,42 @@
279 msgid "Applying configuration"
280 msgstr ""
281
282+#. Type: text
283+#. Description
284+#: ../ubiquity.templates:159001
285+msgid "Timezone"
286+msgstr ""
287+
288+#. Type: text
289+#. Description
290+#: ../ubiquity.templates:160001
291+msgid "Keyboard"
292+msgstr ""
293+
294+#. Type: text
295+#. Description
296+#: ../ubiquity.templates:161001
297+msgid "Partition"
298+msgstr ""
299+
300+#. Type: text
301+#. Description
302+#: ../ubiquity.templates:162001
303+msgid "User Info"
304+msgstr ""
305+
306+#. Type: text
307+#. Description
308+#: ../ubiquity.templates:163001
309+msgid "Summary"
310+msgstr ""
311+
312+#. Type: text
313+#. Description
314+#: ../ubiquity.templates:164001
315+msgid "Installing"
316+msgstr ""
317+
318 #. Type: note
319 #. Description
320 #: ../ubiquity-frontend-mythbuntu.templates:1001
321
322=== modified file 'debian/po/be.po'
323--- debian/po/be.po 2009-07-14 13:14:35 +0000
324+++ debian/po/be.po 2009-07-28 15:35:01 +0000
325@@ -6,7 +6,7 @@
326 msgstr ""
327 "Project-Id-Version: debian-installer\n"
328 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
329-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
330+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
331 "PO-Revision-Date: 2009-04-11 23:13+0000\n"
332 "Last-Translator: Alexander Nyakhaychyk <nyakhaychyk@gmail.com>\n"
333 "Language-Team: Belarusian <i18n@mova.org>\n"
334@@ -57,7 +57,9 @@
335
336 #. Type: text
337 #. Description
338-#: ../ubiquity.templates:9001
339+#. Type: text
340+#. Description
341+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
342 msgid "Welcome"
343 msgstr "Вітаем"
344
345@@ -1115,6 +1117,48 @@
346 msgid "Applying configuration"
347 msgstr ""
348
349+#. Type: text
350+#. Description
351+#: ../ubiquity.templates:159001
352+msgid "Timezone"
353+msgstr ""
354+
355+#. Type: text
356+#. Description
357+#: ../ubiquity.templates:160001
358+#, fuzzy
359+#| msgid "Keyboard layout"
360+msgid "Keyboard"
361+msgstr "Раскладка клявіятуры"
362+
363+#. Type: text
364+#. Description
365+#: ../ubiquity.templates:161001
366+#, fuzzy
367+#| msgid "Prepare partitions"
368+msgid "Partition"
369+msgstr "Падрыхтуй партыцыі"
370+
371+#. Type: text
372+#. Description
373+#: ../ubiquity.templates:162001
374+msgid "User Info"
375+msgstr ""
376+
377+#. Type: text
378+#. Description
379+#: ../ubiquity.templates:163001
380+msgid "Summary"
381+msgstr ""
382+
383+#. Type: text
384+#. Description
385+#: ../ubiquity.templates:164001
386+#, fuzzy
387+#| msgid "Install"
388+msgid "Installing"
389+msgstr "Усталяваць"
390+
391 #. Type: note
392 #. Description
393 #: ../ubiquity-frontend-mythbuntu.templates:1001
394
395=== modified file 'debian/po/bg.po'
396--- debian/po/bg.po 2009-07-14 13:14:35 +0000
397+++ debian/po/bg.po 2009-07-28 15:35:01 +0000
398@@ -6,7 +6,7 @@
399 msgstr ""
400 "Project-Id-Version: debian-installer\n"
401 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
402-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
403+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
404 "PO-Revision-Date: 2009-04-10 19:30+0000\n"
405 "Last-Translator: Krasimir Chonov <mk2616@abv.bg>\n"
406 "Language-Team: American English <>\n"
407@@ -59,7 +59,9 @@
408
409 #. Type: text
410 #. Description
411-#: ../ubiquity.templates:9001
412+#. Type: text
413+#. Description
414+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
415 msgid "Welcome"
416 msgstr "Добре дошли"
417
418@@ -1164,6 +1166,48 @@
419 msgid "Applying configuration"
420 msgstr ""
421
422+#. Type: text
423+#. Description
424+#: ../ubiquity.templates:159001
425+msgid "Timezone"
426+msgstr ""
427+
428+#. Type: text
429+#. Description
430+#: ../ubiquity.templates:160001
431+#, fuzzy
432+#| msgid "Keyboard layout"
433+msgid "Keyboard"
434+msgstr "Клавиатурна подредба"
435+
436+#. Type: text
437+#. Description
438+#: ../ubiquity.templates:161001
439+#, fuzzy
440+#| msgid "New partition"
441+msgid "Partition"
442+msgstr "Нов дял"
443+
444+#. Type: text
445+#. Description
446+#: ../ubiquity.templates:162001
447+msgid "User Info"
448+msgstr ""
449+
450+#. Type: text
451+#. Description
452+#: ../ubiquity.templates:163001
453+msgid "Summary"
454+msgstr ""
455+
456+#. Type: text
457+#. Description
458+#: ../ubiquity.templates:164001
459+#, fuzzy
460+#| msgid "Install"
461+msgid "Installing"
462+msgstr "Инсталиране"
463+
464 #. Type: note
465 #. Description
466 #: ../ubiquity-frontend-mythbuntu.templates:1001
467@@ -1438,8 +1482,5 @@
468 #~ msgid "Select your time zone from the map, or by region and city."
469 #~ msgstr "Изберете вашата часове зона от картата или регион и град."
470
471-#~ msgid "New partition"
472-#~ msgstr "Нов дял"
473-
474 #~ msgid "Delete partition"
475 #~ msgstr "Изтриване на дял"
476
477=== modified file 'debian/po/bn.po'
478--- debian/po/bn.po 2009-07-14 13:14:35 +0000
479+++ debian/po/bn.po 2009-07-28 15:35:01 +0000
480@@ -6,7 +6,7 @@
481 msgstr ""
482 "Project-Id-Version: debian-installer\n"
483 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
484-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
485+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
486 "PO-Revision-Date: 2009-04-10 11:19+0000\n"
487 "Last-Translator: Mahay Alam Khan <Unknown>\n"
488 "Language-Team: Bangla <core@BengaLinux.Org>\n"
489@@ -55,7 +55,9 @@
490
491 #. Type: text
492 #. Description
493-#: ../ubiquity.templates:9001
494+#. Type: text
495+#. Description
496+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
497 msgid "Welcome"
498 msgstr "স্বাগতম"
499
500@@ -1086,6 +1088,48 @@
501 msgid "Applying configuration"
502 msgstr ""
503
504+#. Type: text
505+#. Description
506+#: ../ubiquity.templates:159001
507+msgid "Timezone"
508+msgstr ""
509+
510+#. Type: text
511+#. Description
512+#: ../ubiquity.templates:160001
513+#, fuzzy
514+#| msgid "Keyboard layout"
515+msgid "Keyboard"
516+msgstr "কীবোর্ড বিন্যাস (Layout)"
517+
518+#. Type: text
519+#. Description
520+#: ../ubiquity.templates:161001
521+#, fuzzy
522+#| msgid "Edit partition"
523+msgid "Partition"
524+msgstr "পার্টিশন সম্পাদন করুন"
525+
526+#. Type: text
527+#. Description
528+#: ../ubiquity.templates:162001
529+msgid "User Info"
530+msgstr ""
531+
532+#. Type: text
533+#. Description
534+#: ../ubiquity.templates:163001
535+msgid "Summary"
536+msgstr ""
537+
538+#. Type: text
539+#. Description
540+#: ../ubiquity.templates:164001
541+#, fuzzy
542+#| msgid "Install"
543+msgid "Installing"
544+msgstr "ইনস্টল করো"
545+
546 #. Type: note
547 #. Description
548 #: ../ubiquity-frontend-mythbuntu.templates:1001
549
550=== modified file 'debian/po/br.po'
551--- debian/po/br.po 2009-07-14 13:14:35 +0000
552+++ debian/po/br.po 2009-07-28 15:35:01 +0000
553@@ -7,7 +7,7 @@
554 msgstr ""
555 "Project-Id-Version: debian-installer\n"
556 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
557-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
558+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
559 "PO-Revision-Date: 2009-04-06 14:56+0000\n"
560 "Last-Translator: Denis ARNAUD <Unknown>\n"
561 "Language-Team: Breton <br@li.org>\n"
562@@ -58,7 +58,9 @@
563
564 #. Type: text
565 #. Description
566-#: ../ubiquity.templates:9001
567+#. Type: text
568+#. Description
569+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
570 msgid "Welcome"
571 msgstr "Donedigezh vat"
572
573@@ -1103,6 +1105,48 @@
574 msgid "Applying configuration"
575 msgstr ""
576
577+#. Type: text
578+#. Description
579+#: ../ubiquity.templates:159001
580+msgid "Timezone"
581+msgstr ""
582+
583+#. Type: text
584+#. Description
585+#: ../ubiquity.templates:160001
586+#, fuzzy
587+#| msgid "Keyboard layout"
588+msgid "Keyboard"
589+msgstr "Aozadur ar stokellaoueg"
590+
591+#. Type: text
592+#. Description
593+#: ../ubiquity.templates:161001
594+#, fuzzy
595+#| msgid "Edit partition"
596+msgid "Partition"
597+msgstr "Aozañ ar rann"
598+
599+#. Type: text
600+#. Description
601+#: ../ubiquity.templates:162001
602+msgid "User Info"
603+msgstr ""
604+
605+#. Type: text
606+#. Description
607+#: ../ubiquity.templates:163001
608+msgid "Summary"
609+msgstr ""
610+
611+#. Type: text
612+#. Description
613+#: ../ubiquity.templates:164001
614+#, fuzzy
615+#| msgid "Install"
616+msgid "Installing"
617+msgstr "Staliañ"
618+
619 #. Type: note
620 #. Description
621 #: ../ubiquity-frontend-mythbuntu.templates:1001
622
623=== modified file 'debian/po/bs.po'
624--- debian/po/bs.po 2009-07-14 13:14:35 +0000
625+++ debian/po/bs.po 2009-07-28 15:35:01 +0000
626@@ -6,7 +6,7 @@
627 msgstr ""
628 "Project-Id-Version: debian-installer\n"
629 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
630-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
631+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
632 "PO-Revision-Date: 2009-04-10 11:19+0000\n"
633 "Last-Translator: adioe3 <Unknown>\n"
634 "Language-Team: Bosnian <lokal@linux.org.ba>\n"
635@@ -55,7 +55,9 @@
636
637 #. Type: text
638 #. Description
639-#: ../ubiquity.templates:9001
640+#. Type: text
641+#. Description
642+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
643 msgid "Welcome"
644 msgstr "Dobrodošli"
645
646@@ -1085,6 +1087,44 @@
647 msgid "Applying configuration"
648 msgstr ""
649
650+#. Type: text
651+#. Description
652+#: ../ubiquity.templates:159001
653+msgid "Timezone"
654+msgstr ""
655+
656+#. Type: text
657+#. Description
658+#: ../ubiquity.templates:160001
659+msgid "Keyboard"
660+msgstr ""
661+
662+#. Type: text
663+#. Description
664+#: ../ubiquity.templates:161001
665+msgid "Partition"
666+msgstr ""
667+
668+#. Type: text
669+#. Description
670+#: ../ubiquity.templates:162001
671+msgid "User Info"
672+msgstr ""
673+
674+#. Type: text
675+#. Description
676+#: ../ubiquity.templates:163001
677+msgid "Summary"
678+msgstr ""
679+
680+#. Type: text
681+#. Description
682+#: ../ubiquity.templates:164001
683+#, fuzzy
684+#| msgid "Install"
685+msgid "Installing"
686+msgstr "Instalacija"
687+
688 #. Type: note
689 #. Description
690 #: ../ubiquity-frontend-mythbuntu.templates:1001
691
692=== modified file 'debian/po/ca.po'
693--- debian/po/ca.po 2009-07-14 13:14:35 +0000
694+++ debian/po/ca.po 2009-07-28 15:35:01 +0000
695@@ -6,7 +6,7 @@
696 msgstr ""
697 "Project-Id-Version: debian-installer\n"
698 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
699-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
700+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
701 "PO-Revision-Date: 2009-04-14 17:32+0000\n"
702 "Last-Translator: Joan Duran <jodufi@gmail.com>\n"
703 "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
704@@ -59,7 +59,9 @@
705
706 #. Type: text
707 #. Description
708-#: ../ubiquity.templates:9001
709+#. Type: text
710+#. Description
711+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
712 msgid "Welcome"
713 msgstr "Benvingut"
714
715@@ -1165,6 +1167,48 @@
716 msgid "Applying configuration"
717 msgstr ""
718
719+#. Type: text
720+#. Description
721+#: ../ubiquity.templates:159001
722+msgid "Timezone"
723+msgstr ""
724+
725+#. Type: text
726+#. Description
727+#: ../ubiquity.templates:160001
728+#, fuzzy
729+#| msgid "Keyboard layout"
730+msgid "Keyboard"
731+msgstr "Disposició de teclat"
732+
733+#. Type: text
734+#. Description
735+#: ../ubiquity.templates:161001
736+#, fuzzy
737+#| msgid "New partition"
738+msgid "Partition"
739+msgstr "Partició nova"
740+
741+#. Type: text
742+#. Description
743+#: ../ubiquity.templates:162001
744+msgid "User Info"
745+msgstr ""
746+
747+#. Type: text
748+#. Description
749+#: ../ubiquity.templates:163001
750+msgid "Summary"
751+msgstr ""
752+
753+#. Type: text
754+#. Description
755+#: ../ubiquity.templates:164001
756+#, fuzzy
757+#| msgid "Install"
758+msgid "Installing"
759+msgstr "Instal·la"
760+
761 #. Type: note
762 #. Description
763 #: ../ubiquity-frontend-mythbuntu.templates:1001
764@@ -1444,8 +1488,5 @@
765 #~ msgstr ""
766 #~ "Seleccioneu la vostra zona horària en el mapa, o bé per regió i ciutat."
767
768-#~ msgid "New partition"
769-#~ msgstr "Partició nova"
770-
771 #~ msgid "Delete partition"
772 #~ msgstr "Suprimeix la partició"
773
774=== modified file 'debian/po/cs.po'
775--- debian/po/cs.po 2009-07-14 13:14:35 +0000
776+++ debian/po/cs.po 2009-07-28 15:35:01 +0000
777@@ -6,7 +6,7 @@
778 msgstr ""
779 "Project-Id-Version: debian-installer\n"
780 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
781-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
782+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
783 "PO-Revision-Date: 2009-04-12 08:34+0000\n"
784 "Last-Translator: Kamil Páral <ripper42@gmail.com>\n"
785 "Language-Team: Czech <provoz@debian.cz>\n"
786@@ -57,7 +57,9 @@
787
788 #. Type: text
789 #. Description
790-#: ../ubiquity.templates:9001
791+#. Type: text
792+#. Description
793+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
794 msgid "Welcome"
795 msgstr "Vítejte"
796
797@@ -1149,6 +1151,48 @@
798 msgid "Applying configuration"
799 msgstr ""
800
801+#. Type: text
802+#. Description
803+#: ../ubiquity.templates:159001
804+msgid "Timezone"
805+msgstr ""
806+
807+#. Type: text
808+#. Description
809+#: ../ubiquity.templates:160001
810+#, fuzzy
811+#| msgid "Keyboard layout"
812+msgid "Keyboard"
813+msgstr "Rozložení klávesnice"
814+
815+#. Type: text
816+#. Description
817+#: ../ubiquity.templates:161001
818+#, fuzzy
819+#| msgid "New partition"
820+msgid "Partition"
821+msgstr "Nový oddíl"
822+
823+#. Type: text
824+#. Description
825+#: ../ubiquity.templates:162001
826+msgid "User Info"
827+msgstr ""
828+
829+#. Type: text
830+#. Description
831+#: ../ubiquity.templates:163001
832+msgid "Summary"
833+msgstr ""
834+
835+#. Type: text
836+#. Description
837+#: ../ubiquity.templates:164001
838+#, fuzzy
839+#| msgid "Install"
840+msgid "Installing"
841+msgstr "Instalovat"
842+
843 #. Type: note
844 #. Description
845 #: ../ubiquity-frontend-mythbuntu.templates:1001
846@@ -1396,8 +1440,5 @@
847 #~ msgid "Select your time zone from the map, or by region and city."
848 #~ msgstr "Zvolte svoji časovou zónu na mapě nebo volbou oblasti a města."
849
850-#~ msgid "New partition"
851-#~ msgstr "Nový oddíl"
852-
853 #~ msgid "Delete partition"
854 #~ msgstr "Odstranit oddíl"
855
856=== modified file 'debian/po/csb.po'
857--- debian/po/csb.po 2009-07-14 13:14:35 +0000
858+++ debian/po/csb.po 2009-07-28 15:35:01 +0000
859@@ -7,7 +7,7 @@
860 msgstr ""
861 "Project-Id-Version: debian-installer\n"
862 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
863-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
864+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
865 "PO-Revision-Date: 2008-11-28 21:56+0000\n"
866 "Last-Translator: Mark Kwidzińsczi <mark@linuxcsb.org>\n"
867 "Language-Team: Kashubian <csb@li.org>\n"
868@@ -56,7 +56,9 @@
869
870 #. Type: text
871 #. Description
872-#: ../ubiquity.templates:9001
873+#. Type: text
874+#. Description
875+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
876 msgid "Welcome"
877 msgstr "Witôj"
878
879@@ -1121,6 +1123,48 @@
880 msgid "Applying configuration"
881 msgstr ""
882
883+#. Type: text
884+#. Description
885+#: ../ubiquity.templates:159001
886+msgid "Timezone"
887+msgstr ""
888+
889+#. Type: text
890+#. Description
891+#: ../ubiquity.templates:160001
892+#, fuzzy
893+#| msgid "Keyboard layout"
894+msgid "Keyboard"
895+msgstr "Ùkłôd klawiaturë (kluczplatë)"
896+
897+#. Type: text
898+#. Description
899+#: ../ubiquity.templates:161001
900+#, fuzzy
901+#| msgid "New partition"
902+msgid "Partition"
903+msgstr "Nowô particëjô"
904+
905+#. Type: text
906+#. Description
907+#: ../ubiquity.templates:162001
908+msgid "User Info"
909+msgstr ""
910+
911+#. Type: text
912+#. Description
913+#: ../ubiquity.templates:163001
914+msgid "Summary"
915+msgstr ""
916+
917+#. Type: text
918+#. Description
919+#: ../ubiquity.templates:164001
920+#, fuzzy
921+#| msgid "Install"
922+msgid "Installing"
923+msgstr "Instalëjë"
924+
925 #. Type: note
926 #. Description
927 #: ../ubiquity-frontend-mythbuntu.templates:1001
928@@ -1355,8 +1399,5 @@
929 msgid "Configuring infrared devices..."
930 msgstr ""
931
932-#~ msgid "New partition"
933-#~ msgstr "Nowô particëjô"
934-
935 #~ msgid "Delete partition"
936 #~ msgstr "Rëmôj particëjã"
937
938=== modified file 'debian/po/cy.po'
939--- debian/po/cy.po 2009-07-14 13:14:35 +0000
940+++ debian/po/cy.po 2009-07-28 15:35:01 +0000
941@@ -6,7 +6,7 @@
942 msgstr ""
943 "Project-Id-Version: debian-installer\n"
944 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
945-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
946+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
947 "PO-Revision-Date: 2009-04-10 11:19+0000\n"
948 "Last-Translator: Notclive <mynamesnotclive@notclive.co.uk>\n"
949 "Language-Team: Welsh <>\n"
950@@ -55,7 +55,9 @@
951
952 #. Type: text
953 #. Description
954-#: ../ubiquity.templates:9001
955+#. Type: text
956+#. Description
957+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
958 msgid "Welcome"
959 msgstr "Croeso"
960
961@@ -1069,6 +1071,42 @@
962 msgid "Applying configuration"
963 msgstr ""
964
965+#. Type: text
966+#. Description
967+#: ../ubiquity.templates:159001
968+msgid "Timezone"
969+msgstr ""
970+
971+#. Type: text
972+#. Description
973+#: ../ubiquity.templates:160001
974+msgid "Keyboard"
975+msgstr ""
976+
977+#. Type: text
978+#. Description
979+#: ../ubiquity.templates:161001
980+msgid "Partition"
981+msgstr ""
982+
983+#. Type: text
984+#. Description
985+#: ../ubiquity.templates:162001
986+msgid "User Info"
987+msgstr ""
988+
989+#. Type: text
990+#. Description
991+#: ../ubiquity.templates:163001
992+msgid "Summary"
993+msgstr ""
994+
995+#. Type: text
996+#. Description
997+#: ../ubiquity.templates:164001
998+msgid "Installing"
999+msgstr ""
1000+
1001 #. Type: note
1002 #. Description
1003 #: ../ubiquity-frontend-mythbuntu.templates:1001
1004
1005=== modified file 'debian/po/da.po'
1006--- debian/po/da.po 2009-07-14 13:14:35 +0000
1007+++ debian/po/da.po 2009-07-28 15:35:01 +0000
1008@@ -6,7 +6,7 @@
1009 msgstr ""
1010 "Project-Id-Version: debian-installer\n"
1011 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
1012-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
1013+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
1014 "PO-Revision-Date: 2009-04-10 11:19+0000\n"
1015 "Last-Translator: Colin Watson <cjwatson@canonical.com>\n"
1016 "Language-Team: <en@li.org>\n"
1017@@ -57,7 +57,9 @@
1018
1019 #. Type: text
1020 #. Description
1021-#: ../ubiquity.templates:9001
1022+#. Type: text
1023+#. Description
1024+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
1025 msgid "Welcome"
1026 msgstr "Velkommen"
1027
1028@@ -1160,6 +1162,48 @@
1029 msgid "Applying configuration"
1030 msgstr ""
1031
1032+#. Type: text
1033+#. Description
1034+#: ../ubiquity.templates:159001
1035+msgid "Timezone"
1036+msgstr ""
1037+
1038+#. Type: text
1039+#. Description
1040+#: ../ubiquity.templates:160001
1041+#, fuzzy
1042+#| msgid "Keyboard layout"
1043+msgid "Keyboard"
1044+msgstr "Tastaturlayout"
1045+
1046+#. Type: text
1047+#. Description
1048+#: ../ubiquity.templates:161001
1049+#, fuzzy
1050+#| msgid "New partition"
1051+msgid "Partition"
1052+msgstr "Ny partition"
1053+
1054+#. Type: text
1055+#. Description
1056+#: ../ubiquity.templates:162001
1057+msgid "User Info"
1058+msgstr ""
1059+
1060+#. Type: text
1061+#. Description
1062+#: ../ubiquity.templates:163001
1063+msgid "Summary"
1064+msgstr ""
1065+
1066+#. Type: text
1067+#. Description
1068+#: ../ubiquity.templates:164001
1069+#, fuzzy
1070+#| msgid "Install"
1071+msgid "Installing"
1072+msgstr "Installér"
1073+
1074 #. Type: note
1075 #. Description
1076 #: ../ubiquity-frontend-mythbuntu.templates:1001
1077@@ -1417,8 +1461,5 @@
1078 #~ msgid "Select your time zone from the map, or by region and city."
1079 #~ msgstr "Vælg din tidszone på kortet eller vælg ud fra region og by."
1080
1081-#~ msgid "New partition"
1082-#~ msgstr "Ny partition"
1083-
1084 #~ msgid "Delete partition"
1085 #~ msgstr "Slet partition"
1086
1087=== modified file 'debian/po/de.po'
1088--- debian/po/de.po 2009-07-14 13:14:35 +0000
1089+++ debian/po/de.po 2009-07-28 15:35:01 +0000
1090@@ -6,7 +6,7 @@
1091 msgstr ""
1092 "Project-Id-Version: debian-installer\n"
1093 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
1094-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
1095+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
1096 "PO-Revision-Date: 2009-04-11 09:43+0000\n"
1097 "Last-Translator: Moritz Baumann <Unknown>\n"
1098 "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n"
1099@@ -57,7 +57,9 @@
1100
1101 #. Type: text
1102 #. Description
1103-#: ../ubiquity.templates:9001
1104+#. Type: text
1105+#. Description
1106+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
1107 msgid "Welcome"
1108 msgstr "Willkommen"
1109
1110@@ -1167,6 +1169,48 @@
1111 msgid "Applying configuration"
1112 msgstr ""
1113
1114+#. Type: text
1115+#. Description
1116+#: ../ubiquity.templates:159001
1117+msgid "Timezone"
1118+msgstr ""
1119+
1120+#. Type: text
1121+#. Description
1122+#: ../ubiquity.templates:160001
1123+#, fuzzy
1124+#| msgid "Keyboard layout"
1125+msgid "Keyboard"
1126+msgstr "Tastaturbelegung"
1127+
1128+#. Type: text
1129+#. Description
1130+#: ../ubiquity.templates:161001
1131+#, fuzzy
1132+#| msgid "New partition"
1133+msgid "Partition"
1134+msgstr "Neue Partition"
1135+
1136+#. Type: text
1137+#. Description
1138+#: ../ubiquity.templates:162001
1139+msgid "User Info"
1140+msgstr ""
1141+
1142+#. Type: text
1143+#. Description
1144+#: ../ubiquity.templates:163001
1145+msgid "Summary"
1146+msgstr ""
1147+
1148+#. Type: text
1149+#. Description
1150+#: ../ubiquity.templates:164001
1151+#, fuzzy
1152+#| msgid "Install"
1153+msgid "Installing"
1154+msgstr "Installieren"
1155+
1156 #. Type: note
1157 #. Description
1158 #: ../ubiquity-frontend-mythbuntu.templates:1001
1159@@ -1437,8 +1481,5 @@
1160 #~ msgid "Select your time zone from the map, or by region and city."
1161 #~ msgstr "Wählen Sie ihre Zeitzone aus der Karte oder nach Region und Stadt."
1162
1163-#~ msgid "New partition"
1164-#~ msgstr "Neue Partition"
1165-
1166 #~ msgid "Delete partition"
1167 #~ msgstr "Partition löschen"
1168
1169=== modified file 'debian/po/dv.po'
1170--- debian/po/dv.po 2009-07-14 13:14:35 +0000
1171+++ debian/po/dv.po 2009-07-28 15:35:01 +0000
1172@@ -7,7 +7,7 @@
1173 msgstr ""
1174 "Project-Id-Version: debian-installer\n"
1175 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
1176-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
1177+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
1178 "PO-Revision-Date: 2006-09-22 03:11+0000\n"
1179 "Last-Translator: Inash Zubair <Unknown>\n"
1180 "Language-Team: Divehi <dv@li.org>\n"
1181@@ -56,7 +56,9 @@
1182
1183 #. Type: text
1184 #. Description
1185-#: ../ubiquity.templates:9001
1186+#. Type: text
1187+#. Description
1188+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
1189 msgid "Welcome"
1190 msgstr ""
1191
1192@@ -1070,6 +1072,42 @@
1193 msgid "Applying configuration"
1194 msgstr ""
1195
1196+#. Type: text
1197+#. Description
1198+#: ../ubiquity.templates:159001
1199+msgid "Timezone"
1200+msgstr ""
1201+
1202+#. Type: text
1203+#. Description
1204+#: ../ubiquity.templates:160001
1205+msgid "Keyboard"
1206+msgstr ""
1207+
1208+#. Type: text
1209+#. Description
1210+#: ../ubiquity.templates:161001
1211+msgid "Partition"
1212+msgstr ""
1213+
1214+#. Type: text
1215+#. Description
1216+#: ../ubiquity.templates:162001
1217+msgid "User Info"
1218+msgstr ""
1219+
1220+#. Type: text
1221+#. Description
1222+#: ../ubiquity.templates:163001
1223+msgid "Summary"
1224+msgstr ""
1225+
1226+#. Type: text
1227+#. Description
1228+#: ../ubiquity.templates:164001
1229+msgid "Installing"
1230+msgstr ""
1231+
1232 #. Type: note
1233 #. Description
1234 #: ../ubiquity-frontend-mythbuntu.templates:1001
1235
1236=== modified file 'debian/po/dz.po'
1237--- debian/po/dz.po 2009-07-14 13:14:35 +0000
1238+++ debian/po/dz.po 2009-07-28 15:35:01 +0000
1239@@ -6,7 +6,7 @@
1240 msgstr ""
1241 "Project-Id-Version: debian-installer\n"
1242 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
1243-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
1244+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
1245 "PO-Revision-Date: 2009-04-10 11:20+0000\n"
1246 "Last-Translator: Jurmey Rabgay (Bongop DIT,BHUTAN) <Unknown>\n"
1247 "Language-Team: Dzongkha <pgeyleg@dit.gov.bt>\n"
1248@@ -55,7 +55,9 @@
1249
1250 #. Type: text
1251 #. Description
1252-#: ../ubiquity.templates:9001
1253+#. Type: text
1254+#. Description
1255+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
1256 msgid "Welcome"
1257 msgstr ""
1258
1259@@ -1069,6 +1071,42 @@
1260 msgid "Applying configuration"
1261 msgstr ""
1262
1263+#. Type: text
1264+#. Description
1265+#: ../ubiquity.templates:159001
1266+msgid "Timezone"
1267+msgstr ""
1268+
1269+#. Type: text
1270+#. Description
1271+#: ../ubiquity.templates:160001
1272+msgid "Keyboard"
1273+msgstr ""
1274+
1275+#. Type: text
1276+#. Description
1277+#: ../ubiquity.templates:161001
1278+msgid "Partition"
1279+msgstr ""
1280+
1281+#. Type: text
1282+#. Description
1283+#: ../ubiquity.templates:162001
1284+msgid "User Info"
1285+msgstr ""
1286+
1287+#. Type: text
1288+#. Description
1289+#: ../ubiquity.templates:163001
1290+msgid "Summary"
1291+msgstr ""
1292+
1293+#. Type: text
1294+#. Description
1295+#: ../ubiquity.templates:164001
1296+msgid "Installing"
1297+msgstr ""
1298+
1299 #. Type: note
1300 #. Description
1301 #: ../ubiquity-frontend-mythbuntu.templates:1001
1302
1303=== modified file 'debian/po/el.po'
1304--- debian/po/el.po 2009-07-14 13:14:35 +0000
1305+++ debian/po/el.po 2009-07-28 15:35:01 +0000
1306@@ -6,7 +6,7 @@
1307 msgstr ""
1308 "Project-Id-Version: debian-installer\n"
1309 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
1310-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
1311+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
1312 "PO-Revision-Date: 2009-04-10 11:20+0000\n"
1313 "Last-Translator: Colin Watson <cjwatson@canonical.com>\n"
1314 "Language-Team: <en@li.org>\n"
1315@@ -57,7 +57,9 @@
1316
1317 #. Type: text
1318 #. Description
1319-#: ../ubiquity.templates:9001
1320+#. Type: text
1321+#. Description
1322+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
1323 msgid "Welcome"
1324 msgstr "Καλώς ήλθατε"
1325
1326@@ -1174,6 +1176,48 @@
1327 msgid "Applying configuration"
1328 msgstr ""
1329
1330+#. Type: text
1331+#. Description
1332+#: ../ubiquity.templates:159001
1333+msgid "Timezone"
1334+msgstr ""
1335+
1336+#. Type: text
1337+#. Description
1338+#: ../ubiquity.templates:160001
1339+#, fuzzy
1340+#| msgid "Keyboard layout"
1341+msgid "Keyboard"
1342+msgstr "Διάταξη πληκτρολογίου"
1343+
1344+#. Type: text
1345+#. Description
1346+#: ../ubiquity.templates:161001
1347+#, fuzzy
1348+#| msgid "New partition"
1349+msgid "Partition"
1350+msgstr "Νέο διαμέρισμα"
1351+
1352+#. Type: text
1353+#. Description
1354+#: ../ubiquity.templates:162001
1355+msgid "User Info"
1356+msgstr ""
1357+
1358+#. Type: text
1359+#. Description
1360+#: ../ubiquity.templates:163001
1361+msgid "Summary"
1362+msgstr ""
1363+
1364+#. Type: text
1365+#. Description
1366+#: ../ubiquity.templates:164001
1367+#, fuzzy
1368+#| msgid "Install"
1369+msgid "Installing"
1370+msgstr "Εγκατάσταση"
1371+
1372 #. Type: note
1373 #. Description
1374 #: ../ubiquity-frontend-mythbuntu.templates:1001
1375@@ -1459,8 +1503,5 @@
1376 #~ "Επιλέξτε την ζώνη ώρας από τον χάρτη, είτε με βάση την περιοχή και την "
1377 #~ "πόλη."
1378
1379-#~ msgid "New partition"
1380-#~ msgstr "Νέο διαμέρισμα"
1381-
1382 #~ msgid "Delete partition"
1383 #~ msgstr "Διαγραφή διαμερίσματος"
1384
1385=== modified file 'debian/po/eo.po'
1386--- debian/po/eo.po 2009-07-14 13:14:35 +0000
1387+++ debian/po/eo.po 2009-07-28 15:35:01 +0000
1388@@ -6,7 +6,7 @@
1389 msgstr ""
1390 "Project-Id-Version: debian-installer\n"
1391 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
1392-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
1393+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
1394 "PO-Revision-Date: 2009-04-10 12:07+0000\n"
1395 "Last-Translator: Felipe Castro <fefcas@gmail.com>\n"
1396 "Language-Team: Esperanto <debian-l10n-esperanto@lists.debian.org>\n"
1397@@ -55,7 +55,9 @@
1398
1399 #. Type: text
1400 #. Description
1401-#: ../ubiquity.templates:9001
1402+#. Type: text
1403+#. Description
1404+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
1405 msgid "Welcome"
1406 msgstr "Bonvenon"
1407
1408@@ -1140,6 +1142,48 @@
1409 msgid "Applying configuration"
1410 msgstr ""
1411
1412+#. Type: text
1413+#. Description
1414+#: ../ubiquity.templates:159001
1415+msgid "Timezone"
1416+msgstr ""
1417+
1418+#. Type: text
1419+#. Description
1420+#: ../ubiquity.templates:160001
1421+#, fuzzy
1422+#| msgid "Keyboard layout"
1423+msgid "Keyboard"
1424+msgstr "Elektu klavaran aranĝon"
1425+
1426+#. Type: text
1427+#. Description
1428+#: ../ubiquity.templates:161001
1429+#, fuzzy
1430+#| msgid "New partition"
1431+msgid "Partition"
1432+msgstr "Nova subdisko"
1433+
1434+#. Type: text
1435+#. Description
1436+#: ../ubiquity.templates:162001
1437+msgid "User Info"
1438+msgstr ""
1439+
1440+#. Type: text
1441+#. Description
1442+#: ../ubiquity.templates:163001
1443+msgid "Summary"
1444+msgstr ""
1445+
1446+#. Type: text
1447+#. Description
1448+#: ../ubiquity.templates:164001
1449+#, fuzzy
1450+#| msgid "Install"
1451+msgid "Installing"
1452+msgstr "Instalu"
1453+
1454 #. Type: note
1455 #. Description
1456 #: ../ubiquity-frontend-mythbuntu.templates:1001
1457@@ -1401,8 +1445,5 @@
1458 msgid "Configuring infrared devices..."
1459 msgstr "Konfigurado de infraruĝaj aparatoj..."
1460
1461-#~ msgid "New partition"
1462-#~ msgstr "Nova subdisko"
1463-
1464 #~ msgid "Delete partition"
1465 #~ msgstr "Viŝi subdiskon"
1466
1467=== modified file 'debian/po/es.po'
1468--- debian/po/es.po 2009-07-14 13:14:35 +0000
1469+++ debian/po/es.po 2009-07-28 15:35:01 +0000
1470@@ -6,7 +6,7 @@
1471 msgstr ""
1472 "Project-Id-Version: debian-installer\n"
1473 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
1474-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
1475+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
1476 "PO-Revision-Date: 2009-04-10 17:22+0000\n"
1477 "Last-Translator: Julián Alarcón <alarconj@gmail.com>\n"
1478 "Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n"
1479@@ -57,7 +57,9 @@
1480
1481 #. Type: text
1482 #. Description
1483-#: ../ubiquity.templates:9001
1484+#. Type: text
1485+#. Description
1486+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
1487 msgid "Welcome"
1488 msgstr "Bienvenido/a"
1489
1490@@ -1157,6 +1159,48 @@
1491 msgid "Applying configuration"
1492 msgstr ""
1493
1494+#. Type: text
1495+#. Description
1496+#: ../ubiquity.templates:159001
1497+msgid "Timezone"
1498+msgstr ""
1499+
1500+#. Type: text
1501+#. Description
1502+#: ../ubiquity.templates:160001
1503+#, fuzzy
1504+#| msgid "Keyboard layout"
1505+msgid "Keyboard"
1506+msgstr "Distribución del teclado"
1507+
1508+#. Type: text
1509+#. Description
1510+#: ../ubiquity.templates:161001
1511+#, fuzzy
1512+#| msgid "New partition"
1513+msgid "Partition"
1514+msgstr "Partición nueva"
1515+
1516+#. Type: text
1517+#. Description
1518+#: ../ubiquity.templates:162001
1519+msgid "User Info"
1520+msgstr ""
1521+
1522+#. Type: text
1523+#. Description
1524+#: ../ubiquity.templates:163001
1525+msgid "Summary"
1526+msgstr ""
1527+
1528+#. Type: text
1529+#. Description
1530+#: ../ubiquity.templates:164001
1531+#, fuzzy
1532+#| msgid "Install"
1533+msgid "Installing"
1534+msgstr "Instalar"
1535+
1536 #. Type: note
1537 #. Description
1538 #: ../ubiquity-frontend-mythbuntu.templates:1001
1539@@ -1434,8 +1478,5 @@
1540 #~ msgid "Select your time zone from the map, or by region and city."
1541 #~ msgstr "Seleccione su zona horaria en el mapa, o por región y ciudad."
1542
1543-#~ msgid "New partition"
1544-#~ msgstr "Partición nueva"
1545-
1546 #~ msgid "Delete partition"
1547 #~ msgstr "Borrar partición"
1548
1549=== modified file 'debian/po/et.po'
1550--- debian/po/et.po 2009-07-14 13:14:35 +0000
1551+++ debian/po/et.po 2009-07-28 15:35:01 +0000
1552@@ -6,7 +6,7 @@
1553 msgstr ""
1554 "Project-Id-Version: debian-installer\n"
1555 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
1556-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
1557+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
1558 "PO-Revision-Date: 2009-02-09 09:06+0000\n"
1559 "Last-Translator: Laur Mõtus <vprints@gmail.com>\n"
1560 "Language-Team: Eesti <linuxiabi@hot.ee>\n"
1561@@ -55,7 +55,9 @@
1562
1563 #. Type: text
1564 #. Description
1565-#: ../ubiquity.templates:9001
1566+#. Type: text
1567+#. Description
1568+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
1569 msgid "Welcome"
1570 msgstr "Tere tulemast"
1571
1572@@ -1135,6 +1137,48 @@
1573 msgid "Applying configuration"
1574 msgstr ""
1575
1576+#. Type: text
1577+#. Description
1578+#: ../ubiquity.templates:159001
1579+msgid "Timezone"
1580+msgstr ""
1581+
1582+#. Type: text
1583+#. Description
1584+#: ../ubiquity.templates:160001
1585+#, fuzzy
1586+#| msgid "Keyboard layout"
1587+msgid "Keyboard"
1588+msgstr "Klaviatuuripaigutus"
1589+
1590+#. Type: text
1591+#. Description
1592+#: ../ubiquity.templates:161001
1593+#, fuzzy
1594+#| msgid "New partition"
1595+msgid "Partition"
1596+msgstr "Uus partitsioon"
1597+
1598+#. Type: text
1599+#. Description
1600+#: ../ubiquity.templates:162001
1601+msgid "User Info"
1602+msgstr ""
1603+
1604+#. Type: text
1605+#. Description
1606+#: ../ubiquity.templates:163001
1607+msgid "Summary"
1608+msgstr ""
1609+
1610+#. Type: text
1611+#. Description
1612+#: ../ubiquity.templates:164001
1613+#, fuzzy
1614+#| msgid "Install"
1615+msgid "Installing"
1616+msgstr "Paigalda"
1617+
1618 #. Type: note
1619 #. Description
1620 #: ../ubiquity-frontend-mythbuntu.templates:1001
1621@@ -1387,8 +1431,5 @@
1622 msgid "Configuring infrared devices..."
1623 msgstr ""
1624
1625-#~ msgid "New partition"
1626-#~ msgstr "Uus partitsioon"
1627-
1628 #~ msgid "Delete partition"
1629 #~ msgstr "Kustuta partitsioon"
1630
1631=== modified file 'debian/po/eu.po'
1632--- debian/po/eu.po 2009-07-14 13:14:35 +0000
1633+++ debian/po/eu.po 2009-07-28 15:35:01 +0000
1634@@ -6,7 +6,7 @@
1635 msgstr ""
1636 "Project-Id-Version: debian-installer\n"
1637 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
1638-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
1639+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
1640 "PO-Revision-Date: 2009-04-10 12:07+0000\n"
1641 "Last-Translator: Iñaki Larrañaga Murgoitio <Unknown>\n"
1642 "Language-Team: Basque <itzulpena@euskalgnu.org>\n"
1643@@ -55,7 +55,9 @@
1644
1645 #. Type: text
1646 #. Description
1647-#: ../ubiquity.templates:9001
1648+#. Type: text
1649+#. Description
1650+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
1651 msgid "Welcome"
1652 msgstr "Ongi etorri"
1653
1654@@ -1135,6 +1137,48 @@
1655 msgid "Applying configuration"
1656 msgstr ""
1657
1658+#. Type: text
1659+#. Description
1660+#: ../ubiquity.templates:159001
1661+msgid "Timezone"
1662+msgstr ""
1663+
1664+#. Type: text
1665+#. Description
1666+#: ../ubiquity.templates:160001
1667+#, fuzzy
1668+#| msgid "Keyboard layout"
1669+msgid "Keyboard"
1670+msgstr "Teklatuaren diseinua"
1671+
1672+#. Type: text
1673+#. Description
1674+#: ../ubiquity.templates:161001
1675+#, fuzzy
1676+#| msgid "New partition"
1677+msgid "Partition"
1678+msgstr "Partizio berria"
1679+
1680+#. Type: text
1681+#. Description
1682+#: ../ubiquity.templates:162001
1683+msgid "User Info"
1684+msgstr ""
1685+
1686+#. Type: text
1687+#. Description
1688+#: ../ubiquity.templates:163001
1689+msgid "Summary"
1690+msgstr ""
1691+
1692+#. Type: text
1693+#. Description
1694+#: ../ubiquity.templates:164001
1695+#, fuzzy
1696+#| msgid "Install"
1697+msgid "Installing"
1698+msgstr "Instalatu"
1699+
1700 #. Type: note
1701 #. Description
1702 #: ../ubiquity-frontend-mythbuntu.templates:1001
1703@@ -1397,8 +1441,5 @@
1704 msgid "Configuring infrared devices..."
1705 msgstr "Gailu infragorriak konfiguratzen..."
1706
1707-#~ msgid "New partition"
1708-#~ msgstr "Partizio berria"
1709-
1710 #~ msgid "Delete partition"
1711 #~ msgstr "Partizioa ezabatu"
1712
1713=== modified file 'debian/po/fa.po'
1714--- debian/po/fa.po 2009-07-14 13:14:35 +0000
1715+++ debian/po/fa.po 2009-07-28 15:35:01 +0000
1716@@ -6,7 +6,7 @@
1717 msgstr ""
1718 "Project-Id-Version: debian-installer\n"
1719 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
1720-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
1721+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
1722 "PO-Revision-Date: 2007-10-13 14:50+0000\n"
1723 "Last-Translator: Nima Ahmadi Pour Anari <Unknown>\n"
1724 "Language-Team: <fa@li.org>\n"
1725@@ -55,7 +55,9 @@
1726
1727 #. Type: text
1728 #. Description
1729-#: ../ubiquity.templates:9001
1730+#. Type: text
1731+#. Description
1732+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
1733 msgid "Welcome"
1734 msgstr "خوش آمدید"
1735
1736@@ -1072,6 +1074,46 @@
1737 msgid "Applying configuration"
1738 msgstr ""
1739
1740+#. Type: text
1741+#. Description
1742+#: ../ubiquity.templates:159001
1743+msgid "Timezone"
1744+msgstr ""
1745+
1746+#. Type: text
1747+#. Description
1748+#: ../ubiquity.templates:160001
1749+#, fuzzy
1750+#| msgid "Keyboard layout"
1751+msgid "Keyboard"
1752+msgstr "چیدمان صفحه‌کلید"
1753+
1754+#. Type: text
1755+#. Description
1756+#: ../ubiquity.templates:161001
1757+msgid "Partition"
1758+msgstr ""
1759+
1760+#. Type: text
1761+#. Description
1762+#: ../ubiquity.templates:162001
1763+msgid "User Info"
1764+msgstr ""
1765+
1766+#. Type: text
1767+#. Description
1768+#: ../ubiquity.templates:163001
1769+msgid "Summary"
1770+msgstr ""
1771+
1772+#. Type: text
1773+#. Description
1774+#: ../ubiquity.templates:164001
1775+#, fuzzy
1776+#| msgid "Installing system"
1777+msgid "Installing"
1778+msgstr "در حال نصب کردن سیستم"
1779+
1780 #. Type: note
1781 #. Description
1782 #: ../ubiquity-frontend-mythbuntu.templates:1001
1783
1784=== modified file 'debian/po/fi.po'
1785--- debian/po/fi.po 2009-07-14 13:14:35 +0000
1786+++ debian/po/fi.po 2009-07-28 15:35:01 +0000
1787@@ -6,7 +6,7 @@
1788 msgstr ""
1789 "Project-Id-Version: debian-installer\n"
1790 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
1791-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
1792+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
1793 "PO-Revision-Date: 2009-04-11 06:29+0000\n"
1794 "Last-Translator: Timo Jyrinki <timo.jyrinki@iki.fi>\n"
1795 "Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
1796@@ -58,7 +58,9 @@
1797
1798 #. Type: text
1799 #. Description
1800-#: ../ubiquity.templates:9001
1801+#. Type: text
1802+#. Description
1803+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
1804 msgid "Welcome"
1805 msgstr "Tervetuloa"
1806
1807@@ -1151,6 +1153,48 @@
1808 msgid "Applying configuration"
1809 msgstr ""
1810
1811+#. Type: text
1812+#. Description
1813+#: ../ubiquity.templates:159001
1814+msgid "Timezone"
1815+msgstr ""
1816+
1817+#. Type: text
1818+#. Description
1819+#: ../ubiquity.templates:160001
1820+#, fuzzy
1821+#| msgid "Keyboard layout"
1822+msgid "Keyboard"
1823+msgstr "Näppäimistön asettelu"
1824+
1825+#. Type: text
1826+#. Description
1827+#: ../ubiquity.templates:161001
1828+#, fuzzy
1829+#| msgid "New partition"
1830+msgid "Partition"
1831+msgstr "Uusi osio"
1832+
1833+#. Type: text
1834+#. Description
1835+#: ../ubiquity.templates:162001
1836+msgid "User Info"
1837+msgstr ""
1838+
1839+#. Type: text
1840+#. Description
1841+#: ../ubiquity.templates:163001
1842+msgid "Summary"
1843+msgstr ""
1844+
1845+#. Type: text
1846+#. Description
1847+#: ../ubiquity.templates:164001
1848+#, fuzzy
1849+#| msgid "Install"
1850+msgid "Installing"
1851+msgstr "Asenna"
1852+
1853 #. Type: note
1854 #. Description
1855 #: ../ubiquity-frontend-mythbuntu.templates:1001
1856@@ -1426,8 +1470,5 @@
1857 #~ msgid "Select your time zone from the map, or by region and city."
1858 #~ msgstr "Valitse aikavyöhykkeesi kartalta tai alueen ja kaupungin mukaan."
1859
1860-#~ msgid "New partition"
1861-#~ msgstr "Uusi osio"
1862-
1863 #~ msgid "Delete partition"
1864 #~ msgstr "Poista osio"
1865
1866=== modified file 'debian/po/fr.po'
1867--- debian/po/fr.po 2009-07-14 13:14:35 +0000
1868+++ debian/po/fr.po 2009-07-28 15:35:01 +0000
1869@@ -6,7 +6,7 @@
1870 msgstr ""
1871 "Project-Id-Version: debian-installer\n"
1872 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
1873-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
1874+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
1875 "PO-Revision-Date: 2009-04-16 07:16+0000\n"
1876 "Last-Translator: Bruno Patri <bruno.patri@gmail.com>\n"
1877 "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
1878@@ -58,7 +58,9 @@
1879
1880 #. Type: text
1881 #. Description
1882-#: ../ubiquity.templates:9001
1883+#. Type: text
1884+#. Description
1885+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
1886 msgid "Welcome"
1887 msgstr "Bienvenue"
1888
1889@@ -1170,6 +1172,48 @@
1890 msgid "Applying configuration"
1891 msgstr ""
1892
1893+#. Type: text
1894+#. Description
1895+#: ../ubiquity.templates:159001
1896+msgid "Timezone"
1897+msgstr ""
1898+
1899+#. Type: text
1900+#. Description
1901+#: ../ubiquity.templates:160001
1902+#, fuzzy
1903+#| msgid "Keyboard layout"
1904+msgid "Keyboard"
1905+msgstr "Disposition du clavier"
1906+
1907+#. Type: text
1908+#. Description
1909+#: ../ubiquity.templates:161001
1910+#, fuzzy
1911+#| msgid "New partition"
1912+msgid "Partition"
1913+msgstr "Nouvelle partition"
1914+
1915+#. Type: text
1916+#. Description
1917+#: ../ubiquity.templates:162001
1918+msgid "User Info"
1919+msgstr ""
1920+
1921+#. Type: text
1922+#. Description
1923+#: ../ubiquity.templates:163001
1924+msgid "Summary"
1925+msgstr ""
1926+
1927+#. Type: text
1928+#. Description
1929+#: ../ubiquity.templates:164001
1930+#, fuzzy
1931+#| msgid "Install"
1932+msgid "Installing"
1933+msgstr "Installation"
1934+
1935 #. Type: note
1936 #. Description
1937 #: ../ubiquity-frontend-mythbuntu.templates:1001
1938@@ -1455,8 +1499,5 @@
1939 #~ msgstr ""
1940 #~ "Sélectionnez votre fuseau horaire depuis la carte, ou par région et ville."
1941
1942-#~ msgid "New partition"
1943-#~ msgstr "Nouvelle partition"
1944-
1945 #~ msgid "Delete partition"
1946 #~ msgstr "Supprimer la partition"
1947
1948=== modified file 'debian/po/fy.po'
1949--- debian/po/fy.po 2009-07-14 13:14:35 +0000
1950+++ debian/po/fy.po 2009-07-28 15:35:01 +0000
1951@@ -7,7 +7,7 @@
1952 msgstr ""
1953 "Project-Id-Version: debian-installer\n"
1954 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
1955-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
1956+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
1957 "PO-Revision-Date: 2008-11-05 02:02+0000\n"
1958 "Last-Translator: Peter Hoogsteen <p.hoogsteen@chello.nl>\n"
1959 "Language-Team: Frisian <fy@li.org>\n"
1960@@ -56,7 +56,9 @@
1961
1962 #. Type: text
1963 #. Description
1964-#: ../ubiquity.templates:9001
1965+#. Type: text
1966+#. Description
1967+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
1968 msgid "Welcome"
1969 msgstr "Wolkom"
1970
1971@@ -1135,6 +1137,48 @@
1972 msgid "Applying configuration"
1973 msgstr ""
1974
1975+#. Type: text
1976+#. Description
1977+#: ../ubiquity.templates:159001
1978+msgid "Timezone"
1979+msgstr ""
1980+
1981+#. Type: text
1982+#. Description
1983+#: ../ubiquity.templates:160001
1984+#, fuzzy
1985+#| msgid "Keyboard layout"
1986+msgid "Keyboard"
1987+msgstr "Kaaiplanke yndieling"
1988+
1989+#. Type: text
1990+#. Description
1991+#: ../ubiquity.templates:161001
1992+#, fuzzy
1993+#| msgid "New partition"
1994+msgid "Partition"
1995+msgstr "Nije partitie"
1996+
1997+#. Type: text
1998+#. Description
1999+#: ../ubiquity.templates:162001
2000+msgid "User Info"
2001+msgstr ""
2002+
2003+#. Type: text
2004+#. Description
2005+#: ../ubiquity.templates:163001
2006+msgid "Summary"
2007+msgstr ""
2008+
2009+#. Type: text
2010+#. Description
2011+#: ../ubiquity.templates:164001
2012+#, fuzzy
2013+#| msgid "Install"
2014+msgid "Installing"
2015+msgstr "Ynstallear"
2016+
2017 #. Type: note
2018 #. Description
2019 #: ../ubiquity-frontend-mythbuntu.templates:1001
2020@@ -1369,8 +1413,5 @@
2021 msgid "Configuring infrared devices..."
2022 msgstr ""
2023
2024-#~ msgid "New partition"
2025-#~ msgstr "Nije partitie"
2026-
2027 #~ msgid "Delete partition"
2028 #~ msgstr "Partitie fuortsmite"
2029
2030=== modified file 'debian/po/ga.po'
2031--- debian/po/ga.po 2009-07-14 13:14:35 +0000
2032+++ debian/po/ga.po 2009-07-28 15:35:01 +0000
2033@@ -6,7 +6,7 @@
2034 msgstr ""
2035 "Project-Id-Version: debian-installer\n"
2036 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
2037-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
2038+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
2039 "PO-Revision-Date: 2009-04-10 12:07+0000\n"
2040 "Last-Translator: Kevin Patrick Scannell <Unknown>\n"
2041 "Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
2042@@ -55,7 +55,9 @@
2043
2044 #. Type: text
2045 #. Description
2046-#: ../ubiquity.templates:9001
2047+#. Type: text
2048+#. Description
2049+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
2050 msgid "Welcome"
2051 msgstr "Fáilte"
2052
2053@@ -1069,6 +1071,44 @@
2054 msgid "Applying configuration"
2055 msgstr ""
2056
2057+#. Type: text
2058+#. Description
2059+#: ../ubiquity.templates:159001
2060+msgid "Timezone"
2061+msgstr ""
2062+
2063+#. Type: text
2064+#. Description
2065+#: ../ubiquity.templates:160001
2066+msgid "Keyboard"
2067+msgstr ""
2068+
2069+#. Type: text
2070+#. Description
2071+#: ../ubiquity.templates:161001
2072+msgid "Partition"
2073+msgstr ""
2074+
2075+#. Type: text
2076+#. Description
2077+#: ../ubiquity.templates:162001
2078+msgid "User Info"
2079+msgstr ""
2080+
2081+#. Type: text
2082+#. Description
2083+#: ../ubiquity.templates:163001
2084+msgid "Summary"
2085+msgstr ""
2086+
2087+#. Type: text
2088+#. Description
2089+#: ../ubiquity.templates:164001
2090+#, fuzzy
2091+#| msgid "Install"
2092+msgid "Installing"
2093+msgstr "Suiteáil"
2094+
2095 #. Type: note
2096 #. Description
2097 #: ../ubiquity-frontend-mythbuntu.templates:1001
2098
2099=== modified file 'debian/po/gl.po'
2100--- debian/po/gl.po 2009-07-14 13:14:35 +0000
2101+++ debian/po/gl.po 2009-07-28 15:35:01 +0000
2102@@ -6,7 +6,7 @@
2103 msgstr ""
2104 "Project-Id-Version: debian-installer\n"
2105 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
2106-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
2107+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
2108 "PO-Revision-Date: 2009-04-14 12:50+0000\n"
2109 "Last-Translator: Antón Méixome <meixome@gmail.com>\n"
2110 "Language-Team: Galician <proxecto@trasno.net>\n"
2111@@ -57,7 +57,9 @@
2112
2113 #. Type: text
2114 #. Description
2115-#: ../ubiquity.templates:9001
2116+#. Type: text
2117+#. Description
2118+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
2119 msgid "Welcome"
2120 msgstr "Benvido(a)"
2121
2122@@ -1156,6 +1158,48 @@
2123 msgid "Applying configuration"
2124 msgstr ""
2125
2126+#. Type: text
2127+#. Description
2128+#: ../ubiquity.templates:159001
2129+msgid "Timezone"
2130+msgstr ""
2131+
2132+#. Type: text
2133+#. Description
2134+#: ../ubiquity.templates:160001
2135+#, fuzzy
2136+#| msgid "Keyboard layout"
2137+msgid "Keyboard"
2138+msgstr "Distribución do teclado"
2139+
2140+#. Type: text
2141+#. Description
2142+#: ../ubiquity.templates:161001
2143+#, fuzzy
2144+#| msgid "New partition"
2145+msgid "Partition"
2146+msgstr "Nova partición"
2147+
2148+#. Type: text
2149+#. Description
2150+#: ../ubiquity.templates:162001
2151+msgid "User Info"
2152+msgstr ""
2153+
2154+#. Type: text
2155+#. Description
2156+#: ../ubiquity.templates:163001
2157+msgid "Summary"
2158+msgstr ""
2159+
2160+#. Type: text
2161+#. Description
2162+#: ../ubiquity.templates:164001
2163+#, fuzzy
2164+#| msgid "Install"
2165+msgid "Installing"
2166+msgstr "Instalar"
2167+
2168 #. Type: note
2169 #. Description
2170 #: ../ubiquity-frontend-mythbuntu.templates:1001
2171@@ -1432,8 +1476,5 @@
2172 #~ msgid "Select your time zone from the map, or by region and city."
2173 #~ msgstr "Seleccione a zona horaria no mapa ou pola rexión e a cidade."
2174
2175-#~ msgid "New partition"
2176-#~ msgstr "Nova partición"
2177-
2178 #~ msgid "Delete partition"
2179 #~ msgstr "Eliminar partición"
2180
2181=== modified file 'debian/po/gu.po'
2182--- debian/po/gu.po 2009-07-14 13:14:35 +0000
2183+++ debian/po/gu.po 2009-07-28 15:35:01 +0000
2184@@ -6,7 +6,7 @@
2185 msgstr ""
2186 "Project-Id-Version: debian-installer\n"
2187 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
2188-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
2189+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
2190 "PO-Revision-Date: 2009-04-10 12:07+0000\n"
2191 "Last-Translator: Kartik Mistry <Unknown>\n"
2192 "Language-Team: Gujarati <team@utkarsh.org>\n"
2193@@ -55,7 +55,9 @@
2194
2195 #. Type: text
2196 #. Description
2197-#: ../ubiquity.templates:9001
2198+#. Type: text
2199+#. Description
2200+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
2201 msgid "Welcome"
2202 msgstr "સ્વગતમ"
2203
2204@@ -1105,6 +1107,48 @@
2205 msgid "Applying configuration"
2206 msgstr ""
2207
2208+#. Type: text
2209+#. Description
2210+#: ../ubiquity.templates:159001
2211+msgid "Timezone"
2212+msgstr ""
2213+
2214+#. Type: text
2215+#. Description
2216+#: ../ubiquity.templates:160001
2217+#, fuzzy
2218+#| msgid "Keyboard layout"
2219+msgid "Keyboard"
2220+msgstr "કીબોર્ડ લેઆઉટ:"
2221+
2222+#. Type: text
2223+#. Description
2224+#: ../ubiquity.templates:161001
2225+#, fuzzy
2226+#| msgid "New partition"
2227+msgid "Partition"
2228+msgstr "નવો વિભાગ"
2229+
2230+#. Type: text
2231+#. Description
2232+#: ../ubiquity.templates:162001
2233+msgid "User Info"
2234+msgstr ""
2235+
2236+#. Type: text
2237+#. Description
2238+#: ../ubiquity.templates:163001
2239+msgid "Summary"
2240+msgstr ""
2241+
2242+#. Type: text
2243+#. Description
2244+#: ../ubiquity.templates:164001
2245+#, fuzzy
2246+#| msgid "Install"
2247+msgid "Installing"
2248+msgstr "સ્થાપન કરો"
2249+
2250 #. Type: note
2251 #. Description
2252 #: ../ubiquity-frontend-mythbuntu.templates:1001
2253@@ -1339,8 +1383,5 @@
2254 msgid "Configuring infrared devices..."
2255 msgstr ""
2256
2257-#~ msgid "New partition"
2258-#~ msgstr "નવો વિભાગ"
2259-
2260 #~ msgid "Delete partition"
2261 #~ msgstr "વિભાગ દૂર કરો"
2262
2263=== modified file 'debian/po/he.po'
2264--- debian/po/he.po 2009-07-14 13:14:35 +0000
2265+++ debian/po/he.po 2009-07-28 15:35:01 +0000
2266@@ -6,7 +6,7 @@
2267 msgstr ""
2268 "Project-Id-Version: debian-installer\n"
2269 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
2270-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
2271+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
2272 "PO-Revision-Date: 2009-04-10 12:08+0000\n"
2273 "Last-Translator: Lior Kaplan <kaplan@debian.org>\n"
2274 "Language-Team: Hebrew <debian-hebrew-common@lists.alioth.debian.org>\n"
2275@@ -55,7 +55,9 @@
2276
2277 #. Type: text
2278 #. Description
2279-#: ../ubiquity.templates:9001
2280+#. Type: text
2281+#. Description
2282+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
2283 msgid "Welcome"
2284 msgstr "ברוכים הבאים"
2285
2286@@ -1122,6 +1124,48 @@
2287 msgid "Applying configuration"
2288 msgstr ""
2289
2290+#. Type: text
2291+#. Description
2292+#: ../ubiquity.templates:159001
2293+msgid "Timezone"
2294+msgstr ""
2295+
2296+#. Type: text
2297+#. Description
2298+#: ../ubiquity.templates:160001
2299+#, fuzzy
2300+#| msgid "Keyboard layout"
2301+msgid "Keyboard"
2302+msgstr "פריסת מקלדת"
2303+
2304+#. Type: text
2305+#. Description
2306+#: ../ubiquity.templates:161001
2307+#, fuzzy
2308+#| msgid "New partition"
2309+msgid "Partition"
2310+msgstr "צור מחיצה"
2311+
2312+#. Type: text
2313+#. Description
2314+#: ../ubiquity.templates:162001
2315+msgid "User Info"
2316+msgstr ""
2317+
2318+#. Type: text
2319+#. Description
2320+#: ../ubiquity.templates:163001
2321+msgid "Summary"
2322+msgstr ""
2323+
2324+#. Type: text
2325+#. Description
2326+#: ../ubiquity.templates:164001
2327+#, fuzzy
2328+#| msgid "Install"
2329+msgid "Installing"
2330+msgstr "התקנה"
2331+
2332 #. Type: note
2333 #. Description
2334 #: ../ubiquity-frontend-mythbuntu.templates:1001
2335@@ -1377,8 +1421,5 @@
2336 msgid "Configuring infrared devices..."
2337 msgstr "מגדיר את התקני האינפרא-אדום..."
2338
2339-#~ msgid "New partition"
2340-#~ msgstr "צור מחיצה"
2341-
2342 #~ msgid "Delete partition"
2343 #~ msgstr "מחק מחיצה"
2344
2345=== modified file 'debian/po/hi.po'
2346--- debian/po/hi.po 2009-07-14 13:14:35 +0000
2347+++ debian/po/hi.po 2009-07-28 15:35:01 +0000
2348@@ -6,7 +6,7 @@
2349 msgstr ""
2350 "Project-Id-Version: debian-installer\n"
2351 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
2352-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
2353+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
2354 "PO-Revision-Date: 2009-04-10 12:08+0000\n"
2355 "Last-Translator: Kumar Appaiah <Unknown>\n"
2356 "Language-Team: Hindi <debian-in-workers@lists.alioth.debian.org>\n"
2357@@ -55,7 +55,9 @@
2358
2359 #. Type: text
2360 #. Description
2361-#: ../ubiquity.templates:9001
2362+#. Type: text
2363+#. Description
2364+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
2365 msgid "Welcome"
2366 msgstr "सुस्वागतम"
2367
2368@@ -1097,6 +1099,48 @@
2369 msgid "Applying configuration"
2370 msgstr ""
2371
2372+#. Type: text
2373+#. Description
2374+#: ../ubiquity.templates:159001
2375+msgid "Timezone"
2376+msgstr ""
2377+
2378+#. Type: text
2379+#. Description
2380+#: ../ubiquity.templates:160001
2381+#, fuzzy
2382+#| msgid "Keyboard layout"
2383+msgid "Keyboard"
2384+msgstr "कुंजीपट नक्षा"
2385+
2386+#. Type: text
2387+#. Description
2388+#: ../ubiquity.templates:161001
2389+#, fuzzy
2390+#| msgid "Prepare partitions"
2391+msgid "Partition"
2392+msgstr "नये विभाजन बनाएँ"
2393+
2394+#. Type: text
2395+#. Description
2396+#: ../ubiquity.templates:162001
2397+msgid "User Info"
2398+msgstr ""
2399+
2400+#. Type: text
2401+#. Description
2402+#: ../ubiquity.templates:163001
2403+msgid "Summary"
2404+msgstr ""
2405+
2406+#. Type: text
2407+#. Description
2408+#: ../ubiquity.templates:164001
2409+#, fuzzy
2410+#| msgid "Install"
2411+msgid "Installing"
2412+msgstr "संस्थापित करें"
2413+
2414 #. Type: note
2415 #. Description
2416 #: ../ubiquity-frontend-mythbuntu.templates:1001
2417
2418=== modified file 'debian/po/hr.po'
2419--- debian/po/hr.po 2009-07-14 13:14:35 +0000
2420+++ debian/po/hr.po 2009-07-28 15:35:01 +0000
2421@@ -6,7 +6,7 @@
2422 msgstr ""
2423 "Project-Id-Version: debian-installer\n"
2424 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
2425-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
2426+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
2427 "PO-Revision-Date: 2009-03-10 10:33+0000\n"
2428 "Last-Translator: Josip Rodin <Unknown>\n"
2429 "Language-Team: Croatian <lokalizacija@linux.hr>\n"
2430@@ -55,7 +55,9 @@
2431
2432 #. Type: text
2433 #. Description
2434-#: ../ubiquity.templates:9001
2435+#. Type: text
2436+#. Description
2437+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
2438 msgid "Welcome"
2439 msgstr "Dobrodošli"
2440
2441@@ -1141,6 +1143,48 @@
2442 msgid "Applying configuration"
2443 msgstr ""
2444
2445+#. Type: text
2446+#. Description
2447+#: ../ubiquity.templates:159001
2448+msgid "Timezone"
2449+msgstr ""
2450+
2451+#. Type: text
2452+#. Description
2453+#: ../ubiquity.templates:160001
2454+#, fuzzy
2455+#| msgid "Keyboard layout"
2456+msgid "Keyboard"
2457+msgstr "Raspored tipkovnice"
2458+
2459+#. Type: text
2460+#. Description
2461+#: ../ubiquity.templates:161001
2462+#, fuzzy
2463+#| msgid "New partition"
2464+msgid "Partition"
2465+msgstr "Nova particija"
2466+
2467+#. Type: text
2468+#. Description
2469+#: ../ubiquity.templates:162001
2470+msgid "User Info"
2471+msgstr ""
2472+
2473+#. Type: text
2474+#. Description
2475+#: ../ubiquity.templates:163001
2476+msgid "Summary"
2477+msgstr ""
2478+
2479+#. Type: text
2480+#. Description
2481+#: ../ubiquity.templates:164001
2482+#, fuzzy
2483+#| msgid "Install"
2484+msgid "Installing"
2485+msgstr "Instalacija"
2486+
2487 #. Type: note
2488 #. Description
2489 #: ../ubiquity-frontend-mythbuntu.templates:1001
2490@@ -1402,8 +1446,5 @@
2491 msgid "Configuring infrared devices..."
2492 msgstr "Postavljanje infracrvnih uređaja..."
2493
2494-#~ msgid "New partition"
2495-#~ msgstr "Nova particija"
2496-
2497 #~ msgid "Delete partition"
2498 #~ msgstr "Obriši particiju"
2499
2500=== modified file 'debian/po/hu.po'
2501--- debian/po/hu.po 2009-07-14 13:14:35 +0000
2502+++ debian/po/hu.po 2009-07-28 15:35:01 +0000
2503@@ -6,7 +6,7 @@
2504 msgstr ""
2505 "Project-Id-Version: debian-installer\n"
2506 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
2507-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
2508+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
2509 "PO-Revision-Date: 2009-04-12 09:42+0000\n"
2510 "Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
2511 "Language-Team: Debian L10n Hungarian <debian-l10n-hungarian@lists.debian."
2512@@ -58,7 +58,9 @@
2513
2514 #. Type: text
2515 #. Description
2516-#: ../ubiquity.templates:9001
2517+#. Type: text
2518+#. Description
2519+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
2520 msgid "Welcome"
2521 msgstr "Üdvözöljük"
2522
2523@@ -1157,6 +1159,48 @@
2524 msgid "Applying configuration"
2525 msgstr ""
2526
2527+#. Type: text
2528+#. Description
2529+#: ../ubiquity.templates:159001
2530+msgid "Timezone"
2531+msgstr ""
2532+
2533+#. Type: text
2534+#. Description
2535+#: ../ubiquity.templates:160001
2536+#, fuzzy
2537+#| msgid "Keyboard layout"
2538+msgid "Keyboard"
2539+msgstr "Billentyűzetkiosztás"
2540+
2541+#. Type: text
2542+#. Description
2543+#: ../ubiquity.templates:161001
2544+#, fuzzy
2545+#| msgid "New partition"
2546+msgid "Partition"
2547+msgstr "Új partíció"
2548+
2549+#. Type: text
2550+#. Description
2551+#: ../ubiquity.templates:162001
2552+msgid "User Info"
2553+msgstr ""
2554+
2555+#. Type: text
2556+#. Description
2557+#: ../ubiquity.templates:163001
2558+msgid "Summary"
2559+msgstr ""
2560+
2561+#. Type: text
2562+#. Description
2563+#: ../ubiquity.templates:164001
2564+#, fuzzy
2565+#| msgid "Install"
2566+msgid "Installing"
2567+msgstr "Telepítés"
2568+
2569 #. Type: note
2570 #. Description
2571 #: ../ubiquity-frontend-mythbuntu.templates:1001
2572@@ -1432,8 +1476,5 @@
2573 #~ msgstr ""
2574 #~ "Válassza ki az időzónát a térképről, vagy adja meg a régiót és a várost."
2575
2576-#~ msgid "New partition"
2577-#~ msgstr "Új partíció"
2578-
2579 #~ msgid "Delete partition"
2580 #~ msgstr "Partíció törlése"
2581
2582=== modified file 'debian/po/id.po'
2583--- debian/po/id.po 2009-07-14 13:14:35 +0000
2584+++ debian/po/id.po 2009-07-28 15:35:01 +0000
2585@@ -6,7 +6,7 @@
2586 msgstr ""
2587 "Project-Id-Version: debian-installer\n"
2588 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
2589-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
2590+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
2591 "PO-Revision-Date: 2009-04-10 12:09+0000\n"
2592 "Last-Translator: Arief S Fitrianto <Unknown>\n"
2593 "Language-Team: Bahasa Indonesia <debian-l10n-id@gurame.fisika.ui.ac.id>\n"
2594@@ -58,7 +58,9 @@
2595
2596 #. Type: text
2597 #. Description
2598-#: ../ubiquity.templates:9001
2599+#. Type: text
2600+#. Description
2601+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
2602 msgid "Welcome"
2603 msgstr "Selamat Datang"
2604
2605@@ -1163,6 +1165,48 @@
2606 msgid "Applying configuration"
2607 msgstr ""
2608
2609+#. Type: text
2610+#. Description
2611+#: ../ubiquity.templates:159001
2612+msgid "Timezone"
2613+msgstr ""
2614+
2615+#. Type: text
2616+#. Description
2617+#: ../ubiquity.templates:160001
2618+#, fuzzy
2619+#| msgid "Keyboard layout"
2620+msgid "Keyboard"
2621+msgstr "Susunan papan ketik"
2622+
2623+#. Type: text
2624+#. Description
2625+#: ../ubiquity.templates:161001
2626+#, fuzzy
2627+#| msgid "New partition"
2628+msgid "Partition"
2629+msgstr "Partisi Baru"
2630+
2631+#. Type: text
2632+#. Description
2633+#: ../ubiquity.templates:162001
2634+msgid "User Info"
2635+msgstr ""
2636+
2637+#. Type: text
2638+#. Description
2639+#: ../ubiquity.templates:163001
2640+msgid "Summary"
2641+msgstr ""
2642+
2643+#. Type: text
2644+#. Description
2645+#: ../ubiquity.templates:164001
2646+#, fuzzy
2647+#| msgid "Install"
2648+msgid "Installing"
2649+msgstr "Instal"
2650+
2651 #. Type: note
2652 #. Description
2653 #: ../ubiquity-frontend-mythbuntu.templates:1001
2654@@ -1441,8 +1485,5 @@
2655 #~ msgid "Select your time zone from the map, or by region and city."
2656 #~ msgstr "Pilih zona waktu anda dari peta"
2657
2658-#~ msgid "New partition"
2659-#~ msgstr "Partisi Baru"
2660-
2661 #~ msgid "Delete partition"
2662 #~ msgstr "Hapus Partisi"
2663
2664=== modified file 'debian/po/is.po'
2665--- debian/po/is.po 2009-07-14 13:14:35 +0000
2666+++ debian/po/is.po 2009-07-28 15:35:01 +0000
2667@@ -6,7 +6,7 @@
2668 msgstr ""
2669 "Project-Id-Version: debian-installer\n"
2670 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
2671-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
2672+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
2673 "PO-Revision-Date: 2009-04-13 00:34+0000\n"
2674 "Last-Translator: Baldur <baldurpet@gmail.com>\n"
2675 "Language-Team: Icelandic <debian-user-icelandic@lists.debian.org>\n"
2676@@ -59,7 +59,9 @@
2677
2678 #. Type: text
2679 #. Description
2680-#: ../ubiquity.templates:9001
2681+#. Type: text
2682+#. Description
2683+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
2684 msgid "Welcome"
2685 msgstr "Velkomin"
2686
2687@@ -1158,6 +1160,48 @@
2688 msgid "Applying configuration"
2689 msgstr ""
2690
2691+#. Type: text
2692+#. Description
2693+#: ../ubiquity.templates:159001
2694+msgid "Timezone"
2695+msgstr ""
2696+
2697+#. Type: text
2698+#. Description
2699+#: ../ubiquity.templates:160001
2700+#, fuzzy
2701+#| msgid "Keyboard layout"
2702+msgid "Keyboard"
2703+msgstr "Lyklaborðið"
2704+
2705+#. Type: text
2706+#. Description
2707+#: ../ubiquity.templates:161001
2708+#, fuzzy
2709+#| msgid "New partition"
2710+msgid "Partition"
2711+msgstr "Ný sneiðing"
2712+
2713+#. Type: text
2714+#. Description
2715+#: ../ubiquity.templates:162001
2716+msgid "User Info"
2717+msgstr ""
2718+
2719+#. Type: text
2720+#. Description
2721+#: ../ubiquity.templates:163001
2722+msgid "Summary"
2723+msgstr ""
2724+
2725+#. Type: text
2726+#. Description
2727+#: ../ubiquity.templates:164001
2728+#, fuzzy
2729+#| msgid "Install"
2730+msgid "Installing"
2731+msgstr "Uppsetning"
2732+
2733 #. Type: note
2734 #. Description
2735 #: ../ubiquity-frontend-mythbuntu.templates:1001
2736@@ -1434,8 +1478,5 @@
2737 #~ msgid "Select your time zone from the map, or by region and city."
2738 #~ msgstr "Veldu í hvaða tímabelti þú ert í á kortinu, eða eftir borg."
2739
2740-#~ msgid "New partition"
2741-#~ msgstr "Ný sneiðing"
2742-
2743 #~ msgid "Delete partition"
2744 #~ msgstr "Eyða sneiðingu"
2745
2746=== modified file 'debian/po/it.po'
2747--- debian/po/it.po 2009-07-14 13:14:35 +0000
2748+++ debian/po/it.po 2009-07-28 15:35:01 +0000
2749@@ -6,7 +6,7 @@
2750 msgstr ""
2751 "Project-Id-Version: debian-installer\n"
2752 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
2753-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
2754+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
2755 "PO-Revision-Date: 2009-04-10 12:09+0000\n"
2756 "Last-Translator: Milo Casagrande <milo@milo.name>\n"
2757 "Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
2758@@ -57,7 +57,9 @@
2759
2760 #. Type: text
2761 #. Description
2762-#: ../ubiquity.templates:9001
2763+#. Type: text
2764+#. Description
2765+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
2766 msgid "Welcome"
2767 msgstr "Benvenuti"
2768
2769@@ -1163,6 +1165,48 @@
2770 msgid "Applying configuration"
2771 msgstr ""
2772
2773+#. Type: text
2774+#. Description
2775+#: ../ubiquity.templates:159001
2776+msgid "Timezone"
2777+msgstr ""
2778+
2779+#. Type: text
2780+#. Description
2781+#: ../ubiquity.templates:160001
2782+#, fuzzy
2783+#| msgid "Keyboard layout"
2784+msgid "Keyboard"
2785+msgstr "Disposizione della tastiera"
2786+
2787+#. Type: text
2788+#. Description
2789+#: ../ubiquity.templates:161001
2790+#, fuzzy
2791+#| msgid "New partition"
2792+msgid "Partition"
2793+msgstr "Nuova partizione"
2794+
2795+#. Type: text
2796+#. Description
2797+#: ../ubiquity.templates:162001
2798+msgid "User Info"
2799+msgstr ""
2800+
2801+#. Type: text
2802+#. Description
2803+#: ../ubiquity.templates:163001
2804+msgid "Summary"
2805+msgstr ""
2806+
2807+#. Type: text
2808+#. Description
2809+#: ../ubiquity.templates:164001
2810+#, fuzzy
2811+#| msgid "Install"
2812+msgid "Installing"
2813+msgstr "Installa"
2814+
2815 #. Type: note
2816 #. Description
2817 #: ../ubiquity-frontend-mythbuntu.templates:1001
2818@@ -1442,8 +1486,5 @@
2819 #~ "Selezionare il proprio fuso orario dalla mappa oppure in base alla "
2820 #~ "regione e alla città."
2821
2822-#~ msgid "New partition"
2823-#~ msgstr "Nuova partizione"
2824-
2825 #~ msgid "Delete partition"
2826 #~ msgstr "Elimina partizione"
2827
2828=== modified file 'debian/po/ja.po'
2829--- debian/po/ja.po 2009-07-14 13:14:35 +0000
2830+++ debian/po/ja.po 2009-07-28 15:35:01 +0000
2831@@ -6,7 +6,7 @@
2832 msgstr ""
2833 "Project-Id-Version: debian-installer\n"
2834 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
2835-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
2836+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
2837 "PO-Revision-Date: 2009-04-16 02:43+0000\n"
2838 "Last-Translator: William Bohn <shambler@comcast.net>\n"
2839 "Language-Team: Debian L10n Japanese <debian-l10n-japanese@lists.debian.org>\n"
2840@@ -57,7 +57,9 @@
2841
2842 #. Type: text
2843 #. Description
2844-#: ../ubiquity.templates:9001
2845+#. Type: text
2846+#. Description
2847+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
2848 msgid "Welcome"
2849 msgstr "ようこそ"
2850
2851@@ -1160,6 +1162,48 @@
2852 msgid "Applying configuration"
2853 msgstr ""
2854
2855+#. Type: text
2856+#. Description
2857+#: ../ubiquity.templates:159001
2858+msgid "Timezone"
2859+msgstr ""
2860+
2861+#. Type: text
2862+#. Description
2863+#: ../ubiquity.templates:160001
2864+#, fuzzy
2865+#| msgid "Keyboard layout"
2866+msgid "Keyboard"
2867+msgstr "キーボードレイアウト"
2868+
2869+#. Type: text
2870+#. Description
2871+#: ../ubiquity.templates:161001
2872+#, fuzzy
2873+#| msgid "New partition"
2874+msgid "Partition"
2875+msgstr "新規のパーティション"
2876+
2877+#. Type: text
2878+#. Description
2879+#: ../ubiquity.templates:162001
2880+msgid "User Info"
2881+msgstr ""
2882+
2883+#. Type: text
2884+#. Description
2885+#: ../ubiquity.templates:163001
2886+msgid "Summary"
2887+msgstr ""
2888+
2889+#. Type: text
2890+#. Description
2891+#: ../ubiquity.templates:164001
2892+#, fuzzy
2893+#| msgid "Install"
2894+msgid "Installing"
2895+msgstr "インストール"
2896+
2897 #. Type: note
2898 #. Description
2899 #: ../ubiquity-frontend-mythbuntu.templates:1001
2900@@ -1434,8 +1478,5 @@
2901 #~ msgstr ""
2902 #~ "時刻を設定するために地図上をクリックするか、地域と都市を選択してください。"
2903
2904-#~ msgid "New partition"
2905-#~ msgstr "新規のパーティション"
2906-
2907 #~ msgid "Delete partition"
2908 #~ msgstr "パーティションの削除"
2909
2910=== modified file 'debian/po/ka.po'
2911--- debian/po/ka.po 2009-07-14 13:14:35 +0000
2912+++ debian/po/ka.po 2009-07-28 15:35:01 +0000
2913@@ -6,7 +6,7 @@
2914 msgstr ""
2915 "Project-Id-Version: debian-installer\n"
2916 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
2917-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
2918+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
2919 "PO-Revision-Date: 2009-04-09 01:48+0000\n"
2920 "Last-Translator: Vladimer Sichinava <vsichi@gnome.org>\n"
2921 "Language-Team: Georgian <aietkolkhi@gmail.com>\n"
2922@@ -57,7 +57,9 @@
2923
2924 #. Type: text
2925 #. Description
2926-#: ../ubiquity.templates:9001
2927+#. Type: text
2928+#. Description
2929+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
2930 msgid "Welcome"
2931 msgstr "მოგესალმებით"
2932
2933@@ -1146,6 +1148,48 @@
2934 msgid "Applying configuration"
2935 msgstr ""
2936
2937+#. Type: text
2938+#. Description
2939+#: ../ubiquity.templates:159001
2940+msgid "Timezone"
2941+msgstr ""
2942+
2943+#. Type: text
2944+#. Description
2945+#: ../ubiquity.templates:160001
2946+#, fuzzy
2947+#| msgid "Keyboard layout"
2948+msgid "Keyboard"
2949+msgstr "კლავიატურის განლაგება"
2950+
2951+#. Type: text
2952+#. Description
2953+#: ../ubiquity.templates:161001
2954+#, fuzzy
2955+#| msgid "New partition"
2956+msgid "Partition"
2957+msgstr "ახალი პარტიცია"
2958+
2959+#. Type: text
2960+#. Description
2961+#: ../ubiquity.templates:162001
2962+msgid "User Info"
2963+msgstr ""
2964+
2965+#. Type: text
2966+#. Description
2967+#: ../ubiquity.templates:163001
2968+msgid "Summary"
2969+msgstr ""
2970+
2971+#. Type: text
2972+#. Description
2973+#: ../ubiquity.templates:164001
2974+#, fuzzy
2975+#| msgid "Install"
2976+msgid "Installing"
2977+msgstr "სისტემის დაყენების პროცესი"
2978+
2979 #. Type: note
2980 #. Description
2981 #: ../ubiquity-frontend-mythbuntu.templates:1001
2982@@ -1421,8 +1465,5 @@
2983 #~ msgid "Select your time zone from the map, or by region and city."
2984 #~ msgstr "დროის ზონის რუქის, რეგიონის, ან ქალაქის მიხედვით ამორჩევა."
2985
2986-#~ msgid "New partition"
2987-#~ msgstr "ახალი პარტიცია"
2988-
2989 #~ msgid "Delete partition"
2990 #~ msgstr "პარტიციის წაშლა"
2991
2992=== modified file 'debian/po/kk.po'
2993--- debian/po/kk.po 2009-07-14 13:14:35 +0000
2994+++ debian/po/kk.po 2009-07-28 15:35:01 +0000
2995@@ -6,7 +6,7 @@
2996 msgstr ""
2997 "Project-Id-Version: debian-installer\n"
2998 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
2999-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
3000+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
3001 "PO-Revision-Date: 2008-11-21 04:12+0000\n"
3002 "Last-Translator: baurzhan.m <Unknown>\n"
3003 "Language-Team: Kazakh\n"
3004@@ -55,7 +55,9 @@
3005
3006 #. Type: text
3007 #. Description
3008-#: ../ubiquity.templates:9001
3009+#. Type: text
3010+#. Description
3011+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
3012 msgid "Welcome"
3013 msgstr "Қош келдіңіз"
3014
3015@@ -1135,6 +1137,48 @@
3016 msgid "Applying configuration"
3017 msgstr ""
3018
3019+#. Type: text
3020+#. Description
3021+#: ../ubiquity.templates:159001
3022+msgid "Timezone"
3023+msgstr ""
3024+
3025+#. Type: text
3026+#. Description
3027+#: ../ubiquity.templates:160001
3028+#, fuzzy
3029+#| msgid "Keyboard layout"
3030+msgid "Keyboard"
3031+msgstr "Пернетақта сәйкестігі"
3032+
3033+#. Type: text
3034+#. Description
3035+#: ../ubiquity.templates:161001
3036+#, fuzzy
3037+#| msgid "New partition"
3038+msgid "Partition"
3039+msgstr "Жаңа бөлім"
3040+
3041+#. Type: text
3042+#. Description
3043+#: ../ubiquity.templates:162001
3044+msgid "User Info"
3045+msgstr ""
3046+
3047+#. Type: text
3048+#. Description
3049+#: ../ubiquity.templates:163001
3050+msgid "Summary"
3051+msgstr ""
3052+
3053+#. Type: text
3054+#. Description
3055+#: ../ubiquity.templates:164001
3056+#, fuzzy
3057+#| msgid "Install"
3058+msgid "Installing"
3059+msgstr "Орнату"
3060+
3061 #. Type: note
3062 #. Description
3063 #: ../ubiquity-frontend-mythbuntu.templates:1001
3064@@ -1394,8 +1438,5 @@
3065 msgid "Configuring infrared devices..."
3066 msgstr "Инфрақызыл құрылғыларды баптау..."
3067
3068-#~ msgid "New partition"
3069-#~ msgstr "Жаңа бөлім"
3070-
3071 #~ msgid "Delete partition"
3072 #~ msgstr "Бөлімді жою"
3073
3074=== modified file 'debian/po/km.po'
3075--- debian/po/km.po 2009-07-14 13:14:35 +0000
3076+++ debian/po/km.po 2009-07-28 15:35:01 +0000
3077@@ -6,7 +6,7 @@
3078 msgstr ""
3079 "Project-Id-Version: debian-installer\n"
3080 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
3081-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
3082+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
3083 "PO-Revision-Date: 2009-04-10 12:09+0000\n"
3084 "Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
3085 "Language-Team: Khmer <support@khmeros.info>\n"
3086@@ -57,7 +57,9 @@
3087
3088 #. Type: text
3089 #. Description
3090-#: ../ubiquity.templates:9001
3091+#. Type: text
3092+#. Description
3093+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
3094 msgid "Welcome"
3095 msgstr "សូមស្វាគមន៍"
3096
3097@@ -1118,6 +1120,48 @@
3098 msgid "Applying configuration"
3099 msgstr ""
3100
3101+#. Type: text
3102+#. Description
3103+#: ../ubiquity.templates:159001
3104+msgid "Timezone"
3105+msgstr ""
3106+
3107+#. Type: text
3108+#. Description
3109+#: ../ubiquity.templates:160001
3110+#, fuzzy
3111+#| msgid "Keyboard layout"
3112+msgid "Keyboard"
3113+msgstr "ប្លង់​ក្ដារ"
3114+
3115+#. Type: text
3116+#. Description
3117+#: ../ubiquity.templates:161001
3118+#, fuzzy
3119+#| msgid "New partition"
3120+msgid "Partition"
3121+msgstr "ចែក​ភាគ​ថាស​ថ្មី"
3122+
3123+#. Type: text
3124+#. Description
3125+#: ../ubiquity.templates:162001
3126+msgid "User Info"
3127+msgstr ""
3128+
3129+#. Type: text
3130+#. Description
3131+#: ../ubiquity.templates:163001
3132+msgid "Summary"
3133+msgstr ""
3134+
3135+#. Type: text
3136+#. Description
3137+#: ../ubiquity.templates:164001
3138+#, fuzzy
3139+#| msgid "Install"
3140+msgid "Installing"
3141+msgstr "ដំឡើង"
3142+
3143 #. Type: note
3144 #. Description
3145 #: ../ubiquity-frontend-mythbuntu.templates:1001
3146@@ -1376,8 +1420,5 @@
3147 #~ msgid "Select your time zone from the map, or by region and city."
3148 #~ msgstr "ជ្រើស​ពេល​វេលា​តំបន់​របស់​អ្នក ពី​ផែនទី, ឬ ដោយ តំបន់ និង ទីក្រុង​។"
3149
3150-#~ msgid "New partition"
3151-#~ msgstr "ចែក​ភាគ​ថាស​ថ្មី"
3152-
3153 #~ msgid "Delete partition"
3154 #~ msgstr "លុប​ភាគថាស"
3155
3156=== modified file 'debian/po/ko.po'
3157--- debian/po/ko.po 2009-07-14 13:14:35 +0000
3158+++ debian/po/ko.po 2009-07-28 15:35:01 +0000
3159@@ -6,7 +6,7 @@
3160 msgstr ""
3161 "Project-Id-Version: debian-installer\n"
3162 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
3163-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
3164+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
3165 "PO-Revision-Date: 2009-04-07 03:59+0000\n"
3166 "Last-Translator: Seongho Choo <somebody@kangwon.ac.kr>\n"
3167 "Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n"
3168@@ -57,7 +57,9 @@
3169
3170 #. Type: text
3171 #. Description
3172-#: ../ubiquity.templates:9001
3173+#. Type: text
3174+#. Description
3175+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
3176 msgid "Welcome"
3177 msgstr "환영"
3178
3179@@ -1138,6 +1140,48 @@
3180 msgid "Applying configuration"
3181 msgstr ""
3182
3183+#. Type: text
3184+#. Description
3185+#: ../ubiquity.templates:159001
3186+msgid "Timezone"
3187+msgstr ""
3188+
3189+#. Type: text
3190+#. Description
3191+#: ../ubiquity.templates:160001
3192+#, fuzzy
3193+#| msgid "Keyboard layout"
3194+msgid "Keyboard"
3195+msgstr "키보드 배치"
3196+
3197+#. Type: text
3198+#. Description
3199+#: ../ubiquity.templates:161001
3200+#, fuzzy
3201+#| msgid "New partition"
3202+msgid "Partition"
3203+msgstr "새 분할"
3204+
3205+#. Type: text
3206+#. Description
3207+#: ../ubiquity.templates:162001
3208+msgid "User Info"
3209+msgstr ""
3210+
3211+#. Type: text
3212+#. Description
3213+#: ../ubiquity.templates:163001
3214+msgid "Summary"
3215+msgstr ""
3216+
3217+#. Type: text
3218+#. Description
3219+#: ../ubiquity.templates:164001
3220+#, fuzzy
3221+#| msgid "Install"
3222+msgid "Installing"
3223+msgstr "설치"
3224+
3225 #. Type: note
3226 #. Description
3227 #: ../ubiquity-frontend-mythbuntu.templates:1001
3228@@ -1409,8 +1453,5 @@
3229 #~ msgid "Select your time zone from the map, or by region and city."
3230 #~ msgstr "지도나 지역, 도시명으로 지도에서 시간대 선택"
3231
3232-#~ msgid "New partition"
3233-#~ msgstr "새 분할"
3234-
3235 #~ msgid "Delete partition"
3236 #~ msgstr "분할 삭제"
3237
3238=== modified file 'debian/po/ku.po'
3239--- debian/po/ku.po 2009-07-14 13:14:35 +0000
3240+++ debian/po/ku.po 2009-07-28 15:35:01 +0000
3241@@ -6,7 +6,7 @@
3242 msgstr ""
3243 "Project-Id-Version: debian-installer\n"
3244 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
3245-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
3246+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
3247 "PO-Revision-Date: 2009-04-15 11:34+0000\n"
3248 "Last-Translator: Amed Çeko Jiyan <amedcj@gmail.com>\n"
3249 "Language-Team: ku <ubuntu-l10n-kur@lists.ubuntu.com>\n"
3250@@ -58,7 +58,9 @@
3251
3252 #. Type: text
3253 #. Description
3254-#: ../ubiquity.templates:9001
3255+#. Type: text
3256+#. Description
3257+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
3258 msgid "Welcome"
3259 msgstr "Bi xêr hatî"
3260
3261@@ -1139,6 +1141,48 @@
3262 msgid "Applying configuration"
3263 msgstr ""
3264
3265+#. Type: text
3266+#. Description
3267+#: ../ubiquity.templates:159001
3268+msgid "Timezone"
3269+msgstr ""
3270+
3271+#. Type: text
3272+#. Description
3273+#: ../ubiquity.templates:160001
3274+#, fuzzy
3275+#| msgid "Keyboard layout"
3276+msgid "Keyboard"
3277+msgstr "Rengê klavyeyê"
3278+
3279+#. Type: text
3280+#. Description
3281+#: ../ubiquity.templates:161001
3282+#, fuzzy
3283+#| msgid "New partition"
3284+msgid "Partition"
3285+msgstr "Partîsyona Nû"
3286+
3287+#. Type: text
3288+#. Description
3289+#: ../ubiquity.templates:162001
3290+msgid "User Info"
3291+msgstr ""
3292+
3293+#. Type: text
3294+#. Description
3295+#: ../ubiquity.templates:163001
3296+msgid "Summary"
3297+msgstr ""
3298+
3299+#. Type: text
3300+#. Description
3301+#: ../ubiquity.templates:164001
3302+#, fuzzy
3303+#| msgid "Install"
3304+msgid "Installing"
3305+msgstr "Saz bike"
3306+
3307 #. Type: note
3308 #. Description
3309 #: ../ubiquity-frontend-mythbuntu.templates:1001
3310@@ -1387,8 +1431,5 @@
3311 #~ msgstr ""
3312 #~ "Dikarî demê ji nexşeya dinyayê li gorî bajar an jî herêman hilbijêrî."
3313
3314-#~ msgid "New partition"
3315-#~ msgstr "Partîsyona Nû"
3316-
3317 #~ msgid "Delete partition"
3318 #~ msgstr "Partîsyonê jê bive"
3319
3320=== modified file 'debian/po/ky.po'
3321--- debian/po/ky.po 2009-07-14 13:14:35 +0000
3322+++ debian/po/ky.po 2009-07-28 15:35:01 +0000
3323@@ -7,7 +7,7 @@
3324 msgstr ""
3325 "Project-Id-Version: debian-installer\n"
3326 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
3327-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
3328+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
3329 "PO-Revision-Date: 2006-10-04 08:39+0000\n"
3330 "Last-Translator: GrajdaninK <Unknown>\n"
3331 "Language-Team: Kirghiz <ky@li.org>\n"
3332@@ -56,7 +56,9 @@
3333
3334 #. Type: text
3335 #. Description
3336-#: ../ubiquity.templates:9001
3337+#. Type: text
3338+#. Description
3339+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
3340 msgid "Welcome"
3341 msgstr "Кош келиңиз"
3342
3343@@ -1082,6 +1084,44 @@
3344 msgid "Applying configuration"
3345 msgstr ""
3346
3347+#. Type: text
3348+#. Description
3349+#: ../ubiquity.templates:159001
3350+msgid "Timezone"
3351+msgstr ""
3352+
3353+#. Type: text
3354+#. Description
3355+#: ../ubiquity.templates:160001
3356+msgid "Keyboard"
3357+msgstr ""
3358+
3359+#. Type: text
3360+#. Description
3361+#: ../ubiquity.templates:161001
3362+msgid "Partition"
3363+msgstr ""
3364+
3365+#. Type: text
3366+#. Description
3367+#: ../ubiquity.templates:162001
3368+msgid "User Info"
3369+msgstr ""
3370+
3371+#. Type: text
3372+#. Description
3373+#: ../ubiquity.templates:163001
3374+msgid "Summary"
3375+msgstr ""
3376+
3377+#. Type: text
3378+#. Description
3379+#: ../ubiquity.templates:164001
3380+#, fuzzy
3381+#| msgid "Install"
3382+msgid "Installing"
3383+msgstr "Жүктө"
3384+
3385 #. Type: note
3386 #. Description
3387 #: ../ubiquity-frontend-mythbuntu.templates:1001
3388
3389=== modified file 'debian/po/lt.po'
3390--- debian/po/lt.po 2009-07-14 13:14:35 +0000
3391+++ debian/po/lt.po 2009-07-28 15:35:01 +0000
3392@@ -6,7 +6,7 @@
3393 msgstr ""
3394 "Project-Id-Version: debian-installer\n"
3395 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
3396-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
3397+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
3398 "PO-Revision-Date: 2009-04-10 12:09+0000\n"
3399 "Last-Translator: Kęstutis Biliūnas <Unknown>\n"
3400 "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
3401@@ -55,7 +55,9 @@
3402
3403 #. Type: text
3404 #. Description
3405-#: ../ubiquity.templates:9001
3406+#. Type: text
3407+#. Description
3408+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
3409 msgid "Welcome"
3410 msgstr "Sveiki!"
3411
3412@@ -1130,6 +1132,48 @@
3413 msgid "Applying configuration"
3414 msgstr ""
3415
3416+#. Type: text
3417+#. Description
3418+#: ../ubiquity.templates:159001
3419+msgid "Timezone"
3420+msgstr ""
3421+
3422+#. Type: text
3423+#. Description
3424+#: ../ubiquity.templates:160001
3425+#, fuzzy
3426+#| msgid "Keyboard layout"
3427+msgid "Keyboard"
3428+msgstr "Klaviatūros išdėstymas"
3429+
3430+#. Type: text
3431+#. Description
3432+#: ../ubiquity.templates:161001
3433+#, fuzzy
3434+#| msgid "New partition"
3435+msgid "Partition"
3436+msgstr "Naujas skirsnis"
3437+
3438+#. Type: text
3439+#. Description
3440+#: ../ubiquity.templates:162001
3441+msgid "User Info"
3442+msgstr ""
3443+
3444+#. Type: text
3445+#. Description
3446+#: ../ubiquity.templates:163001
3447+msgid "Summary"
3448+msgstr ""
3449+
3450+#. Type: text
3451+#. Description
3452+#: ../ubiquity.templates:164001
3453+#, fuzzy
3454+#| msgid "Install"
3455+msgid "Installing"
3456+msgstr "Linux sistemos įdiegimas"
3457+
3458 #. Type: note
3459 #. Description
3460 #: ../ubiquity-frontend-mythbuntu.templates:1001
3461@@ -1371,8 +1415,5 @@
3462 msgid "Configuring infrared devices..."
3463 msgstr ""
3464
3465-#~ msgid "New partition"
3466-#~ msgstr "Naujas skirsnis"
3467-
3468 #~ msgid "Delete partition"
3469 #~ msgstr "Pašalinti skirsnį"
3470
3471=== modified file 'debian/po/lv.po'
3472--- debian/po/lv.po 2009-07-14 13:14:35 +0000
3473+++ debian/po/lv.po 2009-07-28 15:35:01 +0000
3474@@ -6,7 +6,7 @@
3475 msgstr ""
3476 "Project-Id-Version: debian-installer\n"
3477 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
3478-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
3479+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
3480 "PO-Revision-Date: 2009-04-09 20:11+0000\n"
3481 "Last-Translator: Peteris Krisjanis <pecisk@gmail.com>\n"
3482 "Language-Team: Latvian <locale@laka.lv>\n"
3483@@ -58,7 +58,9 @@
3484
3485 #. Type: text
3486 #. Description
3487-#: ../ubiquity.templates:9001
3488+#. Type: text
3489+#. Description
3490+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
3491 msgid "Welcome"
3492 msgstr "Esiet sveicināti!"
3493
3494@@ -1149,6 +1151,48 @@
3495 msgid "Applying configuration"
3496 msgstr ""
3497
3498+#. Type: text
3499+#. Description
3500+#: ../ubiquity.templates:159001
3501+msgid "Timezone"
3502+msgstr ""
3503+
3504+#. Type: text
3505+#. Description
3506+#: ../ubiquity.templates:160001
3507+#, fuzzy
3508+#| msgid "Keyboard layout"
3509+msgid "Keyboard"
3510+msgstr "Tastatūras izkārtojums"
3511+
3512+#. Type: text
3513+#. Description
3514+#: ../ubiquity.templates:161001
3515+#, fuzzy
3516+#| msgid "New partition"
3517+msgid "Partition"
3518+msgstr "Jauna sadaļa"
3519+
3520+#. Type: text
3521+#. Description
3522+#: ../ubiquity.templates:162001
3523+msgid "User Info"
3524+msgstr ""
3525+
3526+#. Type: text
3527+#. Description
3528+#: ../ubiquity.templates:163001
3529+msgid "Summary"
3530+msgstr ""
3531+
3532+#. Type: text
3533+#. Description
3534+#: ../ubiquity.templates:164001
3535+#, fuzzy
3536+#| msgid "Install"
3537+msgid "Installing"
3538+msgstr "Instalēšana"
3539+
3540 #. Type: note
3541 #. Description
3542 #: ../ubiquity-frontend-mythbuntu.templates:1001
3543@@ -1421,8 +1465,5 @@
3544 #~ msgid "Select your time zone from the map, or by region and city."
3545 #~ msgstr "Izvēlieties savu laika joslu kartē, vai norādot reģionu un pilsētu."
3546
3547-#~ msgid "New partition"
3548-#~ msgstr "Jauna sadaļa"
3549-
3550 #~ msgid "Delete partition"
3551 #~ msgstr "Dzēst sadaļu"
3552
3553=== modified file 'debian/po/mg.po'
3554--- debian/po/mg.po 2009-07-14 13:14:35 +0000
3555+++ debian/po/mg.po 2009-07-28 15:35:01 +0000
3556@@ -6,7 +6,7 @@
3557 msgstr ""
3558 "Project-Id-Version: debian-installer\n"
3559 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
3560-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
3561+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
3562 "PO-Revision-Date: 2007-07-11 19:58+0000\n"
3563 "Last-Translator: Jaonary <jaonary@free.fr>\n"
3564 "Language-Team: Malagasy <jaonary@free.fr>\n"
3565@@ -55,7 +55,9 @@
3566
3567 #. Type: text
3568 #. Description
3569-#: ../ubiquity.templates:9001
3570+#. Type: text
3571+#. Description
3572+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
3573 msgid "Welcome"
3574 msgstr ""
3575
3576@@ -1069,6 +1071,42 @@
3577 msgid "Applying configuration"
3578 msgstr ""
3579
3580+#. Type: text
3581+#. Description
3582+#: ../ubiquity.templates:159001
3583+msgid "Timezone"
3584+msgstr ""
3585+
3586+#. Type: text
3587+#. Description
3588+#: ../ubiquity.templates:160001
3589+msgid "Keyboard"
3590+msgstr ""
3591+
3592+#. Type: text
3593+#. Description
3594+#: ../ubiquity.templates:161001
3595+msgid "Partition"
3596+msgstr ""
3597+
3598+#. Type: text
3599+#. Description
3600+#: ../ubiquity.templates:162001
3601+msgid "User Info"
3602+msgstr ""
3603+
3604+#. Type: text
3605+#. Description
3606+#: ../ubiquity.templates:163001
3607+msgid "Summary"
3608+msgstr ""
3609+
3610+#. Type: text
3611+#. Description
3612+#: ../ubiquity.templates:164001
3613+msgid "Installing"
3614+msgstr ""
3615+
3616 #. Type: note
3617 #. Description
3618 #: ../ubiquity-frontend-mythbuntu.templates:1001
3619
3620=== modified file 'debian/po/mk.po'
3621--- debian/po/mk.po 2009-07-14 13:14:35 +0000
3622+++ debian/po/mk.po 2009-07-28 15:35:01 +0000
3623@@ -6,7 +6,7 @@
3624 msgstr ""
3625 "Project-Id-Version: debian-installer\n"
3626 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
3627-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
3628+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
3629 "PO-Revision-Date: 2009-04-10 12:10+0000\n"
3630 "Last-Translator: Арангел Ангов <ufo@linux.net.mk>\n"
3631 "Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
3632@@ -55,7 +55,9 @@
3633
3634 #. Type: text
3635 #. Description
3636-#: ../ubiquity.templates:9001
3637+#. Type: text
3638+#. Description
3639+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
3640 msgid "Welcome"
3641 msgstr "Добредојдовте"
3642
3643@@ -1123,6 +1125,48 @@
3644 msgid "Applying configuration"
3645 msgstr ""
3646
3647+#. Type: text
3648+#. Description
3649+#: ../ubiquity.templates:159001
3650+msgid "Timezone"
3651+msgstr ""
3652+
3653+#. Type: text
3654+#. Description
3655+#: ../ubiquity.templates:160001
3656+#, fuzzy
3657+#| msgid "Keyboard layout"
3658+msgid "Keyboard"
3659+msgstr "Распоред на тастатура"
3660+
3661+#. Type: text
3662+#. Description
3663+#: ../ubiquity.templates:161001
3664+#, fuzzy
3665+#| msgid "Edit partition"
3666+msgid "Partition"
3667+msgstr "Уреди партиција"
3668+
3669+#. Type: text
3670+#. Description
3671+#: ../ubiquity.templates:162001
3672+msgid "User Info"
3673+msgstr ""
3674+
3675+#. Type: text
3676+#. Description
3677+#: ../ubiquity.templates:163001
3678+msgid "Summary"
3679+msgstr ""
3680+
3681+#. Type: text
3682+#. Description
3683+#: ../ubiquity.templates:164001
3684+#, fuzzy
3685+#| msgid "Install"
3686+msgid "Installing"
3687+msgstr "Инсталирај"
3688+
3689 #. Type: note
3690 #. Description
3691 #: ../ubiquity-frontend-mythbuntu.templates:1001
3692
3693=== modified file 'debian/po/ml.po'
3694--- debian/po/ml.po 2009-07-14 13:14:35 +0000
3695+++ debian/po/ml.po 2009-07-28 15:35:01 +0000
3696@@ -6,7 +6,7 @@
3697 msgstr ""
3698 "Project-Id-Version: debian-installer\n"
3699 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
3700-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
3701+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
3702 "PO-Revision-Date: 2009-04-10 12:10+0000\n"
3703 "Last-Translator: Praveen A <Unknown>\n"
3704 "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് <smc-"
3705@@ -56,7 +56,9 @@
3706
3707 #. Type: text
3708 #. Description
3709-#: ../ubiquity.templates:9001
3710+#. Type: text
3711+#. Description
3712+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
3713 msgid "Welcome"
3714 msgstr "സ്വാഗതം"
3715
3716@@ -1091,6 +1093,48 @@
3717 msgid "Applying configuration"
3718 msgstr ""
3719
3720+#. Type: text
3721+#. Description
3722+#: ../ubiquity.templates:159001
3723+msgid "Timezone"
3724+msgstr ""
3725+
3726+#. Type: text
3727+#. Description
3728+#: ../ubiquity.templates:160001
3729+#, fuzzy
3730+#| msgid "Keyboard layout"
3731+msgid "Keyboard"
3732+msgstr "കീബോര്‍ഡ് ലേയൌട്ട്"
3733+
3734+#. Type: text
3735+#. Description
3736+#: ../ubiquity.templates:161001
3737+#, fuzzy
3738+#| msgid "Prepare partitions"
3739+msgid "Partition"
3740+msgstr "പാര്‍ട്ടീഷനുകള്‍ തയ്യാറാക്കുക"
3741+
3742+#. Type: text
3743+#. Description
3744+#: ../ubiquity.templates:162001
3745+msgid "User Info"
3746+msgstr ""
3747+
3748+#. Type: text
3749+#. Description
3750+#: ../ubiquity.templates:163001
3751+msgid "Summary"
3752+msgstr ""
3753+
3754+#. Type: text
3755+#. Description
3756+#: ../ubiquity.templates:164001
3757+#, fuzzy
3758+#| msgid "Install"
3759+msgid "Installing"
3760+msgstr "ഇന്‍സ്റ്റാള്‍"
3761+
3762 #. Type: note
3763 #. Description
3764 #: ../ubiquity-frontend-mythbuntu.templates:1001
3765
3766=== modified file 'debian/po/mr.po'
3767--- debian/po/mr.po 2009-07-14 13:14:35 +0000
3768+++ debian/po/mr.po 2009-07-28 15:35:01 +0000
3769@@ -6,7 +6,7 @@
3770 msgstr ""
3771 "Project-Id-Version: debian-installer\n"
3772 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
3773-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
3774+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
3775 "PO-Revision-Date: 2009-04-10 12:10+0000\n"
3776 "Last-Translator: Sampada <Unknown>\n"
3777 "Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India "
3778@@ -56,7 +56,9 @@
3779
3780 #. Type: text
3781 #. Description
3782-#: ../ubiquity.templates:9001
3783+#. Type: text
3784+#. Description
3785+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
3786 msgid "Welcome"
3787 msgstr "सुस्वागतम्"
3788
3789@@ -1081,6 +1083,48 @@
3790 msgid "Applying configuration"
3791 msgstr ""
3792
3793+#. Type: text
3794+#. Description
3795+#: ../ubiquity.templates:159001
3796+msgid "Timezone"
3797+msgstr ""
3798+
3799+#. Type: text
3800+#. Description
3801+#: ../ubiquity.templates:160001
3802+#, fuzzy
3803+#| msgid "Keyboard layout"
3804+msgid "Keyboard"
3805+msgstr "कळपट्टी प्रकार"
3806+
3807+#. Type: text
3808+#. Description
3809+#: ../ubiquity.templates:161001
3810+#, fuzzy
3811+#| msgid "Prepare partitions"
3812+msgid "Partition"
3813+msgstr "विभाग तयार करा"
3814+
3815+#. Type: text
3816+#. Description
3817+#: ../ubiquity.templates:162001
3818+msgid "User Info"
3819+msgstr ""
3820+
3821+#. Type: text
3822+#. Description
3823+#: ../ubiquity.templates:163001
3824+msgid "Summary"
3825+msgstr ""
3826+
3827+#. Type: text
3828+#. Description
3829+#: ../ubiquity.templates:164001
3830+#, fuzzy
3831+#| msgid "Install"
3832+msgid "Installing"
3833+msgstr "इन्स्टाल करा"
3834+
3835 #. Type: note
3836 #. Description
3837 #: ../ubiquity-frontend-mythbuntu.templates:1001
3838
3839=== modified file 'debian/po/ms.po'
3840--- debian/po/ms.po 2009-07-14 13:14:35 +0000
3841+++ debian/po/ms.po 2009-07-28 15:35:01 +0000
3842@@ -7,7 +7,7 @@
3843 msgstr ""
3844 "Project-Id-Version: debian-installer\n"
3845 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
3846-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
3847+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
3848 "PO-Revision-Date: 2009-04-14 06:10+0000\n"
3849 "Last-Translator: dequan <mridzuanm@gmail.com>\n"
3850 "Language-Team: Malay <ms@li.org>\n"
3851@@ -58,7 +58,9 @@
3852
3853 #. Type: text
3854 #. Description
3855-#: ../ubiquity.templates:9001
3856+#. Type: text
3857+#. Description
3858+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
3859 msgid "Welcome"
3860 msgstr "Selamat Datang"
3861
3862@@ -1161,6 +1163,48 @@
3863 msgid "Applying configuration"
3864 msgstr ""
3865
3866+#. Type: text
3867+#. Description
3868+#: ../ubiquity.templates:159001
3869+msgid "Timezone"
3870+msgstr ""
3871+
3872+#. Type: text
3873+#. Description
3874+#: ../ubiquity.templates:160001
3875+#, fuzzy
3876+#| msgid "Keyboard layout"
3877+msgid "Keyboard"
3878+msgstr "Susunatur papan kekunci"
3879+
3880+#. Type: text
3881+#. Description
3882+#: ../ubiquity.templates:161001
3883+#, fuzzy
3884+#| msgid "New partition"
3885+msgid "Partition"
3886+msgstr "Pembahagian baru"
3887+
3888+#. Type: text
3889+#. Description
3890+#: ../ubiquity.templates:162001
3891+msgid "User Info"
3892+msgstr ""
3893+
3894+#. Type: text
3895+#. Description
3896+#: ../ubiquity.templates:163001
3897+msgid "Summary"
3898+msgstr ""
3899+
3900+#. Type: text
3901+#. Description
3902+#: ../ubiquity.templates:164001
3903+#, fuzzy
3904+#| msgid "Install"
3905+msgid "Installing"
3906+msgstr "Pasang"
3907+
3908 #. Type: note
3909 #. Description
3910 #: ../ubiquity-frontend-mythbuntu.templates:1001
3911@@ -1437,8 +1481,5 @@
3912 #~ msgid "Select your time zone from the map, or by region and city."
3913 #~ msgstr "Pilih zon masa anda dari peta, atau dari kawasan dan bandar."
3914
3915-#~ msgid "New partition"
3916-#~ msgstr "Pembahagian baru"
3917-
3918 #~ msgid "Delete partition"
3919 #~ msgstr "Buang pembahagian"
3920
3921=== modified file 'debian/po/nb.po'
3922--- debian/po/nb.po 2009-07-14 13:14:35 +0000
3923+++ debian/po/nb.po 2009-07-28 15:35:01 +0000
3924@@ -6,7 +6,7 @@
3925 msgstr ""
3926 "Project-Id-Version: debian-installer\n"
3927 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
3928-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
3929+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
3930 "PO-Revision-Date: 2009-04-10 12:10+0000\n"
3931 "Last-Translator: Hans Fredrik Nordhaug <hans@nordhaug.priv.no>\n"
3932 "Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n"
3933@@ -55,7 +55,9 @@
3934
3935 #. Type: text
3936 #. Description
3937-#: ../ubiquity.templates:9001
3938+#. Type: text
3939+#. Description
3940+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
3941 msgid "Welcome"
3942 msgstr "Velkommen"
3943
3944@@ -1148,6 +1150,48 @@
3945 msgid "Applying configuration"
3946 msgstr ""
3947
3948+#. Type: text
3949+#. Description
3950+#: ../ubiquity.templates:159001
3951+msgid "Timezone"
3952+msgstr ""
3953+
3954+#. Type: text
3955+#. Description
3956+#: ../ubiquity.templates:160001
3957+#, fuzzy
3958+#| msgid "Keyboard layout"
3959+msgid "Keyboard"
3960+msgstr "Tastaturutforming"
3961+
3962+#. Type: text
3963+#. Description
3964+#: ../ubiquity.templates:161001
3965+#, fuzzy
3966+#| msgid "New partition"
3967+msgid "Partition"
3968+msgstr "Ny partisjon"
3969+
3970+#. Type: text
3971+#. Description
3972+#: ../ubiquity.templates:162001
3973+msgid "User Info"
3974+msgstr ""
3975+
3976+#. Type: text
3977+#. Description
3978+#: ../ubiquity.templates:163001
3979+msgid "Summary"
3980+msgstr ""
3981+
3982+#. Type: text
3983+#. Description
3984+#: ../ubiquity.templates:164001
3985+#, fuzzy
3986+#| msgid "Install"
3987+msgid "Installing"
3988+msgstr "Installer"
3989+
3990 #. Type: note
3991 #. Description
3992 #: ../ubiquity-frontend-mythbuntu.templates:1001
3993@@ -1408,8 +1452,5 @@
3994 msgid "Configuring infrared devices..."
3995 msgstr "Konfigurerer infrarøde enheter..."
3996
3997-#~ msgid "New partition"
3998-#~ msgstr "Ny partisjon"
3999-
4000 #~ msgid "Delete partition"
4001 #~ msgstr "Slett partisjon"
4002
4003=== modified file 'debian/po/ne.po'
4004--- debian/po/ne.po 2009-07-14 13:14:35 +0000
4005+++ debian/po/ne.po 2009-07-28 15:35:01 +0000
4006@@ -6,7 +6,7 @@
4007 msgstr ""
4008 "Project-Id-Version: debian-installer\n"
4009 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
4010-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
4011+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
4012 "PO-Revision-Date: 2009-04-10 12:10+0000\n"
4013 "Last-Translator: Shiva Pokharel <shiva@mpp.org.np>\n"
4014 "Language-Team: Nepali <info@mpp.org.np>\n"
4015@@ -55,7 +55,9 @@
4016
4017 #. Type: text
4018 #. Description
4019-#: ../ubiquity.templates:9001
4020+#. Type: text
4021+#. Description
4022+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
4023 msgid "Welcome"
4024 msgstr "स्वागतम"
4025
4026@@ -1072,6 +1074,44 @@
4027 msgid "Applying configuration"
4028 msgstr ""
4029
4030+#. Type: text
4031+#. Description
4032+#: ../ubiquity.templates:159001
4033+msgid "Timezone"
4034+msgstr ""
4035+
4036+#. Type: text
4037+#. Description
4038+#: ../ubiquity.templates:160001
4039+msgid "Keyboard"
4040+msgstr ""
4041+
4042+#. Type: text
4043+#. Description
4044+#: ../ubiquity.templates:161001
4045+msgid "Partition"
4046+msgstr ""
4047+
4048+#. Type: text
4049+#. Description
4050+#: ../ubiquity.templates:162001
4051+msgid "User Info"
4052+msgstr ""
4053+
4054+#. Type: text
4055+#. Description
4056+#: ../ubiquity.templates:163001
4057+msgid "Summary"
4058+msgstr ""
4059+
4060+#. Type: text
4061+#. Description
4062+#: ../ubiquity.templates:164001
4063+#, fuzzy
4064+#| msgid "Install"
4065+msgid "Installing"
4066+msgstr "स्थापना गर्नुहोस्"
4067+
4068 #. Type: note
4069 #. Description
4070 #: ../ubiquity-frontend-mythbuntu.templates:1001
4071
4072=== modified file 'debian/po/nl.po'
4073--- debian/po/nl.po 2009-07-14 13:14:35 +0000
4074+++ debian/po/nl.po 2009-07-28 15:35:01 +0000
4075@@ -6,7 +6,7 @@
4076 msgstr ""
4077 "Project-Id-Version: debian-installer\n"
4078 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
4079-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
4080+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
4081 "PO-Revision-Date: 2009-04-10 12:10+0000\n"
4082 "Last-Translator: Frans Pop <Unknown>\n"
4083 "Language-Team: Dutch <debian-l10n-dutch@lists.debian.org>\n"
4084@@ -58,7 +58,9 @@
4085
4086 #. Type: text
4087 #. Description
4088-#: ../ubiquity.templates:9001
4089+#. Type: text
4090+#. Description
4091+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
4092 msgid "Welcome"
4093 msgstr "Welkom"
4094
4095@@ -1167,6 +1169,48 @@
4096 msgid "Applying configuration"
4097 msgstr ""
4098
4099+#. Type: text
4100+#. Description
4101+#: ../ubiquity.templates:159001
4102+msgid "Timezone"
4103+msgstr ""
4104+
4105+#. Type: text
4106+#. Description
4107+#: ../ubiquity.templates:160001
4108+#, fuzzy
4109+#| msgid "Keyboard layout"
4110+msgid "Keyboard"
4111+msgstr "Toetsenbordindeling"
4112+
4113+#. Type: text
4114+#. Description
4115+#: ../ubiquity.templates:161001
4116+#, fuzzy
4117+#| msgid "New partition"
4118+msgid "Partition"
4119+msgstr "Nieuwe partitie"
4120+
4121+#. Type: text
4122+#. Description
4123+#: ../ubiquity.templates:162001
4124+msgid "User Info"
4125+msgstr ""
4126+
4127+#. Type: text
4128+#. Description
4129+#: ../ubiquity.templates:163001
4130+msgid "Summary"
4131+msgstr ""
4132+
4133+#. Type: text
4134+#. Description
4135+#: ../ubiquity.templates:164001
4136+#, fuzzy
4137+#| msgid "Install"
4138+msgid "Installing"
4139+msgstr "Installeren"
4140+
4141 #. Type: note
4142 #. Description
4143 #: ../ubiquity-frontend-mythbuntu.templates:1001
4144@@ -1435,8 +1479,5 @@
4145 #~ msgid "Select your time zone from the map, or by region and city."
4146 #~ msgstr "Kies uw tijdzone met de kaart, per regio of per stad."
4147
4148-#~ msgid "New partition"
4149-#~ msgstr "Nieuwe partitie"
4150-
4151 #~ msgid "Delete partition"
4152 #~ msgstr "Partitie verwijderen"
4153
4154=== modified file 'debian/po/nn.po'
4155--- debian/po/nn.po 2009-07-14 13:14:35 +0000
4156+++ debian/po/nn.po 2009-07-28 15:35:01 +0000
4157@@ -6,7 +6,7 @@
4158 msgstr ""
4159 "Project-Id-Version: debian-installer\n"
4160 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
4161-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
4162+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
4163 "PO-Revision-Date: 2009-04-10 12:10+0000\n"
4164 "Last-Translator: Håvard Korsvoll <korsvoll@skulelinux.no>\n"
4165 "Language-Team: Norwegian nynorsk <i18n-nn@lister.ping.uio.no>\n"
4166@@ -55,7 +55,9 @@
4167
4168 #. Type: text
4169 #. Description
4170-#: ../ubiquity.templates:9001
4171+#. Type: text
4172+#. Description
4173+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
4174 msgid "Welcome"
4175 msgstr "Velkomen"
4176
4177@@ -1129,6 +1131,48 @@
4178 msgid "Applying configuration"
4179 msgstr ""
4180
4181+#. Type: text
4182+#. Description
4183+#: ../ubiquity.templates:159001
4184+msgid "Timezone"
4185+msgstr ""
4186+
4187+#. Type: text
4188+#. Description
4189+#: ../ubiquity.templates:160001
4190+#, fuzzy
4191+#| msgid "Keyboard layout"
4192+msgid "Keyboard"
4193+msgstr "Tastaturutforming"
4194+
4195+#. Type: text
4196+#. Description
4197+#: ../ubiquity.templates:161001
4198+#, fuzzy
4199+#| msgid "New partition"
4200+msgid "Partition"
4201+msgstr "Ny partisjon"
4202+
4203+#. Type: text
4204+#. Description
4205+#: ../ubiquity.templates:162001
4206+msgid "User Info"
4207+msgstr ""
4208+
4209+#. Type: text
4210+#. Description
4211+#: ../ubiquity.templates:163001
4212+msgid "Summary"
4213+msgstr ""
4214+
4215+#. Type: text
4216+#. Description
4217+#: ../ubiquity.templates:164001
4218+#, fuzzy
4219+#| msgid "Install"
4220+msgid "Installing"
4221+msgstr "Installér"
4222+
4223 #. Type: note
4224 #. Description
4225 #: ../ubiquity-frontend-mythbuntu.templates:1001
4226@@ -1390,8 +1434,5 @@
4227 msgid "Configuring infrared devices..."
4228 msgstr "Konfigurerer infraraude einheiter..."
4229
4230-#~ msgid "New partition"
4231-#~ msgstr "Ny partisjon"
4232-
4233 #~ msgid "Delete partition"
4234 #~ msgstr "Slett partisjon"
4235
4236=== modified file 'debian/po/oc.po'
4237--- debian/po/oc.po 2009-07-14 13:14:35 +0000
4238+++ debian/po/oc.po 2009-07-28 15:35:01 +0000
4239@@ -9,7 +9,7 @@
4240 msgstr ""
4241 "Project-Id-Version: debian-installer\n"
4242 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
4243-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
4244+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
4245 "PO-Revision-Date: 2008-11-29 20:21+0000\n"
4246 "Last-Translator: Yannig MARCHEGAY (Kokoyaya) <yannig@marchegay.org>\n"
4247 "Language-Team: Occitan (post 1500) <ubuntu-l10n-oci@lists.ubuntu.com>\n"
4248@@ -58,7 +58,9 @@
4249
4250 #. Type: text
4251 #. Description
4252-#: ../ubiquity.templates:9001
4253+#. Type: text
4254+#. Description
4255+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
4256 msgid "Welcome"
4257 msgstr "Planvenguda"
4258
4259@@ -1145,6 +1147,48 @@
4260 msgid "Applying configuration"
4261 msgstr ""
4262
4263+#. Type: text
4264+#. Description
4265+#: ../ubiquity.templates:159001
4266+msgid "Timezone"
4267+msgstr ""
4268+
4269+#. Type: text
4270+#. Description
4271+#: ../ubiquity.templates:160001
4272+#, fuzzy
4273+#| msgid "Keyboard layout"
4274+msgid "Keyboard"
4275+msgstr "Disposicion del clavièr"
4276+
4277+#. Type: text
4278+#. Description
4279+#: ../ubiquity.templates:161001
4280+#, fuzzy
4281+#| msgid "New partition"
4282+msgid "Partition"
4283+msgstr "Particion novèla"
4284+
4285+#. Type: text
4286+#. Description
4287+#: ../ubiquity.templates:162001
4288+msgid "User Info"
4289+msgstr ""
4290+
4291+#. Type: text
4292+#. Description
4293+#: ../ubiquity.templates:163001
4294+msgid "Summary"
4295+msgstr ""
4296+
4297+#. Type: text
4298+#. Description
4299+#: ../ubiquity.templates:164001
4300+#, fuzzy
4301+#| msgid "Install"
4302+msgid "Installing"
4303+msgstr "Installar"
4304+
4305 #. Type: note
4306 #. Description
4307 #: ../ubiquity-frontend-mythbuntu.templates:1001
4308@@ -1413,8 +1457,5 @@
4309 msgid "Configuring infrared devices..."
4310 msgstr "Configuracion dels periferics infraroges..."
4311
4312-#~ msgid "New partition"
4313-#~ msgstr "Particion novèla"
4314-
4315 #~ msgid "Delete partition"
4316 #~ msgstr "Suprimir la particion"
4317
4318=== modified file 'debian/po/pa.po'
4319--- debian/po/pa.po 2009-07-14 13:14:35 +0000
4320+++ debian/po/pa.po 2009-07-28 15:35:01 +0000
4321@@ -6,7 +6,7 @@
4322 msgstr ""
4323 "Project-Id-Version: debian-installer\n"
4324 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
4325-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
4326+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
4327 "PO-Revision-Date: 2009-04-10 12:11+0000\n"
4328 "Last-Translator: A S Alam <aalam@users.sf.net>\n"
4329 "Language-Team: Punjabi/Panjabi <punjabi-users@lists.sf.net>\n"
4330@@ -55,7 +55,9 @@
4331
4332 #. Type: text
4333 #. Description
4334-#: ../ubiquity.templates:9001
4335+#. Type: text
4336+#. Description
4337+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
4338 msgid "Welcome"
4339 msgstr "ਜੀ ਆਇਆਂ ਨੂੰ"
4340
4341@@ -1090,6 +1092,44 @@
4342 msgid "Applying configuration"
4343 msgstr ""
4344
4345+#. Type: text
4346+#. Description
4347+#: ../ubiquity.templates:159001
4348+msgid "Timezone"
4349+msgstr ""
4350+
4351+#. Type: text
4352+#. Description
4353+#: ../ubiquity.templates:160001
4354+msgid "Keyboard"
4355+msgstr ""
4356+
4357+#. Type: text
4358+#. Description
4359+#: ../ubiquity.templates:161001
4360+msgid "Partition"
4361+msgstr ""
4362+
4363+#. Type: text
4364+#. Description
4365+#: ../ubiquity.templates:162001
4366+msgid "User Info"
4367+msgstr ""
4368+
4369+#. Type: text
4370+#. Description
4371+#: ../ubiquity.templates:163001
4372+msgid "Summary"
4373+msgstr ""
4374+
4375+#. Type: text
4376+#. Description
4377+#: ../ubiquity.templates:164001
4378+#, fuzzy
4379+#| msgid "Install"
4380+msgid "Installing"
4381+msgstr "ਇੰਸਟਾਲ"
4382+
4383 #. Type: note
4384 #. Description
4385 #: ../ubiquity-frontend-mythbuntu.templates:1001
4386
4387=== modified file 'debian/po/pl.po'
4388--- debian/po/pl.po 2009-07-14 13:14:35 +0000
4389+++ debian/po/pl.po 2009-07-28 15:35:01 +0000
4390@@ -6,7 +6,7 @@
4391 msgstr ""
4392 "Project-Id-Version: debian-installer\n"
4393 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
4394-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
4395+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
4396 "PO-Revision-Date: 2009-04-10 12:11+0000\n"
4397 "Last-Translator: Bartosz Fenski <fenio@debian.org>\n"
4398 "Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n"
4399@@ -58,7 +58,9 @@
4400
4401 #. Type: text
4402 #. Description
4403-#: ../ubiquity.templates:9001
4404+#. Type: text
4405+#. Description
4406+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
4407 msgid "Welcome"
4408 msgstr "Witamy"
4409
4410@@ -1151,6 +1153,48 @@
4411 msgid "Applying configuration"
4412 msgstr ""
4413
4414+#. Type: text
4415+#. Description
4416+#: ../ubiquity.templates:159001
4417+msgid "Timezone"
4418+msgstr ""
4419+
4420+#. Type: text
4421+#. Description
4422+#: ../ubiquity.templates:160001
4423+#, fuzzy
4424+#| msgid "Keyboard layout"
4425+msgid "Keyboard"
4426+msgstr "Układ klawiatury"
4427+
4428+#. Type: text
4429+#. Description
4430+#: ../ubiquity.templates:161001
4431+#, fuzzy
4432+#| msgid "New partition"
4433+msgid "Partition"
4434+msgstr "Nowa partycja"
4435+
4436+#. Type: text
4437+#. Description
4438+#: ../ubiquity.templates:162001
4439+msgid "User Info"
4440+msgstr ""
4441+
4442+#. Type: text
4443+#. Description
4444+#: ../ubiquity.templates:163001
4445+msgid "Summary"
4446+msgstr ""
4447+
4448+#. Type: text
4449+#. Description
4450+#: ../ubiquity.templates:164001
4451+#, fuzzy
4452+#| msgid "Install"
4453+msgid "Installing"
4454+msgstr "Instalacja"
4455+
4456 #. Type: note
4457 #. Description
4458 #: ../ubiquity-frontend-mythbuntu.templates:1001
4459@@ -1431,8 +1475,5 @@
4460 #~ msgid "Select your time zone from the map, or by region and city."
4461 #~ msgstr "Proszę wybrać strefę czasową z mapy lub przez region i miasto."
4462
4463-#~ msgid "New partition"
4464-#~ msgstr "Nowa partycja"
4465-
4466 #~ msgid "Delete partition"
4467 #~ msgstr "Usuń partycję"
4468
4469=== modified file 'debian/po/pt.po'
4470--- debian/po/pt.po 2009-07-14 13:14:35 +0000
4471+++ debian/po/pt.po 2009-07-28 15:35:01 +0000
4472@@ -6,7 +6,7 @@
4473 msgstr ""
4474 "Project-Id-Version: debian-installer\n"
4475 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
4476-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
4477+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
4478 "PO-Revision-Date: 2009-04-11 12:28+0000\n"
4479 "Last-Translator: Paulo Dias <paxnubis@gmail.com>\n"
4480 "Language-Team: Portuguese <traduz@debianpt.org>\n"
4481@@ -57,7 +57,9 @@
4482
4483 #. Type: text
4484 #. Description
4485-#: ../ubiquity.templates:9001
4486+#. Type: text
4487+#. Description
4488+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
4489 msgid "Welcome"
4490 msgstr "Bem-Vindo"
4491
4492@@ -1160,6 +1162,48 @@
4493 msgid "Applying configuration"
4494 msgstr ""
4495
4496+#. Type: text
4497+#. Description
4498+#: ../ubiquity.templates:159001
4499+msgid "Timezone"
4500+msgstr ""
4501+
4502+#. Type: text
4503+#. Description
4504+#: ../ubiquity.templates:160001
4505+#, fuzzy
4506+#| msgid "Keyboard layout"
4507+msgid "Keyboard"
4508+msgstr "Seleccionar a disposição do teclado"
4509+
4510+#. Type: text
4511+#. Description
4512+#: ../ubiquity.templates:161001
4513+#, fuzzy
4514+#| msgid "New partition"
4515+msgid "Partition"
4516+msgstr "Nova partição"
4517+
4518+#. Type: text
4519+#. Description
4520+#: ../ubiquity.templates:162001
4521+msgid "User Info"
4522+msgstr ""
4523+
4524+#. Type: text
4525+#. Description
4526+#: ../ubiquity.templates:163001
4527+msgid "Summary"
4528+msgstr ""
4529+
4530+#. Type: text
4531+#. Description
4532+#: ../ubiquity.templates:164001
4533+#, fuzzy
4534+#| msgid "Install"
4535+msgid "Installing"
4536+msgstr "Instalar"
4537+
4538 #. Type: note
4539 #. Description
4540 #: ../ubiquity-frontend-mythbuntu.templates:1001
4541@@ -1435,8 +1479,5 @@
4542 #~ msgid "Select your time zone from the map, or by region and city."
4543 #~ msgstr "Seleccione a sua zona horária do mapa, ou por região e cidade."
4544
4545-#~ msgid "New partition"
4546-#~ msgstr "Nova partição"
4547-
4548 #~ msgid "Delete partition"
4549 #~ msgstr "Apagar partição"
4550
4551=== modified file 'debian/po/pt_BR.po'
4552--- debian/po/pt_BR.po 2009-07-14 13:14:35 +0000
4553+++ debian/po/pt_BR.po 2009-07-28 15:35:01 +0000
4554@@ -6,7 +6,7 @@
4555 msgstr ""
4556 "Project-Id-Version: debian-installer\n"
4557 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
4558-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
4559+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
4560 "PO-Revision-Date: 2009-04-12 01:05+0000\n"
4561 "Last-Translator: André Gondim <andregondim@ubuntu.com>\n"
4562 "Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian."
4563@@ -58,7 +58,9 @@
4564
4565 #. Type: text
4566 #. Description
4567-#: ../ubiquity.templates:9001
4568+#. Type: text
4569+#. Description
4570+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
4571 msgid "Welcome"
4572 msgstr "Bem Vindo"
4573
4574@@ -1163,6 +1165,48 @@
4575 msgid "Applying configuration"
4576 msgstr ""
4577
4578+#. Type: text
4579+#. Description
4580+#: ../ubiquity.templates:159001
4581+msgid "Timezone"
4582+msgstr ""
4583+
4584+#. Type: text
4585+#. Description
4586+#: ../ubiquity.templates:160001
4587+#, fuzzy
4588+#| msgid "Keyboard layout"
4589+msgid "Keyboard"
4590+msgstr "Selecione um layout de teclado"
4591+
4592+#. Type: text
4593+#. Description
4594+#: ../ubiquity.templates:161001
4595+#, fuzzy
4596+#| msgid "New partition"
4597+msgid "Partition"
4598+msgstr "Nova partição"
4599+
4600+#. Type: text
4601+#. Description
4602+#: ../ubiquity.templates:162001
4603+msgid "User Info"
4604+msgstr ""
4605+
4606+#. Type: text
4607+#. Description
4608+#: ../ubiquity.templates:163001
4609+msgid "Summary"
4610+msgstr ""
4611+
4612+#. Type: text
4613+#. Description
4614+#: ../ubiquity.templates:164001
4615+#, fuzzy
4616+#| msgid "Install"
4617+msgid "Installing"
4618+msgstr "Instalar"
4619+
4620 #. Type: note
4621 #. Description
4622 #: ../ubiquity-frontend-mythbuntu.templates:1001
4623@@ -1439,8 +1483,5 @@
4624 #~ msgid "Select your time zone from the map, or by region and city."
4625 #~ msgstr "Selecione seu fuso horário no mapa, ou região ou cidade"
4626
4627-#~ msgid "New partition"
4628-#~ msgstr "Nova partição"
4629-
4630 #~ msgid "Delete partition"
4631 #~ msgstr "Apagar partição"
4632
4633=== modified file 'debian/po/ro.po'
4634--- debian/po/ro.po 2009-07-14 13:14:35 +0000
4635+++ debian/po/ro.po 2009-07-28 15:35:01 +0000
4636@@ -6,7 +6,7 @@
4637 msgstr ""
4638 "Project-Id-Version: debian-installer\n"
4639 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
4640-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
4641+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
4642 "PO-Revision-Date: 2009-04-11 11:56+0000\n"
4643 "Last-Translator: Adi Roiban <adi@roiban.ro>\n"
4644 "Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n"
4645@@ -57,7 +57,9 @@
4646
4647 #. Type: text
4648 #. Description
4649-#: ../ubiquity.templates:9001
4650+#. Type: text
4651+#. Description
4652+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
4653 msgid "Welcome"
4654 msgstr "Bine ați venit"
4655
4656@@ -1160,6 +1162,48 @@
4657 msgid "Applying configuration"
4658 msgstr ""
4659
4660+#. Type: text
4661+#. Description
4662+#: ../ubiquity.templates:159001
4663+msgid "Timezone"
4664+msgstr ""
4665+
4666+#. Type: text
4667+#. Description
4668+#: ../ubiquity.templates:160001
4669+#, fuzzy
4670+#| msgid "Keyboard layout"
4671+msgid "Keyboard"
4672+msgstr "Aranjament tastatură"
4673+
4674+#. Type: text
4675+#. Description
4676+#: ../ubiquity.templates:161001
4677+#, fuzzy
4678+#| msgid "New partition"
4679+msgid "Partition"
4680+msgstr "Partiție nouă"
4681+
4682+#. Type: text
4683+#. Description
4684+#: ../ubiquity.templates:162001
4685+msgid "User Info"
4686+msgstr ""
4687+
4688+#. Type: text
4689+#. Description
4690+#: ../ubiquity.templates:163001
4691+msgid "Summary"
4692+msgstr ""
4693+
4694+#. Type: text
4695+#. Description
4696+#: ../ubiquity.templates:164001
4697+#, fuzzy
4698+#| msgid "Install"
4699+msgid "Installing"
4700+msgstr "Instalează"
4701+
4702 #. Type: note
4703 #. Description
4704 #: ../ubiquity-frontend-mythbuntu.templates:1001
4705@@ -1440,8 +1484,5 @@
4706 #~ msgid "Select your time zone from the map, or by region and city."
4707 #~ msgstr "Alegeți fusul orar din hartă, sau după regiune și oraș."
4708
4709-#~ msgid "New partition"
4710-#~ msgstr "Partiție nouă"
4711-
4712 #~ msgid "Delete partition"
4713 #~ msgstr "Șterge partiție"
4714
4715=== modified file 'debian/po/ru.po'
4716--- debian/po/ru.po 2009-07-14 13:14:35 +0000
4717+++ debian/po/ru.po 2009-07-28 15:35:01 +0000
4718@@ -6,7 +6,7 @@
4719 msgstr ""
4720 "Project-Id-Version: debian-installer\n"
4721 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
4722-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
4723+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
4724 "PO-Revision-Date: 2009-04-10 12:11+0000\n"
4725 "Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n"
4726 "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
4727@@ -57,7 +57,9 @@
4728
4729 #. Type: text
4730 #. Description
4731-#: ../ubiquity.templates:9001
4732+#. Type: text
4733+#. Description
4734+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
4735 msgid "Welcome"
4736 msgstr "Добро пожаловать"
4737
4738@@ -1154,6 +1156,48 @@
4739 msgid "Applying configuration"
4740 msgstr ""
4741
4742+#. Type: text
4743+#. Description
4744+#: ../ubiquity.templates:159001
4745+msgid "Timezone"
4746+msgstr ""
4747+
4748+#. Type: text
4749+#. Description
4750+#: ../ubiquity.templates:160001
4751+#, fuzzy
4752+#| msgid "Keyboard layout"
4753+msgid "Keyboard"
4754+msgstr "Раскладка клавиатуры"
4755+
4756+#. Type: text
4757+#. Description
4758+#: ../ubiquity.templates:161001
4759+#, fuzzy
4760+#| msgid "New partition"
4761+msgid "Partition"
4762+msgstr "Новый раздел"
4763+
4764+#. Type: text
4765+#. Description
4766+#: ../ubiquity.templates:162001
4767+msgid "User Info"
4768+msgstr ""
4769+
4770+#. Type: text
4771+#. Description
4772+#: ../ubiquity.templates:163001
4773+msgid "Summary"
4774+msgstr ""
4775+
4776+#. Type: text
4777+#. Description
4778+#: ../ubiquity.templates:164001
4779+#, fuzzy
4780+#| msgid "Install"
4781+msgid "Installing"
4782+msgstr "Установка"
4783+
4784 #. Type: note
4785 #. Description
4786 #: ../ubiquity-frontend-mythbuntu.templates:1001
4787@@ -1432,8 +1476,5 @@
4788 #~ msgid "Select your time zone from the map, or by region and city."
4789 #~ msgstr "Выберите часовой пояс на карте или по региону и городу."
4790
4791-#~ msgid "New partition"
4792-#~ msgstr "Новый раздел"
4793-
4794 #~ msgid "Delete partition"
4795 #~ msgstr "Удалить раздел"
4796
4797=== modified file 'debian/po/se.po'
4798--- debian/po/se.po 2009-07-14 13:14:35 +0000
4799+++ debian/po/se.po 2009-07-28 15:35:01 +0000
4800@@ -6,7 +6,7 @@
4801 msgstr ""
4802 "Project-Id-Version: debian-installer\n"
4803 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
4804-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
4805+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
4806 "PO-Revision-Date: 2009-04-10 12:11+0000\n"
4807 "Last-Translator: Børre Gaup <boerre@skolelinux.no>\n"
4808 "Language-Team: Northern Saami <i18n-sme@lister.ping.uio.no>\n"
4809@@ -55,7 +55,9 @@
4810
4811 #. Type: text
4812 #. Description
4813-#: ../ubiquity.templates:9001
4814+#. Type: text
4815+#. Description
4816+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
4817 msgid "Welcome"
4818 msgstr ""
4819
4820@@ -1069,6 +1071,42 @@
4821 msgid "Applying configuration"
4822 msgstr ""
4823
4824+#. Type: text
4825+#. Description
4826+#: ../ubiquity.templates:159001
4827+msgid "Timezone"
4828+msgstr ""
4829+
4830+#. Type: text
4831+#. Description
4832+#: ../ubiquity.templates:160001
4833+msgid "Keyboard"
4834+msgstr ""
4835+
4836+#. Type: text
4837+#. Description
4838+#: ../ubiquity.templates:161001
4839+msgid "Partition"
4840+msgstr ""
4841+
4842+#. Type: text
4843+#. Description
4844+#: ../ubiquity.templates:162001
4845+msgid "User Info"
4846+msgstr ""
4847+
4848+#. Type: text
4849+#. Description
4850+#: ../ubiquity.templates:163001
4851+msgid "Summary"
4852+msgstr ""
4853+
4854+#. Type: text
4855+#. Description
4856+#: ../ubiquity.templates:164001
4857+msgid "Installing"
4858+msgstr ""
4859+
4860 #. Type: note
4861 #. Description
4862 #: ../ubiquity-frontend-mythbuntu.templates:1001
4863
4864=== modified file 'debian/po/sk.po'
4865--- debian/po/sk.po 2009-07-14 13:14:35 +0000
4866+++ debian/po/sk.po 2009-07-28 15:35:01 +0000
4867@@ -6,7 +6,7 @@
4868 msgstr ""
4869 "Project-Id-Version: debian-installer\n"
4870 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
4871-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
4872+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
4873 "PO-Revision-Date: 2009-04-10 12:11+0000\n"
4874 "Last-Translator: helix84 <Unknown>\n"
4875 "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
4876@@ -55,7 +55,9 @@
4877
4878 #. Type: text
4879 #. Description
4880-#: ../ubiquity.templates:9001
4881+#. Type: text
4882+#. Description
4883+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
4884 msgid "Welcome"
4885 msgstr "Vitajte"
4886
4887@@ -1147,6 +1149,48 @@
4888 msgid "Applying configuration"
4889 msgstr ""
4890
4891+#. Type: text
4892+#. Description
4893+#: ../ubiquity.templates:159001
4894+msgid "Timezone"
4895+msgstr ""
4896+
4897+#. Type: text
4898+#. Description
4899+#: ../ubiquity.templates:160001
4900+#, fuzzy
4901+#| msgid "Keyboard layout"
4902+msgid "Keyboard"
4903+msgstr "Rozloženie klávesnice"
4904+
4905+#. Type: text
4906+#. Description
4907+#: ../ubiquity.templates:161001
4908+#, fuzzy
4909+#| msgid "New partition"
4910+msgid "Partition"
4911+msgstr "Nová oblasť"
4912+
4913+#. Type: text
4914+#. Description
4915+#: ../ubiquity.templates:162001
4916+msgid "User Info"
4917+msgstr ""
4918+
4919+#. Type: text
4920+#. Description
4921+#: ../ubiquity.templates:163001
4922+msgid "Summary"
4923+msgstr ""
4924+
4925+#. Type: text
4926+#. Description
4927+#: ../ubiquity.templates:164001
4928+#, fuzzy
4929+#| msgid "Install"
4930+msgid "Installing"
4931+msgstr "Inštalovať"
4932+
4933 #. Type: note
4934 #. Description
4935 #: ../ubiquity-frontend-mythbuntu.templates:1001
4936@@ -1407,8 +1451,5 @@
4937 msgid "Configuring infrared devices..."
4938 msgstr "Nastavujú sa infračervené zariadenia..."
4939
4940-#~ msgid "New partition"
4941-#~ msgstr "Nová oblasť"
4942-
4943 #~ msgid "Delete partition"
4944 #~ msgstr "Odstrániť oblasť"
4945
4946=== modified file 'debian/po/sl.po'
4947--- debian/po/sl.po 2009-07-14 13:14:35 +0000
4948+++ debian/po/sl.po 2009-07-28 15:35:01 +0000
4949@@ -6,7 +6,7 @@
4950 msgstr ""
4951 "Project-Id-Version: debian-installer\n"
4952 "Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
4953-"POT-Creation-Date: 2009-07-14 09:12-0400\n"
4954+"POT-Creation-Date: 2009-07-28 11:27-0400\n"
4955 "PO-Revision-Date: 2009-04-10 12:11+0000\n"
4956 "Last-Translator: Matej Kovačič <Unknown>\n"
4957 "Language-Team: Slovenian <lugos-slo@lugos.si>\n"
4958@@ -55,7 +55,9 @@
4959
4960 #. Type: text
4961 #. Description
4962-#: ../ubiquity.templates:9001
4963+#. Type: text
4964+#. Description
4965+#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
4966 msgid "Welcome"
4967 msgstr "Dobrodošli"
4968
4969@@ -1143,6 +1145,48 @@
4970 msgid "Applying configuration"
4971 msgstr ""
4972
4973+#. Type: text
4974+#. Description
4975+#: ../ubiquity.templates:159001
4976+msgid "Timezone"
4977+msgstr ""
4978+
4979+#. Type: text
4980+#. Description
4981+#: ../ubiquity.templates:160001
4982+#, fuzzy
4983+#| msgid "Keyboard layout"
4984+msgid "Keyboard"
4985+msgstr "Postavitev tipkovnice"
4986+
4987+#. Type: text
4988+#. Description
4989+#: ../ubiquity.templates:161001
4990+#, fuzzy
4991+#| msgid "New partition"
4992+msgid "Partition"
4993+msgstr "Nova particija"
4994+
4995+#. Type: text
4996+#. Description
4997+#: ../ubiquity.templates:162001
4998+msgid "User Info"
4999+msgstr ""
5000+
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to status/vote changes: