{ "info": { "author": "Zope Corporation and Contributors", "author_email": "zope-dev@zope.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Zope :: 3", "Intended Audience :: Developers", "License :: OSI Approved :: Zope Public License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Internationalization" ], "description": "This package provides some facilities for extracting and managing i18n\nmessages that occur in Zope software. More specifically, i18n\nmessages can occur in Python code, in Page Templates and in ZCML\ndeclarations. ``zope.app.locales`` provides a utility that can\nextract messages from all three and write them to a standard gettext\ntemplate (``pot`` file).\n\n\nDetailed Documentation\n----------------------\n\n===================================================\nInternationalization (I18n) and Localization (L10n)\n===================================================\n\nThis document assumes that you have a Zope 3 checkout and the gettext\nutilities installed.\n\n\nCreating/Updating Message Catalog Template (POT) Files\n------------------------------------------------------\n\nWhenever you've made a change to Zope that affects the i18n messages,\nyou need to re-extract i18n messages from the code. To do that,\nexecute ``i18nextract.py`` from the ``utilities`` directory of your\nZope 3 checkout:\n\n $ python utilities/i18nextract.py -d zope -p src/zope -o app/locales\n\nThis will update the ``zope.pot`` file. Make sure that the checkout's\n``src`` directory is part of your ``PYTHONPATH`` environment variable.\n\nAfter that, you need to merge those changes to all existing\ntranslations. You can do that by executing the ``i18nmergeall.py``\nscript from the ``utilities`` directory of your Zope 3 checkout:\n\n $ python utilities/i18nmergeall.py -l src/zope/app/locales\n\n\nTranslating\n-----------\n\nTo translate messages you need to do the following steps:\n\n1. If a translation for your language is already present and you just\n want to update, skip ahead to step 2. If you want to start\n translation on a new language, you need to\n\n a) create a directory\n\n src/zope/app/locales//LC_MESSAGES\n\n with the appropriate code for your language as .\n Note that the two letters specifying the language should always\n be lower case (e.g. 'pt'); if you additionally specify a region,\n those letters should be upper case (e.g. 'pt_BR').\n\n b) copy the ``zope.pot`` template file to\n ``/LC_MESSAGES/zope.po``.\n\n c) edit the PO header of the newly created ``zope.po`` file and\n fill in all the necessary information.\n\n2. Translate messages within the PO file. Make sure the gettext\n syntax stays intact. Tools like poEdit and KBabel can help you.\n\n3. Finally, when you're done translating, compile the PO file to its\n binary equivalent using the ``msgfmt`` tool:\n\n $ cd /LC_MESSAGES\n $ msgfmt -o zope.mo zope.po\n\n\n=======\nCHANGES\n=======\n\n4.1 (2019-06-24)\n----------------\n\n- Flake8 the code.\n\n- Add support for Python 3.7, 3.8b1 and PyPy3.\n\n- Port usage of custom POT file header template here from `z3c.recipe.i18n`.\n (`#11 `_)\n\n- Prevent POT files from collecting duplicate location specifiers over time.\n (`#12 `_)\n\n\n4.0.1 (2018-06-29)\n------------------\n\n- Recompile the `*.mo` translation files.\n\n\n4.0.0 (2017-05-02)\n------------------\n\n- Add support for Python 3.5 and 3.6 and PyPy.\n\n\n3.7.5 (2016-03-28)\n------------------\n\n- Add a test for the zcml_extraction.\n\n- Remove zope.app.applicationcontrol and zope.app.appsetup dependencies.\n\n- Add list of supported Python versions to Trove classifiers.\n\n\n3.7.4 (2012-05-14)\n------------------\n\n- In version 3.7.2 msgids and default values were forced to be\n ``unicode``. This was too strict because at least the TAL extractor returns\n UTF-8 encoded default values. Fixed this by allowing the default value to\n be a string again.\n\n\n3.7.3 (2012-01-06)\n------------------\n\n- i18nextract bugfix: _(\"msgid\", mapping={...}) does not have a default, just\n like _(\"msgid\"). Previously it would get a ``#. Default: \"\"`` annotation in\n the .pot file.\n\n\n3.7.2 (2011-12-12)\n------------------\n\n- Handle Unicode msgids and default values.\n\n- Consistent sorting of source filenames for each msgid. Also sort line\n numbers numerically, not lexicographically.\n\n\n3.7.1 (2011-12-07)\n------------------\n\n- Fix nl translations.\n\n- Updated Brazilian Portuguese translation [erico_andrei]\n\n3.7.0 (2011-03-02)\n------------------\n\n- Include zcml dependencies in ``configure.zcml``, require the necessary\n packages via a `zcml` extra, added tests for zcml.\n\n- Using Python's ``doctest`` module instead of depreacted\n ``zope.testing.doctest``.\n\n\n3.6.2 (2010-07-31)\n------------------\n\n- Updated copyright to `Zope Foundation`, even in pot template.\n\n- Updated e-mail address in pot template to current address of zope\n mailing list.\n\n- Added missing test dependency on `zope.i18n`.\n\n\n3.6.1 (2010-05-17)\n------------------\n\n- Updated Dutch and German translations.\n\n3.6.0 (2009-12-28)\n------------------\n\n- Added `configure.zcml` which registers the translations in the\n package. So the package contains its configuration. (Till now it was\n done in `zope.app.zcmlfiles`.)\n\n3.5.2 (2009-12-22)\n------------------\n\n- Updated tests to handle Unicode correctly.\n\n- Update Japanese Translation (thanks Takeshi Yamamoto).\n\n3.5.1 (2009-01-27)\n------------------\n\n* Added missing dependency (zope.tal) for tests.\n\n3.5.0 (2009-01-26)\n------------------\n\n* Moved the dependencies of the extract console script into an `extract`\n extras_require to avoid runtime dependencies.\n\n* Fixed bug #227582 (bad size in zh_CN locale)\n\n3.4.5 (2008-07-16)\n------------------\n\n* added filePattern parameter for tal_strings to be able to not only parse\n `.pt` files.\n\n* Updated Dutch translation\n\n3.4.4 (2008-03-05)\n------------------\n\n* Updated Spanish translation\n\n3.4.3 (2008-02-20)\n------------------\n\n* Updated Spanish translation\n\n* Updated Japanese translation\n\n3.4.2 (2008-02-06)\n------------------\n\n* Fixed and updated Russian translation. Fixed issue #186628 (Typos and errors\n in russian translation)\n\n3.4.1 (2007-12-12)\n------------------\n\n* Fixed and updated the french translation\n\n3.4.0 (2007-10-25)\n------------------\n\n* Folded the i18nextract script into ``zope.app.locales.extract`` and\n exposed it as a console script entry point.\n\n3.4.0a1 (2007-04-22)\n--------------------\n\n* Initial release as a separate project, corresponds to ``zope.app.locales``\n from Zope 3.4.0a1\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://pypi.python.org/pypi/zope.app.locales", "keywords": "zope3 i18n l10n translation gettext", "license": "ZPL 2.1", "maintainer": "", "maintainer_email": "", "name": "zope.app.locales", "package_url": "https://pypi.org/project/zope.app.locales/", "platform": "", "project_url": "https://pypi.org/project/zope.app.locales/", "project_urls": { "Homepage": "http://pypi.python.org/pypi/zope.app.locales" }, "release_url": "https://pypi.org/project/zope.app.locales/4.1/", "requires_dist": [ "setuptools", "zope.cachedescriptors", "zope.i18nmessageid (>=4.1.0)", "zope.interface", "zope.tal; extra == 'extract'", "zope.i18n; extra == 'test'", "zope.security; extra == 'test'", "zope.tal; extra == 'test'", "zope.testing; extra == 'test'", "zope.testrunner; extra == 'test'", "zope.configuration; extra == 'zcml'", "zope.i18n; extra == 'zcml'" ], "requires_python": "", "summary": "Zope locale extraction and management utilities", "version": "4.1" }, "last_serial": 5441288, "releases": { "3.4.0": [ { "comment_text": "", "digests": { "md5": "e5082fcb53771620016c0f3c80ca86ed", "sha256": "ac8c020a148612683ea86771d85ff0af1e11be325d9efc8002828801170528be" }, "downloads": -1, "filename": "zope.app.locales-3.4.0.tar.gz", "has_sig": false, "md5_digest": "e5082fcb53771620016c0f3c80ca86ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1065239, "upload_time": "2007-10-25T15:28:55", "url": "https://files.pythonhosted.org/packages/dd/26/80b4e493d6466725cd17fa066de4816c48e80dbf099789068c0f337605c4/zope.app.locales-3.4.0.tar.gz" } ], "3.4.0a1": [ { "comment_text": "", "digests": { "md5": "1a9c1bae9d3786a2a0e9902400e5234d", "sha256": "efbca036ac3730ea1e6673242337c0208aa18594242e3af9506050004119d931" }, "downloads": -1, "filename": "zope.app.locales-3.4.0a1.tar.gz", "has_sig": false, "md5_digest": "1a9c1bae9d3786a2a0e9902400e5234d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1064726, "upload_time": "2007-04-23T13:31:52", "url": "https://files.pythonhosted.org/packages/38/55/a2bab6dddb4c0c451be72b5120ecd0d5a568eb56478be1f5de99d4d90cdc/zope.app.locales-3.4.0a1.tar.gz" } ], "3.4.1": [ { "comment_text": "", "digests": { "md5": "607e8ad638fdf8a115dcc8ff7efb55a2", "sha256": "41fc83da8a8adbf210ad55e5ec307ac6b3054630242d8456fb28911284ee5cd2" }, "downloads": -1, "filename": "zope.app.locales-3.4.1.tar.gz", "has_sig": false, "md5_digest": "607e8ad638fdf8a115dcc8ff7efb55a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1071657, "upload_time": "2007-12-17T23:19:48", "url": "https://files.pythonhosted.org/packages/9e/21/bb4a10b3f887c8b73a649cec628dad678de67c8e80aa552cf27bc0b72890/zope.app.locales-3.4.1.tar.gz" } ], "3.4.2": [ { "comment_text": "", "digests": { "md5": "c598d8bb51f689af885750311e306579", "sha256": "79f5d661dcd4fe5369c161b9da18ee35c2f20b1e565eec138979e35054847e77" }, "downloads": -1, "filename": "zope.app.locales-3.4.2.tar.gz", "has_sig": false, "md5_digest": "c598d8bb51f689af885750311e306579", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1058891, "upload_time": "2008-02-06T15:24:04", "url": "https://files.pythonhosted.org/packages/43/73/e7cb9acbc91c696fc08a55ce0607abd7e68689757c5229510698e8fe2914/zope.app.locales-3.4.2.tar.gz" } ], "3.4.3": [ { "comment_text": "", "digests": { "md5": "2df6632b302ecc3e26780a6f547b2df9", "sha256": "fc50575926f69e9cf5044f44340b4d67ad859d6e21af4076099fba7e94e61713" }, "downloads": -1, "filename": "zope.app.locales-3.4.3.tar.gz", "has_sig": false, "md5_digest": "2df6632b302ecc3e26780a6f547b2df9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1193805, "upload_time": "2008-02-20T19:32:11", "url": "https://files.pythonhosted.org/packages/1d/a9/9c1e159936d6fa546a93c65243bf2f2168a846c45558485961e66fdc18df/zope.app.locales-3.4.3.tar.gz" } ], "3.4.4": [ { "comment_text": "", "digests": { "md5": "983470aab785f08c73579b09e5e398f5", "sha256": "a893270e0604650b249127ddb470878cb3e2d2733b1375e4b1dbd138ffeea1ad" }, "downloads": -1, "filename": "zope.app.locales-3.4.4.tar.gz", "has_sig": false, "md5_digest": "983470aab785f08c73579b09e5e398f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1193813, "upload_time": "2008-03-05T05:29:32", "url": "https://files.pythonhosted.org/packages/13/63/65b1ee8c7e02f8e479d77ca14eaa52b01fbad330368d332db55bdf253e98/zope.app.locales-3.4.4.tar.gz" } ], "3.4.5": [ { "comment_text": "", "digests": { "md5": "67fd20ac81552f960cf6f3e4ec249c30", "sha256": "43ae70f743dbd05a03fe231e6a21e7f1c13bae4903c8957f1a6fe1d26bf97c15" }, "downloads": -1, "filename": "zope.app.locales-3.4.5.tar.gz", "has_sig": false, "md5_digest": "67fd20ac81552f960cf6f3e4ec249c30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1190461, "upload_time": "2008-07-16T15:18:59", "url": "https://files.pythonhosted.org/packages/e2/5d/b4eea33afd4413e940aaa36871d4a0cac6100124525afba8b270f9b60a6a/zope.app.locales-3.4.5.tar.gz" } ], "3.5.0": [ { "comment_text": "", "digests": { "md5": "bf547f39599185121ea963298f85722a", "sha256": "1b22393177318c8079dc33c16143d51416499f5362a99eb5c6bd8ac41d52dd5b" }, "downloads": -1, "filename": "zope.app.locales-3.5.0.zip", "has_sig": true, "md5_digest": "bf547f39599185121ea963298f85722a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1212624, "upload_time": "2009-01-26T20:26:32", "url": "https://files.pythonhosted.org/packages/92/f1/5124ac3eba9eba728d29de4804dc59c1b2f091d26f51261ca883908cadcf/zope.app.locales-3.5.0.zip" } ], "3.5.1": [ { "comment_text": "", "digests": { "md5": "f3a4ad82ed6d0b6cf0750f0b2c6c9af0", "sha256": "856e304c92a720ef3507d80db80eab93963a4bacd6904646aba6c465690a75c6" }, "downloads": -1, "filename": "zope.app.locales-3.5.1.tar.gz", "has_sig": false, "md5_digest": "f3a4ad82ed6d0b6cf0750f0b2c6c9af0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1200016, "upload_time": "2009-01-27T13:40:23", "url": "https://files.pythonhosted.org/packages/41/47/4f20abbce8789f17d45d34d6457f2d6ca070ed253380a74b4cde40d46690/zope.app.locales-3.5.1.tar.gz" } ], "3.5.2": [ { "comment_text": "", "digests": { "md5": "b799b846f97475c06a4e71256220fe9a", "sha256": "c900a2410bc91cf028333a83b325aa26806113dd3524613c3337971ddaa6d755" }, "downloads": -1, "filename": "zope.app.locales-3.5.2.zip", "has_sig": false, "md5_digest": "b799b846f97475c06a4e71256220fe9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1212936, "upload_time": "2009-12-22T20:28:16", "url": "https://files.pythonhosted.org/packages/f6/87/cf4eb105931819f0c8baf232c08b58214d29b7b783fd74e41e5533107f19/zope.app.locales-3.5.2.zip" } ], "3.6.0": [ { "comment_text": "", "digests": { "md5": "86fcbd11821764217827d657b7619bb9", "sha256": "6c9bae1ca3208ff457540702cbb9ad69018bd8353907969da306ab729b9f0cb1" }, "downloads": -1, "filename": "zope.app.locales-3.6.0.tar.gz", "has_sig": false, "md5_digest": "86fcbd11821764217827d657b7619bb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1186409, "upload_time": "2009-12-28T09:56:34", "url": "https://files.pythonhosted.org/packages/52/0e/aca25a10b1bbb6025507417d2a0e60121ceeb4a20dbb640279adafa8ac06/zope.app.locales-3.6.0.tar.gz" } ], "3.6.1": [ { "comment_text": "", "digests": { "md5": "7b3b88cb16ff7da436107765cbaa18cd", "sha256": "0843bbf3c5e6c35602c6b4a31e4286499a58cb0636644fe88fa2cb0c0ca7a372" }, "downloads": -1, "filename": "zope.app.locales-3.6.1.zip", "has_sig": false, "md5_digest": "7b3b88cb16ff7da436107765cbaa18cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1210539, "upload_time": "2010-05-17T12:46:34", "url": "https://files.pythonhosted.org/packages/7a/fa/75f039e50440771b63678f353cc8517a73894cc4d962a646002707894c0a/zope.app.locales-3.6.1.zip" } ], "3.6.2": [ { "comment_text": "", "digests": { "md5": "bd2b4c6040e768f33004b1210d3207fa", "sha256": "45512ff909af9129f4ffd89aafb661e6369208371a2a4550ad4053425247f5cb" }, "downloads": -1, "filename": "zope.app.locales-3.6.2.tar.gz", "has_sig": false, "md5_digest": "bd2b4c6040e768f33004b1210d3207fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1184179, "upload_time": "2010-07-31T14:49:52", "url": "https://files.pythonhosted.org/packages/99/85/9272efb4f445ba717cc987be576b4f8962ceb5fcc8fc0570e961666dd00a/zope.app.locales-3.6.2.tar.gz" } ], "3.7.0": [ { "comment_text": "", "digests": { "md5": "c8314957ff659da928bf0d91a073be80", "sha256": "afbb2b0ef4f231630a241999c214616700e26926ed566b02f247b129d7d7d4b2" }, "downloads": -1, "filename": "zope.app.locales-3.7.0.tar.gz", "has_sig": false, "md5_digest": "c8314957ff659da928bf0d91a073be80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1185082, "upload_time": "2011-03-02T15:05:10", "url": "https://files.pythonhosted.org/packages/97/34/40def4e462dc7a51e3b503b6042c8ea91de1d1ff697869102ca13eb2356f/zope.app.locales-3.7.0.tar.gz" } ], "3.7.1": [ { "comment_text": "", "digests": { "md5": "5c3dd7fa2b3f485cafb1171e97c10230", "sha256": "8a6af60acee41b69e55b73ac40b9178f40ffebf462ee6dc49626040ec3046245" }, "downloads": -1, "filename": "zope.app.locales-3.7.1.tar.gz", "has_sig": false, "md5_digest": "5c3dd7fa2b3f485cafb1171e97c10230", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1204978, "upload_time": "2011-12-07T10:12:25", "url": "https://files.pythonhosted.org/packages/96/a3/37ebb58bd1b757ab867d126a01d4652a7ac618efa8c0739a174ab1e0b85b/zope.app.locales-3.7.1.tar.gz" } ], "3.7.2": [ { "comment_text": "", "digests": { "md5": "58c9b0b287e8558fd5eb33b9a024af9d", "sha256": "1fabae175fae8a4f9dabcf4f833db4cc9aaf4f6e6678240ce8b39bfbece924c1" }, "downloads": -1, "filename": "zope.app.locales-3.7.2.tar.gz", "has_sig": false, "md5_digest": "58c9b0b287e8558fd5eb33b9a024af9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1208643, "upload_time": "2011-12-12T17:19:49", "url": "https://files.pythonhosted.org/packages/dd/92/e978d492b1ed2b3f9a6cd38b1df461a2b4197037612e6f14759775b1b74a/zope.app.locales-3.7.2.tar.gz" } ], "3.7.3": [ { "comment_text": "", "digests": { "md5": "53f531016c9d092e90a73e0a8ca2c4b0", "sha256": "1479d219271482c51f4214673665ac46b7a245a5c94250502b716d489f0e583e" }, "downloads": -1, "filename": "zope.app.locales-3.7.3.tar.gz", "has_sig": false, "md5_digest": "53f531016c9d092e90a73e0a8ca2c4b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1208927, "upload_time": "2012-01-06T20:40:28", "url": "https://files.pythonhosted.org/packages/0c/a2/a6a649aa5bfa4d8425b301f889bb7fbde4a0ab52fffb3b392e5813798b11/zope.app.locales-3.7.3.tar.gz" } ], "3.7.4": [ { "comment_text": "", "digests": { "md5": "13daace877d25f5a7e6e03d48e93abf2", "sha256": "fc1357b3149dd237e76b55dd1a0a6b465ea8694b0124771e03cb1bc617abfd05" }, "downloads": -1, "filename": "zope.app.locales-3.7.4.tar.gz", "has_sig": false, "md5_digest": "13daace877d25f5a7e6e03d48e93abf2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1206842, "upload_time": "2012-05-14T14:22:35", "url": "https://files.pythonhosted.org/packages/5e/55/32d4f94a49e2d6010ed60fad0b5af1c24752043f2b8c4c9db4d011a01a38/zope.app.locales-3.7.4.tar.gz" } ], "3.7.5": [ { "comment_text": "", "digests": { "md5": "50eba51153ed5202219df69038fa8020", "sha256": "e8672a16721ff28bcbd0afbbce48931ed1c412adde17505c4590545d75b05173" }, "downloads": -1, "filename": "zope.app.locales-3.7.5.tar.gz", "has_sig": false, "md5_digest": "50eba51153ed5202219df69038fa8020", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1209573, "upload_time": "2016-03-28T07:24:15", "url": "https://files.pythonhosted.org/packages/42/07/718c965a36b97827d90c2a80b913ccdad4479e97ffe6433be64a2ac6ab50/zope.app.locales-3.7.5.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "7da1a1b522dbcc63bd241a087134e592", "sha256": "232f1d2d9ad98024a9ca197e1d16e7850880368ebb7981eaf678dc4268ecdede" }, "downloads": -1, "filename": "zope.app.locales-4.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7da1a1b522dbcc63bd241a087134e592", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1232654, "upload_time": "2017-05-02T13:46:57", "url": "https://files.pythonhosted.org/packages/fc/22/af71b562966e77d6c1685b559b3827bd619b2a1a3d3d0c2a1df08808f731/zope.app.locales-4.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b1c2d8dc9e13e2978debebee27789074", "sha256": "7d401b2b19eda5fb9799ab2f7a96ff862fadb0b2f221c455a544fa5d60368541" }, "downloads": -1, "filename": "zope.app.locales-4.0.0.tar.gz", "has_sig": false, "md5_digest": "b1c2d8dc9e13e2978debebee27789074", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1212167, "upload_time": "2017-05-02T13:47:00", "url": "https://files.pythonhosted.org/packages/b1/03/050615d5fec0d7d47ea2a066e537997476f8be9237e39161222651e88235/zope.app.locales-4.0.0.tar.gz" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "0423a32e805a528d8ca207aad67f8712", "sha256": "2570b2f412929378f0e1f319570ae56abe92d0d307dc8135a06ea390a5e20dca" }, "downloads": -1, "filename": "zope.app.locales-4.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0423a32e805a528d8ca207aad67f8712", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1188883, "upload_time": "2018-06-29T06:31:31", "url": "https://files.pythonhosted.org/packages/3c/40/b2ac3b027fbf90cc364a24ef17c9d3613995a8ff9ef823b185bbe7ebc1ee/zope.app.locales-4.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1bc7bbf37f6ceb0a03371f8b4cf56b9c", "sha256": "2f0778f1c469c4c3f39e653d242f18780b747ee6f1e1758146eff255e3521deb" }, "downloads": -1, "filename": "zope.app.locales-4.0.1.tar.gz", "has_sig": false, "md5_digest": "1bc7bbf37f6ceb0a03371f8b4cf56b9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1159917, "upload_time": "2018-06-29T06:31:36", "url": "https://files.pythonhosted.org/packages/19/ba/e0c6ead6f5b11c083eff28a6d4ede30a6784bcfc3876596935ce3777f7f3/zope.app.locales-4.0.1.tar.gz" } ], "4.1": [ { "comment_text": "", "digests": { "md5": "f70ad29715cd7907881ff2022fe21abb", "sha256": "9a03ae14f7a347f1cb3705316b1764703c6992f42d01eb8436db27f810b4b7d5" }, "downloads": -1, "filename": "zope.app.locales-4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f70ad29715cd7907881ff2022fe21abb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1189976, "upload_time": "2019-06-24T15:55:45", "url": "https://files.pythonhosted.org/packages/00/ef/b64159ed9a7d4658dd93c8125d77bcb7a2c2a052eaae991e02e5183a07b7/zope.app.locales-4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5be69c9c8040cf03bcd46eb02beb831a", "sha256": "9675a14c813953eb92cd6f175412bdb1cfdb406fecb22664a713d8bfadb5f289" }, "downloads": -1, "filename": "zope.app.locales-4.1.tar.gz", "has_sig": false, "md5_digest": "5be69c9c8040cf03bcd46eb02beb831a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1161009, "upload_time": "2019-06-24T15:55:52", "url": "https://files.pythonhosted.org/packages/f5/5f/66ed5c9e5e4db94c7cdd889d3f142a3018522ac0036a95634ac1cc3ed3b1/zope.app.locales-4.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f70ad29715cd7907881ff2022fe21abb", "sha256": "9a03ae14f7a347f1cb3705316b1764703c6992f42d01eb8436db27f810b4b7d5" }, "downloads": -1, "filename": "zope.app.locales-4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f70ad29715cd7907881ff2022fe21abb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1189976, "upload_time": "2019-06-24T15:55:45", "url": "https://files.pythonhosted.org/packages/00/ef/b64159ed9a7d4658dd93c8125d77bcb7a2c2a052eaae991e02e5183a07b7/zope.app.locales-4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5be69c9c8040cf03bcd46eb02beb831a", "sha256": "9675a14c813953eb92cd6f175412bdb1cfdb406fecb22664a713d8bfadb5f289" }, "downloads": -1, "filename": "zope.app.locales-4.1.tar.gz", "has_sig": false, "md5_digest": "5be69c9c8040cf03bcd46eb02beb831a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1161009, "upload_time": "2019-06-24T15:55:52", "url": "https://files.pythonhosted.org/packages/f5/5f/66ed5c9e5e4db94c7cdd889d3f142a3018522ac0036a95634ac1cc3ed3b1/zope.app.locales-4.1.tar.gz" } ] }