diff options
Diffstat (limited to 'news_wizard/Inn.pm')
-rwxr-xr-x | news_wizard/Inn.pm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/news_wizard/Inn.pm b/news_wizard/Inn.pm index 5c435e5f..6f585a48 100755 --- a/news_wizard/Inn.pm +++ b/news_wizard/Inn.pm @@ -67,17 +67,17 @@ $o->{pages} = { }, warning => { name => N('Warning.'), - data => [ { label => N('') } ], + ignore => 1, next => 'summary' }, error_in_news_server => { - name => N('Error.'), - data => [ { label => N('The news server name is not correct') } ], + name => N('Error.') . "\n\n" . N('The news server name is not correct'), + ignore => 1, next => 'ask_news_server' }, error_in_polling_time => { - name => N('Error.'), - data => [ { label => N('The polling period is not correct') } ], + name => N('Error.') . "\n\n" . N('The polling period is not correct'), + ignore => 1, next => 'ask_news_freq' }, summary => { @@ -91,8 +91,7 @@ needed to configure your Internet News Service:') . "\n\n" . N('To accept these next => 'end' }, end => { - name => N('Congratulation'), - data => [ { label => N('The wizard successfully configured your Internet News service of your server.') } ], + name => N('Congratulation') . "\n\n" . N('The wizard successfully configured your Internet News service of your server.'), end => 1, next => 0 }, |