diff options
Diffstat (limited to 'perl-install/Xconfigurator_consts.pm')
-rw-r--r-- | perl-install/Xconfigurator_consts.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/perl-install/Xconfigurator_consts.pm b/perl-install/Xconfigurator_consts.pm index 976f65d9e..841704332 100644 --- a/perl-install/Xconfigurator_consts.pm +++ b/perl-install/Xconfigurator_consts.pm @@ -6,6 +6,14 @@ use common qw(:common); @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, +); + $resolution_wanted = "1024x768"; @resolutions = qw(640x480 800x600 1024x768 1152x864 1280x1024 1600x1200); |