]> git.ipfire.org Git - thirdparty/babel.git/commitdiff
Add more `since` tags to stuff added in trunk.
authorChristopher Lenz <cmlenz@gmail.com>
Wed, 1 Aug 2007 14:15:35 +0000 (14:15 +0000)
committerChristopher Lenz <cmlenz@gmail.com>
Wed, 1 Aug 2007 14:15:35 +0000 (14:15 +0000)
babel/messages/checkers.py
babel/messages/frontend.py
babel/messages/mofile.py

index 0abd5e4d7dfd05dd40dfce23fdc8667613339f84..0e961304f87b5fa9ccc22dc9b760692a99d38341 100644 (file)
 # individuals. For the exact contribution history, see the revision
 # history and logs, available at http://babel.edgewall.org/log/.
 
-"""Various routines that help with validation of translations."""
+"""Various routines that help with validation of translations.
+
+:since: version 0.9
+"""
 
 from babel.messages.catalog import TranslationError, PYTHON_FORMAT
 
index 9829cf529c5ddc6d1f366c278f9ad7f001956e69..67816a73b4220e03a57039e7d467164183509df4 100755 (executable)
@@ -41,7 +41,7 @@ from babel.messages.plurals import PLURALS
 from babel.util import odict, LOCALTZ
 
 __all__ = ['CommandLineInterface', 'compile_catalog', 'extract_messages',
-           'init_catalog', 'check_message_extractors']
+           'init_catalog', 'check_message_extractors', 'update_catalog']
 __docformat__ = 'restructuredtext en'
 
 
@@ -59,6 +59,7 @@ class compile_catalog(Command):
             cmdclass = {'compile_catalog': compile_catalog}
         )
 
+    :since: version 0.9
     :see: `Integrating new distutils commands <http://docs.python.org/dist/node32.html>`_
     :see: `setuptools <http://peak.telecommunity.com/DevCenter/setuptools>`_
     """
@@ -458,6 +459,7 @@ class update_catalog(Command):
             cmdclass = {'update_catalog': update_catalog}
         )
 
+    :since: version 0.9
     :see: `Integrating new distutils commands <http://docs.python.org/dist/node32.html>`_
     :see: `setuptools <http://peak.telecommunity.com/DevCenter/setuptools>`_
     """
@@ -654,6 +656,7 @@ class CommandLineInterface(object):
         """Subcommand for compiling a message catalog to a MO file.
 
         :param argv: the command arguments
+        :since: version 0.9
         """
         parser = OptionParser(usage=self.usage % ('compile', ''),
                               description=self.commands['compile'])
@@ -953,6 +956,7 @@ class CommandLineInterface(object):
         """Subcommand for updating existing message catalogs from a template.
 
         :param argv: the command arguments
+        :since: version 0.9
         """
         parser = OptionParser(usage=self.usage % ('update', ''),
                               description=self.commands['update'])
index cb7a262f5fc3c9a6c23c0a71752de0633a1ebefc..2f0950877e7d44326ec1a2433b65bdf57f105bcb 100644 (file)
@@ -13,6 +13,7 @@
 
 """Writing of files in the ``gettext`` MO (machine object) format.
 
+:since: version 0.9
 :see: `The Format of MO Files
        <http://www.gnu.org/software/gettext/manual/gettext.html#MO-Files>`_
 """