aboutsummaryrefslogtreecommitdiffstats
path: root/resources/languages/resources.properties
blob: bc39d06a2606fa0aafd4f3644a554608f5997db7 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
# Jitsi, the OpenSource Java VoIP and Instant Messaging client.
#
# Copyright @ 2015 Atlassian Pty Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Translation files are automatically generated from:
#
#        http://translate.jitsi.org/
#
# Note to translators:
# - do not edit the resources_xx.properties files directly. Your changes
#   may be lost. Go to http://translate.jitsi.org/ instead.
# - {0}, {1}... are parameters which will be replaced by the
#   actual text at runtime, place them as you wish
# - \ at the end of a line means that the translation is continued
#   in the next line
# - you cannot use single quotes when a parameter is used in the sentence.
#   For example, <You can't move contact {0}>, <Contact {0} doesn't exist>,
#   or <Accept '{0}'> does not display correctly. In such cases, you need
#   to use double quotes (''):
#   <You can''t move contact {0}>, <Contact {0} doesn''t exist>, or
#   <Accept ''{0}''>
#
# To start Jitsi with a language that is different
# from your system's language, pass the language code to ant:
# ant -Duser.language=xx run

service.gui.ABOUT=&About
service.gui.ACCEPT=&Accept
service.gui.ACCOUNT=Account
service.gui.ACCOUNT_ME=Me
service.gui.ACCOUNT_REGISTRATION_WIZARD=Account Registration Wizard
service.gui.ACCOUNTS=Accounts
service.gui.ADD=&Add
service.gui.ADD_CONTACT=&Add contact
service.gui.ADD_AUTHORIZED_CONTACT=Add {0} to your contact list
service.gui.ADD_CONTACT_TO_CONTACTLIST=Add the contact to your contact list
service.gui.ADD_CONTACT_TO=&Add contact to
service.gui.ADD_CONTACT_ERROR=Failed to add contact with id: {0}
service.gui.ADD_CONTACT_ERROR_TITLE=Add contact Error
service.gui.ADD_CONTACT_EXIST_ERROR=The contact {0} already exists in your contact list.
service.gui.ADD_CONTACT_NETWORK_ERROR=Server did not respond to our request adding contact with id: {0}.
service.gui.ADD_CONTACT_NOT_SUPPORTED=Failed to add contact with id: {0}. Operation not supported.
service.gui.ADD_CONTACT_NOT_CONNECTED=You need to be connected in in order to add a contact. Please sign in to the selected provider and try again.
service.gui.ADD_GROUP_LOCAL_ERROR=Failed to add group with name: {0}. The problem occurred during a local IO operation.
service.gui.ADD_GROUP_EXIST_ERROR=The group {0} already exists in your contact list. Please choose another name.
service.gui.ADD_GROUP_NET_ERROR=Failed to add group with name: {0}. The problem occurred due to a network failure. Please check your network connection and try again.
service.gui.ADD_GROUP_ERROR=Failed to add group with name: {0}.
service.gui.ADD_GROUP_EMPTY_NAME=The group name must not be empty.
service.gui.ADDRESS=Address
service.gui.ADMINISTRATOR=administrator
service.gui.ADVANCED=&Advanced
service.gui.ALL_CONTACTS=&All contacts
service.gui.ALTERNATE_ADDRESS=Alternate address
service.gui.APPLY=&Apply
service.gui.ARE_CALLING={0} are calling...
service.gui.ARE_NOW=You are now {0}
service.gui.AT=at
service.gui.AUTHORIZE=&Authorize
service.gui.AUTHORIZATION_ACCEPTED={0} has accepted your authorization request.
service.gui.AUTHENTICATION_FAILED=Authentication failed for {0}. The password you entered is not valid.
service.gui.AUTHENTICATION_REQUESTED_SERVER=The {0} server has requested your authentication.
service.gui.AUTHENTICATION_REJECTED={0} has rejected your authorization request.
service.gui.AUTHENTICATION_WINDOW_TITLE={0} authentication
service.gui.AUTHORIZATION_REQUESTED=Authorization requested
service.gui.AUTHORIZATION_REQUESTED_INFO=The {0} contact requests your authorization.
service.gui.AUTHORIZATION_RESPONSE=Authorization response
service.gui.AWAY_STATUS=Away
service.gui.EXTENDED_AWAY_STATUS=Extended Away
service.gui.BAN=&Ban
service.gui.BANNED=banned
service.gui.BAN_FAILED=Ban failed
service.gui.BAN_FAILED_GENERAL_ERROR=Failed to ban {0}. A general server error occurred.
service.gui.BAN_FAILED_NOT_ALLOWED=Failed to ban {0}. The owner and the administrator of the room could not be banned.
service.gui.BAN_FAILED_NOT_ENOUGH_PERMISSIONS=Failed to ban {0}. You don''t have enough privileges to do that.
service.gui.BRB_MESSAGE=I'm gone right now, but I'll be back.
service.gui.BROWSE=Browse
service.gui.BUSY_MESSAGE=Sorry, I'm busy right now.
service.gui.BUSY_STATUS=Busy
service.gui.CALL=Call
service.gui.CALL_CONTACT=Call contact
service.gui.CALL_FAILED=Call failed
service.gui.CALL_HISTORY_TOOL_TIP=Click here to show call history
service.gui.CALL_HISTORY_GROUP_NAME=Call history
service.gui.CALL_VIA=Call via:
service.gui.CALL_NAME_OR_NUMBER=Call name or number
service.gui.CALL_NOT_SUPPORTING_PARTICIPANT=This call only supports participants from the {0} network and your {1} account. {2} does not contain any address for this network or account.
service.gui.CALL_WITH=Call with
service.gui.CALL_NO_AUDIO_DEVICE=You have no audio device configured.
service.gui.CALL_NO_AUDIO_CODEC=You have no audio codecs enabled.
service.gui.CALL_NO_DEVICE_CODECS_Q=Would you like to continue the call?
service.gui.CANCEL=&Cancel
service.gui.CHAT=Chat
service.gui.CHANGE_FONT=Change font
service.gui.CHANGE_ROOM_SUBJECT=Change room's subject...
service.gui.CHANGE_ROOM_SUBJECT_LABEL=In the field below, you can enter the new subject for this room.
service.gui.CHANGE_NICK=Change nickname
service.gui.CHANGE_NICKNAME=Change nickname...
service.gui.CHANGE_NICKNAME_LABEL=In the field below, you can enter your new nickname.
service.gui.CHANGE_NICKNAME_ERROR=Error changing nickname
service.gui.CHANGE_NICKNAME_CONFLICT_ERROR=Nickname already exists
service.gui.CHANGE_VIDEO_QUALITY=Change remote video quality
service.gui.CHAT_CONFERENCE_ITEM_LABEL={0}''s conference
service.gui.CHAT_ROOM_ALREADY_JOINED=The {0} chat room is already joined.
service.gui.CHAT_ROOM_CONFIGURATION={0} chat room configuration
service.gui.CHAT_ROOM_CONFIGURATION_FAILED=Failed to obtain the {0} chat room configuration form.
service.gui.CHAT_ROOM_CONFIGURATION_FORBIDDEN=Could not obtain the {0} chat room configuration form. Only owners of the chat room can see and change the configuration form.
service.gui.CHAT_ROOM_CONFIGURATION_SUBMIT_FAILED=An error occurred while trying to submit the configuration form for chat room {0}.
service.gui.CHAT_ROOM_CONFIGURATION_MEMBERS_EDIT_TITLE=Edit Members List
service.gui.CHAT_ROOM_CONFIGURATION_MEMBERS_EDIT_DESCRIPTION=List on the right contains users that have member role in this chat room. When chat room is 'Members-only' those will be the users that are allowed to join.
service.gui.CHAT_ROOM_USER_JOINED=has joined {0}
service.gui.CHAT_ROOM_USER_LEFT=has left {0}
service.gui.CHAT_ROOM_USER_KICKED=has been kicked from {0}
service.gui.CHAT_ROOM_USER_QUIT=has quit {0}
service.gui.CHAT_ROOM_SEND_MSG_FORBIDDEN=Message sending is forbidden (voice revoked)
service.gui.CHAT_ROOM_NAME=Chat room name
service.gui.CLEAR_CUSTOM_MESSAGES=Clear custom messages
service.gui.ROOM_NAME=Chat Room
service.gui.CHANGE_PASSWORD=Change password
service.gui.CHAT_ROOM_NAME_INFO=In the field below enter the name of the chat room that you would like to create.
service.gui.CHAT_ROOM_NOT_EXIST=The {0} room was not found in the {1} server. Please verify if the name you typed is correct.
service.gui.CHAT_ROOM_NOT_CONNECTED=You need to be logged in in order to join the {0} chat room.
service.gui.CHAT_ROOM_LEAVE_NOT_CONNECTED=You need to be logged in in order to leave a chat room.
service.gui.CHAT_ROOM_OPTIONS=Chat room options
service.gui.CHAT_ROOM_REGISTRATION_REQUIRED=The {0} chat room requires registration to be joined.
service.gui.CHAT_ROOM_REQUIRES_PASSWORD=The {0} chat room has requested a password.
service.gui.CHAT_ROOMS=Chat rooms
service.gui.CHAT_ROOM=Chat room
service.gui.CHAT_ROOM_SUBJECT_CHANGED={0} has changed the subject to {1}
service.gui.CHAT_ROOM_ALTERNATE_ADDRESS=You can continue the conversation in the following chat room: {0}
service.gui.CHAT_NICKNAME_CHANGE={0} is now known as {1}
service.gui.CHOOSE_CONTACT=Choose contact
service.gui.CHOOSE_NUMBER=Choose number
service.gui.CHOOSE_ACCOUNT=Please select one of the listed accounts.
service.gui.CITY=City
service.gui.COUNTRY=Country
service.gui.SHOW_MORE_TOOLTIP=Click to show more results
service.gui.CLEAR=Clear
service.gui.CLOSE=Cl&ose
service.gui.CLOSE_CHAT_AFTER_NEW_MESSAGE=You have received a new message less than 2 seconds ago. Are you sure you want to close this chat?
service.gui.CLOSE_CHAT_ACTIVE_FILE_TRANSFER=You have active file transfers. Are you sure you want to cancel them?
service.gui.CONFIRM=Confirm
service.gui.CONNECTED_STATUS=Connected
service.gui.CONNECTING=Connecting...
service.gui.CONNECTING_STATUS=Connecting
service.gui.CONNECTING_EARLY_MEDIA_STATUS=Connecting*
service.gui.CONNECTION=Connection
service.gui.CONNECTION_EXPIRED_MSG=You are currently disconnected from the {0} server.
service.gui.CONTACT_NAME=ID or Number
service.gui.CONTACT_NAME_PROMPT=jane.doe@example.com
service.gui.CONTACT_NAME_INFO=Add either an instant messaging address (such as jane.doe@example.com) or a VoIP number
service.gui.CONTACT_NOT_SUPPORTING_CHAT_CONF=The chosen {0} contact doesn''t support chat conferencing.
service.gui.CONTACT_PAUSED_TYPING={0} paused typing the message
service.gui.CONTACT_TYPING={0} is typing a message
service.gui.CONTACT_TYPING_SEND_FAILED=uh-oh...we couldn''t tell {0} that you were writing
service.gui.CONTACT_INFO=&Contact info
service.gui.CONTACTS=Contacts
service.gui.COPY=&Copy
service.gui.COPY_LINK=Copy &link
service.gui.CREATE=C&reate
servoce.gui.CREATE_CALL_FAILED=Failed to create the call.
service.gui.CREATE_CHAT_ROOM=&Create chat room...
service.gui.CREATE_CHAT_ROOM_ERROR=Failed to create {0} chat room.
service.gui.CREATE_CHAT_ROOM_WIZARD=Create chat room wizard
service.gui.CREATE_CONFERENCE_CALL=&Create a conference call...
service.gui.CREATE_GROUP=&Create group...
service.gui.CREATE_GROUP_NAME=In the field below enter the name of the group you would like to create.
service.gui.CREATE_VIDEO_BRIDGE=Create a &video bridge...
service.gui.CREATE_VIDEO_BRIDGE_MENU=Create a &video bridge
service.gui.CREATE_JOIN_VIDEO_CONFERENCE=Create / Join video conference
service.gui.CREATE_VIDEO_CONFERENCE=Create a new video conference for this chat room
service.gui.CONTACT_INFO_NOT_SUPPORTED=This contact doesn't support web contact info
service.gui.CUT=C&ut
service.gui.DELETE=Delete
service.gui.DENY=&Deny
service.gui.DESKTOP_SHARING_WARNING=<b>Are you sure you want to start screen sharing?</b> <br> Clicking OK will let people on this call see your screen.
service.gui.DESKTOP_SHARING_DIALOG_INDICATE=You are sharing your screen
service.gui.DIALPAD=Dial Pad
service.gui.DISPLAY_NAME=Display name
service.gui.DISPLAY_NAME_PROMPT=Jane Doe
service.gui.DISPLAY_NAME_INFO=Add a name for this contact. If left blank the IM address or VoIP number will be used. (Optional)
service.gui.DISCONNECTED_STATUS=Disconnected
service.gui.DND_STATUS=Do not disturb
service.gui.DO_NOT_ASK_AGAIN=Don't ask again
service.gui.DO_NOT_SHOW_AGAIN=Don't show this message again
service.gui.DRAG_FOR_SHARING=Drag here anything you want to share...
service.gui.DURATION=duration
service.gui.DESTROY_CHATROOM=Destroy chat room
service.gui.DESTROY_MESSAGE=To inform other participants, please enter a reason and an alternative chat room address to join.
service.gui.EDIT=&Edit
service.gui.EDITED_AT=edited at {0}
service.gui.EMAIL=Email
service.gui.EMAILS=Emails
service.gui.EMPTY_HISTORY=&Empty history
service.gui.ENABLE_DESKTOP_REMOTE_CONTROL=Enable desktop remote control
service.gui.ENABLE_TYPING_NOTIFICATIONS=Tell others when we are writing to them (send chat activity)
service.gui.END_CONFERENCE=End conference
service.gui.ENTER_PHONE_NUMBER=Enter phone number
service.gui.ENTER_NAME_OR_NUMBER=Enter name or number
service.gui.ERROR=Error
service.gui.ERROR_WAS=Error was: {0}
service.gui.ERROR_RECEIVED_FROM=Error received from {0}
service.gui.ESTIMATED_TIME=Estimated time:
service.gui.EVENTS=Events
service.gui.EXIT=E&xit
service.gui.GENERAL=General
service.gui.GENERAL_ERROR=General error
service.gui.GROUP_NAME=Group name
service.gui.FAILED_STATUS=Call failed
service.gui.FAILED_TO_JOIN_CHAT_ROOM=Failed to join chat room with name: {0}.
service.gui.FAX=Fax
service.gui.FFC_STATUS=Free for chat
service.gui.FILE=&File
service.gui.FILE_WAITING_TO_ACCEPT=Waiting for {0} to accept your file.
service.gui.FILE_UNABLE_TO_SEND=An error occurred while sending file to {0}.
service.gui.FILE_RECEIVE_FAILED=An error occurred while transferring file from {0}.
service.gui.FILE_SENDING_TO=Sending file to {0}.
service.gui.FILE_RECEIVING_FROM=Receiving file from {0}.
service.gui.FILE_SEND_COMPLETED=File has been successfully sent to {0}.
service.gui.FILE_RECEIVE_COMPLETED=File has been received from {0}.
service.gui.FILE_TRANSFER_CANCELED=File transfer has been canceled.
service.gui.FILE_SEND_FAILED=Failed to send file: {0}.
service.gui.FILE_TOO_BIG=File size exceeds the maximum allowed for this protocol: {0}.
service.gui.FILE_SEND_REFUSED={0} has rejected this file.
service.gui.FILE_TRANSFER_REFUSED=File transfer has been rejected.
service.gui.FILE_TRANSFER_NOT_SUPPORTED=The contact you have selected doesn't support file transfers.
service.gui.FILE_TRANSFER_PREPARING=Preparing file transfer with {0}. Please wait...
service.gui.FILE_TRANSFER_REQUEST_RECIEVED={0} is sharing a file with you.
service.gui.FILE_DOES_NOT_EXIST=The specified file could not be found. It was either deleted or moved.
service.gui.FILE_OPEN_FAILED=Failed to open file. It may be deleted or moved.
service.gui.FILE_OPEN_NOT_SUPPORTED=We are sorry, the open file operation is not supported by the current platform.
service.gui.FILE_OPEN_NO_PERMISSION=You don't have enough permissions to open this file. Please check your read permissions and try again.
service.gui.FILE_OPEN_NO_APPLICATION=We couldn't find the application associated with this type of file.
service.gui.FINISH=&Finish
service.gui.FOLDER_DOES_NOT_EXIST=The folder containing this file could not be found. It was either deleted or moved.
service.gui.FOLDER_OPEN_FAILED=Failed to open folder.
service.gui.FOLDER_OPEN_NO_PERMISSION=You don't have enough permissions to open this folder. Please check your read permissions and try again.
service.gui.FOLDER_OPEN_NO_APPLICATION=We couldn't find an application to open this folder.
service.gui.FONT=Font
service.gui.FONT_BOLD=Bold
service.gui.FONT_COLOR=Color
service.gui.FONT_FAMILY=Family
service.gui.FONT_ITALIC=Italic
service.gui.FONT_SIZE=Size
service.gui.FONT_STYLE=Style
service.gui.FONT_UNDERLINE=Underline
service.gui.GRANT_OWNERSHIP=Grant ownership...
service.gui.GRANT_ADMIN=Grant administrator...
service.gui.GRANT_MODERATOR=Grant moderator
service.gui.GRANT_MEMBERSHIP=Grant membership
service.gui.GRANT_VOICE=Grant voice
service.gui.GUEST=visitor
service.gui.HANG_UP=Hang up
service.gui.HD_QUALITY=HD video
service.gui.HELP=&Help
service.gui.HIDE=Hide
service.gui.HIDE_OFFLINE_CONTACTS=Hide offline contacts
service.gui.HIDE_MAIN_WINDOW=<DIV>Clicking the X window button will not exit the application, \
but only <BR> hide it. If you wish to exit the application choose File/Quit.</DIV>
service.gui.HISTORY=&History
service.gui.HISTORY_CONTACT=History - {0}
service.gui.HISTORY_TOGGLE_PER_CONTACT=Turn off history for this contact
service.gui.HISTORY_TOGGLE_PER_CHATROOM=Turn off history for this chat room
service.gui.HISTORY_TOGGLE_ALL=Turn off history for all chats and contacts
service.gui.HISTORY_ERASE_PER_CONTACT=Erase all history for this contact
service.gui.HISTORY_ERASE_PER_CHATROOM=Erase all history for this chat room
service.gui.HISTORY_ERASE_ALL=Erase all chat history in {0}
service.gui.HISTORY_REMOVE_PER_CONTACT_WARNING=Are you sure you want to permanently remove all locally stored messages for {0}?
service.gui.HISTORY_REMOVE_ALL_WARNING=Are you sure you want to permanently remove all locally stored messages?
service.gui.HISTORY_REMOVE_ERROR=Error removing locally stored messages.
service.gui.HOME=Home
service.gui.HOME_PAGE=Home page
service.gui.ICE=ICE
service.gui.IDENTIFIER=Identifier
service.gui.IGNORE=&Ignore
service.gui.INSERT_SMILEY=Insert smiley
service.gui.INCOMING_CALL=Incoming call received from: {0}
service.gui.INCOMING_SCREEN_SHARE=Incoming screen share received from: {0}
service.gui.INCOMING_CALL_STATUS=Incoming call
service.gui.INCOMING_SCREEN_SHARE_STATUS=Incoming screen share
service.gui.INSTANT_MESSAGINGS=IMs
service.gui.IM=IM
service.gui.INITIATING_CALL_STATUS=Initiating call
service.gui.INVITATION=Invitation text
service.gui.INVITATION_RECEIVED=Invitation received
service.gui.INVITATION_RECEIVED_MSG={0} has invited you to join {1} chat room. You could accept, reject or ignore this invitation.
service.gui.INVITATION_REJECTED={0} has rejected your invite to join chat room. Reason: {1}.
service.gui.INVITE=&Invite
service.gui.INVITE_CONTACT_MSG=Select the names of the contacts you would like to add to this conversation and then click Invite.
service.gui.INVITE_CONTACT_TO_CHAT=Invite contacts to chat
service.gui.INVITE_CONTACT_TO_CALL=Invite contacts to call
service.gui.INVITE_CONTACT_TO_VIDEO_BRIDGE=Invite contacts to video bridge
service.gui.INVITE_REASON=Invite reason
service.gui.IS_CALLING={0} is calling...
service.gui.IS_NOW={0} is now {1}
service.gui.JOIN=&Join
service.gui.JOIN_AS=J&oin as
service.gui.JOIN_EXISTING_VIDEO_CONFERENCE=Join an existing video conference
service.gui.JOIN_VIDEO=Join video
service.gui.JOB_TITLE=Job title
service.gui.JOIN_CHAT_ROOM=&Join chat room...
service.gui.JOIN_CHAT_ROOM_TITLE=Join chat room
service.gui.JOIN_CHAT_ROOM_NAME=Please enter the name of the chat room you would like to join.
service.gui.JOIN_CHAT_ROOM_WIZARD=Join chat room wizard
service.gui.JOIN_AUTOMATICALLY=Join automatically
service.gui.DONT_JOIN_AUTOMATICALLY=Don't join automatically
service.gui.KICK=&Kick
service.gui.KICK_FAILED=Kick failed
service.gui.KICK_FAILED_GENERAL_ERROR=Failed to kick {0}. A general server error occurred.
service.gui.KICK_FAILED_NOT_ALLOWED=Failed to kick {0}. The owner and the administrator of the room could not be kicked.
service.gui.KICK_FAILED_NOT_ENOUGH_PERMISSIONS=Failed to kick {0}. You don''t have enough privileges to do that.
service.gui.LAST_NAME=Last name
service.gui.LEAVE=&Leave
service.gui.LIMIT_REACHED_FOR_IP=You have too many existing registrations from the local IP address and the {0} server doesn''t allow to open any more of them.
service.gui.LIST=List
service.gui.LOADING_ROOMS=Loading rooms...
service.gui.LOADING=Loading...
service.gui.LOCALLY_ON_HOLD_STATUS=Locally on hold
service.gui.LOGIN_NETWORK_ERROR=Unable to log in with account: User name: {0}, Server name: {1}, due to a network failure. Please check your network connection.
service.gui.LOGIN_GENERAL_ERROR=An error occurred while logging in with account: User name: {0}, Server name: {1}:{2}.
service.gui.LOGIN_INTERNAL_ERROR=An error occurred while logging in with account: User name: {0}, Server name: {1}. This is most probably an internal application error. Please report the problem to our developers mailing list (dev@jitsi.java.net).
service.gui.LOGIN_INVALID_PROPERTIES_ERROR=Unable to log in with account: User name: {0}, Server name: {1}, due to an account configuration problem. Please check your account configuration.
service.gui.LOGOFF_NOT_SUCCEEDED=An error occurred while logging off with the following account: User name: {0}, Server name: {1}.
service.gui.LOW_QUALITY=Low quality
service.gui.MEMBER=member
service.gui.MERGE_TO_CALL=Merge all calls
service.gui.MESSAGE=Message
service.gui.MISSED_CALLS_TOOL_TIP=Missed calls from:
service.gui.MISSED_CALLS_MORE_TOOL_TIP= and {0} more
service.gui.MODERATOR=moderator
service.gui.MORE_LABEL=More
service.gui.MOVE=Move
service.gui.MOVE_SUBCONTACT=M&ove contact
service.gui.MOVE_SUBCONTACT_MSG=Select the contact or the group, where you would like to move the selected contact.
service.gui.MOVE_SUBCONTACT_FAILED=The contact you have chosen is the same as \n the source one. Please choose another contact!
service.gui.MOVE_SUBCONTACT_QUESTION=Are you sure you want to move {0} to {1}?
service.gui.MOVE_TO_GROUP=&Move to group
service.gui.MOVE_CONTACT=Move Contact
service.gui.MSG_DELIVERY_FAILURE=The above message could not be delivered
service.gui.MSG_DELIVERY_NOT_SUPPORTED=The protocol you are using doesn''t \
support offline messages. You could try to reach {0} through another \
protocol or wait until he/she becomes online.
service.gui.MSG_DELIVERY_INTERNAL_ERROR=An internal error occurred. This is most probably a bug. Please report it here: https://jitsi.org/Development/BugsAndIssues.
service.gui.MSG_DELIVERY_ERROR=Failed to deliver message.
service.gui.MSG_DELIVERY_UNKNOWN_ERROR=Unknown error has occurred while delivering your message.
service.gui.MSG_DELIVERY_UNSUPPORTED_OPERATION=Unsupported operation.
service.gui.MSG_NOT_DELIVERED=A network problem occurred. Please check your network configuration and try again.
service.gui.MSG_NOT_POSSIBLE=Messaging is not possible for this contact (it is not supported by the protocol)
service.gui.MSG_RECEIVED={0} wrote
service.gui.MSG_SEND_CONNECTION_PROBLEM=You should be connected to be able to send messages.
service.gui.MULTIPLE_LOGINS=You have logged in more than once with the same account. The following account: User name: {0}, Server name: {1} is currently disconnected.
service.gui.MY_CHAT_ROOMS=Add chat room
service.gui.MY_CHAT_ROOMS_TITLE=Add chat room
service.gui.MUTUALLY_ON_HOLD_STATUS=Mutually On Hold
service.gui.NAME=Name
service.gui.NETWORK=Network
service.gui.NETWORK_FAILURE=Network failure
service.gui.NEXT=&Next
service.gui.NEW_ACCOUNT=Add &new account...
service.gui.NEW_MESSAGE=New message
service.gui.NEW_NAME=New name
service.gui.NEW_STATUS_MESSAGE=New status message
service.gui.NEW_STATUS_MESSAGE_SAVE=Save as custom message
service.gui.NICKNAME=Nickname
service.gui.NO=No
service.gui.NONE=None
service.gui.NO_CAMERA_AVAILABLE=No camera available
service.gui.NO_DESKTOP_SHARING_FOR_PROTOCOL=Desktop sharing is not supported for this protocol
service.gui.NO_VIDEO_ENCODINGS=No video encodings are selected in configuration
service.gui.NO_VIDEO_FOR_PROTOCOL=Video is not supported for this protocol
service.gui.NO_AVAILABLE_ROOMS=The list of rooms for this server is currently not available.
service.gui.NO_CONTACTS_FOUND=No matching contacts found. Press Ctrl+Enter to call {0} or use the buttons below.
service.gui.NO_CONTACTS_FOUND_SHORT=No matching contacts found.
service.gui.NO_MESSAGE=No message
service.gui.NO_GROUP_CHAT_ACCOUNT_AVAILABLE=No accounts, supporting multi user chat found. Check jitsi.org for more information on which protocols support multi user chat.
service.gui.NO_ONLINE_CONFERENCING_ACCOUNT=No available conferencing account. Check https://jitsi.org for more information on which protocols support conferencing.
service.gui.NO_ONLINE_TELEPHONY_ACCOUNT=At least one online telephony account is needed in order to make a call. Please login to one of your telephony accounts and try again.
service.gui.NOT_AUTHORIZED=Not authorized
service.gui.NON_EMPTY_CHAT_WINDOW_CLOSE=You're trying to close a chat with a non-sent message. Are you sure you want to close this chat?
service.gui.NON_EXISTING_USER_ID=The {0} server does not recognize specified user id.
service.gui.NOT_IN_CONTACT_LIST_GROUP_NAME=NotInContactList
service.gui.SD_QUALITY=Standard quality
service.gui.OFFLINE=Offline
service.gui.OK=&OK
service.gui.ONLINE=Online
service.gui.OPEN=Open
service.gui.OPEN_FILE_FROM_IMAGE=Double click to open file.
service.gui.OPEN_FOLDER=Open folder
service.gui.OPEN_IN_BROWSER=Open in &browser
service.gui.OPTIONS=Options
service.gui.OPEN_AUTOMATICALLY=Open this room automatically when
service.gui.OPEN_ON_ACTIVITY=Open on activity
service.gui.OPEN_ON_MESSAGE=Open on message only
service.gui.OPEN_ON_IMPORTANT_MESSAGE=Open on important messages only
service.gui.OR=or
service.gui.ORGANIZATION=Organization
service.gui.OTHER=Other
service.gui.chat.role.OWNER=Owner
service.gui.chat.role.ADMINISTRATOR=Administrator
service.gui.chat.role.MODERATOR=Moderator
service.gui.chat.role.MEMBER=Member
service.gui.chat.role.GUEST=Guest
service.gui.chat.role.SILENT_MEMBER=Silent member
service.gui.chat.role.OUTCAST=Banned from join
service.gui.OWNER=owner of the room
service.gui.ON_MOBILE_TOOLTIP=(on mobile)
service.gui.PASSWORD=Password
service.gui.PASSWORD_CHANGE_FAILURE=Password change failed
service.gui.PASSWORD_CHANGE_SUCCESS=Password successfully changed
service.gui.PASTE=&Paste
service.gui.PERSONAL=Personal
service.gui.PORT=Port
service.gui.POSTAL_CODE=Postal code
service.gui.PREFERENCES=Preferences
service.gui.PREFIX=Prefix
service.gui.PRESENCE=Presence
service.gui.PRESS_ENTER_FOR_SUGGESTIONS='Enter' for suggestions
service.gui.PRESS_FOR_CALL_INFO=Press for call info
service.gui.PRESS_TO_OPEN_CRM=Press to open CRM application
service.gui.PREVIOUS=Previous
service.gui.PRINT=&Print
service.gui.PROACTIVE_NOTIFICATION=is writing a message
service.gui.PROBLEMS_ENCOUNTERED=Problems encountered
service.gui.PROTOCOL=Protocol
service.gui.PUT_OFF_HOLD=Put off hold
service.gui.PUT_ON_HOLD=Put on hold
service.gui.QUIT=&Quit
service.gui.READY=Ready
service.gui.RECENT_MESSAGES=Recent conversations
service.gui.REASON=Reason
service.gui.RECEIVED={0} received
service.gui.RECONNECTION_LIMIT_EXCEEDED=You have have been disconnecting and reconnecting to the server too fast. The following account: User name: {0}, Server name: {1} is temporarily banned and would have to wait a bit before trying to login again.
service.gui.RE_REQUEST_AUTHORIZATION=Re-request authorization
service.gui.REFERRED_STATUS=Referred
service.gui.REJECT=&Reject
service.gui.REMEMBER_PASSWORD=Remember password
service.gui.REMOVE=&Remove
service.gui.REMOVE_ACCOUNT=&Remove account
service.gui.REMOVE_ACCOUNT_MESSAGE=Are you sure you want to remove this account?
service.gui.REMOVE_CONTACT=&Remove contact
service.gui.REMOVE_CONTACT_TEXT=<DIV>Are you sure you want to remove <B> {0} </B><BR>from your contact list?</DIV>
service.gui.REMOVE_CONTACT_NOT_CONNECTED=You need to be connected in order to remove this contact. Please sign in and try again.
service.gui.REMOVE_GROUP=&Remove group
service.gui.REMOTELY_ON_HOLD_STATUS=Remotely on hold
service.gui.RENAME=&Rename
service.gui.RENAME_CONTACT=Re&name contact
service.gui.RENAME_CONTACT_WIZARD=In the field below you can specify the name you would like to use for the given contact.
service.gui.RENAME_GROUP=Re&name group
service.gui.RENAME_GROUP_INFO=In the field below you can specify the name you would like to use for the given group.
service.gui.RENAME_CLEAR_USER_DEFINED=Restore
service.gui.RINGING_STATUS=Ringing
service.gui.REQUEST=&Request
service.gui.REQUEST_AUTHORIZATION=&Request authorization
service.gui.REQUEST_AUTHORIZATION_MSG=Can''t add {0} to your Contact List. {0} must authorize your request to add him/her. Please enter your request below.
service.gui.RETRY=Retry
service.gui.REVOKE_OWNERSHIP=Revoke ownership
service.gui.REVOKE_ADMIN=Revoke admin
service.gui.REVOKE_MODERATOR=Revoke moderator
service.gui.REVOKE_MEMBERSHIP=Revoke membership
service.gui.REVOKE_VOICE=Revoke voice
service.gui.SAVE=&Save
service.gui.SEARCH=&Search
service.gui.SEARCH_FOR_CHAT_ROOMS_MSG=Click the below button to show all chat rooms existing in the selected server. Then select the one you would like to join and click the join button.
service.gui.SEARCH_STRING_CONTACT_SOURCE=Searched contact
service.gui.SECURITY=Security
service.gui.SELECT_ACCOUNT=Select account
service.gui.SELECT_ACCOUNT_INFO=Which account do you want to use to communicate with this contact?
service.gui.SELECT_COLOR=Select color
service.gui.SELECT_GROUP=Select group
service.gui.SELECT_GROUP_INFO=Which group do you want to display this contact under? (Optional)
service.gui.SELECT_NO_GROUP=No group
service.gui.SELECT_PROVIDERS_FOR_CHAT_ROOM=The list below contains all accounts that support the multi user chat feature. Select the one you would like to use to create your chat room.
service.gui.SELECT_VIDEO_CONFERENCE=Select video conference
service.gui.SERVER_CHAT_ROOMS_DIALOG_TEXT=Select chat room from the list and press OK to add it.
service.gui.SEND=&Send
service.gui.SEND_FILE=Send &file
service.gui.SEND_MESSAGE=&Send a message
service.gui.SEND_PRIVATE_MESSAGE=Send private message
service.gui.SEND_SMS=S&end SMS
service.gui.SEND_SMS_DETAILS=Remember that you need to enter the number in international \
format e.g. starting with +44 for the UK for example, +447777000000
service.gui.SEND_SMS_NOT_SUPPORTED=The protocol you have selected doesn't support SMS messages.
service.gui.SMS=SMS
service.gui.SEND_VIA=Send via
service.gui.SENT=sent
service.gui.SERVER_CHAT_ROOMS=Server Chat Rooms
service.gui.SET_GLOBAL_STATUS=Set global status
service.gui.SET_STATUS_MESSAGE=Set status message
service.gui.SET_SUBJECT=Set subject
service.gui.SETTINGS=&Options
service.gui.SHARE_DESKTOP=&Share desktop
service.gui.SHARE_DESKTOP_WITH_CONTACT=Share desktop with contact
service.gui.SHARE_FULL_SCREEN=Share full screen
service.gui.SHARE_REGION=Share region
service.gui.SHOW=Show
service.gui.SHOW_CONTACT_LIST_TOOL_TIP=Click here to switch off the history view and show your contact list.
service.gui.SHOW_MORE=show more...
service.gui.SHOW_OFFLINE_CONTACTS=Show offline contacts
service.gui.SIGN_IN=Sign in
service.gui.SMS_SUCCESSFULLY_SENT=SMS message successfully sent!
service.gui.SMS_SEND_CONNECTION_PROBLEM=You need to be connected before being able to send SMS messages. Please connect your SMS provider account.
service.gui.SPECIFY_REASON=In the field below you could specify the reason of this operation.
service.gui.SPECIFY_SERVER=Please complete the server part of your account.
service.gui.SOUND_OFF=Turn sound off
service.gui.SOUND_ON=Turn sound on
service.gui.START_SHARING=Start sharing
service.gui.STATUS=Status
service.gui.STATUS_CHANGED_CHAT_MESSAGE=has become {0}
service.gui.STATUS_CHANGE_GENERAL_ERROR=Failed to change status for account: User name: {0}, Server name: {1}, due to a general error.
service.gui.STATUS_CHANGE_NETWORK_FAILURE=Failed to change status for account: User name: {0}, Server name: {1}, due to a network problem.
service.gui.STATUS_MESSAGE_INFO=In the field below you can specify the new message you would like to use.
service.gui.STOP_SHARING=Stop sharing
service.gui.STREET=Street
service.gui.SUBJECT=Subject
service.gui.SUMMARY=Summary
service.gui.TELEPHONY=Telephony
service.gui.TOOLS=&Tools
service.gui.TRANSFER=Trans&fer
service.gui.TO=&To:
service.gui.TRANSFER_CALL_MSG=Select the name of the contact you would like to transfer to and then click Transfer.
service.gui.TRANSFER_CALL_TITLE=Transfer Call
service.gui.TRANSFER_CALL_TO=Transfer to:
service.gui.TRANSPARENCY_NOT_ENABLED=Transparency is not supported by your current configuration.
service.gui.TYPE_YOUR_REQUEST=Type your request here
service.gui.UNABLE_TO_CHANGE_VIDEO_QUALITY=We were not able to change video quality for this call.
service.gui.USER_IDENTIFIER=User identifier:
service.gui.USER_EXISTS_ERROR=This user already exists on the selected network. Please choose another user or network.
service.gui.USERNAME_NULL=Please fill your username and password.
service.gui.WEBPAGE=Open web page
service.gui.ACCOUNT_CREATION_FAILED=We failed to create your account due to the following error: {0}
service.gui.UNKNOWN=Unknown user
service.gui.UNKNOWN_STATUS=Unknown state
service.gui.UNREGISTERED_MESSAGE=Unable to connect the following account: User name: {0}, Server name: {1}. You are currently offline.
service.gui.USE_PROVISIONING=Use online provisioning
service.gui.VALUE=Value
service.gui.VIDEO_CALL=&Video call
service.gui.VIA=via
service.gui.VIEW=&View
service.gui.VIEW_HISTORY=View &history
service.gui.VIEW_SMILEYS=View &smileys
service.gui.VIEW_TOOLBAR=View &toolbar
service.gui.VIEW_SIMPLE_CHAT_THEME=Simple chat theme view
service.gui.VOICEMAIL_NEW_URGENT_OLD_RECEIVED={0} new ({1} urgent) and {2} old messages
service.gui.VOICEMAIL_NEW_URGENT_RECEIVED={0} new ({1} urgent) messages
service.gui.VOICEMAIL_NEW_OLD_RECEIVED={0} new and {1} old messages
service.gui.VOICEMAIL_NEW_RECEIVED={0} new messages
service.gui.VOICEMAIL_OLD_RECEIVED={0} old messages
service.gui.VOICEMAIL_NO_MESSAGES=No messages.
service.gui.VOICEMAIL_TITLE=Voice messages
service.gui.VOICEMAIL_TOOLTIP=Voice messages for:
service.gui.VOICEMAIL_TIP=Click the call button to hear your messages.
service.gui.VOICEMAIL_TIP_NO_ACCOUNT=Please configure URI for checking voicemail in account wizard
service.gui.VOLUME_CONTROL_TOOL_TIP=Adjust volume
service.gui.WAITING_AUTHORIZATION=Waiting for authorization
service.gui.WARNING=Warning
service.gui.YES=Yes
service.gui.NEW_GMAIL_HEADER=You have received a new mail message in your {0} <a href="{1}">inbox</a>:<br/>
service.gui.NEW_GMAIL_MANY_HEADER=You have received {2} new mail messages in your {0} <a href="{1}">inbox</a>:<br/>
service.gui.NEW_GMAIL_FOOTER=one more unread conversation in your <a href="{0}">inbox</a>.<br/>
service.gui.NEW_GMAIL_MANY_FOOTER={1} more unread conversations in your <a href="{0}">inbox</a>.<br/>
service.gui.ACTIVATE=Activate
service.gui.DEACTIVATE=Deactivate
service.gui.NEW=New
service.gui.ENTER_FULL_SCREEN_TOOL_TIP=Enter Fullscreen
service.gui.EXIT_FULL_SCREEN_TOOL_TIP=Exit Fullscreen
service.gui.HOLD_BUTTON_TOOL_TIP=Toggle Hold
service.gui.MUTE_BUTTON_TOOL_TIP=Toggle Mute or hold button to adjust microphone sound
service.gui.PARK=Park
service.gui.PARKING_SLOT=Parking Slot:
service.gui.PARK_BUTTON_TOOL_TIP=Park Call
service.gui.RECORD_BUTTON_TOOL_TIP=Toggle Record
service.gui.LOCAL_VIDEO_BUTTON_TOOL_TIP=Toggle Video
service.gui.SHOW_LOCAL_VIDEO_BUTTON_TOOL_TIP=Show/hide local video
service.gui.SHOW_HIDE_PEERS_TOOL_TIP=Show/hide call participants list
service.gui.TRANSFER_BUTTON_TOOL_TIP=Transfer Call
service.gui.TRANSFER_TO=Transfer to...
service.gui.SECURITY_INFO=Security information
service.gui.SECURITY_WARNING=Security warning
service.gui.SECURITY_ERROR=Security error
service.gui.SPEED=Speed:
service.gui.SILENT_MEMBER=silent member
service.gui.NON_SECURE_CONNECTION=No secure connection can be made for account {0}. If you want to connect to non-secure server, please check \"Allow non-secure connections\" in your account configuration
service.gui.MOBILE_PHONE=Mobile
service.gui.VIDEO_PHONE=Video
service.gui.WORK_PHONE=Work
service.gui.PHONE=Phone
service.gui.PHONES=Phones
service.gui.EDIT_NOT_SUPPORTED=Editing this account is not supported
service.gui.SHOW_PREVIEW=(show preview)
service.gui.SHOW_PREVIEW_WARNING_DESCRIPTION=Would you like to proceed displaying this image?\n\nPlease consider that enabling Image/Video previews might violate your online anonymity and expose your activity on the network.
service.gui.SHOW_PREVIEW_DIALOG_TITLE=Show Image/Video preview

