1 | <?php |
||
26 | class HordeTranslationHandler implements Horde_Translation_Handler { |
||
27 | /** |
||
28 | * Returns the translation of a message. |
||
29 | * |
||
30 | * @var string $message The string to translate. |
||
31 | * |
||
32 | * @return string The string translation, or the original string if no |
||
33 | * translation exists. |
||
34 | */ |
||
35 | 14 | public function t($message) { |
|
38 | |||
39 | /** |
||
40 | * Returns the plural translation of a message. |
||
41 | * |
||
42 | * @param string $singular The singular version to translate. |
||
43 | * @param string $plural The plural version to translate. |
||
44 | * @param integer $number The number that determines singular vs. plural. |
||
45 | * |
||
46 | * @return string The string translation, or the original string if no |
||
47 | * translation exists. |
||
48 | */ |
||
49 | 3 | public function ngettext($singular, $plural, $number) { |
|
52 | } |
||
53 |