summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2002-02-23 06:03:50 +0000
committerPablo Saratxaga <pablo@mandriva.com>2002-02-23 06:03:50 +0000
commit60c14a2a052a10bea68328267ff614fe1ec6351d (patch)
tree35a9ea90825d894c5f1fc669c4e29520cde94490 /perl-install/install_steps_interactive.pm
parent8952e8d754fe37229af10f3c1ccc9da0161b2171 (diff)
downloaddrakx-backup-do-not-use-60c14a2a052a10bea68328267ff614fe1ec6351d.tar
drakx-backup-do-not-use-60c14a2a052a10bea68328267ff614fe1ec6351d.tar.gz
drakx-backup-do-not-use-60c14a2a052a10bea68328267ff614fe1ec6351d.tar.bz2
drakx-backup-do-not-use-60c14a2a052a10bea68328267ff614fe1ec6351d.tar.xz
drakx-backup-do-not-use-60c14a2a052a10bea68328267ff614fe1ec6351d.zip
removed useless _( ) around a string displayed in English only
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm5
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}) {