package Bibulus::gd; use strict; use warnings; use Carp; # This file is not finished. Please help if you know Gaelic! sub populate { my $self = shift; $self->{LANGTEXT}{gd}{and} ||= 'agus'; $self->{LANGTEXT}{gd}{etal} ||= '?et al.'; $self->{LANGTEXT}{gd}{editors}{full} ||= '?editors'; $self->{LANGTEXT}{gd}{editors}{abbr} ||= 'deas.'; $self->{LANGTEXT}{gd}{editor}{full} ||= '?editor'; $self->{LANGTEXT}{gd}{editor}{abbr} ||= 'deas.'; $self->{LANGTEXT}{gd}{edby} ||= '?edited by'; $self->{LANGTEXT}{gd}{edition}{full} ||= '?edition'; $self->{LANGTEXT}{gd}{edition}{abbr} ||= '?edn.'; $self->{LANGTEXT}{gd}{volume}{full} ||= '?volume'; $self->{LANGTEXT}{gd}{volume}{abbr} ||= '?vol.'; $self->{LANGTEXT}{gd}{of} ||= '?de'; $self->{LANGTEXT}{gd}{number}{full} ||= '?number'; $self->{LANGTEXT}{gd}{number}{abbr} ||= '?no.'; $self->{LANGTEXT}{gd}{nr} ||= '?no.'; $self->{LANGTEXT}{gd}{in} ||= 'ann an'; $self->{LANGTEXT}{gd}{pages}{full} ||= '?pages'; $self->{LANGTEXT}{gd}{pages}{abbr} ||= '?pp.'; $self->{LANGTEXT}{gd}{page}{full} ||= '?page'; $self->{LANGTEXT}{gd}{page}{abbr} ||= '?p.'; $self->{LANGTEXT}{gd}{eidpp} ||= '?pages'; $self->{LANGTEXT}{gd}{chapter}{full} ||= '?chapter'; $self->{LANGTEXT}{gd}{chapter}{abbr} ||= '?chap.'; $self->{LANGTEXT}{gd}{techrep}{full} ||= '?Technical Report'; $self->{LANGTEXT}{gd}{techrep}{abbr} ||= '?Tech. Rep.'; $self->{LANGTEXT}{gd}{mthesis} ||= '?Masters thesis'; $self->{LANGTEXT}{gd}{phdthesis} ||= '?Ph.D. thesis'; $self->{LANGTEXT}{gd}{edno}{1}{full} ||= 'a' chiad'; $self->{LANGTEXT}{gd}{edno}{1}{abbr} ||= '?1st'; $self->{LANGTEXT}{gd}{edno}{2}{full} ||= 'an dàrna'; $self->{LANGTEXT}{gd}{edno}{2}{abbr} ||= '2na'; $self->{LANGTEXT}{gd}{edno}{3}{full} ||= 'an treas'; $self->{LANGTEXT}{gd}{edno}{3}{abbr} ||= '3as'; $self->{LANGTEXT}{gd}{edno}{4}{full} ||= 'an ceathramh'; $self->{LANGTEXT}{gd}{edno}{4}{abbr} ||= '4mh'; $self->{LANGTEXT}{gd}{edno}{5}{full} ||= 'an cóigeamh'; $self->{LANGTEXT}{gd}{edno}{5}{abbr} ||= '5mh'; $self->{LANGTEXT}{gd}{th} ||= '?mh'; $self->{LANGTEXT}{gd}{month}{1}{full} ||= 'am Faoilleach'; $self->{LANGTEXT}{gd}{month}{2}{full} ||= 'an Gerran'; $self->{LANGTEXT}{gd}{month}{3}{full} ||= 'am Màrt'; $self->{LANGTEXT}{gd}{month}{4}{full} ||= 'an Giblean'; $self->{LANGTEXT}{gd}{month}{5}{full} ||= 'an Cèitean'; $self->{LANGTEXT}{gd}{month}{6}{full} ||= 'an t-Òg-mhios'; $self->{LANGTEXT}{gd}{month}{7}{full} ||= 'an t-Iuchar'; $self->{LANGTEXT}{gd}{month}{8}{full} ||= 'an Lùnasdal'; $self->{LANGTEXT}{gd}{month}{9}{full} ||= 'an t-Sultainn'; $self->{LANGTEXT}{gd}{month}{10}{full} ||= 'an Dàmhair'; $self->{LANGTEXT}{gd}{month}{11}{full} ||= 'an t-Samhainn'; $self->{LANGTEXT}{gd}{month}{12}{full} ||= 'an Dùbhlachd'; $self->{LANGTEXT}{gd}{spring} ||= 'an t-Earrach'; $self->{LANGTEXT}{gd}{summer} ||= 'an Samhradh'; $self->{LANGTEXT}{gd}{autumn} ||= 'am Foghar'; $self->{LANGTEXT}{gd}{winter} ||= 'an Geamhradh'; $self->{LANGTEXT}{gd}{month}{1}{abbr} ||= '?Jan.'; $self->{LANGTEXT}{gd}{month}{2}{abbr} ||= '?Feb.'; $self->{LANGTEXT}{gd}{month}{3}{abbr} ||= '?Mar.'; $self->{LANGTEXT}{gd}{month}{4}{abbr} ||= '?Apr.'; $self->{LANGTEXT}{gd}{month}{5}{abbr} ||= '?May'; $self->{LANGTEXT}{gd}{month}{6}{abbr} ||= '?Jun.'; $self->{LANGTEXT}{gd}{month}{7}{abbr} ||= '?Jul.'; $self->{LANGTEXT}{gd}{month}{8}{abbr} ||= '?Aug.'; $self->{LANGTEXT}{gd}{month}{9}{abbr} ||= '?Sep.'; $self->{LANGTEXT}{gd}{month}{10}{abbr} ||= '?Oct.'; $self->{LANGTEXT}{gd}{month}{11}{abbr} ||= '?Nov.'; $self->{LANGTEXT}{gd}{month}{12}{abbr} ||= '?Dec.'; $self->{LANGTEXT}{gd}{reprintedin} ||= 'clò-bhuailte ás ùr ann an'; $self->{LANGINIT}{gd} = 1; } 1; __END__ =head1 NAME Bibulus::Lang::gd - Bibulus support for Gaelic =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