aboutsummaryrefslogtreecommitdiffstats
path: root/resources/languages/resources.properties
blob: 2a3b186185b5022a3cf72a4d709be489909893d2 (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
# Jitsi, the OpenSource Java VoIP and Instant Messaging client.
#
# Distributable under LGPL license.
# See terms of license at gnu.org.
#
# 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_ACCOUNT=Add account
service.gui.ADD_CONTACT=&Add contact
service.gui.ADD_AUTHORIZED_CONTACT=Add {0} 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=Failed to add contact with id: {0}. Network failure occurred.
service.gui.ADD_CONTACT_NOT_SUPPORTED=Failed to add contact with id: {0}. Operation not supported.
service.gui.ADD_CONTACT_IDENTIFIER=In the field below enter the identifier of the contact you would like to add.
service.gui.ADD_CONTACT_WIZARD=Add contact wizard
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.ADD_GROUP=Create group
service.gui.ADD_SUBCONTACT=&Add subcontact
service.gui.ADMINISTRATOR=administrator
service.gui.ADVANCED=&Advanced
service.gui.ALL=&All
service.gui.ALL_CONTACTS=&All contacts
service.gui.APPLY=&Apply
service.gui.ARE_CALLING=are calling...
service.gui.ARE_NOW=You are now {0}
service.gui.AT=at
service.gui.AUTHORIZE=&Authorize
service.gui.AUTHORIZATION_ACCEPTED=contact has accepted your authorization request.
service.gui.AUTHENTICATION_FAILED=Authentication failed for {0}. The password you entered is not valid.
service.gui.AUTHENTICATION_REQUESTED=Authentication requested
service.gui.AUTHENTICATION_REQUESTED_SERVER=The {0} server has requested your authentication.
service.gui.AUTHENTICATION_REJECTED=contact 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.BAN=&Ban
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_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.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_VIDEO_QUALITY=Change remote video quality
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 administrators of the chat room could 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_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_NAME=Chat room name
service.gui.ROOM_NAME=Chat Room
service.gui.AUTOJOIN=Autojoin
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_NOT_JOINED=You need to be joined to the chat room in order to do further operations with it.
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_SUBJECT_CHANGED={0} has changed the subject to {1}
service.gui.CHOOSE_CONTACT=Choose contact
service.gui.CHOOSE_ACCOUNT=Please select one of the listed accounts.
service.gui.SHOW_MORE_TOOLTIP=Click to show more results
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.COMPARE_WITH_PARTNER=Compare with partner and click the padlock to confirm.
# keep the following string short
service.gui.COMPARE_WITH_PARTNER_SHORT=Compare with partner: {0}
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_FAILED_MSG=Connection failed for the following account: User name: {0}, Server name: {1}. Please check your network connection or contact your network administrator for more information.
service.gui.CONNECTION_EXPIRED_MSG=You are currently disconnected from the {0} server.
service.gui.CONTACT_NAME=ID or Number
service.gui.CONTACT_NOT_SUPPORTING_TELEPHONY=The chosen {0} contact doesn''t support telephony.
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_INFO=&Contact info
service.gui.CONTACTLIST=Contactlist
service.gui.CONTACTS=Contacts
service.gui.COPY=&Copy
service.gui.COPY_LINK=Copy &link
service.gui.CREATE=C&reate
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_CONFERENCE_CHAT=&Create a conference chat...
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_FIRST_GROUP_WIZARD=Your contact list doesn't contain any groups. Please create a group first (File/Create group).
service.gui.CONTACT_INFO_NOT_SUPPORTED=This contact doesn't support web contact info
service.gui.CUT=C&ut
service.gui.DATE=Date
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.DIALPAD=Dial Pad
service.gui.DISPLAY_NAME=Display name
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.DOWNLOAD_NOW=&Download now
service.gui.DRAG_FOR_SHARING=Drag here anything you want to share...
service.gui.DURATION=duration
service.gui.EDIT=&Edit
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.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.ESTIMATED_TIME=Estimated time:
service.gui.EVENTS=Events
service.gui.EXIT=E&xit
service.gui.EXTENDED_CRITERIA=Extended criteria
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.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 refused 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_RECEIVE_REFUSED=You have refused the file from {0}.
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.HOUR=Hour
service.gui.ICE=ICE configuration
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_CALL_STATUS=Incoming call
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.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_REASON=Invite reason
service.gui.IS_CALLING=is calling...
service.gui.IS_NOW={0} is now {1}
service.gui.JITSI_WARNING=SIP Communicator has recently been renamed to Jitsi.<br/>\
 If you want your version to remain up-to-date, then please download Jitsi now.\
<br/><br/>We are sorry for any inconvenience that this may be causing you.\
<br/><br/>The Jitsi Dev Team
service.gui.JITSI_WARNING_TITLE=SIP Communicator becomes Jitsi
service.gui.JOIN=&Join
service.gui.JOIN_AS=J&oin as
service.gui.CLOSE_CHAT_ROOM_DIALOG=C&lose
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.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=Last
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.LOADING_ROOMS=Loading rooms...
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.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=See 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.MOVE_CONTACT_ERROR=&Contact cannot be moved
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: http://www.jitsi.org/index.php/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_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=Go to chat room...
service.gui.MY_CHAT_ROOMS_TITLE=Go to chat room
service.gui.MUTE=Mute
service.gui.MUTUALLY_ON_HOLD_STATUS=Mutually On Hold
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.NO=No
service.gui.NO_CAMERA_AVAILABLE=No camera available
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_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.OLDER_CALLS=Older calls
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.OR=or
service.gui.OR_ENTER_PHONE_NUMBER=Or enter phone number here...
service.gui.OWNER=owner of the room
service.gui.PASSWORD=Password
service.gui.PASTE=&Paste
service.gui.PORT=Port
service.gui.PREFIX=Prefix
service.gui.PRESENCE=Presence
service.gui.PRESS_ENTER_FOR_SUGGESTIONS='Enter' for suggestions
service.gui.PREVIOUS=Previous
service.gui.PREVIOUS_TOOLTIP=Browse older conversations
service.gui.PRINT=&Print
service.gui.PROACTIVE_NOTIFICATION=is writing a message
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.REASON=Reason
service.gui.RECEIVED=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.REMIND_ME_LATER=Remind me later
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_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.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.ROOT_GROUP=Root group
service.gui.SAVE=&Save
service.gui.SAVE_AS_DEFAULT=Save as default
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.SECURITY=Security
service.gui.SELECT_ACCOUNT=Select account
service.gui.SELECT_COLOR=Select color
service.gui.SELECT_GROUP=Select group
service.gui.SELECT_GROUP_WIZARD_MSG=The list below contains all groups in your Contact List. Select the one, where you would like to add the new contact.
service.gui.SELECT_NO_GROUP=No group
service.gui.SELECT_GROUP_WIZARD=Specify 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_PROVIDERS_WIZARD_MSG=The list below contains all registered accounts. Select the one you would like to use to communicate with the new contact.
service.gui.SELECT_PROVIDERS_WIZARD=Select account
service.gui.SEND=&Send
service.gui.SEND_FILE=Send &file
service.gui.SELECT_CONTACT_SUPPORTING_INFO=There is no info for this contact.
service.gui.SEND_MESSAGE=&Send a message
service.gui.SEND_AS_SMS=Send as SMS
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.SEND_VIA=Send via
service.gui.SENT=sent
service.gui.SET_GLOBAL_STATUS=Set global status
service.gui.SET_STATUS_MESSAGE=Set status message
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.SUBJECT=Subject
service.gui.SUMMARY=Summary
service.gui.TELEPHONY=Telephony
service.gui.TODAY=Today
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.UNMUTE=Unmute
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.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.VIDEO_CALL=&Video call
service.gui.VIA_SMS=Via SMS
service.gui.VIEW=&View
service.gui.VIEW_HISTORY=View &history
service.gui.VIEW_SMILEYS=View &smileys
service.gui.VIEW_TOOLBAR=View &toolbar
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.VOLUME_CONTROL_TOOL_TIP=Adjust volume
service.gui.WAITING_AUTHORIZATION=Waiting for authorization
service.gui.WARNING=Warning
service.gui.YES=Yes
service.gui.YESTERDAY=Yesterday
service.gui.EXISTING_ACCOUNT_ERROR=The account you entered is already installed.
service.gui.NEW_MAIL=<b>You have one new Mail!</b><br/><b>From:</b> {0} {1} <br/><b>Subject:</b> {2} <br/>{3};
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.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.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.UPDATE=Update
service.gui.MOBILE_PHONE=Mobile
service.gui.WORK_PHONE=Work
service.gui.PHONE=Home

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.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_CLIENT_DESCRIPTION_TXT=<html>{0} can''t verify the identity \
of the connecting client.<br><br> \
The certificate is not trusted, which means that the client''s \
identity cannot<br> be automatically verified. \
Do you want to accept the connection?<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_ISSUED_TO=<html><b>Issued To</b></html>
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=<html><b>Issued By</b></html>
service.gui.CERT_INFO_OU=Organizational Unit:
service.gui.CERT_INFO_VALIDITY=<html><b>Validity</b></html>
service.gui.CERT_INFO_ISSUED_ON=Issued On:
service.gui.CERT_INFO_EXPIRES_ON=Expires On:
service.gui.CERT_INFO_FINGERPRINTS=<html><b>Fingerprints</b></html>
service.gui.CERT_INFO_CERT_DETAILS=<html><b>Certificate Info</b></html>
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=<html><b>Public Key Info</b></html>
service.gui.CERT_INFO_ALG=Algorithm:
service.gui.CERT_INFO_PUB_KEY=Public Key:
service.gui.CERT_INFO_KEY_BYTES_PRINT={0} bytes: {1}
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.CONTINUE=Continue
service.gui.SHOW_CERT=Show Certificate
service.gui.HIDE_CERT=Hide Certificate

service.gui.avatar.CHOOSE_ICON=Choose 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.INITIALIZING=Initializing
service.gui.avatar.imagepicker.RESET=Reset
service.gui.avatar.imagepicker.SET=Set
service.gui.avatar.imagepicker.TAKE_PHOTO=Take a photo
service.gui.avatar.imagepicker.WEBCAM_ERROR=Webcam error


# impl.protocol.ssh
#Contact Details Seperator(must not be part of contact data stored as persistent
# data)
impl.protocol.ssh.DETAILS_SEPARATOR=~

# 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.NEW=New
impl.ldap.EDIT=edit
impl.ldap.REMOVE=Remove
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

# 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.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.PREFIX=Specific phone number prefix
plugin.addrbook.PREFIX_EXAMPLE=Ex.: 00

# Google Contacts
impl.googlecontacts.CONFIG_FORM_TITLE=Google Contacts
impl.googlecontacts.NEW=New
impl.googlecontacts.EDIT=edit
impl.googlecontacts.REMOVE=Remove
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}

