summaryrefslogtreecommitdiffstats
path: root/drakxconf
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-01-22 11:45:47 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-01-22 11:45:47 +0000
commitf25b452eb966601361d43415470e2c2033d891a8 (patch)
treecd493fe359a010712fa46c3aaf3978b915106197 /drakxconf
parent33d947eaaefd366fffbf894de082793cdab4c9c5 (diff)
downloadcontrol-center-f25b452eb966601361d43415470e2c2033d891a8.tar
control-center-f25b452eb966601361d43415470e2c2033d891a8.tar.gz
control-center-f25b452eb966601361d43415470e2c2033d891a8.tar.bz2
control-center-f25b452eb966601361d43415470e2c2033d891a8.tar.xz
control-center-f25b452eb966601361d43415470e2c2033d891a8.zip
reduce number of strings that need translate by sharing them with
graphic mcc
Diffstat (limited to 'drakxconf')
-rwxr-xr-xdrakxconf16
1 files changed, 8 insertions, 8 deletions
diff --git a/drakxconf b/drakxconf
index abfb6039..469ee0e2 100755
--- a/drakxconf
+++ b/drakxconf
@@ -22,17 +22,17 @@ my @l = map {
}
{ des => $_->{des}, cmd => $path };
} (
- { des => N("Display Configuration"), cmd => 'XFdrake' },
- { des => N("KeyBoard Configuration"), cmd => 'keyboarddrake' },
- { des => N("Mouse Configuration"), cmd => 'mousedrake' },
+ { des => N("Display"), cmd => 'XFdrake' },
+ { des => N("Keyboard"), cmd => 'keyboarddrake' },
+ { des => N("Mouse"), cmd => 'mousedrake' },
{ des => N("Internet & Network"), cmd => 'drakconnect' },
- { des => N("Add new users"), cmd => 'adduserdrake' },
- { des => N("Service Configuration"), cmd => 'drakxservices' },
+ { des => N("Users and groups"), cmd => 'adduserdrake' },
+ { des => N("Services"), cmd => 'drakxservices' },
{ des => N("Firewall"), cmd => 'tinyfirewall' },
- { des => N("Boot Configuration"), cmd => 'drakboot' },
+ { des => N("Boot loader"), cmd => 'drakboot' },
{ des => N("Auto Install"), cmd => 'drakautoinst' },
- { des => N("Connection Sharing"), cmd => 'drakgw' },
- { des => N("Disk Partionning"), cmd => 'diskdrake' }
+ { des => N("Internet connection sharing"), cmd => 'drakgw' },
+ { des => N("Partitions"), cmd => 'diskdrake' }
);
my $choice = $in->ask_from_listf(N("Control Center"), N("Choose the tool you want to use"), sub { $_[0]{des} }, \@l)