[Python-modules-commits] [django-recurrence] 02/09: Import django-recurrence_1.4.0.orig.tar.gz

Michael Fladischer fladi at moszumanska.debian.org
Wed Oct 19 12:10:58 UTC 2016


This is an automated email from the git hooks/post-receive script.

fladi pushed a commit to branch master
in repository django-recurrence.

commit 961b7a8474a9f6fd2864d96287b334d4950bccaf
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Mon Oct 17 09:49:28 2016 +0200

    Import django-recurrence_1.4.0.orig.tar.gz
---
 PKG-INFO                                     |   2 +-
 django_recurrence.egg-info/PKG-INFO          |   2 +-
 django_recurrence.egg-info/SOURCES.txt       |   5 +
 docs/changelog.rst                           |  11 +
 docs/conf.py                                 |   4 +-
 docs/github.py                               |   2 +-
 recurrence/base.py                           |  24 +-
 recurrence/compat.py                         |  21 ++
 recurrence/fields.py                         |   3 +-
 recurrence/locale/eu/LC_MESSAGES/django.mo   | Bin 0 -> 4161 bytes
 recurrence/locale/eu/LC_MESSAGES/django.po   | 374 ++++++++++++++++++++
 recurrence/locale/eu/LC_MESSAGES/djangojs.mo | Bin 0 -> 5187 bytes
 recurrence/locale/eu/LC_MESSAGES/djangojs.po | 499 +++++++++++++++++++++++++++
 setup.py                                     |   2 +-
 14 files changed, 929 insertions(+), 20 deletions(-)

diff --git a/PKG-INFO b/PKG-INFO
index b946ee6..3b7c1b4 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: django-recurrence
-Version: 1.3.0
+Version: 1.4.0
 Summary: Django utility wrapping dateutil.rrule
 Home-page: UNKNOWN
 Author: Tamas Kemenczy
diff --git a/django_recurrence.egg-info/PKG-INFO b/django_recurrence.egg-info/PKG-INFO
index b946ee6..3b7c1b4 100644
--- a/django_recurrence.egg-info/PKG-INFO
+++ b/django_recurrence.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: django-recurrence
-Version: 1.3.0
+Version: 1.4.0
 Summary: Django utility wrapping dateutil.rrule
 Home-page: UNKNOWN
 Author: Tamas Kemenczy
diff --git a/django_recurrence.egg-info/SOURCES.txt b/django_recurrence.egg-info/SOURCES.txt
index 74b02ac..380a274 100644
--- a/django_recurrence.egg-info/SOURCES.txt
+++ b/django_recurrence.egg-info/SOURCES.txt
@@ -25,6 +25,7 @@ docs/usage/recurrence_field.rst
 recurrence/__init__.py
 recurrence/base.py
 recurrence/choices.py
+recurrence/compat.py
 recurrence/exceptions.py
 recurrence/fields.py
 recurrence/forms.py
@@ -38,6 +39,10 @@ recurrence/locale/es/LC_MESSAGES/django.mo
 recurrence/locale/es/LC_MESSAGES/django.po
 recurrence/locale/es/LC_MESSAGES/djangojs.mo
 recurrence/locale/es/LC_MESSAGES/djangojs.po
+recurrence/locale/eu/LC_MESSAGES/django.mo
+recurrence/locale/eu/LC_MESSAGES/django.po
+recurrence/locale/eu/LC_MESSAGES/djangojs.mo
+recurrence/locale/eu/LC_MESSAGES/djangojs.po
 recurrence/locale/fr/LC_MESSAGES/django.mo
 recurrence/locale/fr/LC_MESSAGES/django.po
 recurrence/locale/fr/LC_MESSAGES/djangojs.mo
diff --git a/docs/changelog.rst b/docs/changelog.rst
index c0c7012..9ed1a99 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -1,6 +1,17 @@
 Changelog
 =========
 