service.gui.ZID_NAME_SET=ZRTP identifier's name:
service.gui.ZID_NAME_NOT_SET=ZRTP identifier name is not set.
service.gui.ZID_NAME_BUTTON=Click to set a ZRTP identifier name.
service.gui.ZID_NAME_DIALOG=Edit ZRTP identifier name
service.gui.ZID_NAME_UNEXPECTED=<html>ZRTP identifier name does not match.<br>\
<b>Compare authentication string with partner and check!</b><br>\
Edit ZRP identifier name and store it only if authentication string matches.</html>

service.gui.JANUARY=Jan
service.gui.FEBRUARY=Feb
service.gui.MARCH=Mar
service.gui.APRIL=Apr
service.gui.MAY=May
service.gui.JUNE=Jun
service.gui.JULY=Jul
service.gui.AUGUST=Aug
service.gui.SEPTEMBER=Sep
service.gui.OCTOBER=Oct
service.gui.NOVEMBER=Nov
service.gui.DECEMBER=Dec

service.gui.callinfo.TECHNICAL_CALL_INFO=Technical Call Info
service.gui.callinfo.CALL_INFORMATION=Call information
service.gui.callinfo.CALL_IDENTITY=Identity
service.gui.callinfo.PEER_COUNT=Participant count
service.gui.callinfo.IS_CONFERENCE_FOCUS=Conference focus
service.gui.callinfo.CALL_TRANSPORT=Signalling call transport
service.gui.callinfo.CALL_DURATION=Call duration
service.gui.callinfo.TLS_PROTOCOL=TLS protocol
service.gui.callinfo.TLS_CIPHER_SUITE=TLS cipher suite
service.gui.callinfo.TLS_CERTIFICATE_CONTENT=The content of the TLS server \
certificate is displayed below.
service.gui.callinfo.VIEW_CERTIFICATE=View certificate
service.gui.callinfo.CODEC=Codec / Frequency
service.gui.callinfo.NA=N.A.
service.gui.callinfo.VIDEO_SIZE=Video size
service.gui.callinfo.AUDIO_INFO=Audio info
service.gui.callinfo.VIDEO_INFO=Video info
service.gui.callinfo.LOCAL_IP=Local IP / Port
service.gui.callinfo.REMOTE_IP=Remote IP / Port
service.gui.callinfo.BANDWITH=Bandwidth
service.gui.callinfo.LOSS_RATE=Loss rate
service.gui.callinfo.RTT=RTT
service.gui.callinfo.JITTER=Jitter
service.gui.callinfo.MEDIA_STREAM_TRANSPORT_PROTOCOL=Media stream transport protocol
service.gui.callinfo.MEDIA_STREAM_RTP=RTP
service.gui.callinfo.MEDIA_STREAM_SRTP=SRTP
service.gui.callinfo.KEY_EXCHANGE_PROTOCOL=Key exchange protocol
service.gui.callinfo.ICE_CANDIDATE_EXTENDED_TYPE=ICE candidate extended type
service.gui.callinfo.ICE_STATE=ICE Processing State

