summaryrefslogtreecommitdiff
path: root/babel
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2023-02-28 15:55:39 +0200
committerAarni Koskela <akx@iki.fi>2023-02-28 16:05:05 +0200
commit9beda0bed2600af47827ad200b0c5864c542c617 (patch)
tree0f33c97c5ffbd784908cf08815702e86fbb1f1f4 /babel
parent287f731fdde4b24034fd7f18b44de78e8db930e5 (diff)
downloadbabel-9beda0bed2600af47827ad200b0c5864c542c617.tar.gz
Update copyright year to 2023
Diffstat (limited to 'babel')
-rw-r--r--babel/__init__.py2
-rw-r--r--babel/core.py2
-rw-r--r--babel/dates.py2
-rw-r--r--babel/lists.py2
-rw-r--r--babel/localedata.py2
-rw-r--r--babel/localtime/__init__.py2
-rw-r--r--babel/messages/__init__.py2
-rw-r--r--babel/messages/catalog.py2
-rw-r--r--babel/messages/checkers.py2
-rw-r--r--babel/messages/extract.py2
-rw-r--r--babel/messages/frontend.py2
-rw-r--r--babel/messages/jslexer.py2
-rw-r--r--babel/messages/mofile.py2
-rw-r--r--babel/messages/plurals.py2
-rw-r--r--babel/messages/pofile.py2
-rw-r--r--babel/numbers.py2
-rw-r--r--babel/plural.py2
-rw-r--r--babel/support.py2
-rw-r--r--babel/util.py2
19 files changed, 19 insertions, 19 deletions
diff --git a/babel/__init__.py b/babel/__init__.py
index 225ec14..9f40feb 100644
--- a/babel/__init__.py
+++ b/babel/__init__.py
@@ -12,7 +12,7 @@
access to various locale display names, localized number and date
formatting, etc.
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/core.py b/babel/core.py
index 57a6b63..6df5850 100644
--- a/babel/core.py
+++ b/babel/core.py
@@ -4,7 +4,7 @@
Core locale representation and locale data access.
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/dates.py b/babel/dates.py
index 78c7fac..eb1019e 100644
--- a/babel/dates.py
+++ b/babel/dates.py
@@ -11,7 +11,7 @@
* ``LC_ALL``, and
* ``LANG``
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/lists.py b/babel/lists.py
index 97fc49a..6ea4f01 100644
--- a/babel/lists.py
+++ b/babel/lists.py
@@ -10,7 +10,7 @@
* ``LC_ALL``, and
* ``LANG``
- :copyright: (c) 2015-2022 by the Babel Team.
+ :copyright: (c) 2015-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
from __future__ import annotations
diff --git a/babel/localedata.py b/babel/localedata.py
index a9c7c75..f1e8a12 100644
--- a/babel/localedata.py
+++ b/babel/localedata.py
@@ -7,7 +7,7 @@
:note: The `Locale` class, which uses this module under the hood, provides a
more convenient interface for accessing the locale data.
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/localtime/__init__.py b/babel/localtime/__init__.py
index 29577fa..e1ece73 100644
--- a/babel/localtime/__init__.py
+++ b/babel/localtime/__init__.py
@@ -5,7 +5,7 @@
Babel specific fork of tzlocal to determine the local timezone
of the system.
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/messages/__init__.py b/babel/messages/__init__.py
index 60aeba0..883a2e0 100644
--- a/babel/messages/__init__.py
+++ b/babel/messages/__init__.py
@@ -4,7 +4,7 @@
Support for ``gettext`` message catalogs.
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/messages/catalog.py b/babel/messages/catalog.py
index 47b9e62..20a3166 100644
--- a/babel/messages/catalog.py
+++ b/babel/messages/catalog.py
@@ -4,7 +4,7 @@
Data structures for message catalogs.
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
from __future__ import annotations
diff --git a/babel/messages/checkers.py b/babel/messages/checkers.py
index 38a26e8..056f3e9 100644
--- a/babel/messages/checkers.py
+++ b/babel/messages/checkers.py
@@ -6,7 +6,7 @@
:since: version 0.9
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
from __future__ import annotations
diff --git a/babel/messages/extract.py b/babel/messages/extract.py
index 5a34f64..b6dce6f 100644
--- a/babel/messages/extract.py
+++ b/babel/messages/extract.py
@@ -12,7 +12,7 @@
The main entry points into the extraction functionality are the functions
`extract_from_dir` and `extract_from_file`.
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
from __future__ import annotations
diff --git a/babel/messages/frontend.py b/babel/messages/frontend.py
index 5baefbb..af7e1d1 100644
--- a/babel/messages/frontend.py
+++ b/babel/messages/frontend.py
@@ -4,7 +4,7 @@
Frontends for the message extraction functionality.
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/messages/jslexer.py b/babel/messages/jslexer.py
index 0563f62..d3389d0 100644
--- a/babel/messages/jslexer.py
+++ b/babel/messages/jslexer.py
@@ -5,7 +5,7 @@
A simple JavaScript 1.5 lexer which is used for the JavaScript
extractor.
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
from __future__ import annotations
diff --git a/babel/messages/mofile.py b/babel/messages/mofile.py
index 0a432a7..4ec58ca 100644
--- a/babel/messages/mofile.py
+++ b/babel/messages/mofile.py
@@ -4,7 +4,7 @@
Writing of files in the ``gettext`` MO (machine object) format.
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
from __future__ import annotations
diff --git a/babel/messages/plurals.py b/babel/messages/plurals.py
index eb8de47..86ec800 100644
--- a/babel/messages/plurals.py
+++ b/babel/messages/plurals.py
@@ -4,7 +4,7 @@
Plural form definitions.
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
from __future__ import annotations
diff --git a/babel/messages/pofile.py b/babel/messages/pofile.py
index 73d8cbe..3c8a523 100644
--- a/babel/messages/pofile.py
+++ b/babel/messages/pofile.py
@@ -5,7 +5,7 @@
Reading and writing of files in the ``gettext`` PO (portable object)
format.
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
from __future__ import annotations
diff --git a/babel/numbers.py b/babel/numbers.py
index 1a86d9e..de0f419 100644
--- a/babel/numbers.py
+++ b/babel/numbers.py
@@ -11,7 +11,7 @@
* ``LC_ALL``, and
* ``LANG``
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
# TODO:
diff --git a/babel/plural.py b/babel/plural.py
index 6cead04..c5c7716 100644
--- a/babel/plural.py
+++ b/babel/plural.py
@@ -4,7 +4,7 @@
CLDR Plural support. See UTS #35.
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
from __future__ import annotations
diff --git a/babel/support.py b/babel/support.py
index 59593b8..d6ff73a 100644
--- a/babel/support.py
+++ b/babel/support.py
@@ -7,7 +7,7 @@
.. note: the code in this module is not used by Babel itself
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
from __future__ import annotations
diff --git a/babel/util.py b/babel/util.py
index 100e37d..17b08d1 100644
--- a/babel/util.py
+++ b/babel/util.py
@@ -4,7 +4,7 @@
Various utility classes and functions.
- :copyright: (c) 2013-2022 by the Babel Team.
+ :copyright: (c) 2013-2023 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
from __future__ import annotations