aboutsummaryrefslogtreecommitdiffstats
path: root/resources/languages/resources.properties
blob: f7985b4ee3d1540201e0eab3a3f17127c4a2d000 (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
# SIP Communicator, 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.sip-communicator.org/
#
# Note to translators:
# - do not edit the resources_xx.properties files directly. Your changes
#   may be lost. Go to http://translate.sip-communicator.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 SIP Communicator 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_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_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.AUTHORIZATION_ACCEPTED=contact has accepted your authorization request.
service.gui.AUTHENTICATION_FAILED=Authentication failed. The password you entered is not valid.
service.gui.AUTHENTICATION_REQUESTED=Authentication requested
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.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_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.CANCEL=&Cancel
service.gui.CHAT=Chat
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_NICKNAME=Change nickname...
service.gui.CHANGE_NICKNAME_LABEL=In the field below, you can enter your new nickname.
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.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.CONNECTING=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=Contact name
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_TYPING_STATE_STALE=typing state not updated
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
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.DIALPAD=Dialpad
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.DURATION=duration
service.gui.EDIT=&Edit
service.gui.EMPTY_HISTORY=&Empty history
service.gui.ENABLE_TYPING_NOTIFICATIONS=Enable &typing notifications
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_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.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.IDENTIFIER=Identifier
service.gui.IGNORE=&Ignore
service.gui.INSERT_SMILEY=Insert smiley
service.gui.INCOMING_CALL=Incoming call received from: {0}
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.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.LOGIN=&Login
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@sip-communicator.dev.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.LOGIN_WINDOW_TITLE=Login {0}
service.gui.LOGOFF_NOT_SUCCEEDED=An error occurred while logging off with the following account: User name: {0}, Server name: {1}.
service.gui.ME=me
service.gui.MEMBER=member
service.gui.MESSAGE=Message:
service.gui.MISSED_CALLS_TOOL_TIP=You have 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 this contact 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.sip-communicator.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.NETWORK=Network
service.gui.NETWORK_FAILURE=Network failure
service.gui.NEXT=&Next
service.gui.NEXT_TOOLTIP=Browse more recent conversations
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_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_MESSAGE=No message
service.gui.NO_GROUP_CHAT_ACCOUNT_AVAILABLE=No accounts, supporting multi user chat found. Check sip-communicator.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.NO_ONLINE_TEL_PROTOCOL_ACCOUNT=At least one online {0} account is needed in order to make a call. Please login to one of your {0} accounts and try again.
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.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.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.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_GROUP=&Remove group
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.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.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_AUTHORITY_REALM=The {0} server has requested your authentication.
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.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_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.SOUND_OFF=Turn sound off
service.gui.SOUND_ON=Turn sound on
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.SUBJECT=Subject
service.gui.SUMMARY=Summary
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.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 the name of your account.
service.gui.ACCOUNT_CREATION_FAILED=We failed to create your account due to the following error: {0}
service.gui.UNKNOWN=Unknown user
service.gui.UNREGISTERED_MESSAGE=Unable to connect the following account: User name: {0}, Server name: {1}. You are currently offline.
service.gui.VIEW=&View
service.gui.VIEW_HISTORY=View &history
service.gui.VIEW_SMILEYS=View &smileys
service.gui.VIEW_STYLEBAR=View style &bar
service.gui.VIEW_TOOLBAR=View &toolbar
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
service.gui.RECORD_BUTTON_TOOL_TIP=Toggle Record
service.gui.LOCAL_VIDEO_BUTTON_TOOL_TIP=Toggle 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.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 <br>to {1}:{2}.<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_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 icon ...
service.gui.avatar.CLEAR_RECENT=Clear recent pictures
service.gui.avatar.RECENT_ICONS=Recent icons:
# 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=Image picker
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=SIP Communicator 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

# 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

# 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-2009 Copyright \
          <b>sip-communicator.org</b>. All rights reserved. Visit \
          <a href="http://sip-communicator.org">http://sip-communicator.org</a>.\
          </font></DIV>
plugin.branding.LICENSE=<DIV color={0}>The <b>SIP Communicator</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.PORT=Port
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

# gibberish accregwizz
plugin.gibberishaccregwizz.PROTOCOL_NAME=Gibberish
plugin.gibberishaccregwizz.PROTOCOL_DESCRIPTION=A SIP Communicator 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.PORT=Port:
plugin.ircaccregwizz.IRC_SERVER=Server

# jabber accregwizz
plugin.jabberaccregwizz.PROTOCOL_NAME=JABBER
plugin.jabberaccregwizz.PROTOCOL_DESCRIPTION=The Jabber protocol
plugin.jabberaccregwizz.USERNAME=Jabber 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.PORT=Port
plugin.jabberaccregwizz.ENABLE_KEEP_ALIVE=Enable keep alive
plugin.jabberaccregwizz.ENABLE_GMAIL_NOTIFICATIONS=Enable GMail notifications for new messages
plugin.jabberaccregwizz.NEW_ACCOUNT_TITLE=Jabber new account registration
plugin.jabberaccregwizz.REGISTER_NEW_ACCOUNT_TEXT=In case you don't have a Jabber account, click on this button to create a new one.
plugin.jabberaccregwizz.CHOOSE_SERVER_TITLE=Jabber 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.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=The two entered password aren't the same.
plugin.jabberaccregwizz.OVERRIDE_SERVER_DEFAULT_OPTIONS=Override server default options
plugin.jabberaccregwizz.ADVANCED_OPTIONS=Advanced 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.IP_ADDRESS=IP Address
plugin.jabberaccregwizz.ADD_STUN_SERVER=Add 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.

# 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 SIP Communicator !
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.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.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.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=XCAP Options
plugin.sipaccregwizz.XCAP_ENABLE=Enable XCAP stored contacts
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

# skin manager
plugin.skinmanager.INSTALL=Install
plugin.skinmanager.UNINSTALL=Uninstall
plugin.skinmanager.SKINS=Skins
plugin.skinmanager.URL=Url
plugin.skinmanager.CHOOSE_FILE=Select Zip
plugin.skinmanager.NEW=New

# 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 Update
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, 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

# 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.PLUGIN_NAME=Keybindings

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

# 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.TITLE=ZRTP
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

# 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.TITLE=Media
impl.media.configform.UP=&Up
impl.media.configform.VIDEO=&Camera:

impl.neomedia.configform.AUDIO=Audio
impl.neomedia.configform.VIDEO=Video
# 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=Accounts with 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=OTR
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.authbuddydialog.HELP_URI=http://www.sip-communicator.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.replacement.sources.METACAFE=Metacafe
plugin.chatconfig.replacement.sources.HULU=Hulu
plugin.chatconfig.replacement.sources.DAILYMOTION=DailyMotion
plugin.chatconfig.replacement.sources.DIRECTIMAGE=Direct Image Link
plugin.chatconfig.replacement.sources.FLICKR=Flickr Images
plugin.chatconfig.replacement.sources.TWITPIC=Twitpic
plugin.chatconfig.replacement.sources.VBOX7=Vbox7
plugin.chatconfig.replacement.sources.VIMEO=Vimeo
plugin.chatconfig.replacement.sources.YOUTUBE=Youtube
plugin.chatconfig.replacement.sources.BLIPTV=Blip.tv
plugin.chatconfig.replacement.sources.VIDDLER=Viddler