#enum values from IceProcessingState
service.gui.callinfo.ICE_STATE.WAITING=Gather candidates
service.gui.callinfo.ICE_STATE.RUNNING=Connectivity checks
service.gui.callinfo.ICE_STATE.COMPLETED=Completed
service.gui.callinfo.ICE_STATE.FAILED=Failed
service.gui.callinfo.ICE_STATE.TERMINATED=Terminated

service.gui.callinfo.ICE_LOCAL_HOST_ADDRESS=Local host IP / Port
service.gui.callinfo.ICE_LOCAL_REFLEXIVE_ADDRESS=Local reflexive IP / Port
service.gui.callinfo.ICE_LOCAL_RELAYED_ADDRESS=Local relayed IP / Port
service.gui.callinfo.ICE_REMOTE_HOST_ADDRESS=Remote host IP / Port
service.gui.callinfo.ICE_REMOTE_REFLEXIVE_ADDRESS=Remote reflexive IP / Port
service.gui.callinfo.ICE_REMOTE_RELAYED_ADDRESS=Remote relayed IP / Port
service.gui.callinfo.TOTAL_HARVESTING_TIME=Total harvesting time
service.gui.callinfo.HARVESTING_TIME=Harvesting time
service.gui.callinfo.HARVESTING_MS_FOR=ms (for
service.gui.callinfo.HARVESTS=harvests)
service.gui.callinfo.DECODED_WITH_FEC=Packets decoded with FEC
service.gui.callinfo.DISCARDED_PERCENT=Packets currently being discarded
service.gui.callinfo.DISCARDED_TOTAL=Number of discarded packets
service.gui.callinfo.ADAPTIVE_JITTER_BUFFER=Adaptive jitter buffer
service.gui.callinfo.JITTER_BUFFER_DELAY=Jitter buffer

