package Bibulus::no; use strict; use warnings; use Carp; sub populate { my $self = shift; $self->{LANGTEXT}{no}{and} ||= 'og'; $self->{LANGTEXT}{no}{etal} ||= 'et al.'; $self->{LANGTEXT}{no}{editors}{full} ||= 'redaktører'; $self->{LANGTEXT}{no}{editors}{abbr} ||= 'red.'; $self->{LANGTEXT}{no}{editor}{full} ||= 'redaktør'; $self->{LANGTEXT}{no}{editor}{abbr} ||= 'red.'; $self->{LANGTEXT}{no}{edby} ||= 'redigert av'; $self->{LANGTEXT}{no}{edition}{full} ||= 'utgave'; $self->{LANGTEXT}{no}{edition}{abbr} ||= 'utg.'; $self->{LANGTEXT}{no}{volume}{full} ||= 'bind'; $self->{LANGTEXT}{no}{volume}{abbr} ||= 'bd.'; $self->{LANGTEXT}{no}{of} ||= 'av'; $self->{LANGTEXT}{no}{number}{full} ||= 'nummer'; $self->{LANGTEXT}{no}{number}{abbr} ||= 'nr.'; $self->{LANGTEXT}{no}{nr} ||= 'nr.'; $self->{LANGTEXT}{no}{in} ||= 'i'; $self->{LANGTEXT}{no}{pages}{full} ||= 'sider'; $self->{LANGTEXT}{no}{pages}{abbr} ||= 'ss.'; $self->{LANGTEXT}{no}{page}{full} ||= 'side'; $self->{LANGTEXT}{no}{page}{abbr} ||= 's.'; $self->{LANGTEXT}{no}{eidpp} ||= 'sider'; $self->{LANGTEXT}{no}{chapter}{full} ||= 'kapitel'; $self->{LANGTEXT}{no}{chapter}{abbr} ||= 'kap.'; $self->{LANGTEXT}{no}{techrep}{full} ||= 'Teknisk rapport'; $self->{LANGTEXT}{no}{techrep}{abbr} ||= 'Tekn. rap.'; $self->{LANGTEXT}{no}{mthesis} ||= 'Hovedoppgave'; $self->{LANGTEXT}{no}{phdthesis} ||= 'Doktorgradsavhandling'; $self->{LANGTEXT}{no}{edno}{1}{full} ||= 'Første'; $self->{LANGTEXT}{no}{edno}{1}{abbr} ||= '1.'; $self->{LANGTEXT}{no}{edno}{2}{full} ||= 'Annen'; $self->{LANGTEXT}{no}{edno}{2}{abbr} ||= '2.'; $self->{LANGTEXT}{no}{edno}{3}{full} ||= 'Tredje'; $self->{LANGTEXT}{no}{edno}{3}{abbr} ||= '3.'; $self->{LANGTEXT}{no}{edno}{4}{full} ||= 'Fjerde'; $self->{LANGTEXT}{no}{edno}{4}{abbr} ||= '4.'; $self->{LANGTEXT}{no}{edno}{5}{full} ||= 'Femte'; $self->{LANGTEXT}{no}{edno}{5}{abbr} ||= '5.'; $self->{LANGTEXT}{no}{th} ||= '.'; $self->{LANGTEXT}{no}{month}{1}{full} ||= 'Januar'; $self->{LANGTEXT}{no}{month}{2}{full} ||= 'Februar'; $self->{LANGTEXT}{no}{month}{3}{full} ||= 'Mars'; $self->{LANGTEXT}{no}{month}{4}{full} ||= 'April'; $self->{LANGTEXT}{no}{month}{5}{full} ||= 'Mai'; $self->{LANGTEXT}{no}{month}{6}{full} ||= 'Juni'; $self->{LANGTEXT}{no}{month}{7}{full} ||= 'Juli'; $self->{LANGTEXT}{no}{month}{8}{full} ||= 'August'; $self->{LANGTEXT}{no}{month}{9}{full} ||= 'September'; $self->{LANGTEXT}{no}{month}{10}{full} ||= 'Oktober'; $self->{LANGTEXT}{no}{month}{11}{full} ||= 'November'; $self->{LANGTEXT}{no}{month}{12}{full} ||= 'Desember'; $self->{LANGTEXT}{no}{month}{1}{abbr} ||= 'Jan.'; $self->{LANGTEXT}{no}{month}{2}{abbr} ||= 'Feb.'; $self->{LANGTEXT}{no}{month}{3}{abbr} ||= 'Mar.'; $self->{LANGTEXT}{no}{month}{4}{abbr} ||= 'Apr.'; $self->{LANGTEXT}{no}{month}{5}{abbr} ||= 'Mai'; $self->{LANGTEXT}{no}{month}{6}{abbr} ||= 'Jun.'; $self->{LANGTEXT}{no}{month}{7}{abbr} ||= 'Jul.'; $self->{LANGTEXT}{no}{month}{8}{abbr} ||= 'Aug.'; $self->{LANGTEXT}{no}{month}{9}{abbr} ||= 'Sep.'; $self->{LANGTEXT}{no}{month}{10}{abbr} ||= 'Oct.'; $self->{LANGTEXT}{no}{month}{11}{abbr} ||= 'Nov.'; $self->{LANGTEXT}{no}{month}{12}{abbr} ||= 'Des.'; $self->{LANGINIT}{no} = 1; } 1; __END__ =head1 NAME Bibulus::Lang::no - Bibulus support for Norwegian (Bokmål) =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