-
-
Notifications
You must be signed in to change notification settings - Fork 405
/
global_languages.php
963 lines (783 loc) · 33.6 KB
/
global_languages.php
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
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2023 The Cacti Group |
| |
| 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 2 |
| 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. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDtool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
/* default localization of Cacti */
$cacti_locale = 'en-US';
$cacti_country = 'us';
/* an array that will contains all textdomains being in use. */
$cacti_textdomains = array();
global $path2calendar, $path2timepicker, $path2colorpicker, $path2ms, $path2msfilter;
/* get a list of locale settings */
$lang2locale = get_list_of_locales();
/* use a fallback if i18n is disabled (default) */
if (!read_config_option('i18n_language_support') && read_config_option('i18n_language_support') != '') {
i18n_debug('load_fallback_procedure(1)');
load_fallback_procedure();
return;
}
/* Repair legacy language support */
if (!empty($config['i18n_force_language'])) {
$_REQUEST['language'] = $config['i18n_force_language'];
}
if (!empty($_REQUEST['language'])) {
$_REQUEST['language'] = repair_locale($_REQUEST['language']);
}
/* determine whether or not we can support the language */
$user_locale = '';
if (!empty($_REQUEST['language']) && !empty($lang2locale[$_REQUEST['language']])) {
/* user requests another language */
$user_locale = apply_locale($_REQUEST['language']);
unset($_SESSION['sess_current_date1']);
unset($_SESSION['sess_current_date2']);
/* save customized language setting (authenticated users only) */
set_user_setting('language', $user_locale);
} elseif (!empty($_SESSION['sess_user_language']) && !empty($lang2locale[$_SESSION['sess_user_language']])) {
/* language definition stored in the SESSION */
$user_locale = apply_locale($_SESSION['sess_user_language']);
} else {
/* look up for user customized language setting stored in Cacti DB */
$user_locale = apply_locale(read_user_i18n_setting('user_language'));
}
/* allow RRDtool to display i18n */
setlocale(LC_CTYPE, str_replace('-', '_', $user_locale) . '.UTF-8');
if ($user_locale !== false && $user_locale !== '') {
$_SESSION['sess_user_language'] = $user_locale;
}
/* define the path to the language file */
$path2catalogue = get_mo_language_file([$cacti_locale, $lang2locale[$cacti_locale]['filename']]);
$catalogue = $path2catalogue;
/* define the path to the language file of the DHTML calendar */
$path2timepicker = '';
$path2calendar = '';
$path2ms = '';
$path2msfiler = '';
$path2colorpicker = '';
if ($cacti_locale != '') {
$lang_parts = explode('-', $cacti_locale);
$lang_names = [$cacti_locale, $lang_parts[0]];
// Detect the calendar path
$path2calendar = get_js_language_file($lang_names, 'jquery-ui-datepicker-');
$path2timepicker = get_js_language_file($lang_names, 'jquery-ui-timepicker-');
$path2colorpicker = get_js_language_file($lang_names, 'jquery-ui-colorpicker-');
$path2ms = get_js_language_file($lang_names, 'jquery-ui-multiselect-');
$path2msfilter = get_js_language_file($lang_names, 'jquery-ui-multiselect-filter-');
}
/* use fallback procedure if requested language is not available */
if (file_exists($path2catalogue)) {
$cacti_textdomains['cacti']['path2catalogue'] = $path2catalogue;
} else {
i18n_debug('load_fallback_procedure(2): ' . $path2catalogue);
load_fallback_procedure();
return;
}
/* search the correct textdomains for all plugins being installed */
$plugins = db_fetch_assoc('SELECT `directory`
FROM `plugin_config`
ORDER BY id');
if ($plugins && cacti_sizeof($plugins)) {
$lang_names = [$cacti_locale, $lang2locale[$cacti_locale]['filename']];
foreach ($plugins as $plugin) {
$plugin = $plugin['directory'];
$path2catalogue = get_mo_language_file($lang_names, null, $config['base_path'] . '/plugins/' . $plugin);
if (!empty($path2catalogue) && file_exists($path2catalogue)) {
$cacti_textdomains[$plugin]['path2catalogue'] = $path2catalogue;
}
}
/* if i18n support is set to strict mode then check if all plugins support the requested language */
if (read_config_option('i18n_language_support') == 2) {
if (cacti_sizeof($plugins) != (cacti_sizeof($cacti_textdomains) - 1)) {
i18n_debug('load_fallback_procedure(3)');
load_fallback_procedure();
return;
}
}
}
i18n_debug('Attempt to find the handler');
/* load php-gettext class if present */
$i18n = array();
// Is the handler defined in the db?
$i18n_handler = read_config_option('i18n_language_handler');
// Is the handler defined in the config but not the db?
if (empty($i18n_handler) && !empty($config['i18n_language_handler'])) {
i18n_debug('Handler: specified in config, not in settings');
$i18n_handler = $config['i18n_language_handler'];
}
i18n_debug("require(1): Defined handler $i18n_handler");
$i18n_provider = null;
if (!empty($i18n_handler)) {
$i18n_provider = get_src_language_files($i18n_handler);
}
if ($i18n_provider === null) {
$i18n_provider = get_src_language_files(null);
}
$i18n_handler = CACTI_LANGUAGE_HANDLER_DEFAULT;
if ($i18n_provider !== null) {
$i18n_handler = $i18n_provider['handler'];
i18n_debug("require(1): Selected handler $i18n_handler");
foreach ($i18n_provider['paths'] as $providerPath) {
foreach ($i18n_provider['files'] as $providerFile) {
$providerFull = $providerPath . $providerFile;
i18n_debug("require(1): Requiring $providerFull");
require_once($providerFull);
}
}
}
define('CACTI_LANGUAGE_HANDLER', $i18n_handler);
i18n_debug('require(2): Final handler ' . CACTI_LANGUAGE_HANDLER);
if (CACTI_LANGUAGE_HANDLER != CACTI_LANGUAGE_HANDLER_DEFAULT) {
/* prefetch all language files to work in memory only,
die if one of the language files is corrupted */
foreach ($cacti_textdomains as $domain => $paths) {
i18n_debug("load_language($domain): " . $cacti_textdomains[$domain]['path2catalogue']);
switch (CACTI_LANGUAGE_HANDLER) {
case CACTI_LANGUAGE_HANDLER_PHPGETTEXT:
$i18n[$domain] = load_gettext_original($domain);
break;
case CACTI_LANGUAGE_HANDLER_MOTRANSLATOR:
$i18n[$domain] = load_gettext_motranslator($domain);
break;
case CACTI_LANGUAGE_HANDLER_OSCAROTERO:
$i18n[$domain] = load_gettext_oscarotero($domain);
break;
}
if (empty($i18n[$domain])) {
die('Invalid language support or corrupt/missing file: ' . $cacti_textdomains[$domain]['path2catalogue'] . PHP_EOL);
}
}
unset($input);
}
/* load standard wrappers */
define('CACTI_LOCALE', $cacti_locale);
define('CACTI_COUNTRY', $cacti_country);
define('CACTI_LANGUAGE', $lang2locale[CACTI_LOCALE]['language']);
define('CACTI_LANGUAGE_FILE', $catalogue);
function get_js_language_file($names, $prefix = null, $base_path = null, $extension = null) {
global $config;
$extension = empty($extension) ? 'js' : $extension;
$prefix = empty($prefix) ? '' : $prefix;
$base_path = (empty($base_path) ? $config['include_path'] : $base_path) . '/js/LC_MESSAGES/';
i18n_debug('get_js_language_file("' . $prefix . '", "' . $base_path . '", "' . $extension . '")');
return get_language_file($extension, $prefix, $names, $base_path);
}
function get_mo_language_file($names, $prefix = null, $base_path = null, $extension = null) {
global $config;
$extension = empty($extension) ? 'mo' : $extension;
$prefix = empty($prefix) ? '' : $prefix;
$base_path = (empty($base_path) ? $config['base_path'] : $base_path) . '/locales/LC_MESSAGES/';
i18n_debug('get_mo_language_file("' . $prefix . '", "' . $base_path . '", "' . $extension . '")');
return get_language_file($extension, $prefix, $names, $base_path);
}
function get_language_file($extension, $prefix, $names, $base_path = null) {
global $config;
if (empty($extension)) {
$extension = '';
} else {
$extension = '.' . ltrim($extension, '. ');
}
$base_path = empty($base_path) ? $config['base_path'] : $base_path;
$base_path = rtrim($base_path, '/') . '/';
foreach ($names as $name) {
$file = $base_path . $prefix . $name . $extension;
$exists = file_exists($file);
i18n_debug('get_language_file("' . $extension . '", "' . $prefix . '", "' . $base_path . '"): ' . ($exists ? 'Yes' : 'No') . ' - "' . $file . '"');
if ($exists) {
return $file;
}
}
return '';
}
function get_src_language_files($i18n_handler) {
global $config;
$i18n_providers = [];
if (empty($i18n_handler) || $i18n_handler === CACTI_LANGUAGE_HANDLER_PHPGETTEXT) {
$i18n_providers[] = [
'handler' => CACTI_LANGUAGE_HANDLER_PHPGETTEXT,
'paths' => [ $config['include_path'] . '/vendor/phpgettext/' ],
'files' => ['streams.php', 'gettext.php'],
];
}
if (empty($i18n_handler) || $i18n_handler === CACTI_LANGUAGE_HANDLER_MOTRANSLATOR) {
$i18n_providers[] = [
'handler' => CACTI_LANGUAGE_HANDLER_MOTRANSLATOR,
'paths' => [
$config['include_path'] . '/vendor/MoTranslator/',
$config['include_path'] . '/vendor/motranslator/',
$config['include_path'] . '/vendor/motranslator/src/',
],
/*
* This was 'files' => ['Translator.php', 'StringReader.php' ],
* but has been replaced with autoload.php to suppor Debian
* bullseye which has an updated version of MoTranslator
*/
'files' => ['autoload.php', ],
];
}
if (version_compare(PHP_VERSION, '8.0', '<=')) {
if (empty($i18n_handler) || $i18n_handler === CACTI_LANGUAGE_HANDLER_OSCAROTERO) {
array_unshift($i18n_providers, [
'handler' => CACTI_LANGUAGE_HANDLER_OSCAROTERO,
'paths' => [
$config['include_path'] . '/vendor/gettext/src/',
$config['include_path'] . '/vendor/cldr-to-gettext-plural-rules/src/',
],
'files' => [ 'autoloader.php' ],
'all' => true,
]);
}
}
$i18n_handler_text = ($i18n_handler === null) ? 'null' : $i18n_handler;
foreach ($i18n_providers as $i18n_provider) {
$found = true;
$all = !empty($i18n_provider['all']);
foreach ($i18n_provider['paths'] as $path) {
if (!$all) {
$found = true;
}
foreach ($i18n_provider['files'] as $file) {
$fullPath = $path . $file;
$fullExists = file_exists($fullPath);
$fullYesNo = $fullExists ? 'Yes' : 'No ';
i18n_debug("get_src_language_provider($i18n_handler_text) : {$i18n_provider['handler']} - $fullYesNo - $fullPath");
if (!$fullExists) {
$found = false;
break;
}
if (!$all) {
break;
}
}
if ($all && !$found) {
i18n_debug("get_src_language_provider($i18n_handler_text) : {$i18n_provider['handler']} - Requires all locations for all files, but missing one, skipped");
break;
}
if ($found) {
$i18n_return = $i18n_provider;
if (!$all) {
$i18n_return['paths'] = [ $path ];
}
i18n_debug("get_src_language_provider($i18n_handler_text) : {$i18n_provider['handler']} - Selecting with " . count($i18n_return['paths']) . " paths");
return $i18n_return;
}
}
}
return null;
}
function load_gettext_original($domain) {
global $cacti_textdomains;
// Hide deprecation errors for PHP 8 if using this
// Translator
if (version_compare(PHP_VERSION, '8.0', '>=')) {
error_reporting(E_ALL ^ E_DEPRECATED);
}
i18n_debug("load_gettext_original($domain): " . $cacti_textdomains[$domain]['path2catalogue']);
$input = new FileReader($cacti_textdomains[$domain]['path2catalogue']);
if ($input == false) {
die('Unable to read file: ' . $cacti_textdomains[$domain]['path2catalogue'] . PHP_EOL);
}
$i18n_domain = new gettext_reader($input);
if ($i18n_domain == false) {
die('Invalid language file: ' . $cacti_textdomains[$domain]['path2catalogue'] . PHP_EOL);
}
return $i18n_domain;
}
function load_gettext_motranslator($domain) {
global $cacti_textdomains;
// Hide deprecation errors for PHP 8 if using this
// Translator
if (version_compare(PHP_VERSION, '8.0', '>=')) {
error_reporting(E_ALL ^ E_DEPRECATED);
}
i18n_debug("load_gettext_mostranslator($domain): " . $cacti_textdomains[$domain]['path2catalogue']);
$input = new PhpMyAdmin\MoTranslator\Translator($cacti_textdomains[$domain]['path2catalogue']);
if ($input == false) {
die('Unable to read file: ' . $cacti_textdomains[$domain]['path2catalogue'] . PHP_EOL);
}
return $input;
}
function load_gettext_oscarotero($domain) {
global $cacti_textdomains;
// Hide deprecation errors for PHP 8 if using this
// Translator
if (version_compare(PHP_VERSION, '8.0', '>=')) {
error_reporting(E_ALL ^ E_DEPRECATED);
}
i18n_debug("load_gettext_oscarotero($domain): " . $cacti_textdomains[$domain]['path2catalogue']);
$input = Gettext\Translations::fromMoFile($cacti_textdomains[$domain]['path2catalogue']);
if ($input == false) {
die('Unable to read file: ' . $cacti_textdomains[$domain]['path2catalogue'] . PHP_EOL);
}
$i18n_domain = new Gettext\Translator();
$i18n_domain->loadTranslations($input);
if ($i18n_domain == false) {
die('Invalid language file: ' . $cacti_textdomains[$domain]['path2catalogue'] . PHP_EOL);
}
return $i18n_domain;
}
function apply_locale($language) {
global $cacti_locale, $cacti_country, $lang2locale;
$locale_set = false;
if ($language != '') {
$language = repair_locale($language);
$locale_set = isset($lang2locale[$language]);
}
// If the users has not elected a language and autodetect is on
if (!$locale_set && (isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) && (read_config_option('i18n_auto_detection') == '' || read_config_option('i18n_auto_detection') == '1'))) {
/* detect browser settings if auto detection is enabled */
$accepted = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
$accepted = $accepted[0];
$language = repair_locale($accepted);
$locale_set = isset($lang2locale[$language]);
}
if (!$locale_set) {
$language = repair_locale(read_config_option('i18n_default_language'));
if ($language == false || $language == '') {
$language = repair_locale(read_default_config_option('i18n_default_language'));
}
$locale_set = isset($lang2locale[$language]);
}
if ($locale_set) {
$cacti_locale = $language;
$cacti_country = $lang2locale[$cacti_locale]['country'];
return $cacti_locale;
}
return false;
}
/* best effort function to repair locale */
function repair_locale($language) {
global $lang2locale;
/* Repair legacy language support */
if ($language != '' && $language != null) {
$locale = str_replace('_','-', $language);
if (array_key_exists($locale, $lang2locale)) {
$language = $locale;
} else {
$wanted_locale = substr($language, 0, 2);
$language = '';
foreach ($lang2locale as $locale => $data) {
if (substr($locale, 0, 2) == $wanted_locale) {
$language = $locale;
break;
}
}
}
} else {
$language = 'en-US';
}
return $language;
}
/**
* Universal escaping wrappers
*/
function __esc() {
return htmlspecialchars( call_user_func_array('__', func_get_args()), ENT_QUOTES);
}
function __esc_n() {
return htmlspecialchars( call_user_func_array('__n', func_get_args()), ENT_QUOTES);
}
function __esc_x() {
return htmlspecialchars( call_user_func_array('__x', func_get_args()), ENT_QUOTES);
}
function __esc_xn() {
return htmlspecialchars( call_user_func_array('__xn', func_get_args()), ENT_QUOTES);
}
/**
* load_fallback_procedure - loads wrapper package if native language (English) has to be used
*
* @return
*/
function load_fallback_procedure(){
global $cacti_textdomains, $cacti_locale, $cacti_country, $lang2locale;
/* reset variables */
$_SESSION['sess_user_language'] = '';
$cacti_textdomains = array();
define('CACTI_LOCALE', 'en-US');
define('CACTI_COUNTRY', 'us');
define('CACTI_LANGUAGE', 'English');
define('CACTI_LANGUAGE_FILE', 'english_usa');
define('CACTI_LANGUAGE_HANDLER', CACTI_LANGUAGE_HANDLER_DEFAULT);
}
function __gettext($text, $domain = 'cacti') {
global $i18n;
// Assume translation fails or is not defined
if (isset($i18n[$domain])) {
switch (CACTI_LANGUAGE_HANDLER) {
case CACTI_LANGUAGE_HANDLER_PHPGETTEXT:
$translated = $i18n[$domain]->translate($text);
break;
case CACTI_LANGUAGE_HANDLER_OSCAROTERO:
case CACTI_LANGUAGE_HANDLER_MOTRANSLATOR:
$translated = $i18n[$domain]->gettext($text);
break;
}
}
if (!isset($translated)) {
$translated = $text;
} else {
i18n_text_debug("__gettext($domain):\n Original: $text\n Translated: $translated", FILE_APPEND);
}
return __uf($translated);
}
function __n($singular, $plural, $number, $domain = 'cacti') {
global $i18n;
if (isset($i18n[$domain])) {
return __uf($i18n[$domain]->ngettext($singular, $plural, $number));
} else {
return ($number == 1) ? __uf($singular) : __uf($plural);
}
}
function __uf($text) {
return str_replace('%%', '%', $text);
}
function __() {
global $i18n;
$args = func_get_args();
$num = func_num_args();
if ($num < 1) {
/* this should not happen */
return false;
} elseif ($num == 1) {
/* convert pure text strings */
return __gettext($args[0]);
}
/* only the last argument is allowed to initiate
the use of a different textdomain */
/* get gettext string */
if (isset($i18n[(string) $args[$num - 1]]) && $args[$num - 1] != 'cacti') {
$args[0] = __gettext($args[0], $args[$num - 1]);
} else {
$args[0] = __gettext($args[0]);
}
$regex_num = '%([-]{0,1}[0-9]+([.][0-9]+){0,1}){0,1}';
$regex_str = '%([-]{0,1}[0-9]+){0,1}';
$array_str = [
'b', // Binary
'o', // Integer as Octal
's', // String
'u', // Integer as Unsigned Decimal
'x', // Integer as hex (lowercase)
'X', // Integer as hex (uppercase)
];
$array_num = [
'd', // Decimal
'e', // Scientific notation (lowercase)
'E', // Scientific notation (uppercase)
'f', // Floating point (locale aware)
'F', // Floating point (non-locale aware)
'g', // General format (uses E and f styling if precision involved)
'G', // General format (docs say same as g but uses E and f, yet it already does???)
];
if (version_compare(PHP_VERSION, '8.0', '>=')) {
$array_num[] = 'h'; // General format (like g but uses F)
$array_num[] = 'H'; // General format (like g but uses E and F)
}
$valid_args = array(
'%%', // Escaped percentage (literal)
'%c', // Single Character
$regex_num . '[' . implode('', $array_num) . ']',
$regex_str . '[' . implode('', $array_str) . ']',
);
$valid_regexp = '/(' . implode(')|(', $valid_args) . ')/';
if (preg_match($valid_regexp, $args[0])) {
/* process return string against input arguments */
return __uf(call_user_func_array('sprintf', $args));
} else {
return $args[0];
}
}
function __xn($context, $singular, $plural, $number, $domain = 'cacti') {
$xsingular = $context . chr(4) . $singular;
$xplural = $context . chr(4) . $plural;
$msgstr = __n($xsingular, $xplural, $number, $domain);
if ($number == 1 ) {
return ( $msgstr == $xsingular ) ? __uf($singular) : __uf($msgstr);
} else {
return ( $msgstr == $xplural ) ? __uf($plural) : __uf($msgstr);
}
}
function __x() {
global $i18n;
$args = func_get_args();
$num = func_num_args();
/* this should never happen */
if ($num < 2) {
return false;
} else {
$context = array_shift($args);
$num--;
$msgid = reset($args);
$xmsgid = $context . chr(4) . $msgid;
$args[0] = $xmsgid;
if ($num == 1) {
/* pure text string without placeholders and a change of the default textdomain */
$msgstr = __gettext($args[0]);
} else {
/* get gettext string */
$msgstr = isset($i18n[ (string) $args[$num-1]]) && $args[$num-1] != 'cacti' ?
__gettext($args[0], $args[$num-1]) : __gettext($args[0]);
}
/* use the raw message id if language catalogue does not contain a context specific message string */
$args[0] = ( $msgstr == $xmsgid ) ? $msgid : $msgstr;
/* process return string against input arguments */
return __uf(call_user_func_array('sprintf', $args));
}
}
function __date($format, $timestamp = false, $domain = 'cacti') {
global $i18n_date_placeholders;
if (!$timestamp) {
$timestamp = time();
}
/* placeholders will allow to fill in the translated weekdays, month and so on.. */
$i18n_date_placeholders = array(
'#1' => __(date('D', $timestamp), $domain),
'#2' => __(date('M', $timestamp), $domain),
'#3' => __(date('F', $timestamp), $domain),
'#4' => __(date('l', $timestamp), $domain)
);
/* if defined exchange the format string for the configured locale */
$format = __gettext($format, $domain);
/* replace special date chars by placeholders */
$format = str_replace(array('D', 'M', 'F', 'l'), array('#1', '#2', '#3', '#4'), $format);
/* get date string included placeholders */
$date = date($format, $timestamp);
/* fill in specific translations */
$date = str_replace(array_keys($i18n_date_placeholders), array_values($i18n_date_placeholders), $date);
return __uf($date);
}
/**
* get_list_of_locales - returns the default settings being used for i18n
*
* @return array a multi-dimensional array with the locale code as main key
*/
function get_list_of_locales() {
$lang2locale = array(
'sq-AL' => array('language' => 'Albanian', 'direction' => 'ltr', 'country' => 'al', 'filename' => 'albanian_albania'),
'ar-SA' => array('language' => 'Arabic', 'direction' => 'rtl', 'country' => 'sa', 'filename' => 'arabic_saudi_arabia'),
'hy-AM' => array('language' => 'Armenian', 'direction' => 'ltr', 'country' => 'am', 'filename' => 'armenian_armenia'),
'be-BY' => array('language' => 'Belarusian', 'direction' => 'ltr', 'country' => 'by', 'filename' => 'belarusian_belarus'),
'bg-BG' => array('language' => 'Bulgarian', 'direction' => 'ltr', 'country' => 'bg', 'filename' => 'bulgarian_bulgaria'),
'zh-CN' => array('language' => 'Chinese (China)', 'direction' => 'ltr', 'country' => 'cn', 'filename' => 'chinese_china_simplified'),
'zh-HK' => array('language' => 'Chinese (Hong Kong)', 'direction' => 'ltr', 'country' => 'hk', 'filename' => 'chinese_hong_kong'),
'zh-SG' => array('language' => 'Chinese (Singapore)', 'direction' => 'ltr', 'country' => 'sg', 'filename' => 'chinese_singapore'),
'zh-TW' => array('language' => 'Chinese (Taiwan)', 'direction' => 'ltr', 'country' => 'tw', 'filename' => 'chinese_taiwan'),
'hr-HR' => array('language' => 'Croatian', 'direction' => 'ltr', 'country' => 'hr', 'filename' => 'croatian_croatia'),
'cs-GZ' => array('language' => 'Czech', 'direction' => 'ltr', 'country' => 'cz', 'filename' => 'czech_czech_republic'),
'da-DK' => array('language' => 'Danish', 'direction' => 'ltr', 'country' => 'dk', 'filename' => 'danish_denmark'),
'nl-NL' => array('language' => 'Dutch', 'direction' => 'ltr', 'country' => 'nl', 'filename' => 'dutch_netherlands'),
'en-US' => array('language' => 'English', 'direction' => 'ltr', 'country' => 'us', 'filename' => 'english_usa'),
'en-GB' => array('language' => 'English (Britain)', 'direction' => 'ltr', 'country' => 'gb', 'filename' => 'english_gb'),
'et-EE' => array('language' => 'Estonian', 'direction' => 'ltr', 'country' => 'ee', 'filename' => 'estonian_estonia'),
'fi-FI' => array('language' => 'Finnish', 'direction' => 'ltr', 'country' => 'fi', 'filename' => 'finnish_finland'),
'fr-FR' => array('language' => 'French', 'direction' => 'ltr', 'country' => 'fr', 'filename' => 'french_france'),
'de-DE' => array('language' => 'German', 'direction' => 'ltr', 'country' => 'de', 'filename' => 'german_germany'),
'el-GR' => array('language' => 'Greek', 'direction' => 'ltr', 'country' => 'gr', 'filename' => 'greek_greece'),
'he-IL' => array('language' => 'Hebrew', 'direction' => 'rtl', 'country' => 'il', 'filename' => 'hebrew_israel'),
'hi-IN' => array('language' => 'Hindi', 'direction' => 'ltr', 'country' => 'in', 'filename' => 'hindi_india'),
'hu-HU' => array('language' => 'Hungarian', 'direction' => 'ltr', 'country' => 'hu', 'filename' => 'hungarian_hungary'),
'is-IS' => array('language' => 'Icelandic', 'direction' => 'ltr', 'country' => 'is', 'filename' => 'icelandic_iceland'),
'id-ID' => array('language' => 'Indonesian', 'direction' => 'ltr', 'country' => 'id', 'filename' => 'indonesian_indonesia'),
'ga-IE' => array('language' => 'Irish', 'direction' => 'ltr', 'country' => 'ie', 'filename' => 'irish_ireland'),
'it-IT' => array('language' => 'Italian', 'direction' => 'ltr', 'country' => 'it', 'filename' => 'italian_italy'),
'ja-JP' => array('language' => 'Japanese', 'direction' => 'ltr', 'country' => 'jp', 'filename' => 'japanese_japan'),
'ko-KR' => array('language' => 'Korean', 'direction' => 'ltr', 'country' => 'kr', 'filename' => 'korean_korea'),
'lv-LV' => array('language' => 'Latvian', 'direction' => 'ltr', 'country' => 'lv', 'filename' => 'latvian_latvia'),
'lt-LT' => array('language' => 'Lithuanian', 'direction' => 'ltr', 'country' => 'lt', 'filename' => 'lithuanian_lithuania'),
'mk-MK' => array('language' => 'Macedonian', 'direction' => 'ltr', 'country' => 'mk', 'filename' => 'macedonian_macedonia'),
'ms-MY' => array('language' => 'Malay', 'direction' => 'ltr', 'country' => 'my', 'filename' => 'malay_malaysia'),
'mt-LT' => array('language' => 'Maltese', 'direction' => 'ltr', 'country' => 'lt', 'filename' => 'maltese_malta'),
'no-NO' => array('language' => 'Norwegian', 'direction' => 'ltr', 'country' => 'no', 'filename' => 'norwegian_norway'),
'pl-PL' => array('language' => 'Polish', 'direction' => 'ltr', 'country' => 'pl', 'filename' => 'polish_poland'),
'pt-PT' => array('language' => 'Portuguese', 'direction' => 'ltr', 'country' => 'pt', 'filename' => 'portuguese_portugal'),
'pt-BR' => array('language' => 'Portuguese (Brazil)', 'direction' => 'ltr', 'country' => 'br', 'filename' => 'portuguese_brazil'),
'ro-RO' => array('language' => 'Romanian', 'direction' => 'ltr', 'country' => 'ro', 'filename' => 'romanian_romania'),
'ru-RU' => array('language' => 'Russian', 'direction' => 'ltr', 'country' => 'ru', 'filename' => 'russian_russia'),
'sr-RS' => array('language' => 'Serbian', 'direction' => 'ltr', 'country' => 'rs', 'filename' => 'serbian_serbia'),
'sk-SK' => array('language' => 'Slovak', 'direction' => 'ltr', 'country' => 'sk', 'filename' => 'slovak_slovakia'),
'sl-SI' => array('language' => 'Slovenian', 'direction' => 'ltr', 'country' => 'si', 'filename' => 'slovenian_slovenia'),
'es-ES' => array('language' => 'Spanish', 'direction' => 'ltr', 'country' => 'es', 'filename' => 'spanish_spain'),
'sv-SE' => array('language' => 'Swedish', 'direction' => 'ltr', 'country' => 'se', 'filename' => 'swedish_sweden'),
'th-TH' => array('language' => 'Thai', 'direction' => 'ltr', 'country' => 'th', 'filename' => 'thai_thailand'),
'tr-TR' => array('language' => 'Turkish', 'direction' => 'ltr', 'country' => 'tr', 'filename' => 'turkish_turkey'),
'uk-UA' => array('language' => 'Ukrainian', 'direction' => 'ltr', 'country' => 'ua', 'filename' => 'ukrainian_ukraine'),
'vi-VN' => array('language' => 'Vietnamese', 'direction' => 'ltr', 'country' => 'vn', 'filename' => 'vietnamese_vietnam')
);
return $lang2locale;
}
/**
* get_installed_locales - finds all installed locales
*
* @return - an associative array of all installed locales (e.g. 'en' => 'English')
*/
function get_installed_locales() {
global $config, $lang2locale;
$locations = array();
$supported_languages['en-US'] = $lang2locale['en-US']['language'];
foreach ($lang2locale as $locale => $properties) {
$locations[$properties['filename'] . '.mo'] = array(
'locale' => $locale,
'language' => $properties['language']
);
$locations[$locale . '.mo'] = array(
'locale' => $locale,
'language' => $properties['language']
);
}
/* create a list of all languages this Cacti system supports ... */
$dhandle = opendir($config['base_path'] . '/locales/LC_MESSAGES');
if (is_resource($dhandle)) {
while (false !== ($filename = readdir($dhandle))) {
if (isset($locations[$filename]['language'])) {
$supported_languages[$locations[$filename]['locale']] = $locations[$filename]['language'];
}
}
}
asort($supported_languages);
return $supported_languages;
}
/* read_user_i18n_setting - finds the current value of a i18n configuration setting
@arg $config_name - the name of the configuration setting as specified $settings_user array
in 'include/global_settings.php'
@returns - the current value of the i18n configuration option or the system default value */
function read_user_i18n_setting($config_name) {
global $config;
/* users must have cacti user auth turned on to use this, or the guest account must be active */
if (isset($_SESSION['sess_user_id'])) {
$effective_uid = $_SESSION['sess_user_id'];
} elseif ((read_config_option('auth_method') == 0)) {
if (isset($_SESSION['sess_config_array'])) {
$config_array = $_SESSION['sess_config_array'];
} elseif (isset($config['config_options_array'])) {
$config_array = $config['config_options_array'];
}
if (!isset($config_array[$config_name])) {
$effective_uid = db_fetch_cell_prepared('SELECT id
FROM user_auth
WHERE id = ?',
array(get_guest_account()));
}
if ($effective_uid == '') {
$effective_uid = 0;
}
} else {
$effective_uid = 0;
}
if (db_table_exists('settings_user')) {
$db_setting = db_fetch_row_prepared('SELECT value
FROM settings_user
WHERE name = ?
AND user_id = ?',
array($config_name, $effective_uid));
}
if (isset($db_setting['value'])) {
return $db_setting['value'];
} else {
return false;
}
}
/**
* number_format_i18n - local specific number format wrapper
*
* @return - formatted number in the correct locale
*/
function number_format_i18n($number, $decimals = null, $baseu = 1024) {
global $cacti_locale, $cacti_country;
$country = strtoupper($cacti_country);
if (function_exists('numfmt_create')) {
$fmt_key = $cacti_locale . '_'. $country;
$fmt = numfmt_create($fmt_key, NumberFormatter::DECIMAL);
if ($decimals == null) {
$decimals = 0;
}
if ($fmt !== false && $fmt !== null) {
numfmt_set_attribute($fmt, NumberFormatter::MAX_FRACTION_DIGITS, $decimals);
if ($number !== null) {
return numfmt_format($fmt, $number);
} else {
return $number;
}
}
cacti_log('DEBUG: Number format \'' . $fmt_key .'\' was unavailable, using older methods',false,'i18n',POLLER_VERBOSITY_HIGH);
}
$origlocales = explode(';', setlocale(LC_ALL, 0));
setlocale(LC_ALL, $cacti_locale);
$locale = localeconv();
if (!isset($locale['decimal_point']) || $locale['decimal_point'] == '') {
$locale['decimal_point'] = '.';
}
if (!isset($locale['thousands_sep']) || $locale['thousands_sep'] == '') {
$locale['thousands_sep'] = ',';
}
if ($number == null) {
$number = 0;
} elseif ($decimals == -1 || $decimals == null) {
$number = number_format($number, 0, $locale['decimal_point'], $locale['thousands_sep']);
} elseif ($number>=pow($baseu, 4)) {
$number = number_format($number/pow($baseu, 4), $decimals, $locale['decimal_point'], $locale['thousands_sep']) . __(' T');
} elseif ($number>=pow($baseu, 3)) {
$number = number_format($number/pow($baseu, 3), $decimals, $locale['decimal_point'], $locale['thousands_sep']) . __(' G');
} elseif ($number>=pow($baseu, 2)) {
$number = number_format($number/pow($baseu, 2), $decimals, $locale['decimal_point'], $locale['thousands_sep']) . __(' M');
} elseif ($number>=$baseu) {
$number = number_format($number/$baseu, $decimals, $locale['decimal_point'], $locale['thousands_sep']) . __(' K');
} else {
$number = number_format($number, $decimals, $locale['decimal_point'], $locale['thousands_sep']);
}
foreach ($origlocales as $locale_setting) {
if (strpos($locale_setting, '=') !== false) {
list($category, $locale) = explode('=', $locale_setting);
} else {
$category = LC_ALL;
$locale = $locale_setting;
}
switch($category) {
case 'LC_ALL':
case 'LC_COLLATE':
case 'LC_CTYPE':
case 'LC_MONETARY':
case 'LC_NUMERIC':
case 'LC_TIME':
if (defined($category)) {
setlocale(constant($category), $locale);
}
}
}
return $number;
}
function get_new_user_default_language() {
$accepted = repair_locale(read_config_option('i18n_default_language'));
if ($accepted == '') {
$accepted = repair_locale(read_default_config_option('i18n_default_language'));
}
return $accepted;
}
function i18n_debug($text, $mode = FILE_APPEND, $eol = PHP_EOL) {
global $config;
if (!empty($config['i18n_log']) && is_writeable($config['i18n_log'])) {
file_put_contents($config['i18n_log'], $text . $eol, $mode);
}
}
function i18n_text_debug($text, $mode = FILE_APPEND, $eol = PHP_EOL) {
global $config;
if (!empty($config['i18n_text_log']) && is_writeable($config['i18n_log'])) {
file_put_contents($config['i18n_text_log'], $text . $eol, $mode);
}
}