Latest Version: 0.9.6.2

Index of the i18n module

  • m pylons.i18n ... - Internationalization and Localization functionality
    • m translation ... - Translation/Localization functions.
      • C LanguageError ... - Exception raised when a problem occurs with changing languages
      • f gettext_noop ... - Mark a string for translation without translating it. Returns value.
      • f ugettext ... - Mark a string for translation. Returns the localized unicode string of value.
      • f set_lang ... - Set the i18n language used
      • f add_fallback ... - Add a fallback language from which words not matched in other languages will be translated to.
      • f ungettext ... - Mark a string for translation. Returns the localized unicode string of the pluralized value.
      • f gettext ... - Mark a string for translation. Returns the localized string of value.
      • f lazy_ngettext ... - Lazy-evaluated version of the ngettext function
      • f lazy_gettext ... - Lazy-evaluated version of the gettext function
      • f ngettext ... - Mark a string for translation. Returns the localized string of the pluralized value.
      • f lazy_ugettext ... - Lazy-evaluated version of the ugettext function
      • f lazy_ungettext ... - Lazy-evaluated version of the ungettext function
      • f get_lang ... - Return the current i18n language used

Top