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
=== modified file 'd-i/manifest'
--- d-i/manifest 2009-07-22 05:28:02 +0000
+++ d-i/manifest 2009-07-28 13:59:30 +0000
@@ -6,7 +6,7 @@
6console-setup 1.34ubuntu16console-setup 1.34ubuntu1
7debian-installer-utils 1.70ubuntu17debian-installer-utils 1.70ubuntu1
8flash-kernel 2.13ubuntu88flash-kernel 2.13ubuntu8
9grub-installer 1.39ubuntu19grub-installer 1.40ubuntu1
10hw-detect 1.72ubuntu110hw-detect 1.72ubuntu1
11kboot-installer 0.0.1ubuntu911kboot-installer 0.0.1ubuntu9
12localechooser 2.12ubuntu212localechooser 2.12ubuntu2
1313
=== modified file 'debian/changelog'
--- debian/changelog 2009-07-24 16:36:20 +0000
+++ debian/changelog 2009-07-28 13:59:30 +0000
@@ -9,6 +9,10 @@
9 * started work on moving over to the new theme/app.ui file9 * started work on moving over to the new theme/app.ui file
10 * new theme is in place and a simple install can be performed10 * new theme is in place and a simple install can be performed
1111
12 [ root ]
13 * Automatic update of included source packages: grub-installer
14 1.40ubuntu1.
15
12 -- Colin Watson <cjwatson@ubuntu.com> Wed, 22 Jul 2009 14:16:27 +010016 -- Colin Watson <cjwatson@ubuntu.com> Wed, 22 Jul 2009 14:16:27 +0100
1317
14ubiquity (1.99.2) karmic; urgency=low18ubiquity (1.99.2) karmic; urgency=low
1519
=== modified file 'debian/po/af.po'
--- debian/po/af.po 2009-07-14 13:14:35 +0000
+++ debian/po/af.po 2009-07-28 15:35:01 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: debian-installer\n"8"Project-Id-Version: debian-installer\n"
9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
10"POT-Creation-Date: 2009-07-14 09:12-0400\n"10"POT-Creation-Date: 2009-07-28 11:27-0400\n"
11"PO-Revision-Date: 2007-10-29 18:09+0000\n"11"PO-Revision-Date: 2007-10-29 18:09+0000\n"
12"Last-Translator: Heybes <heybes@gmail.com>\n"12"Last-Translator: Heybes <heybes@gmail.com>\n"
13"Language-Team: Afrikaans <af@li.org>\n"13"Language-Team: Afrikaans <af@li.org>\n"
@@ -56,7 +56,9 @@
5656
57#. Type: text57#. Type: text
58#. Description58#. Description
59#: ../ubiquity.templates:900159#. Type: text
60#. Description
61#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
60msgid "Welcome"62msgid "Welcome"
61msgstr "Welkom"63msgstr "Welkom"
6264
@@ -1091,6 +1093,48 @@
1091msgid "Applying configuration"1093msgid "Applying configuration"
1092msgstr ""1094msgstr ""
10931095
1096#. Type: text
1097#. Description
1098#: ../ubiquity.templates:159001
1099msgid "Timezone"
1100msgstr ""
1101
1102#. Type: text
1103#. Description
1104#: ../ubiquity.templates:160001
1105#, fuzzy
1106#| msgid "Keyboard layout"
1107msgid "Keyboard"
1108msgstr "Sleutelbord-uitleg"
1109
1110#. Type: text
1111#. Description
1112#: ../ubiquity.templates:161001
1113#, fuzzy
1114#| msgid "Prepare partitions"
1115msgid "Partition"
1116msgstr "Maak partisies gereed"
1117
1118#. Type: text
1119#. Description
1120#: ../ubiquity.templates:162001
1121msgid "User Info"
1122msgstr ""
1123
1124#. Type: text
1125#. Description
1126#: ../ubiquity.templates:163001
1127msgid "Summary"
1128msgstr ""
1129
1130#. Type: text
1131#. Description
1132#: ../ubiquity.templates:164001
1133#, fuzzy
1134#| msgid "Install"
1135msgid "Installing"
1136msgstr "Installeer"
1137
1094#. Type: note1138#. Type: note
1095#. Description1139#. Description
1096#: ../ubiquity-frontend-mythbuntu.templates:10011140#: ../ubiquity-frontend-mythbuntu.templates:1001
10971141
=== modified file 'debian/po/am.po'
--- debian/po/am.po 2009-07-14 13:14:35 +0000
+++ debian/po/am.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 11:18+0000\n"10"PO-Revision-Date: 2009-04-10 11:18+0000\n"
11"Last-Translator: teferra <Unknown>\n"11"Last-Translator: teferra <Unknown>\n"
12"Language-Team: Amharic\n"12"Language-Team: Amharic\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "እንኳን ደህና መጡ"62msgstr "እንኳን ደህና መጡ"
6163
@@ -1073,6 +1075,46 @@
1073msgid "Applying configuration"1075msgid "Applying configuration"
1074msgstr ""1076msgstr ""
10751077
1078#. Type: text
1079#. Description
1080#: ../ubiquity.templates:159001
1081msgid "Timezone"
1082msgstr ""
1083
1084#. Type: text
1085#. Description
1086#: ../ubiquity.templates:160001
1087msgid "Keyboard"
1088msgstr ""
1089
1090#. Type: text
1091#. Description
1092#: ../ubiquity.templates:161001
1093#, fuzzy
1094#| msgid "Prepare partitions"
1095msgid "Partition"
1096msgstr "ክፋይ አዘጋጅ"
1097
1098#. Type: text
1099#. Description
1100#: ../ubiquity.templates:162001
1101msgid "User Info"
1102msgstr ""
1103
1104#. Type: text
1105#. Description
1106#: ../ubiquity.templates:163001
1107msgid "Summary"
1108msgstr ""
1109
1110#. Type: text
1111#. Description
1112#: ../ubiquity.templates:164001
1113#, fuzzy
1114#| msgid "Install"
1115msgid "Installing"
1116msgstr "ትከል"
1117
1076#. Type: note1118#. Type: note
1077#. Description1119#. Description
1078#: ../ubiquity-frontend-mythbuntu.templates:10011120#: ../ubiquity-frontend-mythbuntu.templates:1001
10791121
=== modified file 'debian/po/ar.po'
--- debian/po/ar.po 2009-07-14 13:14:35 +0000
+++ debian/po/ar.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-12 14:09+0000\n"10"PO-Revision-Date: 2009-04-12 14:09+0000\n"
11"Last-Translator: Khaled Hosny <khaledhosny@eglug.org>\n"11"Last-Translator: Khaled Hosny <khaledhosny@eglug.org>\n"
12"Language-Team: Arabic <support@arabeyes.org>\n"12"Language-Team: Arabic <support@arabeyes.org>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "أهلا بك"64msgstr "أهلا بك"
6365
@@ -1135,6 +1137,48 @@
1135msgid "Applying configuration"1137msgid "Applying configuration"
1136msgstr ""1138msgstr ""
11371139
1140#. Type: text
1141#. Description
1142#: ../ubiquity.templates:159001
1143msgid "Timezone"
1144msgstr ""
1145
1146#. Type: text
1147#. Description
1148#: ../ubiquity.templates:160001
1149#, fuzzy
1150#| msgid "Keyboard layout"
1151msgid "Keyboard"
1152msgstr "تخطيط لوحة المفاتيح"
1153
1154#. Type: text
1155#. Description
1156#: ../ubiquity.templates:161001
1157#, fuzzy
1158#| msgid "New partition"
1159msgid "Partition"
1160msgstr "قسم جديد"
1161
1162#. Type: text
1163#. Description
1164#: ../ubiquity.templates:162001
1165msgid "User Info"
1166msgstr ""
1167
1168#. Type: text
1169#. Description
1170#: ../ubiquity.templates:163001
1171msgid "Summary"
1172msgstr ""
1173
1174#. Type: text
1175#. Description
1176#: ../ubiquity.templates:164001
1177#, fuzzy
1178#| msgid "Install"
1179msgid "Installing"
1180msgstr "ثبت"
1181
1138#. Type: note1182#. Type: note
1139#. Description1183#. Description
1140#: ../ubiquity-frontend-mythbuntu.templates:10011184#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1405,8 +1449,5 @@
1405#~ msgid "Select your time zone from the map, or by region and city."1449#~ msgid "Select your time zone from the map, or by region and city."
1406#~ msgstr "حدد منطقتك الزمنية من الخريطة او باستخدام الإقليم والمدينة"1450#~ msgstr "حدد منطقتك الزمنية من الخريطة او باستخدام الإقليم والمدينة"
14071451
1408#~ msgid "New partition"
1409#~ msgstr "قسم جديد"
1410
1411#~ msgid "Delete partition"1452#~ msgid "Delete partition"
1412#~ msgstr "احذف القسم"1453#~ msgstr "احذف القسم"
14131454
=== modified file 'debian/po/az.po'
--- debian/po/az.po 2009-07-14 13:14:35 +0000
+++ debian/po/az.po 2009-07-28 15:35:01 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: debian-installer\n"8"Project-Id-Version: debian-installer\n"
9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
10"POT-Creation-Date: 2009-07-14 09:12-0400\n"10"POT-Creation-Date: 2009-07-28 11:27-0400\n"
11"PO-Revision-Date: 2008-07-17 06:34+0000\n"11"PO-Revision-Date: 2008-07-17 06:34+0000\n"
12"Last-Translator: Teymur Huseynov <Unknown>\n"12"Last-Translator: Teymur Huseynov <Unknown>\n"
13"Language-Team: Azerbaijani <az@li.org>\n"13"Language-Team: Azerbaijani <az@li.org>\n"
@@ -56,7 +56,9 @@
5656
57#. Type: text57#. Type: text
58#. Description58#. Description
59#: ../ubiquity.templates:900159#. Type: text
60#. Description
61#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
60msgid "Welcome"62msgid "Welcome"
61msgstr ""63msgstr ""
6264
@@ -1070,6 +1072,42 @@
1070msgid "Applying configuration"1072msgid "Applying configuration"
1071msgstr ""1073msgstr ""
10721074
1075#. Type: text
1076#. Description
1077#: ../ubiquity.templates:159001
1078msgid "Timezone"
1079msgstr ""
1080
1081#. Type: text
1082#. Description
1083#: ../ubiquity.templates:160001
1084msgid "Keyboard"
1085msgstr ""
1086
1087#. Type: text
1088#. Description
1089#: ../ubiquity.templates:161001
1090msgid "Partition"
1091msgstr ""
1092
1093#. Type: text
1094#. Description
1095#: ../ubiquity.templates:162001
1096msgid "User Info"
1097msgstr ""
1098
1099#. Type: text
1100#. Description
1101#: ../ubiquity.templates:163001
1102msgid "Summary"
1103msgstr ""
1104
1105#. Type: text
1106#. Description
1107#: ../ubiquity.templates:164001
1108msgid "Installing"
1109msgstr ""
1110
1073#. Type: note1111#. Type: note
1074#. Description1112#. Description
1075#: ../ubiquity-frontend-mythbuntu.templates:10011113#: ../ubiquity-frontend-mythbuntu.templates:1001
10761114
=== modified file 'debian/po/be.po'
--- debian/po/be.po 2009-07-14 13:14:35 +0000
+++ debian/po/be.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-11 23:13+0000\n"10"PO-Revision-Date: 2009-04-11 23:13+0000\n"
11"Last-Translator: Alexander Nyakhaychyk <nyakhaychyk@gmail.com>\n"11"Last-Translator: Alexander Nyakhaychyk <nyakhaychyk@gmail.com>\n"
12"Language-Team: Belarusian <i18n@mova.org>\n"12"Language-Team: Belarusian <i18n@mova.org>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "Вітаем"64msgstr "Вітаем"
6365
@@ -1115,6 +1117,48 @@
1115msgid "Applying configuration"1117msgid "Applying configuration"
1116msgstr ""1118msgstr ""
11171119
1120#. Type: text
1121#. Description
1122#: ../ubiquity.templates:159001
1123msgid "Timezone"
1124msgstr ""
1125
1126#. Type: text
1127#. Description
1128#: ../ubiquity.templates:160001
1129#, fuzzy
1130#| msgid "Keyboard layout"
1131msgid "Keyboard"
1132msgstr "Раскладка клявіятуры"
1133
1134#. Type: text
1135#. Description
1136#: ../ubiquity.templates:161001
1137#, fuzzy
1138#| msgid "Prepare partitions"
1139msgid "Partition"
1140msgstr "Падрыхтуй партыцыі"
1141
1142#. Type: text
1143#. Description
1144#: ../ubiquity.templates:162001
1145msgid "User Info"
1146msgstr ""
1147
1148#. Type: text
1149#. Description
1150#: ../ubiquity.templates:163001
1151msgid "Summary"
1152msgstr ""
1153
1154#. Type: text
1155#. Description
1156#: ../ubiquity.templates:164001
1157#, fuzzy
1158#| msgid "Install"
1159msgid "Installing"
1160msgstr "Усталяваць"
1161
1118#. Type: note1162#. Type: note
1119#. Description1163#. Description
1120#: ../ubiquity-frontend-mythbuntu.templates:10011164#: ../ubiquity-frontend-mythbuntu.templates:1001
11211165
=== modified file 'debian/po/bg.po'
--- debian/po/bg.po 2009-07-14 13:14:35 +0000
+++ debian/po/bg.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 19:30+0000\n"10"PO-Revision-Date: 2009-04-10 19:30+0000\n"
11"Last-Translator: Krasimir Chonov <mk2616@abv.bg>\n"11"Last-Translator: Krasimir Chonov <mk2616@abv.bg>\n"
12"Language-Team: American English <>\n"12"Language-Team: American English <>\n"
@@ -59,7 +59,9 @@
5959
60#. Type: text60#. Type: text
61#. Description61#. Description
62#: ../ubiquity.templates:900162#. Type: text
63#. Description
64#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
63msgid "Welcome"65msgid "Welcome"
64msgstr "Добре дошли"66msgstr "Добре дошли"
6567
@@ -1164,6 +1166,48 @@
1164msgid "Applying configuration"1166msgid "Applying configuration"
1165msgstr ""1167msgstr ""
11661168
1169#. Type: text
1170#. Description
1171#: ../ubiquity.templates:159001
1172msgid "Timezone"
1173msgstr ""
1174
1175#. Type: text
1176#. Description
1177#: ../ubiquity.templates:160001
1178#, fuzzy
1179#| msgid "Keyboard layout"
1180msgid "Keyboard"
1181msgstr "Клавиатурна подредба"
1182
1183#. Type: text
1184#. Description
1185#: ../ubiquity.templates:161001
1186#, fuzzy
1187#| msgid "New partition"
1188msgid "Partition"
1189msgstr "Нов дял"
1190
1191#. Type: text
1192#. Description
1193#: ../ubiquity.templates:162001
1194msgid "User Info"
1195msgstr ""
1196
1197#. Type: text
1198#. Description
1199#: ../ubiquity.templates:163001
1200msgid "Summary"
1201msgstr ""
1202
1203#. Type: text
1204#. Description
1205#: ../ubiquity.templates:164001
1206#, fuzzy
1207#| msgid "Install"
1208msgid "Installing"
1209msgstr "Инсталиране"
1210
1167#. Type: note1211#. Type: note
1168#. Description1212#. Description
1169#: ../ubiquity-frontend-mythbuntu.templates:10011213#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1438,8 +1482,5 @@
1438#~ msgid "Select your time zone from the map, or by region and city."1482#~ msgid "Select your time zone from the map, or by region and city."
1439#~ msgstr "Изберете вашата часове зона от картата или регион и град."1483#~ msgstr "Изберете вашата часове зона от картата или регион и град."
14401484
1441#~ msgid "New partition"
1442#~ msgstr "Нов дял"
1443
1444#~ msgid "Delete partition"1485#~ msgid "Delete partition"
1445#~ msgstr "Изтриване на дял"1486#~ msgstr "Изтриване на дял"
14461487
=== modified file 'debian/po/bn.po'
--- debian/po/bn.po 2009-07-14 13:14:35 +0000
+++ debian/po/bn.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 11:19+0000\n"10"PO-Revision-Date: 2009-04-10 11:19+0000\n"
11"Last-Translator: Mahay Alam Khan <Unknown>\n"11"Last-Translator: Mahay Alam Khan <Unknown>\n"
12"Language-Team: Bangla <core@BengaLinux.Org>\n"12"Language-Team: Bangla <core@BengaLinux.Org>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "স্বাগতম"62msgstr "স্বাগতম"
6163
@@ -1086,6 +1088,48 @@
1086msgid "Applying configuration"1088msgid "Applying configuration"
1087msgstr ""1089msgstr ""
10881090
1091#. Type: text
1092#. Description
1093#: ../ubiquity.templates:159001
1094msgid "Timezone"
1095msgstr ""
1096
1097#. Type: text
1098#. Description
1099#: ../ubiquity.templates:160001
1100#, fuzzy
1101#| msgid "Keyboard layout"
1102msgid "Keyboard"
1103msgstr "কীবোর্ড বিন্যাস (Layout)"
1104
1105#. Type: text
1106#. Description
1107#: ../ubiquity.templates:161001
1108#, fuzzy
1109#| msgid "Edit partition"
1110msgid "Partition"
1111msgstr "পার্টিশন সম্পাদন করুন"
1112
1113#. Type: text
1114#. Description
1115#: ../ubiquity.templates:162001
1116msgid "User Info"
1117msgstr ""
1118
1119#. Type: text
1120#. Description
1121#: ../ubiquity.templates:163001
1122msgid "Summary"
1123msgstr ""
1124
1125#. Type: text
1126#. Description
1127#: ../ubiquity.templates:164001
1128#, fuzzy
1129#| msgid "Install"
1130msgid "Installing"
1131msgstr "ইনস্টল করো"
1132
1089#. Type: note1133#. Type: note
1090#. Description1134#. Description
1091#: ../ubiquity-frontend-mythbuntu.templates:10011135#: ../ubiquity-frontend-mythbuntu.templates:1001
10921136
=== modified file 'debian/po/br.po'
--- debian/po/br.po 2009-07-14 13:14:35 +0000
+++ debian/po/br.po 2009-07-28 15:35:01 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: debian-installer\n"8"Project-Id-Version: debian-installer\n"
9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
10"POT-Creation-Date: 2009-07-14 09:12-0400\n"10"POT-Creation-Date: 2009-07-28 11:27-0400\n"
11"PO-Revision-Date: 2009-04-06 14:56+0000\n"11"PO-Revision-Date: 2009-04-06 14:56+0000\n"
12"Last-Translator: Denis ARNAUD <Unknown>\n"12"Last-Translator: Denis ARNAUD <Unknown>\n"
13"Language-Team: Breton <br@li.org>\n"13"Language-Team: Breton <br@li.org>\n"
@@ -58,7 +58,9 @@
5858
59#. Type: text59#. Type: text
60#. Description60#. Description
61#: ../ubiquity.templates:900161#. Type: text
62#. Description
63#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
62msgid "Welcome"64msgid "Welcome"
63msgstr "Donedigezh vat"65msgstr "Donedigezh vat"
6466
@@ -1103,6 +1105,48 @@
1103msgid "Applying configuration"1105msgid "Applying configuration"
1104msgstr ""1106msgstr ""
11051107
1108#. Type: text
1109#. Description
1110#: ../ubiquity.templates:159001
1111msgid "Timezone"
1112msgstr ""
1113
1114#. Type: text
1115#. Description
1116#: ../ubiquity.templates:160001
1117#, fuzzy
1118#| msgid "Keyboard layout"
1119msgid "Keyboard"
1120msgstr "Aozadur ar stokellaoueg"
1121
1122#. Type: text
1123#. Description
1124#: ../ubiquity.templates:161001
1125#, fuzzy
1126#| msgid "Edit partition"
1127msgid "Partition"
1128msgstr "Aozañ ar rann"
1129
1130#. Type: text
1131#. Description
1132#: ../ubiquity.templates:162001
1133msgid "User Info"
1134msgstr ""
1135
1136#. Type: text
1137#. Description
1138#: ../ubiquity.templates:163001
1139msgid "Summary"
1140msgstr ""
1141
1142#. Type: text
1143#. Description
1144#: ../ubiquity.templates:164001
1145#, fuzzy
1146#| msgid "Install"
1147msgid "Installing"
1148msgstr "Staliañ"
1149
1106#. Type: note1150#. Type: note
1107#. Description1151#. Description
1108#: ../ubiquity-frontend-mythbuntu.templates:10011152#: ../ubiquity-frontend-mythbuntu.templates:1001
11091153
=== modified file 'debian/po/bs.po'
--- debian/po/bs.po 2009-07-14 13:14:35 +0000
+++ debian/po/bs.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 11:19+0000\n"10"PO-Revision-Date: 2009-04-10 11:19+0000\n"
11"Last-Translator: adioe3 <Unknown>\n"11"Last-Translator: adioe3 <Unknown>\n"
12"Language-Team: Bosnian <lokal@linux.org.ba>\n"12"Language-Team: Bosnian <lokal@linux.org.ba>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "Dobrodošli"62msgstr "Dobrodošli"
6163
@@ -1085,6 +1087,44 @@
1085msgid "Applying configuration"1087msgid "Applying configuration"
1086msgstr ""1088msgstr ""
10871089
1090#. Type: text
1091#. Description
1092#: ../ubiquity.templates:159001
1093msgid "Timezone"
1094msgstr ""
1095
1096#. Type: text
1097#. Description
1098#: ../ubiquity.templates:160001
1099msgid "Keyboard"
1100msgstr ""
1101
1102#. Type: text
1103#. Description
1104#: ../ubiquity.templates:161001
1105msgid "Partition"
1106msgstr ""
1107
1108#. Type: text
1109#. Description
1110#: ../ubiquity.templates:162001
1111msgid "User Info"
1112msgstr ""
1113
1114#. Type: text
1115#. Description
1116#: ../ubiquity.templates:163001
1117msgid "Summary"
1118msgstr ""
1119
1120#. Type: text
1121#. Description
1122#: ../ubiquity.templates:164001
1123#, fuzzy
1124#| msgid "Install"
1125msgid "Installing"
1126msgstr "Instalacija"
1127
1088#. Type: note1128#. Type: note
1089#. Description1129#. Description
1090#: ../ubiquity-frontend-mythbuntu.templates:10011130#: ../ubiquity-frontend-mythbuntu.templates:1001
10911131
=== modified file 'debian/po/ca.po'
--- debian/po/ca.po 2009-07-14 13:14:35 +0000
+++ debian/po/ca.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-14 17:32+0000\n"10"PO-Revision-Date: 2009-04-14 17:32+0000\n"
11"Last-Translator: Joan Duran <jodufi@gmail.com>\n"11"Last-Translator: Joan Duran <jodufi@gmail.com>\n"
12"Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"12"Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
@@ -59,7 +59,9 @@
5959
60#. Type: text60#. Type: text
61#. Description61#. Description
62#: ../ubiquity.templates:900162#. Type: text
63#. Description
64#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
63msgid "Welcome"65msgid "Welcome"
64msgstr "Benvingut"66msgstr "Benvingut"
6567
@@ -1165,6 +1167,48 @@
1165msgid "Applying configuration"1167msgid "Applying configuration"
1166msgstr ""1168msgstr ""
11671169
1170#. Type: text
1171#. Description
1172#: ../ubiquity.templates:159001
1173msgid "Timezone"
1174msgstr ""
1175
1176#. Type: text
1177#. Description
1178#: ../ubiquity.templates:160001
1179#, fuzzy
1180#| msgid "Keyboard layout"
1181msgid "Keyboard"
1182msgstr "Disposició de teclat"
1183
1184#. Type: text
1185#. Description
1186#: ../ubiquity.templates:161001
1187#, fuzzy
1188#| msgid "New partition"
1189msgid "Partition"
1190msgstr "Partició nova"
1191
1192#. Type: text
1193#. Description
1194#: ../ubiquity.templates:162001
1195msgid "User Info"
1196msgstr ""
1197
1198#. Type: text
1199#. Description
1200#: ../ubiquity.templates:163001
1201msgid "Summary"
1202msgstr ""
1203
1204#. Type: text
1205#. Description
1206#: ../ubiquity.templates:164001
1207#, fuzzy
1208#| msgid "Install"
1209msgid "Installing"
1210msgstr "Instal·la"
1211
1168#. Type: note1212#. Type: note
1169#. Description1213#. Description
1170#: ../ubiquity-frontend-mythbuntu.templates:10011214#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1444,8 +1488,5 @@
1444#~ msgstr ""1488#~ msgstr ""
1445#~ "Seleccioneu la vostra zona horària en el mapa, o bé per regió i ciutat."1489#~ "Seleccioneu la vostra zona horària en el mapa, o bé per regió i ciutat."
14461490
1447#~ msgid "New partition"
1448#~ msgstr "Partició nova"
1449
1450#~ msgid "Delete partition"1491#~ msgid "Delete partition"
1451#~ msgstr "Suprimeix la partició"1492#~ msgstr "Suprimeix la partició"
14521493
=== modified file 'debian/po/cs.po'
--- debian/po/cs.po 2009-07-14 13:14:35 +0000
+++ debian/po/cs.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-12 08:34+0000\n"10"PO-Revision-Date: 2009-04-12 08:34+0000\n"
11"Last-Translator: Kamil Páral <ripper42@gmail.com>\n"11"Last-Translator: Kamil Páral <ripper42@gmail.com>\n"
12"Language-Team: Czech <provoz@debian.cz>\n"12"Language-Team: Czech <provoz@debian.cz>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "Vítejte"64msgstr "Vítejte"
6365
@@ -1149,6 +1151,48 @@
1149msgid "Applying configuration"1151msgid "Applying configuration"
1150msgstr ""1152msgstr ""
11511153
1154#. Type: text
1155#. Description
1156#: ../ubiquity.templates:159001
1157msgid "Timezone"
1158msgstr ""
1159
1160#. Type: text
1161#. Description
1162#: ../ubiquity.templates:160001
1163#, fuzzy
1164#| msgid "Keyboard layout"
1165msgid "Keyboard"
1166msgstr "Rozložení klávesnice"
1167
1168#. Type: text
1169#. Description
1170#: ../ubiquity.templates:161001
1171#, fuzzy
1172#| msgid "New partition"
1173msgid "Partition"
1174msgstr "Nový oddíl"
1175
1176#. Type: text
1177#. Description
1178#: ../ubiquity.templates:162001
1179msgid "User Info"
1180msgstr ""
1181
1182#. Type: text
1183#. Description
1184#: ../ubiquity.templates:163001
1185msgid "Summary"
1186msgstr ""
1187
1188#. Type: text
1189#. Description
1190#: ../ubiquity.templates:164001
1191#, fuzzy
1192#| msgid "Install"
1193msgid "Installing"
1194msgstr "Instalovat"
1195
1152#. Type: note1196#. Type: note
1153#. Description1197#. Description
1154#: ../ubiquity-frontend-mythbuntu.templates:10011198#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1396,8 +1440,5 @@
1396#~ msgid "Select your time zone from the map, or by region and city."1440#~ msgid "Select your time zone from the map, or by region and city."
1397#~ msgstr "Zvolte svoji časovou zónu na mapě nebo volbou oblasti a města."1441#~ msgstr "Zvolte svoji časovou zónu na mapě nebo volbou oblasti a města."
13981442
1399#~ msgid "New partition"
1400#~ msgstr "Nový oddíl"
1401
1402#~ msgid "Delete partition"1443#~ msgid "Delete partition"
1403#~ msgstr "Odstranit oddíl"1444#~ msgstr "Odstranit oddíl"
14041445
=== modified file 'debian/po/csb.po'
--- debian/po/csb.po 2009-07-14 13:14:35 +0000
+++ debian/po/csb.po 2009-07-28 15:35:01 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: debian-installer\n"8"Project-Id-Version: debian-installer\n"
9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
10"POT-Creation-Date: 2009-07-14 09:12-0400\n"10"POT-Creation-Date: 2009-07-28 11:27-0400\n"
11"PO-Revision-Date: 2008-11-28 21:56+0000\n"11"PO-Revision-Date: 2008-11-28 21:56+0000\n"
12"Last-Translator: Mark Kwidzińsczi <mark@linuxcsb.org>\n"12"Last-Translator: Mark Kwidzińsczi <mark@linuxcsb.org>\n"
13"Language-Team: Kashubian <csb@li.org>\n"13"Language-Team: Kashubian <csb@li.org>\n"
@@ -56,7 +56,9 @@
5656
57#. Type: text57#. Type: text
58#. Description58#. Description
59#: ../ubiquity.templates:900159#. Type: text
60#. Description
61#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
60msgid "Welcome"62msgid "Welcome"
61msgstr "Witôj"63msgstr "Witôj"
6264
@@ -1121,6 +1123,48 @@
1121msgid "Applying configuration"1123msgid "Applying configuration"
1122msgstr ""1124msgstr ""
11231125
1126#. Type: text
1127#. Description
1128#: ../ubiquity.templates:159001
1129msgid "Timezone"
1130msgstr ""
1131
1132#. Type: text
1133#. Description
1134#: ../ubiquity.templates:160001
1135#, fuzzy
1136#| msgid "Keyboard layout"
1137msgid "Keyboard"
1138msgstr "Ùkłôd klawiaturë (kluczplatë)"
1139
1140#. Type: text
1141#. Description
1142#: ../ubiquity.templates:161001
1143#, fuzzy
1144#| msgid "New partition"
1145msgid "Partition"
1146msgstr "Nowô particëjô"
1147
1148#. Type: text
1149#. Description
1150#: ../ubiquity.templates:162001
1151msgid "User Info"
1152msgstr ""
1153
1154#. Type: text
1155#. Description
1156#: ../ubiquity.templates:163001
1157msgid "Summary"
1158msgstr ""
1159
1160#. Type: text
1161#. Description
1162#: ../ubiquity.templates:164001
1163#, fuzzy
1164#| msgid "Install"
1165msgid "Installing"
1166msgstr "Instalëjë"
1167
1124#. Type: note1168#. Type: note
1125#. Description1169#. Description
1126#: ../ubiquity-frontend-mythbuntu.templates:10011170#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1355,8 +1399,5 @@
1355msgid "Configuring infrared devices..."1399msgid "Configuring infrared devices..."
1356msgstr ""1400msgstr ""
13571401
1358#~ msgid "New partition"
1359#~ msgstr "Nowô particëjô"
1360
1361#~ msgid "Delete partition"1402#~ msgid "Delete partition"
1362#~ msgstr "Rëmôj particëjã"1403#~ msgstr "Rëmôj particëjã"
13631404
=== modified file 'debian/po/cy.po'
--- debian/po/cy.po 2009-07-14 13:14:35 +0000
+++ debian/po/cy.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 11:19+0000\n"10"PO-Revision-Date: 2009-04-10 11:19+0000\n"
11"Last-Translator: Notclive <mynamesnotclive@notclive.co.uk>\n"11"Last-Translator: Notclive <mynamesnotclive@notclive.co.uk>\n"
12"Language-Team: Welsh <>\n"12"Language-Team: Welsh <>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "Croeso"62msgstr "Croeso"
6163
@@ -1069,6 +1071,42 @@
1069msgid "Applying configuration"1071msgid "Applying configuration"
1070msgstr ""1072msgstr ""
10711073
1074#. Type: text
1075#. Description
1076#: ../ubiquity.templates:159001
1077msgid "Timezone"
1078msgstr ""
1079
1080#. Type: text
1081#. Description
1082#: ../ubiquity.templates:160001
1083msgid "Keyboard"
1084msgstr ""
1085
1086#. Type: text
1087#. Description
1088#: ../ubiquity.templates:161001
1089msgid "Partition"
1090msgstr ""
1091
1092#. Type: text
1093#. Description
1094#: ../ubiquity.templates:162001
1095msgid "User Info"
1096msgstr ""
1097
1098#. Type: text
1099#. Description
1100#: ../ubiquity.templates:163001
1101msgid "Summary"
1102msgstr ""
1103
1104#. Type: text
1105#. Description
1106#: ../ubiquity.templates:164001
1107msgid "Installing"
1108msgstr ""
1109
1072#. Type: note1110#. Type: note
1073#. Description1111#. Description
1074#: ../ubiquity-frontend-mythbuntu.templates:10011112#: ../ubiquity-frontend-mythbuntu.templates:1001
10751113
=== modified file 'debian/po/da.po'
--- debian/po/da.po 2009-07-14 13:14:35 +0000
+++ debian/po/da.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 11:19+0000\n"10"PO-Revision-Date: 2009-04-10 11:19+0000\n"
11"Last-Translator: Colin Watson <cjwatson@canonical.com>\n"11"Last-Translator: Colin Watson <cjwatson@canonical.com>\n"
12"Language-Team: <en@li.org>\n"12"Language-Team: <en@li.org>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "Velkommen"64msgstr "Velkommen"
6365
@@ -1160,6 +1162,48 @@
1160msgid "Applying configuration"1162msgid "Applying configuration"
1161msgstr ""1163msgstr ""
11621164
1165#. Type: text
1166#. Description
1167#: ../ubiquity.templates:159001
1168msgid "Timezone"
1169msgstr ""
1170
1171#. Type: text
1172#. Description
1173#: ../ubiquity.templates:160001
1174#, fuzzy
1175#| msgid "Keyboard layout"
1176msgid "Keyboard"
1177msgstr "Tastaturlayout"
1178
1179#. Type: text
1180#. Description
1181#: ../ubiquity.templates:161001
1182#, fuzzy
1183#| msgid "New partition"
1184msgid "Partition"
1185msgstr "Ny partition"
1186
1187#. Type: text
1188#. Description
1189#: ../ubiquity.templates:162001
1190msgid "User Info"
1191msgstr ""
1192
1193#. Type: text
1194#. Description
1195#: ../ubiquity.templates:163001
1196msgid "Summary"
1197msgstr ""
1198
1199#. Type: text
1200#. Description
1201#: ../ubiquity.templates:164001
1202#, fuzzy
1203#| msgid "Install"
1204msgid "Installing"
1205msgstr "Installér"
1206
1163#. Type: note1207#. Type: note
1164#. Description1208#. Description
1165#: ../ubiquity-frontend-mythbuntu.templates:10011209#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1417,8 +1461,5 @@
1417#~ msgid "Select your time zone from the map, or by region and city."1461#~ msgid "Select your time zone from the map, or by region and city."
1418#~ msgstr "Vælg din tidszone på kortet eller vælg ud fra region og by."1462#~ msgstr "Vælg din tidszone på kortet eller vælg ud fra region og by."
14191463
1420#~ msgid "New partition"
1421#~ msgstr "Ny partition"
1422
1423#~ msgid "Delete partition"1464#~ msgid "Delete partition"
1424#~ msgstr "Slet partition"1465#~ msgstr "Slet partition"
14251466
=== modified file 'debian/po/de.po'
--- debian/po/de.po 2009-07-14 13:14:35 +0000
+++ debian/po/de.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-11 09:43+0000\n"10"PO-Revision-Date: 2009-04-11 09:43+0000\n"
11"Last-Translator: Moritz Baumann <Unknown>\n"11"Last-Translator: Moritz Baumann <Unknown>\n"
12"Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n"12"Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "Willkommen"64msgstr "Willkommen"
6365
@@ -1167,6 +1169,48 @@
1167msgid "Applying configuration"1169msgid "Applying configuration"
1168msgstr ""1170msgstr ""
11691171
1172#. Type: text
1173#. Description
1174#: ../ubiquity.templates:159001
1175msgid "Timezone"
1176msgstr ""
1177
1178#. Type: text
1179#. Description
1180#: ../ubiquity.templates:160001
1181#, fuzzy
1182#| msgid "Keyboard layout"
1183msgid "Keyboard"
1184msgstr "Tastaturbelegung"
1185
1186#. Type: text
1187#. Description
1188#: ../ubiquity.templates:161001
1189#, fuzzy
1190#| msgid "New partition"
1191msgid "Partition"
1192msgstr "Neue Partition"
1193
1194#. Type: text
1195#. Description
1196#: ../ubiquity.templates:162001
1197msgid "User Info"
1198msgstr ""
1199
1200#. Type: text
1201#. Description
1202#: ../ubiquity.templates:163001
1203msgid "Summary"
1204msgstr ""
1205
1206#. Type: text
1207#. Description
1208#: ../ubiquity.templates:164001
1209#, fuzzy
1210#| msgid "Install"
1211msgid "Installing"
1212msgstr "Installieren"
1213
1170#. Type: note1214#. Type: note
1171#. Description1215#. Description
1172#: ../ubiquity-frontend-mythbuntu.templates:10011216#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1437,8 +1481,5 @@
1437#~ msgid "Select your time zone from the map, or by region and city."1481#~ msgid "Select your time zone from the map, or by region and city."
1438#~ msgstr "Wählen Sie ihre Zeitzone aus der Karte oder nach Region und Stadt."1482#~ msgstr "Wählen Sie ihre Zeitzone aus der Karte oder nach Region und Stadt."
14391483
1440#~ msgid "New partition"
1441#~ msgstr "Neue Partition"
1442
1443#~ msgid "Delete partition"1484#~ msgid "Delete partition"
1444#~ msgstr "Partition löschen"1485#~ msgstr "Partition löschen"
14451486
=== modified file 'debian/po/dv.po'
--- debian/po/dv.po 2009-07-14 13:14:35 +0000
+++ debian/po/dv.po 2009-07-28 15:35:01 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: debian-installer\n"8"Project-Id-Version: debian-installer\n"
9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
10"POT-Creation-Date: 2009-07-14 09:12-0400\n"10"POT-Creation-Date: 2009-07-28 11:27-0400\n"
11"PO-Revision-Date: 2006-09-22 03:11+0000\n"11"PO-Revision-Date: 2006-09-22 03:11+0000\n"
12"Last-Translator: Inash Zubair <Unknown>\n"12"Last-Translator: Inash Zubair <Unknown>\n"
13"Language-Team: Divehi <dv@li.org>\n"13"Language-Team: Divehi <dv@li.org>\n"
@@ -56,7 +56,9 @@
5656
57#. Type: text57#. Type: text
58#. Description58#. Description
59#: ../ubiquity.templates:900159#. Type: text
60#. Description
61#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
60msgid "Welcome"62msgid "Welcome"
61msgstr ""63msgstr ""
6264
@@ -1070,6 +1072,42 @@
1070msgid "Applying configuration"1072msgid "Applying configuration"
1071msgstr ""1073msgstr ""
10721074
1075#. Type: text
1076#. Description
1077#: ../ubiquity.templates:159001
1078msgid "Timezone"
1079msgstr ""
1080
1081#. Type: text
1082#. Description
1083#: ../ubiquity.templates:160001
1084msgid "Keyboard"
1085msgstr ""
1086
1087#. Type: text
1088#. Description
1089#: ../ubiquity.templates:161001
1090msgid "Partition"
1091msgstr ""
1092
1093#. Type: text
1094#. Description
1095#: ../ubiquity.templates:162001
1096msgid "User Info"
1097msgstr ""
1098
1099#. Type: text
1100#. Description
1101#: ../ubiquity.templates:163001
1102msgid "Summary"
1103msgstr ""
1104
1105#. Type: text
1106#. Description
1107#: ../ubiquity.templates:164001
1108msgid "Installing"
1109msgstr ""
1110
1073#. Type: note1111#. Type: note
1074#. Description1112#. Description
1075#: ../ubiquity-frontend-mythbuntu.templates:10011113#: ../ubiquity-frontend-mythbuntu.templates:1001
10761114
=== modified file 'debian/po/dz.po'
--- debian/po/dz.po 2009-07-14 13:14:35 +0000
+++ debian/po/dz.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 11:20+0000\n"10"PO-Revision-Date: 2009-04-10 11:20+0000\n"
11"Last-Translator: Jurmey Rabgay (Bongop DIT,BHUTAN) <Unknown>\n"11"Last-Translator: Jurmey Rabgay (Bongop DIT,BHUTAN) <Unknown>\n"
12"Language-Team: Dzongkha <pgeyleg@dit.gov.bt>\n"12"Language-Team: Dzongkha <pgeyleg@dit.gov.bt>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr ""62msgstr ""
6163
@@ -1069,6 +1071,42 @@
1069msgid "Applying configuration"1071msgid "Applying configuration"
1070msgstr ""1072msgstr ""
10711073
1074#. Type: text
1075#. Description
1076#: ../ubiquity.templates:159001
1077msgid "Timezone"
1078msgstr ""
1079
1080#. Type: text
1081#. Description
1082#: ../ubiquity.templates:160001
1083msgid "Keyboard"
1084msgstr ""
1085
1086#. Type: text
1087#. Description
1088#: ../ubiquity.templates:161001
1089msgid "Partition"
1090msgstr ""
1091
1092#. Type: text
1093#. Description
1094#: ../ubiquity.templates:162001
1095msgid "User Info"
1096msgstr ""
1097
1098#. Type: text
1099#. Description
1100#: ../ubiquity.templates:163001
1101msgid "Summary"
1102msgstr ""
1103
1104#. Type: text
1105#. Description
1106#: ../ubiquity.templates:164001
1107msgid "Installing"
1108msgstr ""
1109
1072#. Type: note1110#. Type: note
1073#. Description1111#. Description
1074#: ../ubiquity-frontend-mythbuntu.templates:10011112#: ../ubiquity-frontend-mythbuntu.templates:1001
10751113
=== modified file 'debian/po/el.po'
--- debian/po/el.po 2009-07-14 13:14:35 +0000
+++ debian/po/el.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 11:20+0000\n"10"PO-Revision-Date: 2009-04-10 11:20+0000\n"
11"Last-Translator: Colin Watson <cjwatson@canonical.com>\n"11"Last-Translator: Colin Watson <cjwatson@canonical.com>\n"
12"Language-Team: <en@li.org>\n"12"Language-Team: <en@li.org>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "Καλώς ήλθατε"64msgstr "Καλώς ήλθατε"
6365
@@ -1174,6 +1176,48 @@
1174msgid "Applying configuration"1176msgid "Applying configuration"
1175msgstr ""1177msgstr ""
11761178
1179#. Type: text
1180#. Description
1181#: ../ubiquity.templates:159001
1182msgid "Timezone"
1183msgstr ""
1184
1185#. Type: text
1186#. Description
1187#: ../ubiquity.templates:160001
1188#, fuzzy
1189#| msgid "Keyboard layout"
1190msgid "Keyboard"
1191msgstr "Διάταξη πληκτρολογίου"
1192
1193#. Type: text
1194#. Description
1195#: ../ubiquity.templates:161001
1196#, fuzzy
1197#| msgid "New partition"
1198msgid "Partition"
1199msgstr "Νέο διαμέρισμα"
1200
1201#. Type: text
1202#. Description
1203#: ../ubiquity.templates:162001
1204msgid "User Info"
1205msgstr ""
1206
1207#. Type: text
1208#. Description
1209#: ../ubiquity.templates:163001
1210msgid "Summary"
1211msgstr ""
1212
1213#. Type: text
1214#. Description
1215#: ../ubiquity.templates:164001
1216#, fuzzy
1217#| msgid "Install"
1218msgid "Installing"
1219msgstr "Εγκατάσταση"
1220
1177#. Type: note1221#. Type: note
1178#. Description1222#. Description
1179#: ../ubiquity-frontend-mythbuntu.templates:10011223#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1459,8 +1503,5 @@
1459#~ "Επιλέξτε την ζώνη ώρας από τον χάρτη, είτε με βάση την περιοχή και την "1503#~ "Επιλέξτε την ζώνη ώρας από τον χάρτη, είτε με βάση την περιοχή και την "
1460#~ "πόλη."1504#~ "πόλη."
14611505
1462#~ msgid "New partition"
1463#~ msgstr "Νέο διαμέρισμα"
1464
1465#~ msgid "Delete partition"1506#~ msgid "Delete partition"
1466#~ msgstr "Διαγραφή διαμερίσματος"1507#~ msgstr "Διαγραφή διαμερίσματος"
14671508
=== modified file 'debian/po/eo.po'
--- debian/po/eo.po 2009-07-14 13:14:35 +0000
+++ debian/po/eo.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:07+0000\n"10"PO-Revision-Date: 2009-04-10 12:07+0000\n"
11"Last-Translator: Felipe Castro <fefcas@gmail.com>\n"11"Last-Translator: Felipe Castro <fefcas@gmail.com>\n"
12"Language-Team: Esperanto <debian-l10n-esperanto@lists.debian.org>\n"12"Language-Team: Esperanto <debian-l10n-esperanto@lists.debian.org>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "Bonvenon"62msgstr "Bonvenon"
6163
@@ -1140,6 +1142,48 @@
1140msgid "Applying configuration"1142msgid "Applying configuration"
1141msgstr ""1143msgstr ""
11421144
1145#. Type: text
1146#. Description
1147#: ../ubiquity.templates:159001
1148msgid "Timezone"
1149msgstr ""
1150
1151#. Type: text
1152#. Description
1153#: ../ubiquity.templates:160001
1154#, fuzzy
1155#| msgid "Keyboard layout"
1156msgid "Keyboard"
1157msgstr "Elektu klavaran aranĝon"
1158
1159#. Type: text
1160#. Description
1161#: ../ubiquity.templates:161001
1162#, fuzzy
1163#| msgid "New partition"
1164msgid "Partition"
1165msgstr "Nova subdisko"
1166
1167#. Type: text
1168#. Description
1169#: ../ubiquity.templates:162001
1170msgid "User Info"
1171msgstr ""
1172
1173#. Type: text
1174#. Description
1175#: ../ubiquity.templates:163001
1176msgid "Summary"
1177msgstr ""
1178
1179#. Type: text
1180#. Description
1181#: ../ubiquity.templates:164001
1182#, fuzzy
1183#| msgid "Install"
1184msgid "Installing"
1185msgstr "Instalu"
1186
1143#. Type: note1187#. Type: note
1144#. Description1188#. Description
1145#: ../ubiquity-frontend-mythbuntu.templates:10011189#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1401,8 +1445,5 @@
1401msgid "Configuring infrared devices..."1445msgid "Configuring infrared devices..."
1402msgstr "Konfigurado de infraruĝaj aparatoj..."1446msgstr "Konfigurado de infraruĝaj aparatoj..."
14031447
1404#~ msgid "New partition"
1405#~ msgstr "Nova subdisko"
1406
1407#~ msgid "Delete partition"1448#~ msgid "Delete partition"
1408#~ msgstr "Viŝi subdiskon"1449#~ msgstr "Viŝi subdiskon"
14091450
=== modified file 'debian/po/es.po'
--- debian/po/es.po 2009-07-14 13:14:35 +0000
+++ debian/po/es.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 17:22+0000\n"10"PO-Revision-Date: 2009-04-10 17:22+0000\n"
11"Last-Translator: Julián Alarcón <alarconj@gmail.com>\n"11"Last-Translator: Julián Alarcón <alarconj@gmail.com>\n"
12"Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n"12"Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "Bienvenido/a"64msgstr "Bienvenido/a"
6365
@@ -1157,6 +1159,48 @@
1157msgid "Applying configuration"1159msgid "Applying configuration"
1158msgstr ""1160msgstr ""
11591161
1162#. Type: text
1163#. Description
1164#: ../ubiquity.templates:159001
1165msgid "Timezone"
1166msgstr ""
1167
1168#. Type: text
1169#. Description
1170#: ../ubiquity.templates:160001
1171#, fuzzy
1172#| msgid "Keyboard layout"
1173msgid "Keyboard"
1174msgstr "Distribución del teclado"
1175
1176#. Type: text
1177#. Description
1178#: ../ubiquity.templates:161001
1179#, fuzzy
1180#| msgid "New partition"
1181msgid "Partition"
1182msgstr "Partición nueva"
1183
1184#. Type: text
1185#. Description
1186#: ../ubiquity.templates:162001
1187msgid "User Info"
1188msgstr ""
1189
1190#. Type: text
1191#. Description
1192#: ../ubiquity.templates:163001
1193msgid "Summary"
1194msgstr ""
1195
1196#. Type: text
1197#. Description
1198#: ../ubiquity.templates:164001
1199#, fuzzy
1200#| msgid "Install"
1201msgid "Installing"
1202msgstr "Instalar"
1203
1160#. Type: note1204#. Type: note
1161#. Description1205#. Description
1162#: ../ubiquity-frontend-mythbuntu.templates:10011206#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1434,8 +1478,5 @@
1434#~ msgid "Select your time zone from the map, or by region and city."1478#~ msgid "Select your time zone from the map, or by region and city."
1435#~ msgstr "Seleccione su zona horaria en el mapa, o por región y ciudad."1479#~ msgstr "Seleccione su zona horaria en el mapa, o por región y ciudad."
14361480
1437#~ msgid "New partition"
1438#~ msgstr "Partición nueva"
1439
1440#~ msgid "Delete partition"1481#~ msgid "Delete partition"
1441#~ msgstr "Borrar partición"1482#~ msgstr "Borrar partición"
14421483
=== modified file 'debian/po/et.po'
--- debian/po/et.po 2009-07-14 13:14:35 +0000
+++ debian/po/et.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-02-09 09:06+0000\n"10"PO-Revision-Date: 2009-02-09 09:06+0000\n"
11"Last-Translator: Laur Mõtus <vprints@gmail.com>\n"11"Last-Translator: Laur Mõtus <vprints@gmail.com>\n"
12"Language-Team: Eesti <linuxiabi@hot.ee>\n"12"Language-Team: Eesti <linuxiabi@hot.ee>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "Tere tulemast"62msgstr "Tere tulemast"
6163
@@ -1135,6 +1137,48 @@
1135msgid "Applying configuration"1137msgid "Applying configuration"
1136msgstr ""1138msgstr ""
11371139
1140#. Type: text
1141#. Description
1142#: ../ubiquity.templates:159001
1143msgid "Timezone"
1144msgstr ""
1145
1146#. Type: text
1147#. Description
1148#: ../ubiquity.templates:160001
1149#, fuzzy
1150#| msgid "Keyboard layout"
1151msgid "Keyboard"
1152msgstr "Klaviatuuripaigutus"
1153
1154#. Type: text
1155#. Description
1156#: ../ubiquity.templates:161001
1157#, fuzzy
1158#| msgid "New partition"
1159msgid "Partition"
1160msgstr "Uus partitsioon"
1161
1162#. Type: text
1163#. Description
1164#: ../ubiquity.templates:162001
1165msgid "User Info"
1166msgstr ""
1167
1168#. Type: text
1169#. Description
1170#: ../ubiquity.templates:163001
1171msgid "Summary"
1172msgstr ""
1173
1174#. Type: text
1175#. Description
1176#: ../ubiquity.templates:164001
1177#, fuzzy
1178#| msgid "Install"
1179msgid "Installing"
1180msgstr "Paigalda"
1181
1138#. Type: note1182#. Type: note
1139#. Description1183#. Description
1140#: ../ubiquity-frontend-mythbuntu.templates:10011184#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1387,8 +1431,5 @@
1387msgid "Configuring infrared devices..."1431msgid "Configuring infrared devices..."
1388msgstr ""1432msgstr ""
13891433
1390#~ msgid "New partition"
1391#~ msgstr "Uus partitsioon"
1392
1393#~ msgid "Delete partition"1434#~ msgid "Delete partition"
1394#~ msgstr "Kustuta partitsioon"1435#~ msgstr "Kustuta partitsioon"
13951436
=== modified file 'debian/po/eu.po'
--- debian/po/eu.po 2009-07-14 13:14:35 +0000
+++ debian/po/eu.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:07+0000\n"10"PO-Revision-Date: 2009-04-10 12:07+0000\n"
11"Last-Translator: Iñaki Larrañaga Murgoitio <Unknown>\n"11"Last-Translator: Iñaki Larrañaga Murgoitio <Unknown>\n"
12"Language-Team: Basque <itzulpena@euskalgnu.org>\n"12"Language-Team: Basque <itzulpena@euskalgnu.org>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "Ongi etorri"62msgstr "Ongi etorri"
6163
@@ -1135,6 +1137,48 @@
1135msgid "Applying configuration"1137msgid "Applying configuration"
1136msgstr ""1138msgstr ""
11371139
1140#. Type: text
1141#. Description
1142#: ../ubiquity.templates:159001
1143msgid "Timezone"
1144msgstr ""
1145
1146#. Type: text
1147#. Description
1148#: ../ubiquity.templates:160001
1149#, fuzzy
1150#| msgid "Keyboard layout"
1151msgid "Keyboard"
1152msgstr "Teklatuaren diseinua"
1153
1154#. Type: text
1155#. Description
1156#: ../ubiquity.templates:161001
1157#, fuzzy
1158#| msgid "New partition"
1159msgid "Partition"
1160msgstr "Partizio berria"
1161
1162#. Type: text
1163#. Description
1164#: ../ubiquity.templates:162001
1165msgid "User Info"
1166msgstr ""
1167
1168#. Type: text
1169#. Description
1170#: ../ubiquity.templates:163001
1171msgid "Summary"
1172msgstr ""
1173
1174#. Type: text
1175#. Description
1176#: ../ubiquity.templates:164001
1177#, fuzzy
1178#| msgid "Install"
1179msgid "Installing"
1180msgstr "Instalatu"
1181
1138#. Type: note1182#. Type: note
1139#. Description1183#. Description
1140#: ../ubiquity-frontend-mythbuntu.templates:10011184#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1397,8 +1441,5 @@
1397msgid "Configuring infrared devices..."1441msgid "Configuring infrared devices..."
1398msgstr "Gailu infragorriak konfiguratzen..."1442msgstr "Gailu infragorriak konfiguratzen..."
13991443
1400#~ msgid "New partition"
1401#~ msgstr "Partizio berria"
1402
1403#~ msgid "Delete partition"1444#~ msgid "Delete partition"
1404#~ msgstr "Partizioa ezabatu"1445#~ msgstr "Partizioa ezabatu"
14051446
=== modified file 'debian/po/fa.po'
--- debian/po/fa.po 2009-07-14 13:14:35 +0000
+++ debian/po/fa.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2007-10-13 14:50+0000\n"10"PO-Revision-Date: 2007-10-13 14:50+0000\n"
11"Last-Translator: Nima Ahmadi Pour Anari <Unknown>\n"11"Last-Translator: Nima Ahmadi Pour Anari <Unknown>\n"
12"Language-Team: <fa@li.org>\n"12"Language-Team: <fa@li.org>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "خوش آمدید"62msgstr "خوش آمدید"
6163
@@ -1072,6 +1074,46 @@
1072msgid "Applying configuration"1074msgid "Applying configuration"
1073msgstr ""1075msgstr ""
10741076
1077#. Type: text
1078#. Description
1079#: ../ubiquity.templates:159001
1080msgid "Timezone"
1081msgstr ""
1082
1083#. Type: text
1084#. Description
1085#: ../ubiquity.templates:160001
1086#, fuzzy
1087#| msgid "Keyboard layout"
1088msgid "Keyboard"
1089msgstr "چیدمان صفحه‌کلید"
1090
1091#. Type: text
1092#. Description
1093#: ../ubiquity.templates:161001
1094msgid "Partition"
1095msgstr ""
1096
1097#. Type: text
1098#. Description
1099#: ../ubiquity.templates:162001
1100msgid "User Info"
1101msgstr ""
1102
1103#. Type: text
1104#. Description
1105#: ../ubiquity.templates:163001
1106msgid "Summary"
1107msgstr ""
1108
1109#. Type: text
1110#. Description
1111#: ../ubiquity.templates:164001
1112#, fuzzy
1113#| msgid "Installing system"
1114msgid "Installing"
1115msgstr "در حال نصب کردن سیستم"
1116
1075#. Type: note1117#. Type: note
1076#. Description1118#. Description
1077#: ../ubiquity-frontend-mythbuntu.templates:10011119#: ../ubiquity-frontend-mythbuntu.templates:1001
10781120
=== modified file 'debian/po/fi.po'
--- debian/po/fi.po 2009-07-14 13:14:35 +0000
+++ debian/po/fi.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-11 06:29+0000\n"10"PO-Revision-Date: 2009-04-11 06:29+0000\n"
11"Last-Translator: Timo Jyrinki <timo.jyrinki@iki.fi>\n"11"Last-Translator: Timo Jyrinki <timo.jyrinki@iki.fi>\n"
12"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"12"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
@@ -58,7 +58,9 @@
5858
59#. Type: text59#. Type: text
60#. Description60#. Description
61#: ../ubiquity.templates:900161#. Type: text
62#. Description
63#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
62msgid "Welcome"64msgid "Welcome"
63msgstr "Tervetuloa"65msgstr "Tervetuloa"
6466
@@ -1151,6 +1153,48 @@
1151msgid "Applying configuration"1153msgid "Applying configuration"
1152msgstr ""1154msgstr ""
11531155
1156#. Type: text
1157#. Description
1158#: ../ubiquity.templates:159001
1159msgid "Timezone"
1160msgstr ""
1161
1162#. Type: text
1163#. Description
1164#: ../ubiquity.templates:160001
1165#, fuzzy
1166#| msgid "Keyboard layout"
1167msgid "Keyboard"
1168msgstr "Näppäimistön asettelu"
1169
1170#. Type: text
1171#. Description
1172#: ../ubiquity.templates:161001
1173#, fuzzy
1174#| msgid "New partition"
1175msgid "Partition"
1176msgstr "Uusi osio"
1177
1178#. Type: text
1179#. Description
1180#: ../ubiquity.templates:162001
1181msgid "User Info"
1182msgstr ""
1183
1184#. Type: text
1185#. Description
1186#: ../ubiquity.templates:163001
1187msgid "Summary"
1188msgstr ""
1189
1190#. Type: text
1191#. Description
1192#: ../ubiquity.templates:164001
1193#, fuzzy
1194#| msgid "Install"
1195msgid "Installing"
1196msgstr "Asenna"
1197
1154#. Type: note1198#. Type: note
1155#. Description1199#. Description
1156#: ../ubiquity-frontend-mythbuntu.templates:10011200#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1426,8 +1470,5 @@
1426#~ msgid "Select your time zone from the map, or by region and city."1470#~ msgid "Select your time zone from the map, or by region and city."
1427#~ msgstr "Valitse aikavyöhykkeesi kartalta tai alueen ja kaupungin mukaan."1471#~ msgstr "Valitse aikavyöhykkeesi kartalta tai alueen ja kaupungin mukaan."
14281472
1429#~ msgid "New partition"
1430#~ msgstr "Uusi osio"
1431
1432#~ msgid "Delete partition"1473#~ msgid "Delete partition"
1433#~ msgstr "Poista osio"1474#~ msgstr "Poista osio"
14341475
=== modified file 'debian/po/fr.po'
--- debian/po/fr.po 2009-07-14 13:14:35 +0000
+++ debian/po/fr.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-16 07:16+0000\n"10"PO-Revision-Date: 2009-04-16 07:16+0000\n"
11"Last-Translator: Bruno Patri <bruno.patri@gmail.com>\n"11"Last-Translator: Bruno Patri <bruno.patri@gmail.com>\n"
12"Language-Team: French <debian-l10n-french@lists.debian.org>\n"12"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
@@ -58,7 +58,9 @@
5858
59#. Type: text59#. Type: text
60#. Description60#. Description
61#: ../ubiquity.templates:900161#. Type: text
62#. Description
63#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
62msgid "Welcome"64msgid "Welcome"
63msgstr "Bienvenue"65msgstr "Bienvenue"
6466
@@ -1170,6 +1172,48 @@
1170msgid "Applying configuration"1172msgid "Applying configuration"
1171msgstr ""1173msgstr ""
11721174
1175#. Type: text
1176#. Description
1177#: ../ubiquity.templates:159001
1178msgid "Timezone"
1179msgstr ""
1180
1181#. Type: text
1182#. Description
1183#: ../ubiquity.templates:160001
1184#, fuzzy
1185#| msgid "Keyboard layout"
1186msgid "Keyboard"
1187msgstr "Disposition du clavier"
1188
1189#. Type: text
1190#. Description
1191#: ../ubiquity.templates:161001
1192#, fuzzy
1193#| msgid "New partition"
1194msgid "Partition"
1195msgstr "Nouvelle partition"
1196
1197#. Type: text
1198#. Description
1199#: ../ubiquity.templates:162001
1200msgid "User Info"
1201msgstr ""
1202
1203#. Type: text
1204#. Description
1205#: ../ubiquity.templates:163001
1206msgid "Summary"
1207msgstr ""
1208
1209#. Type: text
1210#. Description
1211#: ../ubiquity.templates:164001
1212#, fuzzy
1213#| msgid "Install"
1214msgid "Installing"
1215msgstr "Installation"
1216
1173#. Type: note1217#. Type: note
1174#. Description1218#. Description
1175#: ../ubiquity-frontend-mythbuntu.templates:10011219#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1455,8 +1499,5 @@
1455#~ msgstr ""1499#~ msgstr ""
1456#~ "Sélectionnez votre fuseau horaire depuis la carte, ou par région et ville."1500#~ "Sélectionnez votre fuseau horaire depuis la carte, ou par région et ville."
14571501
1458#~ msgid "New partition"
1459#~ msgstr "Nouvelle partition"
1460
1461#~ msgid "Delete partition"1502#~ msgid "Delete partition"
1462#~ msgstr "Supprimer la partition"1503#~ msgstr "Supprimer la partition"
14631504
=== modified file 'debian/po/fy.po'
--- debian/po/fy.po 2009-07-14 13:14:35 +0000
+++ debian/po/fy.po 2009-07-28 15:35:01 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: debian-installer\n"8"Project-Id-Version: debian-installer\n"
9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
10"POT-Creation-Date: 2009-07-14 09:12-0400\n"10"POT-Creation-Date: 2009-07-28 11:27-0400\n"
11"PO-Revision-Date: 2008-11-05 02:02+0000\n"11"PO-Revision-Date: 2008-11-05 02:02+0000\n"
12"Last-Translator: Peter Hoogsteen <p.hoogsteen@chello.nl>\n"12"Last-Translator: Peter Hoogsteen <p.hoogsteen@chello.nl>\n"
13"Language-Team: Frisian <fy@li.org>\n"13"Language-Team: Frisian <fy@li.org>\n"
@@ -56,7 +56,9 @@
5656
57#. Type: text57#. Type: text
58#. Description58#. Description
59#: ../ubiquity.templates:900159#. Type: text
60#. Description
61#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
60msgid "Welcome"62msgid "Welcome"
61msgstr "Wolkom"63msgstr "Wolkom"
6264
@@ -1135,6 +1137,48 @@
1135msgid "Applying configuration"1137msgid "Applying configuration"
1136msgstr ""1138msgstr ""
11371139
1140#. Type: text
1141#. Description
1142#: ../ubiquity.templates:159001
1143msgid "Timezone"
1144msgstr ""
1145
1146#. Type: text
1147#. Description
1148#: ../ubiquity.templates:160001
1149#, fuzzy
1150#| msgid "Keyboard layout"
1151msgid "Keyboard"
1152msgstr "Kaaiplanke yndieling"
1153
1154#. Type: text
1155#. Description
1156#: ../ubiquity.templates:161001
1157#, fuzzy
1158#| msgid "New partition"
1159msgid "Partition"
1160msgstr "Nije partitie"
1161
1162#. Type: text
1163#. Description
1164#: ../ubiquity.templates:162001
1165msgid "User Info"
1166msgstr ""
1167
1168#. Type: text
1169#. Description
1170#: ../ubiquity.templates:163001
1171msgid "Summary"
1172msgstr ""
1173
1174#. Type: text
1175#. Description
1176#: ../ubiquity.templates:164001
1177#, fuzzy
1178#| msgid "Install"
1179msgid "Installing"
1180msgstr "Ynstallear"
1181
1138#. Type: note1182#. Type: note
1139#. Description1183#. Description
1140#: ../ubiquity-frontend-mythbuntu.templates:10011184#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1369,8 +1413,5 @@
1369msgid "Configuring infrared devices..."1413msgid "Configuring infrared devices..."
1370msgstr ""1414msgstr ""
13711415
1372#~ msgid "New partition"
1373#~ msgstr "Nije partitie"
1374
1375#~ msgid "Delete partition"1416#~ msgid "Delete partition"
1376#~ msgstr "Partitie fuortsmite"1417#~ msgstr "Partitie fuortsmite"
13771418
=== modified file 'debian/po/ga.po'
--- debian/po/ga.po 2009-07-14 13:14:35 +0000
+++ debian/po/ga.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:07+0000\n"10"PO-Revision-Date: 2009-04-10 12:07+0000\n"
11"Last-Translator: Kevin Patrick Scannell <Unknown>\n"11"Last-Translator: Kevin Patrick Scannell <Unknown>\n"
12"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"12"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "Fáilte"62msgstr "Fáilte"
6163
@@ -1069,6 +1071,44 @@
1069msgid "Applying configuration"1071msgid "Applying configuration"
1070msgstr ""1072msgstr ""
10711073
1074#. Type: text
1075#. Description
1076#: ../ubiquity.templates:159001
1077msgid "Timezone"
1078msgstr ""
1079
1080#. Type: text
1081#. Description
1082#: ../ubiquity.templates:160001
1083msgid "Keyboard"
1084msgstr ""
1085
1086#. Type: text
1087#. Description
1088#: ../ubiquity.templates:161001
1089msgid "Partition"
1090msgstr ""
1091
1092#. Type: text
1093#. Description
1094#: ../ubiquity.templates:162001
1095msgid "User Info"
1096msgstr ""
1097
1098#. Type: text
1099#. Description
1100#: ../ubiquity.templates:163001
1101msgid "Summary"
1102msgstr ""
1103
1104#. Type: text
1105#. Description
1106#: ../ubiquity.templates:164001
1107#, fuzzy
1108#| msgid "Install"
1109msgid "Installing"
1110msgstr "Suiteáil"
1111
1072#. Type: note1112#. Type: note
1073#. Description1113#. Description
1074#: ../ubiquity-frontend-mythbuntu.templates:10011114#: ../ubiquity-frontend-mythbuntu.templates:1001
10751115
=== modified file 'debian/po/gl.po'
--- debian/po/gl.po 2009-07-14 13:14:35 +0000
+++ debian/po/gl.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-14 12:50+0000\n"10"PO-Revision-Date: 2009-04-14 12:50+0000\n"
11"Last-Translator: Antón Méixome <meixome@gmail.com>\n"11"Last-Translator: Antón Méixome <meixome@gmail.com>\n"
12"Language-Team: Galician <proxecto@trasno.net>\n"12"Language-Team: Galician <proxecto@trasno.net>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "Benvido(a)"64msgstr "Benvido(a)"
6365
@@ -1156,6 +1158,48 @@
1156msgid "Applying configuration"1158msgid "Applying configuration"
1157msgstr ""1159msgstr ""
11581160
1161#. Type: text
1162#. Description
1163#: ../ubiquity.templates:159001
1164msgid "Timezone"
1165msgstr ""
1166
1167#. Type: text
1168#. Description
1169#: ../ubiquity.templates:160001
1170#, fuzzy
1171#| msgid "Keyboard layout"
1172msgid "Keyboard"
1173msgstr "Distribución do teclado"
1174
1175#. Type: text
1176#. Description
1177#: ../ubiquity.templates:161001
1178#, fuzzy
1179#| msgid "New partition"
1180msgid "Partition"
1181msgstr "Nova partición"
1182
1183#. Type: text
1184#. Description
1185#: ../ubiquity.templates:162001
1186msgid "User Info"
1187msgstr ""
1188
1189#. Type: text
1190#. Description
1191#: ../ubiquity.templates:163001
1192msgid "Summary"
1193msgstr ""
1194
1195#. Type: text
1196#. Description
1197#: ../ubiquity.templates:164001
1198#, fuzzy
1199#| msgid "Install"
1200msgid "Installing"
1201msgstr "Instalar"
1202
1159#. Type: note1203#. Type: note
1160#. Description1204#. Description
1161#: ../ubiquity-frontend-mythbuntu.templates:10011205#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1432,8 +1476,5 @@
1432#~ msgid "Select your time zone from the map, or by region and city."1476#~ msgid "Select your time zone from the map, or by region and city."
1433#~ msgstr "Seleccione a zona horaria no mapa ou pola rexión e a cidade."1477#~ msgstr "Seleccione a zona horaria no mapa ou pola rexión e a cidade."
14341478
1435#~ msgid "New partition"
1436#~ msgstr "Nova partición"
1437
1438#~ msgid "Delete partition"1479#~ msgid "Delete partition"
1439#~ msgstr "Eliminar partición"1480#~ msgstr "Eliminar partición"
14401481
=== modified file 'debian/po/gu.po'
--- debian/po/gu.po 2009-07-14 13:14:35 +0000
+++ debian/po/gu.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:07+0000\n"10"PO-Revision-Date: 2009-04-10 12:07+0000\n"
11"Last-Translator: Kartik Mistry <Unknown>\n"11"Last-Translator: Kartik Mistry <Unknown>\n"
12"Language-Team: Gujarati <team@utkarsh.org>\n"12"Language-Team: Gujarati <team@utkarsh.org>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "સ્વગતમ"62msgstr "સ્વગતમ"
6163
@@ -1105,6 +1107,48 @@
1105msgid "Applying configuration"1107msgid "Applying configuration"
1106msgstr ""1108msgstr ""
11071109
1110#. Type: text
1111#. Description
1112#: ../ubiquity.templates:159001
1113msgid "Timezone"
1114msgstr ""
1115
1116#. Type: text
1117#. Description
1118#: ../ubiquity.templates:160001
1119#, fuzzy
1120#| msgid "Keyboard layout"
1121msgid "Keyboard"
1122msgstr "કીબોર્ડ લેઆઉટ:"
1123
1124#. Type: text
1125#. Description
1126#: ../ubiquity.templates:161001
1127#, fuzzy
1128#| msgid "New partition"
1129msgid "Partition"
1130msgstr "નવો વિભાગ"
1131
1132#. Type: text
1133#. Description
1134#: ../ubiquity.templates:162001
1135msgid "User Info"
1136msgstr ""
1137
1138#. Type: text
1139#. Description
1140#: ../ubiquity.templates:163001
1141msgid "Summary"
1142msgstr ""
1143
1144#. Type: text
1145#. Description
1146#: ../ubiquity.templates:164001
1147#, fuzzy
1148#| msgid "Install"
1149msgid "Installing"
1150msgstr "સ્થાપન કરો"
1151
1108#. Type: note1152#. Type: note
1109#. Description1153#. Description
1110#: ../ubiquity-frontend-mythbuntu.templates:10011154#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1339,8 +1383,5 @@
1339msgid "Configuring infrared devices..."1383msgid "Configuring infrared devices..."
1340msgstr ""1384msgstr ""
13411385
1342#~ msgid "New partition"
1343#~ msgstr "નવો વિભાગ"
1344
1345#~ msgid "Delete partition"1386#~ msgid "Delete partition"
1346#~ msgstr "વિભાગ દૂર કરો"1387#~ msgstr "વિભાગ દૂર કરો"
13471388
=== modified file 'debian/po/he.po'
--- debian/po/he.po 2009-07-14 13:14:35 +0000
+++ debian/po/he.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:08+0000\n"10"PO-Revision-Date: 2009-04-10 12:08+0000\n"
11"Last-Translator: Lior Kaplan <kaplan@debian.org>\n"11"Last-Translator: Lior Kaplan <kaplan@debian.org>\n"
12"Language-Team: Hebrew <debian-hebrew-common@lists.alioth.debian.org>\n"12"Language-Team: Hebrew <debian-hebrew-common@lists.alioth.debian.org>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "ברוכים הבאים"62msgstr "ברוכים הבאים"
6163
@@ -1122,6 +1124,48 @@
1122msgid "Applying configuration"1124msgid "Applying configuration"
1123msgstr ""1125msgstr ""
11241126
1127#. Type: text
1128#. Description
1129#: ../ubiquity.templates:159001
1130msgid "Timezone"
1131msgstr ""
1132
1133#. Type: text
1134#. Description
1135#: ../ubiquity.templates:160001
1136#, fuzzy
1137#| msgid "Keyboard layout"
1138msgid "Keyboard"
1139msgstr "פריסת מקלדת"
1140
1141#. Type: text
1142#. Description
1143#: ../ubiquity.templates:161001
1144#, fuzzy
1145#| msgid "New partition"
1146msgid "Partition"
1147msgstr "צור מחיצה"
1148
1149#. Type: text
1150#. Description
1151#: ../ubiquity.templates:162001
1152msgid "User Info"
1153msgstr ""
1154
1155#. Type: text
1156#. Description
1157#: ../ubiquity.templates:163001
1158msgid "Summary"
1159msgstr ""
1160
1161#. Type: text
1162#. Description
1163#: ../ubiquity.templates:164001
1164#, fuzzy
1165#| msgid "Install"
1166msgid "Installing"
1167msgstr "התקנה"
1168
1125#. Type: note1169#. Type: note
1126#. Description1170#. Description
1127#: ../ubiquity-frontend-mythbuntu.templates:10011171#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1377,8 +1421,5 @@
1377msgid "Configuring infrared devices..."1421msgid "Configuring infrared devices..."
1378msgstr "מגדיר את התקני האינפרא-אדום..."1422msgstr "מגדיר את התקני האינפרא-אדום..."
13791423
1380#~ msgid "New partition"
1381#~ msgstr "צור מחיצה"
1382
1383#~ msgid "Delete partition"1424#~ msgid "Delete partition"
1384#~ msgstr "מחק מחיצה"1425#~ msgstr "מחק מחיצה"
13851426
=== modified file 'debian/po/hi.po'
--- debian/po/hi.po 2009-07-14 13:14:35 +0000
+++ debian/po/hi.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:08+0000\n"10"PO-Revision-Date: 2009-04-10 12:08+0000\n"
11"Last-Translator: Kumar Appaiah <Unknown>\n"11"Last-Translator: Kumar Appaiah <Unknown>\n"
12"Language-Team: Hindi <debian-in-workers@lists.alioth.debian.org>\n"12"Language-Team: Hindi <debian-in-workers@lists.alioth.debian.org>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "सुस्वागतम"62msgstr "सुस्वागतम"
6163
@@ -1097,6 +1099,48 @@
1097msgid "Applying configuration"1099msgid "Applying configuration"
1098msgstr ""1100msgstr ""
10991101
1102#. Type: text
1103#. Description
1104#: ../ubiquity.templates:159001
1105msgid "Timezone"
1106msgstr ""
1107
1108#. Type: text
1109#. Description
1110#: ../ubiquity.templates:160001
1111#, fuzzy
1112#| msgid "Keyboard layout"
1113msgid "Keyboard"
1114msgstr "कुंजीपट नक्षा"
1115
1116#. Type: text
1117#. Description
1118#: ../ubiquity.templates:161001
1119#, fuzzy
1120#| msgid "Prepare partitions"
1121msgid "Partition"
1122msgstr "नये विभाजन बनाएँ"
1123
1124#. Type: text
1125#. Description
1126#: ../ubiquity.templates:162001
1127msgid "User Info"
1128msgstr ""
1129
1130#. Type: text
1131#. Description
1132#: ../ubiquity.templates:163001
1133msgid "Summary"
1134msgstr ""
1135
1136#. Type: text
1137#. Description
1138#: ../ubiquity.templates:164001
1139#, fuzzy
1140#| msgid "Install"
1141msgid "Installing"
1142msgstr "संस्थापित करें"
1143
1100#. Type: note1144#. Type: note
1101#. Description1145#. Description
1102#: ../ubiquity-frontend-mythbuntu.templates:10011146#: ../ubiquity-frontend-mythbuntu.templates:1001
11031147
=== modified file 'debian/po/hr.po'
--- debian/po/hr.po 2009-07-14 13:14:35 +0000
+++ debian/po/hr.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-03-10 10:33+0000\n"10"PO-Revision-Date: 2009-03-10 10:33+0000\n"
11"Last-Translator: Josip Rodin <Unknown>\n"11"Last-Translator: Josip Rodin <Unknown>\n"
12"Language-Team: Croatian <lokalizacija@linux.hr>\n"12"Language-Team: Croatian <lokalizacija@linux.hr>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "Dobrodošli"62msgstr "Dobrodošli"
6163
@@ -1141,6 +1143,48 @@
1141msgid "Applying configuration"1143msgid "Applying configuration"
1142msgstr ""1144msgstr ""
11431145
1146#. Type: text
1147#. Description
1148#: ../ubiquity.templates:159001
1149msgid "Timezone"
1150msgstr ""
1151
1152#. Type: text
1153#. Description
1154#: ../ubiquity.templates:160001
1155#, fuzzy
1156#| msgid "Keyboard layout"
1157msgid "Keyboard"
1158msgstr "Raspored tipkovnice"
1159
1160#. Type: text
1161#. Description
1162#: ../ubiquity.templates:161001
1163#, fuzzy
1164#| msgid "New partition"
1165msgid "Partition"
1166msgstr "Nova particija"
1167
1168#. Type: text
1169#. Description
1170#: ../ubiquity.templates:162001
1171msgid "User Info"
1172msgstr ""
1173
1174#. Type: text
1175#. Description
1176#: ../ubiquity.templates:163001
1177msgid "Summary"
1178msgstr ""
1179
1180#. Type: text
1181#. Description
1182#: ../ubiquity.templates:164001
1183#, fuzzy
1184#| msgid "Install"
1185msgid "Installing"
1186msgstr "Instalacija"
1187
1144#. Type: note1188#. Type: note
1145#. Description1189#. Description
1146#: ../ubiquity-frontend-mythbuntu.templates:10011190#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1402,8 +1446,5 @@
1402msgid "Configuring infrared devices..."1446msgid "Configuring infrared devices..."
1403msgstr "Postavljanje infracrvnih uređaja..."1447msgstr "Postavljanje infracrvnih uređaja..."
14041448
1405#~ msgid "New partition"
1406#~ msgstr "Nova particija"
1407
1408#~ msgid "Delete partition"1449#~ msgid "Delete partition"
1409#~ msgstr "Obriši particiju"1450#~ msgstr "Obriši particiju"
14101451
=== modified file 'debian/po/hu.po'
--- debian/po/hu.po 2009-07-14 13:14:35 +0000
+++ debian/po/hu.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-12 09:42+0000\n"10"PO-Revision-Date: 2009-04-12 09:42+0000\n"
11"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"11"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
12"Language-Team: Debian L10n Hungarian <debian-l10n-hungarian@lists.debian."12"Language-Team: Debian L10n Hungarian <debian-l10n-hungarian@lists.debian."
@@ -58,7 +58,9 @@
5858
59#. Type: text59#. Type: text
60#. Description60#. Description
61#: ../ubiquity.templates:900161#. Type: text
62#. Description
63#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
62msgid "Welcome"64msgid "Welcome"
63msgstr "Üdvözöljük"65msgstr "Üdvözöljük"
6466
@@ -1157,6 +1159,48 @@
1157msgid "Applying configuration"1159msgid "Applying configuration"
1158msgstr ""1160msgstr ""
11591161
1162#. Type: text
1163#. Description
1164#: ../ubiquity.templates:159001
1165msgid "Timezone"
1166msgstr ""
1167
1168#. Type: text
1169#. Description
1170#: ../ubiquity.templates:160001
1171#, fuzzy
1172#| msgid "Keyboard layout"
1173msgid "Keyboard"
1174msgstr "Billentyűzetkiosztás"
1175
1176#. Type: text
1177#. Description
1178#: ../ubiquity.templates:161001
1179#, fuzzy
1180#| msgid "New partition"
1181msgid "Partition"
1182msgstr "Új partíció"
1183
1184#. Type: text
1185#. Description
1186#: ../ubiquity.templates:162001
1187msgid "User Info"
1188msgstr ""
1189
1190#. Type: text
1191#. Description
1192#: ../ubiquity.templates:163001
1193msgid "Summary"
1194msgstr ""
1195
1196#. Type: text
1197#. Description
1198#: ../ubiquity.templates:164001
1199#, fuzzy
1200#| msgid "Install"
1201msgid "Installing"
1202msgstr "Telepítés"
1203
1160#. Type: note1204#. Type: note
1161#. Description1205#. Description
1162#: ../ubiquity-frontend-mythbuntu.templates:10011206#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1432,8 +1476,5 @@
1432#~ msgstr ""1476#~ msgstr ""
1433#~ "Válassza ki az időzónát a térképről, vagy adja meg a régiót és a várost."1477#~ "Válassza ki az időzónát a térképről, vagy adja meg a régiót és a várost."
14341478
1435#~ msgid "New partition"
1436#~ msgstr "Új partíció"
1437
1438#~ msgid "Delete partition"1479#~ msgid "Delete partition"
1439#~ msgstr "Partíció törlése"1480#~ msgstr "Partíció törlése"
14401481
=== modified file 'debian/po/id.po'
--- debian/po/id.po 2009-07-14 13:14:35 +0000
+++ debian/po/id.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:09+0000\n"10"PO-Revision-Date: 2009-04-10 12:09+0000\n"
11"Last-Translator: Arief S Fitrianto <Unknown>\n"11"Last-Translator: Arief S Fitrianto <Unknown>\n"
12"Language-Team: Bahasa Indonesia <debian-l10n-id@gurame.fisika.ui.ac.id>\n"12"Language-Team: Bahasa Indonesia <debian-l10n-id@gurame.fisika.ui.ac.id>\n"
@@ -58,7 +58,9 @@
5858
59#. Type: text59#. Type: text
60#. Description60#. Description
61#: ../ubiquity.templates:900161#. Type: text
62#. Description
63#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
62msgid "Welcome"64msgid "Welcome"
63msgstr "Selamat Datang"65msgstr "Selamat Datang"
6466
@@ -1163,6 +1165,48 @@
1163msgid "Applying configuration"1165msgid "Applying configuration"
1164msgstr ""1166msgstr ""
11651167
1168#. Type: text
1169#. Description
1170#: ../ubiquity.templates:159001
1171msgid "Timezone"
1172msgstr ""
1173
1174#. Type: text
1175#. Description
1176#: ../ubiquity.templates:160001
1177#, fuzzy
1178#| msgid "Keyboard layout"
1179msgid "Keyboard"
1180msgstr "Susunan papan ketik"
1181
1182#. Type: text
1183#. Description
1184#: ../ubiquity.templates:161001
1185#, fuzzy
1186#| msgid "New partition"
1187msgid "Partition"
1188msgstr "Partisi Baru"
1189
1190#. Type: text
1191#. Description
1192#: ../ubiquity.templates:162001
1193msgid "User Info"
1194msgstr ""
1195
1196#. Type: text
1197#. Description
1198#: ../ubiquity.templates:163001
1199msgid "Summary"
1200msgstr ""
1201
1202#. Type: text
1203#. Description
1204#: ../ubiquity.templates:164001
1205#, fuzzy
1206#| msgid "Install"
1207msgid "Installing"
1208msgstr "Instal"
1209
1166#. Type: note1210#. Type: note
1167#. Description1211#. Description
1168#: ../ubiquity-frontend-mythbuntu.templates:10011212#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1441,8 +1485,5 @@
1441#~ msgid "Select your time zone from the map, or by region and city."1485#~ msgid "Select your time zone from the map, or by region and city."
1442#~ msgstr "Pilih zona waktu anda dari peta"1486#~ msgstr "Pilih zona waktu anda dari peta"
14431487
1444#~ msgid "New partition"
1445#~ msgstr "Partisi Baru"
1446
1447#~ msgid "Delete partition"1488#~ msgid "Delete partition"
1448#~ msgstr "Hapus Partisi"1489#~ msgstr "Hapus Partisi"
14491490
=== modified file 'debian/po/is.po'
--- debian/po/is.po 2009-07-14 13:14:35 +0000
+++ debian/po/is.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-13 00:34+0000\n"10"PO-Revision-Date: 2009-04-13 00:34+0000\n"
11"Last-Translator: Baldur <baldurpet@gmail.com>\n"11"Last-Translator: Baldur <baldurpet@gmail.com>\n"
12"Language-Team: Icelandic <debian-user-icelandic@lists.debian.org>\n"12"Language-Team: Icelandic <debian-user-icelandic@lists.debian.org>\n"
@@ -59,7 +59,9 @@
5959
60#. Type: text60#. Type: text
61#. Description61#. Description
62#: ../ubiquity.templates:900162#. Type: text
63#. Description
64#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
63msgid "Welcome"65msgid "Welcome"
64msgstr "Velkomin"66msgstr "Velkomin"
6567
@@ -1158,6 +1160,48 @@
1158msgid "Applying configuration"1160msgid "Applying configuration"
1159msgstr ""1161msgstr ""
11601162
1163#. Type: text
1164#. Description
1165#: ../ubiquity.templates:159001
1166msgid "Timezone"
1167msgstr ""
1168
1169#. Type: text
1170#. Description
1171#: ../ubiquity.templates:160001
1172#, fuzzy
1173#| msgid "Keyboard layout"
1174msgid "Keyboard"
1175msgstr "Lyklaborðið"
1176
1177#. Type: text
1178#. Description
1179#: ../ubiquity.templates:161001
1180#, fuzzy
1181#| msgid "New partition"
1182msgid "Partition"
1183msgstr "Ný sneiðing"
1184
1185#. Type: text
1186#. Description
1187#: ../ubiquity.templates:162001
1188msgid "User Info"
1189msgstr ""
1190
1191#. Type: text
1192#. Description
1193#: ../ubiquity.templates:163001
1194msgid "Summary"
1195msgstr ""
1196
1197#. Type: text
1198#. Description
1199#: ../ubiquity.templates:164001
1200#, fuzzy
1201#| msgid "Install"
1202msgid "Installing"
1203msgstr "Uppsetning"
1204
1161#. Type: note1205#. Type: note
1162#. Description1206#. Description
1163#: ../ubiquity-frontend-mythbuntu.templates:10011207#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1434,8 +1478,5 @@
1434#~ msgid "Select your time zone from the map, or by region and city."1478#~ msgid "Select your time zone from the map, or by region and city."
1435#~ msgstr "Veldu í hvaða tímabelti þú ert í á kortinu, eða eftir borg."1479#~ msgstr "Veldu í hvaða tímabelti þú ert í á kortinu, eða eftir borg."
14361480
1437#~ msgid "New partition"
1438#~ msgstr "Ný sneiðing"
1439
1440#~ msgid "Delete partition"1481#~ msgid "Delete partition"
1441#~ msgstr "Eyða sneiðingu"1482#~ msgstr "Eyða sneiðingu"
14421483
=== modified file 'debian/po/it.po'
--- debian/po/it.po 2009-07-14 13:14:35 +0000
+++ debian/po/it.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:09+0000\n"10"PO-Revision-Date: 2009-04-10 12:09+0000\n"
11"Last-Translator: Milo Casagrande <milo@milo.name>\n"11"Last-Translator: Milo Casagrande <milo@milo.name>\n"
12"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"12"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "Benvenuti"64msgstr "Benvenuti"
6365
@@ -1163,6 +1165,48 @@
1163msgid "Applying configuration"1165msgid "Applying configuration"
1164msgstr ""1166msgstr ""
11651167
1168#. Type: text
1169#. Description
1170#: ../ubiquity.templates:159001
1171msgid "Timezone"
1172msgstr ""
1173
1174#. Type: text
1175#. Description
1176#: ../ubiquity.templates:160001
1177#, fuzzy
1178#| msgid "Keyboard layout"
1179msgid "Keyboard"
1180msgstr "Disposizione della tastiera"
1181
1182#. Type: text
1183#. Description
1184#: ../ubiquity.templates:161001
1185#, fuzzy
1186#| msgid "New partition"
1187msgid "Partition"
1188msgstr "Nuova partizione"
1189
1190#. Type: text
1191#. Description
1192#: ../ubiquity.templates:162001
1193msgid "User Info"
1194msgstr ""
1195
1196#. Type: text
1197#. Description
1198#: ../ubiquity.templates:163001
1199msgid "Summary"
1200msgstr ""
1201
1202#. Type: text
1203#. Description
1204#: ../ubiquity.templates:164001
1205#, fuzzy
1206#| msgid "Install"
1207msgid "Installing"
1208msgstr "Installa"
1209
1166#. Type: note1210#. Type: note
1167#. Description1211#. Description
1168#: ../ubiquity-frontend-mythbuntu.templates:10011212#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1442,8 +1486,5 @@
1442#~ "Selezionare il proprio fuso orario dalla mappa oppure in base alla "1486#~ "Selezionare il proprio fuso orario dalla mappa oppure in base alla "
1443#~ "regione e alla città."1487#~ "regione e alla città."
14441488
1445#~ msgid "New partition"
1446#~ msgstr "Nuova partizione"
1447
1448#~ msgid "Delete partition"1489#~ msgid "Delete partition"
1449#~ msgstr "Elimina partizione"1490#~ msgstr "Elimina partizione"
14501491
=== modified file 'debian/po/ja.po'
--- debian/po/ja.po 2009-07-14 13:14:35 +0000
+++ debian/po/ja.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-16 02:43+0000\n"10"PO-Revision-Date: 2009-04-16 02:43+0000\n"
11"Last-Translator: William Bohn <shambler@comcast.net>\n"11"Last-Translator: William Bohn <shambler@comcast.net>\n"
12"Language-Team: Debian L10n Japanese <debian-l10n-japanese@lists.debian.org>\n"12"Language-Team: Debian L10n Japanese <debian-l10n-japanese@lists.debian.org>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "ようこそ"64msgstr "ようこそ"
6365
@@ -1160,6 +1162,48 @@
1160msgid "Applying configuration"1162msgid "Applying configuration"
1161msgstr ""1163msgstr ""
11621164
1165#. Type: text
1166#. Description
1167#: ../ubiquity.templates:159001
1168msgid "Timezone"
1169msgstr ""
1170
1171#. Type: text
1172#. Description
1173#: ../ubiquity.templates:160001
1174#, fuzzy
1175#| msgid "Keyboard layout"
1176msgid "Keyboard"
1177msgstr "キーボードレイアウト"
1178
1179#. Type: text
1180#. Description
1181#: ../ubiquity.templates:161001
1182#, fuzzy
1183#| msgid "New partition"
1184msgid "Partition"
1185msgstr "新規のパーティション"
1186
1187#. Type: text
1188#. Description
1189#: ../ubiquity.templates:162001
1190msgid "User Info"
1191msgstr ""
1192
1193#. Type: text
1194#. Description
1195#: ../ubiquity.templates:163001
1196msgid "Summary"
1197msgstr ""
1198
1199#. Type: text
1200#. Description
1201#: ../ubiquity.templates:164001
1202#, fuzzy
1203#| msgid "Install"
1204msgid "Installing"
1205msgstr "インストール"
1206
1163#. Type: note1207#. Type: note
1164#. Description1208#. Description
1165#: ../ubiquity-frontend-mythbuntu.templates:10011209#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1434,8 +1478,5 @@
1434#~ msgstr ""1478#~ msgstr ""
1435#~ "時刻を設定するために地図上をクリックするか、地域と都市を選択してください。"1479#~ "時刻を設定するために地図上をクリックするか、地域と都市を選択してください。"
14361480
1437#~ msgid "New partition"
1438#~ msgstr "新規のパーティション"
1439
1440#~ msgid "Delete partition"1481#~ msgid "Delete partition"
1441#~ msgstr "パーティションの削除"1482#~ msgstr "パーティションの削除"
14421483
=== modified file 'debian/po/ka.po'
--- debian/po/ka.po 2009-07-14 13:14:35 +0000
+++ debian/po/ka.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-09 01:48+0000\n"10"PO-Revision-Date: 2009-04-09 01:48+0000\n"
11"Last-Translator: Vladimer Sichinava <vsichi@gnome.org>\n"11"Last-Translator: Vladimer Sichinava <vsichi@gnome.org>\n"
12"Language-Team: Georgian <aietkolkhi@gmail.com>\n"12"Language-Team: Georgian <aietkolkhi@gmail.com>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "მოგესალმებით"64msgstr "მოგესალმებით"
6365
@@ -1146,6 +1148,48 @@
1146msgid "Applying configuration"1148msgid "Applying configuration"
1147msgstr ""1149msgstr ""
11481150
1151#. Type: text
1152#. Description
1153#: ../ubiquity.templates:159001
1154msgid "Timezone"
1155msgstr ""
1156
1157#. Type: text
1158#. Description
1159#: ../ubiquity.templates:160001
1160#, fuzzy
1161#| msgid "Keyboard layout"
1162msgid "Keyboard"
1163msgstr "კლავიატურის განლაგება"
1164
1165#. Type: text
1166#. Description
1167#: ../ubiquity.templates:161001
1168#, fuzzy
1169#| msgid "New partition"
1170msgid "Partition"
1171msgstr "ახალი პარტიცია"
1172
1173#. Type: text
1174#. Description
1175#: ../ubiquity.templates:162001
1176msgid "User Info"
1177msgstr ""
1178
1179#. Type: text
1180#. Description
1181#: ../ubiquity.templates:163001
1182msgid "Summary"
1183msgstr ""
1184
1185#. Type: text
1186#. Description
1187#: ../ubiquity.templates:164001
1188#, fuzzy
1189#| msgid "Install"
1190msgid "Installing"
1191msgstr "სისტემის დაყენების პროცესი"
1192
1149#. Type: note1193#. Type: note
1150#. Description1194#. Description
1151#: ../ubiquity-frontend-mythbuntu.templates:10011195#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1421,8 +1465,5 @@
1421#~ msgid "Select your time zone from the map, or by region and city."1465#~ msgid "Select your time zone from the map, or by region and city."
1422#~ msgstr "დროის ზონის რუქის, რეგიონის, ან ქალაქის მიხედვით ამორჩევა."1466#~ msgstr "დროის ზონის რუქის, რეგიონის, ან ქალაქის მიხედვით ამორჩევა."
14231467
1424#~ msgid "New partition"
1425#~ msgstr "ახალი პარტიცია"
1426
1427#~ msgid "Delete partition"1468#~ msgid "Delete partition"
1428#~ msgstr "პარტიციის წაშლა"1469#~ msgstr "პარტიციის წაშლა"
14291470
=== modified file 'debian/po/kk.po'
--- debian/po/kk.po 2009-07-14 13:14:35 +0000
+++ debian/po/kk.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2008-11-21 04:12+0000\n"10"PO-Revision-Date: 2008-11-21 04:12+0000\n"
11"Last-Translator: baurzhan.m <Unknown>\n"11"Last-Translator: baurzhan.m <Unknown>\n"
12"Language-Team: Kazakh\n"12"Language-Team: Kazakh\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "Қош келдіңіз"62msgstr "Қош келдіңіз"
6163
@@ -1135,6 +1137,48 @@
1135msgid "Applying configuration"1137msgid "Applying configuration"
1136msgstr ""1138msgstr ""
11371139
1140#. Type: text
1141#. Description
1142#: ../ubiquity.templates:159001
1143msgid "Timezone"
1144msgstr ""
1145
1146#. Type: text
1147#. Description
1148#: ../ubiquity.templates:160001
1149#, fuzzy
1150#| msgid "Keyboard layout"
1151msgid "Keyboard"
1152msgstr "Пернетақта сәйкестігі"
1153
1154#. Type: text
1155#. Description
1156#: ../ubiquity.templates:161001
1157#, fuzzy
1158#| msgid "New partition"
1159msgid "Partition"
1160msgstr "Жаңа бөлім"
1161
1162#. Type: text
1163#. Description
1164#: ../ubiquity.templates:162001
1165msgid "User Info"
1166msgstr ""
1167
1168#. Type: text
1169#. Description
1170#: ../ubiquity.templates:163001
1171msgid "Summary"
1172msgstr ""
1173
1174#. Type: text
1175#. Description
1176#: ../ubiquity.templates:164001
1177#, fuzzy
1178#| msgid "Install"
1179msgid "Installing"
1180msgstr "Орнату"
1181
1138#. Type: note1182#. Type: note
1139#. Description1183#. Description
1140#: ../ubiquity-frontend-mythbuntu.templates:10011184#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1394,8 +1438,5 @@
1394msgid "Configuring infrared devices..."1438msgid "Configuring infrared devices..."
1395msgstr "Инфрақызыл құрылғыларды баптау..."1439msgstr "Инфрақызыл құрылғыларды баптау..."
13961440
1397#~ msgid "New partition"
1398#~ msgstr "Жаңа бөлім"
1399
1400#~ msgid "Delete partition"1441#~ msgid "Delete partition"
1401#~ msgstr "Бөлімді жою"1442#~ msgstr "Бөлімді жою"
14021443
=== modified file 'debian/po/km.po'
--- debian/po/km.po 2009-07-14 13:14:35 +0000
+++ debian/po/km.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:09+0000\n"10"PO-Revision-Date: 2009-04-10 12:09+0000\n"
11"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"11"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
12"Language-Team: Khmer <support@khmeros.info>\n"12"Language-Team: Khmer <support@khmeros.info>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "សូមស្វាគមន៍"64msgstr "សូមស្វាគមន៍"
6365
@@ -1118,6 +1120,48 @@
1118msgid "Applying configuration"1120msgid "Applying configuration"
1119msgstr ""1121msgstr ""
11201122
1123#. Type: text
1124#. Description
1125#: ../ubiquity.templates:159001
1126msgid "Timezone"
1127msgstr ""
1128
1129#. Type: text
1130#. Description
1131#: ../ubiquity.templates:160001
1132#, fuzzy
1133#| msgid "Keyboard layout"
1134msgid "Keyboard"
1135msgstr "ប្លង់​ក្ដារ"
1136
1137#. Type: text
1138#. Description
1139#: ../ubiquity.templates:161001
1140#, fuzzy
1141#| msgid "New partition"
1142msgid "Partition"
1143msgstr "ចែក​ភាគ​ថាស​ថ្មី"
1144
1145#. Type: text
1146#. Description
1147#: ../ubiquity.templates:162001
1148msgid "User Info"
1149msgstr ""
1150
1151#. Type: text
1152#. Description
1153#: ../ubiquity.templates:163001
1154msgid "Summary"
1155msgstr ""
1156
1157#. Type: text
1158#. Description
1159#: ../ubiquity.templates:164001
1160#, fuzzy
1161#| msgid "Install"
1162msgid "Installing"
1163msgstr "ដំឡើង"
1164
1121#. Type: note1165#. Type: note
1122#. Description1166#. Description
1123#: ../ubiquity-frontend-mythbuntu.templates:10011167#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1376,8 +1420,5 @@
1376#~ msgid "Select your time zone from the map, or by region and city."1420#~ msgid "Select your time zone from the map, or by region and city."
1377#~ msgstr "ជ្រើស​ពេល​វេលា​តំបន់​របស់​អ្នក ពី​ផែនទី, ឬ ដោយ តំបន់ និង ទីក្រុង​។"1421#~ msgstr "ជ្រើស​ពេល​វេលា​តំបន់​របស់​អ្នក ពី​ផែនទី, ឬ ដោយ តំបន់ និង ទីក្រុង​។"
13781422
1379#~ msgid "New partition"
1380#~ msgstr "ចែក​ភាគ​ថាស​ថ្មី"
1381
1382#~ msgid "Delete partition"1423#~ msgid "Delete partition"
1383#~ msgstr "លុប​ភាគថាស"1424#~ msgstr "លុប​ភាគថាស"
13841425
=== modified file 'debian/po/ko.po'
--- debian/po/ko.po 2009-07-14 13:14:35 +0000
+++ debian/po/ko.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-07 03:59+0000\n"10"PO-Revision-Date: 2009-04-07 03:59+0000\n"
11"Last-Translator: Seongho Choo <somebody@kangwon.ac.kr>\n"11"Last-Translator: Seongho Choo <somebody@kangwon.ac.kr>\n"
12"Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n"12"Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "환영"64msgstr "환영"
6365
@@ -1138,6 +1140,48 @@
1138msgid "Applying configuration"1140msgid "Applying configuration"
1139msgstr ""1141msgstr ""
11401142
1143#. Type: text
1144#. Description
1145#: ../ubiquity.templates:159001
1146msgid "Timezone"
1147msgstr ""
1148
1149#. Type: text
1150#. Description
1151#: ../ubiquity.templates:160001
1152#, fuzzy
1153#| msgid "Keyboard layout"
1154msgid "Keyboard"
1155msgstr "키보드 배치"
1156
1157#. Type: text
1158#. Description
1159#: ../ubiquity.templates:161001
1160#, fuzzy
1161#| msgid "New partition"
1162msgid "Partition"
1163msgstr "새 분할"
1164
1165#. Type: text
1166#. Description
1167#: ../ubiquity.templates:162001
1168msgid "User Info"
1169msgstr ""
1170
1171#. Type: text
1172#. Description
1173#: ../ubiquity.templates:163001
1174msgid "Summary"
1175msgstr ""
1176
1177#. Type: text
1178#. Description
1179#: ../ubiquity.templates:164001
1180#, fuzzy
1181#| msgid "Install"
1182msgid "Installing"
1183msgstr "설치"
1184
1141#. Type: note1185#. Type: note
1142#. Description1186#. Description
1143#: ../ubiquity-frontend-mythbuntu.templates:10011187#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1409,8 +1453,5 @@
1409#~ msgid "Select your time zone from the map, or by region and city."1453#~ msgid "Select your time zone from the map, or by region and city."
1410#~ msgstr "지도나 지역, 도시명으로 지도에서 시간대 선택"1454#~ msgstr "지도나 지역, 도시명으로 지도에서 시간대 선택"
14111455
1412#~ msgid "New partition"
1413#~ msgstr "새 분할"
1414
1415#~ msgid "Delete partition"1456#~ msgid "Delete partition"
1416#~ msgstr "분할 삭제"1457#~ msgstr "분할 삭제"
14171458
=== modified file 'debian/po/ku.po'
--- debian/po/ku.po 2009-07-14 13:14:35 +0000
+++ debian/po/ku.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-15 11:34+0000\n"10"PO-Revision-Date: 2009-04-15 11:34+0000\n"
11"Last-Translator: Amed Çeko Jiyan <amedcj@gmail.com>\n"11"Last-Translator: Amed Çeko Jiyan <amedcj@gmail.com>\n"
12"Language-Team: ku <ubuntu-l10n-kur@lists.ubuntu.com>\n"12"Language-Team: ku <ubuntu-l10n-kur@lists.ubuntu.com>\n"
@@ -58,7 +58,9 @@
5858
59#. Type: text59#. Type: text
60#. Description60#. Description
61#: ../ubiquity.templates:900161#. Type: text
62#. Description
63#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
62msgid "Welcome"64msgid "Welcome"
63msgstr "Bi xêr hatî"65msgstr "Bi xêr hatî"
6466
@@ -1139,6 +1141,48 @@
1139msgid "Applying configuration"1141msgid "Applying configuration"
1140msgstr ""1142msgstr ""
11411143
1144#. Type: text
1145#. Description
1146#: ../ubiquity.templates:159001
1147msgid "Timezone"
1148msgstr ""
1149
1150#. Type: text
1151#. Description
1152#: ../ubiquity.templates:160001
1153#, fuzzy
1154#| msgid "Keyboard layout"
1155msgid "Keyboard"
1156msgstr "Rengê klavyeyê"
1157
1158#. Type: text
1159#. Description
1160#: ../ubiquity.templates:161001
1161#, fuzzy
1162#| msgid "New partition"
1163msgid "Partition"
1164msgstr "Partîsyona Nû"
1165
1166#. Type: text
1167#. Description
1168#: ../ubiquity.templates:162001
1169msgid "User Info"
1170msgstr ""
1171
1172#. Type: text
1173#. Description
1174#: ../ubiquity.templates:163001
1175msgid "Summary"
1176msgstr ""
1177
1178#. Type: text
1179#. Description
1180#: ../ubiquity.templates:164001
1181#, fuzzy
1182#| msgid "Install"
1183msgid "Installing"
1184msgstr "Saz bike"
1185
1142#. Type: note1186#. Type: note
1143#. Description1187#. Description
1144#: ../ubiquity-frontend-mythbuntu.templates:10011188#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1387,8 +1431,5 @@
1387#~ msgstr ""1431#~ msgstr ""
1388#~ "Dikarî demê ji nexşeya dinyayê li gorî bajar an jî herêman hilbijêrî."1432#~ "Dikarî demê ji nexşeya dinyayê li gorî bajar an jî herêman hilbijêrî."
13891433
1390#~ msgid "New partition"
1391#~ msgstr "Partîsyona Nû"
1392
1393#~ msgid "Delete partition"1434#~ msgid "Delete partition"
1394#~ msgstr "Partîsyonê jê bive"1435#~ msgstr "Partîsyonê jê bive"
13951436
=== modified file 'debian/po/ky.po'
--- debian/po/ky.po 2009-07-14 13:14:35 +0000
+++ debian/po/ky.po 2009-07-28 15:35:01 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: debian-installer\n"8"Project-Id-Version: debian-installer\n"
9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
10"POT-Creation-Date: 2009-07-14 09:12-0400\n"10"POT-Creation-Date: 2009-07-28 11:27-0400\n"
11"PO-Revision-Date: 2006-10-04 08:39+0000\n"11"PO-Revision-Date: 2006-10-04 08:39+0000\n"
12"Last-Translator: GrajdaninK <Unknown>\n"12"Last-Translator: GrajdaninK <Unknown>\n"
13"Language-Team: Kirghiz <ky@li.org>\n"13"Language-Team: Kirghiz <ky@li.org>\n"
@@ -56,7 +56,9 @@
5656
57#. Type: text57#. Type: text
58#. Description58#. Description
59#: ../ubiquity.templates:900159#. Type: text
60#. Description
61#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
60msgid "Welcome"62msgid "Welcome"
61msgstr "Кош келиңиз"63msgstr "Кош келиңиз"
6264
@@ -1082,6 +1084,44 @@
1082msgid "Applying configuration"1084msgid "Applying configuration"
1083msgstr ""1085msgstr ""
10841086
1087#. Type: text
1088#. Description
1089#: ../ubiquity.templates:159001
1090msgid "Timezone"
1091msgstr ""
1092
1093#. Type: text
1094#. Description
1095#: ../ubiquity.templates:160001
1096msgid "Keyboard"
1097msgstr ""
1098
1099#. Type: text
1100#. Description
1101#: ../ubiquity.templates:161001
1102msgid "Partition"
1103msgstr ""
1104
1105#. Type: text
1106#. Description
1107#: ../ubiquity.templates:162001
1108msgid "User Info"
1109msgstr ""
1110
1111#. Type: text
1112#. Description
1113#: ../ubiquity.templates:163001
1114msgid "Summary"
1115msgstr ""
1116
1117#. Type: text
1118#. Description
1119#: ../ubiquity.templates:164001
1120#, fuzzy
1121#| msgid "Install"
1122msgid "Installing"
1123msgstr "Жүктө"
1124
1085#. Type: note1125#. Type: note
1086#. Description1126#. Description
1087#: ../ubiquity-frontend-mythbuntu.templates:10011127#: ../ubiquity-frontend-mythbuntu.templates:1001
10881128
=== modified file 'debian/po/lt.po'
--- debian/po/lt.po 2009-07-14 13:14:35 +0000
+++ debian/po/lt.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:09+0000\n"10"PO-Revision-Date: 2009-04-10 12:09+0000\n"
11"Last-Translator: Kęstutis Biliūnas <Unknown>\n"11"Last-Translator: Kęstutis Biliūnas <Unknown>\n"
12"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"12"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "Sveiki!"62msgstr "Sveiki!"
6163
@@ -1130,6 +1132,48 @@
1130msgid "Applying configuration"1132msgid "Applying configuration"
1131msgstr ""1133msgstr ""
11321134
1135#. Type: text
1136#. Description
1137#: ../ubiquity.templates:159001
1138msgid "Timezone"
1139msgstr ""
1140
1141#. Type: text
1142#. Description
1143#: ../ubiquity.templates:160001
1144#, fuzzy
1145#| msgid "Keyboard layout"
1146msgid "Keyboard"
1147msgstr "Klaviatūros išdėstymas"
1148
1149#. Type: text
1150#. Description
1151#: ../ubiquity.templates:161001
1152#, fuzzy
1153#| msgid "New partition"
1154msgid "Partition"
1155msgstr "Naujas skirsnis"
1156
1157#. Type: text
1158#. Description
1159#: ../ubiquity.templates:162001
1160msgid "User Info"
1161msgstr ""
1162
1163#. Type: text
1164#. Description
1165#: ../ubiquity.templates:163001
1166msgid "Summary"
1167msgstr ""
1168
1169#. Type: text
1170#. Description
1171#: ../ubiquity.templates:164001
1172#, fuzzy
1173#| msgid "Install"
1174msgid "Installing"
1175msgstr "Linux sistemos įdiegimas"
1176
1133#. Type: note1177#. Type: note
1134#. Description1178#. Description
1135#: ../ubiquity-frontend-mythbuntu.templates:10011179#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1371,8 +1415,5 @@
1371msgid "Configuring infrared devices..."1415msgid "Configuring infrared devices..."
1372msgstr ""1416msgstr ""
13731417
1374#~ msgid "New partition"
1375#~ msgstr "Naujas skirsnis"
1376
1377#~ msgid "Delete partition"1418#~ msgid "Delete partition"
1378#~ msgstr "Pašalinti skirsnį"1419#~ msgstr "Pašalinti skirsnį"
13791420
=== modified file 'debian/po/lv.po'
--- debian/po/lv.po 2009-07-14 13:14:35 +0000
+++ debian/po/lv.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-09 20:11+0000\n"10"PO-Revision-Date: 2009-04-09 20:11+0000\n"
11"Last-Translator: Peteris Krisjanis <pecisk@gmail.com>\n"11"Last-Translator: Peteris Krisjanis <pecisk@gmail.com>\n"
12"Language-Team: Latvian <locale@laka.lv>\n"12"Language-Team: Latvian <locale@laka.lv>\n"
@@ -58,7 +58,9 @@
5858
59#. Type: text59#. Type: text
60#. Description60#. Description
61#: ../ubiquity.templates:900161#. Type: text
62#. Description
63#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
62msgid "Welcome"64msgid "Welcome"
63msgstr "Esiet sveicināti!"65msgstr "Esiet sveicināti!"
6466
@@ -1149,6 +1151,48 @@
1149msgid "Applying configuration"1151msgid "Applying configuration"
1150msgstr ""1152msgstr ""
11511153
1154#. Type: text
1155#. Description
1156#: ../ubiquity.templates:159001
1157msgid "Timezone"
1158msgstr ""
1159
1160#. Type: text
1161#. Description
1162#: ../ubiquity.templates:160001
1163#, fuzzy
1164#| msgid "Keyboard layout"
1165msgid "Keyboard"
1166msgstr "Tastatūras izkārtojums"
1167
1168#. Type: text
1169#. Description
1170#: ../ubiquity.templates:161001
1171#, fuzzy
1172#| msgid "New partition"
1173msgid "Partition"
1174msgstr "Jauna sadaļa"
1175
1176#. Type: text
1177#. Description
1178#: ../ubiquity.templates:162001
1179msgid "User Info"
1180msgstr ""
1181
1182#. Type: text
1183#. Description
1184#: ../ubiquity.templates:163001
1185msgid "Summary"
1186msgstr ""
1187
1188#. Type: text
1189#. Description
1190#: ../ubiquity.templates:164001
1191#, fuzzy
1192#| msgid "Install"
1193msgid "Installing"
1194msgstr "Instalēšana"
1195
1152#. Type: note1196#. Type: note
1153#. Description1197#. Description
1154#: ../ubiquity-frontend-mythbuntu.templates:10011198#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1421,8 +1465,5 @@
1421#~ msgid "Select your time zone from the map, or by region and city."1465#~ msgid "Select your time zone from the map, or by region and city."
1422#~ msgstr "Izvēlieties savu laika joslu kartē, vai norādot reģionu un pilsētu."1466#~ msgstr "Izvēlieties savu laika joslu kartē, vai norādot reģionu un pilsētu."
14231467
1424#~ msgid "New partition"
1425#~ msgstr "Jauna sadaļa"
1426
1427#~ msgid "Delete partition"1468#~ msgid "Delete partition"
1428#~ msgstr "Dzēst sadaļu"1469#~ msgstr "Dzēst sadaļu"
14291470
=== modified file 'debian/po/mg.po'
--- debian/po/mg.po 2009-07-14 13:14:35 +0000
+++ debian/po/mg.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2007-07-11 19:58+0000\n"10"PO-Revision-Date: 2007-07-11 19:58+0000\n"
11"Last-Translator: Jaonary <jaonary@free.fr>\n"11"Last-Translator: Jaonary <jaonary@free.fr>\n"
12"Language-Team: Malagasy <jaonary@free.fr>\n"12"Language-Team: Malagasy <jaonary@free.fr>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr ""62msgstr ""
6163
@@ -1069,6 +1071,42 @@
1069msgid "Applying configuration"1071msgid "Applying configuration"
1070msgstr ""1072msgstr ""
10711073
1074#. Type: text
1075#. Description
1076#: ../ubiquity.templates:159001
1077msgid "Timezone"
1078msgstr ""
1079
1080#. Type: text
1081#. Description
1082#: ../ubiquity.templates:160001
1083msgid "Keyboard"
1084msgstr ""
1085
1086#. Type: text
1087#. Description
1088#: ../ubiquity.templates:161001
1089msgid "Partition"
1090msgstr ""
1091
1092#. Type: text
1093#. Description
1094#: ../ubiquity.templates:162001
1095msgid "User Info"
1096msgstr ""
1097
1098#. Type: text
1099#. Description
1100#: ../ubiquity.templates:163001
1101msgid "Summary"
1102msgstr ""
1103
1104#. Type: text
1105#. Description
1106#: ../ubiquity.templates:164001
1107msgid "Installing"
1108msgstr ""
1109
1072#. Type: note1110#. Type: note
1073#. Description1111#. Description
1074#: ../ubiquity-frontend-mythbuntu.templates:10011112#: ../ubiquity-frontend-mythbuntu.templates:1001
10751113
=== modified file 'debian/po/mk.po'
--- debian/po/mk.po 2009-07-14 13:14:35 +0000
+++ debian/po/mk.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:10+0000\n"10"PO-Revision-Date: 2009-04-10 12:10+0000\n"
11"Last-Translator: Арангел Ангов <ufo@linux.net.mk>\n"11"Last-Translator: Арангел Ангов <ufo@linux.net.mk>\n"
12"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"12"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "Добредојдовте"62msgstr "Добредојдовте"
6163
@@ -1123,6 +1125,48 @@
1123msgid "Applying configuration"1125msgid "Applying configuration"
1124msgstr ""1126msgstr ""
11251127
1128#. Type: text
1129#. Description
1130#: ../ubiquity.templates:159001
1131msgid "Timezone"
1132msgstr ""
1133
1134#. Type: text
1135#. Description
1136#: ../ubiquity.templates:160001
1137#, fuzzy
1138#| msgid "Keyboard layout"
1139msgid "Keyboard"
1140msgstr "Распоред на тастатура"
1141
1142#. Type: text
1143#. Description
1144#: ../ubiquity.templates:161001
1145#, fuzzy
1146#| msgid "Edit partition"
1147msgid "Partition"
1148msgstr "Уреди партиција"
1149
1150#. Type: text
1151#. Description
1152#: ../ubiquity.templates:162001
1153msgid "User Info"
1154msgstr ""
1155
1156#. Type: text
1157#. Description
1158#: ../ubiquity.templates:163001
1159msgid "Summary"
1160msgstr ""
1161
1162#. Type: text
1163#. Description
1164#: ../ubiquity.templates:164001
1165#, fuzzy
1166#| msgid "Install"
1167msgid "Installing"
1168msgstr "Инсталирај"
1169
1126#. Type: note1170#. Type: note
1127#. Description1171#. Description
1128#: ../ubiquity-frontend-mythbuntu.templates:10011172#: ../ubiquity-frontend-mythbuntu.templates:1001
11291173
=== modified file 'debian/po/ml.po'
--- debian/po/ml.po 2009-07-14 13:14:35 +0000
+++ debian/po/ml.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:10+0000\n"10"PO-Revision-Date: 2009-04-10 12:10+0000\n"
11"Last-Translator: Praveen A <Unknown>\n"11"Last-Translator: Praveen A <Unknown>\n"
12"Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് <smc-"12"Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് <smc-"
@@ -56,7 +56,9 @@
5656
57#. Type: text57#. Type: text
58#. Description58#. Description
59#: ../ubiquity.templates:900159#. Type: text
60#. Description
61#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
60msgid "Welcome"62msgid "Welcome"
61msgstr "സ്വാഗതം"63msgstr "സ്വാഗതം"
6264
@@ -1091,6 +1093,48 @@
1091msgid "Applying configuration"1093msgid "Applying configuration"
1092msgstr ""1094msgstr ""
10931095
1096#. Type: text
1097#. Description
1098#: ../ubiquity.templates:159001
1099msgid "Timezone"
1100msgstr ""
1101
1102#. Type: text
1103#. Description
1104#: ../ubiquity.templates:160001
1105#, fuzzy
1106#| msgid "Keyboard layout"
1107msgid "Keyboard"
1108msgstr "കീബോര്‍ഡ് ലേയൌട്ട്"
1109
1110#. Type: text
1111#. Description
1112#: ../ubiquity.templates:161001
1113#, fuzzy
1114#| msgid "Prepare partitions"
1115msgid "Partition"
1116msgstr "പാര്‍ട്ടീഷനുകള്‍ തയ്യാറാക്കുക"
1117
1118#. Type: text
1119#. Description
1120#: ../ubiquity.templates:162001
1121msgid "User Info"
1122msgstr ""
1123
1124#. Type: text
1125#. Description
1126#: ../ubiquity.templates:163001
1127msgid "Summary"
1128msgstr ""
1129
1130#. Type: text
1131#. Description
1132#: ../ubiquity.templates:164001
1133#, fuzzy
1134#| msgid "Install"
1135msgid "Installing"
1136msgstr "ഇന്‍സ്റ്റാള്‍"
1137
1094#. Type: note1138#. Type: note
1095#. Description1139#. Description
1096#: ../ubiquity-frontend-mythbuntu.templates:10011140#: ../ubiquity-frontend-mythbuntu.templates:1001
10971141
=== modified file 'debian/po/mr.po'
--- debian/po/mr.po 2009-07-14 13:14:35 +0000
+++ debian/po/mr.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:10+0000\n"10"PO-Revision-Date: 2009-04-10 12:10+0000\n"
11"Last-Translator: Sampada <Unknown>\n"11"Last-Translator: Sampada <Unknown>\n"
12"Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India "12"Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India "
@@ -56,7 +56,9 @@
5656
57#. Type: text57#. Type: text
58#. Description58#. Description
59#: ../ubiquity.templates:900159#. Type: text
60#. Description
61#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
60msgid "Welcome"62msgid "Welcome"
61msgstr "सुस्वागतम्"63msgstr "सुस्वागतम्"
6264
@@ -1081,6 +1083,48 @@
1081msgid "Applying configuration"1083msgid "Applying configuration"
1082msgstr ""1084msgstr ""
10831085
1086#. Type: text
1087#. Description
1088#: ../ubiquity.templates:159001
1089msgid "Timezone"
1090msgstr ""
1091
1092#. Type: text
1093#. Description
1094#: ../ubiquity.templates:160001
1095#, fuzzy
1096#| msgid "Keyboard layout"
1097msgid "Keyboard"
1098msgstr "कळपट्टी प्रकार"
1099
1100#. Type: text
1101#. Description
1102#: ../ubiquity.templates:161001
1103#, fuzzy
1104#| msgid "Prepare partitions"
1105msgid "Partition"
1106msgstr "विभाग तयार करा"
1107
1108#. Type: text
1109#. Description
1110#: ../ubiquity.templates:162001
1111msgid "User Info"
1112msgstr ""
1113
1114#. Type: text
1115#. Description
1116#: ../ubiquity.templates:163001
1117msgid "Summary"
1118msgstr ""
1119
1120#. Type: text
1121#. Description
1122#: ../ubiquity.templates:164001
1123#, fuzzy
1124#| msgid "Install"
1125msgid "Installing"
1126msgstr "इन्स्टाल करा"
1127
1084#. Type: note1128#. Type: note
1085#. Description1129#. Description
1086#: ../ubiquity-frontend-mythbuntu.templates:10011130#: ../ubiquity-frontend-mythbuntu.templates:1001
10871131
=== modified file 'debian/po/ms.po'
--- debian/po/ms.po 2009-07-14 13:14:35 +0000
+++ debian/po/ms.po 2009-07-28 15:35:01 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: debian-installer\n"8"Project-Id-Version: debian-installer\n"
9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"9"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
10"POT-Creation-Date: 2009-07-14 09:12-0400\n"10"POT-Creation-Date: 2009-07-28 11:27-0400\n"
11"PO-Revision-Date: 2009-04-14 06:10+0000\n"11"PO-Revision-Date: 2009-04-14 06:10+0000\n"
12"Last-Translator: dequan <mridzuanm@gmail.com>\n"12"Last-Translator: dequan <mridzuanm@gmail.com>\n"
13"Language-Team: Malay <ms@li.org>\n"13"Language-Team: Malay <ms@li.org>\n"
@@ -58,7 +58,9 @@
5858
59#. Type: text59#. Type: text
60#. Description60#. Description
61#: ../ubiquity.templates:900161#. Type: text
62#. Description
63#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
62msgid "Welcome"64msgid "Welcome"
63msgstr "Selamat Datang"65msgstr "Selamat Datang"
6466
@@ -1161,6 +1163,48 @@
1161msgid "Applying configuration"1163msgid "Applying configuration"
1162msgstr ""1164msgstr ""
11631165
1166#. Type: text
1167#. Description
1168#: ../ubiquity.templates:159001
1169msgid "Timezone"
1170msgstr ""
1171
1172#. Type: text
1173#. Description
1174#: ../ubiquity.templates:160001
1175#, fuzzy
1176#| msgid "Keyboard layout"
1177msgid "Keyboard"
1178msgstr "Susunatur papan kekunci"
1179
1180#. Type: text
1181#. Description
1182#: ../ubiquity.templates:161001
1183#, fuzzy
1184#| msgid "New partition"
1185msgid "Partition"
1186msgstr "Pembahagian baru"
1187
1188#. Type: text
1189#. Description
1190#: ../ubiquity.templates:162001
1191msgid "User Info"
1192msgstr ""
1193
1194#. Type: text
1195#. Description
1196#: ../ubiquity.templates:163001
1197msgid "Summary"
1198msgstr ""
1199
1200#. Type: text
1201#. Description
1202#: ../ubiquity.templates:164001
1203#, fuzzy
1204#| msgid "Install"
1205msgid "Installing"
1206msgstr "Pasang"
1207
1164#. Type: note1208#. Type: note
1165#. Description1209#. Description
1166#: ../ubiquity-frontend-mythbuntu.templates:10011210#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1437,8 +1481,5 @@
1437#~ msgid "Select your time zone from the map, or by region and city."1481#~ msgid "Select your time zone from the map, or by region and city."
1438#~ msgstr "Pilih zon masa anda dari peta, atau dari kawasan dan bandar."1482#~ msgstr "Pilih zon masa anda dari peta, atau dari kawasan dan bandar."
14391483
1440#~ msgid "New partition"
1441#~ msgstr "Pembahagian baru"
1442
1443#~ msgid "Delete partition"1484#~ msgid "Delete partition"
1444#~ msgstr "Buang pembahagian"1485#~ msgstr "Buang pembahagian"
14451486
=== modified file 'debian/po/nb.po'
--- debian/po/nb.po 2009-07-14 13:14:35 +0000
+++ debian/po/nb.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:10+0000\n"10"PO-Revision-Date: 2009-04-10 12:10+0000\n"
11"Last-Translator: Hans Fredrik Nordhaug <hans@nordhaug.priv.no>\n"11"Last-Translator: Hans Fredrik Nordhaug <hans@nordhaug.priv.no>\n"
12"Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n"12"Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "Velkommen"62msgstr "Velkommen"
6163
@@ -1148,6 +1150,48 @@
1148msgid "Applying configuration"1150msgid "Applying configuration"
1149msgstr ""1151msgstr ""
11501152
1153#. Type: text
1154#. Description
1155#: ../ubiquity.templates:159001
1156msgid "Timezone"
1157msgstr ""
1158
1159#. Type: text
1160#. Description
1161#: ../ubiquity.templates:160001
1162#, fuzzy
1163#| msgid "Keyboard layout"
1164msgid "Keyboard"
1165msgstr "Tastaturutforming"
1166
1167#. Type: text
1168#. Description
1169#: ../ubiquity.templates:161001
1170#, fuzzy
1171#| msgid "New partition"
1172msgid "Partition"
1173msgstr "Ny partisjon"
1174
1175#. Type: text
1176#. Description
1177#: ../ubiquity.templates:162001
1178msgid "User Info"
1179msgstr ""
1180
1181#. Type: text
1182#. Description
1183#: ../ubiquity.templates:163001
1184msgid "Summary"
1185msgstr ""
1186
1187#. Type: text
1188#. Description
1189#: ../ubiquity.templates:164001
1190#, fuzzy
1191#| msgid "Install"
1192msgid "Installing"
1193msgstr "Installer"
1194
1151#. Type: note1195#. Type: note
1152#. Description1196#. Description
1153#: ../ubiquity-frontend-mythbuntu.templates:10011197#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1408,8 +1452,5 @@
1408msgid "Configuring infrared devices..."1452msgid "Configuring infrared devices..."
1409msgstr "Konfigurerer infrarøde enheter..."1453msgstr "Konfigurerer infrarøde enheter..."
14101454
1411#~ msgid "New partition"
1412#~ msgstr "Ny partisjon"
1413
1414#~ msgid "Delete partition"1455#~ msgid "Delete partition"
1415#~ msgstr "Slett partisjon"1456#~ msgstr "Slett partisjon"
14161457
=== modified file 'debian/po/ne.po'
--- debian/po/ne.po 2009-07-14 13:14:35 +0000
+++ debian/po/ne.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:10+0000\n"10"PO-Revision-Date: 2009-04-10 12:10+0000\n"
11"Last-Translator: Shiva Pokharel <shiva@mpp.org.np>\n"11"Last-Translator: Shiva Pokharel <shiva@mpp.org.np>\n"
12"Language-Team: Nepali <info@mpp.org.np>\n"12"Language-Team: Nepali <info@mpp.org.np>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "स्वागतम"62msgstr "स्वागतम"
6163
@@ -1072,6 +1074,44 @@
1072msgid "Applying configuration"1074msgid "Applying configuration"
1073msgstr ""1075msgstr ""
10741076
1077#. Type: text
1078#. Description
1079#: ../ubiquity.templates:159001
1080msgid "Timezone"
1081msgstr ""
1082
1083#. Type: text
1084#. Description
1085#: ../ubiquity.templates:160001
1086msgid "Keyboard"
1087msgstr ""
1088
1089#. Type: text
1090#. Description
1091#: ../ubiquity.templates:161001
1092msgid "Partition"
1093msgstr ""
1094
1095#. Type: text
1096#. Description
1097#: ../ubiquity.templates:162001
1098msgid "User Info"
1099msgstr ""
1100
1101#. Type: text
1102#. Description
1103#: ../ubiquity.templates:163001
1104msgid "Summary"
1105msgstr ""
1106
1107#. Type: text
1108#. Description
1109#: ../ubiquity.templates:164001
1110#, fuzzy
1111#| msgid "Install"
1112msgid "Installing"
1113msgstr "स्थापना गर्नुहोस्"
1114
1075#. Type: note1115#. Type: note
1076#. Description1116#. Description
1077#: ../ubiquity-frontend-mythbuntu.templates:10011117#: ../ubiquity-frontend-mythbuntu.templates:1001
10781118
=== modified file 'debian/po/nl.po'
--- debian/po/nl.po 2009-07-14 13:14:35 +0000
+++ debian/po/nl.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:10+0000\n"10"PO-Revision-Date: 2009-04-10 12:10+0000\n"
11"Last-Translator: Frans Pop <Unknown>\n"11"Last-Translator: Frans Pop <Unknown>\n"
12"Language-Team: Dutch <debian-l10n-dutch@lists.debian.org>\n"12"Language-Team: Dutch <debian-l10n-dutch@lists.debian.org>\n"
@@ -58,7 +58,9 @@
5858
59#. Type: text59#. Type: text
60#. Description60#. Description
61#: ../ubiquity.templates:900161#. Type: text
62#. Description
63#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
62msgid "Welcome"64msgid "Welcome"
63msgstr "Welkom"65msgstr "Welkom"
6466
@@ -1167,6 +1169,48 @@
1167msgid "Applying configuration"1169msgid "Applying configuration"
1168msgstr ""1170msgstr ""
11691171
1172#. Type: text
1173#. Description
1174#: ../ubiquity.templates:159001
1175msgid "Timezone"
1176msgstr ""
1177
1178#. Type: text
1179#. Description
1180#: ../ubiquity.templates:160001
1181#, fuzzy
1182#| msgid "Keyboard layout"
1183msgid "Keyboard"
1184msgstr "Toetsenbordindeling"
1185
1186#. Type: text
1187#. Description
1188#: ../ubiquity.templates:161001
1189#, fuzzy
1190#| msgid "New partition"
1191msgid "Partition"
1192msgstr "Nieuwe partitie"
1193
1194#. Type: text
1195#. Description
1196#: ../ubiquity.templates:162001
1197msgid "User Info"
1198msgstr ""
1199
1200#. Type: text
1201#. Description
1202#: ../ubiquity.templates:163001
1203msgid "Summary"
1204msgstr ""
1205
1206#. Type: text
1207#. Description
1208#: ../ubiquity.templates:164001
1209#, fuzzy
1210#| msgid "Install"
1211msgid "Installing"
1212msgstr "Installeren"
1213
1170#. Type: note1214#. Type: note
1171#. Description1215#. Description
1172#: ../ubiquity-frontend-mythbuntu.templates:10011216#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1435,8 +1479,5 @@
1435#~ msgid "Select your time zone from the map, or by region and city."1479#~ msgid "Select your time zone from the map, or by region and city."
1436#~ msgstr "Kies uw tijdzone met de kaart, per regio of per stad."1480#~ msgstr "Kies uw tijdzone met de kaart, per regio of per stad."
14371481
1438#~ msgid "New partition"
1439#~ msgstr "Nieuwe partitie"
1440
1441#~ msgid "Delete partition"1482#~ msgid "Delete partition"
1442#~ msgstr "Partitie verwijderen"1483#~ msgstr "Partitie verwijderen"
14431484
=== modified file 'debian/po/nn.po'
--- debian/po/nn.po 2009-07-14 13:14:35 +0000
+++ debian/po/nn.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:10+0000\n"10"PO-Revision-Date: 2009-04-10 12:10+0000\n"
11"Last-Translator: Håvard Korsvoll <korsvoll@skulelinux.no>\n"11"Last-Translator: Håvard Korsvoll <korsvoll@skulelinux.no>\n"
12"Language-Team: Norwegian nynorsk <i18n-nn@lister.ping.uio.no>\n"12"Language-Team: Norwegian nynorsk <i18n-nn@lister.ping.uio.no>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "Velkomen"62msgstr "Velkomen"
6163
@@ -1129,6 +1131,48 @@
1129msgid "Applying configuration"1131msgid "Applying configuration"
1130msgstr ""1132msgstr ""
11311133
1134#. Type: text
1135#. Description
1136#: ../ubiquity.templates:159001
1137msgid "Timezone"
1138msgstr ""
1139
1140#. Type: text
1141#. Description
1142#: ../ubiquity.templates:160001
1143#, fuzzy
1144#| msgid "Keyboard layout"
1145msgid "Keyboard"
1146msgstr "Tastaturutforming"
1147
1148#. Type: text
1149#. Description
1150#: ../ubiquity.templates:161001
1151#, fuzzy
1152#| msgid "New partition"
1153msgid "Partition"
1154msgstr "Ny partisjon"
1155
1156#. Type: text
1157#. Description
1158#: ../ubiquity.templates:162001
1159msgid "User Info"
1160msgstr ""
1161
1162#. Type: text
1163#. Description
1164#: ../ubiquity.templates:163001
1165msgid "Summary"
1166msgstr ""
1167
1168#. Type: text
1169#. Description
1170#: ../ubiquity.templates:164001
1171#, fuzzy
1172#| msgid "Install"
1173msgid "Installing"
1174msgstr "Installér"
1175
1132#. Type: note1176#. Type: note
1133#. Description1177#. Description
1134#: ../ubiquity-frontend-mythbuntu.templates:10011178#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1390,8 +1434,5 @@
1390msgid "Configuring infrared devices..."1434msgid "Configuring infrared devices..."
1391msgstr "Konfigurerer infraraude einheiter..."1435msgstr "Konfigurerer infraraude einheiter..."
13921436
1393#~ msgid "New partition"
1394#~ msgstr "Ny partisjon"
1395
1396#~ msgid "Delete partition"1437#~ msgid "Delete partition"
1397#~ msgstr "Slett partisjon"1438#~ msgstr "Slett partisjon"
13981439
=== modified file 'debian/po/oc.po'
--- debian/po/oc.po 2009-07-14 13:14:35 +0000
+++ debian/po/oc.po 2009-07-28 15:35:01 +0000
@@ -9,7 +9,7 @@
9msgstr ""9msgstr ""
10"Project-Id-Version: debian-installer\n"10"Project-Id-Version: debian-installer\n"
11"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"11"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
12"POT-Creation-Date: 2009-07-14 09:12-0400\n"12"POT-Creation-Date: 2009-07-28 11:27-0400\n"
13"PO-Revision-Date: 2008-11-29 20:21+0000\n"13"PO-Revision-Date: 2008-11-29 20:21+0000\n"
14"Last-Translator: Yannig MARCHEGAY (Kokoyaya) <yannig@marchegay.org>\n"14"Last-Translator: Yannig MARCHEGAY (Kokoyaya) <yannig@marchegay.org>\n"
15"Language-Team: Occitan (post 1500) <ubuntu-l10n-oci@lists.ubuntu.com>\n"15"Language-Team: Occitan (post 1500) <ubuntu-l10n-oci@lists.ubuntu.com>\n"
@@ -58,7 +58,9 @@
5858
59#. Type: text59#. Type: text
60#. Description60#. Description
61#: ../ubiquity.templates:900161#. Type: text
62#. Description
63#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
62msgid "Welcome"64msgid "Welcome"
63msgstr "Planvenguda"65msgstr "Planvenguda"
6466
@@ -1145,6 +1147,48 @@
1145msgid "Applying configuration"1147msgid "Applying configuration"
1146msgstr ""1148msgstr ""
11471149
1150#. Type: text
1151#. Description
1152#: ../ubiquity.templates:159001
1153msgid "Timezone"
1154msgstr ""
1155
1156#. Type: text
1157#. Description
1158#: ../ubiquity.templates:160001
1159#, fuzzy
1160#| msgid "Keyboard layout"
1161msgid "Keyboard"
1162msgstr "Disposicion del clavièr"
1163
1164#. Type: text
1165#. Description
1166#: ../ubiquity.templates:161001
1167#, fuzzy
1168#| msgid "New partition"
1169msgid "Partition"
1170msgstr "Particion novèla"
1171
1172#. Type: text
1173#. Description
1174#: ../ubiquity.templates:162001
1175msgid "User Info"
1176msgstr ""
1177
1178#. Type: text
1179#. Description
1180#: ../ubiquity.templates:163001
1181msgid "Summary"
1182msgstr ""
1183
1184#. Type: text
1185#. Description
1186#: ../ubiquity.templates:164001
1187#, fuzzy
1188#| msgid "Install"
1189msgid "Installing"
1190msgstr "Installar"
1191
1148#. Type: note1192#. Type: note
1149#. Description1193#. Description
1150#: ../ubiquity-frontend-mythbuntu.templates:10011194#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1413,8 +1457,5 @@
1413msgid "Configuring infrared devices..."1457msgid "Configuring infrared devices..."
1414msgstr "Configuracion dels periferics infraroges..."1458msgstr "Configuracion dels periferics infraroges..."
14151459
1416#~ msgid "New partition"
1417#~ msgstr "Particion novèla"
1418
1419#~ msgid "Delete partition"1460#~ msgid "Delete partition"
1420#~ msgstr "Suprimir la particion"1461#~ msgstr "Suprimir la particion"
14211462
=== modified file 'debian/po/pa.po'
--- debian/po/pa.po 2009-07-14 13:14:35 +0000
+++ debian/po/pa.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:11+0000\n"10"PO-Revision-Date: 2009-04-10 12:11+0000\n"
11"Last-Translator: A S Alam <aalam@users.sf.net>\n"11"Last-Translator: A S Alam <aalam@users.sf.net>\n"
12"Language-Team: Punjabi/Panjabi <punjabi-users@lists.sf.net>\n"12"Language-Team: Punjabi/Panjabi <punjabi-users@lists.sf.net>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "ਜੀ ਆਇਆਂ ਨੂੰ"62msgstr "ਜੀ ਆਇਆਂ ਨੂੰ"
6163
@@ -1090,6 +1092,44 @@
1090msgid "Applying configuration"1092msgid "Applying configuration"
1091msgstr ""1093msgstr ""
10921094
1095#. Type: text
1096#. Description
1097#: ../ubiquity.templates:159001
1098msgid "Timezone"
1099msgstr ""
1100
1101#. Type: text
1102#. Description
1103#: ../ubiquity.templates:160001
1104msgid "Keyboard"
1105msgstr ""
1106
1107#. Type: text
1108#. Description
1109#: ../ubiquity.templates:161001
1110msgid "Partition"
1111msgstr ""
1112
1113#. Type: text
1114#. Description
1115#: ../ubiquity.templates:162001
1116msgid "User Info"
1117msgstr ""
1118
1119#. Type: text
1120#. Description
1121#: ../ubiquity.templates:163001
1122msgid "Summary"
1123msgstr ""
1124
1125#. Type: text
1126#. Description
1127#: ../ubiquity.templates:164001
1128#, fuzzy
1129#| msgid "Install"
1130msgid "Installing"
1131msgstr "ਇੰਸਟਾਲ"
1132
1093#. Type: note1133#. Type: note
1094#. Description1134#. Description
1095#: ../ubiquity-frontend-mythbuntu.templates:10011135#: ../ubiquity-frontend-mythbuntu.templates:1001
10961136
=== modified file 'debian/po/pl.po'
--- debian/po/pl.po 2009-07-14 13:14:35 +0000
+++ debian/po/pl.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:11+0000\n"10"PO-Revision-Date: 2009-04-10 12:11+0000\n"
11"Last-Translator: Bartosz Fenski <fenio@debian.org>\n"11"Last-Translator: Bartosz Fenski <fenio@debian.org>\n"
12"Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n"12"Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n"
@@ -58,7 +58,9 @@
5858
59#. Type: text59#. Type: text
60#. Description60#. Description
61#: ../ubiquity.templates:900161#. Type: text
62#. Description
63#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
62msgid "Welcome"64msgid "Welcome"
63msgstr "Witamy"65msgstr "Witamy"
6466
@@ -1151,6 +1153,48 @@
1151msgid "Applying configuration"1153msgid "Applying configuration"
1152msgstr ""1154msgstr ""
11531155
1156#. Type: text
1157#. Description
1158#: ../ubiquity.templates:159001
1159msgid "Timezone"
1160msgstr ""
1161
1162#. Type: text
1163#. Description
1164#: ../ubiquity.templates:160001
1165#, fuzzy
1166#| msgid "Keyboard layout"
1167msgid "Keyboard"
1168msgstr "Układ klawiatury"
1169
1170#. Type: text
1171#. Description
1172#: ../ubiquity.templates:161001
1173#, fuzzy
1174#| msgid "New partition"
1175msgid "Partition"
1176msgstr "Nowa partycja"
1177
1178#. Type: text
1179#. Description
1180#: ../ubiquity.templates:162001
1181msgid "User Info"
1182msgstr ""
1183
1184#. Type: text
1185#. Description
1186#: ../ubiquity.templates:163001
1187msgid "Summary"
1188msgstr ""
1189
1190#. Type: text
1191#. Description
1192#: ../ubiquity.templates:164001
1193#, fuzzy
1194#| msgid "Install"
1195msgid "Installing"
1196msgstr "Instalacja"
1197
1154#. Type: note1198#. Type: note
1155#. Description1199#. Description
1156#: ../ubiquity-frontend-mythbuntu.templates:10011200#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1431,8 +1475,5 @@
1431#~ msgid "Select your time zone from the map, or by region and city."1475#~ msgid "Select your time zone from the map, or by region and city."
1432#~ msgstr "Proszę wybrać strefę czasową z mapy lub przez region i miasto."1476#~ msgstr "Proszę wybrać strefę czasową z mapy lub przez region i miasto."
14331477
1434#~ msgid "New partition"
1435#~ msgstr "Nowa partycja"
1436
1437#~ msgid "Delete partition"1478#~ msgid "Delete partition"
1438#~ msgstr "Usuń partycję"1479#~ msgstr "Usuń partycję"
14391480
=== modified file 'debian/po/pt.po'
--- debian/po/pt.po 2009-07-14 13:14:35 +0000
+++ debian/po/pt.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-11 12:28+0000\n"10"PO-Revision-Date: 2009-04-11 12:28+0000\n"
11"Last-Translator: Paulo Dias <paxnubis@gmail.com>\n"11"Last-Translator: Paulo Dias <paxnubis@gmail.com>\n"
12"Language-Team: Portuguese <traduz@debianpt.org>\n"12"Language-Team: Portuguese <traduz@debianpt.org>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "Bem-Vindo"64msgstr "Bem-Vindo"
6365
@@ -1160,6 +1162,48 @@
1160msgid "Applying configuration"1162msgid "Applying configuration"
1161msgstr ""1163msgstr ""
11621164
1165#. Type: text
1166#. Description
1167#: ../ubiquity.templates:159001
1168msgid "Timezone"
1169msgstr ""
1170
1171#. Type: text
1172#. Description
1173#: ../ubiquity.templates:160001
1174#, fuzzy
1175#| msgid "Keyboard layout"
1176msgid "Keyboard"
1177msgstr "Seleccionar a disposição do teclado"
1178
1179#. Type: text
1180#. Description
1181#: ../ubiquity.templates:161001
1182#, fuzzy
1183#| msgid "New partition"
1184msgid "Partition"
1185msgstr "Nova partição"
1186
1187#. Type: text
1188#. Description
1189#: ../ubiquity.templates:162001
1190msgid "User Info"
1191msgstr ""
1192
1193#. Type: text
1194#. Description
1195#: ../ubiquity.templates:163001
1196msgid "Summary"
1197msgstr ""
1198
1199#. Type: text
1200#. Description
1201#: ../ubiquity.templates:164001
1202#, fuzzy
1203#| msgid "Install"
1204msgid "Installing"
1205msgstr "Instalar"
1206
1163#. Type: note1207#. Type: note
1164#. Description1208#. Description
1165#: ../ubiquity-frontend-mythbuntu.templates:10011209#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1435,8 +1479,5 @@
1435#~ msgid "Select your time zone from the map, or by region and city."1479#~ msgid "Select your time zone from the map, or by region and city."
1436#~ msgstr "Seleccione a sua zona horária do mapa, ou por região e cidade."1480#~ msgstr "Seleccione a sua zona horária do mapa, ou por região e cidade."
14371481
1438#~ msgid "New partition"
1439#~ msgstr "Nova partição"
1440
1441#~ msgid "Delete partition"1482#~ msgid "Delete partition"
1442#~ msgstr "Apagar partição"1483#~ msgstr "Apagar partição"
14431484
=== modified file 'debian/po/pt_BR.po'
--- debian/po/pt_BR.po 2009-07-14 13:14:35 +0000
+++ debian/po/pt_BR.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-12 01:05+0000\n"10"PO-Revision-Date: 2009-04-12 01:05+0000\n"
11"Last-Translator: André Gondim <andregondim@ubuntu.com>\n"11"Last-Translator: André Gondim <andregondim@ubuntu.com>\n"
12"Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian."12"Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian."
@@ -58,7 +58,9 @@
5858
59#. Type: text59#. Type: text
60#. Description60#. Description
61#: ../ubiquity.templates:900161#. Type: text
62#. Description
63#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
62msgid "Welcome"64msgid "Welcome"
63msgstr "Bem Vindo"65msgstr "Bem Vindo"
6466
@@ -1163,6 +1165,48 @@
1163msgid "Applying configuration"1165msgid "Applying configuration"
1164msgstr ""1166msgstr ""
11651167
1168#. Type: text
1169#. Description
1170#: ../ubiquity.templates:159001
1171msgid "Timezone"
1172msgstr ""
1173
1174#. Type: text
1175#. Description
1176#: ../ubiquity.templates:160001
1177#, fuzzy
1178#| msgid "Keyboard layout"
1179msgid "Keyboard"
1180msgstr "Selecione um layout de teclado"
1181
1182#. Type: text
1183#. Description
1184#: ../ubiquity.templates:161001
1185#, fuzzy
1186#| msgid "New partition"
1187msgid "Partition"
1188msgstr "Nova partição"
1189
1190#. Type: text
1191#. Description
1192#: ../ubiquity.templates:162001
1193msgid "User Info"
1194msgstr ""
1195
1196#. Type: text
1197#. Description
1198#: ../ubiquity.templates:163001
1199msgid "Summary"
1200msgstr ""
1201
1202#. Type: text
1203#. Description
1204#: ../ubiquity.templates:164001
1205#, fuzzy
1206#| msgid "Install"
1207msgid "Installing"
1208msgstr "Instalar"
1209
1166#. Type: note1210#. Type: note
1167#. Description1211#. Description
1168#: ../ubiquity-frontend-mythbuntu.templates:10011212#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1439,8 +1483,5 @@
1439#~ msgid "Select your time zone from the map, or by region and city."1483#~ msgid "Select your time zone from the map, or by region and city."
1440#~ msgstr "Selecione seu fuso horário no mapa, ou região ou cidade"1484#~ msgstr "Selecione seu fuso horário no mapa, ou região ou cidade"
14411485
1442#~ msgid "New partition"
1443#~ msgstr "Nova partição"
1444
1445#~ msgid "Delete partition"1486#~ msgid "Delete partition"
1446#~ msgstr "Apagar partição"1487#~ msgstr "Apagar partição"
14471488
=== modified file 'debian/po/ro.po'
--- debian/po/ro.po 2009-07-14 13:14:35 +0000
+++ debian/po/ro.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-11 11:56+0000\n"10"PO-Revision-Date: 2009-04-11 11:56+0000\n"
11"Last-Translator: Adi Roiban <adi@roiban.ro>\n"11"Last-Translator: Adi Roiban <adi@roiban.ro>\n"
12"Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n"12"Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "Bine ați venit"64msgstr "Bine ați venit"
6365
@@ -1160,6 +1162,48 @@
1160msgid "Applying configuration"1162msgid "Applying configuration"
1161msgstr ""1163msgstr ""
11621164
1165#. Type: text
1166#. Description
1167#: ../ubiquity.templates:159001
1168msgid "Timezone"
1169msgstr ""
1170
1171#. Type: text
1172#. Description
1173#: ../ubiquity.templates:160001
1174#, fuzzy
1175#| msgid "Keyboard layout"
1176msgid "Keyboard"
1177msgstr "Aranjament tastatură"
1178
1179#. Type: text
1180#. Description
1181#: ../ubiquity.templates:161001
1182#, fuzzy
1183#| msgid "New partition"
1184msgid "Partition"
1185msgstr "Partiție nouă"
1186
1187#. Type: text
1188#. Description
1189#: ../ubiquity.templates:162001
1190msgid "User Info"
1191msgstr ""
1192
1193#. Type: text
1194#. Description
1195#: ../ubiquity.templates:163001
1196msgid "Summary"
1197msgstr ""
1198
1199#. Type: text
1200#. Description
1201#: ../ubiquity.templates:164001
1202#, fuzzy
1203#| msgid "Install"
1204msgid "Installing"
1205msgstr "Instalează"
1206
1163#. Type: note1207#. Type: note
1164#. Description1208#. Description
1165#: ../ubiquity-frontend-mythbuntu.templates:10011209#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1440,8 +1484,5 @@
1440#~ msgid "Select your time zone from the map, or by region and city."1484#~ msgid "Select your time zone from the map, or by region and city."
1441#~ msgstr "Alegeți fusul orar din hartă, sau după regiune și oraș."1485#~ msgstr "Alegeți fusul orar din hartă, sau după regiune și oraș."
14421486
1443#~ msgid "New partition"
1444#~ msgstr "Partiție nouă"
1445
1446#~ msgid "Delete partition"1487#~ msgid "Delete partition"
1447#~ msgstr "Șterge partiție"1488#~ msgstr "Șterge partiție"
14481489
=== modified file 'debian/po/ru.po'
--- debian/po/ru.po 2009-07-14 13:14:35 +0000
+++ debian/po/ru.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:11+0000\n"10"PO-Revision-Date: 2009-04-10 12:11+0000\n"
11"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n"11"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n"
12"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"12"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
@@ -57,7 +57,9 @@
5757
58#. Type: text58#. Type: text
59#. Description59#. Description
60#: ../ubiquity.templates:900160#. Type: text
61#. Description
62#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
61msgid "Welcome"63msgid "Welcome"
62msgstr "Добро пожаловать"64msgstr "Добро пожаловать"
6365
@@ -1154,6 +1156,48 @@
1154msgid "Applying configuration"1156msgid "Applying configuration"
1155msgstr ""1157msgstr ""
11561158
1159#. Type: text
1160#. Description
1161#: ../ubiquity.templates:159001
1162msgid "Timezone"
1163msgstr ""
1164
1165#. Type: text
1166#. Description
1167#: ../ubiquity.templates:160001
1168#, fuzzy
1169#| msgid "Keyboard layout"
1170msgid "Keyboard"
1171msgstr "Раскладка клавиатуры"
1172
1173#. Type: text
1174#. Description
1175#: ../ubiquity.templates:161001
1176#, fuzzy
1177#| msgid "New partition"
1178msgid "Partition"
1179msgstr "Новый раздел"
1180
1181#. Type: text
1182#. Description
1183#: ../ubiquity.templates:162001
1184msgid "User Info"
1185msgstr ""
1186
1187#. Type: text
1188#. Description
1189#: ../ubiquity.templates:163001
1190msgid "Summary"
1191msgstr ""
1192
1193#. Type: text
1194#. Description
1195#: ../ubiquity.templates:164001
1196#, fuzzy
1197#| msgid "Install"
1198msgid "Installing"
1199msgstr "Установка"
1200
1157#. Type: note1201#. Type: note
1158#. Description1202#. Description
1159#: ../ubiquity-frontend-mythbuntu.templates:10011203#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1432,8 +1476,5 @@
1432#~ msgid "Select your time zone from the map, or by region and city."1476#~ msgid "Select your time zone from the map, or by region and city."
1433#~ msgstr "Выберите часовой пояс на карте или по региону и городу."1477#~ msgstr "Выберите часовой пояс на карте или по региону и городу."
14341478
1435#~ msgid "New partition"
1436#~ msgstr "Новый раздел"
1437
1438#~ msgid "Delete partition"1479#~ msgid "Delete partition"
1439#~ msgstr "Удалить раздел"1480#~ msgstr "Удалить раздел"
14401481
=== modified file 'debian/po/se.po'
--- debian/po/se.po 2009-07-14 13:14:35 +0000
+++ debian/po/se.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:11+0000\n"10"PO-Revision-Date: 2009-04-10 12:11+0000\n"
11"Last-Translator: Børre Gaup <boerre@skolelinux.no>\n"11"Last-Translator: Børre Gaup <boerre@skolelinux.no>\n"
12"Language-Team: Northern Saami <i18n-sme@lister.ping.uio.no>\n"12"Language-Team: Northern Saami <i18n-sme@lister.ping.uio.no>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr ""62msgstr ""
6163
@@ -1069,6 +1071,42 @@
1069msgid "Applying configuration"1071msgid "Applying configuration"
1070msgstr ""1072msgstr ""
10711073
1074#. Type: text
1075#. Description
1076#: ../ubiquity.templates:159001
1077msgid "Timezone"
1078msgstr ""
1079
1080#. Type: text
1081#. Description
1082#: ../ubiquity.templates:160001
1083msgid "Keyboard"
1084msgstr ""
1085
1086#. Type: text
1087#. Description
1088#: ../ubiquity.templates:161001
1089msgid "Partition"
1090msgstr ""
1091
1092#. Type: text
1093#. Description
1094#: ../ubiquity.templates:162001
1095msgid "User Info"
1096msgstr ""
1097
1098#. Type: text
1099#. Description
1100#: ../ubiquity.templates:163001
1101msgid "Summary"
1102msgstr ""
1103
1104#. Type: text
1105#. Description
1106#: ../ubiquity.templates:164001
1107msgid "Installing"
1108msgstr ""
1109
1072#. Type: note1110#. Type: note
1073#. Description1111#. Description
1074#: ../ubiquity-frontend-mythbuntu.templates:10011112#: ../ubiquity-frontend-mythbuntu.templates:1001
10751113
=== modified file 'debian/po/sk.po'
--- debian/po/sk.po 2009-07-14 13:14:35 +0000
+++ debian/po/sk.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:11+0000\n"10"PO-Revision-Date: 2009-04-10 12:11+0000\n"
11"Last-Translator: helix84 <Unknown>\n"11"Last-Translator: helix84 <Unknown>\n"
12"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"12"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "Vitajte"62msgstr "Vitajte"
6163
@@ -1147,6 +1149,48 @@
1147msgid "Applying configuration"1149msgid "Applying configuration"
1148msgstr ""1150msgstr ""
11491151
1152#. Type: text
1153#. Description
1154#: ../ubiquity.templates:159001
1155msgid "Timezone"
1156msgstr ""
1157
1158#. Type: text
1159#. Description
1160#: ../ubiquity.templates:160001
1161#, fuzzy
1162#| msgid "Keyboard layout"
1163msgid "Keyboard"
1164msgstr "Rozloženie klávesnice"
1165
1166#. Type: text
1167#. Description
1168#: ../ubiquity.templates:161001
1169#, fuzzy
1170#| msgid "New partition"
1171msgid "Partition"
1172msgstr "Nová oblasť"
1173
1174#. Type: text
1175#. Description
1176#: ../ubiquity.templates:162001
1177msgid "User Info"
1178msgstr ""
1179
1180#. Type: text
1181#. Description
1182#: ../ubiquity.templates:163001
1183msgid "Summary"
1184msgstr ""
1185
1186#. Type: text
1187#. Description
1188#: ../ubiquity.templates:164001
1189#, fuzzy
1190#| msgid "Install"
1191msgid "Installing"
1192msgstr "Inštalovať"
1193
1150#. Type: note1194#. Type: note
1151#. Description1195#. Description
1152#: ../ubiquity-frontend-mythbuntu.templates:10011196#: ../ubiquity-frontend-mythbuntu.templates:1001
@@ -1407,8 +1451,5 @@
1407msgid "Configuring infrared devices..."1451msgid "Configuring infrared devices..."
1408msgstr "Nastavujú sa infračervené zariadenia..."1452msgstr "Nastavujú sa infračervené zariadenia..."
14091453
1410#~ msgid "New partition"
1411#~ msgstr "Nová oblasť"
1412
1413#~ msgid "Delete partition"1454#~ msgid "Delete partition"
1414#~ msgstr "Odstrániť oblasť"1455#~ msgstr "Odstrániť oblasť"
14151456
=== modified file 'debian/po/sl.po'
--- debian/po/sl.po 2009-07-14 13:14:35 +0000
+++ debian/po/sl.po 2009-07-28 15:35:01 +0000
@@ -6,7 +6,7 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: debian-installer\n"7"Project-Id-Version: debian-installer\n"
8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"8"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
9"POT-Creation-Date: 2009-07-14 09:12-0400\n"9"POT-Creation-Date: 2009-07-28 11:27-0400\n"
10"PO-Revision-Date: 2009-04-10 12:11+0000\n"10"PO-Revision-Date: 2009-04-10 12:11+0000\n"
11"Last-Translator: Matej Kovačič <Unknown>\n"11"Last-Translator: Matej Kovačič <Unknown>\n"
12"Language-Team: Slovenian <lugos-slo@lugos.si>\n"12"Language-Team: Slovenian <lugos-slo@lugos.si>\n"
@@ -55,7 +55,9 @@
5555
56#. Type: text56#. Type: text
57#. Description57#. Description
58#: ../ubiquity.templates:900158#. Type: text
59#. Description
60#: ../ubiquity.templates:9001 ../ubiquity.templates:158001
59msgid "Welcome"61msgid "Welcome"
60msgstr "Dobrodošli"62msgstr "Dobrodošli"
6163
@@ -1143,6 +1145,48 @@
1143msgid "Applying configuration"1145msgid "Applying configuration"
1144msgstr ""1146msgstr ""
11451147
1148#. Type: text
1149#. Description
1150#: ../ubiquity.templates:159001
1151msgid "Timezone"
1152msgstr ""
1153
1154#. Type: text
1155#. Description
1156#: ../ubiquity.templates:160001
1157#, fuzzy
1158#| msgid "Keyboard layout"
1159msgid "Keyboard"
1160msgstr "Postavitev tipkovnice"
1161
1162#. Type: text
1163#. Description
1164#: ../ubiquity.templates:161001
1165#, fuzzy
1166#| msgid "New partition"
1167msgid "Partition"
1168msgstr "Nova particija"
1169
1170#. Type: text
1171#. Description
1172#: ../ubiquity.templates:162001
1173msgid "User Info"
1174msgstr ""
1175
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to status/vote changes: