diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-11-14 12:43:41 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-11-14 12:43:41 +0000 |
commit | 761507b9f2ff395afb98bbcd71d747d90abbe21b (patch) | |
tree | a77103af72e22c7eff8b873c635add52d1eb1872 /Wiztemplate.pm | |
parent | 385ff8e97c7d11d8fe71c9ca9de0ded1dfd25f40 (diff) | |
download | drakwizard-761507b9f2ff395afb98bbcd71d747d90abbe21b.tar drakwizard-761507b9f2ff395afb98bbcd71d747d90abbe21b.tar.gz drakwizard-761507b9f2ff395afb98bbcd71d747d90abbe21b.tar.bz2 drakwizard-761507b9f2ff395afb98bbcd71d747d90abbe21b.tar.xz drakwizard-761507b9f2ff395afb98bbcd71d747d90abbe21b.zip |
fix N() encapsuled strings not seen as "to be extracted" strings when
generating the pot
Diffstat (limited to 'Wiztemplate.pm')
-rwxr-xr-x | Wiztemplate.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Wiztemplate.pm b/Wiztemplate.pm index 67183b9b..0eb01ebc 100755 --- a/Wiztemplate.pm +++ b/Wiztemplate.pm @@ -1,4 +1,4 @@ -#!/usr/bin/perl +c#!/usr/bin/perl # Drakwizard @@ -28,7 +28,7 @@ use MDK::Wizard::IFCFG; my $wiz = new Wizcommon; my $o = { - name => N('configuration wizard'), + name => N("configuration wizard"), var => { ip1 => '', ip2 => '' @@ -57,11 +57,11 @@ $o->{pages} = { next => 'summary' }, warning => { - name => N('Warning.') . "\n\n" . N(''), + name => N("Warning.") . "\n\n" . N(''), next => 'summary' }, error => { - name => N('Error.') . "\n\n" . N(''), + name => N("Error.") . "\n\n" . N(''), next => 'config' }, summary => { @@ -75,7 +75,7 @@ $o->{pages} = { next => 'end' }, end => { - name => N('Congratulations') . "\n\n" . N(''), + name => N("Congratulations") . "\n\n" . N(''), end => 1, next => 0 }, |