# account info
plugin.accountinfo.TITLE=Account Info
plugin.accountinfo.EXTENDED=Extended
plugin.accountinfo.NOT_SUPPORTED=Account info not available.
plugin.accountinfo.FIRST_NAME=First Name:
plugin.accountinfo.MIDDLE_NAME=Middle Name:
plugin.accountinfo.LAST_NAME=Last Name:
plugin.accountinfo.AGE=Age:
plugin.accountinfo.BDAY=Birth Date:
plugin.accountinfo.GENDER=Gender:
plugin.accountinfo.EMAIL=E-mail:
plugin.accountinfo.PHONE=Phone:
plugin.accountinfo.USER_PICTURES=User Pictures
plugin.accountinfo.CHANGE=Change
plugin.accountinfo.ONLY_MESSAGE=Only messages

# 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.
plugin.aimaccregwizz.OVERRIDE_SERVER_DEFAULT_OPTIONS=Override server default options

# branding
plugin.branding.ABOUT_WINDOW_TITLE=About {0}
plugin.branding.LOGO_MESSAGE=Open Source VoIP && Instant Messaging
plugin.branding.LOADING=Loading
plugin.branding.ABOUT_MENU_ENTRY=&About
plugin.branding.WELCOME_MESSAGE=<DIV color={0}>The {1} is currently under active development. \
               The version you are running is only experimental and MAY NOT \
               work as expected. Please refer to {2} for more information.</DIV>
