diff options
author | Thierry Vignaud <tv@mandriva.org> | 2009-08-17 15:15:51 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2009-08-17 15:15:51 +0000 |
commit | a0b6641c86e41256c7c796ca8337f6277a9ff992 (patch) | |
tree | 65400411233551f7f5a41ac021200b7b539387e7 | |
parent | 717f40bfff09ad67eb524f854f3936b4ce6ecec0 (diff) | |
download | drakx-net-a0b6641c86e41256c7c796ca8337f6277a9ff992.tar drakx-net-a0b6641c86e41256c7c796ca8337f6277a9ff992.tar.gz drakx-net-a0b6641c86e41256c7c796ca8337f6277a9ff992.tar.bz2 drakx-net-a0b6641c86e41256c7c796ca8337f6277a9ff992.tar.xz drakx-net-a0b6641c86e41256c7c796ca8337f6277a9ff992.zip |
(real_main) fix extraction of translation strings ('N() must be used with a string')
-rw-r--r-- | lib/network/netconnect.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/network/netconnect.pm b/lib/network/netconnect.pm index 5c9b562..1f6cbc1 100644 --- a/lib/network/netconnect.pm +++ b/lib/network/netconnect.pm @@ -124,7 +124,7 @@ sub real_main { welcome => { pre => sub { undef $net->{type} }, if_(!$::isInstall, no_back => 1), - name => N("Choose the connection you want to configure" . if_($net->{PROFILE} && network::network::netprofile_count() > 0, "\n".N("Those settings will be saved for the network profile <b>%s</b>", $net->{PROFILE}) ) ), + name => N("Choose the connection you want to configure") . if_($net->{PROFILE} && network::network::netprofile_count() > 0, "\n".N("Those settings will be saved for the network profile <b>%s</b>", $net->{PROFILE}) ), if_(!$::isInstall, interactive_help_id => 'configureNetwork'), data => [ { list => [ network::connection::get_types ], type => 'list', val => \$net->{type}, format => sub { $_[0] && $_[0]->get_type_description }, |