service.gui.ALWAYS_TRUST=Always trust this certificate
service.gui.CERT_DIALOG_TITLE=Verify Certificate
service.gui.CERT_DIALOG_DESCRIPTION_TXT=<html>{0} can''t verify the identity \
of the server when connecting to<br>\
<b>{1}</b>.<br><br> \
The certificate is not trusted, which means that the server''s \
identity cannot be automatically verified.<br><br> \
Do you want to continue connecting?<br> \
For more information, click "Show Certificate".</html>
service.gui.CERT_DIALOG_DESCRIPTION_TXT_NOHOST=<html>{0} can''t verify the \
identity of the server''s certificate.<br><br> \
The certificate is not trusted, which means that the server''s \
identity cannot<br> be automatically verified. \
Do you want to continue connecting?<br><br> \
For more information, click "Show Certificate".</html>
service.gui.CERT_DIALOG_PEER_DESCRIPTION_TXT=<html>{0} can''t verify the identity \
of the peer {1}.<br><br> \
The certificate is not trusted, which means that the peer''s \
identity cannot<br> be automatically verified. \
Do you want to continue connecting?<br><br> \
For more information, click "Show Certificate".</html>
service.gui.CONTINUE_ANYWAY=Continue anyway
service.gui.CERT_INFO_CHAIN=Certificate Chain:
service.gui.CERT_INFO_ISSUED_TO=Issued To

#service.gui.CERT_INFO_ are combined from Rdn names
service.gui.CERT_INFO_CN=Common Name:
service.gui.CERT_INFO_O=Organization:
service.gui.CERT_INFO_C=Country Name:
service.gui.CERT_INFO_ST=State or Province Name:
service.gui.CERT_INFO_L=Locality Name:
service.gui.CERT_INFO_ISSUED_BY=Issued By
service.gui.CERT_INFO_OU=Organizational Unit:
service.gui.CERT_INFO_VALIDITY=Validity
service.gui.CERT_INFO_ISSUED_ON=Issued On:
service.gui.CERT_INFO_EXPIRES_ON=Expires On:
service.gui.CERT_INFO_FINGERPRINTS=Fingerprints
service.gui.CERT_INFO_CERT_DETAILS=Certificate Info
service.gui.CERT_INFO_SER_NUM=Serial Number:
service.gui.CERT_INFO_VER=Version:
service.gui.CERT_INFO_SIGN_ALG=Signature Algorithm:
service.gui.CERT_INFO_PUB_KEY_INFO=Public Key Info
service.gui.CERT_INFO_ALG=Algorithm:
service.gui.CERT_INFO_PUB_KEY=Public Key:
service.gui.CERT_INFO_KEY_BITS_PRINT={0} bits
service.gui.CERT_INFO_EXP=Exponent:
service.gui.CERT_INFO_KEY_SIZE=Key Size:
service.gui.CERT_INFO_SIGN=Signature:
service.gui.SHOW_CERT=Show Certificate
service.gui.HIDE_CERT=Hide Certificate

