summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/network/netconnect.pm2
-rwxr-xr-xperl-install/standalone/drakclock2
-rw-r--r--perl-install/standalone/drakvpn10
3 files changed, 7 insertions, 7 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index 4d9697a9b..e86ef57d3 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -933,7 +933,7 @@ notation (for example, 1.2.3.4).")),
$in->ask_warn(N("Error"), N("IP address should be in format 1.2.3.4"));
return 1, $bad[0];
}
- $in->ask_warn(N("Error"), N("Warning: IP address %s is usually reserved !", $ethntf->{IPADDR})) if is_ip_forbidden($ethntf->{IPADDR});
+ $in->ask_warn(N("Error"), N("Warning: IP address %s is usually reserved!", $ethntf->{IPADDR})) if is_ip_forbidden($ethntf->{IPADDR});
},
focus_out => sub {
$ethntf->{NETMASK} ||= netmask($ethntf->{IPADDR}) unless $_[0]
diff --git a/perl-install/standalone/drakclock b/perl-install/standalone/drakclock
index e4a3c6253..45a7e798f 100755
--- a/perl-install/standalone/drakclock
+++ b/perl-install/standalone/drakclock
@@ -217,7 +217,7 @@ sub install_ntp() {
$my_win->{window}->set_sensitive(0);
if (warn_dialog(N("Warning"), N("We need to install ntp package\n to enable Network Time Protocol
-Do you want to install ntp ?"))) {
+Do you want to install ntp?"))) {
$in->do_pkgs->install('ntp');
} else {
ntp_widget_state(0);
diff --git a/perl-install/standalone/drakvpn b/perl-install/standalone/drakvpn
index 08de64e3e..c0186c8f4 100644
--- a/perl-install/standalone/drakvpn
+++ b/perl-install/standalone/drakvpn
@@ -97,7 +97,7 @@ N("The setup of a VPN connection has already been done.
It's currently enabled.
-What would you like to do ?"),
+What would you like to do?"),
[ N_("disable"), N_("reconfigure"), N_("dismiss") ]) or quit_global($in, 0);
# FIXME: reconfigure isn't handled
if ($r eq "disable") {
@@ -123,7 +123,7 @@ N("The setup of a VPN connection has already been done.
It's currently disabled.
-What would you like to do ?"),
+What would you like to do?"),
[ N_("enable"), N_("reconfigure"), N_("dismiss") ]);
# FIXME: reconfigure isn't handled
if ($r eq "enable") {
@@ -293,13 +293,13 @@ my %messages = (ipsec => N("Security Policies"), racoon => N("IKE daemon racoon"
if ($kernel_version > 2.5) {
$in->ask_from(N("Configuration file"),
-N("Configuration step !
+N("Configuration step!
You need to define the Security Policies and then to
configure the automatic key exchange (IKE) daemon.
The KAME IKE daemon we're using is called 'racoon'.
-What would you like to configure ?\n"),
+What would you like to configure?\n"),
[ { val => \$c, type => "list", list => [ keys %messages ], format => sub { $messages{$_[0]} } } ]) or goto step_detectsetup;
} else {
@@ -329,7 +329,7 @@ You can now:\n
- display, add, edit, or remove sections, then
- commit the changes
-What would you like to do ?\n", $ipsec_conf),
+What would you like to do?\n", $ipsec_conf),
[ N_("_:display here is a verb\nDisplay"), N_("Add"), N_("Edit"), N_("Remove"), N_("Commit") ]) or goto step_configuration;
my $existing_section = "";