I've created a new patch that removes the use of translated values.
I've tested it on my laptop (i386) in both default and expert installations.
Note: I've only tested kbd-chooserin a mini-iso, not a full install.
The basic idea is to use the template names instead of the template
descriptions for architecture selection.
I had to create an en.po to be able to display the English descriptions in
the arch selection list.
In /var/lib/cdebconf/questions.dat this results in (for 'en'):
Name: console-tools/archs
Template: console-tools/archs
Value: at
Owners: d-i
Variables:
choices = at, usb
choices-trans = PC-style (AT or PS/2 connector) keyboard, USB keyboard
The only strange thing I noticed while testing was that in an expert
installation the translated description would also be shown if I had not
yet added a "translation" for ${choices} for a language.
I think this can be explained because I _had_ added the 'en' translation and
'en' is included as a backup value in the LANGUAGES envvar for most
languages.
So, the only situation where the values in 'choices' would be shown, is if a
translator would translate ${choices} to ${choices} instead of
${choices-trans}. I'm not sure how best to guard against that.
Maybe do a 'sed "s/msgstr \"${choices}\"/msgstr \"${choices-trans}\"/" for
all .po files in the build scripts?
Cheers,
FJP
P.S. I don't know any C really, so it's entirely possible that my patch
could be cleaned up somewhat :-)
Index: kbd-chooser.c
===================================================================
--- kbd-chooser.c (revision 22274)
+++ kbd-chooser.c (working copy)
@@ -441,43 +441,6 @@
}
}
-/**
- * @brief Get translated contents of a given template.
- * based on code from main-menu.
- * TODO: merge into the cdebconf library someday
- */
-char *
-translated_template_get(char *template)
-{
- int ret = 0;
- static char *languages = NULL;
- char *colon, *lang;
- struct debconfclient *client = mydebconf_get();
-
- if (!languages) {
- ret = debconf_get(client,"debian-installer/language");
- if (client->value && (ret != 10))
- languages = strdup(client->value);
- }
- lang = strdup (languages);
- while (lang) {
- char field[128];
-
- colon = strchr (lang, ':');
- if (colon)
- *colon = '\0';
- snprintf(field, sizeof (field), "Description-%s.UTF-8", lang);
- if (!debconf_metaget(client, template, field)) {
- free (lang);
- return (strdup(client->value));
- }
- lang = (colon) ? colon + 1 : NULL;
- }
- // Description must exist.
- debconf_metaget(client, template, "Description");
- free(lang);
- return strdup(client->value);
-}
/**
* @brief discover what subarchitecture we have
@@ -508,6 +471,7 @@
static kbd_t *keyboards = NULL, *p = NULL;
char buf[25];
const char *subarch = subarch_get();
+ struct debconfclient *client = mydebconf_get ();
if (keyboards != NULL)
return keyboards;
@@ -545,22 +509,23 @@
di_error (": No keyboards found\n");
exit (6);
}
- // translate the keyboard names
+ // Get the (translated) keyboard names
for (p = keyboards; p != NULL; p = p->next) {
sprintf(buf, "kbd-chooser/kbd/%s", p->name);
- p->description = translated_template_get(buf);
+ debconf_metaget(client, buf, "Description");
+ p->description = strdup(client->value);
}
return keyboards;
}
/**
- * @brief translate localised keyboard name back to kbd. arch name
+ * @brief determine kbd. arch name based on keyboard type
*/
char *keyboard_parse (char *reply)
{
kbd_t *kb;
for (kb = keyboards_get(); kb != NULL; kb = kb->next) {
- if (!strcmp (reply, kb->description))
+ if (!strcmp (reply, kb->name))
break;
}
return (kb) ? kb->name : "none";
@@ -626,8 +591,8 @@
keyboard_select (void)
{
kbd_t *kp = NULL, *preferred = NULL;
- char buf[LINESIZE], *s = NULL, *none = NULL;
- int choices = 0, first_entry = 1;
+ char buf_s[LINESIZE], buf_t[LINESIZE], *s = NULL, *t = NULL, *none_descr = NULL;
+ int choices = 0, first_entry_s = 1, first_entry_t = 1;
sercon_state sercon;
sercon_state umlcon;
struct debconfclient *client = mydebconf_get ();
@@ -638,7 +603,7 @@
* of keyboards present.
*/
- s = buf;
+ s = buf_s; t = buf_t;
// Add the keyboards to debconf
for (kp = keyboards_get (); kp != NULL; kp = kp->next) {
di_info ("keyboard type %s: present: %s \n", kp->name,
@@ -646,7 +611,8 @@
(kp->present == TRUE ? "true: " : "false" ));
if (kp->present != FALSE) {
choices++;
- s = insert_description (s, kp->description, &first_entry);
+ s = insert_description (s, kp->name, &first_entry_s);
+ t = insert_description (t, kp->description, &first_entry_t);
if (strcmp (PREFERRED_KBD, kp->name) == 0) {
if ((preferred == NULL) || (preferred->present == UNKNOWN)
|| (kp->present == TRUE))
@@ -660,23 +626,27 @@
}
sercon = check_if_serial_console();
umlcon = check_if_uml_console();
- none = translated_template_get ("kbd-chooser/no-keyboard");
+ debconf_metaget(client, "kbd-chooser/no-keyboard", "Description");
+ none_descr = strdup(client->value);
if (sercon == SERIAL_PRESENT || umlcon == SERIAL_PRESENT) {
choices++;
- s = insert_description (s, none, &first_entry);
- mydebconf_default_set ("console-tools/archs", none);
+ s = insert_description (s, "none", &first_entry_s);
+ t = insert_description (t, none_descr, &first_entry_t);
+ mydebconf_default_set ("console-tools/archs", "none");
} else {
if (((preferred == NULL) || (preferred->present == UNKNOWN))
&& (sercon == SERIAL_UNKNOWN)) {
di_info ("Can't tell if kbd present; add no keyboard option\n");
- s = insert_description (s, none, &first_entry);
choices++;
+ s = insert_description (s, "none", &first_entry_s);
+ t = insert_description (t, none_descr, &first_entry_t);
}
mydebconf_default_set ("console-tools/archs",
- preferred ? preferred->description : none);
+ preferred ? preferred->name : "none");
}
- debconf_subst (client, "console-tools/archs", "choices", buf);
- free(none);
+ debconf_subst (client, "console-tools/archs", "choices", buf_s);
+ debconf_subst (client, "console-tools/archs", "choices-trans", buf_t);
+ free(none_descr);
return ((sercon == SERIAL_PRESENT) ||
(preferred && preferred->present == TRUE)) ? "low" : "medium";
}
Index: debian/templates-in
===================================================================
--- debian/templates-in (revision 22274)
+++ debian/templates-in (working copy)
@@ -5,7 +5,7 @@
Template: console-tools/archs
Type: select
-Choices: ${choices}
+_Choices: ${choices}
_Description: Type of keyboard:
Please choose the type of keyboard to configure.
Index: debian/po/bs.po
===================================================================
--- debian/po/bs.po (revision 22274)
+++ debian/po/bs.po (working copy)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-08-29 09:47+0200\n"
"Last-Translator: Safir Šećerović <[EMAIL PROTECTED]>\n"
"Language-Team: Bosnian <[EMAIL PROTECTED]>\n"
@@ -27,6 +27,12 @@
msgstr "Izaberite raspored tipki"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/cs.po
===================================================================
--- debian/po/cs.po (revision 22274)
+++ debian/po/cs.po (working copy)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-04 09:20+0200\n"
"Last-Translator: Miroslav Kure <[EMAIL PROTECTED]>\n"
"Language-Team: Czech <[EMAIL PROTECTED]>\n"
@@ -27,6 +27,12 @@
msgstr "Vybrat rozložení klávesnice"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/pt_BR.po
===================================================================
--- debian/po/pt_BR.po (revision 22274)
+++ debian/po/pt_BR.po (working copy)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-17 12:20-0300\n"
"Last-Translator: André Luís Lopes <[EMAIL PROTECTED]>\n"
"Language-Team: Debia-BR Project <[EMAIL PROTECTED]>\n"
@@ -27,6 +27,12 @@
msgstr "Selecione um layout de teclado"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/es.po
===================================================================
--- debian/po/es.po (revision 22274)
+++ debian/po/es.po (working copy)
@@ -37,7 +37,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-09 21:23+0200\n"
"Last-Translator: Javier Fernandez-Sanguino Peña <[EMAIL PROTECTED]>\n"
"Language-Team: Debian Spanish <[EMAIL PROTECTED]>\n"
@@ -53,6 +53,12 @@
msgstr "Elija la distribución del teclado"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/ko.po
===================================================================
--- debian/po/ko.po (revision 22274)
+++ debian/po/ko.po (working copy)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-04 09:09+0200\n"
"Last-Translator: Changwoo Ryu <[EMAIL PROTECTED]>\n"
"Language-Team: Korean <[EMAIL PROTECTED]>\n"
@@ -27,6 +27,12 @@
msgstr "키보드 레이아웃을 선택하십시오"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/eu.po
===================================================================
--- debian/po/eu.po (revision 22274)
+++ debian/po/eu.po (working copy)
@@ -12,7 +12,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-01 21:04+0200\n"
"Last-Translator: Piarres Beobide Egaña <[EMAIL PROTECTED]>\n"
"Language-Team: Euskara <[EMAIL PROTECTED]>\n"
@@ -30,6 +30,12 @@
msgstr "Aukeratu teklatu diseinua"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/cy.po
===================================================================
--- debian/po/cy.po (revision 22274)
+++ debian/po/cy.po (working copy)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-08-27 17:13+0200\n"
"Last-Translator: Dafydd Harries <[EMAIL PROTECTED]>\n"
"Language-Team: Welsh <[EMAIL PROTECTED]>\n"
@@ -27,6 +27,12 @@
msgstr "Dewis cynllun bysellfwrdd"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/hu.po
===================================================================
--- debian/po/hu.po (revision 22274)
+++ debian/po/hu.po (working copy)
@@ -14,7 +14,7 @@
msgstr ""
"Project-Id-Version: kbd-chooser\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-04-08 00:34+0200\n"
"Last-Translator: VERÓK István <[EMAIL PROTECTED]>\n"
"Language-Team: Debian Hungarian Localization Team <debian-l10n-"
@@ -31,6 +31,12 @@
msgstr "Válasszon ki egy billentyűzetkiosztást"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/sk.po
===================================================================
--- debian/po/sk.po (revision 22274)
+++ debian/po/sk.po (working copy)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-08-30 16:22+0200\n"
"Last-Translator: Peter KLFMANiK Mann <[EMAIL PROTECTED]>\n"
"Language-Team: Slovak <[EMAIL PROTECTED]>\n"
@@ -27,6 +27,12 @@
msgstr "Výber rozloženia klávesnice"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/uk.po
===================================================================
--- debian/po/uk.po (revision 22274)
+++ debian/po/uk.po (working copy)
@@ -15,7 +15,7 @@
msgstr ""
"Project-Id-Version: kbd-chooser-templates_uk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-07-22 19:15+0300\n"
"Last-Translator: Eugeniy Meshcheryakov <[EMAIL PROTECTED]>\n"
"Language-Team: Ukrainian\n"
@@ -36,6 +36,12 @@
msgstr "Вибрати розкладку клавіатури"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/ro.po
===================================================================
--- debian/po/ro.po (revision 22274)
+++ debian/po/ro.po (working copy)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-04-19 20:11+0300\n"
"Last-Translator: Eddy Petrisor <[EMAIL PROTECTED]>\n"
"Language-Team: Debian L10n Romanian <[EMAIL PROTECTED]>\n"
@@ -27,6 +27,12 @@
msgstr "Alegeţi o configuraţie (layout) de tastatură"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/templates.pot
===================================================================
--- debian/po/templates.pot (revision 22274)
+++ debian/po/templates.pot (working copy)
@@ -16,7 +16,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <[EMAIL PROTECTED]>\n"
"Language-Team: LANGUAGE <[EMAIL PROTECTED]>\n"
@@ -32,6 +32,12 @@
msgstr ""
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr ""
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/sq.po
===================================================================
--- debian/po/sq.po (revision 22274)
+++ debian/po/sq.po (working copy)
@@ -14,7 +14,7 @@
msgstr ""
"Project-Id-Version: kbd-chooser 0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-04-08 01:36+0200\n"
"Last-Translator: Elian Myftiu <[EMAIL PROTECTED]>\n"
"Language-Team: Albanian <[EMAIL PROTECTED]>\n"
@@ -30,6 +30,12 @@
msgstr "Zgjidh një tastierë"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/ru.po
===================================================================
--- debian/po/ru.po (revision 22274)
+++ debian/po/ru.po (working copy)
@@ -14,7 +14,7 @@
msgstr ""
"Project-Id-Version: ru\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-14 13:35+0200\n"
"Last-Translator: Russian L10N Team <[EMAIL PROTECTED]>\n"
"Language-Team: Russian <[EMAIL PROTECTED]>\n"
@@ -35,6 +35,12 @@
msgstr "Выберите раскладку клавиатуры"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/id.po
===================================================================
--- debian/po/id.po (revision 22274)
+++ debian/po/id.po (working copy)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-04-18 18:13+0700\n"
"Last-Translator: Parlin Imanuel Toh <[EMAIL PROTECTED]>\n"
"Language-Team: Debian L10n Indonesia <[EMAIL PROTECTED]"
@@ -28,6 +28,12 @@
msgstr "Pilih layout keyboard"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/nb.po
===================================================================
--- debian/po/nb.po (revision 22274)
+++ debian/po/nb.po (working copy)
@@ -17,7 +17,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-24 17:18+0200\n"
"Last-Translator: Axel Bojer <[EMAIL PROTECTED]>\n"
"Language-Team: Norsk Bokmål <[EMAIL PROTECTED]>\n"
@@ -34,6 +34,12 @@
msgstr "Velg et tastaturoppsett"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/el.po
===================================================================
--- debian/po/el.po (revision 22274)
+++ debian/po/el.po (working copy)
@@ -17,7 +17,7 @@
msgstr ""
"Project-Id-Version: el\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-16 01:19EEST\n"
"Last-Translator: Greek Translation Team <[EMAIL PROTECTED]"
"org>\n"
@@ -39,6 +39,12 @@
msgstr "Επιλέξτε μια διάταξη πληκτρολογίου"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/en.po
===================================================================
--- debian/po/en.po (revision 0)
+++ debian/po/en.po (revision 0)
@@ -0,0 +1,150 @@
+# translation for English
+#
+# Translators, if you are not familiar with the PO format, gettext
+# documentation is worth reading, especially sections dedicated to
+# this format, e.g. by running:
+# info -n '(gettext)PO Files'
+# info -n '(gettext)Header Entry'
+# Some information specific to po-debconf are available at
+# /usr/share/doc/po-debconf/README-trans
+# or http://www.debian.org/intl/l10n/po-debconf/README-trans#
+# Developers do not need to manually edit POT or PO files.
+# Frans Pop <[EMAIL PROTECTED]>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: en\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
+"PO-Revision-Date: 2004-09-28 20:42+0200\n"
+"Last-Translator: Frans Pop <[EMAIL PROTECTED]>\n"
+"Language-Team: Debian Installer <[EMAIL PROTECTED]>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3.1\n"
+
+#. Type: text
+#. Description
+#. Main menu item
+#: ../templates-in:4
+msgid "Select a keyboard layout"
+msgstr "Select a keyboard layout"
+
+#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
+#. Description
+#: ../templates-in:9
+msgid "Type of keyboard:"
+msgstr "Type of keyboard:"
+
+#. Type: select
+#. Description
+#: ../templates-in:9
+msgid "Please choose the type of keyboard to configure."
+msgstr "Please choose the type of keyboard to configure."
+
+#. Type: text
+#. Description
+#: ../templates-in:24
+msgid "No keyboard to configure"
+msgstr "No keyboard to configure"
+
+#. Type: text
+#. Description
+#. Prebaseconfig progress bar item
+#: ../templates-in:29
+msgid "Configuring keyboard ..."
+msgstr "Configuring keyboard ..."
+
+#. Type: text
+#. Description
+#: ../keyboard-at.templates:3
+msgid "PC-style (AT or PS-2 connector) keyboard"
+msgstr ""
+
+#. Type: text
+#. Description
+#: ../keyboard-atari.templates:3
+msgid "Atari keyboard"
+msgstr ""
+
+#. Type: text
+#. Description
+#: ../keyboard-amiga.templates:3
+msgid "Amiga keyboard"
+msgstr ""
+
+#. Type: text
+#. Description
+#: ../keyboard-acorn.templates:3
+#, fuzzy
+msgid "Acorn keyboard"
+msgstr "Type of keyboard:"
+
+#. Type: text
+#. Description
+#: ../keyboard-mac.templates:3
+#, fuzzy
+msgid "Mac keyboard"
+msgstr "Type of keyboard:"
+
+#. Type: text
+#. Description
+#: ../keyboard-sparc.templates:3
+#, fuzzy
+msgid "Sun keyboard"
+msgstr "Type of keyboard:"
+
+#. Type: text
+#. Description
+#: ../keyboard-usb.templates:3
+#, fuzzy
+msgid "USB keyboard"
+msgstr "Type of keyboard:"
+
+#. Type: text
+#. Description
+#: ../keyboard-dec.templates:3
+#, fuzzy
+msgid "DEC keyboard"
+msgstr "Type of keyboard:"
+
+#. Type: text
+#. Description
+#: ../keyboard-hil.templates:3
+#, fuzzy
+msgid "HP HIL keyboard"
+msgstr "Type of keyboard:"
+
+#~ msgid "PC-STYLE"
+#~ msgstr "PC-style (AT or PS-2 connector) keyboard"
+
+#~ msgid "ATARI"
+#~ msgstr "Atari keyboard"
+
+#~ msgid "AMIGA"
+#~ msgstr "Amiga keyboard"
+
+#~ msgid "ACORN"
+#~ msgstr "Acorn keyboard"
+
+#~ msgid "MAC"
+#~ msgstr "Mac keyboard"
+
+#~ msgid "SUN"
+#~ msgstr "Sun keyboard"
+
+#~ msgid "USB"
+#~ msgstr "USB keyboard"
+
+#~ msgid "DEC"
+#~ msgstr "DEC keyboard"
+
+#~ msgid "HP-HIL"
+#~ msgstr "HP HIL keyboard"
Index: debian/po/ar.po
===================================================================
--- debian/po/ar.po (revision 22274)
+++ debian/po/ar.po (working copy)
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: debian-installer_packages_po\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-08-31 22:05+0300\n"
"Last-Translator: Ossama M. Khayat <[EMAIL PROTECTED]>\n"
"Language-Team: Arabeyes <[EMAIL PROTECTED]>\n"
@@ -30,6 +30,12 @@
msgstr "اختر توزيعة لوحة مفاتيح"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/gl.po
===================================================================
--- debian/po/gl.po (revision 22274)
+++ debian/po/gl.po (working copy)
@@ -14,7 +14,7 @@
msgstr ""
"Project-Id-Version: debian-installer_packages_kbd-chooser_gl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-04-08 02:02+0200\n"
"Last-Translator: H�ctor Fern�ndez L�pez <[EMAIL PROTECTED]>\n"
"Language-Team: Proxecto Trasno <[EMAIL PROTECTED]>\n"
@@ -30,6 +30,12 @@
msgstr "Elixa a distribuci�n do teclado"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/fr.po
===================================================================
--- debian/po/fr.po (revision 22274)
+++ debian/po/fr.po (working copy)
@@ -17,7 +17,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-12 12:58+0200\n"
"Last-Translator: French Team <[EMAIL PROTECTED]>\n"
"Language-Team: French <[EMAIL PROTECTED]>\n"
@@ -35,6 +35,12 @@
msgstr "Choisir la disposition du clavier"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/nl.po
===================================================================
--- debian/po/nl.po (revision 22274)
+++ debian/po/nl.po (working copy)
@@ -15,7 +15,7 @@
msgstr ""
"Project-Id-Version: kbd-chooser\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-04-12 14:57+0100\n"
"Last-Translator: Bart Cornelis <[EMAIL PROTECTED]>\n"
"Language-Team: debian-l10n-dutch <[EMAIL PROTECTED]>\n"
@@ -34,6 +34,12 @@
msgstr "De toetsenbordindeling kiezen"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/hr.po
===================================================================
--- debian/po/hr.po (revision 22274)
+++ debian/po/hr.po (working copy)
@@ -12,7 +12,7 @@
msgstr ""
"Project-Id-Version: Debian-installer 1st-stage master file HR\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-05 19:41+0200\n"
"Last-Translator: Krunoslav Gernhard <[EMAIL PROTECTED]>\n"
"Language-Team: Croatian <[EMAIL PROTECTED]>\n"
@@ -28,6 +28,12 @@
msgstr "Izaberi tipkovnicu"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/nn.po
===================================================================
--- debian/po/nn.po (revision 22274)
+++ debian/po/nn.po (working copy)
@@ -14,7 +14,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-04 19:18+0200\n"
"Last-Translator: Håvard Korsvoll <[EMAIL PROTECTED]>\n"
"Language-Team: Norwegian nynorsk <[EMAIL PROTECTED]>\n"
@@ -32,6 +32,12 @@
msgstr "Vel eit tastaturoppsett"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/pl.po
===================================================================
--- debian/po/pl.po (revision 22274)
+++ debian/po/pl.po (working copy)
@@ -12,7 +12,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-03 21:14+0200\n"
"Last-Translator: Bartosz Fenski <[EMAIL PROTECTED]>\n"
"Language-Team: Polish <[EMAIL PROTECTED]>\n"
@@ -28,6 +28,12 @@
msgstr "Wybierz uk�ad klawiatury"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/it.po
===================================================================
--- debian/po/it.po (revision 22274)
+++ debian/po/it.po (working copy)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: kbd-chooser 0.49\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-04-15 20:50+0200\n"
"Last-Translator: Davide Viti <[EMAIL PROTECTED]>\n"
"Language-Team: debian italian translators <[EMAIL PROTECTED]"
@@ -22,6 +22,12 @@
msgstr "Seleziona il layout della tastiera"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/sl.po
===================================================================
--- debian/po/sl.po (revision 22274)
+++ debian/po/sl.po (working copy)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-07 00:17+0100\n"
"Last-Translator: Jure Čuhalev <[EMAIL PROTECTED]>\n"
"Language-Team: LANGUAGE <[EMAIL PROTECTED]>\n"
@@ -27,6 +27,12 @@
msgstr "Izberite postavitev tipkovnice"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/lt.po
===================================================================
--- debian/po/lt.po (revision 22274)
+++ debian/po/lt.po (working copy)
@@ -12,7 +12,7 @@
msgstr ""
"Project-Id-Version: lt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-22 20:35+0300\n"
"Last-Translator: Kęstutis Biliūnas\n"
"Language-Team: Lithuanian <[EMAIL PROTECTED]>\n"
@@ -29,6 +29,12 @@
msgstr "Klaviatūros išdėstymo pasirinkimas"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/lv.po
===================================================================
--- debian/po/lv.po (revision 22274)
+++ debian/po/lv.po (working copy)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-08-28 22:23+0200\n"
"Last-Translator: Aigars Mahinovs <[EMAIL PROTECTED]>\n"
"Language-Team: Latvian\n"
@@ -27,6 +27,12 @@
msgstr "Izvēlieties klaviatūras izklājumu"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/pt.po
===================================================================
--- debian/po/pt.po (revision 22274)
+++ debian/po/pt.po (working copy)
@@ -14,7 +14,7 @@
msgstr ""
"Project-Id-Version: kbd-chooser 0.49\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-04-08 14:19+0000\n"
"Last-Translator: Miguel Figueiredo <[EMAIL PROTECTED]>\n"
"Language-Team: Portuguese <[EMAIL PROTECTED]>\n"
@@ -30,6 +30,12 @@
msgstr "Selecione a disposição do teclado"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/ca.po
===================================================================
--- debian/po/ca.po (revision 22274)
+++ debian/po/ca.po (working copy)
@@ -12,7 +12,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-04 11:35+0200\n"
"Last-Translator: Jordi Mallach <[EMAIL PROTECTED]>\n"
"Language-Team: Catalan <[EMAIL PROTECTED]>\n"
@@ -28,6 +28,12 @@
msgstr "Selecciona una disposició de teclat"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/da.po
===================================================================
--- debian/po/da.po (revision 22274)
+++ debian/po/da.po (working copy)
@@ -12,7 +12,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-04 16:11+0200\n"
"Last-Translator: Claus Hindsgaul <[EMAIL PROTECTED]>\n"
"Language-Team: Danish <[EMAIL PROTECTED]>\n"
@@ -30,6 +30,12 @@
msgstr "V�lg en tastaturudl�gning"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/tr.po
===================================================================
--- debian/po/tr.po (revision 22274)
+++ debian/po/tr.po (working copy)
@@ -17,7 +17,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-04 00:55+0300\n"
"Last-Translator: Recai Oktaş <[EMAIL PROTECTED]>\n"
"Language-Team: Debian L10n Turkish <[EMAIL PROTECTED]>\n"
@@ -34,6 +34,12 @@
msgstr "Bir klavye düzeni seçin"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/fa.po
===================================================================
--- debian/po/fa.po (revision 22274)
+++ debian/po/fa.po (working copy)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-06-19 16:10+0430\n"
"Last-Translator: Arash Bijanzadeh <[EMAIL PROTECTED]>\n"
"Language-Team: Farsi <[EMAIL PROTECTED]>\n"
@@ -27,6 +27,12 @@
msgstr "لطفا یک طرح صفحهکلید انتخاب کنید"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/sv.po
===================================================================
--- debian/po/sv.po (revision 22274)
+++ debian/po/sv.po (working copy)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-19 18:25+0200\n"
"Last-Translator: Per Olofsson <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
@@ -27,6 +27,12 @@
msgstr "Välj en tangentbordslayout"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/bg.po
===================================================================
--- debian/po/bg.po (revision 22274)
+++ debian/po/bg.po (working copy)
@@ -13,7 +13,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-23 11:56+0300\n"
"Last-Translator: Ognyan Kulev <[EMAIL PROTECTED]>\n"
"Language-Team: Bulgarian <[EMAIL PROTECTED]>\n"
@@ -29,6 +29,12 @@
msgstr "Избиране на клавиатурна подредба"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/de.po
===================================================================
--- debian/po/de.po (revision 22274)
+++ debian/po/de.po (working copy)
@@ -19,7 +19,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-11 13:27GMT\n"
"Last-Translator: Dennis Stampfer <[EMAIL PROTECTED]>\n"
"Language-Team: Debian German <[EMAIL PROTECTED]>\n"
@@ -36,6 +36,12 @@
msgstr "Wählen Sie Ihre Tastaturbelegung aus"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/ja.po
===================================================================
--- debian/po/ja.po (revision 22274)
+++ debian/po/ja.po (working copy)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-08-28 17:03+0900\n"
"Last-Translator: Kenshi Muto <[EMAIL PROTECTED]>\n"
"Language-Team: Debian L10n Japanese <[EMAIL PROTECTED]>\n"
@@ -27,6 +27,12 @@
msgstr "キーボード配置の選択"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/zh_TW.po
===================================================================
--- debian/po/zh_TW.po (revision 22274)
+++ debian/po/zh_TW.po (working copy)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-04-12 23:59+0800\n"
"Last-Translator: Tetralet <[EMAIL PROTECTED]>\n"
"Language-Team: Chinese Traditional <[EMAIL PROTECTED]>\n"
@@ -27,6 +27,12 @@
msgstr "選擇鍵盤排列方式"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/he.po
===================================================================
--- debian/po/he.po (revision 22274)
+++ debian/po/he.po (working copy)
@@ -13,7 +13,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-04 17:03+0300\n"
"Last-Translator: Lior Kaplan <[EMAIL PROTECTED]>\n"
"Language-Team: Debian L10n Hebrew <[EMAIL PROTECTED]>\n"
@@ -29,6 +29,12 @@
msgstr "בחירת פריסת מקלדת"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/fi.po
===================================================================
--- debian/po/fi.po (revision 22274)
+++ debian/po/fi.po (working copy)
@@ -14,7 +14,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-06 20:22+0300\n"
"Last-Translator: Tapio Lehtonen <[EMAIL PROTECTED]>\n"
"Language-Team: Finnish <[EMAIL PROTECTED]>\n"
@@ -30,6 +30,12 @@
msgstr "Valitse näppäimistöasettelu"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"
Index: debian/po/zh_CN.po
===================================================================
--- debian/po/zh_CN.po (revision 22274)
+++ debian/po/zh_CN.po (working copy)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-08-19 09:32+0200\n"
+"POT-Creation-Date: 2004-09-29 16:03+0200\n"
"PO-Revision-Date: 2004-09-04 20:06+0200\n"
"Last-Translator: Carlos Z.F. Liu <[EMAIL PROTECTED]>\n"
"Language-Team: Debian Chinese [GB] <[EMAIL PROTECTED]>\n"
@@ -27,6 +27,12 @@
msgstr "选择键盘布局"
#. Type: select
+#. Choices
+#: ../templates-in:8
+msgid "${choices}"
+msgstr "${choices-trans}"
+
+#. Type: select
#. Description
#: ../templates-in:9
msgid "Type of keyboard:"