summaryrefslogtreecommitdiffstats
path: root/perl-install/share/po/sq.po
Commit message (Expand)AuthorAgeFilesLines
* undo breakageThierry Vignaud2005-05-221-9/+9
* s/Mandrivalinux/Mandriva Linux/Funda Wang2005-05-201-3/+3
* update cataglogThierry Vignaud2005-05-191-1367/+1535
* Maybe the last Mandrake->Mandriva replacement.Funda Wang2005-04-271-2/+2
* sync with copyright bumpingThierry Vignaud2005-04-251-1/+1
* various Mandrake -> Mandriva changesPablo Saratxaga2005-04-231-192/+194
* updated po filesPablo Saratxaga2005-04-231-3/+0
* switch from MandrakeSoft to MandrivaThierry Vignaud2005-04-211-178/+178
* updateThierry Vignaud2005-04-211-2713/+2806
* update string for new drakroamThierry Vignaud2005-04-211-12/+7
* updated Welsh file;Pablo Saratxaga2005-04-181-1/+1
* add 3 new strings from diskdrakeThierry Vignaud2005-04-011-0/+15
* manual updatesThierry Vignaud2005-03-301-6/+6
* - merge in new strings from drakroamThierry Vignaud2005-03-301-0/+20
* Oops! Sorry for the critial typo :(Funda Wang2005-03-261-2/+2
* updated pot filePablo Saratxaga2005-03-261-7/+6
* s/Mandrakelinux 10.1/Mandrakelinux/. For advertising.Funda Wang2005-03-261-2/+2
* - add new strings from drakroamThierry Vignaud2005-03-251-11/+97
* s/102errata/errata/. There will not be an 10.2, and errara.php3Funda Wang2005-03-211-2/+2
* s/101errata/102errata for the next release. We often forget this.Funda Wang2005-03-181-2/+2
* s/Netmask address/Netmask/. typo fixFunda Wang2005-03-121-1/+1
* updated pot filePablo Saratxaga2005-03-111-34/+26
* fix kde mergeThierry Vignaud2005-03-101-1/+1
* further merge with KDEThierry Vignaud2005-03-101-1/+1
* remove duplicated stringThierry Vignaud2005-03-101-8/+0
* remove uneeded stringThierry Vignaud2005-03-101-4/+0
* merge translations from KDEThierry Vignaud2005-03-101-2/+2
* merge in new stringsThierry Vignaud2005-03-101-0/+112
* Added translation for "recommended" stringPablo Saratxaga2005-03-031-3170/+3958
* updated pot filePablo Saratxaga2004-10-071-5072/+6702
* updated pot filePablo Saratxaga2004-06-141-1970/+2036
* updated pot filePablo Saratxaga2004-04-011-1085/+1100
* corrected "default:LTR" translationsPablo Saratxaga2004-03-231-2833/+3169
* updated pot filePablo Saratxaga2004-02-191-16965/+17060
* fixed my previous bad entriesPablo Saratxaga2003-12-031-359/+670
* updated Albanian filePablo Saratxaga2003-09-181-709/+538
* updated pot filePablo Saratxaga2003-09-121-1206/+1832
* updated pot filePablo Saratxaga2003-08-131-1779/+2816
* updated Estonien, Japanese, Albanian and Vietnamese po filesPablo Saratxaga2003-06-031-2676/+2740
* updated pot filePablo Saratxaga2003-05-161-13699/+13778
* updated Albanian filePablo Saratxaga2003-03-271-1000/+2434
* updated pot filePablo Saratxaga2003-03-121-110/+157
* updated pot filePablo Saratxaga2003-03-091-233/+233
* iupdated Vietnamese, Estonian and Dutch files;Pablo Saratxaga2003-03-071-2/+2
* updated pot filePablo Saratxaga2003-03-071-385/+596
* updated pot filePablo Saratxaga2003-02-281-579/+807
* simplify translator job by propaging pixel english typo fixThierry Vignaud2003-02-171-9862/+15678
* Added Albanian filePablo Saratxaga2002-12-071-0/+14099
pan>$stdout_raw && ref($stdout_raw)) { if (ref($stdout_raw) eq 'ARRAY') { @$stdout_raw = cat_($stdout); } else { $$stdout_raw = cat_($stdout); } unlink $stdout; } if ($stderr_raw && ref($stderr_raw)) { if (ref($stderr_raw) eq 'ARRAY') { @$stderr_raw = cat_($stderr); } else { $$stderr_raw = cat_($stderr); } unlink $stderr; } $ok; } } else { if ($stderr && $stderr eq 'STDERR') { } elsif ($stderr) { $stderr_mode =~ s/2//; open STDERR, "$stderr_mode $stderr" or die "run_program can't output in $stderr (mode `$stderr_mode')"; } elsif ($::isInstall) { open STDERR, ">> /tmp/ddebug.log" or open STDOUT, ">> /dev/tty7" or die "run_program can't log, give me access to /tmp/ddebug.log"; } if ($stdout && $stdout eq 'STDOUT') { } elsif ($stdout) { open STDOUT, "$stdout_mode $stdout" or die "run_program can't output in $stdout (mode `$stdout_mode')"; } elsif ($::isInstall) { open STDOUT, ">> /tmp/ddebug.log" or open STDOUT, ">> /dev/tty7" or die "run_program can't log, give me access to /tmp/ddebug.log"; } $root and chroot $root; chdir "/"; if (ref $name) { unless (exec { $name->[0] } $name->[1], @args) { log::l("exec of $name->[0] failed: $!"); c::_exit(128); } } else { unless (exec $name, @args) { log::l("exec of $name failed: $!"); c::_exit(128); } } } } # run in background a sub that give back data through STDOUT a la run_program::get_stdout but w/ arbitrary perl code instead of external program package bg_command; sub new { my ($class, $sub) = @_; my $o = bless {}, $class; if ($o->{pid} = open(my $fd, "-|")) { $o->{fd} = $fd; $o; } else { $sub->(); c::_exit(0); } } sub DESTROY { my ($o) = @_; close $o->{fd} or warn "kid exited $?"; waitpid $o->{pid}, 0; } 1;