Home | History | Annotate | Download | only in python2.7

Lines Matching refs:Catalog

5 message catalog library.
26 # a Catalog class and instances, and the ability to add to a catalog file via
38 # - Lazy loading of .mo files. Currently the entire catalog is loaded into
53 __all__ = ['NullTranslations', 'GNUTranslations', 'Catalog',
268 self._catalog = catalog = {}
282 # Now put all messages from the .mo file buffer into the catalog
296 # Catalog description
333 catalog[(msgid1, i)] = tmsg[i]
338 catalog[msg] = tmsg
579 # James Henstridge's Catalog constructor from GNOME gettext. Documented usage
583 # cat = gettext.Catalog(PACKAGE, localedir=LOCALEDIR)
587 # The resulting catalog object currently don't support access through a
591 Catalog = translation