summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnaud Desmons <adesmons@mandriva.com>2002-08-14 09:17:58 +0000
committerArnaud Desmons <adesmons@mandriva.com>2002-08-14 09:17:58 +0000
commitf592678e566a2e364fca0c8ffe770a2f29bfea8a (patch)
treee099c5dee9c167fb367e154a75865ea7a08eabbf
parent0003dc31a8ea9d9dede6c253a6186d1617c418a1 (diff)
downloaddrakwizard-f592678e566a2e364fca0c8ffe770a2f29bfea8a.tar
drakwizard-f592678e566a2e364fca0c8ffe770a2f29bfea8a.tar.gz
drakwizard-f592678e566a2e364fca0c8ffe770a2f29bfea8a.tar.bz2
drakwizard-f592678e566a2e364fca0c8ffe770a2f29bfea8a.tar.xz
drakwizard-f592678e566a2e364fca0c8ffe770a2f29bfea8a.zip
missed \n case
-rw-r--r--po/drakwizard.pot10
-rwxr-xr-xwiz2pot.pl1
2 files changed, 6 insertions, 5 deletions
diff --git a/po/drakwizard.pot b/po/drakwizard.pot
index dbc0dcc1..178836df 100644
--- a/po/drakwizard.pot
+++ b/po/drakwizard.pot
@@ -383,6 +383,11 @@ msgstr ""
msgid "Configuring the FTP Server"
msgstr ""
+msgid ""
+"Warning\\nYou are in dhcp, server may doesn't work with your "
+"configuration."
+msgstr ""
+
msgid "Intranet FTP Server:"
msgstr ""
@@ -398,11 +403,6 @@ msgstr ""
msgid "network (intranet) and as a FTP Server for the Internet."
msgstr ""
-msgid ""
-"Warning\n"
-"You are in dhcp, server may doesn't work with your configuration."
-msgstr ""
-
msgid "FTP Server Configuration Wizard"
msgstr ""
diff --git a/wiz2pot.pl b/wiz2pot.pl
index 14a51b51..cbd091eb 100755
--- a/wiz2pot.pl
+++ b/wiz2pot.pl
@@ -14,6 +14,7 @@ sub load_wpo {
$leaf->{helpText} =~ s/\\'/\\\\'/g;
$leaf->{helpText} =~ s/\\q/\\\\q/g;
$leaf->{helpText} =~ s/\\a/\\\\a/g;
+ $leaf->{helpText} =~ s/\\n/\\\\n/g;
$page->{$leaf->{helpText}} = "";
}elsif(ref($leaf)=~ /\w\D/){
$tag = $leaf;