-
Notifications
You must be signed in to change notification settings - Fork 2
/
app_languages.php
6480 lines (6184 loc) · 408 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
#This file was last reorganized on 27th of September 2017 01:41:51 PM UTC
$text['title-contacts_import_google']['en-us'] = "Import Google Contacts";
$text['title-contacts_import_google']['en-gb'] = "Import Google Contacts";
$text['title-contacts_import_google']['ar-eg'] = "";
$text['title-contacts_import_google']['de-at'] = "Google Kontakte importieren"; //copied from de-de
$text['title-contacts_import_google']['de-ch'] = "Google Kontakte importieren"; //copied from de-de
$text['title-contacts_import_google']['de-de'] = "Google Kontakte importieren";
$text['title-contacts_import_google']['el-gr'] = "Εισαγωγή επαφών Google";
$text['title-contacts_import_google']['es-cl'] = "Importar Contactos de Google";
$text['title-contacts_import_google']['es-mx'] = "Importar Contactos de Google"; //copied from es-cl
$text['title-contacts_import_google']['fr-ca'] = "Importer les Contacts Google"; //copied from fr-fr
$text['title-contacts_import_google']['fr-fr'] = "Importer les Contacts Google";
$text['title-contacts_import_google']['he-il'] = "ייבא אנשי קשר מגוגל";
$text['title-contacts_import_google']['it-it'] = "Importa Contatti Google";
$text['title-contacts_import_google']['nl-nl'] = "Importeer Google kontacten";
$text['title-contacts_import_google']['pl-pl'] = "Importuj kontakty z Google.";
$text['title-contacts_import_google']['pt-br'] = "Importar contatos do google";
$text['title-contacts_import_google']['pt-pt'] = "Importar Contatos do Google";
$text['title-contacts_import_google']['ro-ro'] = "";
$text['title-contacts_import_google']['ru-ru'] = "Импортировать контакты Google";
$text['title-contacts_import_google']['sv-se'] = "Importera Google Kontakter";
$text['title-contacts_import_google']['uk-ua'] = "Імпортувати контакти Google";
$text['title-contacts_import']['en-us'] = "Import Contacts";
$text['title-contacts_import']['en-gb'] = "Import Contacts";
$text['title-contacts_import']['ar-eg'] = "";
$text['title-contacts_import']['de-at'] = "Kontakte importieren"; //copied from de-de
$text['title-contacts_import']['de-ch'] = "Kontakte importieren"; //copied from de-de
$text['title-contacts_import']['de-de'] = "Kontakte importieren";
$text['title-contacts_import']['el-gr'] = "Εισαγωγή Επαφών";
$text['title-contacts_import']['es-cl'] = "Importar Contactos";
$text['title-contacts_import']['es-mx'] = "Importar Contactos"; //copied from es-cl
$text['title-contacts_import']['fr-ca'] = "Importer Contacts";
$text['title-contacts_import']['fr-fr'] = "Importe des Contacts";
$text['title-contacts_import']['he-il'] = "ייבא אנשי קשר";
$text['title-contacts_import']['it-it'] = "Importa Contatti";
$text['title-contacts_import']['nl-nl'] = "Importeer kontacten";
$text['title-contacts_import']['pl-pl'] = "Importuj kontakty ";
$text['title-contacts_import']['pt-br'] = "Importar contatos";
$text['title-contacts_import']['pt-pt'] = "Importar Contactos";
$text['title-contacts_import']['ro-ro'] = "";
$text['title-contacts_import']['ru-ru'] = "Импортировать Контакты";
$text['title-contacts_import']['sv-se'] = "Importera Kontakter";
$text['title-contacts_import']['uk-ua'] = "Імпортувати контакти";
$text['title-contacts']['en-us'] = "Contacts";
$text['title-contacts']['en-gb'] = "Contacts";
$text['title-contacts']['ar-eg'] = "";
$text['title-contacts']['de-at'] = "Kontakte"; //copied from de-de
$text['title-contacts']['de-ch'] = "Kontakte"; //copied from de-de
$text['title-contacts']['de-de'] = "Kontakte";
$text['title-contacts']['el-gr'] = "Επαφές";
$text['title-contacts']['es-cl'] = "Contactos";
$text['title-contacts']['es-mx'] = "Contactos"; //copied from es-cl
$text['title-contacts']['fr-ca'] = "Contacts"; //copied from fr-fr
$text['title-contacts']['fr-fr'] = "Contacts";
$text['title-contacts']['he-il'] = "אנשי קשר";
$text['title-contacts']['it-it'] = "Contatti";
$text['title-contacts']['nl-nl'] = "Kontacten";
$text['title-contacts']['pl-pl'] = "Kontakty";
$text['title-contacts']['pt-br'] = "Conttos";
$text['title-contacts']['pt-pt'] = "Contactos";
$text['title-contacts']['ro-ro'] = "";
$text['title-contacts']['ru-ru'] = "Контакты";
$text['title-contacts']['sv-se'] = "Kontakter";
$text['title-contacts']['uk-ua'] = "Контакти";
$text['title-contact_properties']['en-us'] = "Contact Properties";
$text['title-contact_properties']['en-gb'] = "Contact Properties";
$text['title-contact_properties']['ar-eg'] = "Contact Properties";
$text['title-contact_properties']['de-at'] = "Contact Properties";
$text['title-contact_properties']['de-ch'] = "Contact Properties";
$text['title-contact_properties']['de-de'] = "Contact Properties";
$text['title-contact_properties']['el-gr'] = "Contact Properties";
$text['title-contact_properties']['es-cl'] = "Contact Properties";
$text['title-contact_properties']['es-mx'] = "Contact Properties";
$text['title-contact_properties']['fr-ca'] = "Propriétés de Contact";
$text['title-contact_properties']['fr-fr'] = "Propriétés de Contact";
$text['title-contact_properties']['he-il'] = "Contact Properties";
$text['title-contact_properties']['it-it'] = "Contact Properties";
$text['title-contact_properties']['nl-nl'] = "Contact Properties";
$text['title-contact_properties']['pl-pl'] = "Contact Properties";
$text['title-contact_properties']['pt-br'] = "Contact Properties";
$text['title-contact_properties']['pt-pt'] = "Contact Properties";
$text['title-contact_properties']['ro-ro'] = "Contact Properties";
$text['title-contact_properties']['ru-ru'] = "Contact Properties";
$text['title-contact_properties']['sv-se'] = "Contact Properties";
$text['title-contact_properties']['uk-ua'] = "Contact Properties";
$text['title-contact_email-edit']['en-us'] = "Contact Email Edit";
$text['title-contact_email-edit']['en-gb'] = "Contact Email Edit";
$text['title-contact_email-edit']['ar-eg'] = "";
$text['title-contact_email-edit']['de-at'] = "Email des Kontakts bearbeiten"; //copied from de-de
$text['title-contact_email-edit']['de-ch'] = "Email des Kontakts bearbeiten"; //copied from de-de
$text['title-contact_email-edit']['de-de'] = "Email des Kontakts bearbeiten";
$text['title-contact_email-edit']['el-gr'] = "Επεξεργασία e-mail επαφής";
$text['title-contact_email-edit']['es-cl'] = "Correo electrónico de contacto Editar";
$text['title-contact_email-edit']['es-mx'] = "Correo electrónico de contacto Editar"; //copied from es-cl
$text['title-contact_email-edit']['fr-ca'] = "Courriel de Contact Modifier";
$text['title-contact_email-edit']['fr-fr'] = "Contact Courriel Modifier";
$text['title-contact_email-edit']['he-il'] = "";
$text['title-contact_email-edit']['it-it'] = "Modifica Email Contatto";
$text['title-contact_email-edit']['nl-nl'] = "Kontact E-mail bewerken";
$text['title-contact_email-edit']['pl-pl'] = "Edutuj adres mailowy kontaktu";
$text['title-contact_email-edit']['pt-br'] = "Editar email do contato";
$text['title-contact_email-edit']['pt-pt'] = "Email de Contato Editar";
$text['title-contact_email-edit']['ro-ro'] = "";
$text['title-contact_email-edit']['ru-ru'] = "Редактировать контактный адрес электронной почты";
$text['title-contact_email-edit']['sv-se'] = "Ändra Kontakt E-post";
$text['title-contact_email-edit']['uk-ua'] = "";
$text['title-contact_email-add']['en-us'] = "Contact Email Add";
$text['title-contact_email-add']['en-gb'] = "Contact Email Add";
$text['title-contact_email-add']['ar-eg'] = "";
$text['title-contact_email-add']['de-at'] = "Email zum Kontakt hinzufügen"; //copied from de-de
$text['title-contact_email-add']['de-ch'] = "Email zum Kontakt hinzufügen"; //copied from de-de
$text['title-contact_email-add']['de-de'] = "Email zum Kontakt hinzufügen";
$text['title-contact_email-add']['el-gr'] = "Προσθήκη e-mail επαφής";
$text['title-contact_email-add']['es-cl'] = "Correo electrónico de contacto Agregar";
$text['title-contact_email-add']['es-mx'] = "Correo electrónico de contacto Agregar"; //copied from es-cl
$text['title-contact_email-add']['fr-ca'] = "Courriel de Contact Ajouter";
$text['title-contact_email-add']['fr-fr'] = "Contactez-mail Ajouter";
$text['title-contact_email-add']['he-il'] = "";
$text['title-contact_email-add']['it-it'] = "Inserisci Email Contatto";
$text['title-contact_email-add']['nl-nl'] = "Kontact E-mail toevoegen";
$text['title-contact_email-add']['pl-pl'] = "Dodaj adres mailowy kontaktu";
$text['title-contact_email-add']['pt-br'] = "Adicionar email de contato";
$text['title-contact_email-add']['pt-pt'] = "Contato e-mail Adicionar";
$text['title-contact_email-add']['ro-ro'] = "";
$text['title-contact_email-add']['ru-ru'] = "Добавить контактный адрес электронной почты";
$text['title-contact_email-add']['sv-se'] = "Lägg Till Kontakt E-post";
$text['title-contact_email-add']['uk-ua'] = "";
$text['title-contact_url-edit']['en-us'] = "Contact URL Edit";
$text['title-contact_url-edit']['en-gb'] = "Contact URL Edit";
$text['title-contact_url-edit']['ar-eg'] = "";
$text['title-contact_url-edit']['de-at'] = "URL bearbeiten"; //copied from de-de
$text['title-contact_url-edit']['de-ch'] = "URL bearbeiten"; //copied from de-de
$text['title-contact_url-edit']['de-de'] = "URL bearbeiten";
$text['title-contact_url-edit']['el-gr'] = "Επεξεργασία συνδέσμου URL επαφής";
$text['title-contact_url-edit']['es-cl'] = "Correo electrónico de contacto Editar";
$text['title-contact_url-edit']['es-mx'] = "Correo electrónico de contacto Editar"; //copied from es-cl
$text['title-contact_url-edit']['fr-ca'] = "URL de Contact Modifier";
$text['title-contact_url-edit']['fr-fr'] = "Contact Courriel Modifier";
$text['title-contact_url-edit']['he-il'] = "";
$text['title-contact_url-edit']['it-it'] = "Modifica URL Contatto";
$text['title-contact_url-edit']['nl-nl'] = "Kontact URL bewerken";
$text['title-contact_url-edit']['pl-pl'] = "Edytuj kontakt URL ";
$text['title-contact_url-edit']['pt-br'] = "Editar URL de contato";
$text['title-contact_url-edit']['pt-pt'] = "URL de Contato Editar";
$text['title-contact_url-edit']['ro-ro'] = "";
$text['title-contact_url-edit']['ru-ru'] = "Адрес для связи (URL): Изменить";
$text['title-contact_url-edit']['sv-se'] = "Ändra Kontakt URL";
$text['title-contact_url-edit']['uk-ua'] = "";
$text['title-contact_url-add']['en-us'] = "Contact URL Add";
$text['title-contact_url-add']['en-gb'] = "Contact URL Add";
$text['title-contact_url-add']['ar-eg'] = "";
$text['title-contact_url-add']['de-at'] = "URL hinzufügen"; //copied from de-de
$text['title-contact_url-add']['de-ch'] = "URL hinzufügen"; //copied from de-de
$text['title-contact_url-add']['de-de'] = "URL hinzufügen";
$text['title-contact_url-add']['el-gr'] = "Προσθήκη συνδέσμου URL επαφής";
$text['title-contact_url-add']['es-cl'] = "Correo electrónico de contacto Agregar";
$text['title-contact_url-add']['es-mx'] = "Correo electrónico de contacto Agregar"; //copied from es-cl
$text['title-contact_url-add']['fr-ca'] = "URL de Contact Ajouter";
$text['title-contact_url-add']['fr-fr'] = "Contactez-mail Ajouter";
$text['title-contact_url-add']['he-il'] = "";
$text['title-contact_url-add']['it-it'] = "Inserisci URL Contatto";
$text['title-contact_url-add']['nl-nl'] = "Kontact URL toevoegen";
$text['title-contact_url-add']['pl-pl'] = "Dodaj kontakt URL ";
$text['title-contact_url-add']['pt-br'] = "Adicionar contato de e-mail";
$text['title-contact_url-add']['pt-pt'] = "Contato e-mail Adicionar";
$text['title-contact_url-add']['ro-ro'] = "";
$text['title-contact_url-add']['ru-ru'] = "Адрес для связи (URL): Добавить";
$text['title-contact_url-add']['sv-se'] = "Lägg Till Kontakt URL";
$text['title-contact_url-add']['uk-ua'] = "";
$text['title-contact_time_edit']['en-us'] = "Time Edit";
$text['title-contact_time_edit']['en-gb'] = "Time Edit";
$text['title-contact_time_edit']['ar-eg'] = "";
$text['title-contact_time_edit']['de-at'] = "Zeit bearbeiten"; //copied from de-de
$text['title-contact_time_edit']['de-ch'] = "Zeit bearbeiten"; //copied from de-de
$text['title-contact_time_edit']['de-de'] = "Zeit bearbeiten";
$text['title-contact_time_edit']['el-gr'] = "Επεξεργασία Ώρας";
$text['title-contact_time_edit']['es-cl'] = "Tiempo de Redacción";
$text['title-contact_time_edit']['es-mx'] = "Tiempo de Redacción"; //copied from es-cl
$text['title-contact_time_edit']['fr-ca'] = "Modifier Temps"; //copied from fr-fr
$text['title-contact_time_edit']['fr-fr'] = "Modifier Temps";
$text['title-contact_time_edit']['he-il'] = "עידכון זמן";
$text['title-contact_time_edit']['it-it'] = "Modifica Tempo";
$text['title-contact_time_edit']['nl-nl'] = "Tijd bewerken";
$text['title-contact_time_edit']['pl-pl'] = "Czas Edycja";
$text['title-contact_time_edit']['pt-br'] = "Tempo Editar"; //copied from pt-pt
$text['title-contact_time_edit']['pt-pt'] = "Tempo Editar";
$text['title-contact_time_edit']['ro-ro'] = "";
$text['title-contact_time_edit']['ru-ru'] = "Редактировать время";
$text['title-contact_time_edit']['sv-se'] = "Redigera Tid";
$text['title-contact_time_edit']['uk-ua'] = "час Редагувати";
$text['title-contact_time_add']['en-us'] = "Time Add";
$text['title-contact_time_add']['en-gb'] = "Time Add";
$text['title-contact_time_add']['ar-eg'] = "";
$text['title-contact_time_add']['de-at'] = "Zeit hinzufügen"; //copied from de-de
$text['title-contact_time_add']['de-ch'] = "Zeit hinzufügen"; //copied from de-de
$text['title-contact_time_add']['de-de'] = "Zeit hinzufügen";
$text['title-contact_time_add']['el-gr'] = "Προσθήκη Ώρας";
$text['title-contact_time_add']['es-cl'] = "Tiempo Agregar";
$text['title-contact_time_add']['es-mx'] = "Tiempo Agregar"; //copied from es-cl
$text['title-contact_time_add']['fr-ca'] = "Ajouter Temps"; //copied from fr-fr
$text['title-contact_time_add']['fr-fr'] = "Ajouter Temps";
$text['title-contact_time_add']['he-il'] = "הוספת זמן";
$text['title-contact_time_add']['it-it'] = "Inserisci Tempo";
$text['title-contact_time_add']['nl-nl'] = "Tijd toevoegen";
$text['title-contact_time_add']['pl-pl'] = "Czas Dodawania";
$text['title-contact_time_add']['pt-br'] = "Time Adicionar"; //copied from pt-pt
$text['title-contact_time_add']['pt-pt'] = "Time Adicionar";
$text['title-contact_time_add']['ro-ro'] = "";
$text['title-contact_time_add']['ru-ru'] = "Добавить Время";
$text['title-contact_time_add']['sv-se'] = "Lägg Till Tid";
$text['title-contact_time_add']['uk-ua'] = "час додавання";
$text['title-contact_setting_edit']['en-us'] = "Contact Setting Edit";
$text['title-contact_setting_edit']['en-gb'] = "Contact Setting Edit";
$text['title-contact_setting_edit']['ar-eg'] = "";
$text['title-contact_setting_edit']['de-at'] = "Einstellungen bearbeiten"; //copied from de-de
$text['title-contact_setting_edit']['de-ch'] = "Einstellungen bearbeiten"; //copied from de-de
$text['title-contact_setting_edit']['de-de'] = "Einstellungen bearbeiten";
$text['title-contact_setting_edit']['el-gr'] = "Επεξεργασία Ρυθμίσεων Επαφών";
$text['title-contact_setting_edit']['es-cl'] = "Configuraciones de contacto";
$text['title-contact_setting_edit']['es-mx'] = "Configuraciones de contacto"; //copied from es-cl
$text['title-contact_setting_edit']['fr-ca'] = "Paramètres du Contact"; //copied from fr-fr
$text['title-contact_setting_edit']['fr-fr'] = "Paramètres du Contact";
$text['title-contact_setting_edit']['he-il'] = "";
$text['title-contact_setting_edit']['it-it'] = "Modifica Parametri Contatto";
$text['title-contact_setting_edit']['nl-nl'] = "Kontact instellingen bewerken";
$text['title-contact_setting_edit']['pl-pl'] = "Edytuj ustawienia kontaktu";
$text['title-contact_setting_edit']['pt-br'] = "Definição do contato";
$text['title-contact_setting_edit']['pt-pt'] = "Definições do Contacto";
$text['title-contact_setting_edit']['ro-ro'] = "";
$text['title-contact_setting_edit']['ru-ru'] = "Редактировать Параметры Контакта";
$text['title-contact_setting_edit']['sv-se'] = "Ändra Kontakt Inställning";
$text['title-contact_setting_edit']['uk-ua'] = "";
$text['title-contact_setting_add']['en-us'] = "Contact Setting Add";
$text['title-contact_setting_add']['en-gb'] = "Contact Setting Add";
$text['title-contact_setting_add']['ar-eg'] = "";
$text['title-contact_setting_add']['de-at'] = "Einstellungen hinzufügen"; //copied from de-de
$text['title-contact_setting_add']['de-ch'] = "Einstellungen hinzufügen"; //copied from de-de
$text['title-contact_setting_add']['de-de'] = "Einstellungen hinzufügen";
$text['title-contact_setting_add']['el-gr'] = "Προσθήκη Ρυθμίσεων Επαφών";
$text['title-contact_setting_add']['es-cl'] = "Agregar Configuración de Contacto";
$text['title-contact_setting_add']['es-mx'] = "Agregar Configuración de Contacto"; //copied from es-cl
$text['title-contact_setting_add']['fr-ca'] = "Ajouter un paramètre au Contact"; //copied from fr-fr
$text['title-contact_setting_add']['fr-fr'] = "Ajouter un paramètre au Contact";
$text['title-contact_setting_add']['he-il'] = "";
$text['title-contact_setting_add']['it-it'] = "Inserisci Parametri Contatto";
$text['title-contact_setting_add']['nl-nl'] = "Kontact Instellingen toevoegen";
$text['title-contact_setting_add']['pl-pl'] = "Dodaj ustawienia kontaktu";
$text['title-contact_setting_add']['pt-br'] = "Adicionar configurações a essa usuários";
$text['title-contact_setting_add']['pt-pt'] = "Adicionar Definição ao Contacto";
$text['title-contact_setting_add']['ro-ro'] = "";
$text['title-contact_setting_add']['ru-ru'] = "Добавить Параметры Контакта";
$text['title-contact_setting_add']['sv-se'] = "Lägg Till Kontakt Inställning";
$text['title-contact_setting_add']['uk-ua'] = "";
$text['title-contact_relation']['en-us'] = "Contact Relation";
$text['title-contact_relation']['en-gb'] = "Contact Relation";
$text['title-contact_relation']['ar-eg'] = "";
$text['title-contact_relation']['de-at'] = "Beziehung"; //copied from de-de
$text['title-contact_relation']['de-ch'] = "Beziehung"; //copied from de-de
$text['title-contact_relation']['de-de'] = "Beziehung";
$text['title-contact_relation']['el-gr'] = "Συσχετίσεις Επαφών";
$text['title-contact_relation']['es-cl'] = "Contacto Relación";
$text['title-contact_relation']['es-mx'] = "Contacto Relación"; //copied from es-cl
$text['title-contact_relation']['fr-ca'] = "Relation de Contact";
$text['title-contact_relation']['fr-fr'] = "Contactez Relation";
$text['title-contact_relation']['he-il'] = "";
$text['title-contact_relation']['it-it'] = "Relazioni Contatto";
$text['title-contact_relation']['nl-nl'] = "Kontact relatie";
$text['title-contact_relation']['pl-pl'] = "";
$text['title-contact_relation']['pt-br'] = "Contato Relação"; //copied from pt-pt
$text['title-contact_relation']['pt-pt'] = "Contato Relação";
$text['title-contact_relation']['ro-ro'] = "";
$text['title-contact_relation']['ru-ru'] = "Контактное лицо";
$text['title-contact_relation']['sv-se'] = "Kontakt Relation";
$text['title-contact_relation']['uk-ua'] = "";
$text['title-contact_phones-edit']['en-us'] = "Contact Number Edit";
$text['title-contact_phones-edit']['en-gb'] = "Contact Number Edit";
$text['title-contact_phones-edit']['ar-eg'] = "";
$text['title-contact_phones-edit']['de-at'] = "Nummer bearbeiten"; //copied from de-de
$text['title-contact_phones-edit']['de-ch'] = "Nummer bearbeiten"; //copied from de-de
$text['title-contact_phones-edit']['de-de'] = "Nummer bearbeiten";
$text['title-contact_phones-edit']['el-gr'] = "Επεξεργασία Αριθμού Επαφής";
$text['title-contact_phones-edit']['es-cl'] = "Editar Número de Contacto";
$text['title-contact_phones-edit']['es-mx'] = "Editar Número de Contacto"; //copied from es-cl
$text['title-contact_phones-edit']['fr-ca'] = "Numéro de Contact Modifier";
$text['title-contact_phones-edit']['fr-fr'] = "Editer le téléphone du Contact";
$text['title-contact_phones-edit']['he-il'] = "";
$text['title-contact_phones-edit']['it-it'] = "Modifica Numero Contatto";
$text['title-contact_phones-edit']['nl-nl'] = "Kontact nummer bewerken";
$text['title-contact_phones-edit']['pl-pl'] = "Edytuj numer kontaktu";
$text['title-contact_phones-edit']['pt-br'] = "Editar contato telefônico";
$text['title-contact_phones-edit']['pt-pt'] = "Editar contacto telefónico";
$text['title-contact_phones-edit']['ro-ro'] = "";
$text['title-contact_phones-edit']['ru-ru'] = "Редактирование контактного номера";
$text['title-contact_phones-edit']['sv-se'] = "Ändra Kontakt Nummer";
$text['title-contact_phones-edit']['uk-ua'] = "";
$text['title-contact_phones-add']['en-us'] = "Contact Number Add";
$text['title-contact_phones-add']['en-gb'] = "Contact Number Add";
$text['title-contact_phones-add']['ar-eg'] = "";
$text['title-contact_phones-add']['de-at'] = "Nummer hinzufügen"; //copied from de-de
$text['title-contact_phones-add']['de-ch'] = "Nummer hinzufügen"; //copied from de-de
$text['title-contact_phones-add']['de-de'] = "Nummer hinzufügen";
$text['title-contact_phones-add']['el-gr'] = "Προσθήκη Αριθμού Επαφής";
$text['title-contact_phones-add']['es-cl'] = "Agregar Número de Contacto";
$text['title-contact_phones-add']['es-mx'] = "Agregar Número de Contacto"; //copied from es-cl
$text['title-contact_phones-add']['fr-ca'] = "Numéro de Contact Ajouter";
$text['title-contact_phones-add']['fr-fr'] = "Ajouter un téléphone au Contact";
$text['title-contact_phones-add']['he-il'] = "";
$text['title-contact_phones-add']['it-it'] = "Inserire Numero Contatto";
$text['title-contact_phones-add']['nl-nl'] = "Kontact nummer toevoegen";
$text['title-contact_phones-add']['pl-pl'] = "Dodaj numer kontaktu";
$text['title-contact_phones-add']['pt-br'] = "Adicionar contato telefônico";
$text['title-contact_phones-add']['pt-pt'] = "Adicionar contacto telefónico";
$text['title-contact_phones-add']['ro-ro'] = "";
$text['title-contact_phones-add']['ru-ru'] = "Контактный номер Добавить";
$text['title-contact_phones-add']['sv-se'] = "Lägg Till Kontakt Nummer";
$text['title-contact_phones-add']['uk-ua'] = "";
$text['title-contact_notes-edit']['en-us'] = "Contact Note Edit";
$text['title-contact_notes-edit']['en-gb'] = "Contact Note Edit";
$text['title-contact_notes-edit']['ar-eg'] = "";
$text['title-contact_notes-edit']['de-at'] = "Notiz bearbeiten"; //copied from de-de
$text['title-contact_notes-edit']['de-ch'] = "Notiz bearbeiten"; //copied from de-de
$text['title-contact_notes-edit']['de-de'] = "Notiz bearbeiten";
$text['title-contact_notes-edit']['el-gr'] = "Επεξεργασία Σημείωσης Επαφής";
$text['title-contact_notes-edit']['es-cl'] = "Editar Nota de Contactos";
$text['title-contact_notes-edit']['es-mx'] = "Editar Nota de Contactos"; //copied from es-cl
$text['title-contact_notes-edit']['fr-ca'] = "Note du Contact Modifier";
$text['title-contact_notes-edit']['fr-fr'] = "Editer la note du contact";
$text['title-contact_notes-edit']['he-il'] = "";
$text['title-contact_notes-edit']['it-it'] = "Modifica Note Contatto";
$text['title-contact_notes-edit']['nl-nl'] = "Kontact notitie bewerken";
$text['title-contact_notes-edit']['pl-pl'] = "Edytuj notatkę o kontakcie";
$text['title-contact_notes-edit']['pt-br'] = "Editar notas de contato";
$text['title-contact_notes-edit']['pt-pt'] = "Editar notas de contacto";
$text['title-contact_notes-edit']['ro-ro'] = "";
$text['title-contact_notes-edit']['ru-ru'] = "Редактировать контактную информацию";
$text['title-contact_notes-edit']['sv-se'] = "Ändra Kontakt Notering";
$text['title-contact_notes-edit']['uk-ua'] = "";
$text['title-contact_notes-add']['en-us'] = "Contact Note Add";
$text['title-contact_notes-add']['en-gb'] = "Contact Note Add";
$text['title-contact_notes-add']['ar-eg'] = "";
$text['title-contact_notes-add']['de-at'] = "Notiz hinzufügen"; //copied from de-de
$text['title-contact_notes-add']['de-ch'] = "Notiz hinzufügen"; //copied from de-de
$text['title-contact_notes-add']['de-de'] = "Notiz hinzufügen";
$text['title-contact_notes-add']['el-gr'] = "Προσθήκη Σημείωσης Επαφής";
$text['title-contact_notes-add']['es-cl'] = "Agregar Nota de Contacto";
$text['title-contact_notes-add']['es-mx'] = "Agregar Nota de Contacto"; //copied from es-cl
$text['title-contact_notes-add']['fr-ca'] = "Ajouter une note au contact"; //copied from fr-fr
$text['title-contact_notes-add']['fr-fr'] = "Ajouter une note au contact";
$text['title-contact_notes-add']['he-il'] = "";
$text['title-contact_notes-add']['it-it'] = "Inserisci Note Contatto";
$text['title-contact_notes-add']['nl-nl'] = "Kontact notitie toevoegen";
$text['title-contact_notes-add']['pl-pl'] = "Dodaj notatkę o kontakcie";
$text['title-contact_notes-add']['pt-br'] = "Adicionar nota de contato";
$text['title-contact_notes-add']['pt-pt'] = "Adicionar nota de contacto";
$text['title-contact_notes-add']['ro-ro'] = "";
$text['title-contact_notes-add']['ru-ru'] = "Контакт Добавить Примечание";
$text['title-contact_notes-add']['sv-se'] = "Lägg Till Kontakts Notering";
$text['title-contact_notes-add']['uk-ua'] = "";
$text['title-contact_addresses-edit']['en-us'] = "Contact Address Edit";
$text['title-contact_addresses-edit']['en-gb'] = "Contact Address Edit";
$text['title-contact_addresses-edit']['ar-eg'] = "";
$text['title-contact_addresses-edit']['de-at'] = "Adresse bearbeiten"; //copied from de-de
$text['title-contact_addresses-edit']['de-ch'] = "Adresse bearbeiten"; //copied from de-de
$text['title-contact_addresses-edit']['de-de'] = "Adresse bearbeiten";
$text['title-contact_addresses-edit']['el-gr'] = "Επεξεργασία Διεύθυνσης Επαφής";
$text['title-contact_addresses-edit']['es-cl'] = "Editar Dirección de Contacto";
$text['title-contact_addresses-edit']['es-mx'] = "Editar Dirección de Contacto"; //copied from es-cl
$text['title-contact_addresses-edit']['fr-ca'] = "Modifier l'adresse du contact";
$text['title-contact_addresses-edit']['fr-fr'] = "Editer l'adresse du contact";
$text['title-contact_addresses-edit']['he-il'] = "";
$text['title-contact_addresses-edit']['it-it'] = "Modifica Indirizzo Contatto";
$text['title-contact_addresses-edit']['nl-nl'] = "Kontact adres bewerken";
$text['title-contact_addresses-edit']['pl-pl'] = "Edytuj adres kontaktu";
$text['title-contact_addresses-edit']['pt-br'] = "Editar endereço de contato";
$text['title-contact_addresses-edit']['pt-pt'] = "Editar endereço do contacto";
$text['title-contact_addresses-edit']['ro-ro'] = "";
$text['title-contact_addresses-edit']['ru-ru'] = "Редактировать контактный адрес";
$text['title-contact_addresses-edit']['sv-se'] = "Ändra Kontakt Adress";
$text['title-contact_addresses-edit']['uk-ua'] = "";
$text['title-contact_addresses-add']['en-us'] = "Contact Address Add";
$text['title-contact_addresses-add']['en-gb'] = "Contact Address Add";
$text['title-contact_addresses-add']['ar-eg'] = "";
$text['title-contact_addresses-add']['de-at'] = "Adresse hinzufügen"; //copied from de-de
$text['title-contact_addresses-add']['de-ch'] = "Adresse hinzufügen"; //copied from de-de
$text['title-contact_addresses-add']['de-de'] = "Adresse hinzufügen";
$text['title-contact_addresses-add']['el-gr'] = "Προσθήκη Διεύθυνσης Επαφής";
$text['title-contact_addresses-add']['es-cl'] = "Agregar Dirección de Contacto";
$text['title-contact_addresses-add']['es-mx'] = "Agregar Dirección de Contacto"; //copied from es-cl
$text['title-contact_addresses-add']['fr-ca'] = "Ajouter une adresse au contact"; //copied from fr-fr
$text['title-contact_addresses-add']['fr-fr'] = "Ajouter une adresse au contact";
$text['title-contact_addresses-add']['he-il'] = "";
$text['title-contact_addresses-add']['it-it'] = "Inserisci Indirizzo Contatto";
$text['title-contact_addresses-add']['nl-nl'] = "Kontact adres toevoegen";
$text['title-contact_addresses-add']['pl-pl'] = "Dodaj adres kontaktu";
$text['title-contact_addresses-add']['pt-br'] = "Adicionar endereço do contato";
$text['title-contact_addresses-add']['pt-pt'] = "Adicionar endereço do contacto";
$text['title-contact_addresses-add']['ro-ro'] = "";
$text['title-contact_addresses-add']['ru-ru'] = "Добавить Адрес для связи: ";
$text['title-contact_addresses-add']['sv-se'] = "Lägg Till Kontakt Adress";
$text['title-contact_addresses-add']['uk-ua'] = "";
$text['title-contact_attachment-edit']['en-us'] = "Contact Attachment Edit";
$text['title-contact_attachment-edit']['en-gb'] = "Contact Attachment Edit";
$text['title-contact_attachment-edit']['ar-eg'] = "";
$text['title-contact_attachment-edit']['de-at'] = "";
$text['title-contact_attachment-edit']['de-ch'] = "";
$text['title-contact_attachment-edit']['de-de'] = "";
$text['title-contact_attachment-edit']['el-gr'] = "Επεξεργασία Επισύναψης Επαφής";
$text['title-contact_attachment-edit']['es-cl'] = "";
$text['title-contact_attachment-edit']['es-mx'] = "";
$text['title-contact_attachment-edit']['fr-ca'] = "Pièce jointe de Contact Modifier";
$text['title-contact_attachment-edit']['fr-fr'] = "Pièce jointe de Contact Modifier";
$text['title-contact_attachment-edit']['he-il'] = "";
$text['title-contact_attachment-edit']['it-it'] = "";
$text['title-contact_attachment-edit']['nl-nl'] = "Kontact aanhangsel bewerken";
$text['title-contact_attachment-edit']['pl-pl'] = "";
$text['title-contact_attachment-edit']['pt-br'] = "";
$text['title-contact_attachment-edit']['pt-pt'] = "";
$text['title-contact_attachment-edit']['ro-ro'] = "";
$text['title-contact_attachment-edit']['ru-ru'] = "";
$text['title-contact_attachment-edit']['sv-se'] = "";
$text['title-contact_attachment-edit']['uk-ua'] = "";
$text['title-contact_attachment-add']['en-us'] = "Contact Attachment Add";
$text['title-contact_attachment-add']['en-gb'] = "Contact Attachment Add";
$text['title-contact_attachment-add']['ar-eg'] = "";
$text['title-contact_attachment-add']['de-at'] = "";
$text['title-contact_attachment-add']['de-ch'] = "";
$text['title-contact_attachment-add']['de-de'] = "";
$text['title-contact_attachment-add']['el-gr'] = "Προσθήκη Επισύναψης Επαφής";
$text['title-contact_attachment-add']['es-cl'] = "";
$text['title-contact_attachment-add']['es-mx'] = "";
$text['title-contact_attachment-add']['fr-ca'] = "Pièce jointe de Contact Ajouter";
$text['title-contact_attachment-add']['fr-fr'] = "Pièce jointe de Contact Ajouter";
$text['title-contact_attachment-add']['he-il'] = "";
$text['title-contact_attachment-add']['it-it'] = "";
$text['title-contact_attachment-add']['nl-nl'] = "Kontact aanhangsel toevoegen";
$text['title-contact_attachment-add']['pl-pl'] = "";
$text['title-contact_attachment-add']['pt-br'] = "";
$text['title-contact_attachment-add']['pt-pt'] = "";
$text['title-contact_attachment-add']['ro-ro'] = "";
$text['title-contact_attachment-add']['ru-ru'] = "";
$text['title-contact_attachment-add']['sv-se'] = "";
$text['title-contact_attachment-add']['uk-ua'] = "";
$text['title-contact-edit']['en-us'] = "Contact";
$text['title-contact-edit']['en-gb'] = "Contact";
$text['title-contact-edit']['ar-eg'] = "";
$text['title-contact-edit']['de-at'] = "Kontakt"; //copied from de-de
$text['title-contact-edit']['de-ch'] = "Kontakt"; //copied from de-de
$text['title-contact-edit']['de-de'] = "Kontakt";
$text['title-contact-edit']['el-gr'] = "Επαφή";
$text['title-contact-edit']['es-cl'] = "Contacto";
$text['title-contact-edit']['es-mx'] = "Contacto"; //copied from es-cl
$text['title-contact-edit']['fr-ca'] = "Contact"; //copied from fr-fr
$text['title-contact-edit']['fr-fr'] = "Contact";
$text['title-contact-edit']['he-il'] = "איש קשר";
$text['title-contact-edit']['it-it'] = "Contatto";
$text['title-contact-edit']['nl-nl'] = "Kontact";
$text['title-contact-edit']['pl-pl'] = "Kontakt";
$text['title-contact-edit']['pt-br'] = "Contato";
$text['title-contact-edit']['pt-pt'] = "Contacto";
$text['title-contact-edit']['ro-ro'] = "";
$text['title-contact-edit']['ru-ru'] = "Контакт";
$text['title-contact-edit']['sv-se'] = "Kontakt";
$text['title-contact-edit']['uk-ua'] = "Контакт";
$text['title-contact-add']['en-us'] = "Contact Add";
$text['title-contact-add']['en-gb'] = "Contact Add";
$text['title-contact-add']['ar-eg'] = "";
$text['title-contact-add']['de-at'] = "Kontakt hinzufügen"; //copied from de-de
$text['title-contact-add']['de-ch'] = "Kontakt hinzufügen"; //copied from de-de
$text['title-contact-add']['de-de'] = "Kontakt hinzufügen";
$text['title-contact-add']['el-gr'] = "Προσθήκη Επαφής";
$text['title-contact-add']['es-cl'] = "Agregar Contacto";
$text['title-contact-add']['es-mx'] = "Agregar Contacto"; //copied from es-cl
$text['title-contact-add']['fr-ca'] = "Ajouter Contact"; //copied from fr-fr
$text['title-contact-add']['fr-fr'] = "Ajouter Contact";
$text['title-contact-add']['he-il'] = "הוספת איש קשר";
$text['title-contact-add']['it-it'] = "Inserisci Contatto";
$text['title-contact-add']['nl-nl'] = "Kontact toevoegen";
$text['title-contact-add']['pl-pl'] = "Dodaj kontakt";
$text['title-contact-add']['pt-br'] = "Adicionar contato";
$text['title-contact-add']['pt-pt'] = "Adicionar Contacto";
$text['title-contact-add']['ro-ro'] = "";
$text['title-contact-add']['ru-ru'] = "Контакты Добавить";
$text['title-contact-add']['sv-se'] = "Lägg Till Kontakt";
$text['title-contact-add']['uk-ua'] = "Додавання контакта";
$text['option-work']['en-us'] = "Work";
$text['option-work']['en-gb'] = "Work";
$text['option-work']['ar-eg'] = "";
$text['option-work']['de-at'] = "Arbeit"; //copied from de-de
$text['option-work']['de-ch'] = "Arbeit"; //copied from de-de
$text['option-work']['de-de'] = "Arbeit";
$text['option-work']['el-gr'] = "Εργασία";
$text['option-work']['es-cl'] = "Lugar de Trabajo";
$text['option-work']['es-mx'] = "Lugar de Trabajo"; //copied from es-cl
$text['option-work']['fr-ca'] = "Travail";
$text['option-work']['fr-fr'] = "En Milieu de Travail";
$text['option-work']['he-il'] = "עבודה";
$text['option-work']['it-it'] = "Lavoro";
$text['option-work']['nl-nl'] = "Werk";
$text['option-work']['pl-pl'] = "Praca";
$text['option-work']['pt-br'] = "Local de trabalho";
$text['option-work']['pt-pt'] = "Local de Trabalho";
$text['option-work']['ro-ro'] = "";
$text['option-work']['ru-ru'] = "Работа";
$text['option-work']['sv-se'] = "Arbete";
$text['option-work']['uk-ua'] = "";
$text['option-voicemail']['en-us'] = "Voicemail";
$text['option-voicemail']['en-gb'] = "Voicemail";
$text['option-voicemail']['ar-eg'] = "";
$text['option-voicemail']['de-at'] = "Mailbox"; //copied from de-de
$text['option-voicemail']['de-ch'] = "Mailbox"; //copied from de-de
$text['option-voicemail']['de-de'] = "Mailbox";
$text['option-voicemail']['el-gr'] = "Φωνοκιβώτιο";
$text['option-voicemail']['es-cl'] = "Correo de Voz";
$text['option-voicemail']['es-mx'] = "Correo de Voz"; //copied from es-cl
$text['option-voicemail']['fr-ca'] = "Messagerie Vocale"; //copied from fr-fr
$text['option-voicemail']['fr-fr'] = "Messagerie Vocale";
$text['option-voicemail']['he-il'] = "תא קולי";
$text['option-voicemail']['it-it'] = "Casella Vocale";
$text['option-voicemail']['nl-nl'] = "Antwoord apparaat";
$text['option-voicemail']['pl-pl'] = "Poczta głosowa";
$text['option-voicemail']['pt-br'] = "Correio de Voz";
$text['option-voicemail']['pt-pt'] = "Voicemail";
$text['option-voicemail']['ro-ro'] = "";
$text['option-voicemail']['ru-ru'] = "Голосовая почта";
$text['option-voicemail']['sv-se'] = "Röstbrevlåda";
$text['option-voicemail']['uk-ua'] = "Голосова пошта";
$text['option-true']['en-us'] = "True";
$text['option-true']['en-gb'] = "True";
$text['option-true']['ar-eg'] = "";
$text['option-true']['de-at'] = "Ein"; //copied from de-de
$text['option-true']['de-ch'] = "Ein"; //copied from de-de
$text['option-true']['de-de'] = "Ein";
$text['option-true']['el-gr'] = "Ναι";
$text['option-true']['es-cl'] = "Verdadero";
$text['option-true']['es-mx'] = "Verdadero"; //copied from es-cl
$text['option-true']['fr-ca'] = "vrai";
$text['option-true']['fr-fr'] = "Oui";
$text['option-true']['he-il'] = "חוקי";
$text['option-true']['it-it'] = "Vero";
$text['option-true']['nl-nl'] = "Ja";
$text['option-true']['pl-pl'] = "Tak";
$text['option-true']['pt-br'] = "Sim"; //copied from pt-pt
$text['option-true']['pt-pt'] = "Sim";
$text['option-true']['ro-ro'] = "";
$text['option-true']['ru-ru'] = "Да";
$text['option-true']['sv-se'] = "Sann";
$text['option-true']['uk-ua'] = "Так";
$text['option-text']['en-us'] = "Text";
$text['option-text']['en-gb'] = "Text";
$text['option-text']['ar-eg'] = "";
$text['option-text']['de-at'] = "Text"; //copied from de-de
$text['option-text']['de-ch'] = "Text"; //copied from de-de
$text['option-text']['de-de'] = "Text";
$text['option-text']['el-gr'] = "Κείμενο";
$text['option-text']['es-cl'] = "Texto";
$text['option-text']['es-mx'] = "Texto"; //copied from es-cl
$text['option-text']['fr-ca'] = "Texte"; //copied from fr-fr
$text['option-text']['fr-fr'] = "Texte";
$text['option-text']['he-il'] = "טקסט";
$text['option-text']['it-it'] = "Testo";
$text['option-text']['nl-nl'] = "Tekst";
$text['option-text']['pl-pl'] = "Tekst";
$text['option-text']['pt-br'] = "Texto"; //copied from pt-pt
$text['option-text']['pt-pt'] = "Texto";
$text['option-text']['ro-ro'] = "";
$text['option-text']['ru-ru'] = "Текст";
$text['option-text']['sv-se'] = "Text";
$text['option-text']['uk-ua'] = "Текст";
$text['option-shipping']['en-us'] = "Shipping";
$text['option-shipping']['en-gb'] = "Shipping";
$text['option-shipping']['ar-eg'] = "";
$text['option-shipping']['de-at'] = "Versand"; //copied from de-de
$text['option-shipping']['de-ch'] = "Versand"; //copied from de-de
$text['option-shipping']['de-de'] = "Versand";
$text['option-shipping']['el-gr'] = "Αποστολή";
$text['option-shipping']['es-cl'] = "Envío";
$text['option-shipping']['es-mx'] = "Envío"; //copied from es-cl
$text['option-shipping']['fr-ca'] = "Livraison"; //copied from fr-fr
$text['option-shipping']['fr-fr'] = "Livraison";
$text['option-shipping']['he-il'] = "";
$text['option-shipping']['it-it'] = "Spedizione";
$text['option-shipping']['nl-nl'] = "Versturen";
$text['option-shipping']['pl-pl'] = "Adres wysyłkowy";
$text['option-shipping']['pt-br'] = "Remessa"; //copied from pt-pt
$text['option-shipping']['pt-pt'] = "Remessa";
$text['option-shipping']['ro-ro'] = "";
$text['option-shipping']['ru-ru'] = "Доставка";
$text['option-shipping']['sv-se'] = "Leverans";
$text['option-shipping']['uk-ua'] = "";
$text['option-pref']['en-us'] = "Preferred";
$text['option-pref']['en-gb'] = "Preferred";
$text['option-pref']['ar-eg'] = "";
$text['option-pref']['de-at'] = "Bevorzugt"; //copied from de-de
$text['option-pref']['de-ch'] = "Bevorzugt"; //copied from de-de
$text['option-pref']['de-de'] = "Bevorzugt";
$text['option-pref']['el-gr'] = "Προτιμώμενο";
$text['option-pref']['es-cl'] = "Preferido";
$text['option-pref']['es-mx'] = "Preferido"; //copied from es-cl
$text['option-pref']['fr-ca'] = "Préféré"; //copied from fr-fr
$text['option-pref']['fr-fr'] = "Préféré";
$text['option-pref']['he-il'] = "מועדף";
$text['option-pref']['it-it'] = "Preferito";
$text['option-pref']['nl-nl'] = "Voorkeur";
$text['option-pref']['pl-pl'] = "Preferowany";
$text['option-pref']['pt-br'] = "Perferido";
$text['option-pref']['pt-pt'] = "Preferido";
$text['option-pref']['ro-ro'] = "";
$text['option-pref']['ru-ru'] = "Предпочтительный";
$text['option-pref']['sv-se'] = "Föredragen";
$text['option-pref']['uk-ua'] = "";
$text['option-postal']['en-us'] = "Postal";
$text['option-postal']['en-gb'] = "Postal";
$text['option-postal']['ar-eg'] = "";
$text['option-postal']['de-at'] = "Postalisch"; //copied from de-de
$text['option-postal']['de-ch'] = "Postalisch"; //copied from de-de
$text['option-postal']['de-de'] = "Postalisch";
$text['option-postal']['el-gr'] = "Ταχυδρομικός";
$text['option-postal']['es-cl'] = "Postal";
$text['option-postal']['es-mx'] = "Postal"; //copied from es-cl
$text['option-postal']['fr-ca'] = "Postal"; //copied from fr-fr
$text['option-postal']['fr-fr'] = "Postal";
$text['option-postal']['he-il'] = "דואר";
$text['option-postal']['it-it'] = "Postale";
$text['option-postal']['nl-nl'] = "per post";
$text['option-postal']['pl-pl'] = "Adres pocztowy";
$text['option-postal']['pt-br'] = "Postal"; //copied from pt-pt
$text['option-postal']['pt-pt'] = "Postal";
$text['option-postal']['ro-ro'] = "";
$text['option-postal']['ru-ru'] = "Почтовый";
$text['option-postal']['sv-se'] = "Postkod";
$text['option-postal']['uk-ua'] = "";
$text['option-physical']['en-us'] = "Physical";
$text['option-physical']['en-gb'] = "Physical";
$text['option-physical']['ar-eg'] = "";
$text['option-physical']['de-at'] = "Physikalisch"; //copied from de-de
$text['option-physical']['de-ch'] = "Physikalisch"; //copied from de-de
$text['option-physical']['de-de'] = "Physikalisch";
$text['option-physical']['el-gr'] = "Φυσικό";
$text['option-physical']['es-cl'] = "Físico";
$text['option-physical']['es-mx'] = "Físico"; //copied from es-cl
$text['option-physical']['fr-ca'] = "Physique"; //copied from fr-fr
$text['option-physical']['fr-fr'] = "Physique";
$text['option-physical']['he-il'] = "";
$text['option-physical']['it-it'] = "Fisico";
$text['option-physical']['nl-nl'] = "Fysiek";
$text['option-physical']['pl-pl'] = "Fizyczny";
$text['option-physical']['pt-br'] = "Fisico";
$text['option-physical']['pt-pt'] = "Físico";
$text['option-physical']['ro-ro'] = "";
$text['option-physical']['ru-ru'] = "Физический";
$text['option-physical']['sv-se'] = "Fysisk";
$text['option-physical']['uk-ua'] = "";
$text['option-personal']['en-us'] = "Personal";
$text['option-personal']['en-gb'] = "Personal";
$text['option-personal']['ar-eg'] = "";
$text['option-personal']['de-at'] = "Privat"; //copied from de-de
$text['option-personal']['de-ch'] = "Privat"; //copied from de-de
$text['option-personal']['de-de'] = "Privat";
$text['option-personal']['el-gr'] = "Προσωπικό";
$text['option-personal']['es-cl'] = "Personal";
$text['option-personal']['es-mx'] = "Personal"; //copied from es-cl
$text['option-personal']['fr-ca'] = "Personnel"; //copied from fr-fr
$text['option-personal']['fr-fr'] = "Personnel";
$text['option-personal']['he-il'] = "פרטי";
$text['option-personal']['it-it'] = "Personale";
$text['option-personal']['nl-nl'] = "Persoonlijk";
$text['option-personal']['pl-pl'] = "Osobisty";
$text['option-personal']['pt-br'] = "Pessoal"; //copied from pt-pt
$text['option-personal']['pt-pt'] = "Pessoal";
$text['option-personal']['ro-ro'] = "";
$text['option-personal']['ru-ru'] = "Персональный";
$text['option-personal']['sv-se'] = "Personlig";
$text['option-personal']['uk-ua'] = "";
$text['option-parcel']['en-us'] = "Parcel";
$text['option-parcel']['en-gb'] = "Parcel";
$text['option-parcel']['ar-eg'] = "";
$text['option-parcel']['de-at'] = "Paket"; //copied from de-de
$text['option-parcel']['de-ch'] = "Paket"; //copied from de-de
$text['option-parcel']['de-de'] = "Paket";
$text['option-parcel']['el-gr'] = "Δέμα";
$text['option-parcel']['es-cl'] = "Parcela";
$text['option-parcel']['es-mx'] = "Parcela"; //copied from es-cl
$text['option-parcel']['fr-ca'] = "Parcelle"; //copied from fr-fr
$text['option-parcel']['fr-fr'] = "Parcelle";
$text['option-parcel']['he-il'] = "";
$text['option-parcel']['it-it'] = "Collo";
$text['option-parcel']['nl-nl'] = "Pakket";
$text['option-parcel']['pl-pl'] = "Paczka";
$text['option-parcel']['pt-br'] = "Parcela"; //copied from pt-pt
$text['option-parcel']['pt-pt'] = "Parcela";
$text['option-parcel']['ro-ro'] = "";
$text['option-parcel']['ru-ru'] = "Пакет";
$text['option-parcel']['sv-se'] = "Paket";
$text['option-parcel']['uk-ua'] = "";
$text['option-pager']['en-us'] = "Pager";
$text['option-pager']['en-gb'] = "Pager";
$text['option-pager']['ar-eg'] = "";
$text['option-pager']['de-at'] = "Pager"; //copied from de-de
$text['option-pager']['de-ch'] = "Pager"; //copied from de-de
$text['option-pager']['de-de'] = "Pager";
$text['option-pager']['el-gr'] = "Βομβητής";
$text['option-pager']['es-cl'] = "Buscapersonas";
$text['option-pager']['es-mx'] = "Buscapersonas"; //copied from es-cl
$text['option-pager']['fr-ca'] = "Pager"; //copied from fr-fr
$text['option-pager']['fr-fr'] = "Pager";
$text['option-pager']['he-il'] = "";
$text['option-pager']['it-it'] = "Cercapersone";
$text['option-pager']['nl-nl'] = "Pager";
$text['option-pager']['pl-pl'] = "Pager ";
$text['option-pager']['pt-br'] = "Página";
$text['option-pager']['pt-pt'] = "Pager";
$text['option-pager']['ro-ro'] = "";
$text['option-pager']['ru-ru'] = "Пейджер";
$text['option-pager']['sv-se'] = "Personsökare";
$text['option-pager']['uk-ua'] = "Пейджер";
$text['option-other']['en-us'] = "Other";
$text['option-other']['en-gb'] = "Other";
$text['option-other']['ar-eg'] = "";
$text['option-other']['de-at'] = "Andere"; //copied from de-de
$text['option-other']['de-ch'] = "Andere"; //copied from de-de
$text['option-other']['de-de'] = "Andere";
$text['option-other']['el-gr'] = "Άλλα";
$text['option-other']['es-cl'] = "Otro";
$text['option-other']['es-mx'] = "Otro"; //copied from es-cl
$text['option-other']['fr-ca'] = "Autre"; //copied from fr-fr
$text['option-other']['fr-fr'] = "Autre";
$text['option-other']['he-il'] = "אחר";
$text['option-other']['it-it'] = "Altro";
$text['option-other']['nl-nl'] = "Anders";
$text['option-other']['pl-pl'] = "Inne";
$text['option-other']['pt-br'] = "Outro"; //copied from pt-pt
$text['option-other']['pt-pt'] = "Outro";
$text['option-other']['ro-ro'] = "";
$text['option-other']['ru-ru'] = "Другие";
$text['option-other']['sv-se'] = "Annat";
$text['option-other']['uk-ua'] = "";
$text['option-mobile']['en-us'] = "Mobile";
$text['option-mobile']['en-gb'] = "Mobile";
$text['option-mobile']['ar-eg'] = "";
$text['option-mobile']['de-at'] = "Mobil"; //copied from de-de
$text['option-mobile']['de-ch'] = "Mobil"; //copied from de-de
$text['option-mobile']['de-de'] = "Mobil";
$text['option-mobile']['el-gr'] = "Κινητό";
$text['option-mobile']['es-cl'] = "Celular";
$text['option-mobile']['es-mx'] = "Celular"; //copied from es-cl
$text['option-mobile']['fr-ca'] = "Cellulaire"; //copied from fr-fr
$text['option-mobile']['fr-fr'] = "Cellulaire";
$text['option-mobile']['he-il'] = "נייד";
$text['option-mobile']['it-it'] = "Mobile";
$text['option-mobile']['nl-nl'] = "Mobiel";
$text['option-mobile']['pl-pl'] = "Tel komórkowy";
$text['option-mobile']['pt-br'] = "Celular"; //copied from pt-pt
$text['option-mobile']['pt-pt'] = "Celular";
$text['option-mobile']['ro-ro'] = "";
$text['option-mobile']['ru-ru'] = "Мобильний";
$text['option-mobile']['sv-se'] = "Mobil";
$text['option-mobile']['uk-ua'] = "Мобільний";
$text['option-main']['en-us'] = "Main";
$text['option-main']['en-gb'] = "Main";
$text['option-main']['ar-eg'] = "";
$text['option-main']['de-at'] = "Vorrangig"; //copied from de-de
$text['option-main']['de-ch'] = "Vorrangig"; //copied from de-de
$text['option-main']['de-de'] = "Vorrangig";
$text['option-main']['el-gr'] = "Κύριο";
$text['option-main']['es-cl'] = "Principal";
$text['option-main']['es-mx'] = "Principal"; //copied from es-cl
$text['option-main']['fr-ca'] = "Principal"; //copied from fr-fr
$text['option-main']['fr-fr'] = "Principal";
$text['option-main']['he-il'] = "ראשי";
$text['option-main']['it-it'] = "Principale";
$text['option-main']['nl-nl'] = "Hoofd";
$text['option-main']['pl-pl'] = "Główny";
$text['option-main']['pt-br'] = "Principal"; //copied from pt-pt
$text['option-main']['pt-pt'] = "Principal";
$text['option-main']['ro-ro'] = "";
$text['option-main']['ru-ru'] = "Главный";
$text['option-main']['sv-se'] = "Huvud";
$text['option-main']['uk-ua'] = "Основний";
$text['option-mailing']['en-us'] = "Mailing";
$text['option-mailing']['en-gb'] = "Mailing";
$text['option-mailing']['ar-eg'] = "";
$text['option-mailing']['de-at'] = "Postalisch"; //copied from de-de
$text['option-mailing']['de-ch'] = "Postalisch"; //copied from de-de
$text['option-mailing']['de-de'] = "Postalisch";
$text['option-mailing']['el-gr'] = "Ταχυδρομικός";
$text['option-mailing']['es-cl'] = "Mailing";
$text['option-mailing']['es-mx'] = "Mailing"; //copied from es-cl
$text['option-mailing']['fr-ca'] = "Postale"; //copied from fr-fr
$text['option-mailing']['fr-fr'] = "Postale";
$text['option-mailing']['he-il'] = "";
$text['option-mailing']['it-it'] = "Posta";
$text['option-mailing']['nl-nl'] = "per post";
$text['option-mailing']['pl-pl'] = "Mailing";
$text['option-mailing']['pt-br'] = "Correspondência";
$text['option-mailing']['pt-pt'] = "Mailing";
$text['option-mailing']['ro-ro'] = "";
$text['option-mailing']['ru-ru'] = "Почтовый";
$text['option-mailing']['sv-se'] = "Utskick";
$text['option-mailing']['uk-ua'] = "Пошта";
$text['option-intl']['en-us'] = "International";
$text['option-intl']['en-gb'] = "International";
$text['option-intl']['ar-eg'] = "";
$text['option-intl']['de-at'] = "International"; //copied from de-de
$text['option-intl']['de-ch'] = "International"; //copied from de-de
$text['option-intl']['de-de'] = "International";
$text['option-intl']['el-gr'] = "Διεθνής";
$text['option-intl']['es-cl'] = "Internacional";
$text['option-intl']['es-mx'] = "Internacional"; //copied from es-cl
$text['option-intl']['fr-ca'] = "International"; //copied from fr-fr
$text['option-intl']['fr-fr'] = "International";
$text['option-intl']['he-il'] = "בילאומי";
$text['option-intl']['it-it'] = "Internazionale";
$text['option-intl']['nl-nl'] = "Internationaal";
$text['option-intl']['pl-pl'] = "Międzynarodowy";
$text['option-intl']['pt-br'] = "Internacional"; //copied from pt-pt
$text['option-intl']['pt-pt'] = "Internacional";
$text['option-intl']['ro-ro'] = "";
$text['option-intl']['ru-ru'] = "Международный";
$text['option-intl']['sv-se'] = "Internationell";
$text['option-intl']['uk-ua'] = "Міжнародний";
$text['option-import_duplicates_skip']['en-us'] = "Skip";
$text['option-import_duplicates_skip']['en-gb'] = "Skip";
$text['option-import_duplicates_skip']['ar-eg'] = "";
$text['option-import_duplicates_skip']['de-at'] = "Überspringen"; //copied from de-de
$text['option-import_duplicates_skip']['de-ch'] = "Überspringen"; //copied from de-de
$text['option-import_duplicates_skip']['de-de'] = "Überspringen";
$text['option-import_duplicates_skip']['el-gr'] = "Παράβλεψη";
$text['option-import_duplicates_skip']['es-cl'] = "Omitir";
$text['option-import_duplicates_skip']['es-mx'] = "Omitir"; //copied from es-cl
$text['option-import_duplicates_skip']['fr-ca'] = "Sauter"; //copied from fr-fr
$text['option-import_duplicates_skip']['fr-fr'] = "Sauter";
$text['option-import_duplicates_skip']['he-il'] = "דלג";
$text['option-import_duplicates_skip']['it-it'] = "Salta";
$text['option-import_duplicates_skip']['nl-nl'] = "Overslaan";
$text['option-import_duplicates_skip']['pl-pl'] = "Pomiń";
$text['option-import_duplicates_skip']['pt-br'] = "Pular"; //copied from pt-pt
$text['option-import_duplicates_skip']['pt-pt'] = "Pular";
$text['option-import_duplicates_skip']['ro-ro'] = "";
$text['option-import_duplicates_skip']['ru-ru'] = "Пропустить";
$text['option-import_duplicates_skip']['sv-se'] = "Skippa";
$text['option-import_duplicates_skip']['uk-ua'] = "Пропустити";
$text['option-import_duplicates_replace']['en-us'] = "Replace";
$text['option-import_duplicates_replace']['en-gb'] = "Replace";
$text['option-import_duplicates_replace']['ar-eg'] = "";
$text['option-import_duplicates_replace']['de-at'] = "Ersetzen"; //copied from de-de
$text['option-import_duplicates_replace']['de-ch'] = "Ersetzen"; //copied from de-de
$text['option-import_duplicates_replace']['de-de'] = "Ersetzen";
$text['option-import_duplicates_replace']['el-gr'] = "Αντικατάσταση";
$text['option-import_duplicates_replace']['es-cl'] = "Reemplazar";
$text['option-import_duplicates_replace']['es-mx'] = "Reemplazar"; //copied from es-cl
$text['option-import_duplicates_replace']['fr-ca'] = "Remplacer"; //copied from fr-fr
$text['option-import_duplicates_replace']['fr-fr'] = "Remplacer";
$text['option-import_duplicates_replace']['he-il'] = "החלף";
$text['option-import_duplicates_replace']['it-it'] = "Sostituisci";
$text['option-import_duplicates_replace']['nl-nl'] = "Vervangen";
$text['option-import_duplicates_replace']['pl-pl'] = "Zastąp";
$text['option-import_duplicates_replace']['pt-br'] = "Substituir"; //copied from pt-pt
$text['option-import_duplicates_replace']['pt-pt'] = "Substituir";
$text['option-import_duplicates_replace']['ro-ro'] = "";
$text['option-import_duplicates_replace']['ru-ru'] = "Заменить";
$text['option-import_duplicates_replace']['sv-se'] = "Byt Ut";
$text['option-import_duplicates_replace']['uk-ua'] = "Замінити";
$text['option-home']['en-us'] = "Home";
$text['option-home']['en-gb'] = "Home";
$text['option-home']['ar-eg'] = "";
$text['option-home']['de-at'] = "Privat"; //copied from de-de
$text['option-home']['de-ch'] = "Privat"; //copied from de-de
$text['option-home']['de-de'] = "Privat";
$text['option-home']['el-gr'] = "Αρχική";
$text['option-home']['es-cl'] = "Casa";
$text['option-home']['es-mx'] = "Casa"; //copied from es-cl
$text['option-home']['fr-ca'] = "Domicile";
$text['option-home']['fr-fr'] = "Maison";
$text['option-home']['he-il'] = "בית";
$text['option-home']['it-it'] = "Casa";
$text['option-home']['nl-nl'] = "Huis";
$text['option-home']['pl-pl'] = "Dom";
$text['option-home']['pt-br'] = "Casa"; //copied from pt-pt
$text['option-home']['pt-pt'] = "Casa";
$text['option-home']['ro-ro'] = "";
$text['option-home']['ru-ru'] = "Главная";
$text['option-home']['sv-se'] = "Hem";
$text['option-home']['uk-ua'] = "Домашній";
$text['option-fax']['en-us'] = "Fax";
$text['option-fax']['en-gb'] = "Fax";
$text['option-fax']['ar-eg'] = "";
$text['option-fax']['de-at'] = "Fax"; //copied from de-de
$text['option-fax']['de-ch'] = "Fax"; //copied from de-de
$text['option-fax']['de-de'] = "Fax";
$text['option-fax']['el-gr'] = "Τηλεομοιότυπο";
$text['option-fax']['es-cl'] = "Facsímil";
$text['option-fax']['es-mx'] = "Facsímil"; //copied from es-cl
$text['option-fax']['fr-ca'] = "Télécopie"; //copied from fr-fr
$text['option-fax']['fr-fr'] = "Télécopie";
$text['option-fax']['he-il'] = "פקס";
$text['option-fax']['it-it'] = "Fax";
$text['option-fax']['nl-nl'] = "Fax";
$text['option-fax']['pl-pl'] = "Faks";
$text['option-fax']['pt-br'] = "FAX";
$text['option-fax']['pt-pt'] = "Fax";
$text['option-fax']['ro-ro'] = "";
$text['option-fax']['ru-ru'] = "Факс";
$text['option-fax']['sv-se'] = "Fax";
$text['option-fax']['uk-ua'] = "Факс";
$text['option-false']['en-us'] = "False";
$text['option-false']['en-gb'] = "False";
$text['option-false']['ar-eg'] = "";
$text['option-false']['de-at'] = "Aus"; //copied from de-de
$text['option-false']['de-ch'] = "Aus"; //copied from de-de
$text['option-false']['de-de'] = "Aus";
$text['option-false']['el-gr'] = "Όχι";
$text['option-false']['es-cl'] = "Falso";
$text['option-false']['es-mx'] = "Falso"; //copied from es-cl
$text['option-false']['fr-ca'] = "Faux";
$text['option-false']['fr-fr'] = "Non";
$text['option-false']['he-il'] = "לא חוקי";
$text['option-false']['it-it'] = "Falso";
$text['option-false']['nl-nl'] = "Nee";
$text['option-false']['pl-pl'] = "Nie";
$text['option-false']['pt-br'] = "Não"; //copied from pt-pt
$text['option-false']['pt-pt'] = "Não";
$text['option-false']['ro-ro'] = "";
$text['option-false']['ru-ru'] = "Нет";
$text['option-false']['sv-se'] = "Falsk";
$text['option-false']['uk-ua'] = "Ні";
$text['option-dom']['en-us'] = "Domestic";
$text['option-dom']['en-gb'] = "Domestic";
$text['option-dom']['ar-eg'] = "";
$text['option-dom']['de-at'] = "Lokal"; //copied from de-de
$text['option-dom']['de-ch'] = "Lokal"; //copied from de-de
$text['option-dom']['de-de'] = "Lokal";
$text['option-dom']['el-gr'] = "Τοπικό";
$text['option-dom']['es-cl'] = "Doméstico";
$text['option-dom']['es-mx'] = "Doméstico"; //copied from es-cl
$text['option-dom']['fr-ca'] = "Domestique"; //copied from fr-fr
$text['option-dom']['fr-fr'] = "Domestique";
$text['option-dom']['he-il'] = "";
$text['option-dom']['it-it'] = "Domestico";
$text['option-dom']['nl-nl'] = "Lokaal";
$text['option-dom']['pl-pl'] = "Krajowy";
$text['option-dom']['pt-br'] = "Doméstico"; //copied from pt-pt
$text['option-dom']['pt-pt'] = "Doméstico";
$text['option-dom']['ro-ro'] = "";
$text['option-dom']['ru-ru'] = "Внутренние";
$text['option-dom']['sv-se'] = "Inhemsk";
$text['option-dom']['uk-ua'] = "Домашній";
$text['option-contact_type_volunteer']['en-us'] = "Volunteer";
$text['option-contact_type_volunteer']['en-gb'] = "Volunteer";
$text['option-contact_type_volunteer']['ar-eg'] = "";
$text['option-contact_type_volunteer']['de-at'] = "Freiwilliger Helfer"; //copied from de-de
$text['option-contact_type_volunteer']['de-ch'] = "Freiwilliger Helfer"; //copied from de-de
$text['option-contact_type_volunteer']['de-de'] = "Freiwilliger Helfer";
$text['option-contact_type_volunteer']['el-gr'] = "Εθελοντής";