+1.4.0
+-----
+
+* Improve our testing setup to also cover Python 3.5;
+* Fixes for Django 1.10 (:issue:`69`).
+
+1.3.1
+-----
+
+* Add Basque translations (:issue:`67`).
+
 1.3.0
 -----
 
diff --git a/docs/conf.py b/docs/conf.py
index aa58d91..86bcf55 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -60,9 +60,9 @@ copyright = u'2014, django-recurrence developers'
 # built documents.
 #
 # The short X.Y version.
-version = '1.3.0'
+version = '1.4.0'
 # The full version, including alpha/beta/rc tags.
-release = '1.3.0'
+release = '1.4.0'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff --git a/docs/github.py b/docs/github.py
index 2f7f153..1623fb0 100644
--- a/docs/github.py
+++ b/docs/github.py
@@ -20,7 +20,7 @@ def make_issue_node(rawtext, app, slug, options):
         base = app.config.github_project_url
         if not base:
             raise AttributeError
-    except AttributeError, err:
+    except AttributeError as err:
         raise ValueError('github_project_url configuration value is not set (%s)' % str(err))
 
     slash = '/' if base[-1] != '/' else ''
diff --git a/recurrence/base.py b/recurrence/base.py
index 6a8ba66..8404725 100644
--- a/recurrence/base.py
+++ b/recurrence/base.py
@@ -15,8 +15,7 @@ import calendar
 
 import pytz
 import dateutil.rrule
-from django.conf import settings
-from django.utils import dateformat
+from django.utils import dateformat, timezone
 from django.utils.translation import ugettext as _, pgettext as _p
 from django.utils.six import string_types
 
@@ -29,7 +28,8 @@ YEARLY, MONTHLY, WEEKLY, DAILY, HOURLY, MINUTELY, SECONDLY = range(7)
  SEPTEMBER, OCTOBER, NOVEMBER, DECEMBER) = range(1, 13)
 
 
-localtz = pytz.timezone(settings.TIME_ZONE)
+def localtz():
+    return timezone.get_current_timezone()
 
 
 class Rule(object):
