summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfigurator_consts.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>1999-07-30 11:16:01 +0000
committerPascal Rigaux <pixel@mandriva.com>1999-07-30 11:16:01 +0000
commit3d79e422764401cf0d18a86bdf2679511119cdbc (patch)
treed54b9d808abea542594e7a7b5da7687d27dfa474 /perl-install/Xconfigurator_consts.pm
parent0ec07d89144fab40d351a24dca0645eca179ce29 (diff)
downloaddrakx-backup-do-not-use-3d79e422764401cf0d18a86bdf2679511119cdbc.tar
drakx-backup-do-not-use-3d79e422764401cf0d18a86bdf2679511119cdbc.tar.gz
drakx-backup-do-not-use-3d79e422764401cf0d18a86bdf2679511119cdbc.tar.bz2
drakx-backup-do-not-use-3d79e422764401cf0d18a86bdf2679511119cdbc.tar.xz
drakx-backup-do-not-use-3d79e422764401cf0d18a86bdf2679511119cdbc.zip
no_comment
Diffstat (limited to 'perl-install/Xconfigurator_consts.pm')
-rw-r--r--perl-install/Xconfigurator_consts.pm15
1 files changed, 7 insertions, 8 deletions
diff --git a/perl-install/Xconfigurator_consts.pm b/perl-install/Xconfigurator_consts.pm
index 841704332..ae8f39d9d 100644
--- a/perl-install/Xconfigurator_consts.pm
+++ b/perl-install/Xconfigurator_consts.pm
@@ -4,15 +4,14 @@ use common qw(:common);
uk => "gb",
);
-@depths = qw(8 15 16 24 32);
-
-%depths_text = (
- __("256 colors") => 8,
- __("32 thousand colors") => 15,
- __("65 thousand colors") => 16,
- __("16 millions of colors") => 24,
- __("4 billions of colors") => 32,
+%depths = (
+ 8 => __("256 colors"),
+ 15 => __("32 thousand colors"),
+ 16 => __("65 thousand colors"),
+ 24 => __("16 millions of colors"),
+ 32 => __("4 billions of colors"),
);
+@depths = ikeys(%depths);
$resolution_wanted = "1024x768";
@resolutions = qw(640x480 800x600 1024x768 1152x864 1280x1024 1600x1200);