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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
|
<?php
/**
* webtrees: online genealogy
* Copyright (C) 2026 webtrees development team
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace Fisharebest\Webtrees;
use Closure;
use Collator;
use Exception;
use Fisharebest\Localization\Locale;
use Fisharebest\Localization\Locale\LocaleEnUs;
use Fisharebest\Localization\Locale\LocaleInterface;
use Fisharebest\Localization\Translation;
use Fisharebest\Localization\Translator;
use Fisharebest\Webtrees\Module\ModuleCustomInterface;
use Fisharebest\Webtrees\Module\ModuleLanguageInterface;
use Fisharebest\Webtrees\Services\ModuleService;
use function array_merge;
use function class_exists;
use function html_entity_decode;
use function in_array;
use function mb_strtolower;
use function mb_strtoupper;
use function mb_substr;
use function ord;
use function sprintf;
use function str_contains;
use function str_replace;
use function strcmp;
use function strip_tags;
use function strlen;
use function strtr;
use function var_export;
/**
* Internationalization (i18n) and localization (l10n).
*/
class I18N
{
// MO files use special characters for plurals and context.
public const string PLURAL = "\x00";
public const string CONTEXT = "\x04";
// Digits are always rendered LTR, even in RTL text.
private const string DIGITS = '0123456789٠١٢٣٤٥٦٧٨٩۰۱۲۳۴۵۶۷۸۹';
// These locales need special handling for the dotless letter I.
private const array DOTLESS_I_LOCALES = [
'az',
'tr',
];
private const array DOTLESS_I_TOLOWER = [
'I' => 'ı',
'İ' => 'i',
];
private const array DOTLESS_I_TOUPPER = [
'ı' => 'I',
'i' => 'İ',
];
// The ranges of characters used by each script.
private const array SCRIPT_CHARACTER_RANGES = [
[
'Latn',
0x0041,
0x005A,
],
[
'Latn',
0x0061,
0x007A,
],
[
'Latn',
0x0100,
0x02AF,
],
[
'Grek',
0x0370,
0x03FF,
],
[
'Cyrl',
0x0400,
0x052F,
],
[
'Hebr',
0x0590,
0x05FF,
],
[
'Arab',
0x0600,
0x06FF,
],
[
'Arab',
0x0750,
0x077F,
],
[
'Arab',
0x08A0,
0x08FF,
],
[
'Deva',
0x0900,
0x097F,
],
[
'Taml',
0x0B80,
0x0BFF,
],
[
'Sinh',
0x0D80,
0x0DFF,
],
[
'Thai',
0x0E00,
0x0E7F,
],
[
'Geor',
0x10A0,
0x10FF,
],
[
'Grek',
0x1F00,
0x1FFF,
],
[
'Deva',
0xA8E0,
0xA8FF,
],
[
'Hans',
0x3000,
0x303F,
],
// Mixed CJK, not just Hans
[
'Hans',
0x3400,
0xFAFF,
],
// Mixed CJK, not just Hans
[
'Hans',
0x20000,
0x2FA1F,
],
// Mixed CJK, not just Hans
];
// Characters that are displayed in mirror form in RTL text.
private const array MIRROR_CHARACTERS = [
'(' => ')',
')' => '(',
'[' => ']',
']' => '[',
'{' => '}',
'}' => '{',
'<' => '>',
'>' => '<',
'‹ ' => '›',
'› ' => '‹',
'«' => '»',
'»' => '«',
'﴾ ' => '﴿',
'﴿ ' => '﴾',
'“ ' => '”',
'” ' => '“',
'‘ ' => '’',
'’ ' => '‘',
];
// Punctuation used to separate list items, typically a comma
public static string $list_separator;
private static ModuleLanguageInterface $language;
private static LocaleInterface $locale;
private static Translator $translator;
private static Collator|null $collator = null;
/**
* The preferred locales for this site, or a default list if no preference.
*
* @return array<LocaleInterface>
*/
public static function activeLocales(): array
{
$locales = Registry::container()->get(ModuleService::class)
->findByInterface(ModuleLanguageInterface::class, false, true)
->map(static fn (ModuleLanguageInterface $module): LocaleInterface => $module->locale());
if ($locales->isEmpty()) {
return [new LocaleEnUs()];
}
return $locales->all();
}
/**
* What format is used to display dates in the current locale?
*
* @return string
*/
public static function dateFormat(): string
{
/* I18N: This is the format string for full dates. See https://php.net/date for codes */
return self::$translator->translate('%j %F %Y');
}
/**
* Convert the digits 0-9 into the local script
* Used for years, etc., where we do not want thousands-separators, decimals, etc.
*
* @param string|int $n
*
* @return string
*/
public static function digits(string|int $n): string
{
return self::$locale->digits((string) $n);
}
/**
* What is the direction of the current locale
*
* @return string "ltr" or "rtl"
*/
public static function direction(): string
{
return self::$locale->direction();
}
/**
* Initialise the translation adapter with a locale setting.
*
* @param string $code
* @param bool $setup
*
* @return void
*/
public static function init(string $code, bool $setup = false): void
{
self::$locale = Locale::create($code);
// Load the translation file
$translation_file = __DIR__ . '/../resources/lang/' . self::$locale->languageTag() . '/messages.php';
try {
$translation = new Translation($translation_file);
$translations = $translation->asArray();
} catch (Exception) {
// The translations files are created during the build process, and are
// not included in the source code.
// Assuming we are using dev code, and build (or rebuild) the files.
$po_file = Webtrees::ROOT_DIR . 'resources/lang/' . self::$locale->languageTag() . '/messages.po';
$translation = new Translation($po_file);
$translations = $translation->asArray();
file_put_contents($translation_file, "<?php\n\nreturn " . var_export($translations, true) . ";\n");
}
// Add translations from custom modules (but not during setup, as we have no database/modules)
if (!$setup) {
$module_service = Registry::container()->get(ModuleService::class);
$translations = $module_service
->findByInterface(ModuleCustomInterface::class)
->reduce(static fn (array $carry, ModuleCustomInterface $item): array => array_merge($carry, $item->customTranslations(self::$locale->languageTag())), $translations);
self::$language = $module_service
->findByInterface(ModuleLanguageInterface::class, true)
->first(fn (ModuleLanguageInterface $module): bool => $module->locale()->languageTag() === $code);
}
// Create a translator
self::$translator = new Translator($translations, self::$locale->pluralRule());
/* I18N: This punctuation is used to separate lists of items */
self::$list_separator = self::translate(', ');
// Create a collator
try {
// Symfony provides a very incomplete polyfill - which cannot be used.
if (class_exists('Collator')) {
// Need phonebook collation rules for German Ä, Ö and Ü.
if (str_contains(self::$locale->code(), '@')) {
self::$collator = new Collator(self::$locale->code() . ';collation=phonebook');
} else {
self::$collator = new Collator(self::$locale->code() . '@collation=phonebook');
}
// Ignore upper/lower case differences
self::$collator->setStrength(Collator::SECONDARY);
}
} catch (Exception) {
// PHP-INTL is not installed? We'll use a fallback later.
}
}
/**
* Translate a string, and then substitute placeholders
* echo I18N::translate('Hello World!');
* echo I18N::translate('The %s sat on the mat', 'cat');
*
* @param string $message
* @param string ...$args
*
* @return string
*/
public static function translate(string $message, ...$args): string
{
$message = self::$translator->translate($message);
return sprintf($message, ...$args);
}
/**
* @return string
*/
public static function languageTag(): string
{
return self::$locale->languageTag();
}
public static function locale(): LocaleInterface
{
return self::$locale;
}
/**
* @return ModuleLanguageInterface
*/
public static function language(): ModuleLanguageInterface
{
return self::$language;
}
/**
* Translate a number into the local representation.
* e.g. 12345.67 becomes
* en: 12,345.67
* fr: 12 345,67
* de: 12.345,67
*
* @param float $n
* @param int $precision
*
* @return string
*/
public static function number(float $n, int $precision = 0): string
{
return self::$locale->number(round($n, $precision));
}
/**
* Translate a fraction into a percentage.
* e.g. 0.123 becomes
* en: 12.3%
* fr: 12,3 %
* de: 12,3%
*
* @param float $n
* @param int $precision
*
* @return string
*/
public static function percentage(float $n, int $precision = 0): string
{
return self::$locale->percent(round($n, $precision + 2));
}
/**
* Translate a plural string
* echo self::plural('There is an error', 'There are errors', $num_errors);
* echo self::plural('There is one error', 'There are %s errors', $num_errors);
* echo self::plural('There is %1$s %2$s cat', 'There are %1$s %2$s cats', $num, $num, $colour);
*
* @param string $singular
* @param string $plural
* @param int $count
* @param string ...$args
*
* @return string
*/
public static function plural(string $singular, string $plural, int $count, ...$args): string
{
$message = self::$translator->translatePlural($singular, $plural, $count);
return sprintf($message, ...$args);
}
/**
* UTF8 version of PHP::strrev()
* Reverse RTL text for third-party libraries such as GD2 and googlechart.
* These do not support UTF8 text direction, so we must mimic it for them.
* Numbers are always rendered LTR, even in RTL text.
* The visual direction of characters such as parentheses should be reversed.
*
* @param string $text Text to be reversed
*
* @return string
*/
public static function reverseText(string $text): string
{
// Remove HTML markup - we can't display it and it is LTR.
$text = strip_tags($text);
// Remove HTML entities.
$text = html_entity_decode($text, ENT_QUOTES, 'UTF-8');
// LTR text doesn't need reversing
if (self::scriptDirection(self::textScript($text)) === 'ltr') {
return $text;
}
// Mirrored characters
$text = strtr($text, self::MIRROR_CHARACTERS);
$reversed = '';
$digits = '';
while ($text !== '') {
$letter = mb_substr($text, 0, 1);
$text = mb_substr($text, 1);
if (str_contains(self::DIGITS, $letter)) {
$digits .= $letter;
} else {
$reversed = $letter . $digits . $reversed;
$digits = '';
}
}
return $digits . $reversed;
}
/**
* Return the direction (ltr or rtl) for a given script
* The PHP/intl library does not provde this information, so we need
* our own lookup table.
*
* @param string $script
*
* @return string
*/
public static function scriptDirection(string $script): string
{
switch ($script) {
case 'Arab':
case 'Hebr':
case 'Mong':
case 'Thaa':
return 'rtl';
default:
return 'ltr';
}
}
/**
* Identify the script used for a piece of text
*
* @param string $string
*
* @return string
*/
public static function textScript(string $string): string
{
$string = strip_tags($string); // otherwise HTML tags show up as latin
$string = html_entity_decode($string, ENT_QUOTES, 'UTF-8'); // otherwise HTML entities show up as latin
$string = str_replace([
Individual::NOMEN_NESCIO,
Individual::PRAENOMEN_NESCIO,
], '', $string);
$pos = 0;
$strlen = strlen($string);
while ($pos < $strlen) {
// get the Unicode Code Point for the character at position $pos
$byte1 = ord($string[$pos]);
if ($byte1 < 0x80) {
$code_point = $byte1;
$chrlen = 1;
} elseif ($byte1 < 0xC0) {
// Invalid continuation character
return 'Latn';
} elseif ($byte1 < 0xE0) {
$code_point = (($byte1 & 0x1F) << 6) + (ord($string[$pos + 1]) & 0x3F);
$chrlen = 2;
} elseif ($byte1 < 0xF0) {
$code_point = (($byte1 & 0x0F) << 12) + ((ord($string[$pos + 1]) & 0x3F) << 6) + (ord($string[$pos + 2]) & 0x3F);
$chrlen = 3;
} elseif ($byte1 < 0xF8) {
$code_point = (($byte1 & 0x07) << 24) + ((ord($string[$pos + 1]) & 0x3F) << 12) + ((ord($string[$pos + 2]) & 0x3F) << 6) + (ord($string[$pos + 3]) & 0x3F);
$chrlen = 3;
} else {
// Invalid UTF
return 'Latn';
}
foreach (self::SCRIPT_CHARACTER_RANGES as $range) {
if ($code_point >= $range[1] && $code_point <= $range[2]) {
return $range[0];
}
}
// Not a recognised script. Maybe punctuation, spacing, etc. Keep looking.
$pos += $chrlen;
}
return 'Latn';
}
/**
* A closure which will compare strings using local collation rules.
*
* @return Closure(string,string):int
*/
public static function comparator(): Closure
{
$collator = self::$collator;
if ($collator instanceof Collator) {
return static fn (string $x, string $y): int => (int) $collator->compare($x, $y);
}
return static fn (string $x, string $y): int => strcmp(self::strtolower($x), self::strtolower($y));
}
/**
* Convert a string to lower case.
*
* @param string $string
*
* @return string
*/
public static function strtolower(string $string): string
{
if (in_array(self::$locale->language()->code(), self::DOTLESS_I_LOCALES, true)) {
$string = strtr($string, self::DOTLESS_I_TOLOWER);
}
return mb_strtolower($string);
}
/**
* Convert a string to upper case.
*
* @param string $string
*
* @return string
*/
public static function strtoupper(string $string): string
{
if (in_array(self::$locale->language()->code(), self::DOTLESS_I_LOCALES, true)) {
$string = strtr($string, self::DOTLESS_I_TOUPPER);
}
return mb_strtoupper($string);
}
/**
* What format is used to display dates in the current locale?
*
* @return string
*/
public static function timeFormat(): string
{
/* I18N: This is the format string for the time-of-day. See https://php.net/date for codes */
return self::$translator->translate('%H:%i:%s');
}
/**
* Context sensitive version of translate.
* echo I18N::translateContext('NOMINATIVE', 'January');
* echo I18N::translateContext('GENITIVE', 'January');
*
* @param string $context
* @param string $message
* @param string ...$args
*
* @return string
*/
public static function translateContext(string $context, string $message, ...$args): string
{
$message = self::$translator->translateContext($context, $message);
return sprintf($message, ...$args);
}
}
|