diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2004-03-19 14:53:52 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2004-03-19 14:53:52 +0000 |
commit | 2b6afccc3a0d45c81f1885f6b4fdb51efabfd459 (patch) | |
tree | f4ab680adc84b380780c48b173fd67dccfae15a8 /perl-install | |
parent | 66665733ccce96b13702ccc790892fb2708bae53 (diff) | |
download | drakx-2b6afccc3a0d45c81f1885f6b4fdb51efabfd459.tar drakx-2b6afccc3a0d45c81f1885f6b4fdb51efabfd459.tar.gz drakx-2b6afccc3a0d45c81f1885f6b4fdb51efabfd459.tar.bz2 drakx-2b6afccc3a0d45c81f1885f6b4fdb51efabfd459.tar.xz drakx-2b6afccc3a0d45c81f1885f6b4fdb51efabfd459.zip |
disambiguated string
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/standalone/drakvpn | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/perl-install/standalone/drakvpn b/perl-install/standalone/drakvpn index d5aef0e7b..5888fa3fa 100644 --- a/perl-install/standalone/drakvpn +++ b/perl-install/standalone/drakvpn @@ -328,7 +328,7 @@ You can now :\n - commit the changes What would you like to do ?\n", $ipsec_conf), - [ N_("Display"), N_("Add"), N_("Edit"), N_("Remove"), N_("Commit") ]) or goto step_configuration; + [ N_("_:display here is a verb\nDisplay"), N_("Add"), N_("Edit"), N_("Remove"), N_("Commit") ]) or goto step_configuration; my $existing_section = ""; @@ -336,17 +336,17 @@ my $existing_section = ""; step_display_ipsec_conf: -if ($d eq "display $ipsec_conf" || $d eq "Display") { +if ($d eq "display $ipsec_conf" || $d eq "_:display here is a verb\nDisplay") { my $ipsec_exists = 0; foreach my $key (keys %$ipsec) { $ipsec_exists = 1 if $ipsec->{$key}; }; if ($ipsec_exists) { - $in->ask_okcancel(N("Display configuration"), + $in->ask_okcancel(N("_:display here is a verb\nDisplay configuration"), network::ipsec::display_ipsec_conf($ipsec,$kernel_version)); goto step_configure_ipsec_conf; } else { -$in->ask_okcancel(N("Display configuration"), +$in->ask_okcancel(N("_:display here is a verb\nDisplay configuration"), N("The %s file does not exist.\n This must be a new configuration.\n You'll have to go back and choose 'add'.\n", $ipsec_conf)); @@ -689,15 +689,14 @@ You can now : - edit \t\t\t (modify parameters of an existing section) - remove \t\t (remove an existing section) - commit \t\t (writes the changes to the real file)"), - [ #-PO: here "display" is a verb, not a noun - N_("Display"), N_("Add"), N_("Edit"), N_("Remove"), N_("Commit") ]) or goto step_configuration; + [ N_("_:display here is a verb\nDisplay"), N_("Add"), N_("Edit"), N_("Remove"), N_("Commit") ]) or goto step_configuration; #- display $racoon_conf ------------------------- step_display_racoon_conf: -if ($d eq "Display") { +if ($d eq "_:display here is a verb\nDisplay") { my $racoon_exists = 0; foreach my $key (keys %$racoon) { @@ -705,11 +704,11 @@ if ($d eq "Display") { }; if ($racoon_exists) { - $in->ask_okcancel(N("Display configuration"), + $in->ask_okcancel(N("_:display here is a verb\nDisplay configuration"), network::ipsec::display_racoon_conf($racoon)); goto step_configure_racoon_conf; } else { -$in->ask_okcancel(N("Display configuration"), +$in->ask_okcancel(N("_:display here is a verb\nDisplay configuration"), N("The %s file does not exist\n This must be a new configuration.\n You'll have to go back and choose configure.\n", $racoon_conf)); |