###### PATCHTAG00 #################################################### ### Lithuanian/Lietuviškai ### => ve ###### PATCHTAG10 #################################################### &lithuanian ###### PATCHTAG20 #################################################### 'lithuanian' => \&lithuanian, 'lietuviškai' => \&lithuanian, ###### PATCHTAG30 #################################################### # Lithuanian/lietuviškai 'lithuanian' => "Paruošė ir į lietuvių kalbą išvertė ve <ve\@hardcore.lt>", # the lithuanian string means: "Prepared for languages and translated to lithuanian by" ###### PATCHTAG40 #################################################### $credits::LOCALE{'lietuviškai'}=$credits::LOCALE{'lithuanian'}; ###### PATCHTAG50 #################################################### # Lithuanian sub lithuanian { my $string = shift; return "" unless defined $string; my(%translations,%month,%wday); my($i,$j); my(@dollar,@quux,@foo); # regexp => replacement string NOTE does not use autovars $1,$2... # charset=iso-2022-jp %translations = ( 'iso-8859-1' => 'windows-1257', 'Maximal 5 Minute Incoming Traffic' => 'Maksimalus 5 minučių įeinantis srautas', 'Maximal 5 Minute Outgoing Traffic' => 'Maksimalus 5 minučių išeinantis srautas', 'the device' => 'įrenginys', 'The statistics were last updated(.*)' => 'Statistika atnaujinta$1', ' Average\)' => ' vidurkis)', 'Average' => 'vid', 'Max' => 'max', 'Current' => 'dabar', 'version' => 'versija', '`Daily\' Graph \((.*) Minute' => '\'dienos\' grafikas ($1 min.', '`Weekly\' Graph \(30 Minute' => '\'savaitės\' grafikas (30 min.' , '`Monthly\' Graph \(2 Hour' => '\'mėnesio\' grafikas (2 val.', '`Yearly\' Graph \(1 Day' => '\'metų\' grafikas (1 d.', 'Incoming Traffic in (\S+) per Second' => 'Įeinantis srautas, $1 per sekundę', 'Outgoing Traffic in (\S+) per Second' => 'Išeinantis srautas i $1 per sekundę', 'at which time (.*) had been up for(.*)' => '$1 veikia jau $2', # '([kMG]?)([bB])/s' => '\$1\$2/s', # '([kMG]?)([bB])/min' => '\$1\$2/min', # '([kMG]?)([bB])/h' => '$1$2/h', 'Bits' => 'bitai', 'Bytes' => 'baitai', 'In' => 'į', 'Out' => 'iš', 'Percentage' => 'procentai', 'Ported to OpenVMS Alpha by' => 'Perkėlė į OpenVMS Alpha:', 'Ported to WindowsNT by' => 'Perkėlė į WindowsNT:', 'and' => 'ir', '^GREEN' => 'ŽALIA ', 'BLUE' => 'MĖLYNA ', 'DARK GREEN' => 'TAMSIAI ŽALIA ', 'MAGENTA' => 'RAUDONA ', 'AMBER' => 'GINTARINĖ ' ); # maybe expansions with replacement of whitespace would be more appropriate foreach $i (keys %translations) { my $trans = $translations{$i}; $trans =~ s/\|/\|/; return $string if eval " \$string =~ s|\${i}|${trans}| "; }; %wday = ( 'Sunday' => 'sekmadienį', 'Sun' => 'Sek', 'Monday' => 'pirmadienį', 'Mon' => 'Pir', 'Tuesday' => 'antradienį', 'Tue' => 'Ant', 'Wednesday' => 'trečiadienį', 'Wed' => 'Tre', 'Thursday' => 'ketvirtadienį', 'Thu' => 'Ket', 'Friday' => 'penktadienį', 'Fri' => 'Pen', 'Saturday' => 'šeštadienį', 'Sat' => 'Šeš' ); %month = ( 'January' => 'sausio', 'February' => 'vasario' , 'March' => 'kovo', 'Jan' => 'Sau', 'Feb' => 'Vas', 'Mar' => 'Kov', 'April' => 'balandžio', 'May' => 'gegužės', 'June' => 'birželio', 'Apr' => 'Bal', 'May' => 'Geg', 'Jun' => 'Bir', 'July' => 'liepos', 'August' => 'rugpjūčio', 'September' => 'rugsėjo', 'Jul' => 'Lie', 'Aug' => 'Rgp', 'Sep' => 'Rgs', 'October' => 'spalio', 'November' => 'lapkričio', 'December' => 'gruodžio', 'Oct' => 'Spa', 'Nov' => 'Lap', 'Dec' => 'Gru' ); @foo=($string=~/(\S+),\s+(\S+)\s+(\S+)(.*)/); if($foo[0] && $wday{$foo[0]} && $foo[2] && $month{$foo[2]} ) { if($foo[3]=~(/(.*)at(.*)/)) { @quux=split(/at/,$foo[3]); $foo[3]=$quux[1].", ".$quux[0]; }; return "$foo[3] $month{$foo[2]} $foo[1], $wday{$foo[0]}" ; }; # # handle two different time/date formats: # return "$wday, $mday $month ".($year+1900)." at $hour:$min"; # return "$wday, $mday $month ".($year+1900)." $hour:$min:$sec GMT"; # # handle nontranslated strings which ought to be translated # print STDERR "$_\n" or print DEBUG "not translated $_"; # but then again we might not want/need to translate all strings return $string; };