summaryrefslogtreecommitdiffstats
path: root/perl-install/install
diff options
context:
space:
mode:
authorYuri Chornoivan <yurchor@ukr.net>2015-12-11 19:09:53 +0200
committerYuri Chornoivan <yurchor@ukr.net>2015-12-11 19:09:53 +0200
commit2e329e9e5b4ebfdcba100399b11834b271daf13a (patch)
tree9928d0b50ee032ed1ed740e9f2c9ec930e3154ce /perl-install/install
parente33a721f003f95b8fdb3cadf9abe97df174680b6 (diff)
downloaddrakx-2e329e9e5b4ebfdcba100399b11834b271daf13a.tar
drakx-2e329e9e5b4ebfdcba100399b11834b271daf13a.tar.gz
drakx-2e329e9e5b4ebfdcba100399b11834b271daf13a.tar.bz2
drakx-2e329e9e5b4ebfdcba100399b11834b271daf13a.tar.xz
drakx-2e329e9e5b4ebfdcba100399b11834b271daf13a.zip
Update Lithuanian translation from Tx
Diffstat (limited to 'perl-install/install')
-rw-r--r--perl-install/install/share/po/lt.po2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/share/po/lt.po b/perl-install/install/share/po/lt.po
index 16b11fe22..8894fd1fc 100644
--- a/perl-install/install/share/po/lt.po
+++ b/perl-install/install/share/po/lt.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-20 22:53+0200\n"
-"PO-Revision-Date: 2015-10-05 22:42+0000\n"
+"PO-Revision-Date: 2015-12-02 23:08+0000\n"
"Last-Translator: Moo\n"
"Language-Team: Lithuanian (http://www.transifex.com/MageiaLinux/mageia/"
"language/lt/)\n"
'auto_install') { Xconfig::main::configure_everything_auto_install(Xconfig::default::configure($in->do_pkgs), $in->do_pkgs, {}, $options); } elsif ($configure_this eq 'monitor') { Xconfig::main::configure_monitor($in, Xconfig::xfree->read); } elsif ($configure_this eq 'resolution') { Xconfig::main::configure_resolution($in, Xconfig::xfree->read); } }; if (!$::auto) { if ($rc eq 'need_restart') { ask_for_X_restart($in); } elsif ($rc eq 'need_reboot') { $in->ask_warn('', N("You need to reboot for changes to take effect")); } } $in->exit($rc ? 0 : 1); } sub check_XFree { my ($in) = @_; #- set the standard configuration foreach ('XF86Config', 'XF86Config-4') { my $f = "/etc/X11/$_"; symlinkf("$_.standard", $f) if -l $f && -e "$f.standard"; } my $f = "/usr/X11R6/lib/X11/rgb.txt"; #- this one is on all platform -e $f or $in->do_pkgs->install('xorg-x11', 'xorg-x11-75dpi-fonts'); -e $f or die "install Xorg first!\n"; system("mount /proc 2>/dev/null"); # ensure /proc is mounted for pci probing } sub ask_for_X_restart { my ($in) = @_; $::isStandalone && $in->isa('interactive::gtk') or return; my ($wm, $pid) = any::running_window_manager(); if (!$wm) { $in->ask_warn('', N("Please log out and then use Ctrl-Alt-BackSpace")); return; } $in->ask_okcancel('', N("You need to log out and back in again for changes to take effect"), 1) or return; if (fork()) { any::ask_window_manager_to_logout($wm); return; } open STDIN, "</dev/zero"; open STDOUT, ">/dev/null"; open STDERR, ">&STDERR"; c::setsid(); exec 'perl', '-e', q( my ($wm, $pid) = @ARGV; my $nb; for ($nb = 30; $nb && -e "/proc/$pid"; $nb--) { sleep 1 } system("killall X") if $nb; ), $wm, $pid; }