summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2000-11-06 14:21:21 +0000
committerPablo Saratxaga <pablo@mandriva.com>2000-11-06 14:21:21 +0000
commit1000f22e2901a1df87f1178e64f700a4ee708795 (patch)
tree077e218f5f4526136c5b0bc369cd83b4bd2bba0d /perl-install
parentc9af93f726dbcab874fdd39146de7888c83657ee (diff)
downloaddrakx-backup-do-not-use-1000f22e2901a1df87f1178e64f700a4ee708795.tar
drakx-backup-do-not-use-1000f22e2901a1df87f1178e64f700a4ee708795.tar.gz
drakx-backup-do-not-use-1000f22e2901a1df87f1178e64f700a4ee708795.tar.bz2
drakx-backup-do-not-use-1000f22e2901a1df87f1178e64f700a4ee708795.tar.xz
drakx-backup-do-not-use-1000f22e2901a1df87f1178e64f700a4ee708795.zip
added the 3 kbd layouts for CZ and SK kbds
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/ChangeLog5
-rw-r--r--perl-install/keyboard.pm14
2 files changed, 14 insertions, 5 deletions
diff --git a/perl-install/ChangeLog b/perl-install/ChangeLog
index c1cf30444..dd34ddf62 100644
--- a/perl-install/ChangeLog
+++ b/perl-install/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-06 Pablo Saratxaga <pablo@mandrakesoft.com>
+
+ * keyboard.pm: added QWERTY and "programmers" layouts for Czech and
+ Slovak keyboards
+
2000-10-19 DrakX <install@linux-mandrake.com>
* snapshot uploaded
diff --git a/perl-install/keyboard.pm b/perl-install/keyboard.pm
index a59561a20..8f8fef04e 100644
--- a/perl-install/keyboard.pm
+++ b/perl-install/keyboard.pm
@@ -30,7 +30,7 @@ my %lang2keyboard =
'bg_BG'=> 'bg',
'br' => 'fr',
'ca' => 'es',
- 'cs' => 'cz',
+ 'cs' => 'cz_qwerty',
'cy' => 'uk',
'da' => 'dk',
'de' => 'de',
@@ -82,7 +82,7 @@ my %lang2keyboard =
'pt_PT'=> 'pt',
'ru' => 'ru',
'ru_RU.KOI8-R' => 'ru',
- 'sk' => 'sk',
+ 'sk' => 'sk_qwerty',
'sl' => 'si',
'sr' => 'yu',
'sv' => 'se',
@@ -102,7 +102,7 @@ my %lang2keyboard =
#- [1] = name for loadkeys, [2] = name for XKB
my %keyboards = (
arch() =~ /^sparc/ ? (
- "cs" => [ __("Czech"), "sunt5-cz-us", "czsk(cz_us_qwertz)" ],
+ "cs" => [ __("Czech (QWERTZ)"), "sunt5-cz-us", "czsk(cz_us_qwertz)" ],
"de" => [ __("German"), "sunt5-de-latin1", "de" ],
"dvorak" => [ __("Dvorak"), "sundvorak", "dvorak" ],
"es" => [ __("Spanish"), "sunt5-es", "es" ],
@@ -132,7 +132,9 @@ arch() eq "ppc" ? (
"by" => [ __("Belarusian"), "by-cp1251", "byru" ],
"ch_de" => [ __("Swiss (German layout)"), "sg-latin1", "de_CH" ],
"ch_fr" => [ __("Swiss (French layout)"), "fr_CH-latin1", "fr_CH" ],
- "cz" => [ __("Czech"), "cz-latin2", "czsk(cz_us_qwertz)" ],
+ "cz" => [ __("Czech (QWERTZ)"), "cz-latin2", "czsk(cz_us_qwertz)" ],
+ "cz_qwerty" => [ __("Czech (QWERTY)"), "cz-lat2", "czsk(cz_us_qwerty)" ],
+ "cz_prog" => [ __("Czech (Programmers)"), "cz-lat2-prog", "czsk(us_cz_prog)" ],
"de" => [ __("German"), "de-latin1", "de" ],
"de_nodeadkeys" => [ __("German (no dead keys)"), "de-latin1-nodeadkeys", "de(nodeadkeys)" ],
"dk" => [ __("Danish"), "dk-latin1", "dk" ],
@@ -170,7 +172,9 @@ arch() eq "ppc" ? (
"ru_yawerty" => [ __("Russian (Yawerty)"),"ru-yawerty","ru_yawerty" ],
"se" => [ __("Swedish"), "se-latin1", "se" ],
"si" => [ __("Slovenian"), "slovene", "si" ],
- "sk" => [ __("Slovakian"), "sk-qwertz", "czsk(sk_us_qwertz)" ],
+ "sk" => [ __("Slovakian (QWERTZ)"), "sk-qwertz", "czsk(sk_us_qwertz)" ],
+ "sk_qwerty" => [ __("Slovakian (QWERTY)"), "sk-qwerty", "czsk(sk_us_qwerty)" ],
+ "sk_prog" => [ __("Slovakian (Programmers)"), "sk-prog", "czsk(us_sk_prog" ],
"th" => [ __("Thai keyboard"), "th", "th" ],
"tr_f" => [ __("Turkish (traditional \"F\" model)"), "trf", "tr_f" ],
"tr_q" => [ __("Turkish (modern \"Q\" model)"), "tr_q-latin5", "tr_q" ],