diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2002-02-23 06:03:50 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2002-02-23 06:03:50 +0000 |
commit | 60c14a2a052a10bea68328267ff614fe1ec6351d (patch) | |
tree | 35a9ea90825d894c5f1fc669c4e29520cde94490 | |
parent | 8952e8d754fe37229af10f3c1ccc9da0161b2171 (diff) | |
download | drakx-60c14a2a052a10bea68328267ff614fe1ec6351d.tar drakx-60c14a2a052a10bea68328267ff614fe1ec6351d.tar.gz drakx-60c14a2a052a10bea68328267ff614fe1ec6351d.tar.bz2 drakx-60c14a2a052a10bea68328267ff614fe1ec6351d.tar.xz drakx-60c14a2a052a10bea68328267ff614fe1ec6351d.zip |
removed useless _( ) around a string displayed in English only
-rw-r--r-- | perl-install/install_steps_interactive.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 1458e40b1..93a4dfd2a 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -98,8 +98,9 @@ least read and write in that language; and possibly more (various fonts, spell checkers, various programs translated etc. that varies from language to language).")) if $o->{lang} !~ /^en/ && !lang::load_mo(); } else { - $o->ask_warn('', _("The characters of your language can't be displayed in console, -so the messages will be displayed in english during installation")) if $ENV{LANGUAGE} eq 'C'; + #- don't use _( ) for this, as it is never translated + $o->ask_warn('', "The characters of your language can't be displayed in console, +so the messages will be displayed in english during installation") if $ENV{LANGUAGE} eq 'C'; } unless ($o->{useless_thing_accepted}) { |