Metadata-Version: 1.1
Name: strings2pot
Version: 0.2.0
Summary: Converts Apple .strings or Android/Java .xml files to POT gettext files.
Home-page: http://qurami.com/
Author: Gianfranco Reppucci
Author-email: gianfranco.reppucci@qurami.net
License: MIT
Description: strings2pot
        ===========
        
        strings2pot is useful to convert Apple .strings or Android/Java .xml files to POT gettext files.
        
        
        Installation
        ------------
        
        ::
        
          pip install strings2pot
        
        
        Command line usage
        ------------------
        
        ::
        
          root@host$ strings2pot <STRINGS_FILE> <POT_FILE>
        
        e.g.
        
        ::
        
          root@host$ strings2pot Localizable.strings my_ios_app.pot
        
          root@host$ strings2pot values.xml my_android_app.pot
        
        
        Code usage
        ----------
        
        ::
        
          from strings2pot import strings2pot
        
          executed, error_message = strings2pot.run("Localizable.strings", "my_ios_app.pot")
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
