zope.i18n 5.0__py3-none-any.whl → 5.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- zope/i18n/format.py +2 -1
- zope/i18n/gettextmessagecatalog.py +2 -2
- zope/i18n/locales/__init__.py +23 -23
- zope/i18n/locales/fallbackcollator.txt +3 -3
- zope/i18n/locales/tests/test_docstrings.py +3 -4
- zope/i18n/locales/tests/test_fallbackcollator.py +1 -7
- zope/i18n/locales/xmlfactory.py +123 -123
- zope/i18n/testing.py +11 -12
- zope/i18n/testmessagecatalog.py +2 -2
- zope/i18n/tests/locale/de/LC_MESSAGES/zope-i18n.mo +0 -0
- zope/i18n/tests/locale/en/LC_MESSAGES/zope-i18n.mo +0 -0
- zope/i18n/tests/locale-alt/en/LC_MESSAGES/alt.mo +0 -0
- zope/i18n/tests/locale-default/de/LC_MESSAGES/default.mo +0 -0
- zope/i18n/tests/locale-default/en/LC_MESSAGES/default.mo +0 -0
- zope/i18n/tests/locale-default/pl/LC_MESSAGES/default.mo +0 -0
- zope/i18n/tests/locale-default/sr/LC_MESSAGES/default.mo +0 -0
- zope/i18n/tests/locale-default/sr@Cyrl/LC_MESSAGES/default.mo +0 -0
- zope/i18n/tests/locale-default/sr@Latn/LC_MESSAGES/default.mo +0 -0
- zope/i18n/tests/locale2/en/LC_MESSAGES/zope-i18n.mo +0 -0
- zope/i18n/tests/locale3/en/LC_MESSAGES/zope-i18n.mo +0 -0
- zope/i18n/tests/locale3/en/LC_MESSAGES/zope-i18n2.mo +0 -0
- zope/i18n/tests/test.py +1 -4
- zope/i18n/tests/test_formats.py +603 -714
- zope/i18n/tests/test_gettextmessagecatalog.py +4 -1
- zope/i18n/tests/test_plurals.py +7 -2
- zope/i18n/tests/test_translationdomain.py +37 -19
- {zope.i18n-5.0.dist-info → zope.i18n-5.2.dist-info}/METADATA +21 -4
- {zope.i18n-5.0.dist-info → zope.i18n-5.2.dist-info}/RECORD +40 -28
- {zope.i18n-5.0.dist-info → zope.i18n-5.2.dist-info}/WHEEL +1 -1
- /zope/i18n/tests/{en-alt.po → locale-alt/en/LC_MESSAGES/alt.po} +0 -0
- /zope/i18n/tests/{de-default.po → locale-default/de/LC_MESSAGES/default.po} +0 -0
- /zope/i18n/tests/{en-default.po → locale-default/en/LC_MESSAGES/default.po} +0 -0
- /zope/i18n/tests/{pl-default.po → locale-default/pl/LC_MESSAGES/default.po} +0 -0
- /zope/i18n/tests/{sr-default.po → locale-default/sr/LC_MESSAGES/default.po} +0 -0
- /zope/i18n/tests/{sr@Cyrl-default.po → locale-default/sr@Cyrl/LC_MESSAGES/default.po} +0 -0
- /zope/i18n/tests/{sr@Latn-default.po → locale-default/sr@Latn/LC_MESSAGES/default.po} +0 -0
- /zope.i18n-5.0-py3.9-nspkg.pth → /zope.i18n-5.2-py3.11-nspkg.pth +0 -0
- {zope.i18n-5.0.dist-info → zope.i18n-5.2.dist-info}/LICENSE.txt +0 -0
- {zope.i18n-5.0.dist-info → zope.i18n-5.2.dist-info}/namespace_packages.txt +0 -0
- {zope.i18n-5.0.dist-info → zope.i18n-5.2.dist-info}/top_level.txt +0 -0
@@ -16,6 +16,7 @@
|
|
16
16
|
import os
|
17
17
|
|
18
18
|
from zope.i18n.gettextmessagecatalog import GettextMessageCatalog
|
19
|
+
from zope.i18n.testing import compile_po
|
19
20
|
from zope.i18n.tests import test_imessagecatalog
|
20
21
|
|
21
22
|
|
@@ -24,7 +25,9 @@ class GettextMessageCatalogTest(test_imessagecatalog.TestIMessageCatalog):
|
|
24
25
|
def _getMessageCatalog(self):
|
25
26
|
from zope.i18n import tests
|
26
27
|
path = os.path.dirname(tests.__file__)
|
27
|
-
self._path = os.path.join(
|
28
|
+
self._path = os.path.join(
|
29
|
+
path, 'locale-default', 'en', 'LC_MESSAGES', 'default.mo')
|
30
|
+
compile_po(self._path)
|
28
31
|
catalog = GettextMessageCatalog('en', 'default', self._path)
|
29
32
|
return catalog
|
30
33
|
|
zope/i18n/tests/test_plurals.py
CHANGED
@@ -23,6 +23,7 @@ from zope.i18n import tests
|
|
23
23
|
from zope.i18n import translate
|
24
24
|
from zope.i18n.gettextmessagecatalog import GettextMessageCatalog
|
25
25
|
from zope.i18n.interfaces import ITranslationDomain
|
26
|
+
from zope.i18n.testing import compile_po
|
26
27
|
from zope.i18n.translationdomain import TranslationDomain
|
27
28
|
|
28
29
|
|
@@ -30,13 +31,17 @@ class TestPlurals(unittest.TestCase):
|
|
30
31
|
|
31
32
|
def _getMessageCatalog(self, locale, variant="default"):
|
32
33
|
path = os.path.dirname(tests.__file__)
|
33
|
-
self._path = os.path.join(
|
34
|
+
self._path = os.path.join(
|
35
|
+
path, f'locale-{variant}', locale, 'LC_MESSAGES', f'{variant}.mo')
|
36
|
+
compile_po(self._path)
|
34
37
|
catalog = GettextMessageCatalog(locale, variant, self._path)
|
35
38
|
return catalog
|
36
39
|
|
37
40
|
def _getTranslationDomain(self, locale, variant="default"):
|
38
41
|
path = os.path.dirname(tests.__file__)
|
39
|
-
self._path = os.path.join(
|
42
|
+
self._path = os.path.join(
|
43
|
+
path, f'locale-{variant}', locale, 'LC_MESSAGES', f'{variant}.mo')
|
44
|
+
compile_po(self._path)
|
40
45
|
catalog = GettextMessageCatalog(locale, variant, self._path)
|
41
46
|
domain = TranslationDomain('default')
|
42
47
|
domain.addCatalog(catalog)
|
@@ -21,25 +21,27 @@ from zope.i18nmessageid import MessageFactory
|
|
21
21
|
|
22
22
|
from zope.i18n.gettextmessagecatalog import GettextMessageCatalog
|
23
23
|
from zope.i18n.interfaces import ITranslationDomain
|
24
|
+
from zope.i18n.testing import compile_po
|
24
25
|
from zope.i18n.tests.test_itranslationdomain import Environment
|
25
26
|
from zope.i18n.tests.test_itranslationdomain import TestITranslationDomain
|
26
27
|
from zope.i18n.translationdomain import TranslationDomain
|
27
28
|
|
28
29
|
|
29
30
|
testdir = os.path.dirname(__file__)
|
31
|
+
default_dir = os.path.join(testdir, 'locale-default')
|
30
32
|
|
31
|
-
en_file = os.path.join(
|
32
|
-
de_file = os.path.join(
|
33
|
+
en_file = os.path.join(default_dir, 'en', 'LC_MESSAGES', 'default.mo')
|
34
|
+
de_file = os.path.join(default_dir, 'de', 'LC_MESSAGES', 'default.mo')
|
33
35
|
|
34
36
|
|
35
37
|
class TestGlobalTranslationDomain(TestITranslationDomain, unittest.TestCase):
|
36
38
|
|
37
39
|
def _getTranslationDomain(self):
|
38
40
|
domain = TranslationDomain('default')
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
41
|
+
compile_po(en_file)
|
42
|
+
en_catalog = GettextMessageCatalog('en', 'default', en_file)
|
43
|
+
compile_po(de_file)
|
44
|
+
de_catalog = GettextMessageCatalog('de', 'default', de_file)
|
43
45
|
domain.addCatalog(en_catalog)
|
44
46
|
domain.addCatalog(de_catalog)
|
45
47
|
return domain
|
@@ -111,10 +113,17 @@ class TestGlobalTranslationDomain(TestITranslationDomain, unittest.TestCase):
|
|
111
113
|
mapping={})
|
112
114
|
msgid2 = factory("48-not-there", 'Message 2 and $msg1',
|
113
115
|
mapping={})
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
116
|
+
try:
|
117
|
+
msgid1.mapping['msg2'] = msgid2
|
118
|
+
msgid2.mapping['msg1'] = msgid1
|
119
|
+
except TypeError:
|
120
|
+
# this is a `zope.i118nmessageid >= 7` message id enforcing
|
121
|
+
# immutability; circular references therefore
|
122
|
+
# cannot be created in this way
|
123
|
+
pass
|
124
|
+
else:
|
125
|
+
self.assertRaises(ValueError,
|
126
|
+
translate, msgid1, None, None, 'en', "default")
|
118
127
|
# Recursive translations also work if the original message id wasn't a
|
119
128
|
# message id but a Unicode with a directly passed mapping
|
120
129
|
self.assertEqual(
|
@@ -138,8 +147,10 @@ class TestGlobalTranslationDomain(TestITranslationDomain, unittest.TestCase):
|
|
138
147
|
# provide the domain
|
139
148
|
domain = TranslationDomain('alt')
|
140
149
|
path = testdir
|
141
|
-
|
142
|
-
|
150
|
+
en_alt_path = os.path.join(
|
151
|
+
path, 'locale-alt', 'en', 'LC_MESSAGES', 'alt.mo')
|
152
|
+
compile_po(en_alt_path)
|
153
|
+
en_catalog = GettextMessageCatalog('en', 'alt', en_alt_path)
|
143
154
|
domain.addCatalog(en_catalog)
|
144
155
|
# test that we get the right translation
|
145
156
|
zope.component.provideUtility(domain, ITranslationDomain, 'alt')
|
@@ -150,8 +161,10 @@ class TestGlobalTranslationDomain(TestITranslationDomain, unittest.TestCase):
|
|
150
161
|
def testMessageIDTranslateForDifferentDomain(self):
|
151
162
|
domain = TranslationDomain('alt')
|
152
163
|
path = testdir
|
153
|
-
|
154
|
-
|
164
|
+
en_alt_path = os.path.join(
|
165
|
+
path, 'locale-alt', 'en', 'LC_MESSAGES', 'alt.mo')
|
166
|
+
compile_po(en_alt_path)
|
167
|
+
en_catalog = GettextMessageCatalog('en', 'alt', en_alt_path)
|
155
168
|
domain.addCatalog(en_catalog)
|
156
169
|
|
157
170
|
zope.component.provideUtility(domain, ITranslationDomain, 'alt')
|
@@ -220,14 +233,19 @@ class TestGlobalTranslationDomain(TestITranslationDomain, unittest.TestCase):
|
|
220
233
|
|
221
234
|
See https://github.com/collective/plone.app.locales/issues/326
|
222
235
|
"""
|
223
|
-
standard_file = os.path.join(
|
224
|
-
|
225
|
-
|
236
|
+
standard_file = os.path.join(
|
237
|
+
default_dir, 'sr', 'LC_MESSAGES', 'default.mo')
|
238
|
+
latin_file = os.path.join(
|
239
|
+
default_dir, 'sr@Latn', 'LC_MESSAGES', 'default.mo')
|
240
|
+
cyrillic_file = os.path.join(
|
241
|
+
default_dir, 'sr@Cyrl', 'LC_MESSAGES', 'default.mo')
|
242
|
+
compile_po(standard_file)
|
226
243
|
standard_catalog = GettextMessageCatalog('sr', 'char', standard_file)
|
244
|
+
compile_po(latin_file)
|
227
245
|
latin_catalog = GettextMessageCatalog('sr@Latn', 'char', latin_file)
|
246
|
+
compile_po(cyrillic_file)
|
228
247
|
cyrillic_catalog = GettextMessageCatalog(
|
229
|
-
'sr@Cyrl', 'char', cyrillic_file
|
230
|
-
)
|
248
|
+
'sr@Cyrl', 'char', cyrillic_file)
|
231
249
|
|
232
250
|
# Test the standard file.
|
233
251
|
domain = TranslationDomain('char')
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: zope.i18n
|
3
|
-
Version: 5.
|
3
|
+
Version: 5.2
|
4
4
|
Summary: Zope Internationalization Support
|
5
5
|
Home-page: https://github.com/zopefoundation/zope.i18n
|
6
6
|
Author: Zope Foundation and Contributors
|
@@ -13,25 +13,25 @@ Classifier: Intended Audience :: Developers
|
|
13
13
|
Classifier: License :: OSI Approved :: Zope Public License
|
14
14
|
Classifier: Programming Language :: Python
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
16
|
-
Classifier: Programming Language :: Python :: 3.7
|
17
16
|
Classifier: Programming Language :: Python :: 3.8
|
18
17
|
Classifier: Programming Language :: Python :: 3.9
|
19
18
|
Classifier: Programming Language :: Python :: 3.10
|
20
19
|
Classifier: Programming Language :: Python :: 3.11
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
21
21
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
22
22
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
23
23
|
Classifier: Natural Language :: English
|
24
24
|
Classifier: Operating System :: OS Independent
|
25
25
|
Classifier: Topic :: Internet :: WWW/HTTP
|
26
26
|
Classifier: Framework :: Zope :: 3
|
27
|
-
Requires-Python: >=3.
|
27
|
+
Requires-Python: >=3.8
|
28
28
|
License-File: LICENSE.txt
|
29
29
|
Requires-Dist: setuptools
|
30
30
|
Requires-Dist: python-gettext
|
31
31
|
Requires-Dist: pytz
|
32
32
|
Requires-Dist: zope.deprecation
|
33
33
|
Requires-Dist: zope.schema
|
34
|
-
Requires-Dist: zope.i18nmessageid
|
34
|
+
Requires-Dist: zope.i18nmessageid >=4.3
|
35
35
|
Requires-Dist: zope.component
|
36
36
|
Provides-Extra: compile
|
37
37
|
Provides-Extra: docs
|
@@ -88,6 +88,23 @@ localization.
|
|
88
88
|
CHANGES
|
89
89
|
=========
|
90
90
|
|
91
|
+
5.2 (2024-09-27)
|
92
|
+
================
|
93
|
+
|
94
|
+
- Add support for Python 3.12.
|
95
|
+
|
96
|
+
- Drop support for Python 3.7.
|
97
|
+
|
98
|
+
- Fix test incompatibility for ``zope.i18nmessageid >= 7.0``
|
99
|
+
(`#62 <https://github.com/zopefoundation/zope.i18n/issues/62>`_).
|
100
|
+
|
101
|
+
|
102
|
+
5.1 (2023-08-28)
|
103
|
+
================
|
104
|
+
|
105
|
+
- Include ``*.mo`` files in release but remove them from repository.
|
106
|
+
|
107
|
+
|
91
108
|
5.0 (2023-03-27)
|
92
109
|
================
|
93
110
|
|
@@ -1,16 +1,16 @@
|
|
1
|
-
zope.i18n-5.
|
1
|
+
zope.i18n-5.2-py3.11-nspkg.pth,sha256=SWEVH-jEWsKYrL0qoC6GBJaStx_iKxGoAY9PQycFVC4,529
|
2
2
|
zope/i18n/__init__.py,sha256=NMpvR4IsTXy_OficD1vx2eR6yzJMWRaONWmMibaX-l8,7514
|
3
3
|
zope/i18n/compile.py,sha256=0kpclbhChlZQIbfTctPp4Cqc2F5RqEcR7jquLnkcLh4,1429
|
4
4
|
zope/i18n/config.py,sha256=20aYlJ4eg-2iuSXHDRqXkkzALDa4URhRchKvFPH9Y6I,1669
|
5
5
|
zope/i18n/configure.zcml,sha256=oebDJrOzCVDc6U957WVABZiA4GpG061rEHil-9lJ_Uc,278
|
6
|
-
zope/i18n/format.py,sha256=
|
7
|
-
zope/i18n/gettextmessagecatalog.py,sha256=
|
6
|
+
zope/i18n/format.py,sha256=Y69ArTTdfYKlqsR_mQmHMbSrqgiFgi3NwoLnusILtRM,34945
|
7
|
+
zope/i18n/gettextmessagecatalog.py,sha256=kyGa_Y4X2_EY6X3viIvz3GuLOVZvk_vSAFEAb0SMOgM,3726
|
8
8
|
zope/i18n/i18nobject.txt,sha256=mi5UD13ZvBxNLSNGvPMVy1We2rFCMpuF1fTJnl9Rc8I,3074
|
9
9
|
zope/i18n/meta.zcml,sha256=ymIRohOID745zvv_jCCRUOkrvRMeOOx_umKSS_0EtME,396
|
10
10
|
zope/i18n/negotiator.py,sha256=RNLHH1YYouj6IcceQr5Q_1m6whRx0nMMHJyw9iB7GnI,2159
|
11
11
|
zope/i18n/simpletranslationdomain.py,sha256=idz4JmY9U70bJK2Ut8TReYhB70Rjd2TgFxNYuVJps7E,2669
|
12
|
-
zope/i18n/testing.py,sha256=
|
13
|
-
zope/i18n/testmessagecatalog.py,sha256=
|
12
|
+
zope/i18n/testing.py,sha256=hZlCwqiY-mfaRjOdsynCLQz39lJrUGDrQiJM6jieZiM,2052
|
13
|
+
zope/i18n/testmessagecatalog.py,sha256=kmyXIjJmps5RvHPRxm6aXZgzCazikwpOTYbRNg-D4E4,1703
|
14
14
|
zope/i18n/testmessagecatalog.rst,sha256=SdsHRBM6rus52_XmPgztuzg7oA2cjBhfofHPstLBJec,1910
|
15
15
|
zope/i18n/translationdomain.py,sha256=6TWaKavvCUrpd3Phprcmy0WliRaO6IVXzTgZiIa6bvs,7645
|
16
16
|
zope/i18n/zcml.py,sha256=qFQ7fFigMbXrJOI-almGq5yojtN79mY2ccSVmK-Dmuw,5080
|
@@ -18,13 +18,13 @@ zope/i18n/interfaces/__init__.py,sha256=RdJ0_B26qJT8edx3EUB-craFP1SXU7kBTGDF8wa6
|
|
18
18
|
zope/i18n/interfaces/locales.py,sha256=KDW-1PgYttAaT1S5uOMtBXp5qoWK8KNGmNYyQHaNYHw,24440
|
19
19
|
zope/i18n/locales/LocaleElements.dtd,sha256=Fb2QZOCLmaSEa7ia3kr4au9TS5GHYjtrBWRnG6SQBMs,21872
|
20
20
|
zope/i18n/locales/README.txt,sha256=Tc2VOhNGTiFGq3L3Xg-r-kVa3h9tAnipTForwu6Hd1Y,648
|
21
|
-
zope/i18n/locales/__init__.py,sha256=
|
21
|
+
zope/i18n/locales/__init__.py,sha256=9RvYvHZeYoNvSNn3NVynH8lfxRnRWi-UjYiATQNF-1g,24166
|
22
22
|
zope/i18n/locales/configure.zcml,sha256=aYo5XrUy6CPLCJJdBUdR5GjM9H_3pKGdZ4Sb4eIJsvc,1832
|
23
23
|
zope/i18n/locales/fallbackcollator.py,sha256=VuP3oaEsT_SxbLUIEq4cE_YoqjEaa3kvbKd36W0xWtg,1002
|
24
|
-
zope/i18n/locales/fallbackcollator.txt,sha256=
|
24
|
+
zope/i18n/locales/fallbackcollator.txt,sha256=4OKss-OVYecSvh7dD-sotN0J74XPF0ghGShPeS-op3I,2138
|
25
25
|
zope/i18n/locales/inheritance.py,sha256=6jrb00H0YLQWUtdsjBlbFiQyomhBY-PRks20M4NuAy8,7918
|
26
26
|
zope/i18n/locales/provider.py,sha256=KVSZBfqoH4d7U5x6q7eYe24ADKEwJzy7TGqqf5wMB1Q,3061
|
27
|
-
zope/i18n/locales/xmlfactory.py,sha256=
|
27
|
+
zope/i18n/locales/xmlfactory.py,sha256=Bue-QuqrseIqq6UG9Ifpdhbt_WaheU5ihD1-371oU_o,51639
|
28
28
|
zope/i18n/locales/data/aa.xml,sha256=Xe_ESEm2304T9FtrRAfZJIgZzpNIYDuMNxYPjlda1fM,4581
|
29
29
|
zope/i18n/locales/data/aa_DJ.xml,sha256=MoDfZQw2vz6ft3lpMM1tgxJNI1e7n3WpFGGjRm3Zi84,1051
|
30
30
|
zope/i18n/locales/data/aa_ER.xml,sha256=C7AI8kacnmXpzTyoSlnENvgDYx5qk_YE2uBOz8qGwGA,1795
|
@@ -309,44 +309,56 @@ zope/i18n/locales/data/zh_MO.xml,sha256=TRVF23GOd5k6iQEdSHEgB0iCZKmi_y1d54J8Pxuf
|
|
309
309
|
zope/i18n/locales/data/zh_SG.xml,sha256=Lx6Ea_xJffNavF503M-urUHx3D9IQrGkjzcI9wrvpQA,3093
|
310
310
|
zope/i18n/locales/data/zh_TW.xml,sha256=X7mMIKptmdwLN04ZEWm94djLf0wxlqJrTPQEKIoyerU,94960
|
311
311
|
zope/i18n/locales/tests/__init__.py,sha256=X_VAnV1fP15i6efXhIWP7_4TCsVNYIeNZWO-E6qziTo,27
|
312
|
-
zope/i18n/locales/tests/test_docstrings.py,sha256=
|
313
|
-
zope/i18n/locales/tests/test_fallbackcollator.py,sha256=
|
312
|
+
zope/i18n/locales/tests/test_docstrings.py,sha256=vnNDwHx5pw7vWdkl4eXPbUGu35B5aim3CWKAltelGrc,1375
|
313
|
+
zope/i18n/locales/tests/test_fallbackcollator.py,sha256=8wuAkwbnULYBegPC27BkjKZSY0jkexxFlSJHeO6vs0I,731
|
314
314
|
zope/i18n/locales/tests/test_locales.py,sha256=C3TiUDKXMec6tYxtnS42TrirkuDNISYXC_uy15wbIXU,6590
|
315
315
|
zope/i18n/locales/tests/test_xmlfactory.py,sha256=wBLl8h8VNMFa3Qu9Xw7_W2a3rwu4XlBtwn4cexfekJc,2530
|
316
316
|
zope/i18n/tests/__init__.py,sha256=690b_c98_VbdhbkaIIiCjDZc8aFNpJYPu9eSy_5lq-w,61
|
317
317
|
zope/i18n/tests/configure.txt,sha256=QwqTf4X5jAy_YfBel4dbablEVqCzsqllr5vm33jmpvU,488
|
318
|
-
zope/i18n/tests/
|
319
|
-
zope/i18n/tests/en-alt.po,sha256=AZ8_c-s6Whbal_vwmEyWjHjhefPtYVGTIjJRBGOQxWk,374
|
320
|
-
zope/i18n/tests/en-default.po,sha256=BAeisaz3KAJ5gX3O7CnnBEyEiRyM3WXtBD_ksAarinI,1077
|
321
|
-
zope/i18n/tests/pl-default.po,sha256=JE4ikkpyd4_ofOO3oRYQ5u4_uy9zCYnGobEKE4XAR9U,600
|
322
|
-
zope/i18n/tests/sr-default.po,sha256=6eXGSeg9aNmEJDX65neWtBGxaGZ9cdCJefBzaVJvyoM,331
|
323
|
-
zope/i18n/tests/sr@Cyrl-default.po,sha256=eEufnBD_nJSEDaXFnTK_Wvw3u9iJlj9o6IgIaZqe9ME,327
|
324
|
-
zope/i18n/tests/sr@Latn-default.po,sha256=XlsJhHXYFgujDfmSgIQOUIhG8zNK2zQeBC7p_IJX4DE,328
|
325
|
-
zope/i18n/tests/test.py,sha256=lcU3bjwRJpDz0KNc0hzugEPR6X_mIbj8jJT2SiiAbd8,1230
|
318
|
+
zope/i18n/tests/test.py,sha256=pzvIS-cWySb-MN4sF50bdcTOfuCpWa7Xickbm_qe9Rk,1146
|
326
319
|
zope/i18n/tests/test_compile.py,sha256=9XGD7n_IRuurzspmqOtyyArknHWgOuUxHhWd-SRvKJM,2274
|
327
|
-
zope/i18n/tests/test_formats.py,sha256=
|
328
|
-
zope/i18n/tests/test_gettextmessagecatalog.py,sha256=
|
320
|
+
zope/i18n/tests/test_formats.py,sha256=zb0jRqZHrJ1LuTsUzR8gbV8rIgJBYixgzPCo8Ih158Y,62010
|
321
|
+
zope/i18n/tests/test_gettextmessagecatalog.py,sha256=gbT9eUtXmIqaWqx6NeZrEw-PYvMC9XstNLhYu6oKe7E,1356
|
329
322
|
zope/i18n/tests/test_imessagecatalog.py,sha256=vEAdVNT-csTV_lHk9JYAwy8k9DJOZAQ12zzJ31wDYfs,2304
|
330
323
|
zope/i18n/tests/test_itranslationdomain.py,sha256=XvkndUhZZ7CplyWoVjfb5Kdfw6RZKVJZGc0ql4lTbyU,4114
|
331
324
|
zope/i18n/tests/test_negotiator.py,sha256=SKCHns3rgUVAGgcxCfaB91gUeDPawkM7Us7LXjVOyZ8,1904
|
332
|
-
zope/i18n/tests/test_plurals.py,sha256=
|
325
|
+
zope/i18n/tests/test_plurals.py,sha256=RpVI5MmYJu47cxV4wr-YRs4UhatP17ITq-Glf_0bBuA,12821
|
333
326
|
zope/i18n/tests/test_simpletranslationdomain.py,sha256=JK0-yjKb2tvOGw8DrlcE0fG0aBdAf849jerUHROktEc,1409
|
334
327
|
zope/i18n/tests/test_testmessagecatalog.py,sha256=lJdxoaqwXyAdpkUVtL9iO2vKrU8gfrq1OHQF11dmOk0,783
|
335
|
-
zope/i18n/tests/test_translationdomain.py,sha256=
|
328
|
+
zope/i18n/tests/test_translationdomain.py,sha256=Mp7ZJ8d02xyBjaRyuJAkqalG89XdaHKNpZScVliFZFI,12084
|
336
329
|
zope/i18n/tests/test_zcml.py,sha256=zRH5g0WCTzD0l0hlU_0is51vwqBY3QoTDMeZlnMvLhY,7055
|
337
330
|
zope/i18n/tests/testi18nawareobject.py,sha256=MxG1mOYvcB5-pI_lHjdG3trQlW6A_aRA3wQsExqGpRE,3218
|
331
|
+
zope/i18n/tests/locale/de/LC_MESSAGES/zope-i18n.mo,sha256=hvyVplTpEPj_Du85TmnqGTV5t0GqPO04A7NdBy15BLs,277
|
338
332
|
zope/i18n/tests/locale/de/LC_MESSAGES/zope-i18n.po,sha256=4H0LHuWcXybGArSmIXF3cKckfMjmViT9Cet8r4FB6do,276
|
339
333
|
zope/i18n/tests/locale/en/LC_MESSAGES/__init__.py,sha256=690b_c98_VbdhbkaIIiCjDZc8aFNpJYPu9eSy_5lq-w,61
|
334
|
+
zope/i18n/tests/locale/en/LC_MESSAGES/zope-i18n.mo,sha256=-0xwuakItpVnGUQMuKTmQs8peRAcbkFnyWY0i3Yp1pY,336
|
340
335
|
zope/i18n/tests/locale/en/LC_MESSAGES/zope-i18n.po,sha256=3nj4u_xZ7KnzdCOjQo_LDQvE9gJpH4G0ymaukMUyCBI,337
|
336
|
+
zope/i18n/tests/locale-alt/en/LC_MESSAGES/alt.mo,sha256=wyS5OyyLis24J4oPhO7cyjOiXX70QVnDHdEgA96NxbY,341
|
337
|
+
zope/i18n/tests/locale-alt/en/LC_MESSAGES/alt.po,sha256=AZ8_c-s6Whbal_vwmEyWjHjhefPtYVGTIjJRBGOQxWk,374
|
338
|
+
zope/i18n/tests/locale-default/de/LC_MESSAGES/default.mo,sha256=QaC9xGvlr3QpL0kBBtoNJHJrPckO2gg8hIvJAH9gFVk,463
|
339
|
+
zope/i18n/tests/locale-default/de/LC_MESSAGES/default.po,sha256=GOhW2KBtZ0sRfcCseZFb6QKd17QAmrLw9B16s7wxeS0,500
|
340
|
+
zope/i18n/tests/locale-default/en/LC_MESSAGES/default.mo,sha256=Abrm0okxZz9vpxsy7afCwaT8Y3bZRofi25TZxm5uE3o,880
|
341
|
+
zope/i18n/tests/locale-default/en/LC_MESSAGES/default.po,sha256=BAeisaz3KAJ5gX3O7CnnBEyEiRyM3WXtBD_ksAarinI,1077
|
342
|
+
zope/i18n/tests/locale-default/pl/LC_MESSAGES/default.mo,sha256=zsbqCbvvw2Av9bOXTStbOooHNinEKtLRo6MV0i0l6mQ,550
|
343
|
+
zope/i18n/tests/locale-default/pl/LC_MESSAGES/default.po,sha256=JE4ikkpyd4_ofOO3oRYQ5u4_uy9zCYnGobEKE4XAR9U,600
|
344
|
+
zope/i18n/tests/locale-default/sr/LC_MESSAGES/default.mo,sha256=UiQ_YYTDapWakySTicKdscSqtpCncWvGn1KANliKyuw,328
|
345
|
+
zope/i18n/tests/locale-default/sr/LC_MESSAGES/default.po,sha256=6eXGSeg9aNmEJDX65neWtBGxaGZ9cdCJefBzaVJvyoM,331
|
346
|
+
zope/i18n/tests/locale-default/sr@Cyrl/LC_MESSAGES/default.mo,sha256=u5bBy75w6e9Jn9a1sr-uN6JErq6nfP0tkNYyPE1HjE4,324
|
347
|
+
zope/i18n/tests/locale-default/sr@Cyrl/LC_MESSAGES/default.po,sha256=eEufnBD_nJSEDaXFnTK_Wvw3u9iJlj9o6IgIaZqe9ME,327
|
348
|
+
zope/i18n/tests/locale-default/sr@Latn/LC_MESSAGES/default.mo,sha256=-ysf5rkbvng_8lyIjUkSYOfMWJ_COKZMyAQ0wJ203hs,325
|
349
|
+
zope/i18n/tests/locale-default/sr@Latn/LC_MESSAGES/default.po,sha256=XlsJhHXYFgujDfmSgIQOUIhG8zNK2zQeBC7p_IJX4DE,328
|
341
350
|
zope/i18n/tests/locale2/__init__.py,sha256=690b_c98_VbdhbkaIIiCjDZc8aFNpJYPu9eSy_5lq-w,61
|
351
|
+
zope/i18n/tests/locale2/en/LC_MESSAGES/zope-i18n.mo,sha256=URVzM84ZGttgc6m8L5dTxrz8_BTD83htkSV_vl6Xbfc,364
|
342
352
|
zope/i18n/tests/locale2/en/LC_MESSAGES/zope-i18n.po,sha256=WMbYb2oDGZRwAJWYDrw4Rqv3kgv76BShdEFLQ1LeY54,365
|
343
353
|
zope/i18n/tests/locale3/en/LC_MESSAGES/__init__.py,sha256=690b_c98_VbdhbkaIIiCjDZc8aFNpJYPu9eSy_5lq-w,61
|
344
354
|
zope/i18n/tests/locale3/en/LC_MESSAGES/zope-i18n.in,sha256=hO0JKSpn3AqwFuyzKNGJ1oioAk4ZNYBeKf9W6UMsd6A,315
|
355
|
+
zope/i18n/tests/locale3/en/LC_MESSAGES/zope-i18n.mo,sha256=8yHbDhd1pX_kC8c4gUoqbK4ZOwmHG6y5o8_IjLx4JJw,295
|
345
356
|
zope/i18n/tests/locale3/en/LC_MESSAGES/zope-i18n.po,sha256=93dkAV6YWB1n31wDtAzlIHln-9StXSkLNzcbGMoO8VY,294
|
357
|
+
zope/i18n/tests/locale3/en/LC_MESSAGES/zope-i18n2.mo,sha256=_1PrSjMzwuIv6-vsT7_EQmphH4QTLIj9ltK98C_bbKo,291
|
346
358
|
zope/i18n/tests/locale3/en/LC_MESSAGES/zope-i18n2.po,sha256=5q-1okvFJffR926Z4NUiz6EmEbTp8lR0iM-OckZ8R3k,290
|
347
|
-
zope.i18n-5.
|
348
|
-
zope.i18n-5.
|
349
|
-
zope.i18n-5.
|
350
|
-
zope.i18n-5.
|
351
|
-
zope.i18n-5.
|
352
|
-
zope.i18n-5.
|
359
|
+
zope.i18n-5.2.dist-info/LICENSE.txt,sha256=PmcdsR32h1FswdtbPWXkqjg-rKPCDOo_r1Og9zNdCjw,2070
|
360
|
+
zope.i18n-5.2.dist-info/METADATA,sha256=OROtwLLZwNd4EsPvzLpjdsqkwfTQLgO0pfDdiwhyIuA,14162
|
361
|
+
zope.i18n-5.2.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
362
|
+
zope.i18n-5.2.dist-info/namespace_packages.txt,sha256=QpUHvpO4wIuZDeEgKY8qZCtD-tAukB0fn_f6utzlb98,5
|
363
|
+
zope.i18n-5.2.dist-info/top_level.txt,sha256=QpUHvpO4wIuZDeEgKY8qZCtD-tAukB0fn_f6utzlb98,5
|
364
|
+
zope.i18n-5.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|