@@ -823,7 +823,7 @@ def serialize(rule_or_recurrence):
     """
     def serialize_dt(dt):
         if not dt.tzinfo:
-            dt = localtz.localize(dt)
+            dt = localtz().localize(dt)
         dt = dt.astimezone(pytz.utc)
 
         return u'%s%s%sT%s%s%sZ' % (
@@ -890,14 +890,14 @@ def serialize(rule_or_recurrence):
             dtstart = serialize_dt(obj.dtstart.astimezone(pytz.utc))
         else:
             dtstart = serialize_dt(
-                localtz.localize(obj.dtstart).astimezone(pytz.utc))
+                localtz().localize(obj.dtstart).astimezone(pytz.utc))
         items.append((u'DTSTART', dtstart))
     if obj.dtend:
         if obj.dtend.tzinfo:
             dtend = serialize_dt(obj.dtend.astimezone(pytz.utc))
         else:
             dtend = serialize_dt(
-                localtz.localize(obj.dtend).astimezone(pytz.utc))
+                localtz().localize(obj.dtend).astimezone(pytz.utc))
         items.append((u'DTEND', dtend))
 
     for rrule in obj.rrules:
@@ -909,13 +909,13 @@ def serialize(rule_or_recurrence):
         if rdate.tzinfo:
             rdate = rdate.astimezone(pytz.utc)
         else:
-            rdate = localtz.localize(rdate).astimezone(pytz.utc)
+            rdate = localtz().localize(rdate).astimezone(pytz.utc)
         items.append((u'RDATE', serialize_dt(rdate)))
     for exdate in obj.exdates:
         if exdate.tzinfo:
             exdate = exdate.astimezone(pytz.utc)
         else:
-            exdate = localtz.localize(exdate).astimezone(pytz.utc)
+            exdate = localtz().localize(exdate).astimezone(pytz.utc)
         items.append((u'EXDATE', serialize_dt(exdate)))
 
     return u'\n'.join(u'%s:%s' % i for i in items)
@@ -969,11 +969,11 @@ def deserialize(text):
             # right now there is no support for VTIMEZONE/TZID since
             # this is a partial implementation of rfc2445 so we'll
             # just use the time zone specified in the Django settings.
-            tzinfo = localtz
+            tzinfo = localtz()
 
         dt = datetime.datetime(
             year, month, day, hour, minute, second, tzinfo=tzinfo)
-        dt = dt.astimezone(localtz)
+        dt = dt.astimezone(localtz())
 
         # set tz to settings.TIME_ZONE and return offset-naive datetime
         return datetime.datetime(
@@ -1230,9 +1230,9 @@ def normalize_offset_awareness(dt, from_dt=None):
     if from_dt and from_dt.tzinfo and dt.tzinfo:
         return dt
     elif from_dt and from_dt.tzinfo and not dt.tzinfo:
-        dt = localtz.localize(dt)
+        dt = localtz().localize(dt)
     elif dt.tzinfo:
-        dt = dt.astimezone(localtz)
+        dt = dt.astimezone(localtz())
         dt = datetime.datetime(
             dt.year, dt.month, dt.day,
             dt.hour, dt.minute, dt.second)
diff --git a/recurrence/compat.py b/recurrence/compat.py
new file mode 100644
index 0000000..450537b
--- /dev/null
+++ b/recurrence/compat.py
@@ -0,0 +1,21 @@
+try:
+    from django.db.models.fields.subclassing import Creator
+except ImportError:
+    # This class was removed in Django 1.10, so I've pulled it into
+    # django-recurrence.
+
+    class Creator(object):
+        """
+        A placeholder class that provides a way to set the attribute
+        on the model.
+        """
+        def __init__(self, field):
+            self.field = field
+
+        def __get__(self, obj, type=None):
+            if obj is None:
+                return self
+            return obj.__dict__[self.field.name]
+
+        def __set__(self, obj, value):
+            obj.__dict__[self.field.name] = self.field.to_python(value)
diff --git a/recurrence/fields.py b/recurrence/fields.py
index 783d52b..d4652cb 100644
--- a/recurrence/fields.py
+++ b/recurrence/fields.py
@@ -1,9 +1,8 @@
 from django.db.models import fields
 from django.utils.six import string_types
-from django.db.models.fields.subclassing import Creator
-
 import recurrence
 from recurrence import forms
+from recurrence.compat import Creator
 
 try:
     from south.modelsinspector import add_introspection_rules
diff --git a/recurrence/locale/eu/LC_MESSAGES/django.mo b/recurrence/locale/eu/LC_MESSAGES/django.mo
new file mode 100644
index 0000000..d280d7e
Binary files /dev/null and b/recurrence/locale/eu/LC_MESSAGES/django.mo differ
diff --git a/recurrence/locale/eu/LC_MESSAGES/django.po b/recurrence/locale/eu/LC_MESSAGES/django.po
new file mode 100644
index 0000000..9040b61
--- /dev/null
+++ b/recurrence/locale/eu/LC_MESSAGES/django.po
@@ -0,0 +1,374 @@
+# Basque translations for django-recurrence
+# Copyright (C) Tamas Kemenczy and individual contributors
+# This file is distributed under the same license as the django-recurrence package.
+# Unai Zalakain <unai at gisa-elkartea.org>, 2016.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: 1.3.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-05-14 17:08+0000\n"
+"PO-Revision-Date: 2016-05-14 19:21+01:00\n"
+"Last-Translator: Unai Zalakain <unai at gisa-elkartea.org>\n"
+"Language: eu\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: base.py:1087
+msgid "annually"
+msgstr "urtero"
+
+#: base.py:1087
+msgid "monthly"
+msgstr "hilabetero"
+
+#: base.py:1087
+msgid "weekly"
+msgstr "astero"
+
+#: base.py:1087
+msgid "daily"
+msgstr "egunero"
+
+#: base.py:1088
+msgid "hourly"
+msgstr "orduro"
+
+#: base.py:1088
+msgid "minutely"
+msgstr "minuturo"
+
+#: base.py:1088
+msgid "secondly"
+msgstr "segunduro"
+
+#: base.py:1091
+msgid "years"
+msgstr "urteak"
+
+#: base.py:1091
+msgid "months"
+msgstr "hilabeteak"
+
+#: base.py:1091
+msgid "weeks"
+msgstr "asteak"
+
+#: base.py:1091
+msgid "days"
+msgstr "egunak"
+
+#: base.py:1092
+msgid "hours"
+msgstr "orduak"
+
+#: base.py:1092
+msgid "minutes"
+msgstr "minutuak"
+
+#: base.py:1092
+msgid "seconds"
+msgstr "segunduak"
+
+#: base.py:1097
+#, python-format
+msgid "1st %(weekday)s"
+msgstr "1. %(weekday)s"
+
+#: base.py:1098
+#, python-format
+msgid "2nd %(weekday)s"
+msgstr "2. %(weekday)s"
+
+#: base.py:1099
+#, python-format
+msgid "3rd %(weekday)s"
+msgstr "3. %(weekday)s"
+
+#: base.py:1100 base.py:1120
+#, python-format
+msgid "last %(weekday)s"
+msgstr "azken %(weekday)s"
+
+#: base.py:1101
+#, python-format
+msgid "2nd last %(weekday)s"
+msgstr "azkenaurreko %(weekday)s"
+
+#: base.py:1102
+#, python-format
+msgid "3rd last %(weekday)s"
+msgstr "azken-hirugarren %(weekday)s"
+
+#: base.py:1105
+msgid "Mon"
+msgstr "Astl"
+
+#: base.py:1105
+msgid "Tue"
+msgstr "Astr"
+
+#: base.py:1105
+msgid "Wed"
+msgstr "Astz"
+
+#: base.py:1106
+msgid "Thu"
+msgstr "Ostg"
+
+#: base.py:1106
+msgid "Fri"
+msgstr "Osti"
+
+#: base.py:1106
+msgid "Sat"
+msgstr "Lar"
+
+#: base.py:1106
+msgid "Sun"
+msgstr "Iga"
+
+#: base.py:1109
+msgid "Jan"
+msgstr "Urt"
+
+#: base.py:1109
+msgid "Feb"
+msgstr "Ots"
+
+#: base.py:1109
+msgid "Mar"
+msgstr "Mar"
+
+#: base.py:1109
+msgid "Apr"
+msgstr "Api"
+
+#: base.py:1110
+msgid "Jun"
+msgstr "Eka"
+
+#: base.py:1110
+msgid "Jul"
+msgstr "Uzt"
+
+#: base.py:1110
+msgid "Aug"
+msgstr "Abu"
+
+#: base.py:1111
+msgid "Sep"
+msgstr "Ira"
+
+#: base.py:1111
+msgid "Oct"
+msgstr "Urr"
+
+#: base.py:1111
+msgid "Nov"
+msgstr "Aza"
+
+#: base.py:1111
+msgid "Dec"
+msgstr "Abe"
+
+#: base.py:1116
+#, python-format
+msgid "first %(weekday)s"
+msgstr "lehen %(weekday)s"
+
+#: base.py:1117
+#, python-format
+msgid "second %(weekday)s"
+msgstr "bigarren %(weekday)s"
+
+#: base.py:1118
+#, python-format
+msgid "third %(weekday)s"
+msgstr "hirugarren %(weekday)s"
+
+#: base.py:1119
+#, python-format
+msgid "fourth %(weekday)s"
+msgstr "laugarren %(weekday)s"
+
+#: base.py:1121
+#, python-format
+msgid "second last %(weekday)s"
+msgstr "azkenaurreko %(weekday)s"
+
+#: base.py:1122
+#, python-format
+msgid "third last %(weekday)s"
+msgstr "azken-hirugarren %(weekday)s"
+
+#: base.py:1125 choices.py:17
+msgid "Monday"
+msgstr "Astelehena"
+
+#: base.py:1125 choices.py:18
+msgid "Tuesday"
+msgstr "Asteartea"
+
+#: base.py:1125 choices.py:19
+msgid "Wednesday"
+msgstr "Asteazkena"
+
+#: base.py:1126 choices.py:20
+msgid "Thursday"
+msgstr "Osteguna"
+
+#: base.py:1126 choices.py:21
+msgid "Friday"
+msgstr "Ostirala"
+
+#: base.py:1126 choices.py:22
+msgid "Saturday"
+msgstr "Larunbata"
+
+#: base.py:1126 choices.py:23
+msgid "Sunday"
+msgstr "Igandea"
+
+#: base.py:1129 choices.py:27
+msgid "January"
+msgstr "Urtarrila"
+
+#: base.py:1129 choices.py:28
+msgid "February"
+msgstr "Otsaila"
+
+#: base.py:1129 choices.py:29
+msgid "March"
+msgstr "Martxoa"
+
+#: base.py:1129 choices.py:30
+msgid "April"
+msgstr "Apirila"
+
+#: base.py:1130 choices.py:32
+msgid "June"
+msgstr "Ekaina"
+
+#: base.py:1130 choices.py:33
+msgid "July"
+msgstr "Uztaila"
+
+#: base.py:1130 choices.py:34
+msgid "August"
+msgstr "Abuztua"
+
+#: base.py:1131 choices.py:35
+msgid "September"
+msgstr "Iraila"
+
+#: base.py:1131 choices.py:36
+msgid "October"
+msgstr "Urria"
+
+#: base.py:1131 choices.py:37
+msgid "November"
+msgstr "Azaroa"
+
+#: base.py:1131 choices.py:38
+msgid "December"
+msgstr "Abendua"
+
+#: base.py:1149 base.py:1166 base.py:1177 base.py:1190 base.py:1208
+msgid ", "
+msgstr ", "
+
+#: base.py:1155
+#, python-format
+msgid "every %(number)s %(freq)s"
+msgstr "%(number)s %(freq)sero"
+
+#: base.py:1169 base.py:1193
+#, python-format
+msgid "each %(items)s"
+msgstr "%(items)sero"
+
+#: base.py:1172 base.py:1181 base.py:1185
+#, python-format
+msgid "on the %(items)s"
+msgstr "%(items)setan"
+
+#: base.py:1200
+msgid "occuring once"
+msgstr "behin gertatzen"
+
+#: base.py:1202
+#, python-format
+msgid "occuring %(number)s times"
+msgstr "%(number)stan gertatzen"
+
+#: base.py:1205
+#, python-format
+msgid "until %(date)s"
+msgstr "%(date)s arte"
+
+#: choices.py:7
+msgid "Secondly"
+msgstr "Segunduro"
+
+#: choices.py:8
+msgid "Minutely"
+msgstr "Minuturo"
+
+#: choices.py:9
+msgid "Hourly"
+msgstr "Orduro"
+
+#: choices.py:10
+msgid "Daily"
+msgstr "Egunero"
+
+#: choices.py:11
+msgid "Weekly"
+msgstr "Astero"
+
+#: choices.py:12
+msgid "Monthly"
+msgstr "Hilabetero"
+
+#: choices.py:13
+msgid "Yearly"
+msgstr "Urtero"
+
+#: choices.py:31
+msgid "May"
+msgstr "Maiatza"
+
+#: choices.py:44
+msgid "Inclusion"
+msgstr "Inklusio"
+
+#: choices.py:45
+msgid "Exclusion"
+msgstr "Exklusio"
+
+#: forms.py:72
+msgid "Invalid frequency."
+msgstr "Maiztasun baliogabea."
+
+#: forms.py:74
+#, python-format
+msgid "Max rules exceeded. The limit is %(limit)s"
+msgstr "Erregelen kopuru maximoa gainditua. Muga %(limit)s da"
+
+#: forms.py:76
+#, python-format
+msgid "Max exclusion rules exceeded. The limit is %(limit)s"
+msgstr "Exklusio erregelen kopuru maximoa gainditua. Muga %(limit)s da"
+
+#: forms.py:78
+#, python-format
+msgid "Max dates exceeded. The limit is %(limit)s"
+msgstr "Daten kopuru maximoa gainditua. Muga %(limit)s da"
+
+#: forms.py:80
+#, python-format
+msgid "Max exclusion dates exceeded. The limit is %(limit)s"
+msgstr "Exklusio daten kopuru maximoa gainditua. Muga %(limit)s da"
diff --git a/recurrence/locale/eu/LC_MESSAGES/djangojs.mo b/recurrence/locale/eu/LC_MESSAGES/djangojs.mo
new file mode 100644
index 0000000..c0ad109
Binary files /dev/null and b/recurrence/locale/eu/LC_MESSAGES/djangojs.mo differ
diff --git a/recurrence/locale/eu/LC_MESSAGES/djangojs.po b/recurrence/locale/eu/LC_MESSAGES/djangojs.po
new file mode 100644
index 0000000..0eb1953
--- /dev/null
+++ b/recurrence/locale/eu/LC_MESSAGES/djangojs.po
@@ -0,0 +1,499 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL at ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-05-14 18:13+0000\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: static/recurrence/js/recurrence-widget.js:1610
+msgctxt "date"
+msgid "%l, %F %j, %Y"
+msgstr "%Yko %Fk %j, %l"
+
+#: static/recurrence/js/recurrence-widget.js:1775
+msgid "including"
+msgstr "barnean hartuz"
+
+#: static/recurrence/js/recurrence-widget.js:1775
+msgid "excluding"
+msgstr "kanpoan utziz"
+
+#: static/recurrence/js/recurrence-widget.js:1779
+msgid "Frequency"
+msgstr "Maiztasuna"
+
+#: static/recurrence/js/recurrence-widget.js:1780
+msgid "On the"
+msgstr "Hemen"
+
+#: static/recurrence/js/recurrence-widget.js:1781
+msgid "Each"
+msgstr "Edozein"
+
+#: static/recurrence/js/recurrence-widget.js:1782
+msgid "Every"
+msgstr "Edozein"
+
+#: static/recurrence/js/recurrence-widget.js:1783
+msgid "Until"
+msgstr "Bukatzen"
+
+#: static/recurrence/js/recurrence-widget.js:1784
+msgid "Occurs %(number)s time"
+msgstr "Behin gertatzen da"
+
+#: static/recurrence/js/recurrence-widget.js:1785
+msgid "Occurs %(number)s times"
+msgstr "%(number)s aldiz gertatzen da"
+
+#: static/recurrence/js/recurrence-widget.js:1786
+msgid "Date"
+msgstr "Data"
+
+#: static/recurrence/js/recurrence-widget.js:1787
+msgid "Time"
+msgstr "Ordua"
+
+#: static/recurrence/js/recurrence-widget.js:1788
+msgid "Repeat until"
+msgstr "Errepikatu honerarte"
+
+#: static/recurrence/js/recurrence-widget.js:1789
+msgid "Exclude these occurences"
+msgstr "Gertaera hauek kanpoan utzi"
+
+#: static/recurrence/js/recurrence-widget.js:1790
+msgid "Exclude this date"
+msgstr "Data hau kanpoan utzi"
+
+#: static/recurrence/js/recurrence-widget.js:1791
+msgid "Add rule"
+msgstr "Erregela gehitu"
+
+#: static/recurrence/js/recurrence-widget.js:1792
+msgid "Add date"
+msgstr "Data gehitu"
+
+#: static/recurrence/js/recurrence-widget.js:1793
+msgid "Remove"
+msgstr "Kendu"
+
+#: static/recurrence/js/recurrence-widget.js:1794
+msgid "Calendar"
+msgstr "Egutegia"
+
+#: static/recurrence/js/recurrence.js:1006
+msgid "midnight"
+msgstr "gauerdia"
+
+#: static/recurrence/js/recurrence.js:1007
+msgid "noon"
+msgstr "eguerdia"
+
+#: static/recurrence/js/recurrence.js:1008
+msgid "on the %(items)s"
+msgstr "%(items)setan"
+
+#: static/recurrence/js/recurrence.js:1009
+msgid "every %(number)s %(freq)s"
+msgstr "%(number)s %(freq)s(e)ro"
+
+#: static/recurrence/js/recurrence.js:1010
+msgid "each %(items)s"
+msgstr "%(items)s bakoitzero"
+
+#: static/recurrence/js/recurrence.js:1011
+msgid "occuring %(number)s time"
+msgstr "behin gertatuz"
+
+#: static/recurrence/js/recurrence.js:1012
+msgid "occuring %(number)s times"
+msgstr "%(number)s aldiz gertatuz"
+
+#: static/recurrence/js/recurrence.js:1013
+msgid "until %(date)s"
+msgstr "%(date)s arte"
+
+#: static/recurrence/js/recurrence.js:1017
+msgid "year"
+msgstr "urtea"
+
+#: static/recurrence/js/recurrence.js:1017
+msgid "month"
+msgstr "hilabetea"
+
+#: static/recurrence/js/recurrence.js:1017
+msgid "week"
+msgstr "astea"
+
+#: static/recurrence/js/recurrence.js:1017
+msgid "day"
+msgstr "eguna"
+
+#: static/recurrence/js/recurrence.js:1018
+msgid "hour"
+msgstr "ordua"
+
+#: static/recurrence/js/recurrence.js:1018
+msgid "minute"
+msgstr "minutua"
+
+#: static/recurrence/js/recurrence.js:1018
+msgid "second"
+msgstr "segundua"
+
+#: static/recurrence/js/recurrence.js:1021
+msgid "years"
+msgstr "urte"
+
+#: static/recurrence/js/recurrence.js:1021
+msgid "months"
+msgstr "hilabete"
+
+#: static/recurrence/js/recurrence.js:1021
+msgid "weeks"
+msgstr "aste"
+
+#: static/recurrence/js/recurrence.js:1021
+msgid "days"
+msgstr "egun"
+
+#: static/recurrence/js/recurrence.js:1022
+msgid "hours"
+msgstr "ordu"
+
+#: static/recurrence/js/recurrence.js:1022
+msgid "minutes"
+msgstr "minutu"
+
+#: static/recurrence/js/recurrence.js:1022
+msgid "seconds"
+msgstr "segundu"
+
+#: static/recurrence/js/recurrence.js:1025
+msgid "annually"
+msgstr "urtero"
+
+#: static/recurrence/js/recurrence.js:1025
+msgid "monthly"
+msgstr "hilabetero"
+
+#: static/recurrence/js/recurrence.js:1025
+msgid "weekly"
+msgstr "astero"
+
+#: static/recurrence/js/recurrence.js:1025
+msgid "daily"
+msgstr "egunero"
+
+#: static/recurrence/js/recurrence.js:1026
+msgid "hourly"
+msgstr "orduro"
+
+#: static/recurrence/js/recurrence.js:1026
+msgid "minutely"
+msgstr "minuturo"
+
+#: static/recurrence/js/recurrence.js:1026
+msgid "secondly"
+msgstr "segunduro"
+
+#: static/recurrence/js/recurrence.js:1029
+msgid "Monday"
+msgstr "Astelehena"
+
+#: static/recurrence/js/recurrence.js:1029
+msgid "Tuesday"
+msgstr "Asteartea"
+
+#: static/recurrence/js/recurrence.js:1029
+msgid "Wednesday"
+msgstr "Asteazkena"
+
+#: static/recurrence/js/recurrence.js:1029
+msgid "Thursday"
+msgstr "Osteguna"
+
+#: static/recurrence/js/recurrence.js:1030
+msgid "Friday"
+msgstr "Ostirala"
+
+#: static/recurrence/js/recurrence.js:1030
+msgid "Saturday"
+msgstr "Larunbata"
+
+#: static/recurrence/js/recurrence.js:1030
+msgid "Sunday"
+msgstr "Igandea"
+
+#: static/recurrence/js/recurrence.js:1033
+msgid "Mon"
+msgstr "Astl"
+
+#: static/recurrence/js/recurrence.js:1033
+msgid "Tue"
+msgstr "Astr"
+
+#: static/recurrence/js/recurrence.js:1033
+msgid "Wed"
+msgstr "Astz"
+
+#: static/recurrence/js/recurrence.js:1033
+msgid "Thu"
+msgstr "Ostg"
+
+#: static/recurrence/js/recurrence.js:1034
+msgid "Fri"
+msgstr "Osti"
+
+#: static/recurrence/js/recurrence.js:1034
+msgid "Sat"
+msgstr "Lar"
+
+#: static/recurrence/js/recurrence.js:1034
+msgid "Sun"
+msgstr "Iga"
+
+#: static/recurrence/js/recurrence.js:1037
+msgctxt "Monday first letter"
+msgid "M"
+msgstr "Al"
+
+#: static/recurrence/js/recurrence.js:1038
+msgctxt "Tuesday first letter"
+msgid "T"
+msgstr "Ar"
+
+#: static/recurrence/js/recurrence.js:1039
+msgctxt "Wednesday first letter"
+msgid "W"
+msgstr "Az"
+
+#: static/recurrence/js/recurrence.js:1040
+msgctxt "Thursday first letter"
+msgid "T"
+msgstr "Og"
+
+#: static/recurrence/js/recurrence.js:1041
+msgctxt "Friday first letter"
+msgid "F"
+msgstr "Or"
+
+#: static/recurrence/js/recurrence.js:1042
+msgctxt "Saturday first letter"
+msgid "S"
+msgstr "L"
+
+#: static/recurrence/js/recurrence.js:1043
+msgctxt "Sunday first letter"
+msgid "S"
+msgstr "I"
+
+#: static/recurrence/js/recurrence.js:1046
+msgid "first %(weekday)s"
+msgstr "lehen %(weekday)s"
+
+#: static/recurrence/js/recurrence.js:1047
+msgid "second %(weekday)s"
+msgstr "bigarren %(weekday)s"
+
+#: static/recurrence/js/recurrence.js:1048
+msgid "third %(weekday)s"
+msgstr "hirugarren %(weekday)s"
+
+#: static/recurrence/js/recurrence.js:1049
+msgid "fourth %(weekday)s"
+msgstr "hirugarren %(weekday)s"
+
+#: static/recurrence/js/recurrence.js:1050
+#: static/recurrence/js/recurrence.js:1059
+msgid "last %(weekday)s"
+msgstr "azken %(weekday)s"
+
+#: static/recurrence/js/recurrence.js:1051
+msgid "second last %(weekday)s"
+msgstr "azkenaurreko %(weekday)s"
+
+#: static/recurrence/js/recurrence.js:1052
+msgid "third last %(weekday)s"
+msgstr "azken-hirugarren %(weekday)"
+
+#: static/recurrence/js/recurrence.js:1055
+msgid "1st %(weekday)s"
+msgstr "1. %(weekday)s"
+
+#: static/recurrence/js/recurrence.js:1056
+msgid "2nd %(weekday)s"
+msgstr "2. %(weekday)s"
+
+#: static/recurrence/js/recurrence.js:1057
+msgid "3rd %(weekday)s"
+msgstr "3. %(weekday)s"
+
+#: static/recurrence/js/recurrence.js:1058
+msgid "4th %(weekday)s"
+msgstr "4. %(weekday)s"
+
+#: static/recurrence/js/recurrence.js:1060
+msgid "2nd last %(weekday)s"
+msgstr "2. azken %(weekday)"
... 160 lines suppressed ...

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/django-recurrence.git



More information about the Python-modules-commits mailing list