From 60c14a2a052a10bea68328267ff614fe1ec6351d Mon Sep 17 00:00:00 2001 From: Pablo Saratxaga Date: Sat, 23 Feb 2002 06:03:50 +0000 Subject: removed useless _( ) around a string displayed in English only --- perl-install/install_steps_interactive.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'perl-install/install_steps_interactive.pm') 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}) { -- cgit v1.2.1