summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/display_release_notes.pl
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2014-01-22 01:58:19 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2014-01-22 01:58:19 +0100
commit0640ea0a3d7b3261546f541a4556240e318b4141 (patch)
treede5b9a5c664ce101bbdaf769fb953bf1632cd993 /perl-install/standalone/display_release_notes.pl
parentdc7120917c1d2a6c1d2cb828e4418bda18773553 (diff)
downloaddrakx-0640ea0a3d7b3261546f541a4556240e318b4141.tar
drakx-0640ea0a3d7b3261546f541a4556240e318b4141.tar.gz
drakx-0640ea0a3d7b3261546f541a4556240e318b4141.tar.bz2
drakx-0640ea0a3d7b3261546f541a4556240e318b4141.tar.xz
drakx-0640ea0a3d7b3261546f541a4556240e318b4141.zip
fix untranslated button
Diffstat (limited to 'perl-install/standalone/display_release_notes.pl')
-rwxr-xr-xperl-install/standalone/display_release_notes.pl8
1 files changed, 8 insertions, 0 deletions
diff --git a/perl-install/standalone/display_release_notes.pl b/perl-install/standalone/display_release_notes.pl
index 4f5f19bb4..f6a2fab1c 100755
--- a/perl-install/standalone/display_release_notes.pl
+++ b/perl-install/standalone/display_release_notes.pl
@@ -22,11 +22,19 @@ use lib qw(/usr/lib/libDrakX);
use interactive;
use any;
use MDK::Common;
+use lang;
my $in = 'interactive'->vnew('su');
# so that we popup above drakx:
any::set_wm_hints_if_needed($in);
+# Fake enough $o for retrieving the proper translation:
+$::o = $in;
+$::o->{locale}{lang} = $ENV{LC_ALL};
+# must have a value so that we look at locale_special/ :
+$::prefix = '/';
+lang::set($::o->{locale});
+
# not very safe but we run in a restricted environment anyway:
my $release_notes = cat_utf8('/tmp/release_notes.html');
any::display_release_notes($in, $release_notes);