diff options
Diffstat (limited to 'perl-install/Xconfigurator_consts.pm')
-rw-r--r-- | perl-install/Xconfigurator_consts.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/Xconfigurator_consts.pm b/perl-install/Xconfigurator_consts.pm index f3b6573f7..ef4a15d70 100644 --- a/perl-install/Xconfigurator_consts.pm +++ b/perl-install/Xconfigurator_consts.pm @@ -1,11 +1,11 @@ use common qw(:common); %depths = ( - 8 => __("256 colors"), - 15 => __("32 thousand colors"), - 16 => __("65 thousand colors"), - 24 => __("16 million colors"), - 32 => __("4 billion colors"), + 8 => __("256 colors (8 bits)"), + 15 => __("32 thousand colors (15 bits)"), + 16 => __("65 thousand colors (16 bits)"), + 24 => __("16 million colors (24 bits)"), + 32 => __("4 billion colors (32 bits)"), ); @depths = ikeys(%depths); |