* Reduce the width of the keymap menu a bit by removing some unnecessary

text from the German option.
master
Colin Watson 19 years ago
parent 1ef022c8ce
commit 770fdda163

2
debian/changelog vendored

@ -2,6 +2,8 @@ gfxboot-theme-ubuntu (0.1.11) UNRELEASED; urgency=low
* Disable transparent menus: they make it too difficult for visually
impaired users to read the menu labels.
* Reduce the width of the keymap menu a bit by removing some unnecessary
text from the German option.
-- Colin Watson <cjwatson@ubuntu.com> Wed, 1 Feb 2006 17:44:27 +0000

@ -1312,7 +1312,7 @@
[ "et" .undef "Estonian" [ "et" ] ]
[ "fi-latin1" keymap.fi-latin1 "Finnish" [ "fi" ] ]
[ "fr-latin9" keymap.fr-latin9 "French" [ "fr" "fr_FR" "br" "oc" ] ]
[ "de-latin1-nodeadkeys" keymap.de-latin1-nodeadkeys "German (Latin1; no dead keys)" [ "de" "de_DE" "en_DE" ] ]
[ "de-latin1-nodeadkeys" keymap.de-latin1-nodeadkeys "German" [ "de" "de_DE" "en_DE" ] ]
[ "gr" keymap.gr "Greek" [ "el" ] ]
[ "hebrew" keymap.hebrew "Hebrew" [ "he" ] ]
[ "hu" keymap.hu "Hungarian" [ "hu" ] ]

@ -18,6 +18,9 @@ while (<LIST>) {
next if /^#/ or not /\S/;
my ($locales, $keymap, $keymapname) = split /\t/;
$keymapname =~ s/\s+$//;
if ($keymapname =~ /^German \(/) {
$keymapname =~ s/ \(.*//;
}
$keymaps{$keymap} = [[split(':', $locales)], $keymapname];
}

Loading…
Cancel
Save