Metadata-Version: 2.0
Name: Products.i18ntestcase
Version: 1.4.0
Summary: Products.i18ntestcase is build on top of the ZopeTestCase package. It has been developed to simplify testing of gettext i18n files for Zope products.
Home-page: https://github.com/plone/Products.i18ntestcase
Author: Hanno Schlichting
Author-email: plone-developers@lists.sourceforge.net
License: GPL
Keywords: Plone i18n gettext testcase
Platform: UNKNOWN
Classifier: Framework :: Plone
Classifier: Framework :: Plone :: 4.3
Classifier: Framework :: Plone :: 5.0
Classifier: Framework :: Zope2
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: setuptools
Requires-Dist: six

(c) 2005-2008, Hanno Schlichting (plone@hannosch.info)
License: GPL

Products.i18ntestcase Readme

    Products.i18ntestcase is build on top of the ZopeTestCase package. It has
    been developed to simplify testing of gettext i18n files for Zope products.

    The Products.i18ntestcase package provides:

        - The class 'I18NTestCase' of which you can derive your own test cases.

        - The classes 'PoTestCase.py' and 'PotTestCase.py' which include a set
          of common tests for po and pot files.

        - The 'test_i18n.py' script, which you can put in your tests folder to
          easily use all these already written tests.

    Copying the test_i18n.py to your tests folder is the preferred way.

Changelog
=========

1.4.0 (2018-02-23)
------------------

New features:

- More Python 2 / 3 compatibility adjustments
  [davilima6]


1.3.1 (2018-01-17)
------------------

Bug fixes:

- Imports are Python3 compatible
  [ale-rt, b4oshany]

- Fix import from Globals that is removed in Zope4.
  [pbauer]


1.3 (2013-01-17)
----------------

- Allow laquo and raquo HTML entities in translations.
  [hannosch]


1.2 (2008-01-01)
----------------

- Moved to a real package layout.
  [hannosch]

- Extended support for locales folder. Now both a locales folder and an
  i18n folder are supported at the same time.
  [hannosch]

- Added &reg; to the allowed HTML entities and removed &trade;.
  [hannosch]

- Implemented support for locales folder layout as used by Zope3. If
  there's an i18n folder inside a product this is used however.
  [hannosch]


1.1 (2005-11-20)
----------------

- Finally made running tests via 'zopectl test' work.
  [hannosch]

- Got rid of the last external binary dependency. Provided much nicer error
  messages for missing or additional messages in comparision of pot and po
  files. At least on Windows this results in a major speed improvement
  (16 sec now, 150 sec before)!
  [hannosch]


1.0 (2005-10-05)
----------------

- Lower-cased package name, to conform to Zope3/Python style
  [hannosch]

- Fixed an issue with getPoFiles not being strict enough on product
  matching, resulting in plonelanguagetool po's found for the plone product
  [hannosch]

- Move to new default comments (#. Default: "") instead of old original
  comments (# Original: "").
  [hannosch]

- Adopted syntax for i18ndude 2.0. From this point forward i18ndude 1.x
  is not supported anymore.
  [hannosch]

- Optimized slightly for speed (approx. 5% faster)
  [hannosch]


0.2 (2005-09-03)
----------------

- Got rid of a bunch of external binary dependencies by replacing the
  testNoDuplicateMsgId() test by the Python-only version taken from CPS.
  [hannosch]

- Reordered the "if __name__ == '__main__':" magic calls in a way that
  calling the test_i18n.py script directly also works.
  [hannosch]


0.1 (2005-08-28)
----------------

- Tagged and released v0.1
  [hannosch]


