estonian.pmd
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:5k
源码类别:

SNMP编程

开发平台:

C/C++

  1. ###### PATCHTAG00 ####################################################
  2. ###      Estonian/Eesti   
  3. ###      => Klemens Kasemaa <klem@linux.ee>
  4. ###### PATCHTAG10 ####################################################
  5.   &estonian
  6. ###### PATCHTAG20 ####################################################
  7.   'estonian'       => &estonian, 
  8.   'eesti'        => &estonian,
  9. ###### PATCHTAG30 ####################################################
  10. # Estonian/Eesti
  11.    'estonian' =>
  12.    "T&otilde;lge eesti keelde 
  13. <a href="http://www.linux.ee/~klem">Klemens Kasemaa</a>
  14. <a href="mailto:klem@linux.ee">&lt;klem@linux.ee&gt;</a>",
  15. # the estonian string means: "Translation to estonian by"
  16. ###### PATCHTAG40 ####################################################
  17. $credits::LOCALE{'eesti'}=$credits::LOCALE{'estonian'};
  18. ###### PATCHTAG50 ####################################################
  19. # Estonian
  20. sub estonian
  21. {
  22.   my $string = shift;
  23. return "" unless defined $string;
  24.   my(%translations,%month,%wday);
  25.   my($i,$j);
  26.   my(@dollar,@quux,@foo);
  27.   
  28.   # regexp => replacement string NOTE does not use autovars $1,$2...
  29.   # charset=iso-2022-jp
  30.   %translations =
  31.   (  
  32.      #'charset=iso-8859-1'                     => 'charset=iso-8859-1',
  33.      'Maximal 5 Minute Incoming Traffic'      => '5 minuti maksimaalne sisenev liiklus',
  34.      'Maximal 5 Minute Outgoing Traffic'      => '5 minuti maksimaalne v&auml;ljuv liiklus',
  35.      'the device'                             => 'seade',
  36.      'The statistics were last updated(.*)'   => 'Statistikat uuendati viimati$1',
  37.      ' Average)'                             => ' keskmine)',
  38.      'Average'                                => 'Keskmine',
  39.      #'Max'                                    => 'Max',
  40.      'Current'                                => 'Hetkel',
  41.      'version'                                => 'versioon',
  42.      '`Daily' Graph ((.*) Minute'           => '`P&auml;evane' graafik ($1 minuti',
  43.      '`Weekly' Graph (30 Minute'            => '`N&auml;dala' graafik (30 minuti' ,
  44.      '`Monthly' Graph (2 Hour'              => '`Kuu ' graafik (2 tunni',
  45.      '`Yearly' Graph (1 Day'                => '`Aasta' graafik (1 p&auml;eva', 
  46.      'Incoming Traffic in (S+) per Second'   => 'Sisenev liiklus $1 sekundi kohta',
  47.      'Outgoing Traffic in (S+) per Second'   => 'V&auml;ljuv liiklus $1 sekundi kohta',
  48.      'at which time (.*) had been up for(.*)' => 'kui $1 on katkematult t&ouml;&ouml;tanud$2',
  49.      # '([kMG]?)([bB])/s'                 => '$1$2/s',
  50.      # '([kMG]?)([bB])/min'              => '$1$2/min',
  51.      '([kMG]?)([bB])/h'                       => '$1$2/t',
  52.       'Bits'                                => 'bitti',
  53.       'Bytes'                              => 'baiti',
  54.      'In'                                     => 'sisse',
  55.      'Out'                                    => 'v&auml;lja',
  56.      'Percentage'                             => 'protsent',
  57.      'Ported to OpenVMS Alpha by'             => 'portis OpenVMS-le:', 
  58.      'Ported to WindowsNT by'                 => 'portis WindowsNT-le:',
  59.      'and'                                    => 'ja',
  60.      '^GREEN'                                  => 'ROHELINE',
  61.      'BLUE'                                   => 'SININE',
  62.      'DARK GREEN'                             => 'TUMEROHELINE',
  63.      'MAGENTA'                                => 'LILLA',
  64.      'AMBER'                                  => 'HELEROHELINE'
  65.   );
  66. # maybe expansions with replacement of whitespace would be more appropriate
  67. foreach $i (keys %translations)
  68. {  
  69.   my $trans = $translations{$i};
  70.   $trans =~ s/|/|/;  
  71.   return $string if eval " $string =~ s|${i}|${trans}| ";
  72. };
  73. %wday = 
  74.     (
  75.       'Sunday'    => 'p&uuml;hap&auml;ev',    'Sun' => 'P',
  76.       'Monday'    => 'esmasp&auml;ev',           'Mon' => 'E',
  77.       'Tuesday'   => 'teisip&auml;ev',          'Tue' => 'T',
  78.       'Wednesday' => 'kolmap&auml;ev',           'Wed' => 'K',
  79.       'Thursday'  => 'neljap&auml;ev',          'Thu' => 'N',
  80.       'Friday'    => 'reede',           'Fri' => 'R',
  81.       'Saturday'  => 'laup&auml;ev',    'Sat' => 'L' 
  82.     );
  83. %month = 
  84.     (
  85.       'January'   => 'jaanuar',    'February'  => 'veebruar' ,    'March'     => 'm&auml;rts',
  86.       'Jan'       => 'jaan',       'Feb'       => 'veebr',         'Mar'       => 'm&auml;rts',
  87.       'April'     => 'aprill',     'May'       => 'mai',         'June'      => 'juuni', 
  88.       'Apr'       => 'aprill',       'May'       => 'mai',         'Jun'       => 'juuni',
  89.       'July'      => 'juuli',      'August'    => 'august',      'September' => 'september', 
  90.       'Jul'       => 'juuli',       'Aug'       => 'aug',         'Sep'       => 'sept', 
  91.       'October'   => 'oktoober',   'November'  => 'november',    'December'  => 'detsember', 
  92.       'Oct'       => 'okt',       'Nov'       => 'nov',         'Dec'       => 'dets' 
  93.     );
  94.   @foo=($string=~/(S+),s+(S+)s+(S+)(.*)/);
  95.   if($foo[0] && $wday{$foo[0]} && $foo[2] && $month{$foo[2]} )
  96.     {
  97. if($foo[3]=~(/(.*)at(.*)/))
  98.       { 
  99.         @quux=split(/at/,$foo[3]);
  100.         $foo[3]=$quux[0]." kl.".$quux[1]; 
  101.       };
  102.       return "$wday{$foo[0]}, $foo[1]. $month{$foo[2]} $foo[3]"; 
  103.     };
  104. #
  105. # handle two different time/date formats:  
  106. # return "$wday, $mday $month ".($year+1900)." at $hour:$min";
  107. # return "$wday, $mday $month ".($year+1900)." $hour:$min:$sec GMT";
  108. #
  109. # handle nontranslated strings which ought to be translated
  110. # print STDERR "$_n" or print DEBUG "not translated $_";
  111. # but then again we might not want/need to translate all strings
  112.   
  113.   return $string;
  114.   };