-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp_languages.php
3564 lines (3441 loc) · 253 KB
/
app_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
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
$text['button-call_routing']['en-us'] = "Call Routing";
$text['button-call_routing']['en-gb'] = "Call Routing";
$text['button-call_routing']['ar-eg'] = "توجيه المكالمات";
$text['button-call_routing']['de-at'] = "Call Routing";
$text['button-call_routing']['de-ch'] = "Anrufweiterleitung";
$text['button-call_routing']['de-de'] = "Anrufweiterleitung";
$text['button-call_routing']['el-gr'] = "Δρομολόγηση κλήσεων";
$text['button-call_routing']['en-gb'] = "Call Routing";
$text['button-call_routing']['en-us'] = "Call Routing";
$text['button-call_routing']['es-cl'] = "Call Routing";
$text['button-call_routing']['es-mx'] = "Enrutamiento de llamadas";
$text['button-call_routing']['fr-ca'] = "Routage des appels";
$text['button-call_routing']['fr-fr'] = "Call Routing";
$text['button-call_routing']['he-il'] = "ניתוב שיחות";
$text['button-call_routing']['it-it'] = "Call Routing";
$text['button-call_routing']['ja-jp'] = "通話ルーティング";
$text['button-call_routing']['ka-ge'] = "ზარის მარშრუტიზაცია";
$text['button-call_routing']['ko-kr'] = "콜 라우팅";
$text['button-call_routing']['nl-nl'] = "Oproeproutering";
$text['button-call_routing']['pl-pl'] = "Przekierowanie połączeń";
$text['button-call_routing']['pt-br'] = "Call Routing";
$text['button-call_routing']['pt-pt'] = "Call Routing";
$text['button-call_routing']['ro-ro'] = "Rutarea apelurilor";
$text['button-call_routing']['ru-ru'] = "Маршрутизация звонков";
$text['button-call_routing']['sv-se'] = "Call Routing";
$text['button-call_routing']['tr-tr'] = "Çağrı Yönlendirme";
$text['button-call_routing']['uk-ua'] = "Маршрутизація викликів";
$text['button-call_routing']['zh-cn'] = "呼叫路由";
$text['button-devices']['en-us'] = "Devices";
$text['button-devices']['en-gb'] = "Devices";
$text['button-devices']['ar-eg'] = "الأجهزة";
$text['button-devices']['de-at'] = "Devices";
$text['button-devices']['de-ch'] = "Geräte";
$text['button-devices']['de-de'] = "Geräte";
$text['button-devices']['el-gr'] = "Συσκευές";
$text['button-devices']['en-gb'] = "Devices";
$text['button-devices']['en-us'] = "Devices";
$text['button-devices']['es-cl'] = "Devices";
$text['button-devices']['es-mx'] = "Dispositivos";
$text['button-devices']['fr-ca'] = "Appareils";
$text['button-devices']['fr-fr'] = "Devices";
$text['button-devices']['he-il'] = "מכשירים";
$text['button-devices']['it-it'] = "Devices";
$text['button-devices']['ja-jp'] = "デバイス";
$text['button-devices']['ka-ge'] = "მოწყობილობები";
$text['button-devices']['ko-kr'] = "장치";
$text['button-devices']['nl-nl'] = "Apparaten";
$text['button-devices']['pl-pl'] = "Urządzenia";
$text['button-devices']['pt-br'] = "Devices";
$text['button-devices']['pt-pt'] = "Devices";
$text['button-devices']['ro-ro'] = "Dispozitive";
$text['button-devices']['ru-ru'] = "Устройства";
$text['button-devices']['sv-se'] = "Devices";
$text['button-devices']['tr-tr'] = "Cihazlar";
$text['button-devices']['uk-ua'] = "Пристрої";
$text['button-devices']['zh-cn'] = "设备";
$text['button-extensions']['en-us'] = "Extensions";
$text['button-extensions']['en-gb'] = "Extensions";
$text['button-extensions']['ar-eg'] = "الإضافات";
$text['button-extensions']['de-at'] = "Extensions";
$text['button-extensions']['de-ch'] = "Erweiterungen";
$text['button-extensions']['de-de'] = "Erweiterungen";
$text['button-extensions']['el-gr'] = "Επεκτάσεις";
$text['button-extensions']['en-gb'] = "Extensions";
$text['button-extensions']['en-us'] = "Extensions";
$text['button-extensions']['es-cl'] = "Extensions";
$text['button-extensions']['es-mx'] = "Extensiones";
$text['button-extensions']['fr-ca'] = "Extensions";
$text['button-extensions']['fr-fr'] = "Extensions";
$text['button-extensions']['he-il'] = "הרחבות";
$text['button-extensions']['it-it'] = "Extensions";
$text['button-extensions']['ja-jp'] = "拡張機能";
$text['button-extensions']['ka-ge'] = "გაფართოებები";
$text['button-extensions']['ko-kr'] = "확장";
$text['button-extensions']['nl-nl'] = "Uitbreidingen";
$text['button-extensions']['pl-pl'] = "Rozszerzenia";
$text['button-extensions']['pt-br'] = "Extensions";
$text['button-extensions']['pt-pt'] = "Extensions";
$text['button-extensions']['ro-ro'] = "Extensii";
$text['button-extensions']['ru-ru'] = "Extensions";
$text['button-extensions']['sv-se'] = "Extensions";
$text['button-extensions']['tr-tr'] = "Uzantılar";
$text['button-extensions']['uk-ua'] = "Розширення";
$text['button-extensions']['zh-cn'] = "扩展";
$text['button-submit']['en-us'] = "Submit";
$text['button-submit']['en-gb'] = "Submit";
$text['button-submit']['ar-eg'] = "يُقدِّم";
$text['button-submit']['de-at'] = "Submit";
$text['button-submit']['de-ch'] = "Einreichen";
$text['button-submit']['de-de'] = "Einreichen";
$text['button-submit']['el-gr'] = "Υποτάσσομαι";
$text['button-submit']['en-gb'] = "Submit";
$text['button-submit']['en-us'] = "Submit";
$text['button-submit']['es-cl'] = "Submit";
$text['button-submit']['es-mx'] = "Entregar";
$text['button-submit']['fr-ca'] = "Soumettre";
$text['button-submit']['fr-fr'] = "Submit";
$text['button-submit']['he-il'] = "לְהַגִישׁ";
$text['button-submit']['it-it'] = "Submit";
$text['button-submit']['ja-jp'] = "提出する";
$text['button-submit']['ka-ge'] = "გაგზავნა";
$text['button-submit']['ko-kr'] = "제출하다";
$text['button-submit']['nl-nl'] = "Indienen";
$text['button-submit']['pl-pl'] = "Składać";
$text['button-submit']['pt-br'] = "Submit";
$text['button-submit']['pt-pt'] = "Submit";
$text['button-submit']['ro-ro'] = "Trimiteți";
$text['button-submit']['ru-ru'] = "Отправить";
$text['button-submit']['sv-se'] = "Submit";
$text['button-submit']['tr-tr'] = "Göndermek";
$text['button-submit']['uk-ua'] = "Надіслати";
$text['button-submit']['zh-cn'] = "提交";
$text['button-users']['en-us'] = "Users";
$text['button-users']['en-gb'] = "Users";
$text['button-users']['ar-eg'] = "المستخدمون";
$text['button-users']['de-at'] = "Users";
$text['button-users']['de-ch'] = "Benutzer";
$text['button-users']['de-de'] = "Benutzer";
$text['button-users']['el-gr'] = "Χρήστες";
$text['button-users']['en-gb'] = "Users";
$text['button-users']['en-us'] = "Users";
$text['button-users']['es-cl'] = "Users";
$text['button-users']['es-mx'] = "Usuarios";
$text['button-users']['fr-ca'] = "Utilisateurs";
$text['button-users']['fr-fr'] = "Users";
$text['button-users']['he-il'] = "משתמשים";
$text['button-users']['it-it'] = "Users";
$text['button-users']['ja-jp'] = "ユーザー";
$text['button-users']['ka-ge'] = "მომხმარებლები";
$text['button-users']['ko-kr'] = "사용자";
$text['button-users']['nl-nl'] = "Gebruikers";
$text['button-users']['pl-pl'] = "Użytkownicy";
$text['button-users']['pt-br'] = "Users";
$text['button-users']['pt-pt'] = "Users";
$text['button-users']['ro-ro'] = "Utilizatori";
$text['button-users']['ru-ru'] = "Пользователи";
$text['button-users']['sv-se'] = "Users";
$text['button-users']['tr-tr'] = "Kullanıcılar";
$text['button-users']['uk-ua'] = "Користувачі";
$text['button-users']['zh-cn'] = "用户";
$text['button-voicemails']['en-us'] = "Voicemails";
$text['button-voicemails']['en-gb'] = "Voicemails";
$text['button-voicemails']['ar-eg'] = "البريد الصوتي";
$text['button-voicemails']['de-at'] = "Voicemails";
$text['button-voicemails']['de-ch'] = "Sprachnachrichten";
$text['button-voicemails']['de-de'] = "Sprachnachrichten";
$text['button-voicemails']['el-gr'] = "φωνητικά μηνύματα";
$text['button-voicemails']['en-gb'] = "Voicemails";
$text['button-voicemails']['en-us'] = "Voicemails";
$text['button-voicemails']['es-cl'] = "Voicemails";
$text['button-voicemails']['es-mx'] = "Mensajes de voz";
$text['button-voicemails']['fr-ca'] = "Messages vocaux";
$text['button-voicemails']['fr-fr'] = "Voicemails";
$text['button-voicemails']['he-il'] = "הודעות קוליות";
$text['button-voicemails']['it-it'] = "Voicemails";
$text['button-voicemails']['ja-jp'] = "ボイスメール";
$text['button-voicemails']['ka-ge'] = "ხმოვანი ფოსტა";
$text['button-voicemails']['ko-kr'] = "음성 메일";
$text['button-voicemails']['nl-nl'] = "Voicemailberichten";
$text['button-voicemails']['pl-pl'] = "Poczta głosowa";
$text['button-voicemails']['pt-br'] = "Voicemails";
$text['button-voicemails']['pt-pt'] = "Voicemails";
$text['button-voicemails']['ro-ro'] = "Mesaje vocale";
$text['button-voicemails']['ru-ru'] = "Голосовые сообщения";
$text['button-voicemails']['sv-se'] = "Voicemails";
$text['button-voicemails']['tr-tr'] = "Sesli mesajlar";
$text['button-voicemails']['uk-ua'] = "Голосові повідомлення";
$text['button-voicemails']['zh-cn'] = "语音邮件";
$text['confirm-update']['en-us'] = "Please confirm the following updates";
$text['confirm-update']['en-gb'] = "Please confirm the following updates";
$text['confirm-update']['ar-eg'] = "يرجى تأكيد التحديثات التالية";
$text['confirm-update']['de-at'] = "Please confirm the following updates";
$text['confirm-update']['de-ch'] = "Bitte bestätigen Sie die folgenden Updates";
$text['confirm-update']['de-de'] = "Bitte bestätigen Sie die folgenden Updates";
$text['confirm-update']['el-gr'] = "Επιβεβαιώστε τις ακόλουθες ενημερώσεις";
$text['confirm-update']['en-gb'] = "Please confirm the following updates";
$text['confirm-update']['en-us'] = "Please confirm the following updates";
$text['confirm-update']['es-cl'] = "Please confirm the following updates";
$text['confirm-update']['es-mx'] = "Por favor, confirme las siguientes actualizaciones";
$text['confirm-update']['fr-ca'] = "Veuillez confirmer les mises à jour suivantes";
$text['confirm-update']['fr-fr'] = "Please confirm the following updates";
$text['confirm-update']['he-il'] = "נא לאשר את העדכונים הבאים";
$text['confirm-update']['it-it'] = "Please confirm the following updates";
$text['confirm-update']['ja-jp'] = "以下の更新を確認してください";
$text['confirm-update']['ka-ge'] = "გთხოვთ, დაადასტუროთ შემდეგი განახლებები";
$text['confirm-update']['ko-kr'] = "다음 업데이트를 확인해 주세요.";
$text['confirm-update']['nl-nl'] = "Bevestig de volgende updates";
$text['confirm-update']['pl-pl'] = "Proszę potwierdzić następujące aktualizacje";
$text['confirm-update']['pt-br'] = "Please confirm the following updates";
$text['confirm-update']['pt-pt'] = "Please confirm the following updates";
$text['confirm-update']['ro-ro'] = "Vă rugăm să confirmați următoarele actualizări";
$text['confirm-update']['ru-ru'] = "Пожалуйста, подтвердите следующие обновления";
$text['confirm-update']['sv-se'] = "Please confirm the following updates";
$text['confirm-update']['tr-tr'] = "Lütfen aşağıdaki güncellemeleri onaylayın";
$text['confirm-update']['uk-ua'] = "Підтвердьте наступні оновлення";
$text['confirm-update']['zh-cn'] = "请确认以下更新";
$text['description-accountcode']['en-us'] = "Enter the new accountcode for the selected extensions.";
$text['description-accountcode']['en-gb'] = "Enter the new accountcode for the selected extensions.";
$text['description-accountcode']['ar-eg'] = "أدخل رمز الحساب الجديد للملحقات المحددة.";
$text['description-accountcode']['de-at'] = "Enter the new accountcode for the selected extensions.";
$text['description-accountcode']['de-ch'] = "Geben Sie den neuen Kontocode für die ausgewählten Nebenstellen ein.";
$text['description-accountcode']['de-de'] = "Geben Sie den neuen Kontocode für die ausgewählten Nebenstellen ein.";
$text['description-accountcode']['el-gr'] = "Εισαγάγετε τον νέο κωδικό λογαριασμού για τις επιλεγμένες επεκτάσεις.";
$text['description-accountcode']['en-gb'] = "Enter the new accountcode for the selected extensions.";
$text['description-accountcode']['en-us'] = "Enter the new accountcode for the selected extensions.";
$text['description-accountcode']['es-cl'] = "Enter the new accountcode for the selected extensions.";
$text['description-accountcode']['es-mx'] = "Introduzca el nuevo código de cuenta para las extensiones seleccionadas.";
$text['description-accountcode']['fr-ca'] = "Saisissez le nouveau code de compte pour les extensions sélectionnées.";
$text['description-accountcode']['fr-fr'] = "Enter the new accountcode for the selected extensions.";
$text['description-accountcode']['he-il'] = "הזן את קוד החשבון החדש עבור התוספים שנבחרו.";
$text['description-accountcode']['it-it'] = "Enter the new accountcode for the selected extensions.";
$text['description-accountcode']['ja-jp'] = "選択した拡張機能の新しいアカウントコードを入力します。";
$text['description-accountcode']['ka-ge'] = "შეიყვანეთ ახალი ანგარიშის კოდი არჩეული გაფართოებებისთვის.";
$text['description-accountcode']['ko-kr'] = "선택한 확장 프로그램에 대한 새로운 계정 코드를 입력하세요.";
$text['description-accountcode']['nl-nl'] = "Voer de nieuwe accountcode in voor de geselecteerde extensies.";
$text['description-accountcode']['pl-pl'] = "Wprowadź nowy kod konta dla wybranych rozszerzeń.";
$text['description-accountcode']['pt-br'] = "Enter the new accountcode for the selected extensions.";
$text['description-accountcode']['pt-pt'] = "Enter the new accountcode for the selected extensions.";
$text['description-accountcode']['ro-ro'] = "Introduceți noul cod de cont pentru extensiile selectate.";
$text['description-accountcode']['ru-ru'] = "Введите новый accountcode для выбранных extensions.";
$text['description-accountcode']['sv-se'] = "Enter the new accountcode for the selected extensions.";
$text['description-accountcode']['tr-tr'] = "Seçili uzantılar için yeni hesap kodunu girin.";
$text['description-accountcode']['uk-ua'] = "Введіть новий код облікового запису для вибраних розширень.";
$text['description-accountcode']['zh-cn'] = "为选定的分机输入新的帐户代码。";
$text['description-call_group']['en-us'] = "Enter the new call group for the selected extensions.";
$text['description-call_group']['en-gb'] = "Enter the new call group for the selected extensions.";
$text['description-call_group']['ar-eg'] = "أدخل مجموعة الاتصال الجديدة للملحقات المحددة.";
$text['description-call_group']['de-at'] = "Enter the new call group for the selected extensions.";
$text['description-call_group']['de-ch'] = "Geben Sie die neue Rufgruppe für die ausgewählten Nebenstellen ein.";
$text['description-call_group']['de-de'] = "Geben Sie die neue Rufgruppe für die ausgewählten Nebenstellen ein.";
$text['description-call_group']['el-gr'] = "Εισαγάγετε τη νέα ομάδα κλήσεων για τις επιλεγμένες επεκτάσεις.";
$text['description-call_group']['en-gb'] = "Enter the new call group for the selected extensions.";
$text['description-call_group']['en-us'] = "Enter the new call group for the selected extensions.";
$text['description-call_group']['es-cl'] = "Enter the new call group for the selected extensions.";
$text['description-call_group']['es-mx'] = "Ingrese el nuevo grupo de llamadas para las extensiones seleccionadas.";
$text['description-call_group']['fr-ca'] = "Entrez le nouveau groupe d’appel pour les extensions sélectionnées.";
$text['description-call_group']['fr-fr'] = "Enter the new call group for the selected extensions.";
$text['description-call_group']['he-il'] = "היכנס לקבוצת השיחות החדשה עבור התוספים שנבחרו.";
$text['description-call_group']['it-it'] = "Enter the new call group for the selected extensions.";
$text['description-call_group']['ja-jp'] = "選択した内線番号の新しい通話グループを入力します。";
$text['description-call_group']['ka-ge'] = "შეიყვანეთ ახალი ზარის ჯგუფი არჩეული გაფართოებებისთვის.";
$text['description-call_group']['ko-kr'] = "선택한 내선번호에 대한 새 통화 그룹을 입력하세요.";
$text['description-call_group']['nl-nl'] = "Voer de nieuwe oproepgroep in voor de geselecteerde toestellen.";
$text['description-call_group']['pl-pl'] = "Wprowadź nową grupę połączeń dla wybranych numerów wewnętrznych.";
$text['description-call_group']['pt-br'] = "Enter the new call group for the selected extensions.";
$text['description-call_group']['pt-pt'] = "Enter the new call group for the selected extensions.";
$text['description-call_group']['ro-ro'] = "Introduceți noul grup de apeluri pentru extensiile selectate.";
$text['description-call_group']['ru-ru'] = "Введите новую группу вызова для выбранных extensions.";
$text['description-call_group']['sv-se'] = "Enter the new call group for the selected extensions.";
$text['description-call_group']['tr-tr'] = "Seçili dahili numaralar için yeni çağrı grubunu girin.";
$text['description-call_group']['uk-ua'] = "Введіть нову групу викликів для вибраних внутрішніх номерів.";
$text['description-call_group']['zh-cn'] = "为选定的分机输入新的呼叫组。";
$text['description-call_timeout']['en-us'] = "Enter the new call timeout for the selected extensions.";
$text['description-call_timeout']['en-gb'] = "Enter the new call timeout for the selected extensions.";
$text['description-call_timeout']['ar-eg'] = "أدخل مهلة المكالمة الجديدة للملحقات المحددة.";
$text['description-call_timeout']['de-at'] = "Enter the new call timeout for the selected extensions.";
$text['description-call_timeout']['de-ch'] = "Geben Sie das neue Anruf-Timeout für die ausgewählten Nebenstellen ein.";
$text['description-call_timeout']['de-de'] = "Geben Sie das neue Anruf-Timeout für die ausgewählten Nebenstellen ein.";
$text['description-call_timeout']['el-gr'] = "Εισαγάγετε το νέο χρονικό όριο κλήσης για τις επιλεγμένες επεκτάσεις.";
$text['description-call_timeout']['en-gb'] = "Enter the new call timeout for the selected extensions.";
$text['description-call_timeout']['en-us'] = "Enter the new call timeout for the selected extensions.";
$text['description-call_timeout']['es-cl'] = "Enter the new call timeout for the selected extensions.";
$text['description-call_timeout']['es-mx'] = "Introduzca el nuevo tiempo de espera de llamada para las extensiones seleccionadas.";
$text['description-call_timeout']['fr-ca'] = "Saisissez le nouveau délai d’expiration d’appel pour les extensions sélectionnées.";
$text['description-call_timeout']['fr-fr'] = "Enter the new call timeout for the selected extensions.";
$text['description-call_timeout']['he-il'] = "הזן את פסק זמן השיחה החדש עבור התוספים שנבחרו.";
$text['description-call_timeout']['it-it'] = "Enter the new call timeout for the selected extensions.";
$text['description-call_timeout']['ja-jp'] = "選択した内線番号の新しい通話タイムアウトを入力します。";
$text['description-call_timeout']['ka-ge'] = "შეიყვანეთ ახალი ზარის ვადა არჩეული გაფართოებებისთვის.";
$text['description-call_timeout']['ko-kr'] = "선택한 내선번호에 대한 새로운 통화 시간 초과를 입력하세요.";
$text['description-call_timeout']['nl-nl'] = "Voer de nieuwe gesprekstime-out in voor de geselecteerde toestellen.";
$text['description-call_timeout']['pl-pl'] = "Wprowadź nowy limit czasu połączenia dla wybranych numerów wewnętrznych.";
$text['description-call_timeout']['pt-br'] = "Enter the new call timeout for the selected extensions.";
$text['description-call_timeout']['pt-pt'] = "Enter the new call timeout for the selected extensions.";
$text['description-call_timeout']['ro-ro'] = "Introduceți noua perioadă de expirare a apelurilor pentru extensiile selectate.";
$text['description-call_timeout']['ru-ru'] = "Задайте новый таймаут вызова для выбранных extensions.";
$text['description-call_timeout']['sv-se'] = "Enter the new call timeout for the selected extensions.";
$text['description-call_timeout']['tr-tr'] = "Seçili dahili numaralar için yeni çağrı zaman aşımını girin.";
$text['description-call_timeout']['uk-ua'] = "Введіть новий час очікування виклику для вибраних внутрішніх номерів.";
$text['description-call_timeout']['zh-cn'] = "为选定分机输入新的呼叫超时时间。";
$text['description-device_enabled']['en-us'] = "Select the new enabled status for the selected devices.";
$text['description-device_enabled']['en-gb'] = "Select the new enabled status for the selected devices.";
$text['description-device_enabled']['ar-eg'] = "حدد الحالة الممكّنة الجديدة للأجهزة المحددة.";
$text['description-device_enabled']['de-at'] = "Select the new enabled status for the selected devices.";
$text['description-device_enabled']['de-ch'] = "Wählen Sie den neuen Aktivierungsstatus für die ausgewählten Geräte aus.";
$text['description-device_enabled']['de-de'] = "Wählen Sie den neuen Aktivierungsstatus für die ausgewählten Geräte aus.";
$text['description-device_enabled']['el-gr'] = "Επιλέξτε τη νέα κατάσταση ενεργοποίησης για τις επιλεγμένες συσκευές.";
$text['description-device_enabled']['en-gb'] = "Select the new enabled status for the selected devices.";
$text['description-device_enabled']['en-us'] = "Select the new enabled status for the selected devices.";
$text['description-device_enabled']['es-cl'] = "Select the new enabled status for the selected devices.";
$text['description-device_enabled']['es-mx'] = "Seleccione el nuevo estado habilitado para los dispositivos seleccionados.";
$text['description-device_enabled']['fr-ca'] = "Sélectionnez le nouveau statut activé pour les appareils sélectionnés.";
$text['description-device_enabled']['fr-fr'] = "Select the new enabled status for the selected devices.";
$text['description-device_enabled']['he-il'] = "בחר את הסטטוס המופעל החדש עבור המכשירים שנבחרו.";
$text['description-device_enabled']['it-it'] = "Select the new enabled status for the selected devices.";
$text['description-device_enabled']['ja-jp'] = "選択したデバイスの新しい有効ステータスを選択します。";
$text['description-device_enabled']['ka-ge'] = "აირჩიეთ ახალი ჩართული სტატუსი არჩეული მოწყობილობებისთვის.";
$text['description-device_enabled']['ko-kr'] = "선택한 장치에 대한 새로운 활성화 상태를 선택합니다.";
$text['description-device_enabled']['nl-nl'] = "Selecteer de nieuwe ingeschakelde status voor de geselecteerde apparaten.";
$text['description-device_enabled']['pl-pl'] = "Wybierz nowy status włączenia dla wybranych urządzeń.";
$text['description-device_enabled']['pt-br'] = "Select the new enabled status for the selected devices.";
$text['description-device_enabled']['pt-pt'] = "Select the new enabled status for the selected devices.";
$text['description-device_enabled']['ro-ro'] = "Selectați noua stare activată pentru dispozitivele selectate.";
$text['description-device_enabled']['ru-ru'] = "Выберите новый статус для выбранных devices.";
$text['description-device_enabled']['sv-se'] = "Select the new enabled status for the selected devices.";
$text['description-device_enabled']['tr-tr'] = "Seçili cihazlar için yeni etkin durumunu seçin.";
$text['description-device_enabled']['uk-ua'] = "Виберіть новий увімкнений статус для вибраних пристроїв.";
$text['description-device_enabled']['zh-cn'] = "为选定的设备选择新的启用状态。";
$text['description-device_profile']['en-us'] = "Select the new device profile for the selected devices.";
$text['description-device_profile']['en-gb'] = "Select the new device profile for the selected devices.";
$text['description-device_profile']['ar-eg'] = "حدد ملف تعريف الجهاز الجديد للأجهزة المحددة.";
$text['description-device_profile']['de-at'] = "Select the new device profile for the selected devices.";
$text['description-device_profile']['de-ch'] = "Wählen Sie das neue Geräteprofil für die ausgewählten Geräte aus.";
$text['description-device_profile']['de-de'] = "Wählen Sie das neue Geräteprofil für die ausgewählten Geräte aus.";
$text['description-device_profile']['el-gr'] = "Επιλέξτε το νέο προφίλ συσκευής για τις επιλεγμένες συσκευές.";
$text['description-device_profile']['en-gb'] = "Select the new device profile for the selected devices.";
$text['description-device_profile']['en-us'] = "Select the new device profile for the selected devices.";
$text['description-device_profile']['es-cl'] = "Select the new device profile for the selected devices.";
$text['description-device_profile']['es-mx'] = "Seleccione el nuevo perfil de dispositivo para los dispositivos seleccionados.";
$text['description-device_profile']['fr-ca'] = "Sélectionnez le nouveau profil d’appareil pour les appareils sélectionnés.";
$text['description-device_profile']['fr-fr'] = "Select the new device profile for the selected devices.";
$text['description-device_profile']['he-il'] = "בחר את פרופיל המכשיר החדש עבור המכשירים שנבחרו.";
$text['description-device_profile']['it-it'] = "Select the new device profile for the selected devices.";
$text['description-device_profile']['ja-jp'] = "選択したデバイスの新しいデバイス プロファイルを選択します。";
$text['description-device_profile']['ka-ge'] = "აირჩიეთ ახალი მოწყობილობის პროფილი არჩეული მოწყობილობებისთვის.";
$text['description-device_profile']['ko-kr'] = "선택한 장치에 대한 새 장치 프로필을 선택합니다.";
$text['description-device_profile']['nl-nl'] = "Selecteer het nieuwe apparaatprofiel voor de geselecteerde apparaten.";
$text['description-device_profile']['pl-pl'] = "Wybierz nowy profil urządzenia dla wybranych urządzeń.";
$text['description-device_profile']['pt-br'] = "Select the new device profile for the selected devices.";
$text['description-device_profile']['pt-pt'] = "Select the new device profile for the selected devices.";
$text['description-device_profile']['ro-ro'] = "Selectați noul profil de dispozitiv pentru dispozitivele selectate.";
$text['description-device_profile']['ru-ru'] = "Выберите новый профиль для выбранных устройств.";
$text['description-device_profile']['sv-se'] = "Select the new device profile for the selected devices.";
$text['description-device_profile']['tr-tr'] = "Seçili cihazlar için yeni cihaz profilini seçin.";
$text['description-device_profile']['uk-ua'] = "Виберіть новий профіль пристрою для вибраних пристроїв.";
$text['description-device_profile']['zh-cn'] = "为选定的设备选择新的设备配置文件。";
$text['description-device_profile_uuid']['en-us'] = "Select the new device profile for the selected devices.";
$text['description-device_profile_uuid']['en-gb'] = "Select the new device profile for the selected devices.";
$text['description-device_profile_uuid']['ar-eg'] = "حدد ملف تعريف الجهاز الجديد للأجهزة المحددة.";
$text['description-device_profile_uuid']['de-at'] = "Select the new device profile for the selected devices.";
$text['description-device_profile_uuid']['de-ch'] = "Wählen Sie das neue Geräteprofil für die ausgewählten Geräte aus.";
$text['description-device_profile_uuid']['de-de'] = "Wählen Sie das neue Geräteprofil für die ausgewählten Geräte aus.";
$text['description-device_profile_uuid']['el-gr'] = "Επιλέξτε το νέο προφίλ συσκευής για τις επιλεγμένες συσκευές.";
$text['description-device_profile_uuid']['en-gb'] = "Select the new device profile for the selected devices.";
$text['description-device_profile_uuid']['en-us'] = "Select the new device profile for the selected devices.";
$text['description-device_profile_uuid']['es-cl'] = "Select the new device profile for the selected devices.";
$text['description-device_profile_uuid']['es-mx'] = "Seleccione el nuevo perfil de dispositivo para los dispositivos seleccionados.";
$text['description-device_profile_uuid']['fr-ca'] = "Sélectionnez le nouveau profil d’appareil pour les appareils sélectionnés.";
$text['description-device_profile_uuid']['fr-fr'] = "Select the new device profile for the selected devices.";
$text['description-device_profile_uuid']['he-il'] = "בחר את פרופיל המכשיר החדש עבור המכשירים שנבחרו.";
$text['description-device_profile_uuid']['it-it'] = "Select the new device profile for the selected devices.";
$text['description-device_profile_uuid']['ja-jp'] = "選択したデバイスの新しいデバイス プロファイルを選択します。";
$text['description-device_profile_uuid']['ka-ge'] = "აირჩიეთ ახალი მოწყობილობის პროფილი არჩეული მოწყობილობებისთვის.";
$text['description-device_profile_uuid']['ko-kr'] = "선택한 장치에 대한 새 장치 프로필을 선택합니다.";
$text['description-device_profile_uuid']['nl-nl'] = "Selecteer het nieuwe apparaatprofiel voor de geselecteerde apparaten.";
$text['description-device_profile_uuid']['pl-pl'] = "Wybierz nowy profil urządzenia dla wybranych urządzeń.";
$text['description-device_profile_uuid']['pt-br'] = "Select the new device profile for the selected devices.";
$text['description-device_profile_uuid']['pt-pt'] = "Select the new device profile for the selected devices.";
$text['description-device_profile_uuid']['ro-ro'] = "Selectați noul profil de dispozitiv pentru dispozitivele selectate.";
$text['description-device_profile_uuid']['ru-ru'] = "Выберите новый профиль для выбранных устройств.";
$text['description-device_profile_uuid']['sv-se'] = "Select the new device profile for the selected devices.";
$text['description-device_profile_uuid']['tr-tr'] = "Seçili cihazlar için yeni cihaz profilini seçin.";
$text['description-device_profile_uuid']['uk-ua'] = "Виберіть новий профіль пристрою для вибраних пристроїв.";
$text['description-device_profile_uuid']['zh-cn'] = "为选定的设备选择新的设备配置文件。";
$text['description-device_template']['en-us'] = "Select the new device template for the selected devices.";
$text['description-device_template']['en-gb'] = "Select the new device template for the selected devices.";
$text['description-device_template']['ar-eg'] = "حدد قالب الجهاز الجديد للأجهزة المحددة.";
$text['description-device_template']['de-at'] = "Select the new device template for the selected devices.";
$text['description-device_template']['de-ch'] = "Wählen Sie die neue Gerätevorlage für die ausgewählten Geräte aus.";
$text['description-device_template']['de-de'] = "Wählen Sie die neue Gerätevorlage für die ausgewählten Geräte aus.";
$text['description-device_template']['el-gr'] = "Επιλέξτε το νέο πρότυπο συσκευής για τις επιλεγμένες συσκευές.";
$text['description-device_template']['en-gb'] = "Select the new device template for the selected devices.";
$text['description-device_template']['en-us'] = "Select the new device template for the selected devices.";
$text['description-device_template']['es-cl'] = "Select the new device template for the selected devices.";
$text['description-device_template']['es-mx'] = "Seleccione la nueva plantilla de dispositivo para los dispositivos seleccionados.";
$text['description-device_template']['fr-ca'] = "Sélectionnez le nouveau modèle d’appareil pour les appareils sélectionnés.";
$text['description-device_template']['fr-fr'] = "Select the new device template for the selected devices.";
$text['description-device_template']['he-il'] = "בחר את תבנית המכשיר החדשה עבור המכשירים שנבחרו.";
$text['description-device_template']['it-it'] = "Select the new device template for the selected devices.";
$text['description-device_template']['ja-jp'] = "選択したデバイスの新しいデバイス テンプレートを選択します。";
$text['description-device_template']['ka-ge'] = "აირჩიეთ ახალი მოწყობილობის შაბლონი არჩეული მოწყობილობებისთვის.";
$text['description-device_template']['ko-kr'] = "선택한 장치에 대한 새 장치 템플릿을 선택합니다.";
$text['description-device_template']['nl-nl'] = "Selecteer de nieuwe apparaatsjabloon voor de geselecteerde apparaten.";
$text['description-device_template']['pl-pl'] = "Wybierz nowy szablon urządzenia dla wybranych urządzeń.";
$text['description-device_template']['pt-br'] = "Select the new device template for the selected devices.";
$text['description-device_template']['pt-pt'] = "Select the new device template for the selected devices.";
$text['description-device_template']['ro-ro'] = "Selectați noul șablon de dispozitiv pentru dispozitivele selectate.";
$text['description-device_template']['ru-ru'] = "Выберите новый шаблон для выбрарнных устройств.";
$text['description-device_template']['sv-se'] = "Select the new device template for the selected devices.";
$text['description-device_template']['tr-tr'] = "Seçili cihazlar için yeni cihaz şablonunu seçin.";
$text['description-device_template']['uk-ua'] = "Виберіть новий шаблон пристрою для вибраних пристроїв.";
$text['description-device_template']['zh-cn'] = "为选定的设备选择新的设备模板。";
$text['description-devices_settings']['en-us'] = "Choose the setting to modify.";
$text['description-devices_settings']['en-gb'] = "Choose the setting to modify.";
$text['description-devices_settings']['ar-eg'] = "اختر الإعداد الذي تريد تعديله.";
$text['description-devices_settings']['de-at'] = "Choose the setting to modify.";
$text['description-devices_settings']['de-ch'] = "Wählen Sie die zu ändernde Einstellung aus.";
$text['description-devices_settings']['de-de'] = "Wählen Sie die zu ändernde Einstellung aus.";
$text['description-devices_settings']['el-gr'] = "Επιλέξτε τη ρύθμιση που θέλετε να τροποποιήσετε.";
$text['description-devices_settings']['en-gb'] = "Choose the setting to modify.";
$text['description-devices_settings']['en-us'] = "Choose the setting to modify.";
$text['description-devices_settings']['es-cl'] = "Choose the setting to modify.";
$text['description-devices_settings']['es-mx'] = "Seleccione la configuración que desea modificar.";
$text['description-devices_settings']['fr-ca'] = "Choisissez le paramètre à modifier.";
$text['description-devices_settings']['fr-fr'] = "Choose the setting to modify.";
$text['description-devices_settings']['he-il'] = "בחר את ההגדרה לשינוי.";
$text['description-devices_settings']['it-it'] = "Choose the setting to modify.";
$text['description-devices_settings']['ja-jp'] = "変更する設定を選択します。";
$text['description-devices_settings']['ka-ge'] = "აირჩიეთ პარამეტრი შესაცვლელად.";
$text['description-devices_settings']['ko-kr'] = "수정할 설정을 선택하세요.";
$text['description-devices_settings']['nl-nl'] = "Kies de instelling die u wilt wijzigen.";
$text['description-devices_settings']['pl-pl'] = "Wybierz ustawienie, które chcesz zmodyfikować.";
$text['description-devices_settings']['pt-br'] = "Choose the setting to modify.";
$text['description-devices_settings']['pt-pt'] = "Choose the setting to modify.";
$text['description-devices_settings']['ro-ro'] = "Alegeți setarea de modificat.";
$text['description-devices_settings']['ru-ru'] = "Выберите настройку для изменения.";
$text['description-devices_settings']['sv-se'] = "Choose the setting to modify.";
$text['description-devices_settings']['tr-tr'] = "Değiştirilecek ayarı seçin.";
$text['description-devices_settings']['uk-ua'] = "Виберіть параметр, який потрібно змінити.";
$text['description-devices_settings']['zh-cn'] = "选择要修改的设置。";
$text['description-directory_visible']['en-us'] = "Select whether to hide the name from the directory.";
$text['description-directory_visible']['en-gb'] = "Select whether to hide the name from the directory.";
$text['description-directory_visible']['ar-eg'] = "حدد ما إذا كنت تريد إخفاء الاسم من الدليل.";
$text['description-directory_visible']['de-at'] = "";
$text['description-directory_visible']['de-ch'] = "Wählen Sie aus, ob der Name im Verzeichnis ausgeblendet werden soll.";
$text['description-directory_visible']['de-de'] = "Wählen Sie aus, ob der Name im Verzeichnis ausgeblendet werden soll.";
$text['description-directory_visible']['el-gr'] = "Επιλέξτε εάν θα αποκρύψετε το όνομα από τον κατάλογο.";
$text['description-directory_visible']['en-br'] = "";
$text['description-directory_visible']['en-fr'] = "";
$text['description-directory_visible']['en-gb'] = "Select whether to hide the name from the directory.";
$text['description-directory_visible']['en-us'] = "Select whether to hide the name from the directory.";
$text['description-directory_visible']['es-cl'] = "";
$text['description-directory_visible']['es-mx'] = "Seleccione si desea ocultar el nombre del directorio.";
$text['description-directory_visible']['fr-ca'] = "Sélectionnez si vous souhaitez masquer le nom du répertoire.";
$text['description-directory_visible']['fr-fr'] = "Sélectionnez si vous souhaitez masquer le nom du répertoire.";
$text['description-directory_visible']['he-il'] = "בחר אם להסתיר את השם מהספרייה.";
$text['description-directory_visible']['it-it'] = "";
$text['description-directory_visible']['ja-jp'] = "ディレクトリから名前を非表示にするかどうかを選択します。";
$text['description-directory_visible']['ka-ge'] = "აირჩიეთ, დაიმალოს თუ არა სახელი დირექტორიადან.";
$text['description-directory_visible']['ko-kr'] = "디렉토리에서 이름을 숨길지 여부를 선택합니다.";
$text['description-directory_visible']['nl-nl'] = "Selecteer of u de naam in de directory wilt verbergen.";
$text['description-directory_visible']['pl-pl'] = "Wybierz, czy chcesz ukryć nazwę w katalogu.";
$text['description-directory_visible']['pt-br'] = "Selecione se deseja ocultar o nome do diretório.";
$text['description-directory_visible']['pt-pt'] = "";
$text['description-directory_visible']['ro-ro'] = "Selectați dacă doriți să ascundeți numele din director.";
$text['description-directory_visible']['ru-ru'] = "";
$text['description-directory_visible']['sv-se'] = "";
$text['description-directory_visible']['tr-tr'] = "İsmin dizinden gizlenip gizlenmeyeceğini seçin.";
$text['description-directory_visible']['uk-ua'] = "Виберіть, чи приховувати ім’я в каталозі.";
$text['description-directory_visible']['zh-cn'] = "选择是否隐藏目录中的姓名。";
$text['description-emergency_caller_id_name']['en-us'] = "Enter the new emergency caller id name for the selected extensions.";
$text['description-emergency_caller_id_name']['en-gb'] = "Enter the new emergency caller id name for the selected extensions.";
$text['description-emergency_caller_id_name']['ar-eg'] = "أدخل اسم معرف المتصل في حالات الطوارئ الجديد للملحقات المحددة.";
$text['description-emergency_caller_id_name']['de-at'] = "Enter the new emergency caller id name for the selected extensions.";
$text['description-emergency_caller_id_name']['de-ch'] = "Geben Sie den neuen Notruf-ID-Namen für die ausgewählten Nebenstellen ein.";
$text['description-emergency_caller_id_name']['de-de'] = "Geben Sie den neuen Notrufnummern-Namen für die ausgewählten Nebenstellen ein.";
$text['description-emergency_caller_id_name']['el-gr'] = "Εισαγάγετε το νέο όνομα αναγνώρισης κλήσης έκτακτης ανάγκης για τις επιλεγμένες επεκτάσεις.";
$text['description-emergency_caller_id_name']['en-gb'] = "Enter the new emergency caller id name for the selected extensions.";
$text['description-emergency_caller_id_name']['en-us'] = "Enter the new emergency caller id name for the selected extensions.";
$text['description-emergency_caller_id_name']['es-cl'] = "Enter the new emergency caller id name for the selected extensions.";
$text['description-emergency_caller_id_name']['es-mx'] = "Ingrese el nuevo nombre de identificación de llamada de emergencia para las extensiones seleccionadas.";
$text['description-emergency_caller_id_name']['fr-ca'] = "Saisissez le nouveau nom d’identification de l’appelant d’urgence pour les extensions sélectionnées.";
$text['description-emergency_caller_id_name']['fr-fr'] = "Enter the new emergency caller id name for the selected extensions.";
$text['description-emergency_caller_id_name']['he-il'] = "הזן את השם החדש של מתקשר החירום עבור ההרחבות שנבחרו.";
$text['description-emergency_caller_id_name']['it-it'] = "Enter the new emergency caller id name for the selected extensions.";
$text['description-emergency_caller_id_name']['ja-jp'] = "選択した内線番号の新しい緊急発信者 ID 名を入力します。";
$text['description-emergency_caller_id_name']['ka-ge'] = "შეიყვანეთ ახალი გადაუდებელი აბონენტის ID სახელი არჩეული გაფართოებებისთვის.";
$text['description-emergency_caller_id_name']['ko-kr'] = "선택한 내선번호에 대한 새로운 비상 발신자 ID 이름을 입력하세요.";
$text['description-emergency_caller_id_name']['nl-nl'] = "Voer de nieuwe naam voor de noodoproep-ID in voor de geselecteerde toestellen.";
$text['description-emergency_caller_id_name']['pl-pl'] = "Wprowadź nową nazwę identyfikatora osoby dzwoniącej w nagłych wypadkach dla wybranych numerów wewnętrznych.";
$text['description-emergency_caller_id_name']['pt-br'] = "Enter the new emergency caller id name for the selected extensions.";
$text['description-emergency_caller_id_name']['pt-pt'] = "Enter the new emergency caller id name for the selected extensions.";
$text['description-emergency_caller_id_name']['ro-ro'] = "Introduceți noul nume de ID apelant de urgență pentru extensiile selectate.";
$text['description-emergency_caller_id_name']['ru-ru'] = "Enter the new emergency caller id name for the selected extensions.";
$text['description-emergency_caller_id_name']['sv-se'] = "Enter the new emergency caller id name for the selected extensions.";
$text['description-emergency_caller_id_name']['tr-tr'] = "Seçili dahili numaralar için yeni acil durum arayan kimliği adını girin.";
$text['description-emergency_caller_id_name']['uk-ua'] = "Введіть нове ім’я екстреного абонента для вибраних розширень.";
$text['description-emergency_caller_id_name']['zh-cn'] = "为选定的分机输入新的紧急呼叫者显示名称。";
$text['description-emergency_caller_id_number']['en-us'] = "Enter the new emergency caller id number for the selected extensions.";
$text['description-emergency_caller_id_number']['en-gb'] = "Enter the new emergency caller id number for the selected extensions.";
$text['description-emergency_caller_id_number']['ar-eg'] = "أدخل رقم هوية المتصل الجديد في حالات الطوارئ للخطوط الفرعية المحددة.";
$text['description-emergency_caller_id_number']['de-at'] = "Enter the new emergency caller id number for the selected extensions.";
$text['description-emergency_caller_id_number']['de-ch'] = "Geben Sie die neue Notrufnummer für die ausgewählten Nebenstellen ein.";
$text['description-emergency_caller_id_number']['de-de'] = "Geben Sie die neue Notrufnummer für die ausgewählten Nebenstellen ein.";
$text['description-emergency_caller_id_number']['el-gr'] = "Εισαγάγετε τον νέο αριθμό αναγνώρισης κλήσης έκτακτης ανάγκης για τις επιλεγμένες επεκτάσεις.";
$text['description-emergency_caller_id_number']['en-gb'] = "Enter the new emergency caller id number for the selected extensions.";
$text['description-emergency_caller_id_number']['en-us'] = "Enter the new emergency caller id number for the selected extensions.";
$text['description-emergency_caller_id_number']['es-cl'] = "Enter the new emergency caller id number for the selected extensions.";
$text['description-emergency_caller_id_number']['es-mx'] = "Ingrese el nuevo número de identificación de llamada de emergencia para las extensiones seleccionadas.";
$text['description-emergency_caller_id_number']['fr-ca'] = "Saisissez le nouveau numéro d’identification de l’appelant d’urgence pour les extensions sélectionnées.";
$text['description-emergency_caller_id_number']['fr-fr'] = "Enter the new emergency caller id number for the selected extensions.";
$text['description-emergency_caller_id_number']['he-il'] = "הזן את מספר הזיהוי החדש של מתקשר החירום עבור השלוחות שנבחרו.";
$text['description-emergency_caller_id_number']['it-it'] = "Enter the new emergency caller id number for the selected extensions.";
$text['description-emergency_caller_id_number']['ja-jp'] = "選択した内線番号の新しい緊急発信者 ID 番号を入力します。";
$text['description-emergency_caller_id_number']['ka-ge'] = "შეიყვანეთ ახალი სასწრაფო დახმარების აბონენტის ID ნომერი არჩეული გაფართოებებისთვის.";
$text['description-emergency_caller_id_number']['ko-kr'] = "선택한 내선번호에 대한 새로운 비상 전화번호 ID 번호를 입력하세요.";
$text['description-emergency_caller_id_number']['nl-nl'] = "Voer het nieuwe noodnummer in voor de geselecteerde toestellen.";
$text['description-emergency_caller_id_number']['pl-pl'] = "Wprowadź nowy numer identyfikacyjny osoby dzwoniącej pod numer alarmowy dla wybranych numerów wewnętrznych.";
$text['description-emergency_caller_id_number']['pt-br'] = "Enter the new emergency caller id number for the selected extensions.";
$text['description-emergency_caller_id_number']['pt-pt'] = "Enter the new emergency caller id number for the selected extensions.";
$text['description-emergency_caller_id_number']['ro-ro'] = "Introduceți noul număr de identificare a apelantului de urgență pentru extensiile selectate.";
$text['description-emergency_caller_id_number']['ru-ru'] = "Enter the new emergency caller id number for the selected extensions.";
$text['description-emergency_caller_id_number']['sv-se'] = "Enter the new emergency caller id number for the selected extensions.";
$text['description-emergency_caller_id_number']['tr-tr'] = "Seçili dahili numaralar için yeni acil durum arayan kimliği numarasını girin.";
$text['description-emergency_caller_id_number']['uk-ua'] = "Введіть новий ідентифікаційний номер екстреного абонента для вибраних розширень.";
$text['description-emergency_caller_id_number']['zh-cn'] = "为选定分机输入新的紧急呼叫者显示号码。";
$text['description-enabled']['en-us'] = "Select the new enabled status for the selected extensions.";
$text['description-enabled']['en-gb'] = "Select the new enabled status for the selected extensions.";
$text['description-enabled']['ar-eg'] = "حدد حالة التمكين الجديدة للملحقات المحددة.";
$text['description-enabled']['de-at'] = "Select the new enabled status for the selected extensions.";
$text['description-enabled']['de-ch'] = "Wählen Sie den neuen Aktivierungsstatus für die ausgewählten Erweiterungen aus.";
$text['description-enabled']['de-de'] = "Wählen Sie den neuen Aktivierungsstatus für die ausgewählten Erweiterungen aus.";
$text['description-enabled']['el-gr'] = "Επιλέξτε τη νέα κατάσταση ενεργοποίησης για τις επιλεγμένες επεκτάσεις.";
$text['description-enabled']['en-gb'] = "Select the new enabled status for the selected extensions.";
$text['description-enabled']['en-us'] = "Select the new enabled status for the selected extensions.";
$text['description-enabled']['es-cl'] = "Select the new enabled status for the selected extensions.";
$text['description-enabled']['es-mx'] = "Seleccione el nuevo estado habilitado para las extensiones seleccionadas.";
$text['description-enabled']['fr-ca'] = "Sélectionnez le nouveau statut activé pour les extensions sélectionnées.";
$text['description-enabled']['fr-fr'] = "Select the new enabled status for the selected extensions.";
$text['description-enabled']['he-il'] = "בחר את הסטטוס המופעל החדש עבור התוספים שנבחרו.";
$text['description-enabled']['it-it'] = "Select the new enabled status for the selected extensions.";
$text['description-enabled']['ja-jp'] = "選択した拡張機能の新しい有効ステータスを選択します。";
$text['description-enabled']['ka-ge'] = "აირჩიეთ ახალი ჩართული სტატუსი არჩეული გაფართოებებისთვის.";
$text['description-enabled']['ko-kr'] = "선택한 확장 프로그램에 대한 새로운 활성화 상태를 선택합니다.";
$text['description-enabled']['nl-nl'] = "Selecteer de nieuwe ingeschakelde status voor de geselecteerde extensies.";
$text['description-enabled']['pl-pl'] = "Wybierz nowy status włączenia dla wybranych rozszerzeń.";
$text['description-enabled']['pt-br'] = "Select the new enabled status for the selected extensions.";
$text['description-enabled']['pt-pt'] = "Select the new enabled status for the selected extensions.";
$text['description-enabled']['ro-ro'] = "Selectați noua stare activată pentru extensiile selectate.";
$text['description-enabled']['ru-ru'] = "Выберите новый статус для выбранных extensions.";
$text['description-enabled']['sv-se'] = "Select the new enabled status for the selected extensions.";
$text['description-enabled']['tr-tr'] = "Seçili uzantılar için yeni etkin durumunu seçin.";
$text['description-enabled']['uk-ua'] = "Виберіть новий увімкнений статус для вибраних розширень.";
$text['description-enabled']['zh-cn'] = "为选定的扩展选择新的启用状态。";
$text['description-extension_settings_description']['en-us'] = "Choose the setting to modify.";
$text['description-extension_settings_description']['en-gb'] = "Choose the setting to modify.";
$text['description-extension_settings_description']['ar-eg'] = "اختر الإعداد الذي تريد تعديله.";
$text['description-extension_settings_description']['de-at'] = "Choose the setting to modify.";
$text['description-extension_settings_description']['de-ch'] = "Wählen Sie die zu ändernde Einstellung aus.";
$text['description-extension_settings_description']['de-de'] = "Wählen Sie die zu ändernde Einstellung aus.";
$text['description-extension_settings_description']['el-gr'] = "Επιλέξτε τη ρύθμιση που θέλετε να τροποποιήσετε.";
$text['description-extension_settings_description']['en-gb'] = "Choose the setting to modify.";
$text['description-extension_settings_description']['en-us'] = "Choose the setting to modify.";
$text['description-extension_settings_description']['es-cl'] = "Choose the setting to modify.";
$text['description-extension_settings_description']['es-mx'] = "Seleccione la configuración que desea modificar.";
$text['description-extension_settings_description']['fr-ca'] = "Choisissez le paramètre à modifier.";
$text['description-extension_settings_description']['fr-fr'] = "Choose the setting to modify.";
$text['description-extension_settings_description']['he-il'] = "בחר את ההגדרה לשינוי.";
$text['description-extension_settings_description']['it-it'] = "Choose the setting to modify.";
$text['description-extension_settings_description']['ja-jp'] = "変更する設定を選択します。";
$text['description-extension_settings_description']['ka-ge'] = "აირჩიეთ პარამეტრი შესაცვლელად.";
$text['description-extension_settings_description']['ko-kr'] = "수정할 설정을 선택하세요.";
$text['description-extension_settings_description']['nl-nl'] = "Kies de instelling die u wilt wijzigen.";
$text['description-extension_settings_description']['pl-pl'] = "Wybierz ustawienie, które chcesz zmodyfikować.";
$text['description-extension_settings_description']['pt-br'] = "Choose the setting to modify.";
$text['description-extension_settings_description']['pt-pt'] = "Choose the setting to modify.";
$text['description-extension_settings_description']['ro-ro'] = "Alegeți setarea de modificat.";
$text['description-extension_settings_description']['ru-ru'] = "Выберите настройку для изменения.";
$text['description-extension_settings_description']['sv-se'] = "Choose the setting to modify.";
$text['description-extension_settings_description']['tr-tr'] = "Değiştirilecek ayarı seçin.";
$text['description-extension_settings_description']['uk-ua'] = "Виберіть параметр, який потрібно змінити.";
$text['description-extension_settings_description']['zh-cn'] = "选择要修改的设置。";
$text['description-hold_music']['en-us'] = "Select the new hold music for the selected extensions.";
$text['description-hold_music']['en-gb'] = "Select the new hold music for the selected extensions.";
$text['description-hold_music']['ar-eg'] = "قم باختيار موسيقى الانتظار الجديدة للملحقات المحددة.";
$text['description-hold_music']['de-at'] = "Select the new hold music for the selected extensions.";
$text['description-hold_music']['de-ch'] = "Wählen Sie die neue Wartemusik für die ausgewählten Nebenstellen aus.";
$text['description-hold_music']['de-de'] = "Wählen Sie die neue Wartemusik für die ausgewählten Nebenstellen aus.";
$text['description-hold_music']['el-gr'] = "Επιλέξτε τη νέα μουσική αναμονής για τις επιλεγμένες επεκτάσεις.";
$text['description-hold_music']['en-gb'] = "Select the new hold music for the selected extensions.";
$text['description-hold_music']['en-us'] = "Select the new hold music for the selected extensions.";
$text['description-hold_music']['es-cl'] = "Select the new hold music for the selected extensions.";
$text['description-hold_music']['es-mx'] = "Seleccione la nueva música de espera para las extensiones seleccionadas.";
$text['description-hold_music']['fr-ca'] = "Sélectionnez la nouvelle musique d'attente pour les extensions sélectionnées.";
$text['description-hold_music']['fr-fr'] = "Select the new hold music for the selected extensions.";
$text['description-hold_music']['he-il'] = "בחר את מוזיקת ההחזקה החדשה עבור ההרחבות שנבחרו.";
$text['description-hold_music']['it-it'] = "Select the new hold music for the selected extensions.";
$text['description-hold_music']['ja-jp'] = "選択した内線番号の新しい保留音を選択します。";
$text['description-hold_music']['ka-ge'] = "აირჩიეთ ახალი დაჭერის მუსიკა არჩეული გაფართოებებისთვის.";
$text['description-hold_music']['ko-kr'] = "선택한 확장 프로그램에 대한 새로운 대기 음악을 선택하세요.";
$text['description-hold_music']['nl-nl'] = "Selecteer de nieuwe wachtmuziek voor de geselecteerde extensies.";
$text['description-hold_music']['pl-pl'] = "Wybierz nową muzykę oczekującą dla wybranych rozszerzeń.";
$text['description-hold_music']['pt-br'] = "Select the new hold music for the selected extensions.";
$text['description-hold_music']['pt-pt'] = "Select the new hold music for the selected extensions.";
$text['description-hold_music']['ro-ro'] = "Selectați noua muzică de așteptare pentru extensiile selectate.";
$text['description-hold_music']['ru-ru'] = "Выберите новую музыку при ожидании для выбраннных extensions.";
$text['description-hold_music']['sv-se'] = "Select the new hold music for the selected extensions.";
$text['description-hold_music']['tr-tr'] = "Seçili uzantılar için yeni bekleme müziğini seçin.";
$text['description-hold_music']['uk-ua'] = "Виберіть нову музику утримання для вибраних розширень.";
$text['description-hold_music']['zh-cn'] = "为选定的分机选择新的保持音乐。";
$text['description-limit_max']['en-us'] = "Select the new limit max calls for the selected extensions.";
$text['description-limit_max']['en-gb'] = "Select the new limit max calls for the selected extensions.";
$text['description-limit_max']['ar-eg'] = "حدد الحد الأقصى الجديد للمكالمات للملحقات المحددة.";
$text['description-limit_max']['de-at'] = "Select the new limit max calls for the selected extensions.";
$text['description-limit_max']['de-ch'] = "Wählen Sie das neue Limit für die maximalen Anrufe für die ausgewählten Nebenstellen aus.";
$text['description-limit_max']['de-de'] = "Wählen Sie das neue Limit für die maximalen Anrufe für die ausgewählten Nebenstellen aus.";
$text['description-limit_max']['el-gr'] = "Επιλέξτε το νέο μέγιστο όριο κλήσεων για τις επιλεγμένες επεκτάσεις.";
$text['description-limit_max']['en-gb'] = "Select the new limit max calls for the selected extensions.";
$text['description-limit_max']['en-us'] = "Select the new limit max calls for the selected extensions.";
$text['description-limit_max']['es-cl'] = "Select the new limit max calls for the selected extensions.";
$text['description-limit_max']['es-mx'] = "Seleccione el nuevo límite máximo de llamadas para las extensiones seleccionadas.";
$text['description-limit_max']['fr-ca'] = "Sélectionnez la nouvelle limite maximale d'appels pour les extensions sélectionnées.";
$text['description-limit_max']['fr-fr'] = "Select the new limit max calls for the selected extensions.";
$text['description-limit_max']['he-il'] = "בחר את מגבלת השיחות המקסימלית החדשה עבור התוספים שנבחרו.";
$text['description-limit_max']['it-it'] = "Select the new limit max calls for the selected extensions.";
$text['description-limit_max']['ja-jp'] = "選択した内線番号の新しい最大通話制限を選択します。";
$text['description-limit_max']['ka-ge'] = "აირჩიეთ ახალი ლიმიტის მაქსიმალური ზარები არჩეული გაფართოებებისთვის.";
$text['description-limit_max']['ko-kr'] = "선택한 확장 프로그램에 대한 새로운 최대 통화 한도를 선택합니다.";
$text['description-limit_max']['nl-nl'] = "Selecteer de nieuwe limiet voor het maximale aantal gesprekken voor de geselecteerde toestellen.";
$text['description-limit_max']['pl-pl'] = "Wybierz nowy limit maksymalnej liczby połączeń dla wybranych numerów wewnętrznych.";
$text['description-limit_max']['pt-br'] = "Select the new limit max calls for the selected extensions.";
$text['description-limit_max']['pt-pt'] = "Select the new limit max calls for the selected extensions.";
$text['description-limit_max']['ro-ro'] = "Selectați noua limită maximă de apeluri pentru extensiile selectate.";
$text['description-limit_max']['ru-ru'] = "Задайте новое максимальное количество вызовов для выбранных extensions.";
$text['description-limit_max']['sv-se'] = "Select the new limit max calls for the selected extensions.";
$text['description-limit_max']['tr-tr'] = "Seçili uzantılar için yeni maksimum çağrı limitini seçin.";
$text['description-limit_max']['uk-ua'] = "Виберіть новий максимальний ліміт викликів для вибраних внутрішніх номерів.";
$text['description-limit_max']['zh-cn'] = "为选定分机选择新的最大呼叫限制。";
$text['description-outbound_caller_id_name']['en-us'] = "Enter the new outbound caller id name for the selected extensions.";
$text['description-outbound_caller_id_name']['en-gb'] = "Enter the new outbound caller id name for the selected extensions.";
$text['description-outbound_caller_id_name']['ar-eg'] = "أدخل اسم معرف المتصل الصادر الجديد للملحقات المحددة.";
$text['description-outbound_caller_id_name']['de-at'] = "Enter the new outbound caller id name for the selected extensions.";
$text['description-outbound_caller_id_name']['de-ch'] = "Geben Sie den neuen Namen der ausgehenden Anrufer-ID für die ausgewählten Nebenstellen ein.";
$text['description-outbound_caller_id_name']['de-de'] = "Geben Sie den neuen Namen der ausgehenden Anrufer-ID für die ausgewählten Nebenstellen ein.";
$text['description-outbound_caller_id_name']['el-gr'] = "Εισαγάγετε το νέο όνομα εξερχόμενου αναγνωριστικού καλούντος για τις επιλεγμένες επεκτάσεις.";
$text['description-outbound_caller_id_name']['en-gb'] = "Enter the new outbound caller id name for the selected extensions.";
$text['description-outbound_caller_id_name']['en-us'] = "Enter the new outbound caller id name for the selected extensions.";
$text['description-outbound_caller_id_name']['es-cl'] = "Enter the new outbound caller id name for the selected extensions.";
$text['description-outbound_caller_id_name']['es-mx'] = "Ingrese el nuevo nombre de identificación de llamada saliente para las extensiones seleccionadas.";
$text['description-outbound_caller_id_name']['fr-ca'] = "Saisissez le nouveau nom d’identification de l’appelant sortant pour les extensions sélectionnées.";
$text['description-outbound_caller_id_name']['fr-fr'] = "Enter the new outbound caller id name for the selected extensions.";
$text['description-outbound_caller_id_name']['he-il'] = "הזן את שם זיהוי המתקשר היוצא החדש עבור התוספים שנבחרו.";
$text['description-outbound_caller_id_name']['it-it'] = "Enter the new outbound caller id name for the selected extensions.";
$text['description-outbound_caller_id_name']['ja-jp'] = "選択した内線番号の新しい発信者 ID 名を入力します。";
$text['description-outbound_caller_id_name']['ka-ge'] = "შეიყვანეთ ახალი გამავალი აბონენტის ID სახელი არჩეული გაფართოებებისთვის.";
$text['description-outbound_caller_id_name']['ko-kr'] = "선택한 내선번호에 대한 새로운 발신자 ID 이름을 입력하세요.";
$text['description-outbound_caller_id_name']['nl-nl'] = "Voer de nieuwe uitgaande beller-ID-naam in voor de geselecteerde toestellen.";
$text['description-outbound_caller_id_name']['pl-pl'] = "Wprowadź nowy identyfikator dzwoniącego dla wybranych numerów wewnętrznych.";
$text['description-outbound_caller_id_name']['pt-br'] = "Enter the new outbound caller id name for the selected extensions.";
$text['description-outbound_caller_id_name']['pt-pt'] = "Enter the new outbound caller id name for the selected extensions.";
$text['description-outbound_caller_id_name']['ro-ro'] = "Introduceți noul nume ID apelant de ieșire pentru extensiile selectate.";
$text['description-outbound_caller_id_name']['ru-ru'] = "Enter the new outbound caller id name for the selected extensions.";
$text['description-outbound_caller_id_name']['sv-se'] = "Enter the new outbound caller id name for the selected extensions.";
$text['description-outbound_caller_id_name']['tr-tr'] = "Seçili dahili numaralar için yeni giden arayan kimliği adını girin.";
$text['description-outbound_caller_id_name']['uk-ua'] = "Введіть нове ім’я ідентифікатора вихідного абонента для вибраних внутрішніх номерів.";
$text['description-outbound_caller_id_name']['zh-cn'] = "为选定的分机输入新的出站呼叫者 ID 名称。";
$text['description-outbound_caller_id_number']['en-us'] = "Enter the new outbound caller id number for the selected extensions.";
$text['description-outbound_caller_id_number']['en-gb'] = "Enter the new outbound caller id number for the selected extensions.";
$text['description-outbound_caller_id_number']['ar-eg'] = "أدخل رقم معرف المتصل الصادر الجديد للخطوط الفرعية المحددة.";
$text['description-outbound_caller_id_number']['de-at'] = "Enter the new outbound caller id number for the selected extensions.";
$text['description-outbound_caller_id_number']['de-ch'] = "Geben Sie die neue ausgehende Anrufer-ID-Nummer für die ausgewählten Nebenstellen ein.";
$text['description-outbound_caller_id_number']['de-de'] = "Geben Sie die neue ausgehende Anrufer-ID-Nummer für die ausgewählten Nebenstellen ein.";
$text['description-outbound_caller_id_number']['el-gr'] = "Εισαγάγετε τον νέο αριθμό αναγνώρισης εξερχόμενου καλούντος για τις επιλεγμένες επεκτάσεις.";
$text['description-outbound_caller_id_number']['en-gb'] = "Enter the new outbound caller id number for the selected extensions.";
$text['description-outbound_caller_id_number']['en-us'] = "Enter the new outbound caller id number for the selected extensions.";
$text['description-outbound_caller_id_number']['es-cl'] = "Enter the new outbound caller id number for the selected extensions.";
$text['description-outbound_caller_id_number']['es-mx'] = "Ingrese el nuevo número de identificación de llamada saliente para las extensiones seleccionadas.";
$text['description-outbound_caller_id_number']['fr-ca'] = "Saisissez le nouveau numéro d’identification de l’appelant sortant pour les extensions sélectionnées.";
$text['description-outbound_caller_id_number']['fr-fr'] = "Enter the new outbound caller id number for the selected extensions.";
$text['description-outbound_caller_id_number']['he-il'] = "הזן את מספר זיהוי המתקשר היוצא החדש עבור התוספות שנבחרו.";
$text['description-outbound_caller_id_number']['it-it'] = "Enter the new outbound caller id number for the selected extensions.";
$text['description-outbound_caller_id_number']['ja-jp'] = "選択した内線番号の新しい発信者 ID 番号を入力します。";
$text['description-outbound_caller_id_number']['ka-ge'] = "შეიყვანეთ ახალი გამავალი აბონენტის ID ნომერი არჩეული გაფართოებებისთვის.";
$text['description-outbound_caller_id_number']['ko-kr'] = "선택한 내선번호에 대한 새로운 발신자 ID 번호를 입력하세요.";
$text['description-outbound_caller_id_number']['nl-nl'] = "Voer het nieuwe uitgaande beller-ID-nummer in voor de geselecteerde toestellen.";
$text['description-outbound_caller_id_number']['pl-pl'] = "Wprowadź nowy numer identyfikacyjny dzwoniącego dla wybranych numerów wewnętrznych.";
$text['description-outbound_caller_id_number']['pt-br'] = "Enter the new outbound caller id number for the selected extensions.";
$text['description-outbound_caller_id_number']['pt-pt'] = "Enter the new outbound caller id number for the selected extensions.";
$text['description-outbound_caller_id_number']['ro-ro'] = "Introduceți noul număr ID apelant de ieșire pentru extensiile selectate.";
$text['description-outbound_caller_id_number']['ru-ru'] = "Enter the new outbound caller id number for the selected extensions.";
$text['description-outbound_caller_id_number']['sv-se'] = "Enter the new outbound caller id number for the selected extensions.";
$text['description-outbound_caller_id_number']['tr-tr'] = "Seçili dahili numaralar için yeni giden arayan kimliği numarasını girin.";
$text['description-outbound_caller_id_number']['uk-ua'] = "Введіть новий ідентифікаційний номер вихідного абонента для вибраних внутрішніх номерів.";
$text['description-outbound_caller_id_number']['zh-cn'] = "为选定分机输入新的外拨呼叫者显示号码。";
$text['description-password']['en-us'] = "Enter the new password for the selected users.";
$text['description-password']['en-gb'] = "Enter the new password for the selected users.";
$text['description-password']['ar-eg'] = "أدخل كلمة المرور الجديدة للمستخدمين المحددين.";
$text['description-password']['de-at'] = "Enter the new password for the selected users.";
$text['description-password']['de-ch'] = "Geben Sie das neue Passwort für die ausgewählten Benutzer ein.";
$text['description-password']['de-de'] = "Geben Sie das neue Passwort für die ausgewählten Benutzer ein.";
$text['description-password']['el-gr'] = "Εισαγάγετε τον νέο κωδικό πρόσβασης για τους επιλεγμένους χρήστες.";
$text['description-password']['en-gb'] = "Enter the new password for the selected users.";
$text['description-password']['en-us'] = "Enter the new password for the selected users.";
$text['description-password']['es-cl'] = "Enter the new password for the selected users.";
$text['description-password']['es-mx'] = "Introduzca la nueva contraseña para los usuarios seleccionados.";
$text['description-password']['fr-ca'] = "Entrez le nouveau mot de passe pour les utilisateurs sélectionnés.";
$text['description-password']['fr-fr'] = "Enter the new password for the selected users.";
$text['description-password']['he-il'] = "הזן את הסיסמה החדשה עבור המשתמשים שנבחרו.";
$text['description-password']['it-it'] = "Enter the new password for the selected users.";
$text['description-password']['ja-jp'] = "選択したユーザーの新しいパスワードを入力します。";
$text['description-password']['ka-ge'] = "შეიყვანეთ ახალი პაროლი არჩეული მომხმარებლებისთვის.";
$text['description-password']['ko-kr'] = "선택한 사용자의 새 비밀번호를 입력하세요.";
$text['description-password']['nl-nl'] = "Voer het nieuwe wachtwoord in voor de geselecteerde gebruikers.";
$text['description-password']['pl-pl'] = "Wprowadź nowe hasło dla wybranych użytkowników.";
$text['description-password']['pt-br'] = "Enter the new password for the selected users.";
$text['description-password']['pt-pt'] = "Enter the new password for the selected users.";
$text['description-password']['ro-ro'] = "Introduceți noua parolă pentru utilizatorii selectați.";
$text['description-password']['ru-ru'] = "Введите новый пароль для выбранных пользователей.";
$text['description-password']['sv-se'] = "Enter the new password for the selected users.";
$text['description-password']['tr-tr'] = "Seçili kullanıcılar için yeni şifreyi girin.";
$text['description-password']['uk-ua'] = "Введіть новий пароль для вибраних користувачів.";
$text['description-password']['zh-cn'] = "输入选定用户的新密码。";
$text['description-time_zone']['en-us'] = "Select the new timezone for the selected users.";
$text['description-time_zone']['en-gb'] = "Select the new timezone for the selected users.";
$text['description-time_zone']['ar-eg'] = "حدد المنطقة الزمنية الجديدة للمستخدمين المحددين.";
$text['description-time_zone']['de-at'] = "Select the new timezone for the selected users.";
$text['description-time_zone']['de-ch'] = "Wählen Sie die neue Zeitzone für die ausgewählten Benutzer aus.";
$text['description-time_zone']['de-de'] = "Wählen Sie die neue Zeitzone für die ausgewählten Benutzer aus.";
$text['description-time_zone']['el-gr'] = "Επιλέξτε τη νέα ζώνη ώρας για τους επιλεγμένους χρήστες.";
$text['description-time_zone']['en-gb'] = "Select the new timezone for the selected users.";
$text['description-time_zone']['en-us'] = "Select the new timezone for the selected users.";
$text['description-time_zone']['es-cl'] = "Select the new timezone for the selected users.";
$text['description-time_zone']['es-mx'] = "Seleccione la nueva zona horaria para los usuarios seleccionados.";
$text['description-time_zone']['fr-ca'] = "Sélectionnez le nouveau fuseau horaire pour les utilisateurs sélectionnés.";
$text['description-time_zone']['fr-fr'] = "Select the new timezone for the selected users.";
$text['description-time_zone']['he-il'] = "בחר את אזור הזמן החדש עבור המשתמשים שנבחרו.";
$text['description-time_zone']['it-it'] = "Select the new timezone for the selected users.";
$text['description-time_zone']['ja-jp'] = "選択したユーザーの新しいタイムゾーンを選択します。";
$text['description-time_zone']['ka-ge'] = "აირჩიეთ ახალი დროის ზონა არჩეული მომხმარებლებისთვის.";
$text['description-time_zone']['ko-kr'] = "선택한 사용자에 대한 새로운 시간대를 선택합니다.";
$text['description-time_zone']['nl-nl'] = "Selecteer de nieuwe tijdzone voor de geselecteerde gebruikers.";
$text['description-time_zone']['pl-pl'] = "Wybierz nową strefę czasową dla wybranych użytkowników.";
$text['description-time_zone']['pt-br'] = "Select the new timezone for the selected users.";
$text['description-time_zone']['pt-pt'] = "Select the new timezone for the selected users.";
$text['description-time_zone']['ro-ro'] = "Selectați noul fus orar pentru utilizatorii selectați.";
$text['description-time_zone']['ru-ru'] = "Выберите часовой пояс для выбранных пользователей.";
$text['description-time_zone']['sv-se'] = "Select the new timezone for the selected users.";
$text['description-time_zone']['tr-tr'] = "Seçili kullanıcılar için yeni saat dilimini seçin.";
$text['description-time_zone']['uk-ua'] = "Виберіть новий часовий пояс для вибраних користувачів.";
$text['description-time_zone']['zh-cn'] = "为选定的用户选择新的时区。";
$text['description-toll_allow']['en-us'] = "Select the new toll allow for the selected extensions.";
$text['description-toll_allow']['en-gb'] = "Select the new toll allow for the selected extensions.";
$text['description-toll_allow']['ar-eg'] = "قم باختيار رسوم المرور الجديدة للامتدادات المحددة.";
$text['description-toll_allow']['de-at'] = "Select the new toll allow for the selected extensions.";
$text['description-toll_allow']['de-ch'] = "Wählen Sie die neue Gebührenkontingentierung für die ausgewählten Nebenstellen aus.";
$text['description-toll_allow']['de-de'] = "Wählen Sie die neue Gebührenkontingentierung für die ausgewählten Nebenstellen aus.";
$text['description-toll_allow']['el-gr'] = "Επιλέξτε τη νέα άδεια διοδίων για τις επιλεγμένες επεκτάσεις.";
$text['description-toll_allow']['en-gb'] = "Select the new toll allow for the selected extensions.";
$text['description-toll_allow']['en-us'] = "Select the new toll allow for the selected extensions.";
$text['description-toll_allow']['es-cl'] = "Select the new toll allow for the selected extensions.";
$text['description-toll_allow']['es-mx'] = "Seleccione el nuevo peaje permitido para las extensiones seleccionadas.";
$text['description-toll_allow']['fr-ca'] = "Sélectionnez la nouvelle autorisation de péage pour les extensions sélectionnées.";
$text['description-toll_allow']['fr-fr'] = "Select the new toll allow for the selected extensions.";
$text['description-toll_allow']['he-il'] = "בחר את האגרה החדשה לאפשר עבור ההרחבות שנבחרו.";
$text['description-toll_allow']['it-it'] = "Select the new toll allow for the selected extensions.";
$text['description-toll_allow']['ja-jp'] = "選択した拡張機能の新しい通行許可を選択します。";
$text['description-toll_allow']['ka-ge'] = "აირჩიეთ არჩეული გაფართოებების ახალი საფასური.";
$text['description-toll_allow']['ko-kr'] = "선택한 확장 프로그램에 대한 새로운 통행료 허용 범위를 선택하세요.";
$text['description-toll_allow']['nl-nl'] = "Selecteer de nieuwe tolvergunning voor de geselecteerde extensies.";
$text['description-toll_allow']['pl-pl'] = "Wybierz nowe zezwolenie na przejazd dla wybranych rozszerzeń.";
$text['description-toll_allow']['pt-br'] = "Select the new toll allow for the selected extensions.";
$text['description-toll_allow']['pt-pt'] = "Select the new toll allow for the selected extensions.";
$text['description-toll_allow']['ro-ro'] = "Selectați noul permis de taxare pentru extensiile selectate.";
$text['description-toll_allow']['ru-ru'] = "Select the new toll allow for the selected extensions.";
$text['description-toll_allow']['sv-se'] = "Select the new toll allow for the selected extensions.";
$text['description-toll_allow']['tr-tr'] = "Seçili uzantılar için yeni geçiş ücretini seçin.";
$text['description-toll_allow']['uk-ua'] = "Виберіть нову плату для вибраних розширень.";
$text['description-toll_allow']['zh-cn'] = "为选定的分机选择新的收费限额。";
$text['description-user_enabled']['en-us'] = "Select the new enabled status for the selected users.";
$text['description-user_enabled']['en-gb'] = "Select the new enabled status for the selected users.";
$text['description-user_enabled']['ar-eg'] = "حدد الحالة الممكّنة الجديدة للمستخدمين المحددين.";
$text['description-user_enabled']['de-at'] = "Select the new enabled status for the selected users.";
$text['description-user_enabled']['de-ch'] = "Wählen Sie den neuen Aktivierungsstatus für die ausgewählten Benutzer aus.";
$text['description-user_enabled']['de-de'] = "Wählen Sie den neuen Aktivierungsstatus für die ausgewählten Benutzer aus.";
$text['description-user_enabled']['el-gr'] = "Επιλέξτε τη νέα κατάσταση ενεργοποίησης για τους επιλεγμένους χρήστες.";
$text['description-user_enabled']['en-gb'] = "Select the new enabled status for the selected users.";
$text['description-user_enabled']['en-us'] = "Select the new enabled status for the selected users.";
$text['description-user_enabled']['es-cl'] = "Select the new enabled status for the selected users.";
$text['description-user_enabled']['es-mx'] = "Seleccione el nuevo estado habilitado para los usuarios seleccionados.";
$text['description-user_enabled']['fr-ca'] = "Sélectionnez le nouveau statut activé pour les utilisateurs sélectionnés.";
$text['description-user_enabled']['fr-fr'] = "Select the new enabled status for the selected users.";
$text['description-user_enabled']['he-il'] = "בחר את הסטטוס המופעל החדש עבור המשתמשים שנבחרו.";
$text['description-user_enabled']['it-it'] = "Select the new enabled status for the selected users.";
$text['description-user_enabled']['ja-jp'] = "選択したユーザーの新しい有効ステータスを選択します。";
$text['description-user_enabled']['ka-ge'] = "აირჩიეთ ახალი ჩართული სტატუსი არჩეული მომხმარებლებისთვის.";
$text['description-user_enabled']['ko-kr'] = "선택한 사용자에 대한 새로운 활성화 상태를 선택합니다.";
$text['description-user_enabled']['nl-nl'] = "Selecteer de nieuwe ingeschakelde status voor de geselecteerde gebruikers.";
$text['description-user_enabled']['pl-pl'] = "Wybierz nowy status włączenia dla wybranych użytkowników.";
$text['description-user_enabled']['pt-br'] = "Select the new enabled status for the selected users.";
$text['description-user_enabled']['pt-pt'] = "Select the new enabled status for the selected users.";
$text['description-user_enabled']['ro-ro'] = "Selectați noua stare activată pentru utilizatorii selectați.";
$text['description-user_enabled']['ru-ru'] = "Select the new enabled status for the selected users.";
$text['description-user_enabled']['sv-se'] = "Select the new enabled status for the selected users.";
$text['description-user_enabled']['tr-tr'] = "Seçili kullanıcılar için yeni etkinleşme durumunu seçin.";
$text['description-user_enabled']['uk-ua'] = "Виберіть новий увімкнений статус для вибраних користувачів.";
$text['description-user_enabled']['zh-cn'] = "为选定的用户选择新的启用状态。";
$text['description-user_record']['en-us'] = "Select whether to record the extension.";
$text['description-user_record']['en-gb'] = "Select whether to record the extension.";
$text['description-user_record']['ar-eg'] = "حدد ما إذا كنت تريد تسجيل الامتداد.";
$text['description-user_record']['de-at'] = "";
$text['description-user_record']['de-ch'] = "Wählen Sie aus, ob die Nebenstelle aufgezeichnet werden soll.";
$text['description-user_record']['de-de'] = "Wählen Sie aus, ob die Nebenstelle aufgezeichnet werden soll.";
$text['description-user_record']['el-gr'] = "Επιλέξτε εάν θα καταγραφεί η επέκταση.";
$text['description-user_record']['en-br'] = "";
$text['description-user_record']['en-fr'] = "";
$text['description-user_record']['en-gb'] = "Select whether to record the extension.";
$text['description-user_record']['en-us'] = "Select whether to record the extension.";
$text['description-user_record']['es-cl'] = "";
$text['description-user_record']['es-mx'] = "Seleccione si desea grabar la extensión.";
$text['description-user_record']['fr-ca'] = "Sélectionnez si vous souhaitez enregistrer l'extension.";
$text['description-user_record']['fr-fr'] = "Sélectionnez si vous souhaitez enregistrer l'extension.";
$text['description-user_record']['he-il'] = "בחר אם להקליט את ההרחבה.";
$text['description-user_record']['it-it'] = "";
$text['description-user_record']['ja-jp'] = "拡張子を記録するかどうかを選択します。";
$text['description-user_record']['ka-ge'] = "აირჩიეთ, ჩაწეროთ თუ არა გაფართოება.";
$text['description-user_record']['ko-kr'] = "확장자를 기록할지 여부를 선택하세요.";
$text['description-user_record']['nl-nl'] = "Selecteer of u de extensie wilt opnemen.";
$text['description-user_record']['pl-pl'] = "Wybierz, czy chcesz zapisać rozszerzenie.";
$text['description-user_record']['pt-br'] = "Selecione se deseja gravar a extensão.";
$text['description-user_record']['pt-pt'] = "";
$text['description-user_record']['ro-ro'] = "Selectați dacă doriți să înregistrați extensia.";
$text['description-user_record']['ru-ru'] = "";
$text['description-user_record']['sv-se'] = "";
$text['description-user_record']['tr-tr'] = "Uzantıyı kaydedip kaydetmeyeceğinizi seçin.";
$text['description-user_record']['uk-ua'] = "Виберіть, чи записувати розширення.";
$text['description-user_record']['zh-cn'] = "选择是否记录分机号。";
$text['description-user_settings_description']['en-us'] = "Choose the setting to modify.";
$text['description-user_settings_description']['en-gb'] = "Choose the setting to modify.";
$text['description-user_settings_description']['ar-eg'] = "اختر الإعداد الذي تريد تعديله.";
$text['description-user_settings_description']['de-at'] = "Choose the setting to modify.";
$text['description-user_settings_description']['de-ch'] = "Wählen Sie die zu ändernde Einstellung aus.";
$text['description-user_settings_description']['de-de'] = "Wählen Sie die zu ändernde Einstellung aus.";
$text['description-user_settings_description']['el-gr'] = "Επιλέξτε τη ρύθμιση που θέλετε να τροποποιήσετε.";
$text['description-user_settings_description']['en-gb'] = "Choose the setting to modify.";
$text['description-user_settings_description']['en-us'] = "Choose the setting to modify.";
$text['description-user_settings_description']['es-cl'] = "Choose the setting to modify.";
$text['description-user_settings_description']['es-mx'] = "Seleccione la configuración que desea modificar.";
$text['description-user_settings_description']['fr-ca'] = "Choisissez le paramètre à modifier.";
$text['description-user_settings_description']['fr-fr'] = "Choose the setting to modify.";
$text['description-user_settings_description']['he-il'] = "בחר את ההגדרה לשינוי.";
$text['description-user_settings_description']['it-it'] = "Choose the setting to modify.";
$text['description-user_settings_description']['ja-jp'] = "変更する設定を選択します。";
$text['description-user_settings_description']['ka-ge'] = "აირჩიეთ პარამეტრი შესაცვლელად.";
$text['description-user_settings_description']['ko-kr'] = "수정할 설정을 선택하세요.";
$text['description-user_settings_description']['nl-nl'] = "Kies de instelling die u wilt wijzigen.";
$text['description-user_settings_description']['pl-pl'] = "Wybierz ustawienie, które chcesz zmodyfikować.";
$text['description-user_settings_description']['pt-br'] = "Choose the setting to modify.";
$text['description-user_settings_description']['pt-pt'] = "Choose the setting to modify.";
$text['description-user_settings_description']['ro-ro'] = "Alegeți setarea de modificat.";
$text['description-user_settings_description']['ru-ru'] = "Выберите настройку для изменения.";
$text['description-user_settings_description']['sv-se'] = "Choose the setting to modify.";
$text['description-user_settings_description']['tr-tr'] = "Değiştirilecek ayarı seçin.";
$text['description-user_settings_description']['uk-ua'] = "Виберіть параметр, який потрібно змінити.";
$text['description-user_settings_description']['zh-cn'] = "选择要修改的设置。";
$text['description-user_status']['en-us'] = "Select the new status for the selected users.";
$text['description-user_status']['en-gb'] = "Select the new status for the selected users.";
$text['description-user_status']['ar-eg'] = "حدد الحالة الجديدة للمستخدمين المحددين.";
$text['description-user_status']['de-at'] = "Select the new status for the selected users.";
$text['description-user_status']['de-ch'] = "Wählen Sie den neuen Status für die ausgewählten Benutzer aus.";
$text['description-user_status']['de-de'] = "Wählen Sie den neuen Status für die ausgewählten Benutzer aus.";
$text['description-user_status']['el-gr'] = "Επιλέξτε τη νέα κατάσταση για τους επιλεγμένους χρήστες.";
$text['description-user_status']['en-gb'] = "Select the new status for the selected users.";
$text['description-user_status']['en-us'] = "Select the new status for the selected users.";
$text['description-user_status']['es-cl'] = "Select the new status for the selected users.";
$text['description-user_status']['es-mx'] = "Seleccione el nuevo estado para los usuarios seleccionados.";
$text['description-user_status']['fr-ca'] = "Sélectionnez le nouveau statut pour les utilisateurs sélectionnés.";
$text['description-user_status']['fr-fr'] = "Select the new status for the selected users.";
$text['description-user_status']['he-il'] = "בחר את הסטטוס החדש עבור המשתמשים שנבחרו.";
$text['description-user_status']['it-it'] = "Select the new status for the selected users.";
$text['description-user_status']['ja-jp'] = "選択したユーザーの新しいステータスを選択します。";
$text['description-user_status']['ka-ge'] = "აირჩიეთ ახალი სტატუსი არჩეული მომხმარებლებისთვის.";
$text['description-user_status']['ko-kr'] = "선택한 사용자에 대한 새로운 상태를 선택합니다.";
$text['description-user_status']['nl-nl'] = "Selecteer de nieuwe status voor de geselecteerde gebruikers.";
$text['description-user_status']['pl-pl'] = "Wybierz nowy status dla wybranych użytkowników.";
$text['description-user_status']['pt-br'] = "Select the new status for the selected users.";
$text['description-user_status']['pt-pt'] = "Select the new status for the selected users.";
$text['description-user_status']['ro-ro'] = "Selectați noua stare pentru utilizatorii selectați.";
$text['description-user_status']['ru-ru'] = "Выберите новый статус для выбранных пользователей.";
$text['description-user_status']['sv-se'] = "Select the new status for the selected users.";
$text['description-user_status']['tr-tr'] = "Seçili kullanıcılar için yeni durumu seçin.";
$text['description-user_status']['uk-ua'] = "Виберіть новий статус для вибраних користувачів.";
$text['description-user_status']['zh-cn'] = "为选定的用户选择新的状态。";
$text['description-voicemail_settings_description']['en-us'] = "Choose the setting to modify.";
$text['description-voicemail_settings_description']['en-gb'] = "Choose the setting to modify.";
$text['description-voicemail_settings_description']['ar-eg'] = "اختر الإعداد الذي تريد تعديله.";
$text['description-voicemail_settings_description']['de-at'] = "Choose the setting to modify.";
$text['description-voicemail_settings_description']['de-ch'] = "Wählen Sie die zu ändernde Einstellung aus.";
$text['description-voicemail_settings_description']['de-de'] = "Wählen Sie die zu ändernde Einstellung aus.";
$text['description-voicemail_settings_description']['el-gr'] = "Επιλέξτε τη ρύθμιση που θέλετε να τροποποιήσετε.";
$text['description-voicemail_settings_description']['en-gb'] = "Choose the setting to modify.";
$text['description-voicemail_settings_description']['en-us'] = "Choose the setting to modify.";
$text['description-voicemail_settings_description']['es-cl'] = "Choose the setting to modify.";
$text['description-voicemail_settings_description']['es-mx'] = "Seleccione la configuración que desea modificar.";
$text['description-voicemail_settings_description']['fr-ca'] = "Choisissez le paramètre à modifier.";
$text['description-voicemail_settings_description']['fr-fr'] = "Choose the setting to modify.";
$text['description-voicemail_settings_description']['he-il'] = "בחר את ההגדרה לשינוי.";
$text['description-voicemail_settings_description']['it-it'] = "Choose the setting to modify.";
$text['description-voicemail_settings_description']['ja-jp'] = "変更する設定を選択します。";
$text['description-voicemail_settings_description']['ka-ge'] = "აირჩიეთ პარამეტრი შესაცვლელად.";
$text['description-voicemail_settings_description']['ko-kr'] = "수정할 설정을 선택하세요.";
$text['description-voicemail_settings_description']['nl-nl'] = "Kies de instelling die u wilt wijzigen.";
$text['description-voicemail_settings_description']['pl-pl'] = "Wybierz ustawienie, które chcesz zmodyfikować.";
$text['description-voicemail_settings_description']['pt-br'] = "Choose the setting to modify.";
$text['description-voicemail_settings_description']['pt-pt'] = "Choose the setting to modify.";
$text['description-voicemail_settings_description']['ro-ro'] = "Alegeți setarea de modificat.";
$text['description-voicemail_settings_description']['ru-ru'] = "Выберите настройку для изменения.";
$text['description-voicemail_settings_description']['sv-se'] = "Choose the setting to modify.";
$text['description-voicemail_settings_description']['tr-tr'] = "Değiştirilecek ayarı seçin.";
$text['description-voicemail_settings_description']['uk-ua'] = "Виберіть параметр, який потрібно змінити.";
$text['description-voicemail_settings_description']['zh-cn'] = "选择要修改的设置。";
$text['header-bulk_account_settings']['en-us'] = "Bulk Account Settings";
$text['header-bulk_account_settings']['en-gb'] = "Bulk Account Settings";
$text['header-bulk_account_settings']['ar-eg'] = "إعدادات الحساب المجمعة";
$text['header-bulk_account_settings']['de-at'] = "Bulk Account Settings";
$text['header-bulk_account_settings']['de-ch'] = "Massenkontoeinstellungen";
$text['header-bulk_account_settings']['de-de'] = "Massenkontoeinstellungen";
$text['header-bulk_account_settings']['el-gr'] = "Μαζικές ρυθμίσεις λογαριασμού";
$text['header-bulk_account_settings']['en-gb'] = "Bulk Account Settings";
$text['header-bulk_account_settings']['en-us'] = "Bulk Account Settings";
$text['header-bulk_account_settings']['es-cl'] = "Bulk Account Settings";
$text['header-bulk_account_settings']['es-mx'] = "Configuración de cuenta masiva";
$text['header-bulk_account_settings']['fr-ca'] = "Paramètres de compte en masse";
$text['header-bulk_account_settings']['fr-fr'] = "Bulk Account Settings";
$text['header-bulk_account_settings']['he-il'] = "הגדרות חשבון בכמות גדולה";
$text['header-bulk_account_settings']['it-it'] = "Bulk Account Settings";
$text['header-bulk_account_settings']['ja-jp'] = "一括アカウント設定";
$text['header-bulk_account_settings']['ka-ge'] = "ნაყარი ანგარიშის პარამეტრები";
$text['header-bulk_account_settings']['ko-kr'] = "대량 계정 설정";
$text['header-bulk_account_settings']['nl-nl'] = "Bulkaccountinstellingen";
$text['header-bulk_account_settings']['pl-pl'] = "Ustawienia zbiorcze konta";
$text['header-bulk_account_settings']['pt-br'] = "Bulk Account Settings";
$text['header-bulk_account_settings']['pt-pt'] = "Bulk Account Settings";
$text['header-bulk_account_settings']['ro-ro'] = "Setările contului în bloc";
$text['header-bulk_account_settings']['ru-ru'] = "Bulk Account Settings";
$text['header-bulk_account_settings']['sv-se'] = "Bulk Account Settings";
$text['header-bulk_account_settings']['tr-tr'] = "Toplu Hesap Ayarları";
$text['header-bulk_account_settings']['uk-ua'] = "Масові налаштування облікового запису";
$text['header-bulk_account_settings']['zh-cn'] = "批量账户设置";
$text['header-devices']['en-us'] = "Devices";
$text['header-devices']['en-gb'] = "Devices";
$text['header-devices']['ar-eg'] = "الأجهزة";
$text['header-devices']['de-at'] = "Devices";
$text['header-devices']['de-ch'] = "Geräte";
$text['header-devices']['de-de'] = "Geräte";
$text['header-devices']['el-gr'] = "Συσκευές";
$text['header-devices']['en-gb'] = "Devices";
$text['header-devices']['en-us'] = "Devices";
$text['header-devices']['es-cl'] = "Devices";
$text['header-devices']['es-mx'] = "Dispositivos";
$text['header-devices']['fr-ca'] = "Appareils";
$text['header-devices']['fr-fr'] = "Devices";
$text['header-devices']['he-il'] = "מכשירים";
$text['header-devices']['it-it'] = "Devices";
$text['header-devices']['ja-jp'] = "デバイス";
$text['header-devices']['ka-ge'] = "მოწყობილობები";
$text['header-devices']['ko-kr'] = "장치";
$text['header-devices']['nl-nl'] = "Apparaten";
$text['header-devices']['pl-pl'] = "Urządzenia";
$text['header-devices']['pt-br'] = "Devices";
$text['header-devices']['pt-pt'] = "Devices";
$text['header-devices']['ro-ro'] = "Dispozitive";
$text['header-devices']['ru-ru'] = "Устройства";
$text['header-devices']['sv-se'] = "Devices";
$text['header-devices']['tr-tr'] = "Cihazlar";
$text['header-devices']['uk-ua'] = "Пристрої";
$text['header-devices']['zh-cn'] = "设备";
$text['header-extensions']['en-us'] = "Extensions";
$text['header-extensions']['en-gb'] = "Extensions";
$text['header-extensions']['ar-eg'] = "الإضافات";
$text['header-extensions']['de-at'] = "Extensions";
$text['header-extensions']['de-ch'] = "Erweiterungen";
$text['header-extensions']['de-de'] = "Erweiterungen";
$text['header-extensions']['el-gr'] = "Επεκτάσεις";
$text['header-extensions']['en-gb'] = "Extensions";