Metadata-Version: 1.1
Name: po2strings
Version: 0.3.4
Summary: Converts PO/POT files into Apple .strings or Android .xml locale files.
Home-page: http://qurami.com/
Author: Gianfranco Reppucci
Author-email: gianfranco.reppucci@qurami.com
License: MIT
Description: po2strings
        ==========
        
        po2strings is useful to convert PO/POT gettext files into Apple .strings or Android/Java .xml files.
        
        
        Installation
        ------------
        
        ::
        
          pip install po2strings
        
        
        Command line usage
        ------------------
        
        ::
        
          root@host$ po2strings <PO_FILE> <STRINGS_FILE>
        
        e.g.
        
        ::
        
          root@host$ po2strings en.po Localizable.strings
        
          root@host$ po2strings en.po values.xml
        
        
        Code usage
        ----------
        
        ::
        
          from po2strings import po2strings
        
          executed, error_message = po2strings.run("en.po", "Localizable.strings")
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
