-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathapp_languages.php
More file actions
3165 lines (3038 loc) · 220 KB
/
app_languages.php
File metadata and controls
3165 lines (3038 loc) · 220 KB
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'] = "Anrufweiterleitung";
$text['button-call_routing']['de-ch'] = "Anrufweiterleitung";
$text['button-call_routing']['de-de'] = "Anrufweiterleitung";
$text['button-call_routing']['el-gr'] = "Δρομολόγηση κλήσεων";
$text['button-call_routing']['es-cl'] = "Enrutamiento de llamadas";
$text['button-call_routing']['es-mx'] = "Enrutamiento de llamadas";
$text['button-call_routing']['fr-ca'] = "Routage des appels";
$text['button-call_routing']['fr-fr'] = "Routage des appels";
$text['button-call_routing']['he-il'] = "ניתוב שיחות";
$text['button-call_routing']['it-it'] = "Instradamento delle chiamate";
$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'] = "Roteamento de chamadas";
$text['button-call_routing']['pt-pt'] = "Roteamento de chamadas";
$text['button-call_routing']['ro-ro'] = "Rutarea apelurilor";
$text['button-call_routing']['ru-ru'] = "Маршрутизация звонков";
$text['button-call_routing']['sv-se'] = "Samtalsrouting";
$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'] = "Geräte";
$text['button-devices']['de-ch'] = "Geräte";
$text['button-devices']['de-de'] = "Geräte";
$text['button-devices']['el-gr'] = "Συσκευές";
$text['button-devices']['es-cl'] = "Dispositivos";
$text['button-devices']['es-mx'] = "Dispositivos";
$text['button-devices']['fr-ca'] = "Appareils";
$text['button-devices']['fr-fr'] = "Appareils";
$text['button-devices']['he-il'] = "מכשירים";
$text['button-devices']['it-it'] = "Dispositivi";
$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'] = "Dispositivos";
$text['button-devices']['pt-pt'] = "Dispositivos";
$text['button-devices']['ro-ro'] = "Dispozitive";
$text['button-devices']['ru-ru'] = "Устройства";
$text['button-devices']['sv-se'] = "Enheter";
$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'] = "Erweiterungen";
$text['button-extensions']['de-ch'] = "Erweiterungen";
$text['button-extensions']['de-de'] = "Erweiterungen";
$text['button-extensions']['el-gr'] = "Επεκτάσεις";
$text['button-extensions']['es-cl'] = "Extensiones";
$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'] = "Estensioni";
$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'] = "Extensões";
$text['button-extensions']['pt-pt'] = "Extensões";
$text['button-extensions']['ro-ro'] = "Extensii";
$text['button-extensions']['ru-ru'] = "Расширения";
$text['button-extensions']['sv-se'] = "Tillägg";
$text['button-extensions']['tr-tr'] = "Uzantılar";
$text['button-extensions']['uk-ua'] = "Розширення";
$text['button-extensions']['zh-cn'] = "扩展";
$text['button-gateways']['en-us'] = "Gateways";
$text['button-gateways']['en-gb'] = "Gateways";
$text['button-gateways']['ar-eg'] = "البوابات";
$text['button-gateways']['de-at'] = "Gateways";
$text['button-gateways']['de-ch'] = "Gateways";
$text['button-gateways']['de-de'] = "Gateways";
$text['button-gateways']['el-gr'] = "Πύλες";
$text['button-gateways']['es-cl'] = "Puertas";
$text['button-gateways']['es-mx'] = "Puertas";
$text['button-gateways']['fr-ca'] = "Passerelles";
$text['button-gateways']['fr-fr'] = "Passerelles";
$text['button-gateways']['he-il'] = " أبواب";
$text['button-gateways']['it-it'] = "Gateway";
$text['button-gateways']['ja-jp'] = "ゲートウェイ";
$text['button-gateways']['ka-ge'] = "გამყოფები";
$text['button-gateways']['ko-kr'] = "게이트웨이";
$text['button-gateways']['nl-nl'] = "Gateways";
$text['button-gateways']['pl-pl'] = "Bramy";
$text['button-gateways']['pt-br'] = "Portais";
$text['button-gateways']['pt-pt'] = "Portais";
$text['button-gateways']['ro-ro'] = "Gateway-uri";
$text['button-gateways']['ru-ru'] = "Шлюзы";
$text['button-gateways']['sv-se'] = "Gatewayar";
$text['button-gateways']['tr-tr'] = "Açılışlar";
$text['button-gateways']['uk-ua'] = "Шлюзи";
$text['button-gateways']['zh-cn'] = "网关";
$text['button-submit']['en-us'] = "Submit";
$text['button-submit']['en-gb'] = "Submit";
$text['button-submit']['ar-eg'] = "يُقدِّم";
$text['button-submit']['de-at'] = "Einreichen";
$text['button-submit']['de-ch'] = "Einreichen";
$text['button-submit']['de-de'] = "Einreichen";
$text['button-submit']['el-gr'] = "Υποτάσσομαι";
$text['button-submit']['es-cl'] = "Entregar";
$text['button-submit']['es-mx'] = "Entregar";
$text['button-submit']['fr-ca'] = "Soumettre";
$text['button-submit']['fr-fr'] = "Soumettre";
$text['button-submit']['he-il'] = "לְהַגִישׁ";
$text['button-submit']['it-it'] = "Invia";
$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'] = "Enviar";
$text['button-submit']['pt-pt'] = "Submeter";
$text['button-submit']['ro-ro'] = "Trimiteți";
$text['button-submit']['ru-ru'] = "Отправить";
$text['button-submit']['sv-se'] = "Överlämna";
$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'] = "Benutzer";
$text['button-users']['de-ch'] = "Benutzer";
$text['button-users']['de-de'] = "Benutzer";
$text['button-users']['el-gr'] = "Χρήστες";
$text['button-users']['es-cl'] = "Usuarios";
$text['button-users']['es-mx'] = "Usuarios";
$text['button-users']['fr-ca'] = "Utilisateurs";
$text['button-users']['fr-fr'] = "Utilisateurs";
$text['button-users']['he-il'] = "משתמשים";
$text['button-users']['it-it'] = "Utenti";
$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'] = "Usuários";
$text['button-users']['pt-pt'] = "Usuários";
$text['button-users']['ro-ro'] = "Utilizatori";
$text['button-users']['ru-ru'] = "Пользователи";
$text['button-users']['sv-se'] = "Användare";
$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'] = "Sprachnachrichten";
$text['button-voicemails']['de-ch'] = "Sprachnachrichten";
$text['button-voicemails']['de-de'] = "Sprachnachrichten";
$text['button-voicemails']['el-gr'] = "φωνητικά μηνύματα";
$text['button-voicemails']['es-cl'] = "Mensajes de voz";
$text['button-voicemails']['es-mx'] = "Mensajes de voz";
$text['button-voicemails']['fr-ca'] = "Messages vocaux";
$text['button-voicemails']['fr-fr'] = "Messages vocaux";
$text['button-voicemails']['he-il'] = "הודעות קוליות";
$text['button-voicemails']['it-it'] = "Messaggi vocali";
$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'] = "Mensagens de voz";
$text['button-voicemails']['pt-pt'] = "Mensagens de voz";
$text['button-voicemails']['ro-ro'] = "Mesaje vocale";
$text['button-voicemails']['ru-ru'] = "Голосовые сообщения";
$text['button-voicemails']['sv-se'] = "Röstmeddelanden";
$text['button-voicemails']['tr-tr'] = "Sesli mesajlar";
$text['button-voicemails']['uk-ua'] = "Голосові повідомлення";
$text['button-voicemails']['zh-cn'] = "语音邮件";
$text['confirm-update_devices']['en-us'] = "You are about to update the checked Devices. Do you wish to continue?";
$text['confirm-update_devices']['en-gb'] = "You are about to update the checked Devices. Do you wish to continue?";
$text['confirm-update_devices']['ar-eg'] = "أنت على وشك تحديث الأجهزة المحددة. هل ترغب في المتابعة؟";
$text['confirm-update_devices']['de-at'] = "Sie sind dabei, die ausgewählten Geräte zu aktualisieren. Möchten Sie fortfahren?";
$text['confirm-update_devices']['de-ch'] = "Sie sind dabei, die ausgewählten Geräte zu aktualisieren. Möchten Sie fortfahren?";
$text['confirm-update_devices']['de-de'] = "Sie sind dabei, die ausgewählten Geräte zu aktualisieren. Möchten Sie fortfahren?";
$text['confirm-update_devices']['el-gr'] = "Πρόκειται να ενημερώσετε τις επιλεγμένες συσκευές. Θέλετε να συνεχίσετε;";
$text['confirm-update_devices']['es-cl'] = "Está a punto de actualizar los dispositivos seleccionados. ¿Desea continuar?";
$text['confirm-update_devices']['es-mx'] = "Está a punto de actualizar los dispositivos seleccionados. ¿Desea continuar?";
$text['confirm-update_devices']['fr-ca'] = "Vous êtes sur le point de mettre à jour les appareils sélectionnés. Voulez-vous continuer ?";
$text['confirm-update_devices']['fr-fr'] = "Vous êtes sur le point de mettre à jour les appareils sélectionnés. Souhaitez-vous continuer ?";
$text['confirm-update_devices']['he-il'] = "אתה עומד לעדכן את המכשירים המסומנים. האם ברצונך להמשיך?";
$text['confirm-update_devices']['it-it'] = "Stai per aggiornare i dispositivi selezionati. Desideri continuare?";
$text['confirm-update_devices']['ja-jp'] = "選択したデバイスを更新しようとしています。続行しますか?";
$text['confirm-update_devices']['ka-ge'] = "თქვენ აპირებთ მონიშნული მოწყობილობების განახლებას. გსურთ გაგრძელება?";
$text['confirm-update_devices']['ko-kr'] = "선택하신 장치들을 업데이트하려고 합니다. 계속하시겠습니까?";
$text['confirm-update_devices']['nl-nl'] = "U staat op het punt de geselecteerde apparaten bij te werken. Wilt u doorgaan?";
$text['confirm-update_devices']['pl-pl'] = "Zamierzasz zaktualizować zaznaczone urządzenia. Czy chcesz kontynuować?";
$text['confirm-update_devices']['pt-br'] = "Você está prestes a atualizar os dispositivos selecionados. Deseja continuar?";
$text['confirm-update_devices']['pt-pt'] = "Está prestes a atualizar os dispositivos selecionados. Deseja continuar?";
$text['confirm-update_devices']['ro-ro'] = "Sunteți pe cale să actualizați dispozitivele verificate. Doriți să continuați?";
$text['confirm-update_devices']['ru-ru'] = "Вы собираетесь обновить выбранные устройства. Вы хотите продолжить?";
$text['confirm-update_devices']['sv-se'] = "Du håller på att uppdatera de markerade enheterna. Vill du fortsätta?";
$text['confirm-update_devices']['tr-tr'] = "Seçili cihazları güncellemek üzeresiniz. Devam etmek istiyor musunuz?";
$text['confirm-update_devices']['uk-ua'] = "Ви збираєтеся оновити позначені пристрої. Продовжити?";
$text['confirm-update_devices']['zh-cn'] = "您即将更新已选中的设备。是否要继续?";
$text['confirm-update_extensions']['en-us'] = "You are about to update the checked Extensions. Do you wish to continue?";
$text['confirm-update_extensions']['en-gb'] = "You are about to update the checked Extensions. Do you wish to continue?";
$text['confirm-update_extensions']['ar-eg'] = "أنت على وشك تحديث الإضافات المحددة. هل ترغب في المتابعة؟";
$text['confirm-update_extensions']['de-at'] = "Sie sind im Begriff, die ausgewählten Erweiterungen zu aktualisieren. Möchten Sie fortfahren?";
$text['confirm-update_extensions']['de-ch'] = "Sie sind im Begriff, die ausgewählten Erweiterungen zu aktualisieren. Möchten Sie fortfahren?";
$text['confirm-update_extensions']['de-de'] = "Sie sind im Begriff, die ausgewählten Erweiterungen zu aktualisieren. Möchten Sie fortfahren?";
$text['confirm-update_extensions']['el-gr'] = "Πρόκειται να ενημερώσετε τις επιλεγμένες επεκτάσεις. Θέλετε να συνεχίσετε;";
$text['confirm-update_extensions']['es-cl'] = "Está a punto de actualizar las extensiones seleccionadas. ¿Desea continuar?";
$text['confirm-update_extensions']['es-mx'] = "Está a punto de actualizar las extensiones seleccionadas. ¿Desea continuar?";
$text['confirm-update_extensions']['fr-ca'] = "Vous êtes sur le point de mettre à jour les extensions sélectionnées. Voulez-vous continuer ?";
$text['confirm-update_extensions']['fr-fr'] = "Vous êtes sur le point de mettre à jour les extensions sélectionnées. Souhaitez-vous continuer ?";
$text['confirm-update_extensions']['he-il'] = "אתה עומד לעדכן את התוספים המסומנים. האם ברצונך להמשיך?";
$text['confirm-update_extensions']['it-it'] = "Stai per aggiornare le estensioni selezionate. Desideri continuare?";
$text['confirm-update_extensions']['ja-jp'] = "選択した拡張機能をアップデートしようとしています。続行しますか?";
$text['confirm-update_extensions']['ka-ge'] = "თქვენ აპირებთ მონიშნული გაფართოებების განახლებას. გსურთ გაგრძელება?";
$text['confirm-update_extensions']['ko-kr'] = "선택하신 확장 프로그램을 업데이트하려고 합니다. 계속하시겠습니까?";
$text['confirm-update_extensions']['nl-nl'] = "U staat op het punt de geselecteerde extensies bij te werken. Wilt u doorgaan?";
$text['confirm-update_extensions']['pl-pl'] = "Zamierzasz zaktualizować zaznaczone rozszerzenia. Czy chcesz kontynuować?";
$text['confirm-update_extensions']['pt-br'] = "Você está prestes a atualizar as extensões selecionadas. Deseja continuar?";
$text['confirm-update_extensions']['pt-pt'] = "Está prestes a atualizar as extensões selecionadas. Deseja continuar?";
$text['confirm-update_extensions']['ro-ro'] = "Вы собираетесь обновить выбранные расширения. Вы хотите продолжить?";
$text['confirm-update_extensions']['ru-ru'] = "Вы собираетесь обновить выбранные расширения. Вы хотите продолжить?";
$text['confirm-update_extensions']['sv-se'] = "Du håller på att uppdatera de markerade tilläggen. Vill du fortsätta?";
$text['confirm-update_extensions']['tr-tr'] = "Seçili uzantıları güncellemek üzeresiniz. Devam etmek istiyor musunuz?";
$text['confirm-update_extensions']['uk-ua'] = "Ви збираєтеся оновити перевірені розширення. Продовжити?";
$text['confirm-update_extensions']['zh-cn'] = "您即将更新已选中的扩展程序。您确定要继续吗?";
$text['confirm-update_users']['en-us'] = "You are about to update the checked Users. Do you wish to continue?";
$text['confirm-update_users']['en-gb'] = "You are about to update the checked Users. Do you wish to continue?";
$text['confirm-update_users']['ar-eg'] = "أنت على وشك تحديث المستخدمين المحددين. هل ترغب في المتابعة؟";
$text['confirm-update_users']['de-at'] = "Sie sind dabei, die ausgewählten Benutzer zu aktualisieren. Möchten Sie fortfahren?";
$text['confirm-update_users']['de-ch'] = "Sie sind dabei, die ausgewählten Benutzer zu aktualisieren. Möchten Sie fortfahren?";
$text['confirm-update_users']['de-de'] = "Sie sind dabei, die ausgewählten Benutzer zu aktualisieren. Möchten Sie fortfahren?";
$text['confirm-update_users']['el-gr'] = "Πρόκειται να ενημερώσετε τους επιλεγμένους χρήστες. Θέλετε να συνεχίσετε;";
$text['confirm-update_users']['es-cl'] = "Está a punto de actualizar los usuarios seleccionados. ¿Desea continuar?";
$text['confirm-update_users']['es-mx'] = "Está a punto de actualizar los usuarios seleccionados. ¿Desea continuar?";
$text['confirm-update_users']['fr-ca'] = "Vous êtes sur le point de mettre à jour les utilisateurs sélectionnés. Voulez-vous continuer ?";
$text['confirm-update_users']['fr-fr'] = "Vous êtes sur le point de mettre à jour les utilisateurs sélectionnés. Souhaitez-vous continuer ?";
$text['confirm-update_users']['he-il'] = "אתה עומד לעדכן את המשתמשים המסומנים. האם ברצונך להמשיך?";
$text['confirm-update_users']['it-it'] = "Stai per aggiornare gli utenti selezionati. Desideri continuare?";
$text['confirm-update_users']['ja-jp'] = "選択したユーザー情報を更新しようとしています。続行しますか?";
$text['confirm-update_users']['ka-ge'] = "თქვენ აპირებთ მონიშნული მომხმარებლების განახლებას. გსურთ გაგრძელება?";
$text['confirm-update_users']['ko-kr'] = "선택하신 사용자 정보를 업데이트하려고 합니다. 계속하시겠습니까?";
$text['confirm-update_users']['nl-nl'] = "U staat op het punt de geselecteerde gebruikers bij te werken. Wilt u doorgaan?";
$text['confirm-update_users']['pl-pl'] = "Zamierzasz zaktualizować zaznaczonych użytkowników. Czy chcesz kontynuować?";
$text['confirm-update_users']['pt-br'] = "Você está prestes a atualizar os usuários selecionados. Deseja continuar?";
$text['confirm-update_users']['pt-pt'] = "Está prestes a atualizar os utilizadores selecionados. Deseja continuar?";
$text['confirm-update_users']['ro-ro'] = "Sunteți pe cale să actualizați utilizatorii bifați. Doriți să continuați?";
$text['confirm-update_users']['ru-ru'] = "Вы собираетесь обновить данные выбранных пользователей. Вы хотите продолжить?";
$text['confirm-update_users']['sv-se'] = "Du håller på att uppdatera de markerade användarna. Vill du fortsätta?";
$text['confirm-update_users']['tr-tr'] = "Seçili kullanıcıları güncellemek üzeresiniz. Devam etmek istiyor musunuz?";
$text['confirm-update_users']['uk-ua'] = "Ви збираєтеся оновити перевірених користувачів. Продовжити?";
$text['confirm-update_users']['zh-cn'] = "您即将更新已选中的用户。是否要继续?";
$text['confirm-update_voicemails']['en-us'] = "You are about to update the checked Voicemails. Do you wish to continue?";
$text['confirm-update_voicemails']['en-gb'] = "You are about to update the checked Voicemails. Do you wish to continue?";
$text['confirm-update_voicemails']['ar-eg'] = "أنت على وشك تحديث رسائل البريد الصوتي التي تم تحديدها. هل ترغب في المتابعة؟";
$text['confirm-update_voicemails']['de-at'] = "Sie sind dabei, die ausgewählten Voicemails zu aktualisieren. Möchten Sie fortfahren?";
$text['confirm-update_voicemails']['de-ch'] = "Sie sind dabei, die ausgewählten Voicemails zu aktualisieren. Möchten Sie fortfahren?";
$text['confirm-update_voicemails']['de-de'] = "Sie sind dabei, die ausgewählten Voicemails zu aktualisieren. Möchten Sie fortfahren?";
$text['confirm-update_voicemails']['el-gr'] = "Πρόκειται να ενημερώσετε τα επιλεγμένα φωνητικά μηνύματα. Θέλετε να συνεχίσετε;";
$text['confirm-update_voicemails']['es-cl'] = "Está a punto de actualizar los mensajes de voz seleccionados. ¿Desea continuar?";
$text['confirm-update_voicemails']['es-mx'] = "Está a punto de actualizar los mensajes de voz seleccionados. ¿Desea continuar?";
$text['confirm-update_voicemails']['fr-ca'] = "Vous êtes sur le point de mettre à jour les messages vocaux consultés. Voulez-vous continuer ?";
$text['confirm-update_voicemails']['fr-fr'] = "Vous êtes sur le point de mettre à jour les messages vocaux sélectionnés. Souhaitez-vous continuer ?";
$text['confirm-update_voicemails']['he-il'] = "אתה עומד לעדכן את הודעות הדואר הקוליות שבדקת. האם ברצונך להמשיך?";
$text['confirm-update_voicemails']['it-it'] = "Stai per aggiornare i messaggi vocali selezionati. Desideri continuare?";
$text['confirm-update_voicemails']['ja-jp'] = "選択したボイスメールを更新しようとしています。続行しますか?";
$text['confirm-update_voicemails']['ka-ge'] = "თქვენ აპირებთ მონიშნული ხმოვანი შეტყობინებების განახლებას. გსურთ გაგრძელება?";
$text['confirm-update_voicemails']['ko-kr'] = "선택하신 음성 메시지를 업데이트하려고 합니다. 계속하시겠습니까?";
$text['confirm-update_voicemails']['nl-nl'] = "U staat op het punt de geselecteerde voicemailberichten bij te werken. Wilt u doorgaan?";
$text['confirm-update_voicemails']['pl-pl'] = "Za chwilę zaktualizujesz zaznaczone wiadomości głosowe. Czy chcesz kontynuować?";
$text['confirm-update_voicemails']['pt-br'] = "Você está prestes a atualizar as mensagens de voz selecionadas. Deseja continuar?";
$text['confirm-update_voicemails']['pt-pt'] = "Está prestes a atualizar as mensagens de voz verificadas. Deseja continuar?";
$text['confirm-update_voicemails']['ro-ro'] = "Ești pe cale să actualizezi mesajele vocale verificate. Dorești să continui?";
$text['confirm-update_voicemails']['ru-ru'] = "Вы собираетесь обновить отмеченные голосовые сообщения. Вы хотите продолжить?";
$text['confirm-update_voicemails']['sv-se'] = "Du håller på att uppdatera de kontrollerade röstmeddelandena. Vill du fortsätta?";
$text['confirm-update_voicemails']['tr-tr'] = "Seçili sesli mesajları güncellemek üzeresiniz. Devam etmek istiyor musunuz?";
$text['confirm-update_voicemails']['uk-ua'] = "Ви збираєтеся оновити перевірені голосові повідомлення. Продовжити?";
$text['confirm-update_voicemails']['zh-cn'] = "您即将更新已选中的语音留言。您确定要继续吗?";
$text['description-devices_settings']['en-us'] = "Select the Setting to modify. Then define (or select) the new Value to update the checked Devices.";
$text['description-devices_settings']['en-gb'] = "Select the Setting to modify. Then define (or select) the new Value to update the checked Devices.";
$text['description-devices_settings']['ar-eg'] = "حدد الإعداد الذي ترغب في تعديله. ثم حدد (أو أدخل) القيمة الجديدة لتحديث الأجهزة المحددة.";
$text['description-devices_settings']['de-at'] = "Wählen Sie die Einstellung aus, die Sie ändern möchten. Definieren (oder wählen) Sie anschließend den neuen Wert, um die ausgewählten Geräte zu aktualisieren.";
$text['description-devices_settings']['de-ch'] = "Wählen Sie die Einstellung aus, die Sie ändern möchten. Definieren (oder wählen) Sie anschließend den neuen Wert, um die ausgewählten Geräte zu aktualisieren.";
$text['description-devices_settings']['de-de'] = "Wählen Sie die Einstellung aus, die Sie ändern möchten. Definieren (oder wählen) Sie anschließend den neuen Wert, um die ausgewählten Geräte zu aktualisieren.";
$text['description-devices_settings']['el-gr'] = "Επιλέξτε τη Ρύθμιση που θέλετε να τροποποιήσετε. Στη συνέχεια, ορίστε (ή επιλέξτε) τη νέα Τιμή για να ενημερώσετε τις επιλεγμένες Συσκευές.";
$text['description-devices_settings']['es-cl'] = "Seleccione la configuración que desea modificar. A continuación, defina (o seleccione) el nuevo valor para actualizar los dispositivos seleccionados.";
$text['description-devices_settings']['es-mx'] = "Seleccione la configuración que desea modificar. A continuación, defina (o seleccione) el nuevo valor para actualizar los dispositivos seleccionados.";
$text['description-devices_settings']['fr-ca'] = "Sélectionnez le paramètre à modifier. Ensuite, définissez (ou sélectionnez) la nouvelle valeur pour mettre à jour les appareils cochés.";
$text['description-devices_settings']['fr-fr'] = "Sélectionnez le paramètre à modifier. Définissez ensuite (ou sélectionnez) la nouvelle valeur pour mettre à jour les appareils sélectionnés.";
$text['description-devices_settings']['he-il'] = "בחר את ההגדרה שברצונך לשנות. לאחר מכן הגדר (או בחר) את הערך החדש כדי לעדכן את המכשירים המסומנים.";
$text['description-devices_settings']['it-it'] = "Seleziona l'impostazione da modificare. Quindi definisci (o seleziona) il nuovo valore per aggiornare i dispositivi selezionati.";
$text['description-devices_settings']['ja-jp'] = "変更したい設定を選択してください。次に、チェックを入れたデバイスに適用する新しい値を定義(または選択)してください。";
$text['description-devices_settings']['ka-ge'] = "აირჩიეთ შესაცვლელი პარამეტრი. შემდეგ განსაზღვრეთ (ან აირჩიეთ) ახალი მნიშვნელობა მონიშნული მოწყობილობების განახლებისთვის.";
$text['description-devices_settings']['ko-kr'] = "수정할 설정을 선택하세요. 그런 다음 선택한 장치에 적용할 새 값을 정의(또는 선택)하세요.";
$text['description-devices_settings']['nl-nl'] = "Selecteer de instelling die u wilt wijzigen. Definieer vervolgens de nieuwe waarde (of selecteer deze) om de geselecteerde apparaten bij te werken.";
$text['description-devices_settings']['pl-pl'] = "Wybierz ustawienie, które chcesz zmodyfikować. Następnie określ (lub wybierz) nową wartość, aby zaktualizować zaznaczone urządzenia.";
$text['description-devices_settings']['pt-br'] = "Selecione a configuração a ser modificada. Em seguida, defina (ou selecione) o novo valor para atualizar os dispositivos selecionados.";
$text['description-devices_settings']['pt-pt'] = "Selecione a configuração que pretende modificar. Em seguida, defina (ou selecione) o novo valor para atualizar os dispositivos marcados.";
$text['description-devices_settings']['ro-ro'] = "Selectați setarea pe care doriți să o modificați. Apoi definiți (sau selectați) noua valoare pentru a actualiza dispozitivele bifate.";
$text['description-devices_settings']['ru-ru'] = "Выберите параметр, который хотите изменить. Затем определите (или выберите) новое значение для обновления выбранных устройств.";
$text['description-devices_settings']['sv-se'] = "Välj den inställning som ska ändras. Definiera (eller välj) sedan det nya värdet för att uppdatera de markerade enheterna.";
$text['description-devices_settings']['tr-tr'] = "Değiştirmek istediğiniz ayarı seçin. Ardından, işaretli cihazları güncellemek için yeni değeri tanımlayın (veya seçin).";
$text['description-devices_settings']['uk-ua'] = "Виберіть налаштування, яке потрібно змінити. Потім визначте (або виберіть) нове значення, щоб оновити позначені пристрої.";
$text['description-devices_settings']['zh-cn'] = "选择要修改的设置。然后定义(或选择)新值,以更新选中的设备。";
$text['description-extension_settings']['en-us'] = "Select the Setting to modify. Then define (or select) the new Value to update the checked Extensions.";
$text['description-extension_settings']['en-gb'] = "Select the Setting to modify. Then define (or select) the new Value to update the checked Extensions.";
$text['description-extension_settings']['ar-eg'] = "حدد الإعداد الذي ترغب في تعديله. ثم حدد (أو أدخل) القيمة الجديدة لتحديث الإضافات المحددة.";
$text['description-extension_settings']['de-at'] = "Wählen Sie die zu ändernde Einstellung aus. Definieren (oder wählen) Sie anschließend den neuen Wert, um die ausgewählten Erweiterungen zu aktualisieren.";
$text['description-extension_settings']['de-ch'] = "Wählen Sie die zu ändernde Einstellung aus. Definieren (oder wählen) Sie anschließend den neuen Wert, um die ausgewählten Erweiterungen zu aktualisieren.";
$text['description-extension_settings']['de-de'] = "Wählen Sie die zu ändernde Einstellung aus. Definieren (oder wählen) Sie anschließend den neuen Wert, um die ausgewählten Erweiterungen zu aktualisieren.";
$text['description-extension_settings']['el-gr'] = "Επιλέξτε τη Ρύθμιση που θέλετε να τροποποιήσετε. Στη συνέχεια, ορίστε (ή επιλέξτε) τη νέα Τιμή για να ενημερώσετε τις επιλεγμένες Επεκτάσεις.";
$text['description-extension_settings']['es-cl'] = "Seleccione la configuración que desea modificar. A continuación, defina (o seleccione) el nuevo valor para actualizar las extensiones seleccionadas.";
$text['description-extension_settings']['es-mx'] = "Seleccione la configuración que desea modificar. A continuación, defina (o seleccione) el nuevo valor para actualizar las extensiones seleccionadas.";
$text['description-extension_settings']['fr-ca'] = "Sélectionnez le paramètre à modifier. Ensuite, définissez (ou sélectionnez) la nouvelle valeur pour mettre à jour les extensions cochées.";
$text['description-extension_settings']['fr-fr'] = "Sélectionnez le paramètre à modifier. Définissez ensuite (ou sélectionnez) la nouvelle valeur pour mettre à jour les extensions sélectionnées.";
$text['description-extension_settings']['he-il'] = "בחר את ההגדרה שברצונך לשנות. לאחר מכן הגדר (או בחר) את הערך החדש כדי לעדכן את ההרחבות המסומנות.";
$text['description-extension_settings']['it-it'] = "Seleziona l'impostazione da modificare. Quindi definisci (o seleziona) il nuovo valore per aggiornare le estensioni selezionate.";
$text['description-extension_settings']['ja-jp'] = "変更したい設定を選択してください。次に、チェックを入れた拡張機能を更新するための新しい値を定義(または選択)してください。";
$text['description-extension_settings']['ka-ge'] = "აირჩიეთ შესაცვლელი პარამეტრი. შემდეგ განსაზღვრეთ (ან აირჩიეთ) ახალი მნიშვნელობა მონიშნული გაფართოებების განახლებისთვის.";
$text['description-extension_settings']['ko-kr'] = "수정할 설정을 선택하세요. 그런 다음 선택한 확장 프로그램을 업데이트할 새 값을 정의(또는 선택)하세요.";
$text['description-extension_settings']['nl-nl'] = "Selecteer de instelling die u wilt wijzigen. Definieer vervolgens de nieuwe waarde (of selecteer deze) om de geselecteerde extensies bij te werken.";
$text['description-extension_settings']['pl-pl'] = "Wybierz ustawienie, które chcesz zmodyfikować. Następnie określ (lub wybierz) nową wartość, aby zaktualizować zaznaczone rozszerzenia.";
$text['description-extension_settings']['pt-br'] = "Selecione a configuração a ser modificada. Em seguida, defina (ou selecione) o novo valor para atualizar as extensões selecionadas.";
$text['description-extension_settings']['pt-pt'] = "Selecione a configuração que pretende modificar. Em seguida, defina (ou selecione) o novo valor para atualizar as extensões marcadas.";
$text['description-extension_settings']['ro-ro'] = "Selectați setarea pe care doriți să o modificați. Apoi definiți (sau selectați) noua valoare pentru a actualiza extensiile bifate.";
$text['description-extension_settings']['ru-ru'] = "Выберите параметр, который хотите изменить. Затем определите (или выберите) новое значение для обновления выбранных расширений.";
$text['description-extension_settings']['sv-se'] = "Välj den inställning som ska ändras. Definiera (eller välj) sedan det nya värdet för att uppdatera de markerade tilläggen.";
$text['description-extension_settings']['tr-tr'] = "Değiştirmek istediğiniz ayarı seçin. Ardından, işaretli uzantıları güncellemek için yeni değeri tanımlayın (veya seçin).";
$text['description-extension_settings']['uk-ua'] = "Виберіть налаштування, яке потрібно змінити. Потім визначте (або виберіть) нове значення, щоб оновити позначені розширення.";
$text['description-extension_settings']['zh-cn'] = "选择要修改的设置。然后定义(或选择)新值,以更新已选中的扩展程序。";
$text['description-gateway_settings']['en-us'] = "Select the Setting to modify. Then define (or select) the new Value to update the checked Gateways.";
$text['description-gateway_settings']['en-gb'] = "Select the Setting to modify. Then define (or select) the new Value to update the checked Gateways.";
$text['description-gateway_settings']['ar-eg'] = "حدد الإعداد الذي ترغب في تعديله. ثم حدد (أو أدخل) القيمة الجديدة لتحديث بوابات المحددة.";
$text['description-gateway_settings']['de-at'] = "Wählen Sie die zu ändernde Einstellung aus. Definieren (oder wählen) Sie anschließend den neuen Wert, um die ausgewählten Gateways zu aktualisieren.";
$text['description-gateway_settings']['de-ch'] = "Wählen Sie die zu ändernde Einstellung aus. Definieren (oder wählen) Sie anschließend den neuen Wert, um die ausgewählten Gateways zu aktualisieren.";
$text['description-gateway_settings']['de-de'] = "Wählen Sie die zu ändernde Einstellung aus. Definieren (oder wählen) Sie anschließend den neuen Wert, um die ausgewählten Gateways zu aktualisieren.";
$text['description-gateway_settings']['el-gr'] = "Επιλέξτε τη Ρύθμιση που θέλετε να τροποποιήσετε. Στη συνέχεια, ορίστε (ή επιλέξτε) τη νέα Τιμή για να ενημερώσετε τις επιλεγμένες Πύλες.";
$text['description-gateway_settings']['es-cl'] = "Seleccione la configuración que desea modificar. A continuación, defina (o seleccione) el nuevo valor para actualizar las puertas seleccionadas.";
$text['description-gateway_settings']['es-mx'] = "Seleccione la configuración que desea modificar. A continuación, defina (o seleccione) el nuevo valor para actualizar las puertas seleccionadas.";
$text['description-gateway_settings']['fr-ca'] = "Sélectionnez le paramètre à modifier. Ensuite, définissez (ou sélectionnez) la nouvelle valeur pour mettre à jour les portes cochées.";
$text['description-gateway_settings']['fr-fr'] = "Sélectionnez le paramètre �� modifier. Définissez ensuite (ou sélectionnez) la nouvelle valeur pour mettre à jour les portes sélectionnées.";
$text['description-gateway_settings']['he-il'] = "בחר את ההגדרה שברצונך לשנות. לאחר מכן הגדר (או בחר) את הערך החדש לעדכן את cổтלי הגישה המסומנים.";
$text['description-gateway_settings']['it-it'] = "Seleziona l'impostazione da modificare. Quindi definisci (o seleziona) il nuovo valore per aggiornare i gateway selezionati.";
$text['description-gateway_settings']['ja-jp'] = "変更したい設定を選択してください。次に、チェックを入れたゲートウェイを更新するための新しい値を定義(または選択)してください。";
$text['description-gateway_settings']['ka-ge'] = "აირჩიეთ შესაცვლელი პარამეტრი. შემდეგ განსაზღვრეთ (ან აირჩიეთ) ახალი მნიშვნელობა მონიშნული ゲითウェიების განახლებისთვის.";
$text['description-gateway_settings']['ko-kr'] = "수정할 설정을 선택하세요. 그런 다음 선택한 게이트웨이를 업데이트할 새 값을 정의(또는 선택)하세요.";
$text['description-gateway_settings']['nl-nl'] = "Selecteer de instelling die u wilt wijzigen. Definieer vervolgens de nieuwe waarde (of selecteer deze) om de geselecteerde gateways bij te werken.";
$text['description-gateway_settings']['pl-pl'] = "Wybierz ustawienie, które chcesz zmodyfikować. Następnie określ (lub wybierz) nową wartość, aby zaktualizować zaznaczone bramy.";
$text['description-gateway_settings']['pt-br'] = "Selecione a configuração a ser modificada. Em seguida, defina (ou selecione) o novo valor para atualizar as portas selecionadas.";
$text['description-gateway_settings']['pt-pt'] = "Selecione a configuração que pretende modificar. Em seguida, defina (ou selecione) o novo valor para atualizar as portas marcadas.";
$text['description-gateway_settings']['ro-ro'] = "Selectați setarea pe care doriți să o modificați. Apoi definiți (sau selectați) noua valoare pentru a actualiza gateways-urile bifate.";
$text['description-gateway_settings']['ru-ru'] = "Выберите параметр, который хотите изменить. Затем определите (или выберите) новое значение для обновления выбранных шлюзов.";
$text['description-gateway_settings']['sv-se'] = "Välj den inställning som ska ändras. Definiera (eller välj) sedan det nya värdet för att uppdatera de markerade portarna.";
$text['description-gateway_settings']['tr-tr'] = "Değiştirmek istediğiniz ayarı seçin. Ardından, işaretli ağ geçitlerini güncellemek için yeni değeri tanımlayın (veya seçin).";
$text['description-gateway_settings']['uk-ua'] = "Виберіть налаштування, яке потрібно змінити. Потім визначте (або виберіть) нове значення, щоб оновити позначені шлюзи.";
$text['description-gateway_settings']['zh-cn'] = "选择要修改的设置。然后定义(或选择)新值,以更新已选中的网关。";
$text['description-user_settings']['en-us'] = "Select the Setting to modify. Then define (or select) the new Value to update the checked Users.";
$text['description-user_settings']['en-gb'] = "Select the Setting to modify. Then define (or select) the new Value to update the checked Users.";
$text['description-user_settings']['ar-eg'] = "حدد الإعداد الذي ترغب في تعديله. ثم حدد (أو أدخل) القيمة الجديدة لتحديث المستخدمين المحددين.";
$text['description-user_settings']['de-at'] = "Wählen Sie die Einstellung aus, die Sie ändern möchten. Definieren (oder wählen) Sie anschließend den neuen Wert, um die ausgewählten Benutzer zu aktualisieren.";
$text['description-user_settings']['de-ch'] = "Wählen Sie die Einstellung aus, die Sie ändern möchten. Definieren (oder wählen) Sie anschließend den neuen Wert, um die ausgewählten Benutzer zu aktualisieren.";
$text['description-user_settings']['de-de'] = "Wählen Sie die Einstellung aus, die Sie ändern möchten. Definieren (oder wählen) Sie anschließend den neuen Wert, um die ausgewählten Benutzer zu aktualisieren.";
$text['description-user_settings']['el-gr'] = "Επιλέξτε τη Ρύθμιση που θέλετε να τροποποιήσετε. Στη συνέχεια, ορίστε (ή επιλέξτε) τη νέα Τιμή για να ενημερώσετε τους επιλεγμένους Χρήστες.";
$text['description-user_settings']['es-cl'] = "Seleccione la configuración que desea modificar. A continuación, defina (o seleccione) el nuevo valor para actualizar los usuarios seleccionados.";
$text['description-user_settings']['es-mx'] = "Seleccione la configuración que desea modificar. A continuación, defina (o seleccione) el nuevo valor para actualizar los usuarios seleccionados.";
$text['description-user_settings']['fr-ca'] = "Sélectionnez le paramètre à modifier. Ensuite, définissez (ou sélectionnez) la nouvelle valeur à mettre à jour pour les utilisateurs sélectionnés.";
$text['description-user_settings']['fr-fr'] = "Sélectionnez le paramètre à modifier. Définissez ensuite (ou sélectionnez) la nouvelle valeur pour mettre à jour les utilisateurs sélectionnés.";
$text['description-user_settings']['he-il'] = "בחר את ההגדרה שברצונך לשנות. לאחר מכן הגדר (או בחר) את הערך החדש כדי לעדכן את המשתמשים המסומנים.";
$text['description-user_settings']['it-it'] = "Seleziona l'impostazione da modificare. Quindi definisci (o seleziona) il nuovo valore per aggiornare gli utenti selezionati.";
$text['description-user_settings']['ja-jp'] = "変更したい設定項目を選択してください。次に、チェックを入れたユーザーに適用する新しい値を定義(または選択)してください。";
$text['description-user_settings']['ka-ge'] = "აირჩიეთ შესაცვლელი პარამეტრი. შემდეგ განსაზღვრეთ (ან აირჩიეთ) ახალი მნიშვნელობა მონიშნული მომხმარებლების განახლებისთვის.";
$text['description-user_settings']['ko-kr'] = "수정할 설정을 선택하세요. 그런 다음 선택한 사용자에게 적용할 새 값을 정의(또는 선택)하세요.";
$text['description-user_settings']['nl-nl'] = "Selecteer de instelling die u wilt wijzigen. Definieer vervolgens de nieuwe waarde (of selecteer deze) om de geselecteerde gebruikers bij te werken.";
$text['description-user_settings']['pl-pl'] = "Wybierz ustawienie, które chcesz zmodyfikować. Następnie określ (lub wybierz) nową wartość, aby zaktualizować zaznaczonych użytkowników.";
$text['description-user_settings']['pt-br'] = "Selecione a configuração a ser modificada. Em seguida, defina (ou selecione) o novo valor para atualizar os usuários selecionados.";
$text['description-user_settings']['pt-pt'] = "Selecione a configuração que pretende modificar. Em seguida, defina (ou selecione) o novo valor para atualizar os utilizadores marcados.";
$text['description-user_settings']['ro-ro'] = "Selectați setarea de modificat. Apoi definiți (sau selectați) noua valoare pentru a actualiza utilizatorii bifați.";
$text['description-user_settings']['ru-ru'] = "Выберите параметр, который необходимо изменить. Затем определите (или выберите) новое значение для обновления данных выбранных пользователей.";
$text['description-user_settings']['sv-se'] = "Välj den inställning som ska ändras. Definiera (eller välj) sedan det nya värdet för att uppdatera de markerade användarna.";
$text['description-user_settings']['tr-tr'] = "Değiştirmek istediğiniz ayarı seçin. Ardından, işaretli kullanıcıları güncellemek için yeni değeri tanımlayın (veya seçin).";
$text['description-user_settings']['uk-ua'] = "Виберіть налаштування, яке потрібно змінити. Потім визначте (або виберіть) нове значення, щоб оновити перевірених користувачів.";
$text['description-user_settings']['zh-cn'] = "选择要修改的设置。然后定义(或选择)新值,以更新选中的用户。";
$text['description-voicemail_settings']['en-us'] = "Select the Setting to modify. Then define (or select) the new Value to update the checked Voicemail.";
$text['description-voicemail_settings']['en-gb'] = "Select the Setting to modify. Then define (or select) the new Value to update the checked Voicemail.";
$text['description-voicemail_settings']['ar-eg'] = "حدد الإعداد الذي ترغب في تعديله. ثم حدد (أو أدخل) القيمة الجديدة لتحديث البريد الصوتي المحدد.";
$text['description-voicemail_settings']['de-at'] = "Wählen Sie die Einstellung aus, die Sie ändern möchten. Definieren (oder wählen) Sie anschließend den neuen Wert, um die ausgewählte Voicemail zu aktualisieren.";
$text['description-voicemail_settings']['de-ch'] = "Wählen Sie die Einstellung aus, die Sie ändern möchten. Definieren (oder wählen) Sie anschließend den neuen Wert, um die ausgewählte Voicemail zu aktualisieren.";
$text['description-voicemail_settings']['de-de'] = "Wählen Sie die Einstellung aus, die Sie ändern möchten. Definieren (oder wählen) Sie anschließend den neuen Wert, um die ausgewählte Voicemail zu aktualisieren.";
$text['description-voicemail_settings']['el-gr'] = "Επιλέξτε τη Ρύθμιση που θέλετε να τροποποιήσετε. Στη συνέχεια, ορίστε (ή επιλέξτε) τη νέα Τιμή για να ενημερώσετε τον επιλεγμένο Φωνητικό Ταχυδρομείο.";
$text['description-voicemail_settings']['es-cl'] = "Seleccione la configuración que desea modificar. A continuación, defina (o seleccione) el nuevo valor para actualizar el buzón de voz seleccionado.";
$text['description-voicemail_settings']['es-mx'] = "Seleccione la configuración que desea modificar. A continuación, defina (o seleccione) el nuevo valor para actualizar el buzón de voz seleccionado.";
$text['description-voicemail_settings']['fr-ca'] = "Sélectionnez le paramètre à modifier. Ensuite, définissez (ou sélectionnez) la nouvelle valeur pour mettre à jour la messagerie vocale cochée.";
$text['description-voicemail_settings']['fr-fr'] = "Sélectionnez le paramètre à modifier. Définissez ensuite (ou sélectionnez) la nouvelle valeur pour mettre à jour la messagerie vocale sélectionnée.";
$text['description-voicemail_settings']['he-il'] = "בחר את ההגדרה שברצונך לשנות. לאחר מכן הגדר (או בחר) את הערך החדש כדי לעדכן את הדואר הקולי המסומן.";
$text['description-voicemail_settings']['it-it'] = "Seleziona l'impostazione da modificare. Quindi definisci (o seleziona) il nuovo valore per aggiornare la segreteria telefonica selezionata.";
$text['description-voicemail_settings']['ja-jp'] = "変更したい設定を選択してください。次に、チェックを入れたボイスメールを更新するための新しい値を定義(または選択)してください。";
$text['description-voicemail_settings']['ka-ge'] = "აირჩიეთ შესაცვლელი პარამეტრი. შემდეგ განსაზღვრეთ (ან აირჩიეთ) ახალი მნიშვნელობა შემოწმებული ხმოვანი ფოსტის განახლებისთვის.";
$text['description-voicemail_settings']['ko-kr'] = "수정할 설정을 선택하세요. 그런 다음 선택한 음성 메일 설정을 업데이트할 새 값을 정의(또는 선택)하세요.";
$text['description-voicemail_settings']['nl-nl'] = "Selecteer de instelling die u wilt wijzigen. Definieer vervolgens de nieuwe waarde (of selecteer deze) om de geselecteerde voicemail bij te werken.";
$text['description-voicemail_settings']['pl-pl'] = "Wybierz ustawienie, które chcesz zmodyfikować. Następnie określ (lub wybierz) nową wartość, aby zaktualizować wybraną pocztę głosową.";
$text['description-voicemail_settings']['pt-br'] = "Selecione a configuração a ser modificada. Em seguida, defina (ou selecione) o novo valor para atualizar a caixa postal selecionada.";
$text['description-voicemail_settings']['pt-pt'] = "Selecione a configuração que pretende modificar. Em seguida, defina (ou selecione) o novo valor para atualizar o correio de voz selecionado.";
$text['description-voicemail_settings']['ro-ro'] = "Selectați setarea pe care doriți să o modificați. Apoi definiți (sau selectați) noua valoare pentru a actualiza mesageria vocală verificată.";
$text['description-voicemail_settings']['ru-ru'] = "Выберите параметр, который необходимо изменить. Затем определите (или выберите) новое значение для обновления выбранной голосовой почты.";
$text['description-voicemail_settings']['sv-se'] = "Välj den inställning som ska ändras. Definiera (eller välj) sedan det nya värdet för att uppdatera den markerade röstmeddelandet.";
$text['description-voicemail_settings']['tr-tr'] = "Değiştirmek istediğiniz ayarı seçin. Ardından, işaretli sesli mesajı güncellemek için yeni değeri tanımlayın (veya seçin).";
$text['description-voicemail_settings']['uk-ua'] = "Виберіть налаштування, яке потрібно змінити. Потім визначте (або виберіть) нове значення, щоб оновити позначену голосову пошту.";
$text['description-voicemail_settings']['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'] = "Massenkontoeinstellungen";
$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']['es-cl'] = "Configuración de cuenta masiva";
$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'] = "Paramètres du compte en masse";
$text['header-bulk_account_settings']['he-il'] = "הגדרות חשבון בכמות גדולה";
$text['header-bulk_account_settings']['it-it'] = "Impostazioni account di massa";
$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'] = "Configurações de conta em massa";
$text['header-bulk_account_settings']['pt-pt'] = "Configurações de conta em massa";
$text['header-bulk_account_settings']['ro-ro'] = "Setările contului în bloc";
$text['header-bulk_account_settings']['ru-ru'] = "Групповые настройки учетных записей";
$text['header-bulk_account_settings']['sv-se'] = "Inställningar för masskonton";
$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'] = "Geräte";
$text['header-devices']['de-ch'] = "Geräte";
$text['header-devices']['de-de'] = "Geräte";
$text['header-devices']['el-gr'] = "Συσκευές";
$text['header-devices']['es-cl'] = "Dispositivos";
$text['header-devices']['es-mx'] = "Dispositivos";
$text['header-devices']['fr-ca'] = "Appareils";
$text['header-devices']['fr-fr'] = "Appareils";
$text['header-devices']['he-il'] = "מכשירים";
$text['header-devices']['it-it'] = "Dispositivi";
$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'] = "Dispositivos";
$text['header-devices']['pt-pt'] = "Dispositivos";
$text['header-devices']['ro-ro'] = "Dispozitive";
$text['header-devices']['ru-ru'] = "Устройства";
$text['header-devices']['sv-se'] = "Enheter";
$text['header-devices']['tr-tr'] = "Cihazlar";
$text['header-devices']['uk-ua'] = "Пристрої";
$text['header-devices']['zh-cn'] = "设备";
$text['header-gateways']['en-us'] = "Gateways";
$text['header-gateways']['en-gb'] = "Gateways";
$text['header-gateways']['ar-eg'] = "بوابات";
$text['header-gateways']['de-at'] = "Gateways";
$text['header-gateways']['de-ch'] = "Gateways";
$text['header-gateways']['de-de'] = "Gateways";
$text['header-gateways']['el-gr'] = "Πύλες";
$text['header-gateways']['es-cl'] = "Puertas de Enlace";
$text['header-gateways']['es-mx'] = "Puertas de Enlace";
$text['header-gateways']['fr-ca'] = "Portails";
$text['header-gateways']['fr-fr'] = "Portails";
$text['header-gateways']['he-il'] = " cổ门";
$text['header-gateways']['it-it'] = "Gateway";
$text['header-gateways']['ja-jp'] = "ゲートウェイ";
$text['header-gateways']['ka-ge'] = "გამყოფიები";
$text['header-gateways']['ko-kr'] = "게이트웨이";
$text['header-gateways']['nl-nl'] = "Gateways";
$text['header-gateways']['pl-pl'] = "Bramki";
$text['header-gateways']['pt-br'] = "Portais";
$text['header-gateways']['pt-pt'] = "Portais";
$text['header-gateways']['ro-ro'] = "Poște de intrare";
$text['header-gateways']['ru-ru'] = "Шлюзы";
$text['header-gateways']['sv-se'] = "Gatewayar";
$text['header-gateways']['tr-tr'] = "Ağ Geçitleri";
$text['header-gateways']['uk-ua'] = "Брамки";
$text['header-gateways']['zh-cn'] = "网关";
$text['header-extensions']['en-us'] = "Extensions";
$text['header-extensions']['en-gb'] = "Extensions";
$text['header-extensions']['ar-eg'] = "الإضافات";
$text['header-extensions']['de-at'] = "Erweiterungen";
$text['header-extensions']['de-ch'] = "Erweiterungen";
$text['header-extensions']['de-de'] = "Erweiterungen";
$text['header-extensions']['el-gr'] = "Επεκτάσεις";
$text['header-extensions']['es-cl'] = "Extensiones";
$text['header-extensions']['es-mx'] = "Extensiones";
$text['header-extensions']['fr-ca'] = "Extensions";
$text['header-extensions']['fr-fr'] = "Extensions";
$text['header-extensions']['he-il'] = "הרחבות";
$text['header-extensions']['it-it'] = "Estensioni";
$text['header-extensions']['ja-jp'] = "拡張機能";
$text['header-extensions']['ka-ge'] = "გაფართოებები";
$text['header-extensions']['ko-kr'] = "확장";
$text['header-extensions']['nl-nl'] = "Uitbreidingen";
$text['header-extensions']['pl-pl'] = "Rozszerzenia";
$text['header-extensions']['pt-br'] = "Extensões";
$text['header-extensions']['pt-pt'] = "Extensões";
$text['header-extensions']['ro-ro'] = "Extensii";
$text['header-extensions']['ru-ru'] = "Расширения";
$text['header-extensions']['sv-se'] = "Tillägg";
$text['header-extensions']['tr-tr'] = "Uzantılar";
$text['header-extensions']['uk-ua'] = "Розширення";
$text['header-extensions']['zh-cn'] = "扩展";
$text['header-users']['en-us'] = "Users";
$text['header-users']['en-gb'] = "Users";
$text['header-users']['ar-eg'] = "المستخدمون";
$text['header-users']['de-at'] = "Benutzer";
$text['header-users']['de-ch'] = "Benutzer";
$text['header-users']['de-de'] = "Benutzer";
$text['header-users']['el-gr'] = "Χρήστες";
$text['header-users']['es-cl'] = "Usuarios";
$text['header-users']['es-mx'] = "Usuarios";
$text['header-users']['fr-ca'] = "Utilisateurs";
$text['header-users']['fr-fr'] = "Utilisateurs";
$text['header-users']['he-il'] = "משתמשים";
$text['header-users']['it-it'] = "Utenti";
$text['header-users']['ja-jp'] = "ユーザー";
$text['header-users']['ka-ge'] = "მომხმარებლები";
$text['header-users']['ko-kr'] = "사용자";
$text['header-users']['nl-nl'] = "Gebruikers";
$text['header-users']['pl-pl'] = "Użytkownicy";
$text['header-users']['pt-br'] = "Usuários";
$text['header-users']['pt-pt'] = "Usuários";
$text['header-users']['ro-ro'] = "Utilizatori";
$text['header-users']['ru-ru'] = "Пользователи";
$text['header-users']['sv-se'] = "Användare";
$text['header-users']['tr-tr'] = "Kullanıcılar";
$text['header-users']['uk-ua'] = "Користувачі";
$text['header-users']['zh-cn'] = "用户";
$text['header-voicemails']['en-us'] = "Voicemails";
$text['header-voicemails']['en-gb'] = "Voicemails";
$text['header-voicemails']['ar-eg'] = "البريد الصوتي";
$text['header-voicemails']['de-at'] = "Sprachnachrichten";
$text['header-voicemails']['de-ch'] = "Sprachnachrichten";
$text['header-voicemails']['de-de'] = "Sprachnachrichten";
$text['header-voicemails']['el-gr'] = "φωνητικά μηνύματα";
$text['header-voicemails']['es-cl'] = "Mensajes de voz";
$text['header-voicemails']['es-mx'] = "Mensajes de voz";
$text['header-voicemails']['fr-ca'] = "Messages vocaux";
$text['header-voicemails']['fr-fr'] = "Messages vocaux";
$text['header-voicemails']['he-il'] = "הודעות קוליות";
$text['header-voicemails']['it-it'] = "Messaggi vocali";
$text['header-voicemails']['ja-jp'] = "ボイスメール";
$text['header-voicemails']['ka-ge'] = "ხმოვანი ფოსტა";
$text['header-voicemails']['ko-kr'] = "음성 메일";
$text['header-voicemails']['nl-nl'] = "Voicemailberichten";
$text['header-voicemails']['pl-pl'] = "Poczta głosowa";
$text['header-voicemails']['pt-br'] = "Mensagens de voz";
$text['header-voicemails']['pt-pt'] = "Mensagens de voz";
$text['header-voicemails']['ro-ro'] = "Mesaje vocale";
$text['header-voicemails']['ru-ru'] = "Голосовые сообщения";
$text['header-voicemails']['sv-se'] = "Röstmeddelanden";
$text['header-voicemails']['tr-tr'] = "Sesli mesajlar";
$text['header-voicemails']['uk-ua'] = "Голосові повідомлення";
$text['header-voicemails']['zh-cn'] = "语音邮件";
$text['label-accountcode']['en-us'] = "Account Code";
$text['label-accountcode']['en-gb'] = "Account Code";
$text['label-accountcode']['ar-eg'] = "رمز الحساب";
$text['label-accountcode']['de-at'] = "Kontonummer";
$text['label-accountcode']['de-ch'] = "Kontonummer";
$text['label-accountcode']['de-de'] = "Kontonummer";
$text['label-accountcode']['el-gr'] = "Κωδικός λογαριασμού";
$text['label-accountcode']['es-cl'] = "Código de cuenta";
$text['label-accountcode']['es-mx'] = "Código de cuenta";
$text['label-accountcode']['fr-ca'] = "Code de compte";
$text['label-accountcode']['fr-fr'] = "Code du compte";
$text['label-accountcode']['he-il'] = "קוד חשבון";
$text['label-accountcode']['it-it'] = "Codice conto";
$text['label-accountcode']['ja-jp'] = "アカウントコード";
$text['label-accountcode']['ka-ge'] = "ანგარიშის კოდი";
$text['label-accountcode']['ko-kr'] = "계정코드";
$text['label-accountcode']['nl-nl'] = "Accountcode";
$text['label-accountcode']['pl-pl'] = "Kod konta";
$text['label-accountcode']['pt-br'] = "Código da conta";
$text['label-accountcode']['pt-pt'] = "Código da conta";
$text['label-accountcode']['ro-ro'] = "Cod de cont";
$text['label-accountcode']['ru-ru'] = "Код учетной записи";
$text['label-accountcode']['sv-se'] = "Kontokod";
$text['label-accountcode']['tr-tr'] = "Hesap kodu";
$text['label-accountcode']['uk-ua'] = "Код рахунку";
$text['label-accountcode']['zh-cn'] = "帐号";
$text['label-add']['en-us'] = "Add";
$text['label-add']['en-gb'] = "Add";
$text['label-add']['ar-eg'] = "يضيف";
$text['label-add']['de-at'] = "Hinzufügen";
$text['label-add']['de-ch'] = "Hinzufügen";
$text['label-add']['de-de'] = "Hinzufügen";
$text['label-add']['el-gr'] = "Προσθέτω";
$text['label-add']['es-cl'] = "Agregar";
$text['label-add']['es-mx'] = "Agregar";
$text['label-add']['fr-ca'] = "Ajouter";
$text['label-add']['fr-fr'] = "Ajouter";
$text['label-add']['he-il'] = "לְהוֹסִיף";
$text['label-add']['it-it'] = "Inserisci";
$text['label-add']['ja-jp'] = "追加";
$text['label-add']['ka-ge'] = "დამატება";
$text['label-add']['ko-kr'] = "추가하다";
$text['label-add']['nl-nl'] = "Toevoegen";
$text['label-add']['pl-pl'] = "Dodać";
$text['label-add']['pt-br'] = "Adicionar";
$text['label-add']['pt-pt'] = "Adicionar";
$text['label-add']['ro-ro'] = "Adăuga";
$text['label-add']['ru-ru'] = "Добавить";
$text['label-add']['sv-se'] = "Lägg Till";
$text['label-add']['tr-tr'] = "Eklemek";
$text['label-add']['uk-ua'] = "додати";
$text['label-add']['zh-cn'] = "添加";
$text['label-call_group']['en-us'] = "Call Group";
$text['label-call_group']['en-gb'] = "Call Group";
$text['label-call_group']['ar-eg'] = "مجموعة الاتصال";
$text['label-call_group']['de-at'] = "Anrufgruppe";
$text['label-call_group']['de-ch'] = "Anrufgruppe";
$text['label-call_group']['de-de'] = "Anrufgruppe";
$text['label-call_group']['el-gr'] = "Ομάδα κλήσεων";
$text['label-call_group']['es-cl'] = "Grupo de llamadas";
$text['label-call_group']['es-mx'] = "Grupo de llamadas";
$text['label-call_group']['fr-ca'] = "Groupe d'appel";
$text['label-call_group']['fr-fr'] = "Groupe d'appel";
$text['label-call_group']['he-il'] = "קבוצת שיחה";
$text['label-call_group']['it-it'] = "Gruppo di chiamata";
$text['label-call_group']['ja-jp'] = "グループ通話";
$text['label-call_group']['ka-ge'] = "ზარის ჯგუფი";
$text['label-call_group']['ko-kr'] = "그룹 호출";
$text['label-call_group']['nl-nl'] = "Belgroep";
$text['label-call_group']['pl-pl'] = "Zadzwoń do grupy";
$text['label-call_group']['pt-br'] = "Grupo de Chamada";
$text['label-call_group']['pt-pt'] = "Grupo de Chamadas";
$text['label-call_group']['ro-ro'] = "Grup de apeluri";
$text['label-call_group']['ru-ru'] = "Группа вызовов";
$text['label-call_group']['sv-se'] = "Samtalsgrupp";
$text['label-call_group']['tr-tr'] = "Çağrı Grubu";
$text['label-call_group']['uk-ua'] = "Група викликів";
$text['label-call_group']['zh-cn'] = "呼叫组";
$text['label-call_timeout']['en-us'] = "Call Timeout";
$text['label-call_timeout']['en-gb'] = "Call Timeout";
$text['label-call_timeout']['ar-eg'] = "انتهاء مهلة المكالمة";
$text['label-call_timeout']['de-at'] = "Anruf-Timeout";
$text['label-call_timeout']['de-ch'] = "Anruf-Timeout";
$text['label-call_timeout']['de-de'] = "Anruf-Timeout";
$text['label-call_timeout']['el-gr'] = "Λήξη χρονικού ορίου κλήσης";
$text['label-call_timeout']['es-cl'] = "Tiempo de espera de la llamada";
$text['label-call_timeout']['es-mx'] = "Tiempo de espera de llamada";
$text['label-call_timeout']['fr-ca'] = "Délai d'attente d'appel";
$text['label-call_timeout']['fr-fr'] = "Délai d'attente dépassé";
$text['label-call_timeout']['he-il'] = "זמן קצוב לשיחה";
$text['label-call_timeout']['it-it'] = "Tempo scaduto per la chiamata";
$text['label-call_timeout']['ja-jp'] = "通話タイムアウト";
$text['label-call_timeout']['ka-ge'] = "ზარის დრო ამოიწურა";
$text['label-call_timeout']['ko-kr'] = "통화 시간 초과";
$text['label-call_timeout']['nl-nl'] = "Time-out van oproep";
$text['label-call_timeout']['pl-pl'] = "Przekroczenie limitu czasu połączenia";
$text['label-call_timeout']['pt-br'] = "Tempo limite da chamada";
$text['label-call_timeout']['pt-pt'] = "Tempo limite de chamada";
$text['label-call_timeout']['ro-ro'] = "Timeout apel";
$text['label-call_timeout']['ru-ru'] = "Тайм-аут вызова";
$text['label-call_timeout']['sv-se'] = "Samtalstidsgräns";
$text['label-call_timeout']['tr-tr'] = "Çağrı Zaman Aşımı";
$text['label-call_timeout']['uk-ua'] = "Час очікування виклику";
$text['label-call_timeout']['zh-cn'] = "呼叫超时";
$text['label-confirm_password']['en-us'] = "Confirm Password";
$text['label-confirm_password']['en-gb'] = "Confirm Password";
$text['label-confirm_password']['ar-eg'] = "تأكيد كلمة المرور";
$text['label-confirm_password']['de-at'] = "Passwort bestätigen";
$text['label-confirm_password']['de-ch'] = "Passwort bestätigen";
$text['label-confirm_password']['de-de'] = "Passwort bestätigen";
$text['label-confirm_password']['el-gr'] = "Επιβεβαίωση κωδικού πρόσβασης";
$text['label-confirm_password']['es-cl'] = "confirmar Contraseña";
$text['label-confirm_password']['es-mx'] = "confirmar Contraseña";
$text['label-confirm_password']['fr-ca'] = "Confirmez le mot de passe";
$text['label-confirm_password']['fr-fr'] = "Confirmez le mot de passe";
$text['label-confirm_password']['he-il'] = "אשר את הסיסמה";
$text['label-confirm_password']['it-it'] = "Conferma password";
$text['label-confirm_password']['ja-jp'] = "パスワードを認証する";
$text['label-confirm_password']['ka-ge'] = "დაადასტურეთ პაროლი";
$text['label-confirm_password']['ko-kr'] = "비밀번호 확인";
$text['label-confirm_password']['nl-nl'] = "Bevestig wachtwoord";
$text['label-confirm_password']['pl-pl'] = "Potwierdź hasło";
$text['label-confirm_password']['pt-br'] = "Confirme sua senha";
$text['label-confirm_password']['pt-pt'] = "Confirme a sua senha";
$text['label-confirm_password']['ro-ro'] = "Confirmați parola";
$text['label-confirm_password']['ru-ru'] = "Подтвердить пароль";
$text['label-confirm_password']['sv-se'] = "Bekräfta lösenord";
$text['label-confirm_password']['tr-tr'] = "Şifreyi Onayla";
$text['label-confirm_password']['uk-ua'] = "Підтвердьте пароль";
$text['label-confirm_password']['zh-cn'] = "确认密码";
$text['label-description']['en-us'] = "Description";
$text['label-description']['en-gb'] = "Description";
$text['label-description']['ar-eg'] = "وصف";
$text['label-description']['de-at'] = "Beschreibung";
$text['label-description']['de-ch'] = "Beschreibung";
$text['label-description']['de-de'] = "Beschreibung";
$text['label-description']['el-gr'] = "Περιγραφή";
$text['label-description']['es-cl'] = "Descripción";
$text['label-description']['es-mx'] = "Descripción";
$text['label-description']['fr-ca'] = "Description";
$text['label-description']['fr-fr'] = "Description";
$text['label-description']['he-il'] = "תֵאוּר";
$text['label-description']['it-it'] = "Descrizione";
$text['label-description']['ja-jp'] = "説明";
$text['label-description']['ka-ge'] = "აღწერა";
$text['label-description']['ko-kr'] = "설명";
$text['label-description']['nl-nl'] = "Beschrijving";
$text['label-description']['pl-pl'] = "Opis";
$text['label-description']['pt-br'] = "Descrição";
$text['label-description']['pt-pt'] = "Descrição";
$text['label-description']['ro-ro'] = "Descriere";
$text['label-description']['ru-ru'] = "Описание";
$text['label-description']['sv-se'] = "Beskrivning";
$text['label-description']['tr-tr'] = "Tanım";
$text['label-description']['uk-ua'] = "опис";
$text['label-description']['zh-cn'] = "描述";
$text['label-destination']['en-us'] = "Destination";
$text['label-destination']['en-gb'] = "Destination";
$text['label-destination']['ar-eg'] = "وجهة";
$text['label-destination']['de-at'] = "Ziel";
$text['label-destination']['de-ch'] = "Ziel";
$text['label-destination']['de-de'] = "Ziel";
$text['label-destination']['el-gr'] = "Προορισμός";
$text['label-destination']['es-cl'] = "Destino";
$text['label-destination']['es-mx'] = "Destino";
$text['label-destination']['fr-ca'] = "Destination";
$text['label-destination']['fr-fr'] = "Destination";
$text['label-destination']['he-il'] = "יַעַד";
$text['label-destination']['it-it'] = "Destinazione";
$text['label-destination']['ja-jp'] = "行き先";
$text['label-destination']['ka-ge'] = "დანიშნულება";
$text['label-destination']['ko-kr'] = "목적지";
$text['label-destination']['nl-nl'] = "Bestemming";
$text['label-destination']['pl-pl'] = "Miejsce docelowe";
$text['label-destination']['pt-br'] = "Destino";
$text['label-destination']['pt-pt'] = "Destino";
$text['label-destination']['ro-ro'] = "Destinaţie";
$text['label-destination']['ru-ru'] = "Назначение";
$text['label-destination']['sv-se'] = "Destination";
$text['label-destination']['tr-tr'] = "Varış noktası";
$text['label-destination']['uk-ua'] = "Пункт призначення";
$text['label-destination']['zh-cn'] = "目的地";
$text['label-device_address']['en-us'] = "Address";
$text['label-device_address']['en-gb'] = "Address";
$text['label-device_address']['ar-eg'] = "عنوان";
$text['label-device_address']['de-at'] = "Adresse";
$text['label-device_address']['de-ch'] = "Adresse";
$text['label-device_address']['de-de'] = "Adresse";
$text['label-device_address']['el-gr'] = "Διεύθυνση";
$text['label-device_address']['es-cl'] = "DIRECCIÓN";
$text['label-device_address']['es-mx'] = "DIRECCIÓN";
$text['label-device_address']['fr-ca'] = "Adresse";
$text['label-device_address']['fr-fr'] = "Adresse";
$text['label-device_address']['he-il'] = "כְּתוֹבֶת";
$text['label-device_address']['it-it'] = "Indirizzo";
$text['label-device_address']['ja-jp'] = "住所";
$text['label-device_address']['ka-ge'] = "მისამართი";
$text['label-device_address']['ko-kr'] = "주소";
$text['label-device_address']['nl-nl'] = "Adres";
$text['label-device_address']['pl-pl'] = "Adres";
$text['label-device_address']['pt-br'] = "Endereço";
$text['label-device_address']['pt-pt'] = "Morado";
$text['label-device_address']['ro-ro'] = "Adresa";
$text['label-device_address']['ru-ru'] = "адрес";
$text['label-device_address']['sv-se'] = "Adress";
$text['label-device_address']['tr-tr'] = "Adres";
$text['label-device_address']['uk-ua'] = "Адреса";
$text['label-device_address']['zh-cn'] = "地址";
$text['label-device_description']['en-us'] = "Description";
$text['label-device_description']['en-gb'] = "Description";
$text['label-device_description']['ar-eg'] = "وصف";
$text['label-device_description']['de-at'] = "Beschreibung";
$text['label-device_description']['de-ch'] = "Beschreibung";
$text['label-device_description']['de-de'] = "Beschreibung";
$text['label-device_description']['el-gr'] = "Περιγραφή";
$text['label-device_description']['es-cl'] = "Descripción";
$text['label-device_description']['es-mx'] = "Descripción";
$text['label-device_description']['fr-ca'] = "Description";
$text['label-device_description']['fr-fr'] = "Description";
$text['label-device_description']['he-il'] = "תֵאוּר";
$text['label-device_description']['it-it'] = "Descrizione";
$text['label-device_description']['ja-jp'] = "説明";
$text['label-device_description']['ka-ge'] = "აღწერა";
$text['label-device_description']['ko-kr'] = "설명";
$text['label-device_description']['nl-nl'] = "Beschrijving";
$text['label-device_description']['pl-pl'] = "Opis";
$text['label-device_description']['pt-br'] = "Descrição";
$text['label-device_description']['pt-pt'] = "Descrição";
$text['label-device_description']['ro-ro'] = "Descriere";
$text['label-device_description']['ru-ru'] = "Описание";
$text['label-device_description']['sv-se'] = "Beskrivning";
$text['label-device_description']['tr-tr'] = "Tanım";
$text['label-device_description']['uk-ua'] = "опис";
$text['label-device_description']['zh-cn'] = "描述";
$text['label-device_enabled']['en-us'] = "Enabled";
$text['label-device_enabled']['en-gb'] = "Enabled";
$text['label-device_enabled']['ar-eg'] = "مُمَكَّن";
$text['label-device_enabled']['de-at'] = "Ermöglicht";
$text['label-device_enabled']['de-ch'] = "Ermöglicht";
$text['label-device_enabled']['de-de'] = "Ermöglicht";
$text['label-device_enabled']['el-gr'] = "Ενεργοποιήθηκε";
$text['label-device_enabled']['es-cl'] = "Activado";
$text['label-device_enabled']['es-mx'] = "Activado";
$text['label-device_enabled']['fr-ca'] = "Activé";
$text['label-device_enabled']['fr-fr'] = "Activé";
$text['label-device_enabled']['he-il'] = "מופעל";
$text['label-device_enabled']['it-it'] = "Abilitato";
$text['label-device_enabled']['ja-jp'] = "有効";
$text['label-device_enabled']['ka-ge'] = "ჩართულია";
$text['label-device_enabled']['ko-kr'] = "활성화됨";
$text['label-device_enabled']['nl-nl'] = "Ingeschakeld";
$text['label-device_enabled']['pl-pl'] = "Włączony";
$text['label-device_enabled']['pt-br'] = "Habilitado";
$text['label-device_enabled']['pt-pt'] = "Habilitado";
$text['label-device_enabled']['ro-ro'] = "Activat";
$text['label-device_enabled']['ru-ru'] = "Включено";
$text['label-device_enabled']['sv-se'] = "Aktiverad";
$text['label-device_enabled']['tr-tr'] = "Etkinleştirilmiş";
$text['label-device_enabled']['uk-ua'] = "Увімкнено";
$text['label-device_enabled']['zh-cn'] = "已启用";
$text['label-device_label']['en-us'] = "Label";
$text['label-device_label']['en-gb'] = "Label";
$text['label-device_label']['ar-eg'] = "ملصق";
$text['label-device_label']['de-at'] = "Etikett";
$text['label-device_label']['de-ch'] = "Etikett";
$text['label-device_label']['de-de'] = "Etikett";
$text['label-device_label']['el-gr'] = "Επιγραφή";
$text['label-device_label']['es-cl'] = "Etiqueta";
$text['label-device_label']['es-mx'] = "Etiqueta";
$text['label-device_label']['fr-ca'] = "Étiquette";
$text['label-device_label']['fr-fr'] = "Étiquette";
$text['label-device_label']['he-il'] = "מַדבֵּקָה";
$text['label-device_label']['it-it'] = "Etichetta";
$text['label-device_label']['ja-jp'] = "ラベル";
$text['label-device_label']['ka-ge'] = "ლეიბლი";
$text['label-device_label']['ko-kr'] = "상표";
$text['label-device_label']['nl-nl'] = "Label";
$text['label-device_label']['pl-pl'] = "Etykieta";
$text['label-device_label']['pt-br'] = "Rótulo";
$text['label-device_label']['pt-pt'] = "Etiqueta";
$text['label-device_label']['ro-ro'] = "Eticheta";
$text['label-device_label']['ru-ru'] = "Метка";
$text['label-device_label']['sv-se'] = "Märka";
$text['label-device_label']['tr-tr'] = "Etiket";
$text['label-device_label']['uk-ua'] = "Мітка";
$text['label-device_label']['zh-cn'] = "标签";
$text['label-device_profile']['en-us'] = "Profile";
$text['label-device_profile']['en-gb'] = "Profile";
$text['label-device_profile']['ar-eg'] = "حساب تعريفي";
$text['label-device_profile']['de-at'] = "Profil";
$text['label-device_profile']['de-ch'] = "Profil";
$text['label-device_profile']['de-de'] = "Profil";
$text['label-device_profile']['el-gr'] = "Προφίλ";
$text['label-device_profile']['es-cl'] = "Perfil";
$text['label-device_profile']['es-mx'] = "Perfil";
$text['label-device_profile']['fr-ca'] = "Profil";
$text['label-device_profile']['fr-fr'] = "Profil";
$text['label-device_profile']['he-il'] = "פּרוֹפִיל";
$text['label-device_profile']['it-it'] = "Profilo";
$text['label-device_profile']['ja-jp'] = "プロフィール";
$text['label-device_profile']['ka-ge'] = "პროფილი";
$text['label-device_profile']['ko-kr'] = "윤곽";
$text['label-device_profile']['nl-nl'] = "Profiel";
$text['label-device_profile']['pl-pl'] = "Profil";
$text['label-device_profile']['pt-br'] = "Perfil";
$text['label-device_profile']['pt-pt'] = "Perfil";
$text['label-device_profile']['ro-ro'] = "Profil";
$text['label-device_profile']['ru-ru'] = "Профиль";
$text['label-device_profile']['sv-se'] = "Profil";
$text['label-device_profile']['tr-tr'] = "Profil";
$text['label-device_profile']['uk-ua'] = "Профіль";
$text['label-device_profile']['zh-cn'] = "轮廓";
$text['label-device_template']['en-us'] = "Template";
$text['label-device_template']['en-gb'] = "Template";
$text['label-device_template']['ar-eg'] = "نموذج";
$text['label-device_template']['de-at'] = "Vorlage";
$text['label-device_template']['de-ch'] = "Vorlage";
$text['label-device_template']['de-de'] = "Vorlage";
$text['label-device_template']['el-gr'] = "Περίγραμμα";
$text['label-device_template']['es-cl'] = "Plantilla";
$text['label-device_template']['es-mx'] = "Plantilla";
$text['label-device_template']['fr-ca'] = "Modèle";
$text['label-device_template']['fr-fr'] = "Modèle";
$text['label-device_template']['he-il'] = "תבנית";
$text['label-device_template']['it-it'] = "Modello";
$text['label-device_template']['ja-jp'] = "テンプレート";
$text['label-device_template']['ka-ge'] = "შაბლონი";
$text['label-device_template']['ko-kr'] = "주형";
$text['label-device_template']['nl-nl'] = "Sjabloon";
$text['label-device_template']['pl-pl'] = "Szablon";
$text['label-device_template']['pt-br'] = "Modelo";
$text['label-device_template']['pt-pt'] = "Modelo";
$text['label-device_template']['ro-ro'] = "Șablon";
$text['label-device_template']['ru-ru'] = "Шаблон";
$text['label-device_template']['sv-se'] = "Mall";
$text['label-device_template']['tr-tr'] = "Şablon";
$text['label-device_template']['uk-ua'] = "Шаблон";
$text['label-device_template']['zh-cn'] = "模板";
$text['label-device_vendor']['en-us'] = "Vendor";
$text['label-device_vendor']['en-gb'] = "Vendor";
$text['label-device_vendor']['ar-eg'] = "بائع";
$text['label-device_vendor']['de-at'] = "Verkäufer";
$text['label-device_vendor']['de-ch'] = "Verkäufer";
$text['label-device_vendor']['de-de'] = "Verkäufer";
$text['label-device_vendor']['el-gr'] = "Πωλητής";
$text['label-device_vendor']['es-cl'] = "Proveedor";
$text['label-device_vendor']['es-mx'] = "Proveedor";
$text['label-device_vendor']['fr-ca'] = "Fournisseur";
$text['label-device_vendor']['fr-fr'] = "Fournisseur";
$text['label-device_vendor']['he-il'] = "מוֹכֵר";
$text['label-device_vendor']['it-it'] = "Venditore";
$text['label-device_vendor']['ja-jp'] = "ベンダー";
$text['label-device_vendor']['ka-ge'] = "გამყიდველი";
$text['label-device_vendor']['ko-kr'] = "공급업체";
$text['label-device_vendor']['nl-nl'] = "Leverancier";
$text['label-device_vendor']['pl-pl'] = "Sprzedawca";
$text['label-device_vendor']['pt-br'] = "Fornecedor";
$text['label-device_vendor']['pt-pt'] = "Vendedor";
$text['label-device_vendor']['ro-ro'] = "Furnizor";
$text['label-device_vendor']['ru-ru'] = "Продавец";
$text['label-device_vendor']['sv-se'] = "Försäljare";
$text['label-device_vendor']['tr-tr'] = "Satıcı";
$text['label-device_vendor']['uk-ua'] = "Продавець";
$text['label-device_vendor']['zh-cn'] = "小贩";
$text['label-directory_visible']['en-us'] = "Directory Visible";
$text['label-directory_visible']['en-gb'] = "Directory Visible";
$text['label-directory_visible']['ar-eg'] = "الدليل مرئي";
$text['label-directory_visible']['de-at'] = "Verzeichnis sichtbar";
$text['label-directory_visible']['de-ch'] = "Verzeichnis sichtbar";
$text['label-directory_visible']['de-de'] = "Verzeichnis sichtbar";
$text['label-directory_visible']['el-gr'] = "Ορατός κατάλογος";
$text['label-directory_visible']['es-cl'] = "Directorio visible";
$text['label-directory_visible']['es-mx'] = "Directorio visible";
$text['label-directory_visible']['fr-ca'] = "Répertoire visible";
$text['label-directory_visible']['fr-fr'] = "Répertoire visible";
$text['label-directory_visible']['he-il'] = "ספרייה גלויה";
$text['label-directory_visible']['it-it'] = "Cartella visibile";
$text['label-directory_visible']['ja-jp'] = "ディレクトリ表示";
$text['label-directory_visible']['ka-ge'] = "დირექტორია ხილული";
$text['label-directory_visible']['ko-kr'] = "디렉토리 표시됨";
$text['label-directory_visible']['nl-nl'] = "Directory zichtbaar";
$text['label-directory_visible']['pl-pl'] = "Katalog widoczny";
$text['label-directory_visible']['pt-br'] = "Diretório Visível";
$text['label-directory_visible']['pt-pt'] = "Diretório Visível";
$text['label-directory_visible']['ro-ro'] = "Director Vizibil";
$text['label-directory_visible']['ru-ru'] = "Каталог виден";
$text['label-directory_visible']['sv-se'] = "Katalog synlig";
$text['label-directory_visible']['tr-tr'] = "Dizin Görünür";
$text['label-directory_visible']['uk-ua'] = "Видимий каталог";
$text['label-directory_visible']['zh-cn'] = "目录可见";