Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

(no description)

File Size: 82 lines (2 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

Horde_Translation_Handler_Gettext:: (3 methods):
  __construct()
  t()
  ngettext()


Class: Horde_Translation_Handler_Gettext  - X-Ref

The Horde_Translation_Handler_Gettext provides translations through the
gettext extension, but fails gracefully if gettext is not installed.

__construct($domain, $path)   X-Ref
Constructor.

param: string $domain  The translation domain, e.g. package name.
param: string $path    The path to the gettext catalog.

t($message)   X-Ref
Returns the translation of a message.

param: string $message  The string to translate.
return: string  The string translation, or the original string if no

ngettext($singular, $plural, $number)   X-Ref
Returns the plural translation of a message.

param: string $singular  The singular version to translate.
param: string $plural    The plural version to translate.
param: integer $number   The number that determines singular vs. plural.
return: string  The string translation, or the original string if no