[tryton-debian-vcs] tryton-modules-calendar-scheduling branch upstream updated. upstream/3.6.2-1-g0301a4e
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Nov 11 11:22:31 UTC 2015
The following commit has been merged in the upstream branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-calendar-scheduling.git;a=commitdiff;h=upstream/3.6.2-1-g0301a4e
commit 0301a4ea5db171befe9f29cf72f660bfc0cb2118
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Nov 11 12:11:06 2015 +0100
Adding upstream version 3.8.0.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/CHANGELOG b/CHANGELOG
index 9586dd4..dcf26dd 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,7 +1,4 @@
-Version 3.6.2 - 2015-09-19
-* Bug fixes (see mercurial logs for details)
-
-Version 3.6.1 - 2015-05-22
+Version 3.8.0 - 2015-11-02
* Bug fixes (see mercurial logs for details)
Version 3.6.0 - 2015-04-20
diff --git a/PKG-INFO b/PKG-INFO
index f299a91..171aa2a 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: trytond_calendar_scheduling
-Version: 3.6.2
+Version: 3.8.0
Summary: Tryton module to add scheduling support on CalDAV
Home-page: http://www.tryton.org/
Author: Tryton
Author-email: issue_tracker at tryton.org
License: GPL-3
-Download-URL: http://downloads.tryton.org/3.6/
+Download-URL: http://downloads.tryton.org/3.8/
Description: trytond_calendar_scheduling
===========================
@@ -61,6 +61,9 @@ Classifier: Natural Language :: Dutch
Classifier: Natural Language :: English
Classifier: Natural Language :: French
Classifier: Natural Language :: German
+Classifier: Natural Language :: Hungarian
+Classifier: Natural Language :: Italian
+Classifier: Natural Language :: Portuguese (Brazilian)
Classifier: Natural Language :: Russian
Classifier: Natural Language :: Slovenian
Classifier: Natural Language :: Spanish
diff --git a/calendar_.py b/calendar_.py
index 959da95..cbccaee 100644
--- a/calendar_.py
+++ b/calendar_.py
@@ -39,7 +39,7 @@ class Event:
], 'Schedule Agent')
@staticmethod
- def default_schedule_agent():
+ def default_organizer_schedule_agent():
return 'SERVER'
@classmethod
@@ -336,11 +336,11 @@ class Event:
return
actions = iter(args)
+ events_edited = set()
for events, values in zip(actions, actions):
- event_edited = False
for k in values:
if k != 'attendees':
- event_edited = True
+ events_edited.update(events)
break
# store old attendee info
@@ -387,7 +387,7 @@ class Event:
sent_succes = []
sent_fail = []
- if event_edited:
+ if event in events_edited:
if event.status == 'cancelled':
ical.method.value = 'CANCEL'
# send cancel to old attendee
@@ -448,9 +448,11 @@ class Event:
vals = {'status': 'needs-action'}
vals['schedule_status'] = '1.1' # successfully sent
- Attendee.write(sent_succes, vals)
+ if sent_succes:
+ Attendee.write(sent_succes, vals)
vals['schedule_status'] = '5.1' # could not complete delivery
- Attendee.write(sent_fail, vals)
+ if sent_fail:
+ Attendee.write(sent_fail, vals)
@classmethod
def delete(cls, events):
@@ -571,7 +573,7 @@ class EventAttendee(AttendeeMixin, object):
'body': ('%s (%s) changed his/her participation status '
'to: %s\n\n'),
'accepted_body': '%s (%s) has accepted this invitation:\n\n',
- 'declined_body': '%s (%s) has declined this invitattion:\n\n',
+ 'declined_body': '%s (%s) has declined this invitation:\n\n',
'no_subject': "(No Subject)",
'separator': ':',
'bullet': ' * ',
@@ -667,7 +669,7 @@ class EventAttendee(AttendeeMixin, object):
body += owner.email + bullet + '\n'
for attendee in event.attendees:
body += attendee.email + bullet + '\n'
- elif event[field]:
+ elif getattr(event, field):
if field == 'summary':
value = summary
elif field == 'dtstart':
diff --git a/locale/bg_BG.po b/locale/bg_BG.po
index 0eba911..11f0b58 100644
--- a/locale/bg_BG.po
+++ b/locale/bg_BG.po
@@ -20,9 +20,9 @@ msgstr "%s (%s) приеха поканата:"
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
"\n"
-msgstr "%s (%s) отказаха поканата:"
+msgstr ""
msgctxt "error:calendar.event.attendee:"
msgid "%s: %s @ %s"
diff --git a/locale/ca_ES.po b/locale/ca_ES.po
index e51db07..709027a 100644
--- a/locale/ca_ES.po
+++ b/locale/ca_ES.po
@@ -18,13 +18,17 @@ msgctxt "error:calendar.event.attendee:"
msgid ""
"%s (%s) has accepted this invitation:\n"
"\n"
-msgstr "%s (%s) ha acceptat aquesta invitació:"
+msgstr ""
+"%s (%s) ha acceptat aquesta invitació:\n"
+"\n"
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
+"\n"
+msgstr ""
+"%s (%s) ha declinat aquesta invitació:\n"
"\n"
-msgstr "%s (%s) ha declinat aquesta invitació:"
msgctxt "error:calendar.event.attendee:"
msgid "%s: %s @ %s"
@@ -66,13 +70,17 @@ msgctxt "error:calendar.event:"
msgid ""
"This event has been canceled.\n"
"\n"
-msgstr "Aquest esdeveniment ha estat cancel·lat."
+msgstr ""
+"Aquest esdeveniment ha estat cancel·lat:\n"
+"\n"
msgctxt "error:calendar.event:"
msgid ""
"This event has been changed.\n"
"\n"
-msgstr "Aquest esdeveniment ha canviat."
+msgstr ""
+"Aquest esdeveniment ha canviat:\n"
+"\n"
msgctxt "error:calendar.event:"
msgid "Updated Invitation: %s @ %s"
@@ -86,7 +94,9 @@ msgctxt "error:calendar.event:"
msgid ""
"You have been invited to the following event.\n"
"\n"
-msgstr "Heu estat convidat al següent esdeveniment."
+msgstr ""
+"Heu estat convidats al següent esdeveniment:\n"
+"\n"
msgctxt "field:calendar.event,organizer_schedule_agent:"
msgid "Schedule Agent"
diff --git a/locale/cs_CZ.po b/locale/cs_CZ.po
index ebc3872..51cb4c5 100644
--- a/locale/cs_CZ.po
+++ b/locale/cs_CZ.po
@@ -20,7 +20,7 @@ msgstr ""
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
"\n"
msgstr ""
diff --git a/locale/de_DE.po b/locale/de_DE.po
index ffa0dc8..0704da0 100644
--- a/locale/de_DE.po
+++ b/locale/de_DE.po
@@ -24,10 +24,10 @@ msgstr ""
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
"\n"
msgstr ""
-"%s (%s) hat folgende Einladung abgesagt:\n"
+"%s (%s) hat diese Einladung abgelehnt:\n"
"\n"
msgctxt "error:calendar.event.attendee:"
diff --git a/locale/es_AR.po b/locale/es_AR.po
index 28178b8..0346dad 100644
--- a/locale/es_AR.po
+++ b/locale/es_AR.po
@@ -18,13 +18,17 @@ msgctxt "error:calendar.event.attendee:"
msgid ""
"%s (%s) has accepted this invitation:\n"
"\n"
-msgstr "%s (%s) ha aceptado esta invitación:"
+msgstr ""
+"%s (%s) ha aceptado esta invitación:\n"
+"\n"
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
+"\n"
+msgstr ""
+"%s (%s) ha declinado esta invitación:\n"
"\n"
-msgstr "%s (%s) ha declinado esta invitación:"
msgctxt "error:calendar.event.attendee:"
msgid "%s: %s @ %s"
@@ -66,13 +70,17 @@ msgctxt "error:calendar.event:"
msgid ""
"This event has been canceled.\n"
"\n"
-msgstr "Este evento ha sido cancelado."
+msgstr ""
+"Este evento ha sido cancelado.\n"
+"\n"
msgctxt "error:calendar.event:"
msgid ""
"This event has been changed.\n"
"\n"
-msgstr "Este evento ha cambiado."
+msgstr ""
+"Este evento ha cambiado.\n"
+"\n"
msgctxt "error:calendar.event:"
msgid "Updated Invitation: %s @ %s"
@@ -86,7 +94,9 @@ msgctxt "error:calendar.event:"
msgid ""
"You have been invited to the following event.\n"
"\n"
-msgstr "Ha sido invitado al siguiente evento."
+msgstr ""
+"Ha sido invitado al siguiente evento.\n"
+"\n"
msgctxt "field:calendar.event,organizer_schedule_agent:"
msgid "Schedule Agent"
diff --git a/locale/es_CO.po b/locale/es_CO.po
index cd1e67f..3edb29a 100644
--- a/locale/es_CO.po
+++ b/locale/es_CO.po
@@ -20,9 +20,9 @@ msgstr "%s (%s) ha aceptado esta invitación:"
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
"\n"
-msgstr "%s (%s) rechazó esta invitación:"
+msgstr ""
msgctxt "error:calendar.event.attendee:"
msgid "%s: %s @ %s"
diff --git a/locale/es_EC.po b/locale/es_EC.po
index 8ef2e56..7e84eb8 100644
--- a/locale/es_EC.po
+++ b/locale/es_EC.po
@@ -22,7 +22,7 @@ msgstr "%s (%s) ha aceptado esta invitación:\n"
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
"\n"
msgstr "%s (%s) ha declinado esta invitación:\n"
@@ -48,7 +48,7 @@ msgstr " * "
msgctxt "error:calendar.event:"
msgid "(No Subject)"
-msgstr "(Sin Asunto)"
+msgstr "(Sin asunto)"
msgctxt "error:calendar.event:"
msgid ":"
diff --git a/locale/es_ES.po b/locale/es_ES.po
index 139d946..c3f0a04 100644
--- a/locale/es_ES.po
+++ b/locale/es_ES.po
@@ -22,7 +22,7 @@ msgstr "%s (%s) ha aceptado esta invitación:"
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
"\n"
msgstr "%s (%s) ha declinado esta invitación:"
diff --git a/locale/es_ES.po b/locale/es_MX.po
similarity index 96%
copy from locale/es_ES.po
copy to locale/es_MX.po
index 139d946..2f96f4f 100644
--- a/locale/es_ES.po
+++ b/locale/es_MX.po
@@ -22,9 +22,9 @@ msgstr "%s (%s) ha aceptado esta invitación:"
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
"\n"
-msgstr "%s (%s) ha declinado esta invitación:"
+msgstr ""
msgctxt "error:calendar.event.attendee:"
msgid "%s: %s @ %s"
@@ -226,8 +226,8 @@ msgstr "5.3"
msgctxt "view:res.user:"
msgid "Calendar Email Notifications"
-msgstr "Notificaciones por correo electrónico del calendario"
+msgstr ""
msgctxt "view:res.user:"
msgid "Notifications"
-msgstr "Notificaciones"
+msgstr ""
diff --git a/locale/fr_FR.po b/locale/fr_FR.po
index 0c56ffc..e1ceb2e 100644
--- a/locale/fr_FR.po
+++ b/locale/fr_FR.po
@@ -10,19 +10,25 @@ msgctxt "error:calendar.event.attendee:"
msgid ""
"%s (%s) changed his/her participation status to: %s\n"
"\n"
-msgstr "%s (%s) a un nouveau statut de participation : %s\n"
+msgstr ""
+"%s (%s) a un nouveau statut de participation : %s\n"
+"\n"
msgctxt "error:calendar.event.attendee:"
msgid ""
"%s (%s) has accepted this invitation:\n"
"\n"
-msgstr "%s (%s) a accepté l'invitation suivante :\n"
+msgstr ""
+"%s (%s) a accepté l'invitation suivante :\n"
+"\n"
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
+"\n"
+msgstr ""
+"%s (%s) a décliné l'invitation suivante :\n"
"\n"
-msgstr "%s (%s) a décliné l'invitation suivante :\n"
msgctxt "error:calendar.event.attendee:"
msgid "%s: %s @ %s"
@@ -34,7 +40,7 @@ msgstr "(Pas de sujet)"
msgctxt "error:calendar.event.attendee:"
msgid ":"
-msgstr ":"
+msgstr " :"
msgctxt "error:calendar.event.attendee:"
msgid "When"
@@ -50,7 +56,7 @@ msgstr "(Pas de sujet)"
msgctxt "error:calendar.event:"
msgid ":"
-msgstr ":"
+msgstr " :"
msgctxt "error:calendar.event:"
msgid "Cancelled Event: %s @ %s"
@@ -170,7 +176,7 @@ msgstr "5.1"
msgctxt "selection:calendar.event,organizer_schedule_status:"
msgid "5.2"
-msgstr "5.1"
+msgstr "5.2"
msgctxt "selection:calendar.event,organizer_schedule_status:"
msgid "5.3"
diff --git a/locale/cs_CZ.po b/locale/hu_HU.po
similarity index 99%
copy from locale/cs_CZ.po
copy to locale/hu_HU.po
index ebc3872..51cb4c5 100644
--- a/locale/cs_CZ.po
+++ b/locale/hu_HU.po
@@ -20,7 +20,7 @@ msgstr ""
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
"\n"
msgstr ""
diff --git a/locale/cs_CZ.po b/locale/it_IT.po
similarity index 99%
copy from locale/cs_CZ.po
copy to locale/it_IT.po
index ebc3872..51cb4c5 100644
--- a/locale/cs_CZ.po
+++ b/locale/it_IT.po
@@ -20,7 +20,7 @@ msgstr ""
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
"\n"
msgstr ""
diff --git a/locale/cs_CZ.po b/locale/ja_JP.po
similarity index 99%
copy from locale/cs_CZ.po
copy to locale/ja_JP.po
index ebc3872..51cb4c5 100644
--- a/locale/cs_CZ.po
+++ b/locale/ja_JP.po
@@ -20,7 +20,7 @@ msgstr ""
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
"\n"
msgstr ""
diff --git a/locale/cs_CZ.po b/locale/lt_LT.po
similarity index 99%
copy from locale/cs_CZ.po
copy to locale/lt_LT.po
index ebc3872..51cb4c5 100644
--- a/locale/cs_CZ.po
+++ b/locale/lt_LT.po
@@ -20,7 +20,7 @@ msgstr ""
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
"\n"
msgstr ""
diff --git a/locale/nl_NL.po b/locale/nl_NL.po
index 96b3cbe..9cd11f5 100644
--- a/locale/nl_NL.po
+++ b/locale/nl_NL.po
@@ -20,7 +20,7 @@ msgstr ""
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
"\n"
msgstr ""
diff --git a/locale/es_CO.po b/locale/pt_BR.po
similarity index 83%
copy from locale/es_CO.po
copy to locale/pt_BR.po
index cd1e67f..7fe79bc 100644
--- a/locale/es_CO.po
+++ b/locale/pt_BR.po
@@ -4,25 +4,31 @@ msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "error:calendar.event.attendee:"
msgid " * "
-msgstr " * "
+msgstr " * "
msgctxt "error:calendar.event.attendee:"
msgid ""
"%s (%s) changed his/her participation status to: %s\n"
"\n"
-msgstr "%s (%s) cambió su estado de participación"
+msgstr ""
+"%s (%s) alterou o estado de sua participação para: %s\n"
+"\n"
msgctxt "error:calendar.event.attendee:"
msgid ""
"%s (%s) has accepted this invitation:\n"
"\n"
-msgstr "%s (%s) ha aceptado esta invitación:"
+msgstr ""
+"%s (%s) aceitou este convite:\n"
+"\n"
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
+"\n"
+msgstr ""
+"%s (%s) recusou este convite:\n"
"\n"
-msgstr "%s (%s) rechazó esta invitación:"
msgctxt "error:calendar.event.attendee:"
msgid "%s: %s @ %s"
@@ -30,7 +36,7 @@ msgstr "%s: %s @ %s"
msgctxt "error:calendar.event.attendee:"
msgid "(No Subject)"
-msgstr "(Sin Asunto)"
+msgstr "(Sem assunto)"
msgctxt "error:calendar.event.attendee:"
msgid ":"
@@ -38,7 +44,7 @@ msgstr ":"
msgctxt "error:calendar.event.attendee:"
msgid "When"
-msgstr "Cuando"
+msgstr "Quando"
msgctxt "error:calendar.event:"
msgid " * "
@@ -46,7 +52,7 @@ msgstr " * "
msgctxt "error:calendar.event:"
msgid "(No Subject)"
-msgstr "(Sin Asunto)"
+msgstr "(Sem assunto)"
msgctxt "error:calendar.event:"
msgid ":"
@@ -58,65 +64,71 @@ msgstr "Evento Cancelado: %s @ %s"
msgctxt "error:calendar.event:"
msgid "Invitation: %s @ %s"
-msgstr "Invitación: %s @ %s"
+msgstr "Convite: %s @ %s"
msgctxt "error:calendar.event:"
msgid ""
"This event has been canceled.\n"
"\n"
-msgstr "Este evento se canceló."
+msgstr ""
+"Este evento foi cancelado.\n"
+"\n"
msgctxt "error:calendar.event:"
msgid ""
"This event has been changed.\n"
"\n"
-msgstr "Este evento cambió."
+msgstr ""
+"Este evento foi alterado.\n"
+"\n"
msgctxt "error:calendar.event:"
msgid "Updated Invitation: %s @ %s"
-msgstr "Invitación actualizada: %s @ %s"
+msgstr "Convite Alterado: %s @ %s"
msgctxt "error:calendar.event:"
msgid "When"
-msgstr "Cuando"
+msgstr "Quando"
msgctxt "error:calendar.event:"
msgid ""
"You have been invited to the following event.\n"
"\n"
-msgstr "Usted fue invitado al siguiente evento."
+msgstr ""
+"Você foi convidado para o seguinte enveto.\n"
+"\n"
msgctxt "field:calendar.event,organizer_schedule_agent:"
msgid "Schedule Agent"
-msgstr "Agente de Planeación"
+msgstr "Agente de Planejamento"
msgctxt "field:calendar.event,organizer_schedule_status:"
msgid "Schedule Status"
-msgstr "Estado de Planeación"
+msgstr "Estado do Planejamento"
msgctxt "field:calendar.event.attendee,schedule_agent:"
msgid "Schedule Agent"
-msgstr "Agente de Planeación"
+msgstr "Agente do Planejamento"
msgctxt "field:calendar.event.attendee,schedule_status:"
msgid "Schedule Status"
-msgstr "Estado de Planeación"
+msgstr "Estado do Planejamento"
msgctxt "field:res.user,calendar_email_notification_cancel:"
msgid "Cancelled invitations"
-msgstr "Invitaciones canceladas"
+msgstr "Convites cancelados"
msgctxt "field:res.user,calendar_email_notification_new:"
msgid "New invitations"
-msgstr "Nuevas invitaciones"
+msgstr "Novos Convites"
msgctxt "field:res.user,calendar_email_notification_partstat:"
msgid "Invitation Replies"
-msgstr "Invitaciones Contestadas"
+msgstr "Respostas aos Convites"
msgctxt "field:res.user,calendar_email_notification_update:"
msgid "Changed invitations"
-msgstr "Invitaciones Cambiadas"
+msgstr "Convites Alterados"
msgctxt "selection:calendar.event,organizer_schedule_agent:"
msgid ""
@@ -128,7 +140,7 @@ msgstr "Cliente"
msgctxt "selection:calendar.event,organizer_schedule_agent:"
msgid "None"
-msgstr "Ninguna"
+msgstr "Nenhum"
msgctxt "selection:calendar.event,organizer_schedule_agent:"
msgid "Server"
@@ -180,7 +192,7 @@ msgstr "Cliente"
msgctxt "selection:calendar.event.attendee,schedule_agent:"
msgid "None"
-msgstr "Ninguno"
+msgstr "Nenhum"
msgctxt "selection:calendar.event.attendee,schedule_agent:"
msgid "Server"
@@ -224,8 +236,8 @@ msgstr "5.3"
msgctxt "view:res.user:"
msgid "Calendar Email Notifications"
-msgstr "Notificaciones de Calendario por Email"
+msgstr "Notificações de Agenda por Email"
msgctxt "view:res.user:"
msgid "Notifications"
-msgstr "Notificaciones"
+msgstr "Notificações"
diff --git a/locale/ru_RU.po b/locale/ru_RU.po
index e7f397a..8470aa7 100644
--- a/locale/ru_RU.po
+++ b/locale/ru_RU.po
@@ -24,11 +24,9 @@ msgstr ""
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
"\n"
msgstr ""
-"%s (%s) отказался от приглашения:\n"
-"\n"
msgctxt "error:calendar.event.attendee:"
msgid "%s: %s @ %s"
diff --git a/locale/sl_SI.po b/locale/sl_SI.po
index 8fece6e..20c4688 100644
--- a/locale/sl_SI.po
+++ b/locale/sl_SI.po
@@ -24,10 +24,10 @@ msgstr ""
msgctxt "error:calendar.event.attendee:"
msgid ""
-"%s (%s) has declined this invitattion:\n"
+"%s (%s) has declined this invitation:\n"
"\n"
msgstr ""
-"%s (%s) je zavrnil/a to povabilo:\n"
+"%s (%s) je zavrnil to povabilo:\n"
"\n"
msgctxt "error:calendar.event.attendee:"
@@ -70,13 +70,17 @@ msgctxt "error:calendar.event:"
msgid ""
"This event has been canceled.\n"
"\n"
-msgstr "Ta dogodek je bil preklican."
+msgstr ""
+"Ta dogodek je bil preklican.\n"
+"\n"
msgctxt "error:calendar.event:"
msgid ""
"This event has been changed.\n"
"\n"
-msgstr "Ta dogodek je bil spremenjen."
+msgstr ""
+"Ta dogodek je bil spremenjen.\n"
+"\n"
msgctxt "error:calendar.event:"
msgid "Updated Invitation: %s @ %s"
@@ -90,7 +94,9 @@ msgctxt "error:calendar.event:"
msgid ""
"You have been invited to the following event.\n"
"\n"
-msgstr "Povabljeni ste bili na naslednji dogodek"
+msgstr ""
+"Povabljeni ste bili na naslednji dogodek.\n"
+"\n"
msgctxt "field:calendar.event,organizer_schedule_agent:"
msgid "Schedule Agent"
diff --git a/setup.py b/setup.py
index 3cd1ba8..eb80056 100644
--- a/setup.py
+++ b/setup.py
@@ -81,6 +81,9 @@ setup(name=name,
'Natural Language :: English',
'Natural Language :: French',
'Natural Language :: German',
+ 'Natural Language :: Hungarian',
+ 'Natural Language :: Italian',
+ 'Natural Language :: Portuguese (Brazilian)',
'Natural Language :: Russian',
'Natural Language :: Slovenian',
'Natural Language :: Spanish',
diff --git a/tryton.cfg b/tryton.cfg
index ff37217..f3c5e24 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.6.2
+version=3.8.0
depends:
calendar
ir
diff --git a/trytond_calendar_scheduling.egg-info/PKG-INFO b/trytond_calendar_scheduling.egg-info/PKG-INFO
index 71fe800..2307d0e 100644
--- a/trytond_calendar_scheduling.egg-info/PKG-INFO
+++ b/trytond_calendar_scheduling.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: trytond-calendar-scheduling
-Version: 3.6.2
+Version: 3.8.0
Summary: Tryton module to add scheduling support on CalDAV
Home-page: http://www.tryton.org/
Author: Tryton
Author-email: issue_tracker at tryton.org
License: GPL-3
-Download-URL: http://downloads.tryton.org/3.6/
+Download-URL: http://downloads.tryton.org/3.8/
Description: trytond_calendar_scheduling
===========================
@@ -61,6 +61,9 @@ Classifier: Natural Language :: Dutch
Classifier: Natural Language :: English
Classifier: Natural Language :: French
Classifier: Natural Language :: German
+Classifier: Natural Language :: Hungarian
+Classifier: Natural Language :: Italian
+Classifier: Natural Language :: Portuguese (Brazilian)
Classifier: Natural Language :: Russian
Classifier: Natural Language :: Slovenian
Classifier: Natural Language :: Spanish
diff --git a/trytond_calendar_scheduling.egg-info/SOURCES.txt b/trytond_calendar_scheduling.egg-info/SOURCES.txt
index 8ac3b10..7282085 100644
--- a/trytond_calendar_scheduling.egg-info/SOURCES.txt
+++ b/trytond_calendar_scheduling.egg-info/SOURCES.txt
@@ -21,8 +21,14 @@ tryton.cfg
./locale/es_CO.po
./locale/es_EC.po
./locale/es_ES.po
+./locale/es_MX.po
./locale/fr_FR.po
+./locale/hu_HU.po
+./locale/it_IT.po
+./locale/ja_JP.po
+./locale/lt_LT.po
./locale/nl_NL.po
+./locale/pt_BR.po
./locale/ru_RU.po
./locale/sl_SI.po
./tests/__init__.py
@@ -38,8 +44,14 @@ locale/es_AR.po
locale/es_CO.po
locale/es_EC.po
locale/es_ES.po
+locale/es_MX.po
locale/fr_FR.po
+locale/hu_HU.po
+locale/it_IT.po
+locale/ja_JP.po
+locale/lt_LT.po
locale/nl_NL.po
+locale/pt_BR.po
locale/ru_RU.po
locale/sl_SI.po
trytond_calendar_scheduling.egg-info/PKG-INFO
diff --git a/trytond_calendar_scheduling.egg-info/requires.txt b/trytond_calendar_scheduling.egg-info/requires.txt
index 8f262d2..627c939 100644
--- a/trytond_calendar_scheduling.egg-info/requires.txt
+++ b/trytond_calendar_scheduling.egg-info/requires.txt
@@ -1,7 +1,7 @@
PyWebDAV >= 0.9.8
python-dateutil
-trytond_calendar >= 3.6, < 3.7
-trytond >= 3.6, < 3.7
+trytond_calendar >= 3.8, < 3.9
+trytond >= 3.8, < 3.9
[test]
caldav
\ No newline at end of file
--
tryton-modules-calendar-scheduling
More information about the tryton-debian-vcs
mailing list