diff options
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rwxr-xr-x | perl-install/standalone/finish-install | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index e8aa4f191..3080ff8f6 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- finish-install: use translations for keyboard and 3D steps + Version 10.4.232 - 4 October 2007, by Olivier "blino" Blin - add helper to get kernel module path (to be used in draklive) diff --git a/perl-install/standalone/finish-install b/perl-install/standalone/finish-install index 5a26090c2..92886f9ca 100755 --- a/perl-install/standalone/finish-install +++ b/perl-install/standalone/finish-install @@ -2,6 +2,9 @@ use lib qw(/usr/lib/libDrakX); +# i18n: IMPORTANT: to get correct namespace (drakx-kbd-mouse-x11 and drak3d instead of libDrakX) +BEGIN { unshift @::textdomains, 'drakx-kbd-mouse-x11', 'drak3d' } + use standalone; $::isStandalone = 0; |