📄 spanish.pmd
字号:
###### PATCHTAG00 ####################################################### Spanish/Espa駉l### => Marcelo Roccasalva <marcelo@linuxfan.com>###### PATCHTAG10 #################################################### &spanish###### PATCHTAG20 #################################################### 'spanish' => \&spanish, 'espanol' => \&spanish,###### PATCHTAG30 ##################################################### Spanish/espa駉l 'spanish' => " <HR NOSHADE> <TD WIDTH=388 ALIGN=RIGHT><FONT FACE=\"Arial,Helvetica\" SIZE=2> Preparado para localizaci髇 por <NOBR><A HREF=\"mailto:marcelo\@linuxfan.com\">Marcelo Roccasalva</A> </NOBR>",###### PATCHTAG40 ####################################################$credits::LOCALE{'espanol'}=$credits::LOCALE{'spanish'};###### PATCHTAG50 ##################################################### Spanishsub spanish{ my($string)=pop(@_); my(%translations,%month,%wday); my($i,$j); my(@dollar,@quux,@foo); # regexp => replacement string NOTE does not use autovars $1,$2... %translations = ( 'charset=iso-8859-1' => 'charset=iso-8859-1', 'Maximal 5 Minute Incoming Traffic' => 'Tráfico entrante máximo en 5 minutos', 'Maximal 5 Minute Outgoing Traffic' => 'Tráfico saliente máximo en 5 minutos', 'the device' => 'el dispositivo', 'The statistics were last updated(.*)' => 'Estadísticas actualizadas el $1', ' Average\)</B><BR>' => ' Promedio)</B><BR>', '<TD ALIGN=right><SMALL>Average(.*)' => '<TD ALIGN=right><SMALL>Promedio $1', '<TD ALIGN=right><SMALL>Max(.*)' => '<TD ALIGN=right><SMALL>Máx$1', '<TD ALIGN=right><SMALL>Current(.*)' => '<TD ALIGN=right><SMALL>Actual$1', 'version' => 'version', '<B>`Daily\' Graph \((.*) Minute' => '<B>Gráfico diario ($1 minutos :', '<B>`Weekly\' Graph \(30 Minute' => '<B>Gráfico semanal (30 minutos :' , '<B>`Monthly\' Graph \(2 Hour' => '<B>Gráfico mensual (2 horas :', '<B>`Yearly\' Graph \(1 Day' => '<B>Gráfico anual (1 día :', 'Incoming Traffic in (\S+) per Second' => 'Tráfico entrante en $1 por segundo', 'Outgoing Traffic in (\S+) per Second' => 'Tráfico saliente en $1 por segundo', 'at which time (.*) had been up for(.*)' => '$1 ha estado funcionando durante $2', # '([kMG]?)([bB])/s' => '\$1\$2/s', # '([kMG]?)([bB])/min' => '\$1\$2/min', # '([kMG]?)([bB])/h' => '$1$2/t', # 'Bits' => 'Bits', # 'Bytes' => 'Bytes' ' In:</FONT>' => ' Entrante:</FONT>', ' Out:</FONT>' => ' Saliente:</FONT>', ' Percentage</FONT>' => ' Porcentaje:</FONT>', 'Ported to OpenVMS Alpha by' => 'Portado a OpenVMS Alpha por', 'Ported to WindowsNT by' => 'Portado a WindowsNT por', 'and' => 'y', '^GREEN' => 'VERDE', 'BLUE' => 'AZUL', 'DARK GREEN' => 'VERDE OSCURO', 'MAGENTA' => 'MAGENTA', 'AMBER' => 'AMBAR' );# maybe expansions with replacement of whitespace would be more appropriateforeach $i (keys %translations){ if($string=~/$i/) { (@dollar)=($string=~/()$i/); # I hope this prevents the autovars $string=$translations{$i}; # And it only works from $1-$9 for($j=1;@dollar[$j];$j++) # s/// doesn't do any good with saved "$1"-exprs. { @quux=(); (@quux)=split(/\$$j/,$string); $string=@quux[0].@dollar[$j].@quux[1]; } ; return $string; };};%wday = ( 'Sunday' => 'Domingo', 'Sun' => 'Dom', 'Monday' => 'Lunes', 'Mon' => 'Lun', 'Tuesday' => 'Martes', 'Tue' => 'Mar', 'Wednesday' => 'Miércoles','Wed' => 'Mié', 'Thursday' => 'Jueves', 'Thu' => 'Jue', 'Friday' => 'Viernes', 'Fri' => 'Vie', 'Saturday' => 'Sábado', 'Sat' => 'Sab' );%month = ( 'January' => 'Enero', 'February' => 'Febrero' , 'March' => 'Marzo', 'Jan' => 'Ene', 'Feb' => 'Feb', 'Mar' => 'Mar', 'April' => 'Abril', 'May' => 'Mayo', 'June' => 'Junio', 'Apr' => 'Abr', 'May' => 'Mai', 'Jun' => 'Jun', 'July' => 'Julio', 'August' => 'Agosto', 'September' => 'Setiembre', 'Jul' => 'Jul', 'Aug' => 'Ago', 'Sep' => 'Set', 'October' => 'Octubre', 'November' => 'Noviembre', 'December' => 'Diciembre', 'Oct' => 'Oct', 'Nov' => 'Nov', 'Dec' => 'Dic' ); @foo=($string=~/(\S+),\s+(\S+)\s+(\S+)(.*)/); if( $wday{@foo[0]} && $month{@foo[2]} ) { if(@foo[3]=~(/(.*)at(.*)/)) { @quux=split(/at/,@foo[3]); @foo[3]=@quux[0]." a las ".@quux[1]; }; return "$wday{@foo[0]} @foo[1] de $month{@foo[2]} de @foo[3]"; }; return $string;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -