summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-10-08 13:32:40 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-10-08 13:32:40 +0000
commit82e71cc5b005e3ddfe888ee82851a998512f8775 (patch)
tree84b0c2aa76ce9543acfa5057df256313b6ec8f3d /perl-install
parent430b3f8d262d71b9f4c0408e59898e13df214e01 (diff)
downloaddrakx-82e71cc5b005e3ddfe888ee82851a998512f8775.tar
drakx-82e71cc5b005e3ddfe888ee82851a998512f8775.tar.gz
drakx-82e71cc5b005e3ddfe888ee82851a998512f8775.tar.bz2
drakx-82e71cc5b005e3ddfe888ee82851a998512f8775.tar.xz
drakx-82e71cc5b005e3ddfe888ee82851a998512f8775.zip
mark a few strings as translatable (part of #5670)
Diffstat (limited to 'perl-install')
-rwxr-xr-xperl-install/standalone/drakconnect6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect
index 262c0fb24..22a0c4653 100755
--- a/perl-install/standalone/drakconnect
+++ b/perl-install/standalone/drakconnect
@@ -183,7 +183,7 @@ $window1->{window}->add(
0, $profile_combo,
0, $button_del,
0, gtksignal_connect(Gtk2::Button->new(N("New profile...")), clicked => sub {
- my $dialog = _create_dialog("New profile...", { small => 1 });
+ my $dialog = _create_dialog(N("New profile..."), { small => 1 });
my $entry_dialog = Gtk2::Entry->new;
gtkpack($dialog->vbox,
Gtk2::Label->new(N("Name of the profile to create (the new profile is created as a copy of the current one) :")),
@@ -328,7 +328,7 @@ sub get_intf_ip {
local $_ = `LC_ALL=C LANGUAGE=C /sbin/ifconfig $interface`;
$ip = /inet addr:(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/mso ? $1 : N("No Ip");
$mask = /Mask:(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/mso ? $1 : N("No Mask");
- $state = /inet/ ? "up" : "down";
+ $state = /inet/ ? N("up") : N("down");
} else {
$ip = $intf->{$interface}{IPADDR};
$state = "n/a";
@@ -496,7 +496,7 @@ Configure them first by clicking on 'Configure'")));
if (-e "$::prefix/etc/sysconfig/network-scripts/ifcfg-$interface") {
$widget_temp = gtksignal_connect(Gtk2::Button->new(get_intf_status($interface)),
clicked => sub {
- system("/sbin/if" . (ethisup($interface) ? "down" : "up") . " $interface");
+ system("/sbin/if" . (ethisup($interface) ? N("down") : N("up")) . " $interface");
$_[0]->set_label(get_intf_status($interface));
update();
});