package Bibulus::si; use strict; use warnings; use Carp; sub populate { my $self = shift; $self->{LANGTEXT}{si}{and} ||= 'in'; $self->{LANGTEXT}{si}{etal} ||= 'in sod.'; $self->{LANGTEXT}{si}{editors}{full} ||= 'Uredniki'; $self->{LANGTEXT}{si}{editors}{abbr} ||= 'ur.'; $self->{LANGTEXT}{si}{editor}{full} ||= 'Urednik'; $self->{LANGTEXT}{si}{editor}{abbr} ||= 'ur.'; $self->{LANGTEXT}{si}{edby} ||= 'uredil'; $self->{LANGTEXT}{si}{edition}{full} ||= 'izdaja'; $self->{LANGTEXT}{si}{edition}{abbr} ||= 'izd.'; $self->{LANGTEXT}{si}{volume}{full} ||= 'zvezek'; $self->{LANGTEXT}{si}{volume}{abbr} ||= 'zv.'; $self->{LANGTEXT}{si}{of} ||= 'od'; $self->{LANGTEXT}{si}{number}{full} ||= 'številka'; $self->{LANGTEXT}{si}{number}{abbr} ||= 'št.'; $self->{LANGTEXT}{si}{nr} ||= 'št.'; $self->{LANGTEXT}{si}{in} ||= 'v'; $self->{LANGTEXT}{si}{pages}{full} ||= 'strani'; $self->{LANGTEXT}{si}{pages}{abbr} ||= 'str.'; $self->{LANGTEXT}{si}{page}{full} ||= 'stran'; $self->{LANGTEXT}{si}{page}{abbr} ||= 'str.'; $self->{LANGTEXT}{si}{chapter}{full} ||= 'poglavje'; $self->{LANGTEXT}{si}{chapter}{abbr} ||= 'pogl.'; $self->{LANGTEXT}{si}{techrep}{full} ||= 'Tehnično poročilo'; $self->{LANGTEXT}{si}{techrep}{abbr} ||= 'Tehn. por.'; $self->{LANGTEXT}{si}{mthesis} ||= 'Magistrsko delo'; $self->{LANGTEXT}{si}{phdthesis} ||= 'Doktorsko delo'; $self->{LANGTEXT}{si}{edno}{1}{full} ||= 'prva'; $self->{LANGTEXT}{si}{edno}{1}{abbr} ||= '1.'; $self->{LANGTEXT}{si}{edno}{2}{full} ||= 'druga'; $self->{LANGTEXT}{si}{edno}{2}{abbr} ||= '2.'; $self->{LANGTEXT}{si}{edno}{3}{full} ||= 'tretja'; $self->{LANGTEXT}{si}{edno}{3}{abbr} ||= '3.'; $self->{LANGTEXT}{si}{edno}{4}{full} ||= 'četrta'; $self->{LANGTEXT}{si}{edno}{4}{abbr} ||= '4.'; $self->{LANGTEXT}{si}{edno}{5}{full} ||= 'peta'; $self->{LANGTEXT}{si}{edno}{5}{abbr} ||= '5.'; $self->{LANGTEXT}{si}{th} ||= '.'; $self->{LANGTEXT}{si}{month}{1}{full} ||= 'januar'; $self->{LANGTEXT}{si}{month}{2}{full} ||= 'februar'; $self->{LANGTEXT}{si}{month}{3}{full} ||= 'marec'; $self->{LANGTEXT}{si}{month}{4}{full} ||= 'april'; $self->{LANGTEXT}{si}{month}{5}{full} ||= 'maj'; $self->{LANGTEXT}{si}{month}{6}{full} ||= 'junij'; $self->{LANGTEXT}{si}{month}{7}{full} ||= 'julij'; $self->{LANGTEXT}{si}{month}{8}{full} ||= 'avgust'; $self->{LANGTEXT}{si}{month}{9}{full} ||= 'september'; $self->{LANGTEXT}{si}{month}{10}{full} ||= 'oktober'; $self->{LANGTEXT}{si}{month}{11}{full} ||= 'november'; $self->{LANGTEXT}{si}{month}{12}{full} ||= 'december'; $self->{LANGTEXT}{si}{month}{1}{abbr} ||= 'jan.'; $self->{LANGTEXT}{si}{month}{2}{abbr} ||= 'feb.'; $self->{LANGTEXT}{si}{month}{3}{abbr} ||= 'mar.'; $self->{LANGTEXT}{si}{month}{4}{abbr} ||= 'apr.'; $self->{LANGTEXT}{si}{month}{5}{abbr} ||= 'maj'; $self->{LANGTEXT}{si}{month}{6}{abbr} ||= 'jun.'; $self->{LANGTEXT}{si}{month}{7}{abbr} ||= 'jul.'; $self->{LANGTEXT}{si}{month}{8}{abbr} ||= 'avg.'; $self->{LANGTEXT}{si}{month}{9}{abbr} ||= 'sep.'; $self->{LANGTEXT}{si}{month}{10}{abbr} ||= 'okt.'; $self->{LANGTEXT}{si}{month}{11}{abbr} ||= 'nov.'; $self->{LANGTEXT}{si}{month}{12}{abbr} ||= 'dec.'; $self->{LANGINIT}{si} = 1; } 1; __END__ =head1 NAME Bibulus::Lang::si - Bibulus support for Slovenian =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