diff options
author | Antoine Ginies <aginies@mandriva.com> | 2004-01-20 11:35:11 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2004-01-20 11:35:11 +0000 |
commit | 846d5f10c3a8114639233924dc64d1f7a0f55c45 (patch) | |
tree | 30716488248159d2d061208f4baa5953226037ba | |
parent | f3fc19ecd846232bd1f509c94f3191f910ebeb6a (diff) | |
download | drakwizard-846d5f10c3a8114639233924dc64d1f7a0f55c45.tar drakwizard-846d5f10c3a8114639233924dc64d1f7a0f55c45.tar.gz drakwizard-846d5f10c3a8114639233924dc64d1f7a0f55c45.tar.bz2 drakwizard-846d5f10c3a8114639233924dc64d1f7a0f55c45.tar.xz drakwizard-846d5f10c3a8114639233924dc64d1f7a0f55c45.zip |
remove duplicate strings
-rw-r--r-- | dns_wizard/Bind.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dns_wizard/Bind.pm b/dns_wizard/Bind.pm index 07423b53..98dee35c 100644 --- a/dns_wizard/Bind.pm +++ b/dns_wizard/Bind.pm @@ -78,10 +78,10 @@ my $o = { }; my %level = ( - 1 => N("Master - Master DNS server"), - 2 => N("Slave - Slave DNS server"), - 3 => N("Add host - Add a host in existing configuration"), - 4 => N("remove host - Remove a Host in DNS"), + 1 => N("Master DNS server"), + 2 => N("Slave DNS server"), + 3 => N("Add host in DNS"), + 4 => N("Remove host in DNS"), ); my @list_hosts; |