]> git.ipfire.org Git - thirdparty/babel.git/commitdiff
Update copyright header years, and include the Babel team
authorAarni Koskela <akx@iki.fi>
Fri, 2 Feb 2018 16:51:30 +0000 (18:51 +0200)
committerAarni Koskela <akx@iki.fi>
Fri, 2 Feb 2018 16:51:30 +0000 (18:51 +0200)
38 files changed:
LICENSE
babel/__init__.py
babel/core.py
babel/dates.py
babel/localedata.py
babel/localtime/__init__.py
babel/localtime/_unix.py
babel/messages/__init__.py
babel/messages/catalog.py
babel/messages/checkers.py
babel/messages/extract.py
babel/messages/frontend.py
babel/messages/jslexer.py
babel/messages/mofile.py
babel/messages/plurals.py
babel/messages/pofile.py
babel/numbers.py
babel/plural.py
babel/support.py
babel/util.py
docs/conf.py
scripts/dump_data.py
scripts/dump_global.py
scripts/import_cldr.py
tests/messages/test_catalog.py
tests/messages/test_checkers.py
tests/messages/test_extract.py
tests/messages/test_frontend.py
tests/messages/test_mofile.py
tests/messages/test_plurals.py
tests/messages/test_pofile.py
tests/test_core.py
tests/test_dates.py
tests/test_localedata.py
tests/test_numbers.py
tests/test_plural.py
tests/test_support.py
tests/test_util.py

diff --git a/LICENSE b/LICENSE
index 1f1f55b609930df913964d5838277d96a132f936..b517a529496369ff64cd82e23c17ef132facd565 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (C) 2013 by the Babel Team, see AUTHORS for more information.
+Copyright (c) 2013-2018 by the Babel Team, see AUTHORS for more information.
 
 All rights reserved.
 
index 5a388226bf492bae79002b804a72b432e6dc0054..c4e4d20ac250768cddf8006afadc748af9ea8bcd 100644 (file)
@@ -13,7 +13,7 @@
        access to various locale display names, localized number and date
        formatting, etc.
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 
index 5a1a9125dc01661bba03b6f71cd854fd595b2242..d028c07da6aa4b689d47bfdcc92a9ced5d1f09d6 100644 (file)
@@ -5,7 +5,7 @@
 
     Core locale representation and locale data access.
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 
index a30d6d8e29d2fbbb96e358e7d20d44a858013680..cf58a485dc3c6cd63215ac549612533779bce548 100644 (file)
@@ -12,7 +12,7 @@
      * ``LC_ALL``, and
      * ``LANG``
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 
index 0c94e49ea98debb04dd22ec946586252f90279f9..a638e58afdea4cb9c82f13d370057e8dcc9d93ea 100644 (file)
@@ -8,7 +8,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 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 
index 883ff166140020937258bdf1b441e354b57fefb2..bb4341d60d3357373f15609675e42b490f4aef7e 100644 (file)
@@ -6,7 +6,7 @@
     Babel specific fork of tzlocal to determine the local timezone
     of the system.
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 
index 8f25fe7b80497545087fea9d6014a8f49ff281b7..c2194694cdc03575d404c093f822b0bec61eaf00 100644 (file)
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
 from __future__ import with_statement
 import os
 import re
index 1b63bae2ee60722c7dc4995261013a8b9e2eb49e..7dd6f8b6da6125e171952d245a993863d17b7e2e 100644 (file)
@@ -5,7 +5,7 @@
 
     Support for ``gettext`` message catalogs.
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 
index b293e3c734e670b15c34142225e017ff51299e15..5f05427bb43448a6d7f69b628a6683cb7da9ffde 100644 (file)
@@ -5,7 +5,7 @@
 
     Data structures for message catalogs.
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 
index a1e6e8d6099ca0c31657057f549c1dd58a3a08eb..d04ad70ecacef345152538f2535aed7bbbf29ad6 100644 (file)
@@ -7,7 +7,7 @@
 
     :since: version 0.9
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 
index 351a2907067a6f7c4935565c6f7aa54fab8b7043..009bea2b4eb9f4d4fd5a33aefc924a4a449ebf07 100644 (file)
@@ -13,7 +13,7 @@
     The main entry points into the extraction functionality are the functions
     `extract_from_dir` and `extract_from_file`.
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 
index b573a97cac4e9c41158a0fbaec8e9f7766ff46f2..d848f2dfc1a4394b9d1bd4bcd6bbc340553566b9 100644 (file)
@@ -5,7 +5,7 @@
 
     Frontends for the message extraction functionality.
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 from __future__ import print_function
index 30d6e5405b55b718c2c1e6b14138f2a777131b4c..04d02761dead8c2401211d312604418c52bbfc37 100644 (file)
@@ -6,7 +6,7 @@
     A simple JavaScript 1.5 lexer which is used for the JavaScript
     extractor.
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 from collections import namedtuple
index 79042e003a80fc0d1ea08474e610faa627656872..7bddd18457c0b91449cf2c615a9512d63948e1d7 100644 (file)
@@ -5,7 +5,7 @@
 
     Writing of files in the ``gettext`` MO (machine object) format.
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 
index 92cefa79af860bb0642df2c219b622b169ac6f2d..067ac9826d41da6f230f93186f2ddb8a28d0f7d8 100644 (file)
@@ -5,7 +5,7 @@
 
     Plural form definitions.
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 
index beb6f3570e60e5b5e2453e0b32501436d5cf5447..ea8d7d7e24ab4e5b5547b12d8c7117787f359c03 100644 (file)
@@ -6,7 +6,7 @@
     Reading and writing of files in the ``gettext`` PO (portable object)
     format.
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 
index cbd147475544c4ce9f2363bfcf61dc4c0e51c897..cb851e4cabbc2582aefa5fa5193d140699b10b60 100644 (file)
@@ -12,7 +12,7 @@
      * ``LC_ALL``, and
      * ``LANG``
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 # TODO:
index 06f349ea9e8403100bd6d8cc99552625bee0c127..38093fe6e415fbd57769b50baf6898571babd39b 100644 (file)
@@ -5,7 +5,7 @@
 
     CLDR Plural support.  See UTS #35.
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 import re
index 24bc9aaa17793a6cc830f527168ccc3c50ad0bf0..932fcf2bbe2e4f3fc5fabb05e0c18a265a2a3238 100644 (file)
@@ -8,7 +8,7 @@
 
     .. note: the code in this module is not used by Babel itself
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 
index af8c762ec9a6b105e7796d70e0ffe47280f6d28c..0150827de479b7ce8a997b92100ddde540d712ec 100644 (file)
@@ -5,7 +5,7 @@
 
     Various utility classes and functions.
 
