From a0b6641c86e41256c7c796ca8337f6277a9ff992 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 17 Aug 2009 15:15:51 +0000 Subject: (real_main) fix extraction of translation strings ('N() must be used with a string') --- lib/network/netconnect.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 %s", $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 %s", $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 }, -- cgit v1.2.1