1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
<?php
/* Icinga Web 2 | (c) 2013 Icinga Development Team | GPLv2+ */
use ipl\Stdlib\Contract\Translator;
use ipl\I18n\StaticTranslator;
/**
* No-op translate
*
* Supposed to be used for marking a string as available for translation without actually translating it immediately.
* The returned string is the one given in the input. This does only work with the standard gettext macros t() and mt().
*
* @param string $messageId
*
* @return string
*/
function N_(string $messageId): string
{
return $messageId;
}
// Workaround for test issues, this is required unless our tests are able to
// accomplish "real" bootstrapping
if (function_exists('t')) {
return;
}
if (extension_loaded('gettext')) {
/**
* @see Translator::translate() For the function documentation.
*/
function t(string $messageId, ?string $context = null): string
{
return StaticTranslator::$instance->translate($messageId, $context);
}
/**
* @see Translator::translateInDomain() For the function documentation.
*/
function mt(string $domain, string $messageId, ?string $context = null): string
{
return StaticTranslator::$instance->translateInDomain($domain, $messageId, $context);
}
/**
* @see Translator::translatePlural() For the function documentation.
*/
function tp(string $messageId, string $messageId2, ?int $number, ?string $context = null): string
{
return StaticTranslator::$instance->translatePlural($messageId, $messageId2, $number ?? 0, $context);
}
/**
* @see Translator::translatePluralInDomain() For the function documentation.
*/
function mtp(string $domain, string $messageId, string $messageId2, ?int $number, ?string $context = null): string
{
return StaticTranslator::$instance->translatePluralInDomain(
$domain,
$messageId,
$messageId2,
$number ?? 0,
$context
);
}
} else {
/**
* @see Translator::translate() For the function documentation.
*/
function t(string $messageId, ?string $context = null): string
{
return $messageId;
}
/**
* @see Translator::translate() For the function documentation.
*/
function mt(string $domain, string $messageId, ?string $context = null): string
{
return $messageId;
}
/**
* @see Translator::translatePlural() For the function documentation.
*/
function tp(string $messageId, string $messageId2, ?int $number, ?string $context = null): string
{
if ((int) $number !== 1) {
return $messageId2;
}
return $messageId;
}
/**
* @see Translator::translatePlural() For the function documentation.
*/
function mtp(string $domain, string $messageId, string $messageId2, ?int $number, ?string $context = null): string
{
if ((int) $number !== 1) {
return $messageId2;
}
return $messageId;
}
}
|