package Bibulus::po; use strict; use warnings; use Carp; sub populate { my $self = shift; $self->{LANGTEXT}{po}{and} ||= 'i'; $self->{LANGTEXT}{po}{etal} ||= 'et al.'; $self->{LANGTEXT}{po}{editors}{full} ||= 'redaktorzy'; $self->{LANGTEXT}{po}{editors}{abbr} ||= 'red.'; $self->{LANGTEXT}{po}{editor}{full} ||= 'redaktor'; $self->{LANGTEXT}{po}{editor}{abbr} ||= 'red.'; $self->{LANGTEXT}{po}{edby} ||= 'pod redakcją'; $self->{LANGTEXT}{po}{edition}{full} ||= 'wydanie'; $self->{LANGTEXT}{po}{edition}{abbr} ||= 'wyd.'; $self->{LANGTEXT}{po}{volume}{full} ||= 'tom'; $self->{LANGTEXT}{po}{volume}{abbr} ||= 'tom'; $self->{LANGTEXT}{po}{of} ||= 'z serii'; $self->{LANGTEXT}{po}{number}{full} ||= 'numer'; $self->{LANGTEXT}{po}{number}{abbr} ||= 'nr'; $self->{LANGTEXT}{po}{nr} ||= 'nr'; $self->{LANGTEXT}{po}{in} ||= 'w'; $self->{LANGTEXT}{po}{pages}{full} ||= 'strony'; $self->{LANGTEXT}{po}{pages}{abbr} ||= 'str.'; $self->{LANGTEXT}{po}{page}{full} ||= 'strona'; $self->{LANGTEXT}{po}{page}{abbr} ||= 'str.'; $self->{LANGTEXT}{po}{eidpp} ||= 'strony'; $self->{LANGTEXT}{po}{chapter}{full} ||= 'rozdział'; $self->{LANGTEXT}{po}{chapter}{abbr} ||= 'rozdz.'; $self->{LANGTEXT}{po}{techrep}{full} ||= 'Raport techniczny'; $self->{LANGTEXT}{po}{techrep}{abbr} ||= 'Rap. tech.'; $self->{LANGTEXT}{po}{mthesis} ||= 'Praca magisterska'; $self->{LANGTEXT}{po}{phdthesis} ||= 'Rozprawa doktorska'; $self->{LANGTEXT}{po}{edno}{1}{full} ||= 'pierwsze'; $self->{LANGTEXT}{po}{edno}{1}{abbr} ||= '1.'; $self->{LANGTEXT}{po}{edno}{2}{full} ||= 'drugie'; $self->{LANGTEXT}{po}{edno}{2}{abbr} ||= '2.'; $self->{LANGTEXT}{po}{edno}{3}{full} ||= 'trzecie'; $self->{LANGTEXT}{po}{edno}{3}{abbr} ||= '3.'; $self->{LANGTEXT}{po}{edno}{4}{full} ||= 'czwarte'; $self->{LANGTEXT}{po}{edno}{4}{abbr} ||= '4.'; $self->{LANGTEXT}{po}{edno}{5}{full} ||= 'piąte'; $self->{LANGTEXT}{po}{edno}{5}{abbr} ||= '5.'; $self->{LANGTEXT}{po}{st} ||= '.'; $self->{LANGTEXT}{po}{nd} ||= '.'; $self->{LANGTEXT}{po}{rd} ||= '.'; $self->{LANGTEXT}{po}{th} ||= '.'; $self->{LANGTEXT}{po}{month}{1}{full} ||= 'styczeń'; $self->{LANGTEXT}{po}{month}{2}{full} ||= 'luty'; $self->{LANGTEXT}{po}{month}{3}{full} ||= 'marzec'; $self->{LANGTEXT}{po}{month}{4}{full} ||= 'kwiecień'; $self->{LANGTEXT}{po}{month}{5}{full} ||= 'maj'; $self->{LANGTEXT}{po}{month}{6}{full} ||= 'czerwiec'; $self->{LANGTEXT}{po}{month}{7}{full} ||= 'lipiec'; $self->{LANGTEXT}{po}{month}{8}{full} ||= 'sierpień'; $self->{LANGTEXT}{po}{month}{9}{full} ||= 'wrzesień'; $self->{LANGTEXT}{po}{month}{10}{full} ||= 'pażdziernik'; $self->{LANGTEXT}{po}{month}{11}{full} ||= 'listopad'; $self->{LANGTEXT}{po}{month}{12}{full} ||= 'grudzień'; $self->{LANGTEXT}{po}{month}{1}{abbr} ||= 'stycz.'; $self->{LANGTEXT}{po}{month}{2}{abbr} ||= 'luty'; $self->{LANGTEXT}{po}{month}{3}{abbr} ||= 'marz.'; $self->{LANGTEXT}{po}{month}{4}{abbr} ||= 'kwiec.'; $self->{LANGTEXT}{po}{month}{5}{abbr} ||= 'maj'; $self->{LANGTEXT}{po}{month}{6}{abbr} ||= 'czer.'; $self->{LANGTEXT}{po}{month}{7}{abbr} ||= 'lip.'; $self->{LANGTEXT}{po}{month}{8}{abbr} ||= 'sier.'; $self->{LANGTEXT}{po}{month}{9}{abbr} ||= 'wrz.'; $self->{LANGTEXT}{po}{month}{10}{abbr} ||= 'pażdz.'; $self->{LANGTEXT}{po}{month}{11}{abbr} ||= 'list.'; $self->{LANGTEXT}{po}{month}{12}{abbr} ||= 'grudz.'; $self->{LANGINIT}{po} = 1; } 1; __END__ =head1 NAME Bibulus::Lang::po - Bibulus support for Polish =head2 EXPORT None. =head1 SEE ALSO F, F. The homepage is L. =head1 AUTHOR Thomas M. Widmann, L =head1 COPYRIGHT AND LICENSE Copyright 2003 by Thomas M. Widmann This module is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. =cut