plugin.branding.COPYRIGHT=<DIV><font size=3 color={0}>(c)2003-2011 Copyright \
          <b>jitsi.org</b>. All rights reserved. Visit \
          <a href="http://jitsi.org">http://jitsi.org</a>.\
          </font></DIV>
plugin.branding.LICENSE=<DIV color={0}>The <b>Jitsi</b> is distributed under \
        the terms of the LGPL (<a href=\"http://www.gnu.org\">\
        http://www.gnu.org</a>).</DIV>

# Dict protocol
service.protocol.DICTIONARIES=Dictionaries
plugin.dictaccregwizz.ANY_DICTIONARY=Any Dictionary
plugin.dictaccregwizz.ANY_DICTIONARY_FORM=Any Dictionary from {0}
plugin.dictaccregwizz.FIRST_MATCH=First Match
plugin.dictaccregwizz.NO_MATCH=No match
plugin.dictaccregwizz.MATCH_RESULT=No definitions found for "{0}", perhaps you mean:\n
plugin.dictaccregwizz.INVALID_DATABASE=The current dictionary "{0}" doesn''t exist anymore on the server.
plugin.dictaccregwizz.INVALID_STRATEGY=The current strategy isn't available on the server.
plugin.dictaccregwizz.PROTOCOL_NAME=Dict
plugin.dictaccregwizz.PROTOCOL_DESCRIPTION=The Dict service protocol
plugin.dictaccregwizz.HOST=Host
plugin.dictaccregwizz.SERVER_INFO=Server informations
plugin.dictaccregwizz.STRATEGY_SELECTION=Strategy selection
plugin.dictaccregwizz.STRATEGY_LIST=List of strategies:
plugin.dictaccregwizz.SEARCH_STRATEGIES=Search strategies
plugin.dictaccregwizz.STRATEGY_DESCRIPTION=Strategy is use to search similar words,if a translation was not found, thanks to different approaches. For example the Prefix strategies will search words which begin like the word you would translate.
plugin.dictaccregwizz.ACCOUNT_INFO_TITLE=Dict Account Information
plugin.dictaccregwizz.FIRST_ACCOUNT=This wizard will create your first Dict Account for you on dict.org.\n\n\
You can add new dictionary by going on Account Registration Wizard. Fill the host Field with dictionary you would like to add.
plugin.dictaccregwizz.THREAD_CONNECT=Trying to connect to server
plugin.dictaccregwizz.THREAD_CONNECT_FAILED=Connexion attempt failed, this isn't a dict server or the server is offline
plugin.dictaccregwizz.RETRIEVING_STRATEGIES=Retrieving strategies
plugin.dictaccregwizz.NO_STRATEGIES_FOUND=No strategy found on the server
plugin.dictaccregwizz.POPULATE_LIST=Populating list
plugin.dictaccregwizz.CLOSING_CONNECTION=Closing connection

# facebookaccregwizz
plugin.facebookaccregwizz.DESCRIPTION=<html><body><center><a href="https://register.facebook.com/editaccount.php">In order to use Facebook Chat you need to create a "Username" <br>from your "Account Settings" page on Facebook.</a><br><br>Note: When you create username you must logout from the webpage <br>and it can take a while before you are able to login with your new username!</center></body></html>
plugin.facebookaccregwizz.PROTOCOL_DESCRIPTION=The Facebook Chat protocol
plugin.facebookaccregwizz.PROTOCOL_NAME=Facebook
plugin.facebookaccregwizz.USERNAME=Username:
plugin.facebookaccregwizz.USERNAME_AND_PASSWORD=Username and Password

# generalconfig
plugin.generalconfig.AUTO_START=Auto-start {0} when computer restarts or reboots
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.ERROR_PERMISSION=You don't have enough privileges to remove autostart
plugin.generalconfig.TRANSPARENCY=Transparency
plugin.generalconfig.ENABLE_TRANSPARENCY=Enable transparency
plugin.generalconfig.DEFAULT_LANGUAGE=Interface Language
plugin.generalconfig.DEFAULT_LANGUAGE_RESTART_WARN=Your changes will take effect on next restart.
plugin.generalconfig.SIP_CLIENT_PORT=SIP client port
plugin.generalconfig.SIP_CLIENT_SECURE_PORT=SIP client secure port
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.REMOVE_SPECIAL_PHONE_SYMBOLS=Remove special symbols before calling phone numbers
plugin.generalconfig.SIP_CALL_CONFIG=SIP

# 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.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

# 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.XMPP_ERROR=XMPP Error
plugin.jabberaccregwizz.UNKNOWN_XMPP_ERROR=Unknown XMPP error. 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.ADVANCED_OPTIONS=Advanced options
plugin.jabberaccregwizz.USE_ICE=Use ICE
plugin.jabberaccregwizz.USE_GOOGLE_ICE=Use Google's Jingle/ICE (experimental)
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

# mailbox
plugin.mailbox.OUTGOING=Outgoing Message:
plugin.mailbox.INCOMING=Incoming Messages:
plugin.mailbox.WAIT_TIME=Delay Until Call Sent to Voicemail
plugin.mailbox.MAX_MESSAGE_TIME=Maximum Incoming Message Duration
plugin.mailbox.CONFIRM=Confirm
plugin.mailbox.DEFAULTS=Defaults
plugin.mailbox.MAILBOX=Mailbox

# msn accregwizz
plugin.msnaccregwizz.PROTOCOL_NAME=MSN
plugin.msnaccregwizz.PROTOCOL_DESCRIPTION=A protocol to connect and chat on the MSN Service.
plugin.msnaccregwizz.USERNAME=Email:
plugin.msnaccregwizz.USERNAME_AND_PASSWORD=ID and Password

# 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

# rss accregwizz
plugin.rssaccregwizz.PROTOCOL_NAME=RSS
plugin.rssaccregwizz.PROTICOL_DESCRIPTION=Add your preferred RSS feeds into Jitsi !
plugin.rssaccregwizz.ERROR_ACCOUNT_EXISTS=RSS account already exists!
plugin.rssaccregwizz.ACCOUNT_INFO=This wizard will create an RSS account for you.\n\n\
Note that you could have only one RSS account!\n\n\
You can add RSS feeds to your contact list using the "Add contact" wizard. Fill in the contact address field with the URI of the RSS feed you would like to add.
plugin.rssaccregwizz.ACCOUNT_INFO_TITLE=RSS Account Information
plugin.rssaccregwizz.ACCOUNT_ATTENTION=Please read attentively the information provided below!
plugin.rssaccregwizz.CONFIRM_ACCOUNT_REMOVAL=The following RSS feed seems to be no longer accessible. Would you like to remove it?\n\n Address: {0}
plugin.rssaccregwizz.CONFIRM_ACCOUNT_REMOVAL_TITLE=Remove RSS feed

# 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.ADVANCED_OPTIONS=Advanced options
plugin.sipaccregwizz.PROXY_OPTIONS=Proxy options
plugin.sipaccregwizz.PROXY_AUTO=Configure proxy automatically
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.REGISTER=REGISTER
plugin.sipaccregwizz.OVERRIDE_SERVER_DEFAULT_OPTIONS=Override server default options
plugin.sipaccregwizz.ENABLE_DEFAULT_ENCRYPTION=Enable support to encrypt calls
plugin.sipaccregwizz.ENABLE_SIPZRTP_ATTRIBUTE=Indicate support of ZRTP in SIP data
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_URI=Voicemail 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
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.ENABLE_SDES_ATTRIBUTE=Enable S-Descriptor (also known as SDES or SRTP)
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

# 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.

# ssh accregwizz
plugin.sshaccregwizz.PROTOCOL_NAME=SSH
plugin.sshaccregwizz.PROTOCOL_DESCRIPTION=A Protocol to connect to remote machines over SSH.
plugin.sshaccregwizz.USERNAME=Account ID:
plugin.sshaccregwizz.IDENTITY_FILE=Identity File:
plugin.sshaccregwizz.KNOWN_HOSTS=Known Hosts:
plugin.sshaccregwizz.OPTIONAL=Optional
plugin.sshaccregwizz.ACCOUNT_DETAILS=Account details

# 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=New version available
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=If you continue with update application will be shutdown! Are you sure?
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.

# 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

# yahoo accregwizz
plugin.yahooaccregwizz.PROTOCOL_NAME=Yahoo!
plugin.yahooaccregwizz.PROTOCOL_DESCRIPTION=A protocol to connect and chat on the Yahoo! Service.
plugin.yahooaccregwizz.USERNAME=Username:
plugin.yahooaccregwizz.USERID_AND_PASSWORD=ID and Password

# zero accregwizz
plugin.zeroaccregwizz.PROTOCOL_NAME=Zeroconf
plugin.zeroaccregwizz.PROTOCOL_DESCRIPTION=The Zeroconf (Bonjour) service protocol.
plugin.zeroaccregwizz.FIRST_NAME=First name:
plugin.zeroaccregwizz.LAST_NAME=Last name:
plugin.zeroaccregwizz.EMAIL=Email:
plugin.zeroaccregwizz.REMEMBER_CONTACTS=Remember Bonjour contacts?
plugin.zeroaccregwizz.USERID_AND_PASSWORD=ID and Password
plugin.zeroaccregwizz.USERID=User ID

# 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

# sip2sip accregwizz
plugin.sip2sipaccregwizz.PROTOCOL_NAME=sip2sip.info
plugin.sip2sipaccregwizz.PROTOCOL_DESCRIPTION=VoIP and chat
plugin.sip2sipaccregwizz.USERNAME=Username
plugin.sip2sipaccregwizz.RETYPE_PASSWORD=Retype password
plugin.sip2sipaccregwizz.EMAIL=Email address
plugin.sip2sipaccregwizz.NEW_ACCOUNT_TITLE=For help about this service visit<br>http://wiki.sip2sip.info
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.sip2sipaccregwizz.INFO_NOTE=<html>For help about this service visit <a href=''>http://wiki.sip2sip.info</a></html>
plugin.sip2sipaccregwizz.EXISTING_ACCOUNT=Existing sip2sip.info account
plugin.sip2sipaccregwizz.CREATE_ACCOUNT=Create a free sip2sip.info account

# ippi accregwizz
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.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.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.PLUGIN_NAME=Keybindings
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
plugin.notificationconfig.tableheader.DESCRIPTION=Description of event
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

# 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.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_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=Maximum allowed bandwidth (kBytes/s)
impl.media.configform.VIDEO_RESET=Reset defaults

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

impl.neomedia.configform.H264=H.264
impl.neomedia.configform.H264.defaultProfile=Default profile to encode into:
impl.neomedia.configform.H264.defaultProfile.baseline=Baseline
impl.neomedia.configform.H264.defaultProfile.main=Main
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

# 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_NOT_SET=(not set)
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.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
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=http://www.jitsi.org/index.php/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. 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 above 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.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.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. <u>You should authenticate this buddy</u>.
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.

# 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>Yahoo!</td><td>+</td><td>+</td><td>-</td><td>-</td></tr>\
<tr><td>MSN</td><td>+</td><td>+</td><td>-</td><td>-</td></tr>\
<tr><td>JABBER</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 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.ENABLE_REPLACEMENT_STATUS=Enable Image/Video replacement
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.EXIT_ON_FAIL=Exit the application if the provisioning fails
plugin.provisioning.CREDENTIALS=Last stored provisioning credentials
plugin.provisioning.REMOVE_CREDENTIALS_MESSAGE=Are you sure you want to remove provisioning 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}, and it 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.LANG=Language
plugin.spellcheck.EDIT_PERSONAL_DICT=Edit
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