[otrs-cvs] Calendar/Kernel/Language de_AgentCalendar.pm, 1.8,
1.9 fr_AgentCalendar.pm, 1.1, 1.2 it_AgentCalendar.pm, 1.4,
1.5 nb_NO_AgentCalendar.pm, 1.4, 1.5 pt_AgentCalendar.pm, 1.3, 1.4
cvs-log at otrs.org
cvs-log at otrs.org
Fri Mar 21 02:13:01 GMT 2008
Comments:
Update of /home/cvs/Calendar/Kernel/Language
In directory lancelot:/tmp/cvs-serv9864/Kernel/Language
Modified Files:
de_AgentCalendar.pm fr_AgentCalendar.pm it_AgentCalendar.pm
nb_NO_AgentCalendar.pm pt_AgentCalendar.pm
Log Message:
Code layout cleanup.
Author: martin
Index: de_AgentCalendar.pm
===================================================================
RCS file: /home/cvs/Calendar/Kernel/Language/de_AgentCalendar.pm,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** de_AgentCalendar.pm 15 Jan 2007 22:16:57 -0000 1.8
--- de_AgentCalendar.pm 21 Mar 2008 02:12:56 -0000 1.9
***************
*** 1,5 ****
# --
# Kernel/Language/de_AgentCalendar.pm - the de language for AgentCalendar
! # Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
# --
# $Id$
--- 1,5 ----
# --
# Kernel/Language/de_AgentCalendar.pm - the de language for AgentCalendar
! # Copyright (C) 2001-2008 OTRS AG, http://otrs.org/
# --
# $Id$
***************
*** 7,11 ****
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
--- 7,11 ----
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl-2.0.txt.
# --
***************
*** 16,66 ****
sub Data {
my $Self = shift;
! $Self->{Translation}->{'CW'} = 'KW';
! $Self->{Translation}->{'Today'} = 'Heute';
! $Self->{Translation}->{'Tomorrow'} = 'Morgen';
! $Self->{Translation}->{'Running'} = 'Laufen';
! $Self->{Translation}->{'Feast of Corpus Christi'} = '';
! $Self->{Translation}->{'Whitsunday'} = '';
! $Self->{Translation}->{'Whitmonday'} = '';
! $Self->{Translation}->{'Ascension of Christ'} = '';
! $Self->{Translation}->{'1 St. May'} = 'Erster Mai';
! $Self->{Translation}->{'Christmas'} = 'Weihnachten';
! $Self->{Translation}->{'First Christmas Day'} = 'Erster Weihnachtstag';
! $Self->{Translation}->{'Second Christmas Day'} = 'Zweiter Weihnachtstag';
! $Self->{Translation}->{'Silvester'} = 'Silvester';
! $Self->{Translation}->{'New Year\'s Eve!'} = 'Neu Jahr!';
! $Self->{Translation}->{'January'} = 'Januar';
! $Self->{Translation}->{'February'} = 'Februar';
! $Self->{Translation}->{'March'} = 'März';
! $Self->{Translation}->{'April'} = '';
! $Self->{Translation}->{'June'} = 'Juni';
! $Self->{Translation}->{'July'} = 'Juli';
! $Self->{Translation}->{'August'} = '';
! $Self->{Translation}->{'September'} = '';
! $Self->{Translation}->{'October'} = 'Oktober';
! $Self->{Translation}->{'November'} = '';
! $Self->{Translation}->{'December'} = 'Dezember';
! $Self->{Translation}->{'5 Day'} = '5 Tage';
! $Self->{Translation}->{'7 Day'} = '7 Tage';
! $Self->{Translation}->{'3 Month'} = '3 Monate';
! $Self->{Translation}->{'public'} = 'Öffentlich';
! $Self->{Translation}->{'private'} = 'Privat';
! $Self->{Translation}->{'vacation'} = 'Freizeit';
! $Self->{Translation}->{'meeting'} = 'Meeting';
! $Self->{Translation}->{'New Event...'} = 'Neu ...';
! $Self->{Translation}->{'Participant'} = 'Teilnehmer';
! $Self->{Translation}->{'Involved'} = 'Involviert';
! $Self->{Translation}->{'None'} = 'Keine';
! $Self->{Translation}->{'Weekly'} = 'Wöchentlich';
! $Self->{Translation}->{'Monthly'} = 'Monatlich';
! $Self->{Translation}->{'Yearly'} = 'Jährlich';
! $Self->{Translation}->{'Sequence'} = 'Sequenz';
! $Self->{Translation}->{'Sequence End'} = 'Sequenzende';
! $Self->{Translation}->{'1. first'} = '1. ersten';
! $Self->{Translation}->{'2. second'} = '2. zweiten';
! $Self->{Translation}->{'3. third'} = '3. dritten';
! $Self->{Translation}->{'4. fourth'} = '4. vierten';
}
! 1;
\ No newline at end of file
--- 16,71 ----
sub Data {
my $Self = shift;
+ my $Translation = $Self->{Translation};
! return if ref $Translation ne 'HASH';
!
! $Translation->{'CW'} = 'KW';
! $Translation->{'Today'} = 'Heute';
! $Translation->{'Tomorrow'} = 'Morgen';
! $Translation->{'Running'} = 'Laufen';
! $Translation->{'Feast of Corpus Christi'} = '';
! $Translation->{'Whitsunday'} = '';
! $Translation->{'Whitmonday'} = '';
! $Translation->{'Ascension of Christ'} = '';
! $Translation->{'1 St. May'} = 'Erster Mai';
! $Translation->{'Christmas'} = 'Weihnachten';
! $Translation->{'First Christmas Day'} = 'Erster Weihnachtstag';
! $Translation->{'Second Christmas Day'} = 'Zweiter Weihnachtstag';
! $Translation->{'Silvester'} = 'Silvester';
! $Translation->{'New Year\'s Eve!'} = 'Neu Jahr!';
! $Translation->{'January'} = 'Januar';
! $Translation->{'February'} = 'Februar';
! $Translation->{'March'} = 'März';
! $Translation->{'April'} = '';
! $Translation->{'June'} = 'Juni';
! $Translation->{'July'} = 'Juli';
! $Translation->{'August'} = '';
! $Translation->{'September'} = '';
! $Translation->{'October'} = 'Oktober';
! $Translation->{'November'} = '';
! $Translation->{'December'} = 'Dezember';
! $Translation->{'5 Day'} = '5 Tage';
! $Translation->{'7 Day'} = '7 Tage';
! $Translation->{'3 Month'} = '3 Monate';
! $Translation->{'public'} = 'Öffentlich';
! $Translation->{'private'} = 'Privat';
! $Translation->{'vacation'} = 'Freizeit';
! $Translation->{'meeting'} = 'Meeting';
! $Translation->{'New Event...'} = 'Neu ...';
! $Translation->{'Participant'} = 'Teilnehmer';
! $Translation->{'Involved'} = 'Involviert';
! $Translation->{'None'} = 'Keine';
! $Translation->{'Weekly'} = 'Wöchentlich';
! $Translation->{'Monthly'} = 'Monatlich';
! $Translation->{'Yearly'} = 'Jährlich';
! $Translation->{'Sequence'} = 'Sequenz';
! $Translation->{'Sequence End'} = 'Sequenzende';
! $Translation->{'1. first'} = '1. ersten';
! $Translation->{'2. second'} = '2. zweiten';
! $Translation->{'3. third'} = '3. dritten';
! $Translation->{'4. fourth'} = '4. vierten';
!
! return 1;
}
! 1;
Author: martin
Index: fr_AgentCalendar.pm
===================================================================
RCS file: /home/cvs/Calendar/Kernel/Language/fr_AgentCalendar.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** fr_AgentCalendar.pm 27 Jun 2007 23:03:09 -0000 1.1
--- fr_AgentCalendar.pm 21 Mar 2008 02:12:56 -0000 1.2
***************
*** 1,5 ****
# --
# Kernel/Language/fr_AgentCalendar.pm - the fr language for AgentCalendar
! # Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
# --
# $Id$
--- 1,5 ----
# --
# Kernel/Language/fr_AgentCalendar.pm - the fr language for AgentCalendar
! # Copyright (C) 2001-2008 OTRS AG, http://otrs.org/
# --
# $Id$
***************
*** 7,11 ****
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
--- 7,11 ----
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl-2.0.txt.
# --
***************
*** 16,56 ****
sub Data {
my $Self = shift;
! $Self->{Translation}->{'CW'} = 'sem';
! $Self->{Translation}->{'Today'} = 'Aujourd\'hui';
! $Self->{Translation}->{'Tomorrow'} = 'Demain';
! $Self->{Translation}->{'Running'} = 'En cours';
! $Self->{Translation}->{'Feast of Corpus Christi'} = 'Vendredi de Pâques';
! $Self->{Translation}->{'Whitsunday'} = 'Pâques';
! $Self->{Translation}->{'Whitmonday'} = 'Lundi de Pâques';
! $Self->{Translation}->{'Ascension of Christ'} = 'Ascension';
! $Self->{Translation}->{'1 St. May'} = '1er Mai';
! $Self->{Translation}->{'Christmas'} = 'Veille de Noël';
! $Self->{Translation}->{'First Christmas Day'} = 'Jour de Nöel';
! $Self->{Translation}->{'Second Christmas Day'} = 'Lendemain de Noël';
! $Self->{Translation}->{'Silvester'} = 'St Silvester';
! $Self->{Translation}->{'New Year\'s Eve!'} = 'Nouvelle année !';
! $Self->{Translation}->{'January'} = 'Janvier';
! $Self->{Translation}->{'February'} = 'Février';
! $Self->{Translation}->{'March'} = 'Mars';
! $Self->{Translation}->{'April'} = 'Avril';
! $Self->{Translation}->{'June'} = 'Juin';
! $Self->{Translation}->{'July'} = 'Juillet';
! $Self->{Translation}->{'August'} = 'Août';
! $Self->{Translation}->{'September'} = 'Septembre';
! $Self->{Translation}->{'October'} = 'Octobre';
! $Self->{Translation}->{'November'} = 'Novembre';
! $Self->{Translation}->{'December'} = 'Decembre';
! $Self->{Translation}->{'5 Day'} = '5 jours';
! $Self->{Translation}->{'7 Day'} = '7 jours';
! $Self->{Translation}->{'3 Month'} = '3 mois';
! $Self->{Translation}->{'public'} = 'public';
! $Self->{Translation}->{'private'} = 'Privé';
! $Self->{Translation}->{'vacation'} = 'congés';
! $Self->{Translation}->{'meeting'} = 'Réunion';
! $Self->{Translation}->{'New Event...'} = 'Nouvel événement ...';
! $Self->{Translation}->{'Involved'} = 'Concerné';
! $Self->{Translation}->{''} = '';
}
1;
--- 16,60 ----
sub Data {
my $Self = shift;
+ my $Translation = $Self->{Translation};
! return if ref $Translation ne 'HASH';
+ $Translation->{'CW'} = 'sem';
+ $Translation->{'Today'} = 'Aujourd\'hui';
+ $Translation->{'Tomorrow'} = 'Demain';
+ $Translation->{'Running'} = 'En cours';
+ $Translation->{'Feast of Corpus Christi'} = 'Vendredi de Pâques';
+ $Translation->{'Whitsunday'} = 'Pâques';
+ $Translation->{'Whitmonday'} = 'Lundi de Pâques';
+ $Translation->{'Ascension of Christ'} = 'Ascension';
+ $Translation->{'1 St. May'} = '1er Mai';
+ $Translation->{'Christmas'} = 'Veille de Noël';
+ $Translation->{'First Christmas Day'} = 'Jour de Nöel';
+ $Translation->{'Second Christmas Day'} = 'Lendemain de Noël';
+ $Translation->{'Silvester'} = 'St Silvester';
+ $Translation->{'New Year\'s Eve!'} = 'Nouvelle année !';
+ $Translation->{'January'} = 'Janvier';
+ $Translation->{'February'} = 'Février';
+ $Translation->{'March'} = 'Mars';
+ $Translation->{'April'} = 'Avril';
+ $Translation->{'June'} = 'Juin';
+ $Translation->{'July'} = 'Juillet';
+ $Translation->{'August'} = 'Août';
+ $Translation->{'September'} = 'Septembre';
+ $Translation->{'October'} = 'Octobre';
+ $Translation->{'November'} = 'Novembre';
+ $Translation->{'December'} = 'Decembre';
+ $Translation->{'5 Day'} = '5 jours';
+ $Translation->{'7 Day'} = '7 jours';
+ $Translation->{'3 Month'} = '3 mois';
+ $Translation->{'public'} = 'public';
+ $Translation->{'private'} = 'Privé';
+ $Translation->{'vacation'} = 'congés';
+ $Translation->{'meeting'} = 'Réunion';
+ $Translation->{'New Event...'} = 'Nouvel événement ...';
+ $Translation->{'Involved'} = 'Concerné';
+ $Translation->{''} = '';
+
+ return 1;
}
1;
Author: martin
Index: it_AgentCalendar.pm
===================================================================
RCS file: /home/cvs/Calendar/Kernel/Language/it_AgentCalendar.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** it_AgentCalendar.pm 15 Jan 2007 22:16:57 -0000 1.4
--- it_AgentCalendar.pm 21 Mar 2008 02:12:56 -0000 1.5
***************
*** 1,5 ****
# --
# Kernel/Language/it_AgentCalendar.pm - the it language for AgentCalendar
! # Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
# --
# $Id$
--- 1,5 ----
# --
# Kernel/Language/it_AgentCalendar.pm - the it language for AgentCalendar
! # Copyright (C) 2001-2008 OTRS AG, http://otrs.org/
# --
# $Id$
***************
*** 7,11 ****
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
--- 7,11 ----
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl-2.0.txt.
# --
***************
*** 16,56 ****
sub Data {
my $Self = shift;
! $Self->{Translation}->{'CW'} = 'Settimana';
! $Self->{Translation}->{'Today'} = 'Oggi';
! $Self->{Translation}->{'Tomorrow'} = 'Domani';
! $Self->{Translation}->{'Running'} = 'In corso';
! $Self->{Translation}->{'Feast of Corpus Christi'} = 'Corpus Christi';
! $Self->{Translation}->{'Whitsunday'} = '';
! $Self->{Translation}->{'Whitmonday'} = '';
! $Self->{Translation}->{'Ascension of Christ'} = 'Ascensione di Cristo';
! $Self->{Translation}->{'1 St. May'} = 'Primo Maggio';
! $Self->{Translation}->{'Christmas'} = 'Vigilia di Natale';
! $Self->{Translation}->{'First Christmas Day'} = 'Natale';
! $Self->{Translation}->{'Second Christmas Day'} = 'Santo Stefano';
! $Self->{Translation}->{'Silvester'} = 'San Silvestro';
! $Self->{Translation}->{'New Year\'s Eve!'} = 'Capodanno';
! $Self->{Translation}->{'January'} = 'Gennaio';
! $Self->{Translation}->{'February'} = 'Febbraio';
! $Self->{Translation}->{'March'} = 'Marzo';
! $Self->{Translation}->{'May'} = 'Maggio';
! $Self->{Translation}->{'April'} = 'Aprile';
! $Self->{Translation}->{'June'} = 'Giugno';
! $Self->{Translation}->{'July'} = 'Luglio';
! $Self->{Translation}->{'August'} = 'Agosto';
! $Self->{Translation}->{'September'} = 'Settembre';
! $Self->{Translation}->{'October'} = 'Ottobre';
! $Self->{Translation}->{'November'} = 'Novembre';
! $Self->{Translation}->{'December'} = 'Dicembre';
! $Self->{Translation}->{'5 Day'} = '5 Giorni';
! $Self->{Translation}->{'7 Day'} = '7 Giorni';
! $Self->{Translation}->{'3 Month'} = '3 Mesi';
! $Self->{Translation}->{'public'} = 'pubblico';
! $Self->{Translation}->{'private'} = 'privato';
! $Self->{Translation}->{'vacation'} = '';
! $Self->{Translation}->{'meeting'} = '';
! $Self->{Translation}->{'New Event...'} = 'Nuovo...';
! $Self->{Translation}->{'Participant'} = 'Partecipante';
}
! 1;
\ No newline at end of file
--- 16,61 ----
sub Data {
my $Self = shift;
+ my $Translation = $Self->{Translation};
! return if ref $Translation ne 'HASH';
!
! $Translation->{'CW'} = 'Settimana';
! $Translation->{'Today'} = 'Oggi';
! $Translation->{'Tomorrow'} = 'Domani';
! $Translation->{'Running'} = 'In corso';
! $Translation->{'Feast of Corpus Christi'} = 'Corpus Christi';
! $Translation->{'Whitsunday'} = '';
! $Translation->{'Whitmonday'} = '';
! $Translation->{'Ascension of Christ'} = 'Ascensione di Cristo';
! $Translation->{'1 St. May'} = 'Primo Maggio';
! $Translation->{'Christmas'} = 'Vigilia di Natale';
! $Translation->{'First Christmas Day'} = 'Natale';
! $Translation->{'Second Christmas Day'} = 'Santo Stefano';
! $Translation->{'Silvester'} = 'San Silvestro';
! $Translation->{'New Year\'s Eve!'} = 'Capodanno';
! $Translation->{'January'} = 'Gennaio';
! $Translation->{'February'} = 'Febbraio';
! $Translation->{'March'} = 'Marzo';
! $Translation->{'May'} = 'Maggio';
! $Translation->{'April'} = 'Aprile';
! $Translation->{'June'} = 'Giugno';
! $Translation->{'July'} = 'Luglio';
! $Translation->{'August'} = 'Agosto';
! $Translation->{'September'} = 'Settembre';
! $Translation->{'October'} = 'Ottobre';
! $Translation->{'November'} = 'Novembre';
! $Translation->{'December'} = 'Dicembre';
! $Translation->{'5 Day'} = '5 Giorni';
! $Translation->{'7 Day'} = '7 Giorni';
! $Translation->{'3 Month'} = '3 Mesi';
! $Translation->{'public'} = 'pubblico';
! $Translation->{'private'} = 'privato';
! $Translation->{'vacation'} = '';
! $Translation->{'meeting'} = '';
! $Translation->{'New Event...'} = 'Nuovo...';
! $Translation->{'Participant'} = 'Partecipante';
!
! return 1;
}
! 1;
Author: martin
Index: nb_NO_AgentCalendar.pm
===================================================================
RCS file: /home/cvs/Calendar/Kernel/Language/nb_NO_AgentCalendar.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** nb_NO_AgentCalendar.pm 15 Jan 2007 22:16:57 -0000 1.4
--- nb_NO_AgentCalendar.pm 21 Mar 2008 02:12:56 -0000 1.5
***************
*** 1,5 ****
# --
# Kernel/Language/nb_NO_AgentCalendar.pm - the nb language for AgentCalendar
! # Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
# --
# $Id$
--- 1,5 ----
# --
# Kernel/Language/nb_NO_AgentCalendar.pm - the nb language for AgentCalendar
! # Copyright (C) 2001-2008 OTRS AG, http://otrs.org/
# --
# $Id$
***************
*** 7,11 ****
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
--- 7,11 ----
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl-2.0.txt.
# --
***************
*** 16,56 ****
sub Data {
my $Self = shift;
! $Self->{Translation}->{'CW'} = 'Uke';
! $Self->{Translation}->{'Today'} = 'Idag';
! $Self->{Translation}->{'Tomorrow'} = 'Imorgen';
! $Self->{Translation}->{'Running'} = 'Løpende';
! $Self->{Translation}->{'Feast of Corpus Christi'} = '';
! $Self->{Translation}->{'Whitsunday'} = '';
! $Self->{Translation}->{'Whitmonday'} = '';
! $Self->{Translation}->{'Ascension of Christ'} = '';
! $Self->{Translation}->{'1 St. May'} = 'Første mai';
! $Self->{Translation}->{'Christmas'} = 'Jul';
! $Self->{Translation}->{'First Christmas Day'} = 'Første juledag';
! $Self->{Translation}->{'Second Christmas Day'} = 'Andre juledag';
! $Self->{Translation}->{'Silvester'} = 'Silvester';
! $Self->{Translation}->{'New Year\'s Eve!'} = 'Nyttårsaften!';
! $Self->{Translation}->{'January'} = 'Januar';
! $Self->{Translation}->{'February'} = 'Februar';
! $Self->{Translation}->{'March'} = 'Mars';
! $Self->{Translation}->{'April'} = '';
! $Self->{Translation}->{'June'} = 'Juni';
! $Self->{Translation}->{'July'} = 'Juli';
! $Self->{Translation}->{'August'} = '';
! $Self->{Translation}->{'September'} = '';
! $Self->{Translation}->{'October'} = 'Oktober';
! $Self->{Translation}->{'November'} = '';
! $Self->{Translation}->{'December'} = 'Desember';
! $Self->{Translation}->{'5 Day'} = '5 dager';
! $Self->{Translation}->{'7 Day'} = '7 dager';
! $Self->{Translation}->{'3 Month'} = '3 måneder';
! $Self->{Translation}->{'public'} = 'offentlig';
! $Self->{Translation}->{'private'} = 'privat';
! $Self->{Translation}->{'vacation'} = '';
! $Self->{Translation}->{'meeting'} = '';
! $Self->{Translation}->{'New Event...'} = 'Ny ...';
! $Self->{Translation}->{'Participant'} = '';
! $Self->{Translation}->{'Involved'} = 'Involvert(e)';
}
! 1;
\ No newline at end of file
--- 16,61 ----
sub Data {
my $Self = shift;
+ my $Translation = $Self->{Translation};
! return if ref $Translation ne 'HASH';
!
! $Translation->{'CW'} = 'Uke';
! $Translation->{'Today'} = 'Idag';
! $Translation->{'Tomorrow'} = 'Imorgen';
! $Translation->{'Running'} = 'Løpende';
! $Translation->{'Feast of Corpus Christi'} = '';
! $Translation->{'Whitsunday'} = '';
! $Translation->{'Whitmonday'} = '';
! $Translation->{'Ascension of Christ'} = '';
! $Translation->{'1 St. May'} = 'Første mai';
! $Translation->{'Christmas'} = 'Jul';
! $Translation->{'First Christmas Day'} = 'Første juledag';
! $Translation->{'Second Christmas Day'} = 'Andre juledag';
! $Translation->{'Silvester'} = 'Silvester';
! $Translation->{'New Year\'s Eve!'} = 'Nyttårsaften!';
! $Translation->{'January'} = 'Januar';
! $Translation->{'February'} = 'Februar';
! $Translation->{'March'} = 'Mars';
! $Translation->{'April'} = '';
! $Translation->{'June'} = 'Juni';
! $Translation->{'July'} = 'Juli';
! $Translation->{'August'} = '';
! $Translation->{'September'} = '';
! $Translation->{'October'} = 'Oktober';
! $Translation->{'November'} = '';
! $Translation->{'December'} = 'Desember';
! $Translation->{'5 Day'} = '5 dager';
! $Translation->{'7 Day'} = '7 dager';
! $Translation->{'3 Month'} = '3 måneder';
! $Translation->{'public'} = 'offentlig';
! $Translation->{'private'} = 'privat';
! $Translation->{'vacation'} = '';
! $Translation->{'meeting'} = '';
! $Translation->{'New Event...'} = 'Ny ...';
! $Translation->{'Participant'} = '';
! $Translation->{'Involved'} = 'Involvert(e)';
!
! return 1;
}
! 1;
Author: martin
Index: pt_AgentCalendar.pm
===================================================================
RCS file: /home/cvs/Calendar/Kernel/Language/pt_AgentCalendar.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** pt_AgentCalendar.pm 15 Jan 2007 22:16:57 -0000 1.3
--- pt_AgentCalendar.pm 21 Mar 2008 02:12:56 -0000 1.4
***************
*** 1,5 ****
# --
# Kernel/Language/pt_AgentCalendar.pm - the pt language for AgentCalendar
! # Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
# --
# $Id$
--- 1,5 ----
# --
# Kernel/Language/pt_AgentCalendar.pm - the pt language for AgentCalendar
! # Copyright (C) 2001-2008 OTRS AG, http://otrs.org/
# --
# $Id$
***************
*** 7,11 ****
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
--- 7,11 ----
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl-2.0.txt.
# --
***************
*** 16,56 ****
sub Data {
my $Self = shift;
! $Self->{Translation}->{'CW'} = 'Semana';
! $Self->{Translation}->{'Today'} = 'Hoje';
! $Self->{Translation}->{'Tomorrow'} = 'Amanhã';
! $Self->{Translation}->{'Running'} = 'Em curso';
! $Self->{Translation}->{'Feast of Corpus Christi'} = 'Corpo de Cristo';
! $Self->{Translation}->{'Whitsunday'} = '';
! $Self->{Translation}->{'Whitmonday'} = '';
! $Self->{Translation}->{'Ascension of Christ'} = 'Ascensão de Cristo';
! $Self->{Translation}->{'1 St. May'} = 'Primeiro de Maio';
! $Self->{Translation}->{'Christmas'} = 'Véspera de Natal';
! $Self->{Translation}->{'First Christmas Day'} = 'Natal';
! $Self->{Translation}->{'Second Christmas Day'} = 'Santo Estêvão';
! $Self->{Translation}->{'Silvester'} = 'São Silvestre';
! $Self->{Translation}->{'New Year\'s Eve!'} = 'Fim de ano';
! $Self->{Translation}->{'January'} = 'Janeiro';
! $Self->{Translation}->{'February'} = 'Fevereiro';
! $Self->{Translation}->{'March'} = 'Março';
! $Self->{Translation}->{'May'} = 'Maio';
! $Self->{Translation}->{'April'} = 'Abril';
! $Self->{Translation}->{'June'} = 'Junho';
! $Self->{Translation}->{'July'} = 'Julho';
! $Self->{Translation}->{'August'} = 'Agosto';
! $Self->{Translation}->{'September'} = 'Setembro';
! $Self->{Translation}->{'October'} = 'Outubro';
! $Self->{Translation}->{'November'} = 'Novembro';
! $Self->{Translation}->{'December'} = 'Dezembro';
! $Self->{Translation}->{'5 Day'} = '5 Dias';
! $Self->{Translation}->{'7 Day'} = '7 Dias';
! $Self->{Translation}->{'3 Month'} = '3 Meses';
! $Self->{Translation}->{'public'} = 'público';
! $Self->{Translation}->{'private'} = 'privado';
! $Self->{Translation}->{'vacation'} = 'folga';
! $Self->{Translation}->{'meeting'} = 'reunião';
! $Self->{Translation}->{'New Event...'} = 'Novo Evento...';
! $Self->{Translation}->{'Participant'} = 'Participantes';
}
! 1;
\ No newline at end of file
--- 16,61 ----
sub Data {
my $Self = shift;
+ my $Translation = $Self->{Translation};
! return if ref $Translation ne 'HASH';
!
! $Translation->{'CW'} = 'Semana';
! $Translation->{'Today'} = 'Hoje';
! $Translation->{'Tomorrow'} = 'Amanhã';
! $Translation->{'Running'} = 'Em curso';
! $Translation->{'Feast of Corpus Christi'} = 'Corpo de Cristo';
! $Translation->{'Whitsunday'} = '';
! $Translation->{'Whitmonday'} = '';
! $Translation->{'Ascension of Christ'} = 'Ascensão de Cristo';
! $Translation->{'1 St. May'} = 'Primeiro de Maio';
! $Translation->{'Christmas'} = 'Véspera de Natal';
! $Translation->{'First Christmas Day'} = 'Natal';
! $Translation->{'Second Christmas Day'} = 'Santo Estêvão';
! $Translation->{'Silvester'} = 'São Silvestre';
! $Translation->{'New Year\'s Eve!'} = 'Fim de ano';
! $Translation->{'January'} = 'Janeiro';
! $Translation->{'February'} = 'Fevereiro';
! $Translation->{'March'} = 'Março';
! $Translation->{'May'} = 'Maio';
! $Translation->{'April'} = 'Abril';
! $Translation->{'June'} = 'Junho';
! $Translation->{'July'} = 'Julho';
! $Translation->{'August'} = 'Agosto';
! $Translation->{'September'} = 'Setembro';
! $Translation->{'October'} = 'Outubro';
! $Translation->{'November'} = 'Novembro';
! $Translation->{'December'} = 'Dezembro';
! $Translation->{'5 Day'} = '5 Dias';
! $Translation->{'7 Day'} = '7 Dias';
! $Translation->{'3 Month'} = '3 Meses';
! $Translation->{'public'} = 'público';
! $Translation->{'private'} = 'privado';
! $Translation->{'vacation'} = 'folga';
! $Translation->{'meeting'} = 'reunião';
! $Translation->{'New Event...'} = 'Novo Evento...';
! $Translation->{'Participant'} = 'Participantes';
!
! return 1;
}
! 1;
More information about the cvs-log
mailing list