-    :copyright: (c) 2013 by the Babel Team.
+    :copyright: (c) 2013-2018 by the Babel Team.
     :license: BSD, see LICENSE for more details.
 """
 
index 432387e7c8dfe5a3da30d8a2dda2a5da8fd4c076..5aebe94d9476a5fe0fe662fad4311a80d09d2bf1 100644 (file)
@@ -44,7 +44,7 @@ master_doc = 'index'
 
 # General information about the project.
 project = u'Babel'
-copyright = u'2017, The Babel Team'
+copyright = u'2018, The Babel Team'
 
 # The version info for the project you're documenting, acts as replacement for
 # |version| and |release|, also used in various other places throughout the
index 0bb3e9117a7471468f193049b6744bf69e1aa671..5e128605309183ee820a59cff621ffd7915c44c5 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2007-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
index 2970bc2ba54808e3007cfde68995d279627b6a0e..ad3d35da92931e0b4f25a64a6611ada32a1ba647 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2007-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
index b81fa609138fe96069951d8cfc32cb59b91e7394..89fc1a7f634780ceabb09c19d360795f180b42d3 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2007-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
index 07ed724b96c364db27fef2e3cf1fbb7f3d9b3d43..f9fa724432ece1ad6c32cac9306aca44fd5a6f52 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2007-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
index e9c34bcb789b84f97394ea674286dd56b3a2dbb1..6af81c64f9eb8f28264f60bc39d2d93c3f58263f 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2008-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
index 17b090fc1db794620eff4297eefae8348132ce3f..13ce8735afc09112a3c191508e4c2ba3c0920904 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2007-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
index 10325fe616440e892a2dc48b8c56029c2aa232c3..0f12f1e7719a7c6c9b56282ea33aab6e449e781f 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2007-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
index 5fedc600a36f1b4f33bda6e8e997e931856c7653..c590facc8b16eda17fdc49978459752873facb89 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2007-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
index 2e7553c16ba699e57f3a0a503cb0505084259928..3792a1b2883ae0a7760bc310769ac5737b9611e8 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2008-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
index 002954f8ae91b1ad7a392250c6fcd091638f0870..1a04b4e6f2fb8b7e53e7d58ff89652fb282c72aa 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2007-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
index 4f985ca74997c04e684b18795de261753ed8b970..7fa9e0036ac8a59c92c924d287c6ba3eb06148e2 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2007-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
index 6df4631f5aeaddf9a16f50efad515a5100494ee7..5a46c1b8a1d1d4c144c571c82334451f4b30f0c4 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2007-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
@@ -789,4 +789,4 @@ def test_russian_week_numbering():
     # See https://github.com/python-babel/babel/issues/485
     v = date(2017, 1, 1)
     assert dates.format_date(v, format='YYYY-ww',locale='ru_RU') == '2016-52'  # This would have returned 2017-01 prior to CLDR 32
-    assert dates.format_date(v, format='YYYY-ww',locale='de_DE') == '2016-52'
\ No newline at end of file
+    assert dates.format_date(v, format='YYYY-ww',locale='de_DE') == '2016-52'
index f678d5ba74647dd30cbbcc06a802a89575bd4108..be5694a7d6f82f8327f0ee6dca5237c123594425 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2007-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
index 3ad9c663f23601e44fca4cccfb3ea67881c7860f..1f4a0fe000d86b5d25beb303990cbeb5d2393976 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2007-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
index be7414994bffac2f48e9b646dc8dafb998fbd210..852a7c755eba58b077c066c1b34f7b429b06da2c 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2008-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
index 6f9fb32466ab08fbe78fafdd858ac16e57de0788..7e63ba2e91e86b7204d4d4bbefe06bb19d7353e9 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2007-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
index 4c769bea3c324272e0b4ba1a1ca3e9e71d05f007..61d4f4fa7ad85383e02a769758fa781d37428160 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2007-2011 Edgewall Software
+# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which