service.gui.AUTO_ANSWER=Auto Answer and Call Forwarding
service.gui.AUTO_ANSWER_LABEL=Auto Answer
service.gui.AUTO_ANSWER_ALL_CALLS=All calls
service.gui.AUTO_ANSWER_ALERT_INFO_FIELDS=Only calls that require it. (Those containing an \"Alert-Info\" field set to \"Auto Answer\")
service.gui.AUTO_ANSWER_CUSTOM_FIELDS=Calls with the following field and value
service.gui.AUTO_ANSWER_FIELD=Field/Header:
service.gui.AUTO_ANSWER_VALUE=Value:
service.gui.AUTO_ANSWER_DESCR_VLUE=leave empty for any
service.gui.AUTO_ANSWER_FWD_CALLS=Forward Calls
service.gui.AUTO_ANSWER_FWD_CALLS_TO=Forward all calls to the following number or URI:
service.gui.AUTO_ANSWER_VIDEO=Video
service.gui.AUTO_ANSWER_VIDEO_CALLS_WITH_VIDEO=Answer video calls with video
service.gui.LOCAL_VIDEO_ERROR_TITLE=Local video error
service.gui.LOCAL_VIDEO_ERROR_MESSAGE=Failed to enable/disable the local video.

service.gui.security.SECURE_AUDIO=Secure audio
service.gui.security.AUDIO_NOT_SECURED=Audio not secure
service.gui.security.SECURE_VIDEO=Secure video
service.gui.security.VIDEO_NOT_SECURED=Video not secure
service.gui.security.CALL_SECURED_TOOLTIP=Call secured. For more information click here.
service.gui.security.CALL_NOT_SECURED_TOOLTIP=Call not secure.
service.gui.security.CALL_SECURED_COMPARE_TOOLTIP=Press here to compare security secret with your partner.
# keep the following string short
service.gui.security.COMPARE_WITH_PARTNER_SHORT=Compare with partner:
service.gui.security.STRING_COMPARED=String compared!
service.gui.security.SAS_INFO_TOOLTIP=\
<html>In order to be completely secured you<br/>\
need to verbally <b>compare</b> the short<br/>\
authentication string here left with your<br/>\
partner and press the confirm button when the <br/>\
string is verified.<br/><br/>\
If you clear the confirmation, you'll be asked to verify<br/>\
next time when you call this partner.</html>
service.gui.security.SECURITY_ALERT=Trying to secure call. Will disconnect in

service.gui.avatar.CHOOSE_ICON=Choose picture
service.gui.avatar.REMOVE_ICON=Remove current picture
service.gui.avatar.CLEAR_RECENT=Clear recent pictures
service.gui.avatar.RECENT_ICONS=Recent pictures:
# service.gui.avatar.imagepicker
service.gui.avatar.imagepicker.CANCEL=Cancel
service.gui.avatar.imagepicker.CHOOSE_FILE=Choose ...
service.gui.avatar.imagepicker.CLICK=Click and Smile
service.gui.avatar.imagepicker.IMAGE_FILES=Image files
service.gui.avatar.imagepicker.IMAGE_PICKER=Picture
service.gui.avatar.imagepicker.IMAGE_SIZE=Image size
service.gui.avatar.imagepicker.RESET=Reset
service.gui.avatar.imagepicker.SET=Set
service.gui.avatar.imagepicker.TAKE_PHOTO=Take a photo

service.gui.security.encryption.required=Encryption required!

service.protocol.ICE_FAILED=Could not establish connection (ICE failed and no relay found)

service.systray.MODE=Tray implementation
service.systray.mode.NATIVE=Default
service.systray.mode.DISABLED=Disabled
service.systray.mode.APPINDICATOR=AppIndicator (Unity, KDE, not plain Gnome 3; may crash on Debian)
service.systray.mode.APPINDICATOR_STATIC=AppIndicator Static (no account status menus)
service.systray.CLI_NOTE=If your choice does not work, you can start {0} with the "--notray" option. \
 This forces the mode to "Disabled" and shows the GUI. \
 Changing the tray implementation requires a restart.

impl.protocol.sip.XCAP_ERROR_TITLE=Error in SIP contact list storage
impl.protocol.sip.XCAP_ERROR_RESOURCE_ERR=Resource cannot be read {0}. For {1}
impl.protocol.sip.XCAP_ERROR_UNAUTHORIZED=Wrong username or password using xcap. For {0}.

# systray
impl.systray.SET_STATUS=Set Status
impl.systray.FAILED_TO_OPEN_ADD_CONTACT_DIALOG=Failed to open the "Add Contact" dialog.
impl.systray.POPUP_MESSAGE_HANDLER=Systray balloon messages
impl.swingnotification.POPUP_MESSAGE_HANDLER={0} popups
impl.growlnotification.POPUP_MESSAGE_HANDLER=Growl notifications
impl.galagonotification.POPUP_MESSAGE_HANDLER=freedesktop.org Desktop Notifications

# New Account Dialog
impl.gui.main.account.DEFAULT_PAGE_TITLE=Select Network
impl.gui.main.account.DEFAULT_PAGE_BODY=You can use the list above to select the network that you would like to add an account for.
impl.gui.main.account.DUMMY_PROTOCOL_NAME=select network
impl.gui.main.account.DUMMY_PROTOCOL_DESCRIPTION=select network

# LDAP
impl.ldap.CONFIG_FORM_TITLE=LDAP configuration
impl.ldap.GENERAL=General
impl.ldap.FIELDS=Fields
impl.ldap.QUERY=Query
impl.ldap.QUERY_DEFAULT=Create automatically
impl.ldap.QUERY_CUSTOM=Custom query
impl.ldap.QUERY_CUSTOM_HINT=Use {0} as a placeholder for the search term.
impl.ldap.QUERY_CUSTOM_AUTO_WILDCARD=Automatically add wildcards to the query term
impl.ldap.QUERY_PHOTO_INLINE=Fetch photo along with other attributes
impl.ldap.EDIT=edit
impl.ldap.ENABLED=Enabled
impl.ldap.SERVER_NAME=Server name
impl.ldap.SERVER_NAME_EXAMPLE=My LDAP server
impl.ldap.SERVER_HOSTNAME=Hostname
impl.ldap.SERVER_EXIST=Server already exist, choose a different name
impl.ldap.USE_SSL=Use SSL
impl.ldap.AUTH_NONE=None
impl.ldap.AUTH_SIMPLE=Simple
impl.ldap.SCOPE_SUB_TREE=Sub tree
impl.ldap.SCOPE_ONE=One
impl.ldap.SAVE=Save
impl.ldap.CANCEL=Cancel
impl.ldap.SERVER_PORT=Port
impl.ldap.AUTHENTICATION=Authentication
impl.ldap.USERNAME=User name (Bind DN)
impl.ldap.PASSWORD=Password
impl.ldap.SEARCH_BASE=Search base
impl.ldap.SCOPE=Scope
impl.ldap.WRONG_CREDENTIALS=Wrong credentials for LDAP directory {0}
impl.ldap.MAIL_FIELD_NAME=Mail field(s)
impl.ldap.MAILSUFFIX_FIELD_NAME=Mail suffix field(s)
impl.ldap.WORKPHONE_FIELD_NAME=Work phone field(s)
impl.ldap.MOBILEPHONE_FIELD_NAME=Mobile phone field(s)
impl.ldap.HOMEPHONE_FIELD_NAME=Home phone field(s)
impl.ldap.MAIL_FIELD_EXAMPLE=mail
impl.ldap.MAILSUFFIX_FIELD_EXAMPLE=@domain.org (do not forget to add \'@\')
impl.ldap.WORKPHONE_FIELD_EXAMPLE=companyPhone
impl.ldap.MOBILEPHONE_FIELD_EXAMPLE=mobilePhone
impl.ldap.HOMEPHONE_FIELD_EXAMPLE=homePhone
impl.ldap.PHONE_PREFIX=Phone prefix
impl.ldap.PHONE_PREFIX_EXAMPLE=Ex.: 00

# SIP Protocol
impl.protocol.sip.INVALID_ADDRESS=''{0}'' is not a valid SIP address.

#Jabber Protocol
impl.protocol.jabber.INVALID_ADDRESS=''{0}'' is not a valid XMPP JID.

# Address book plugin
plugin.addrbook.ADDRESS_BOOKS=Address book
plugin.addrbook.ENABLE_MACOSX_ADDRESSBOOK=Enable MacOSX Address Book search
plugin.addrbook.ENABLE_MICROSOFT_OUTLOOK=Enable Microsoft Outlook search
plugin.addrbook.ENABLE_OUTLOOK_CALENDAR=Disable setting presence using the Microsoft Outlook Calendar
plugin.addrbook.DESCRIPTION=If enabled everything you type in the search field \
 of the contact list will be also searched in your system address book and all \
 matching contacts from your address book will appear in your contact list.
plugin.addrbook.DEFAULT_IM_APP=Make Jitsi the default Instant Messaging Provider (Outlook integration)
plugin.addrbook.PREFIX=Specific phone number prefix
plugin.addrbook.PREFIX_EXAMPLE=Ex.: 00
plugin.addrbook.OUTLOOK_IS_NOT_DEFAULT_MAIL_CLIENT_TITLE=Error accessing your Microsoft Outlook contacts.
plugin.addrbook.OUTLOOK_IS_NOT_DEFAULT_MAIL_CLIENT={0} cannot currently access your Microsoft Outlook contacts because Outlook is not your default mail application.
plugin.addrbook.MAKE_OUTLOOK_DEFAULT_MAIL_CLIENT=Make Outlook default mail client

# Google Contacts
impl.googlecontacts.CONFIG_FORM_TITLE=Google Contacts
impl.googlecontacts.EDIT=edit
impl.googlecontacts.ENABLED=Enabled
impl.googlecontacts.ACCOUNT_NAME=Account name
impl.googlecontacts.SAVE=Save
impl.googlecontacts.CANCEL=Cancel
impl.googlecontacts.USERNAME=Account name
impl.googlecontacts.PASSWORD=Password
impl.googlecontacts.PREFIX=Phone prefix
impl.googlecontacts.WRONG_CREDENTIALS=Wrong credentials for Google account {0}
impl.googlecontacts.OAUTH_DIALOG_TITLE=Google Contacts authorization
impl.googlecontacts.INSTRUCTIONS=<html><p><b>Click the link below to approve Google Contacts plugin to access the account.</b><br><br> By clicking the link, a web page will open in your browser. Log in with the requested account and approve access. Once approved, Google will show you a code. Copy this code into the text field below and click 'Save'.</p><p>This is a one-time operation. Authorization tokens will be stored for future use.</p></html>
impl.googlecontacts.CODE=Code:
impl.googlecontacts.HYPERLINK_TEXT=Click here to approve access to {0}

# account info
plugin.accountinfo.TITLE=Account Info
plugin.accountinfo.EXTENDED=Extended
plugin.accountinfo.NOT_SUPPORTED=Account info not available.
plugin.accountinfo.SELECT_ACCOUNT=Please select an account:
plugin.accountinfo.DISPLAY_NAME=Display name:
plugin.accountinfo.FIRST_NAME=First Name:
plugin.accountinfo.MIDDLE_NAME=Middle Name:
plugin.accountinfo.LAST_NAME=Last Name:
plugin.accountinfo.NICKNAME=Nickname:
plugin.accountinfo.URL=URL:
plugin.accountinfo.AGE=Age:
plugin.accountinfo.BDAY=Birth Date:
plugin.accountinfo.BDAY_FORMAT=MMM dd, yyyy
plugin.accountinfo.GENDER=Gender:
plugin.accountinfo.STREET=Street Address:
plugin.accountinfo.CITY=City:
plugin.accountinfo.REGION=Region:
plugin.accountinfo.POST=Postal code:
plugin.accountinfo.COUNTRY=Country:
plugin.accountinfo.EMAIL=E-mail:
plugin.accountinfo.WORK_EMAIL=Work E-mail:
plugin.accountinfo.PHONE=Phone:
plugin.accountinfo.WORK_PHONE=Work Phone:
plugin.accountinfo.MOBILE_PHONE=Mobile Phone:
plugin.accountinfo.ORGANIZATION=Organization Name:
plugin.accountinfo.JOB_TITLE=Job Title:
plugin.accountinfo.ABOUT_ME=About Me:
plugin.accountinfo.ABOUT_ME_MAX_CHARACTERS=200
plugin.accountinfo.GLOBAL_ICON=Use global icon
plugin.accountinfo.LOCAL_ICON=Use this icon:

# connection info
plugin.connectioninfo.TITLE=Connection Info

# contact info
plugin.contactinfo.TITLE=Contact details
plugin.contactinfo.CONTACT_SUMMARY_DESCRIPTION=Summary of contact info for
plugin.contactinfo.CONTACT_EXTENDED_DESCRIPTION=Extended contact info for
plugin.contactinfo.NOT_SPECIFIED=[Not specified]
plugin.contactinfo.USER_PICTURES=User pictures
plugin.contactinfo.USER_STATUS_MESSAGE=Status Message

# aimaccregwizz
plugin.aimaccregwizz.PROTOCOL_NAME=AIM
plugin.aimaccregwizz.PROTOCOL_DESCRIPTION=The AIM service protocol
plugin.aimaccregwizz.USERNAME=AIM Screenname:
plugin.aimaccregwizz.USERNAME_AND_PASSWORD=Screen Name and Password
plugin.aimaccregwizz.REGISTER_NEW_ACCOUNT=Register new account
plugin.aimaccregwizz.REGISTER_NEW_ACCOUNT_TEXT=In case you don't have an AIM account, click on this button to create a new one.

# branding
plugin.branding.ABOUT_WINDOW_TITLE=About {0}
plugin.branding.LOGO_MESSAGE=Open Source VoIP && Instant Messaging
plugin.branding.ABOUT_MENU_ENTRY=&About
plugin.branding.COPYRIGHT_LICENSE=<DIV><font size=3 color={0}>Copyright 2003-{1} \
          <a href="{2}"><b>{3}</b></a>, All rights reserved.\
          </font><br><br>{4} is distributed under \
        the terms of the <a href=\"{5}\">{6}</a>.</DIV>

plugin.busylampfield.PICKUP=Pickup call

# generalconfig
plugin.generalconfig.AUTO_START=Auto-start {0} when computer restarts or reboots
plugin.generalconfig.CHATALERTS_ON_MESSAGE=Use task bar / dock alerts on incoming calls and chats
plugin.generalconfig.GROUP_CHAT_MESSAGES=Group chat messages in one window
plugin.generalconfig.LOG_HISTORY=Log chat history
plugin.generalconfig.SHOW_HISTORY=Show
plugin.generalconfig.HISTORY_SIZE=recent messages in new chats
plugin.generalconfig.SEND_MESSAGES_WITH=Send messages with:
plugin.generalconfig.BRING_WINDOW_TO_FRONT=Bring chat window to front
plugin.generalconfig.DEFAULT_LANGUAGE=Interface Language
plugin.generalconfig.DEFAULT_LANGUAGE_RESTART_WARN=Your changes will take effect on next restart.
plugin.generalconfig.DEFAULT_LANGUAGE_TRANSLATED={0}% translated
plugin.generalconfig.SIP_CLIENT_PORT=SIP client port
plugin.generalconfig.SIP_CLIENT_SECURE_PORT=SIP client secure port
plugin.generalconfig.SIP_SSL_PROTOCOLS=Enabled SSL/TLS protocols
plugin.generalconfig.ERROR_PORT_NUMBER=Wrong port number
plugin.generalconfig.CHECK_FOR_UPDATES=Check for updates on startup
plugin.generalconfig.STARTUP_CONFIG=Startup
plugin.generalconfig.LEAVE_CHATROOM_ON_WINDOW_CLOSE=Leave chat rooms when closing window
plugin.generalconfig.SHOW_RECENT_MESSAGES=Show recent conversations (depends on chat history)
plugin.generalconfig.REMOVE_SPECIAL_PHONE_SYMBOLS=Remove special symbols before calling phone numbers
plugin.generalconfig.ACCEPT_PHONE_NUMBER_WITH_ALPHA_CHARS=Convert letters in phone numbers
plugin.generalconfig.ACCEPT_PHONE_NUMBER_WITH_ALPHA_CHARS_EXAMPLE=e.g. +1-800-MYPHONE -> +1-800-694663
plugin.generalconfig.SIP_CALL_CONFIG=SIP
plugin.generalconfig.XMPP_CONFIG=XMPP
plugin.generalconfig.XMPP_USE_ALL_RESOURCES=Use all resources when detecting a contact's features
plugin.generalconfig.OPUS_CONFIG=Opus
plugin.generalconfig.OPUS_AUDIO_BANDWIDTH=Sampling rate:
plugin.generalconfig.OPUS_BITRATE=Encoder average bitrate (kbps):
plugin.generalconfig.OPUS_USE_DTX=Use DTX:
plugin.generalconfig.OPUS_USE_FEC=Use inband FEC:
plugin.generalconfig.OPUS_COMPLEXITY=Encoder complexity:
plugin.generalconfig.OPUS_MIN_EXPECTED_PACKET_LOSS=Minimum expected packet loss(%):
plugin.generalconfig.SILK_CONFIG=Silk
plugin.generalconfig.SILK_USE_FEC=Use inband FEC:
plugin.generalconfig.SILK_ALWAYS_ASSUME_PACKET_LOSS=Always assume packet loss:
plugin.generalconfig.SILK_SAT=Speech activity threshold (0-1):
plugin.generalconfig.SILK_ADVERTISE_FEC=Advertise FEC support in SDP:
plugin.generalconfig.RESTORE=Restore defaults
plugin.generalconfig.MINIMIZE_NOT_HIDE=Minimize the main window instead of closing or hiding it

# gibberish accregwizz
plugin.gibberishaccregwizz.PROTOCOL_NAME=Gibberish
plugin.gibberishaccregwizz.PROTOCOL_DESCRIPTION=A Jitsi test protocol.
plugin.gibberishaccregwizz.USERNAME=User ID:
plugin.gibberishaccregwizz.USERNAME_AND_PASSWORD=Identification

# icqaccregwizz
plugin.icqaccregwizz.PROTOCOL_NAME=ICQ
plugin.icqaccregwizz.PROTOCOL_DESCRIPTION=The AOL ICQ service protocol
plugin.icqaccregwizz.USERNAME=ICQ Number:
plugin.icqaccregwizz.REGISTER_NEW_ACCOUNT_TEXT=In case you don't have an ICQ account, click on this button to create a new one.
plugin.icqaccregwizz.REGISTER_NEW_ACCOUNT=Register new account

# irc accregwizz
plugin.ircaccregwizz.PROTOCOL_NAME=IRC
plugin.ircaccregwizz.PROTOCOL_DESCRIPTION=IRC protocol.
plugin.ircaccregwizz.USERNAME_AND_PASSWORD=UIN and password
plugin.ircaccregwizz.USERNAME=Nickname
plugin.ircaccregwizz.EXAMPLE_USERNAME=Ex: ircuser
plugin.ircaccregwizz.INFO_PASSWORD=Most IRC servers do not require password.
plugin.ircaccregwizz.AUTO_NICK_CHANGE=Automatically change nick when it's already used
plugin.ircaccregwizz.USE_DEFAULT_PORT=Use default port
plugin.ircaccregwizz.PASSWORD_NOT_REQUIRED=My nickname doesn't require identification
plugin.ircaccregwizz.HOST=Hostname:
plugin.ircaccregwizz.IRC_SERVER=Server
plugin.ircaccregwizz.EXAMPLE_SERVER=Ex: chat.freenode.net
plugin.ircaccregwizz.USE_SECURE_CONNECTION=Use secure connection
plugin.ircaccregwizz.ENABLE_CONTACT_PRESENCE=Enable contact presence
plugin.ircaccregwizz.ENABLE_CHAT_ROOM_PRESENCE=Enable chat room presence
plugin.ircaccregwizz.SASL_AUTHENTICATION_TITLE=SASL authentication
plugin.ircaccregwizz.ENABLE_SASL_AUTHENTICATION=Enable SASL authentication
plugin.ircaccregwizz.SASL_USERNAME=Username
plugin.ircaccregwizz.SASL_AUTHZ_ROLE=Role
plugin.ircaccregwizz.SASL_IRC_PASSWORD_USED=IRC password above is used for SASL authentication
plugin.ircaccregwizz.RESOLVE_DNS_THROUGH_PROXY=Always resolve DNS names through proxy

# jabber accregwizz
plugin.jabberaccregwizz.PROTOCOL_NAME=XMPP
plugin.jabberaccregwizz.PROTOCOL_DESCRIPTION=The XMPP protocol
plugin.jabberaccregwizz.USERNAME=XMPP username
plugin.jabberaccregwizz.PASSWORD_CONFIRM=Confirm password
plugin.jabberaccregwizz.USERNAME_AND_PASSWORD=ID and Password
plugin.jabberaccregwizz.CSERVER=Server
plugin.jabberaccregwizz.SERVER=Connect Server
plugin.jabberaccregwizz.ENABLE_KEEP_ALIVE=Enable keep alive
plugin.jabberaccregwizz.ENABLE_GMAIL_NOTIFICATIONS=Enable Gmail notifications for new messages
plugin.jabberaccregwizz.ENABLE_GOOGLE_CONTACTS_SOURCE=Enable Google Contacts search
plugin.jabberaccregwizz.NEW_ACCOUNT_TITLE=XMPP new account registration
plugin.jabberaccregwizz.REGISTER_NEW_ACCOUNT_TEXT=Create a new XMPP account
plugin.jabberaccregwizz.CHOOSE_SERVER_TITLE=XMPP new account server chooser
plugin.jabberaccregwizz.CHOOSE_SERVER_TEXT=Choose the server for your new account in the list below.
plugin.jabberaccregwizz.CHOOSE=&Choose
plugin.jabberaccregwizz.SERVER_COLUMN=Server
plugin.jabberaccregwizz.COMMENT_COLUMN=Comment
plugin.jabberaccregwizz.RESOURCE=Resource
plugin.jabberaccregwizz.AUTORESOURCE=Auto generate resource
plugin.jabberaccregwizz.PRIORITY=Priority
plugin.jabberaccregwizz.UNKNOWN_XMPP_ERROR=Unknown XMPP error ({0}). Verify that the server name is correct.
plugin.jabberaccregwizz.NOT_SAME_PASSWORD=Your passwords did not match.
plugin.jabberaccregwizz.OVERRIDE_SERVER_DEFAULT_OPTIONS=Override server default options
plugin.jabberaccregwizz.USE_ICE=Use ICE
plugin.jabberaccregwizz.AUTO_DISCOVER_STUN=Auto discover STUN/TURN servers
plugin.jabberaccregwizz.SUPPORT_TURN=Support TURN
plugin.jabberaccregwizz.TURN_USERNAME=TURN username
plugin.jabberaccregwizz.IP_ADDRESS=IP Address
plugin.jabberaccregwizz.ADD_STUN_SERVER=Add STUN server
plugin.jabberaccregwizz.EDIT_STUN_SERVER=Edit STUN server
plugin.jabberaccregwizz.ADDITIONAL_STUN_SERVERS=Additional STUN servers
plugin.jabberaccregwizz.NO_STUN_ADDRESS=Please fill a valid STUN server address in order to continue.
plugin.jabberaccregwizz.NO_STUN_USERNAME=Please fill a valid STUN server username in order to continue.
plugin.jabberaccregwizz.STUN_ALREADY_EXIST=The STUN server you specified already exist.
plugin.jabberaccregwizz.USE_DEFAULT_STUN_SERVER=Use {0}''s STUN server in case no other servers are available.
plugin.jabberaccregwizz.USE_JINGLE_NODES=Use Jingle Nodes
plugin.jabberaccregwizz.AUTO_DISCOVER_JN=Auto discover Jingle Nodes relays
plugin.jabberaccregwizz.RELAY_SUPPORT=Support relay
plugin.jabberaccregwizz.ADD_JINGLE_NODE=Add Jingle Node
plugin.jabberaccregwizz.EDIT_JINGLE_NODE=Edit Jingle Node
plugin.jabberaccregwizz.JID_ADDRESS=JID Address
plugin.jabberaccregwizz.ADDITIONAL_JINGLE_NODES=Additional Jingle Nodes
plugin.jabberaccregwizz.USE_UPNP=Use UPnP
plugin.jabberaccregwizz.EXISTING_ACCOUNT=Existing XMPP account
plugin.jabberaccregwizz.DOMAIN_BYPASS_CAPS=Domain that will use GTalk call
plugin.jabberaccregwizz.TELEPHONY_DOMAIN=Telephony domain 
plugin.jabberaccregwizz.ALLOW_NON_SECURE=Allow non-secure connections
plugin.jabberaccregwizz.DISABLE_CARBON=Disable message carbons
plugin.jabberaccregwizz.DTMF_AUTO=Auto: Choose automatically between RTP and Inband
plugin.jabberaccregwizz.SERVER_OPTIONS=Server options
plugin.jabberaccregwizz.CHANGE_PASSWORD=Change account password
plugin.jabberaccregwizz.PORT_FIELD_INVALID=Please fill a valid port number in order to continue.
plugin.jabberaccregwizz.HAS_TO_BE_LOGGED_IN=The account has to be signed in before changing a password.
plugin.jabberaccregwizz.TLS_REQUIRED=The connection does not use TLS, will not attempt a password change.
plugin.jabberaccregwizz.PASSWORD_CHANGED=The password has been successfully changed
plugin.jabberaccregwizz.SERVER_NOT_SUPPORT_PASSWORD_CHANGE=Your XMPP server does not support password changes.
plugin.jabberaccregwizz.PASSWORD_NOT_STORED=The password has been changed on the server, but local configuration was not updated
plugin.jabberaccregwizz.ENTER_NEW_PASSWORD=Please enter your new password in both fields:
plugin.jabberaccregwizz.OVERRIDE_ENCODINGS=Override global encoding settings
plugin.jabberaccregwizz.ENCODINGS=Encodings
plugin.jabberaccregwizz.AUDIO=Audio
plugin.jabberaccregwizz.VIDEO=Video
plugin.jabberaccregwizz.RESET=Reset
plugin.jabberaccregwizz.RESET_DESCRIPTION=Reset to the global settings
plugin.jabberaccregwizz.DISABLE_JINGLE=Disable Jingle (audio and video calls with XMPP).

# plugin manager
plugin.pluginmanager.INSTALL=Install
plugin.pluginmanager.UNINSTALL=Uninstall
plugin.pluginmanager.UPDATE=Update
plugin.pluginmanager.PLUGINS=Plug-ins
plugin.pluginmanager.URL=Url
plugin.pluginmanager.CHOOSE_FILE=Select File
plugin.pluginmanager.SHOW_SYSTEM_BUNDLES=Show system plug-ins
plugin.pluginmanager.SYSTEM=System
plugin.pluginmanager.NEW=New

# simple accregwizz
plugin.simpleaccregwizz.LOGIN_USERNAME=Username
plugin.simpleaccregwizz.INITIAL_ACCOUNT_REGISTRATION=Configure all your favorite protocols in one click.
plugin.simpleaccregwizz.SIGNUP=Not registered yet?
plugin.simpleaccregwizz.SPECIAL_SIGNUP=Not registered yet? - Click here to get a new username

# sipaccregwizz
plugin.sipaccregwizz.PROTOCOL_NAME=SIP
plugin.sipaccregwizz.PROTOCOL_DESCRIPTION=The SIP protocol
plugin.sipaccregwizz.USERNAME=SIP id
plugin.sipaccregwizz.USERNAME_AND_PASSWORD=User name and password
plugin.sipaccregwizz.CLIENT_CERTIFICATE=Client TLS certificate
plugin.sipaccregwizz.REGISTRAR=Registrar
plugin.sipaccregwizz.SERVER_PORT=Server port
plugin.sipaccregwizz.PROXY=Proxy
plugin.sipaccregwizz.PROXY_PORT=Proxy port
plugin.sipaccregwizz.PREFERRED_TRANSPORT=Preferred transport
plugin.sipaccregwizz.PROXY_OPTIONS=Proxy options
plugin.sipaccregwizz.PROXY_AUTO=Configure proxy automatically
plugin.sipaccregwizz.PROXY_FORCE_BYPASS=Bypass proxy security check for HA scenarios (use only if needed)
plugin.sipaccregwizz.ENABLE_PRESENCE=Enable presence (SIMPLE)
plugin.sipaccregwizz.FORCE_P2P_PRESENCE=Force peer-to-peer presence mode
plugin.sipaccregwizz.OFFLINE_CONTACT_POLLING_PERIOD=Offline contacts polling period (in s.)
plugin.sipaccregwizz.SUBSCRIPTION_EXPIRATION=Default subscription duration (in s.)
plugin.sipaccregwizz.PRESENCE_OPTIONS=Presence Options
plugin.sipaccregwizz.KEEP_ALIVE=Keep alive
plugin.sipaccregwizz.KEEP_ALIVE_METHOD=Keep alive method
plugin.sipaccregwizz.KEEP_ALIVE_INTERVAL=Keep alive interval
plugin.sipaccregwizz.KEEP_ALIVE_INTERVAL_INFO=Between 1 and 3600 seconds
plugin.sipaccregwizz.DTMF_MINIMAL_TONE_DURATION=Minimal RTP DTMF tone duration (ms)
plugin.sipaccregwizz.DTMF_MINIMAL_TONE_DURATION_INFO=Default RTP DTMF duration is 70 ms
plugin.sipaccregwizz.DTMF=DTMF
plugin.sipaccregwizz.DTMF_METHOD=DTMF method
plugin.sipaccregwizz.DTMF_AUTO=Auto: Choose automatically between RTP and Inband (no SIP INFO)
plugin.sipaccregwizz.DTMF_RTP=RTP ( RFC2833 / RFC 4733 )
plugin.sipaccregwizz.DTMF_SIP_INFO=SIP INFO
plugin.sipaccregwizz.DTMF_INBAND=Inband
plugin.sipaccregwizz.ENABLE_DEFAULT_ENCRYPTION=Enable support to encrypt calls
plugin.sipaccregwizz.ENABLE_SIPZRTP_ATTRIBUTE=Indicate support of ZRTP in signalling protocol
plugin.sipaccregwizz.AUTH_NAME=Authorization name
plugin.sipaccregwizz.DISPLAY_NAME=Display name
plugin.sipaccregwizz.EXISTING_ACCOUNT=Existing SIP account
plugin.sipaccregwizz.CREATE_ACCOUNT=Create a free SIP account
plugin.sipaccregwizz.CREATE_ACCOUNT_TITLE=Create account
plugin.sipaccregwizz.XCAP_OPTIONS=Contactlist Options
plugin.sipaccregwizz.CLIST_TYPE=Type
plugin.sipaccregwizz.XCAP_USE_SIP_CREDENTIALS=Use SIP credentials
plugin.sipaccregwizz.XCAP_USER=User
plugin.sipaccregwizz.XCAP_PASSWORD=Password
plugin.sipaccregwizz.XCAP_SERVER_URI=Server URI/Address
plugin.sipaccregwizz.VOICEMAIL=Voicemail
plugin.sipaccregwizz.MWI=Message Waiting (MWI)
plugin.sipaccregwizz.VOICEMAIL_URI=Voicemail Subscription URI
plugin.sipaccregwizz.VOICEMAIL_CHECK_URI=Voicemail check URI
plugin.sipaccregwizz.NOT_SAME_PASSWORD=Your passwords did not match.
plugin.sipaccregwizz.NO_CERTIFICATE=<none> (use regular authentication)
plugin.sipaccregwizz.SAVP_OPTION=RTP/SAVP indication
#used from SecurityPanel
plugin.sipaccregwizz.SAVP_OPTION_0=Off (indicate RTP/AVP only) 
plugin.sipaccregwizz.SAVP_OPTION_1=Mandatory (offer and accept only RTP/SAVP)
plugin.sipaccregwizz.SAVP_OPTION_2=Optional (offer RTP/SAVP first, then RTP/AVP)
plugin.sipaccregwizz.ENCRYPTION_PROTOCOL_PREFERENCES=Choose enabled encryption protocols and their priority (top protocol first):
plugin.sipaccregwizz.CIPHER_SUITES=Enabled cipher suites:
plugin.sipaccregwizz.SECURITY_WARNING=<html><div width=450>{0} will automatically try to secure all \
your calls with ZRTP and you will both hear and see a notification once a secure \
connection is established. You should only change the advanced settings below \
if you are well aware what you are doing.</div></html>
plugin.sipaccregwizz.SHOW_ADVANCED=Advanced encryption settings
plugin.sipaccregwizz.ZRTP_OPTION=ZRTP option
plugin.sipaccregwizz.SDES_OPTION=SDes option

# skin manager
plugin.skinmanager.SKINS=Skins
plugin.skinmanager.DEFAULT_SKIN=Default skin
plugin.skinmanager.ADD_NEW_SKIN=Add new skin...
plugin.skinmanager.DEFAULT_SKIN_DESCRIPTION=The default skin of the application.

# status update
plugin.autoaway.AUTO_STATUS=Auto Away
plugin.autoaway.ENABLE_CHANGE_STATUS=Change status while away
plugin.autoaway.AWAY_MINUTES=Minutes before switching to away:

# updatechecker
plugin.updatechecker.DIALOG_TITLE=Install Updates
plugin.updatechecker.DIALOG_MESSAGE=<html>A new version of {0} is available for download.
plugin.updatechecker.DIALOG_MESSAGE_2=<br>{0} ({1}): <br>
plugin.updatechecker.BUTTON_DOWNLOAD=Download
plugin.updatechecker.BUTTON_CLOSE=Close
plugin.updatechecker.BUTTON_INSTALL=Install
plugin.updatechecker.UPDATE_MENU_ENTRY=Check for updates
plugin.updatechecker.DIALOG_WARN={0} needs to quit before it can install updates. Any conversations or calls will disconnect temporarily. Should {0} continue to install updates?
plugin.updatechecker.DIALOG_NOUPDATE=Your version is up to date.
plugin.updatechecker.DIALOG_NOUPDATE_TITLE=No new version
plugin.updatechecker.DIALOG_MISSING_UPDATE=Update Installer is missing.

# usersearch
plugin.usersearch.USER_SEARCH=User search

# whiteboard
plugin.whiteboard.TITLE=Whiteboard [Beta]
plugin.whiteboard.MENU_ITEM=Whiteboard
plugin.whiteboard.NOT_SUPPORTED=This contact does not support whiteboarding
plugin.whiteboard.DRAW=Draw
plugin.whiteboard.OPEN=Open
plugin.whiteboard.PEN=Pen
plugin.whiteboard.SELECT=Select
plugin.whiteboard.LINE=Line
plugin.whiteboard.RECTANGLE=Rectangle
plugin.whiteboard.FILLED_RECTANGLE=Filled rectangle
plugin.whiteboard.TEXT=Text
plugin.whiteboard.IMAGE=Image
plugin.whiteboard.POLYGON=Polygon
plugin.whiteboard.FILLEDPOLYGON=Filled polygon
plugin.whiteboard.POLYLINE=Polyline
plugin.whiteboard.CIRCLE=Circle
plugin.whiteboard.FILLED_CIRCLE=Filled circle
plugin.whiteboard.COLOR=Color
plugin.whiteboard.MODIFICATION=Modification
plugin.whiteboard.THICKNESS=Thickness:
plugin.whiteboard.GRID=Grid
plugin.whiteboard.DESELECT=Deselect
plugin.whiteboard.DELETE=Delete
plugin.whiteboard.PROPERTIES=Properties

# gtalk accregwizz
plugin.googletalkaccregwizz.PROTOCOL_NAME=Google Talk
plugin.googletalkaccregwizz.PROTOCOL_DESCRIPTION=The Google Talk protocol
plugin.googletalkaccregwizz.USERNAME=Google Talk user name
plugin.googletalkaccregwizz.REGISTER_NEW_ACCOUNT_TEXT=In case you don't have a Google Talk account,</br> click on this button to create a new one.
plugin.googletalkaccregwizz.NEW_ACCOUNT_TITLE=Google Talk new account registration

# iptel accregwizz
plugin.iptelaccregwizz.PROTOCOL_NAME=iptel.org
plugin.iptelaccregwizz.PROTOCOL_DESCRIPTION=iptel.org, the IP Telecommunications Portal
plugin.iptelaccregwizz.USERNAME=User name
plugin.iptelaccregwizz.NEW_ACCOUNT_TITLE=Subscribe to iptel.org

# ippi accregwizz
plugin.sip2sipaccregwizz.USERNAME=Username
plugin.sip2sipaccregwizz.RETYPE_PASSWORD=Retype password
plugin.sip2sipaccregwizz.EMAIL=Email address
plugin.sip2sipaccregwizz.EMAIL_NOTE=<html>The email address is used to send voicemail messages, <br>missed calls notifications and to recover a lost password</html>
plugin.ippiaccregwizz.PROTOCOL_NAME=ippi
plugin.ippiaccregwizz.PROTOCOL_DESCRIPTION=VoIP && Instant Messaging
plugin.ippiaccregwizz.NEW_ACCOUNT_TITLE=For help about this service visit<br>http://ippi.fr
plugin.ippiaccregwizz.INFO_NOTE=<html>For help about this service visit <a href=''>http://ippi.fr</a></html>
plugin.ippiaccregwizz.EXISTING_ACCOUNT=Existing ippi account
plugin.ippiaccregwizz.CREATE_ACCOUNT=Create a free ippi account

# key binding chooser
plugin.keybindings.WAITING=Press shortcut...
#in new ChatWindow() -> manipulated
plugin.keybindings.CHAT_CLOSE=Close Chat Window
plugin.keybindings.CHAT_COPY=Copy
plugin.keybindings.CHAT_CUT=Cut
plugin.keybindings.CHAT_NEXT_TAB=Next tab
plugin.keybindings.CHAT_OPEN_HISTORY=Open history
plugin.keybindings.CHAT_OPEN_SMILIES=Open smileys
plugin.keybindings.CHAT_PASTE=Paste
plugin.keybindings.CHAT_PREVIOUS_TAB=Previous tab
plugin.keybindings.MAIN_NEXT_TAB=Next tab
plugin.keybindings.MAIN_PREVIOUS_TAB=Previous tab
plugin.keybindings.MAIN_RENAME=Rename contact
plugin.keybindings.OPEN_HISTORY=Show History
plugin.keybindings.OPEN_SMILIES=Show Smileys
plugin.keybindings.globalchooser.ANSWER_CALL=Answer call
plugin.keybindings.globalchooser.HANGUP_CALL=Hangup call
plugin.keybindings.globalchooser.ANSWER_HANGUP_CALL=Answer/Hangup call
plugin.keybindings.globalchooser.SHOW_CONTACTLIST=Show contact list
plugin.keybindings.globalchooser.MUTE_CALLS=Mute calls
plugin.keybindings.globalchooser.SHORTCUT_NAME=Name
plugin.keybindings.globalchooser.SHORTCUT_PRIMARY=Primary shortcut
plugin.keybindings.globalchooser.SHORTCUT_SECOND=Second shortcut
plugin.keybindings.globalchooser.PRESS_BTN=Press to set shortcut
plugin.keybindings.globalchooser.PUSH_TO_TALK=Push to talk
plugin.keybindings.globalchooser.ENABLE_SPECIAL=Enable special key detection
plugin.keybindings.PLUGIN_NAME=Keybindings
#Enum KeybindingSet.Category
plugin.keybindings.CHAT=Chat
plugin.keybindings.MAIN=Main
plugin.keybindings.GLOBAL=Global shortcuts

# Notification Configuration Form
plugin.notificationconfig.ENABLE_NOTIF=Enable
plugin.notificationconfig.DESCRIPTION=Description
plugin.notificationconfig.TURN_ON_ALL=Turn On All
plugin.notificationconfig.TURN_OFF_ALL=Turn Off All
plugin.notificationconfig.ACTIONS=Actions
plugin.notificationconfig.QUICK_CONTROLS=Quick Controls
plugin.notificationconfig.RESTORE=Restore Defaults
plugin.notificationconfig.PLAY_SOUND=Play a sound:
plugin.notificationconfig.EXEC_PROG=Execute a program:
plugin.notificationconfig.DISPLAY_POPUP=Show a message in a pop-up window
plugin.notificationconfig.POPUP_NOTIF_HANDLER=Popup notifications type
plugin.notificationconfig.SOUND_FILE=Sound file:
plugin.notificationconfig.PROGRAM_FILE=Program file:
plugin.notificationconfig.BROWSE_SOUND=Choose a sound file
plugin.notificationconfig.BROWSE_PROGRAM=Choose a program
plugin.notificationconfig.tableheader.ENABLE=Enable or disable this feature
plugin.notificationconfig.tableheader.EXECUTE=Execute a program
plugin.notificationconfig.tableheader.POPUP=Display a messagebox
plugin.notificationconfig.tableheader.SOUND=Play a sound through notification device
plugin.notificationconfig.tableheader.PLAYBACK_SOUND=Play a sound through playback device
plugin.notificationconfig.tableheader.PCSPEAKER_SOUND=Play a sound through PC speaker device
plugin.notificationconfig.tableheader.DESCRIPTION=Description of event
#NotificationsTable constants
plugin.notificationconfig.event.IncomingCall=Incoming Call
plugin.notificationconfig.event.SecurityMessage=Security Message
plugin.notificationconfig.event.IncomingFile=Incoming File
plugin.notificationconfig.event.LogFilesArchived=Log Files Archived
plugin.notificationconfig.event.CallSecurityError=Call Security Error
plugin.notificationconfig.event.NetworkNotifications=Network Notifications
plugin.notificationconfig.event.Dialing=Dialing
plugin.notificationconfig.event.ProactiveNotification=Proactive Typing Notifications
plugin.notificationconfig.event.CallSecurityOn=Call Security On
plugin.notificationconfig.event.IncomingMessage=Incoming Message
plugin.notificationconfig.event.OutgoingCall=Outgoing Call
plugin.notificationconfig.event.BusyCall=Busy Call
plugin.notificationconfig.event.CallSaved=Call Saved
plugin.notificationconfig.event.HangUp=Hang Up
plugin.notificationconfig.event.DNSSEC_NOTIFICATION=DNSSEC warnings
plugin.notificationconfig.event.DTMFTone.A=DTMF tone A
plugin.notificationconfig.event.DTMFTone.B=DTMF tone B
plugin.notificationconfig.event.DTMFTone.C=DTMF tone C
plugin.notificationconfig.event.DTMFTone.D=DTMF tone D
plugin.notificationconfig.event.DTMFTone.0=DTMF tone 0
plugin.notificationconfig.event.DTMFTone.1=DTMF tone 1
plugin.notificationconfig.event.DTMFTone.2=DTMF tone 2
plugin.notificationconfig.event.DTMFTone.3=DTMF tone 3
plugin.notificationconfig.event.DTMFTone.4=DTMF tone 4
plugin.notificationconfig.event.DTMFTone.5=DTMF tone 5
plugin.notificationconfig.event.DTMFTone.6=DTMF tone 6
plugin.notificationconfig.event.DTMFTone.7=DTMF tone 7
plugin.notificationconfig.event.DTMFTone.8=DTMF tone 8
plugin.notificationconfig.event.DTMFTone.9=DTMF tone 9
plugin.notificationconfig.event.DTMFTone.*=DTMF tone *
plugin.notificationconfig.event.DTMFTone.#=DTMF tone #
plugin.notificationconfig.event.DeviceConfigurationChanged=Device configuration has changed
plugin.notificationconfig.event.NewSelectedDevice=New selected device

# ZRTP Securing
impl.media.security.WARNING_NO_RS_MATCH=<html>No retained shared secret available.<br/><b>SAS verification is recommended</b></html>
impl.media.security.WARNING_NO_EXPECTED_RS_MATCH=<html>An expected retained shared secret is missing.<br/><b>SAS verification is required</b><br/>If SAS codes do not match then hangup and try again</html>
impl.media.security.SEVERE_GENERIC_MSG=<html>A severe security problem was detected.<br/><b>Your call is not secure</b><br/>Error code: {0}</html>
impl.media.security.ZRTP_GENERIC_MSG=<html>A severe ZRTP problem was detected.<br/><b>Your call is not secure</b><br/>Error code: {0}</html>
impl.media.security.INTERNAL_PROTOCOL_ERROR=<html>Internal protocol error occurred.<br/><b>Your call is not secure</b><br/>Error code: {0}</html>
impl.media.security.CHECKSUM_MISMATCH=<html>Internal ZRTP packet checksum mismatch.<br/>If you see this message often this may mean a denial-of-service attack!</html>
impl.media.security.RETRY_RATE_EXCEEDED=<html>Too much retries during security negotiation. This may mean that the other party has internet connection problems.<br/><b>Your call is not secure</b><br/>Error code: {0}</html>
impl.media.security.DATA_SEND_FAILED=<html>Failed to send encryption data. Internet data connection or peer is down.<br/><b>Your call is not secure</b><br/>Error code: {0}</html>
impl.media.security.SECURITY_OFF=Call encryption support off
impl.media.security.SECURITY_ON=Call encryption support on

# ZRTP Configuration
impl.media.security.zrtp.CONFIG=ZRTP Configuration
impl.media.security.zrtp.TITLE=Call
impl.media.security.zrtp.PUB_KEYS=Public keys
impl.media.security.zrtp.HASHES=Hashes
impl.media.security.zrtp.SYM_CIPHERS=Symmetric cipher
impl.media.security.zrtp.SAS_TYPES=SAS types
impl.media.security.zrtp.SRTP_LENGTHS=SRTP authentication length
impl.media.security.zrtp.STANDARD=Standard
impl.media.security.zrtp.MANDATORY=Mandatory
impl.media.security.zrtp.TRUSTED=Trusted MitM
impl.media.security.zrtp.SASSIGNATURE=SAS signature processing
impl.media.security.zrtp.DESCRIPTION={0} will automatically try to secure all \
your calls and you will both hear and see a notification once a secure \
connection is established. The following button allows ZRTP experts to fine \
tune the way {0} behaves during ZRTP negotiation and you don''t need to modify \
any of them in order to have secure calls. You should only change these \
settings if you are well aware of the way ZRTP and encryption in general work.
impl.media.security.zrtp.ZRTP_NINJA=ZRTP Ninja



# Profiler4J
plugin.profiler.PLUGIN_NAME=Profiler4j

impl.media.configform.AUDIO=&Audio System:
impl.media.configform.AUDIO_IN=Audio &In:
impl.media.configform.AUDIO_NOTIFY=&Notifications:
impl.media.configform.AUDIO_OUT=Audio &Out:
impl.media.configform.AUTOMATICGAINCONTROL=Automatic gain control
impl.media.configform.DENOISE=Enable noise suppression
impl.media.configform.DEVICES=Devices
impl.media.configform.DOWN=&Down
impl.media.configform.ECHOCANCEL=Enable echo cancellation
impl.media.configform.ENCODINGS=Encodings
impl.media.configform.NO_AVAILABLE_AUDIO_DEVICE=No available audio device. Please connect one.
impl.media.configform.NO_DEVICE=<No Device>
impl.media.configform.NO_PREVIEW=Preview
impl.media.configform.UP=&Up
impl.media.configform.VIDEO=&Camera:
impl.media.configform.VIDEO_MORE_SETTINGS=More settings
impl.media.configform.VIDEO_RESOLUTION=Video resolution
impl.media.configform.VIDEO_FRAME_RATE=Custom frame rate (per sec.)
impl.media.configform.VIDEO_PACKETS_POLICY=RTP pacing threshold (kBytes/s)
impl.media.configform.VIDEO_BITRATE=Video bitrate (kilobits/s)
impl.media.configform.VIDEO_RESET=Reset defaults
impl.media.configform.AUDIO_DEVICE_CONNECTED=Connected device:
impl.media.configform.AUDIO_DEVICE_DISCONNECTED=Disconnected device:
impl.media.configform.AUDIO_DEVICE_SELECTED_AUDIO_IN=New selected device for audio in:
impl.media.configform.AUDIO_DEVICE_SELECTED_AUDIO_OUT=New selected device for audio out:
impl.media.configform.AUDIO_DEVICE_SELECTED_AUDIO_NOTIFICATIONS=New selected device for notifications:
impl.media.configform.VIDEO_DEVICE_SELECTED=New selected device for video:
impl.media.configform.AUDIO_DEVICE_CONFIG_MANAGMENT_CLICK=Click here for device management

impl.neomedia.configform.AUDIO=Audio
impl.neomedia.configform.VIDEO=Video

impl.neomedia.configform.H264=H.264
impl.neomedia.configform.H264.defaultIntraRefresh=Periodic Intra Refresh
impl.neomedia.configform.H264.defaultProfile=Default profile to encode into:
#in JNIEncoder
impl.neomedia.configform.H264.defaultProfile.baseline=Baseline
impl.neomedia.configform.H264.defaultProfile.high=High
impl.neomedia.configform.H264.defaultProfile.main=Main
impl.neomedia.configform.H264.keyint=Maximum interval between key frames
impl.neomedia.configform.H264.preferredKeyFrameRequester=Preferred method to request key frames:
impl.neomedia.configform.H264.preferredKeyFrameRequester.rtcp=RTCP
impl.neomedia.configform.H264.preferredKeyFrameRequester.signaling=Signaling
impl.neomedia.configform.H264.preset=Encoder Preset

# The callrecordingconfig plugin was never really committed into trunk and its
# ConfigurationForm was actually put in the neomedia bundle.
plugin.callrecordingconfig.CALL_RECORDING_CONFIG=Call Recording
plugin.callrecordingconfig.SAVE_CALLS=Save calls to:
plugin.callrecordingconfig.SAVE_CALL=Save call to...
plugin.callrecordingconfig.CHOOSE_DIR=Choose a directory...
plugin.callrecordingconfig.SUPPORTED_FORMATS=Save calls in format:
plugin.callrecordingconfig.CALL_SAVED=Call saved successfully
plugin.callrecordingconfig.CALL_SAVED_TO={0}

# Security configuration form title
plugin.securityconfig.TITLE=Security
plugin.securityconfig.masterpassword.TITLE=Passwords
plugin.securityconfig.masterpassword.CHANGE_MASTER_PASSWORD=Change Master Password...
plugin.securityconfig.masterpassword.USE_MASTER_PASSWORD=Use a master password
plugin.securityconfig.masterpassword.SAVED_PASSWORDS=Saved Passwords...
plugin.securityconfig.masterpassword.INFO_TEXT=A Master Password is used to protect saved account passwords. Please make sure you remember it.
plugin.securityconfig.masterpassword.CURRENT_PASSWORD=Current password:
plugin.securityconfig.masterpassword.ENTER_PASSWORD=Enter new password:
plugin.securityconfig.masterpassword.REENTER_PASSWORD=Re-enter password:
plugin.securityconfig.masterpassword.MP_TITLE=Master Password
plugin.securityconfig.masterpassword.MP_CURRENT_EMPTY=You did not enter the correct current Master Password. Please try again.
plugin.securityconfig.masterpassword.MP_VERIFICATION_FAILURE_MSG=The Master Password is not correct!
plugin.securityconfig.masterpassword.MP_CHANGE_FAILURE=Password Change Failed
plugin.securityconfig.masterpassword.MP_CHANGE_SUCCESS=Password Change Succeeded
plugin.securityconfig.masterpassword.MP_CHANGE_SUCCESS_MSG=Master Password successfully changed.
plugin.securityconfig.masterpassword.MP_CHANGE_FAILURE_MSG=The encrypted passwords cannot be decrypted with the provided Master Password.\nThe password storage may have been modified.
plugin.securityconfig.masterpassword.MP_REMOVE_FAILURE=Password Removing Failed
plugin.securityconfig.masterpassword.MP_REMOVE_SUCCESS=Password Removing Succeeded
plugin.securityconfig.masterpassword.MP_REMOVE_SUCCESS_MSG=Master Password successfully removed.
plugin.securityconfig.masterpassword.COL_TYPE=Type
plugin.securityconfig.masterpassword.COL_NAME=Name
plugin.securityconfig.masterpassword.COL_PASSWORD=Password
plugin.securityconfig.masterpassword.PROTOCOL_UNKNOWN=(unknown)
plugin.securityconfig.masterpassword.CANNOT_DECRYPT=(cannot decrypt)
plugin.securityconfig.masterpassword.STORED_ACCOUNT_PASSWORDS=Stored passwords
plugin.securityconfig.masterpassword.REMOVE_PASSWORD_BUTTON=Remove
plugin.securityconfig.masterpassword.REMOVE_ALL_PASSWORDS_BUTTON=Remove All
plugin.securityconfig.masterpassword.REMOVE_ALL_CONFIRMATION=Are you sure you wish to remove all passwords?
plugin.securityconfig.masterpassword.REMOVE_ALL_TITLE=Remove all passwords
plugin.securityconfig.masterpassword.SHOW_PASSWORDS_BUTTON=Show Passwords
plugin.securityconfig.masterpassword.HIDE_PASSWORDS_BUTTON=Hide Passwords
plugin.securityconfig.masterpassword.PASSWORD_QUALITY_METER=Password quality meter
plugin.securityconfig.masterpassword.MP_INPUT=Please enter your master password:\n\n

# otr plugin
plugin.otr.menu.TITLE=Secure chat
plugin.otr.menu.START_OTR=Start private conversation
plugin.otr.menu.END_OTR=End private conversation
plugin.otr.menu.FINISHED=Your buddy has ended your private conversation. You should do the same
plugin.otr.menu.VERIFIED=Your private conversation is verified
plugin.otr.menu.UNVERIFIED=Your private conversation is not verified. Please authenticate your buddy
plugin.otr.menu.LOADING_OTR=Starting private conversation...
plugin.otr.menu.TIMED_OUT=Starting private conversation timed out.
plugin.otr.menu.REFRESH_OTR=Refresh private conversation
plugin.otr.menu.AUTHENTICATE_BUDDY=Authenticate buddy
plugin.otr.menu.WHATS_THIS=What's this
plugin.otr.menu.CB_AUTO=Automatically initiate private messaging with {0}
plugin.otr.menu.CB_AUTO_ALL=Automatically initiate private messaging with all contacts
plugin.otr.menu.CB_ENABLE=Enable private messaging
plugin.otr.menu.CB_REQUIRE=Require private messaging
plugin.otr.menu.CB_RESET=Reset
plugin.otr.menu.OTR_TOOLTIP=Encrypt chats with OTR
plugin.otr.authbuddydialog.HELP_URI=https://jitsi.org/GSOC2009/OTR
plugin.otr.authbuddydialog.AUTHENTICATION_INFO=Authenticating a buddy helps \
ensure that the person you are talking to is who he or she claims to be.
plugin.otr.authbuddydialog.AUTHENTICATION_METHOD=How would you like to authenticate?
plugin.otr.authbuddydialog.AUTHENTICATION_METHOD_QUESTION=Question authentication
plugin.otr.authbuddydialog.AUTHENTICATION_METHOD_SECRET=Shared secret authentication
plugin.otr.authbuddydialog.AUTHENTICATION_METHOD_FINGERPRINT=Fingerprint authentication
plugin.otr.authbuddydialog.AUTHENTICATION_FINGERPRINT=To verify the fingerprint, contact your buddy via some other authenticated \
channel, such as the telephone or GPG-signed email. Each of you should tell \
your fingerprint to the other. If everything matches up, you should indicate \
in the following dialog that you *have* verified the fingerprint.
plugin.otr.authbuddydialog.LOCAL_FINGERPRINT=Fingerprint for you, {0}: {1}
plugin.otr.authbuddydialog.REMOTE_FINGERPRINT=Purported fingerprint for {0}: {1}
plugin.otr.authbuddydialog.AUTH_BY_QUESTION_INFO_INIT=To authenticate using a question, you should pick a question whose answer \
is only known to you and your buddy. Your buddy will be asked this question and if the answers don't match then you may be talking \
to an impostor.
plugin.otr.authbuddydialog.AUTH_BY_SECRET_INFO_INIT=To authenticate using a shared secret, you should pick a secret that is only known \
to you and your buddy. Your buddy will then be asked to pick the secret too and if they don't match then you may be talking \
to an impostor.
plugin.otr.authbuddydialog.AUTH_BY_SECRET_INFO_RESPOND=Your buddy is trying to determine if he or she is really talking to you and not an impostor. \
Your buddy has asked you a question. If you want to authenticate, please enter the answer below.
plugin.otr.authbuddydialog.SHARED_SECRET=Enter your shared secret:
plugin.otr.authbuddydialog.QUESTION_RESPOND=Your buddy is asking you:
plugin.otr.authbuddydialog.QUESTION_INIT=Enter your question here:
plugin.otr.authbuddydialog.ANSWER=Enter your answer here (Case sensitive):
plugin.otr.authbuddydialog.AUTHENTICATION_FROM=Authentication from {0}.
plugin.otr.authbuddydialog.CANCEL=Cancel
plugin.otr.authbuddydialog.HELP=Help
plugin.otr.authbuddydialog.TITLE=Authenticate Buddy
plugin.otr.authbuddydialog.AUTHENTICATE_BUDDY=Authenticate Buddy
plugin.otr.authbuddydialog.I_HAVE=I have
plugin.otr.authbuddydialog.I_HAVE_NOT=I have not
plugin.otr.authbuddydialog.VERIFY_ACTION=verified that this is in fact the correct fingerprint for {0}.
plugin.otr.authbuddydialog.FINGERPRINT_CHECK=Please enter the fingerprint you recieved from {0}.
plugin.otr.smpprogressdialog.TITLE=Authentication Progress
plugin.otr.smpprogressdialog.AUTHENTICATION_SUCCESS=Authentication successful!
plugin.otr.smpprogressdialog.AUTHENTICATION_FAIL=Authentication failed!
plugin.otr.configform.MY_PRIVATE_KEYS=My Private Keys
plugin.otr.configform.KNOWN_FINGERPRINTS=Known Fingerprints
plugin.otr.configform.CB_AUTO=Automatically initiate private messaging
plugin.otr.configform.CB_ENABLE=Enable private messaging
plugin.otr.configform.CB_REQUIRE=Require private messaging
plugin.otr.configform.NO_KEY_PRESENT=No key present
plugin.otr.configform.GENERATE=Generate
plugin.otr.configform.REGENERATE=Re-generate
plugin.otr.configform.FINGERPRINT=Fingerprint
plugin.otr.configform.VERIFY_FINGERPRINT=Verify Fingerprint
plugin.otr.configform.FORGET_FINGERPRINT=Forget Fingerprint
plugin.otr.configform.COLUMN_NAME_CONTACT=Contact
plugin.otr.configform.COLUMN_NAME_VERIFIED_STATUS=Verified
plugin.otr.configform.COLUMN_VALUE_VERIFIED_TRUE=Yes
plugin.otr.configform.COLUMN_VALUE_VERIFIED_FALSE=No
plugin.otr.activator.unverifiedsessionwarning={0} is contacting you from an unrecognized computer. You should <A href=\"jitsi://{1}/{2}?{3}\">authenticate {0}</a>.
plugin.otr.activator.unverifiedsessionstared=<b>Unverified</b> private conversation with {0} started.
plugin.otr.activator.sessionstared=Private conversation with {0} started.
plugin.otr.activator.sessionfinished={0} has ended his/her private conversation with you; you should do the same.
plugin.otr.activator.sessionlost=Private conversation with {0} lost.
plugin.otr.activator.historyon={0} is recording this conversation on your device. You can <A href=\"jitsi://{1}/{2}\">turn off chat history here</a>.
plugin.otr.activator.historyoff={0} is NOT recording this conversation. You can <A href=\"jitsi://{1}/{2}\">activate chat history here</a>.
plugin.otr.activator.sessionfinishederror=Your message [{0}] was not sent. Please end your private conversation with {1}.
plugin.otr.activator.smpaborted={0} has aborted the authentication process.
plugin.otr.activator.smperror=An error occurred in the authentication process.
plugin.otr.activator.unencryptedmsgreceived=The message was received unencrypted.
plugin.otr.activator.unreadablemsgreceived={0} sent you an unreadable encrypted message.
plugin.otr.activator.requireencryption=Your message [{0}] was not sent. Private messaging is required.
plugin.otr.activator.unreadablemsgreply=You sent {0} an unreadable encrypted message. Please end your private conversation with {1} or refresh it.
plugin.otr.activator.fallbackmessage=<span style="font-weight: bold;">{0} is trying to initiate an encrypted \
<a href="http://en.wikipedia.org/wiki/Off-the-Record_Messaging">Off-The-Record conversation</a> with you. However, your software does not support \
Off-The-Record messaging. For more information see <a href="http://en.wikipedia.org/wiki/Off-the-Record_Messaging">\
http://en.wikipedia.org/wiki/Off-the-Record_Messaging</a></span>
plugin.otr.activator.multipleinstancesdetected=Your buddy {0} is logged in multiple times and OTR has established multiple sessions. You can select \
an outgoing session from the menu below. 
plugin.otr.activator.msgfromanotherinstance={0} sent you a message that was intended for another session. If you are logged in multiple times \
another session may have received this message.

# global proxy plugin
plugin.globalproxy.GLOBAL_PROXY_CONFIG=Global Proxy
plugin.globalproxy.PROXY_TYPE=Proxy Type
plugin.globalproxy.PROXY_ADDRESS=Proxy Server
plugin.globalproxy.PROXY_PORT=Proxy port
plugin.globalproxy.PROXY_USERNAME=Proxy username
plugin.globalproxy.PROXY_PASSWORD=Proxy password
plugin.globalproxy.DESCRIPTION={0} will use the above proxy \
settings for all networks you connect or reconnect to from now on. \n\
Proxy support is currently experimental and only works with some protocols. \
Check out the table below for more details:
plugin.globalproxy.PROTOCOL_SUPPORT=<html><table> \
<tr><td></td><td> SOSCKS4/5 </td><td> SOSCKS4/5+Auth </td><td> HTTP </td><td> HTTP+Auth </td></tr>\
<tr><td>XMPP</td><td>+</td><td>+</td><td>+</td><td>+</td></tr>\
<tr><td>ICQ/AIM</td><td>+</td><td>+</td><td>+</td><td>+</td></tr>\
</table></html>
#plugin.globalproxy.PROTOCOL_SUPPORT
plugin.globalproxy.FWD_DNS=Also proxy DNS
plugin.globalproxy.FWD_DNS_NOTE=Useful with Tor. Helps avoiding DNS leaks by forwarding all DNS traffic to the Tor proxy. Requires restart.
plugin.globalproxy.FWD_DNS_ADDR=DNS Proxy Address
plugin.globalproxy.FWD_DNS_PORT=DNS Proxy port

# plugin reconnect
plugin.reconnectplugin.CONNECTION_FAILED_MSG=Connection failed for the following account:\nUser name: {0}, Server name: {1}.\nPlease check your settings or contact your network administrator for more information.
plugin.reconnectplugin.NETWORK_DOWN=Network connectivity lost!


#plugin chat config

plugin.chatconfig.TITLE=Chat
plugin.chatconfig.replacement.TITLE=Image/Video:
plugin.chatconfig.replacement.ENABLE_SMILEY_STATUS=Enable smiley replacement
plugin.chatconfig.replacement.REPLACEMENT_TITLE=Image/Video replacement
plugin.chatconfig.replacement.ENABLE_REPLACEMENT_STATUS=Enable
plugin.chatconfig.replacement.ENABLE_REPLACEMENT_PROPOSAL=Disable (show preview link)
plugin.chatconfig.replacement.DISABLE_REPLACEMENT=Disable
plugin.chatconfig.replacement.CONFIGURE_REPLACEMENT=Change Image/Video replacement settings
plugin.chatconfig.replacement.REPLACEMENT_SOURCES=Sources:
plugin.chatconfig.spellcheck.TITLE=SpellCheck

#provisioning plugin
plugin.provisioning.PROVISIONING=Provisioning
plugin.provisioning.ENABLE_DISABLE=Enable provisioning
plugin.provisioning.AUTO=Automatically discover a provisioning URI
plugin.provisioning.DHCP=DHCP
plugin.provisioning.DNS=DNS
plugin.provisioning.BONJOUR=Bonjour
plugin.provisioning.MANUAL=Manually specify a provisioning URI
plugin.provisioning.URI=URI
plugin.provisioning.RESTART_WARNING=Note that your changes will only take effect next time you start {0}!
plugin.provisioning.UUID=UUID
plugin.provisioning.COPYTOCLIPBOARD=Copy UUID to clipboard
plugin.provisioning.CLIPBOARD_FAILED=Failed to copy UUID to clipboard
plugin.provisioning.CREDENTIALS=Last stored provisioning credentials
plugin.provisioning.REMOVE_CREDENTIALS_MESSAGE=Are you sure you want to remove provisioning password?
plugin.provisioning.PROV_FAILED=Provisioning failed
plugin.provisioning.PROV_FAILED_MSG=<html>Provisioning failed. {0}! <br>Please, try again later or contact your administrator.</html>
plugin.provisioning.FORGET_PASSWORD=Forget password

# packet logging service
plugin.loggingutils.PACKET_LOGGING_CONFIG=Logging
plugin.loggingutils.ENABLE_DISABLE=Enable packet logging
plugin.loggingutils.PACKET_LOGGING_RTP=RTP
plugin.loggingutils.PACKET_LOGGING_RTP_DESCRIPTION=(stores 1 packet out of every 5000)
plugin.loggingutils.PACKET_LOGGING_ICE4J=ice4j.org
plugin.loggingutils.PACKET_LOGGING_DESCRIPTION=<html>Logs debug packets of various protocols in the <br>log folder using pcap format (tcpdump/wireshark).</html>
plugin.loggingutils.PACKET_LOGGING_FILE_COUNT=Number of log files
plugin.loggingutils.PACKET_LOGGING_FILE_SIZE=Maximum file size (in KB)
plugin.loggingutils.ARCHIVE_BUTTON=Archive Logs
plugin.loggingutils.UPLOAD_LOGS_BUTTON=Upload Logs
plugin.loggingutils.UPLOAD_BUTTON=Upload
plugin.loggingutils.ARCHIVE_FILECHOOSE_TITLE=Choose file
plugin.loggingutils.ARCHIVE_UPREPORT_EMAIL=johnsmith@email.com
plugin.loggingutils.ARCHIVE_MESSAGE_OK=Archiving logs successful \n{0}
plugin.loggingutils.ARCHIVE_MESSAGE_NOTOK=Error archiving logs \n{0}

# dns config plugin
plugin.dnsconfig.TITLE=DNS
plugin.dnsconfig.DNSSEC=DNS Security (DNSSEC)
plugin.dnsconfig.PARALLEL_DNS=Parallel DNS
plugin.dnsconfig.border.TITLE=Backup resolver
plugin.dnsconfig.chkBackupDnsEnabled.text=Enable parallel DNS resolving
plugin.dnsconfig.lblBackupResolver.text=Hostname
plugin.dnsconfig.lblBackupResolverFallbackIP.text=Fallback IP
plugin.dnsconfig.lblBackupPort.text=Port
plugin.dnsconfig.lblRedemption.text=Back to primary resolver
plugin.dnsconfig.lblRedemption.description=<html>the number of prompt responses that the primary resolver needs to provide before we turn that backup off again</html>
plugin.dnsconfig.lblPatience.text=Start backup resolver after
plugin.dnsconfig.lblPatience.description=<html>number of ms to wait for a response from primary DNS before starting the backup resolver</html>
plugin.dnsconfig.dnssec.chkEnabled=Enable DNSSEC resolver
plugin.dnsconfig.dnssec.lblDefault=Default behavior
plugin.dnsconfig.dnssec.chkAbsolute=Treat all domain names as absolute
plugin.dnsconfig.dnssec.lblNameservers=Custom name servers
plugin.dnsconfig.dnssec.lblNameserversHint=<html>Multiple servers can be delimited with a comma, e.g. 149.20.64.20, 149.20.64.21 (OARC's Open DNSSEC Validating Resolver)</html>
plugin.dnsconfig.dnssec.DOMAIN_NAME=Domain
plugin.dnsconfig.dnssec.MODE=Behavior
plugin.dnsconfig.dnssec.ENABLE_FAILED=State change failed
plugin.dnsconfig.dnssec.ENABLE_FAILED_MSG=Change of the DNSSEC enabled state has failed.
plugin.dnsconfig.dnssec.RESTART_WARNING=<html>Note that enabling or disabling DNSSEC disables the parallel resolver and will only take effect the next time you start {0}.</html>
net.java.sip.communicator.util.dns.SecureResolveMode.IgnoreDnssec=Ignore
net.java.sip.communicator.util.dns.SecureResolveMode.SecureOnly=Required
net.java.sip.communicator.util.dns.SecureResolveMode.SecureOrUnsigned=Required for signed zones
net.java.sip.communicator.util.dns.SecureResolveMode.WarnIfBogus=Ask on bogus reply
net.java.sip.communicator.util.dns.SecureResolveMode.WarnIfBogusOrUnsigned=Ask on unsigned or bogus reply
util.dns.INSECURE_ANSWER_TITLE=DNSSEC failure
util.dns.INSECURE_ANSWER_MESSAGE_NO_REASON=DNS answer for {0} is insecure.
util.dns.INSECURE_ANSWER_MESSAGE_REASON=DNS answer for {0} is insecure.\nReason: {1}
util.dns.DNSSEC_ADVANCED_OPTIONS=Show advanced options
util.dns.DNSSEC_ADVANCED_REASON_BOGUS=<html>DNSSEC signed zone {0} returned invalid data.<br>{1}</html>
util.dns.DNSSEC_ADVANCED_REASON_UNSIGNED={0} query for {1} is unsigned.
net.java.sip.communicator.util.dns.ConfigurableDnssecResolver$DnssecDialogResult.Accept=Accept anyway
net.java.sip.communicator.util.dns.ConfigurableDnssecResolver$DnssecDialogResult.AlwaysAccept=Always accept
net.java.sip.communicator.util.dns.ConfigurableDnssecResolver$DnssecDialogResult.Deny=Deny
net.java.sip.communicator.util.dns.ConfigurableDnssecResolver$DnssecDialogResult.AlwaysDeny=Always deny
util.dns.DNSSEC_WARNING=<html><div width="600">{0} has tried to connect to the server at <b>{1}</b>, which is a \
domain that carries a strong protection called DNSSEC. The information that {0} has obtained \
from the DNS server is not in accordance with the information DNSSEC provides about this domain. \
<br><br>\
<b>This should not happen unless very serious mistakes were made at {1}. \
It therefore is a very strong indication that something is  \
seriously wrong with the trustworthiness of your network connection.</b> \
<br><br>\
If you are on someone else''s internet connection (like a WiFi hotspot)  \
or if there are special circumstances that make you distrust your  \
regular internet provider, we strongly advise you to stop using it  \
immediately and look for an alternative internet access point. When you  \
are safely connected to another network, the problem should be resolved  \
automatically. If this is not the case, contact your service provider to  \
inform them about the issue. \
</div></html>

#plugin spellcheck
plugin.spellcheck.TITLE=Spelling and Grammar
plugin.spellcheck.MENU=Show Spelling and Grammar
plugin.spellcheck.ENABLE_SPELL_CHECK=Enable spell check
plugin.spellcheck.dialog.FIND=Find Next
plugin.spellcheck.dialog.REPLACE=Replace   
plugin.spellcheck.dialog.ADD=Add Word
plugin.spellcheck.DICT_ERROR_TITLE=Error Switching Dictionary
plugin.spellcheck.DICT_ERROR=Cannot switch dictionary
plugin.spellcheck.DICT_RETRIEVE_ERROR=Dictionary cannot be fetched from 
plugin.spellcheck.DICT_PROCESS_ERROR=Locale not recognized
plugin.spellcheck.UNINSTALL_DICTIONARY=Uninstall
plugin.spellcheck.DICT_ERROR_DELETE_TITLE=Error uninstalling dictionary
plugin.spellcheck.DICT_ERROR_DELETE=Cannot uninstall dictionary
plugin.spellcheck.SPELLCHECK=Spell check

plugin.contactsourceconfig.CONTACT_SOURCE_TITLE=Contact sources

#Certificate configuration plugin
plugin.certconfig.TITLE=TLS configuration
plugin.certconfig.TRUSTSTORE_CONFIG=Source of trusted root certificates
plugin.certconfig.JAVA_TRUSTSTORE=Java
plugin.certconfig.WINDOWS_TRUSTSTORE=Windows
plugin.certconfig.CERT_LIST_TITLE=TLS client authentication configurations
plugin.certconfig.CERT_LIST_DESCRIPTION=<html><body>The configurations managed here can be chosen as client TLS certificates in the account configurations (e.g. to authenticate with a certificate against your SIP provider instead of a username and password).</body></html>
plugin.certconfig.ALIAS=Alias name in KeyStore
plugin.certconfig.KEYSTORE_TYPE=Type
plugin.certconfig.EDIT_ENTRY=Edit TLS client certificate configuration
plugin.certconfig.KEYSTORE=File
plugin.certconfig.KEYSTORE_PASSWORD=Password
plugin.certconfig.INCOMPLETE=Please enter a value for all fields
plugin.certconfig.SHOW_CERT_EXCEPTION=Unable to show the certificate ({0}).
plugin.certconfig.KEYSTORE_EXCEPTION=Unable to load the keystore ({0}).
plugin.certconfig.FILE_TYPE_DESCRIPTION=Certificate stores (PKCS#11 Module, PKCS#12 files, Java ks Keystore)
plugin.certconfig.ALIAS_LOAD_EXCEPTION=Unable to obtain aliases from keystore ({0}).
plugin.certconfig.INVALID_KEYSTORE_TYPE=The selected Keystore type seems to be invalid ({0}).
plugin.certconfig.BROWSE_KEYSTORE=Open KeyStore
plugin.certconfig.REVOCATION_TITLE=Certificate revocation options
plugin.certconfig.REVOCATION_CHECK_ENABLED=CRL (Certificate Revocation List) check enabled
plugin.certconfig.REVOCATION_OCSP_ENABLED=OCSP (Online Certificate Status Protocol) check enabled

# Phone number contact source plugin
plugin.phonenumbercontactsource.DISPLAY_NAME=Phone numbers

# properties editor
plugin.propertieseditor.TITLE=Property Editor
plugin.propertieseditor.NEW_PROPERTY_TITLE=Add new property
plugin.propertieseditor.CHECK_BOX=Show this warning next time
plugin.propertieseditor.DESCRIPTION=The following button allows modifying Jitsi configuration properties. \
Changing these advanced settings can be harmful to the stability, security, \
and performance of this application. You should only continue if you are sure \
of what you are doing.
plugin.propertieseditor.IM_AWARE=I am aware of the risks
plugin.propertieseditor.NEED_RESTART=Note: some properties might need a restart before new settings will take effect.

#Thunderbird address book plugin
plugin.thunderbird.CONFIG_FORM_TITLE=Thunderbird
plugin.thunderbird.ENABLED=Enabled
plugin.thunderbird.PHONE_PREFIX=Phone prefix: