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
|
#muuid {144e80a2-d198-428b-acbe-9d55dacc7fde}
;============================================================
; File: Jabber.dll
; Plugin: Jabber protocol
; Version: 0.11.0.4
; Authors: George Hazan, Maxim Mluhov, Victor Pavlychko, Artem Shpynov, Michael Stepura
;============================================================
[Jabber (XMPP) protocol support for Miranda NG.]
;file \protocols\JabberG\res\jabber.rc
[Edit Note]
[Tags:]
[Cancel]
[Type:]
[User:]
[Domain/Server:]
[Password:]
[Save password]
[Resource:]
[Register new user]
[Use custom connection host and port:]
[Use Domain Login]
[Go]
[Search service]
[Roster Editor]
[View and modify your server-side contact list.]
[Download]
[Upload]
[Import from file]
[Export to file]
[Username:]
[Change password]
[Priority:]
[Use hostname as resource]
[List of public servers]
[Port:]
[Use SSL]
[Use TLS]
[Unregister]
[Expert]
[Manually specify connection host]
[Host:]
[Keep connection alive]
[Automatically delete contacts not in my roster]
[User directory:]
[Language for human-readable resources:]
[File Transfer]
[Allow file sending through direct peer-to-peer connection]
[Specify external address:]
[Allow file sending through bytestream proxy server:]
[Miscellaneous]
[Hint:]
[Try to uncheck all checkmarks above if you're experiencing troubles with sending files. But it can cause problems with transfer of large files.]
[Jabber Account Registration]
[Jabber Form]
[Instruction:]
[Submit]
[Next]
[Back]
[Complete]
[Jabber Password]
[Remember password for this session]
[Save password permanently]
[Address1:]
[Address2:]
[City:]
[State:]
[ZIP:]
[Country:]
[Full name:]
[Nickname:]
[First name:]
[Middle:]
[Last name:]
[Date of birth:]
[YYYY-MM-DD]
[Gender:]
[Occupation:]
[Homepage:]
[Company:]
[Department:]
[Title:]
[E-mail:]
[Phone:]
[Jabber vCard: Add Email Address]
[Email address:]
[Home]
[Work]
[Internet]
[Jabber vCard: Add Phone Number]
[Phone number:]
[Voice]
[Fax]
[Pager]
[Text/Messaging]
[Cellular]
[Video]
[Modem]
[Load]
[Save]
[Delete]
[Description:]
[Change Password]
[Current Password:]
[New Password:]
[Confirm New Password:]
[Jabber Multi-User Conference]
[Create or join existing conference room.]
[Conference server:]
[Room:]
[Recently visited chatrooms:]
[Bookmarks]
[JID List]
[Apply Filter]
[Reset Filter]
[Send group chat invitation]
[Other JID:]
[Add]
[Invitation reason:]
[&Invite]
[Incoming group chat invitation]
[You are invited to conference room by]
[with following reason:]
[&Accept]
[Server side bookmarks]
[Store conference rooms and web links on server.]
[Remove]
[Edit]
[Close]
[Bookmark Details]
[Bookmark Type]
[Conference]
[Transport]
[URL]
[Auto-join (Automatically join Bookmarks must be enabled in Miranda options)]
[Room JID/ URL:]
[Bookmark Name:]
[Privacy Lists]
[Flexible way to configure visibility and more.]
[Lists:]
[Rules:]
[Simple Mode]
[Advanced Mode]
[Add list... (Ins)]
[Activate (Space)]
[Set as default (Ctrl+Space)]
[Remove list (Del)]
[Add rule (Ins)]
[Edit rule... (F2)]
[Move rule up (Alt+Up)]
[Move rule down (Alt+Down)]
[Remove rule (Del)]
[Privacy rule]
[If:]
[Then:]
[following stanza types:]
[Messages]
[Queries]
[Incoming presence]
[Outgoing presence]
[New privacy list name:]
[Enter the name of the new list:]
[Service Discovery]
[View as tree]
[View as list]
[Favorites]
[Refresh]
[JID:]
[Node:]
[Account type:]
[Login server:]
[Register account now]
[Jabber Account Information:]
[Member Information]
[Role:]
[Set role]
[Affiliation:]
[Set affiliation]
[Status message:]
[Chat options]
[Alternate nick:]
[Custom messages]
[Quit:]
[Slap:]
[Authorization request]
[Accept or reject incoming request]
[Someone (maybe you) has requested the following file:]
[Request was sent from JID:]
[The transaction identifier is:]
[Request method is:]
[If you wish to confirm this request, please click authorize. Otherwise, press deny to reject it.]
[Authorize]
[Deny]
[Dialog]
[Jabber Notebook]
[Store notes on server and access them from anywhere.]
[Bots Challenge Test]
[XML Console]
[Reset log]
[Send]
;file \protocols\JabberG\src\jabber.cpp
[Jabber Link Protocol]
[Frame title]
[Frame text]
[Fatal error, image services not found. Jabber Protocol will be disabled.]
[Jabber Activity]
[Jabber Mood]
;file \protocols\JabberG\src\jabber_adhoc.cpp
[Error %s %s]
[Select Command]
[Not supported]
[Done]
[In progress. Please Wait...]
[Execute]
[Requesting command list. Please wait...]
[Jabber Ad-Hoc commands at %s]
[Sending Ad-Hoc command to %s]
;file \protocols\JabberG\src\jabber_agent.cpp
[Jabber Agent Registration]
[No message]
[Register]
[Please wait...]
;file \protocols\JabberG\src\jabber_bookmarks.cpp
[Bookmark Name]
[Address (JID or URL)]
[Nickname]
[Conferences]
[Links]
;file \protocols\JabberG\src\jabber_byte.cpp
[Bytestream Proxy not available]
;file \protocols\JabberG\src\jabber_caps.cpp
[Supports Service Discovery info]
[Supports Service Discovery items list]
[Can inform about its Jabber capabilities]
[Supports stream initiation (e.g., for filetransfers)]
[Supports stream initiation for file transfers]
[Supports file transfers via SOCKS5 Bytestreams]
[Supports file transfers via In-Band Bytestreams]
[Supports file transfers via Out-of-Band Bytestreams]
[Supports execution of Ad-Hoc commands]
[Supports in-band registration]
[Supports multi-user chat]
[Can report chat state in a chat session]
[Can report information about the last activity of the user]
[Can report own version information]
[Can report local time of the user]
[Can send and receive ping requests]
[Supports data forms]
[Can request and respond to events relating to the delivery, display, and composition of messages]
[Supports vCard]
[Supports iq-based avatars]
[Supports XHTML formatting of chat messages]
[Supports Jabber Browsing]
[Can negotiate options for specific features]
[Can request advanced processing of message stanzas]
[Can report information about user moods]
[Receives information about user moods]
[Supports generic publish-subscribe functionality]
[Supports SecureIM plugin for Miranda NG]
[Supports OTR (Off-the-Record Messaging)]
[Supports New_GPG plugin for Miranda NG]
[Blocks packets from other users/group chats using Privacy lists]
[Supports Message Receipts]
[Can report information about the music to which a user is listening]
[Receives information about the music to which a user is listening]
[Supports private XML Storage (for bookmarks and other)]
[Supports attention requests ('nudge')]
[Supports chat history retrieving]
[Supports chat history management]
[Can report information about user activity]
[Receives information about user activity]
[Supports Miranda NG notes extension]
[Supports Jingle]
[Supports Roster Exchange]
[Supports direct chat invitations (XEP-0249)]
[Receives information about OMEMO devices]
;file \protocols\JabberG\src\jabber_captcha.cpp
[Enter the text you see]
;file \protocols\JabberG\src\jabber_chat.cpp
[None]
[Member]
[Admin]
[Owner]
[Visitor]
[Participant]
[Moderator]
[Visitors]
[Participants]
[Moderators]
[Owners]
[User %s is now banned.]
[User %s changed status to %s with message: %s]
[User %s changed status to %s]
[Room configuration was changed.]
[Outcast]
[Affiliation of %s was changed to '%s'.]
[Role of %s was changed to '%s'.]
[because room is now members-only]
[user banned]
[Change &nickname]
[&Invite a user]
[&Roles]
[&Participant list]
[&Moderator list]
[&Affiliations]
[&Member list]
[&Admin list]
[&Owner list]
[Outcast list (&ban)]
[&Room options]
[View/change &topic]
[Add to &bookmarks]
[&Configure...]
[&Destroy room]
[Lin&ks]
[Copy room &JID]
[Copy room topic]
[&Send presence]
[Online]
[Away]
[Not available]
[Do not disturb]
[Free for chat]
[&Leave chat session]
[&Slap]
[&User details]
[Member &info]
[User &details]
[&Add to roster]
[&Copy to clipboard]
[Invite to room]
[Set &role]
[&Visitor]
[&Participant]
[&Moderator]
[Set &affiliation]
[&None]
[&Member]
[&Admin]
[&Owner]
[Outcast (&ban)]
[&Kick]
[Copy &nickname]
[Copy real &JID]
[Copy in-room JID]
[Real &JID: %s]
[Invite Users to\n%s]
[%s (not on roster)]
[%s from\n%s]
[Real JID not available]
[Reason to kick %s]
[Reason to ban %s]
[Invite %s to %s]
[Set topic for %s]
[Change nickname in %s]
[Reason to destroy %s]
;file \protocols\JabberG\src\jabber_console.cpp
[Can't send data while you are offline.]
[Jabber Error]
[Outgoing XML parsing error]
;file \protocols\JabberG\src\jabber_disco.cpp
[request timeout.]
[Node hierarchy]
[Node]
[Navigate]
[Browse all favorites]
[Remove all favorites]
[Registered transports]
[Browse local transports]
[Browse chatrooms]
[Contact Menu...]
[View vCard]
[Join chatroom]
[Refresh Info]
[Refresh Children]
[Add to favorites]
[Add to roster]
[Bookmark chatroom]
[Add search directory]
[Use this proxy]
[Commands...]
[Logon]
[Logoff]
[Copy JID]
[Copy node name]
[Copy node information]
;file \protocols\JabberG\src\jabber_disco.h
[Identities]
[category]
[type]
[Category]
[Type]
[Supported features]
[Info request error]
[Items request error]
;file \protocols\JabberG\src\jabber_filterlist.cpp
[Set filter...]
;file \protocols\JabberG\src\jabber_groupchat.cpp
[Failed to retrieve room list from server.]
[No rooms available on server.]
[Room list request timed out.]
[<no nick>]
[Loading...]
[Please wait for room list to download.]
[Please specify group chat directory first.]
[Bookmarks...]
[Change nickname in <%s>]
[has set the subject to:]
[Group chat invitation to\n%s]
;file \protocols\JabberG\src\jabber_icolib.cpp
[Status icons]
[transport]
[Notes]
[Multi-User Conference]
[Agents list]
[Transports]
[Personal vCard]
[Convert to room]
[Login/logout]
[Resolve nicks]
[Send note]
[AdHoc Command]
[OpenID Request]
[Discovery succeeded]
[Discovery failed]
[Discovery in progress]
[Apply filter]
[Reset filter]
[Navigate home]
[Refresh node]
[Browse node]
[RSS service]
[Server]
[Storage service]
[Weather service]
[Generic privacy list]
[Active privacy list]
[Default privacy list]
[Move up]
[Move down]
[Allow Messages]
[Allow Presences (in)]
[Allow Presences (out)]
[Allow Queries]
[Deny Messages]
[Deny Presences (in)]
[Deny Presences (out)]
[Deny Queries]
[Protocols]
[Dialogs]
[Discovery]
[Privacy]
;file \protocols\JabberG\src\jabber_iqid.cpp
[Authentication failed for %s.]
[Jabber Authentication]
[Registration successful]
[Password is successfully changed. Don't forget to update your password in the Jabber protocol option.]
[Password cannot be changed.]
[Jabber Bookmarks Error]
;file \protocols\JabberG\src\jabber_iqid_muc.cpp
[%s, %d items (%s)]
[Voice List]
[Member List]
[Moderator List]
[Ban List]
[Admin List]
[Owner List]
[Reason to ban]
[Removing %s?]
;file \protocols\JabberG\src\jabber_iq_handlers.cpp
[Http authentication request received]
;file \protocols\JabberG\src\jabber_menu.cpp
[Jabber account chooser]
[Request authorization]
[Grant authorization]
[Revoke authorization]
[Convert]
[Add to Bookmarks]
[Commands]
[Send Note]
[Send Presence]
[Jabber Resource]
[Last Active]
[Server's Choice]
[&Convert to Contact]
[&Convert to Chat Room]
[Services...]
[Registered Transports]
[Local Server Transports]
[Create/Join group chat]
[Roster editor]
[Resource priority]
[Increase priority by %d]
[Decrease priority by %d]
[Resource priority [%d]]
[Join conference]
[Open bookmarks]
[Privacy lists]
[Service discovery]
[Last active (%s)]
[No activity yet, use server's choice]
[Highest priority (server's choice)]
[Status Message]
;file \protocols\JabberG\src\jabber_message_handlers.cpp
;file \protocols\JabberG\src\jabber_misc.cpp
[Chat plugin is required for conferences. Install it before chatting]
[To]
[From]
[Both]
[Errors]
;file \protocols\JabberG\src\jabber_notes.cpp
[Incoming note from %s]
[Send note to %s]
[From: %s]
[All tags]
[Notes are not saved, close this window without uploading data to server?]
[Are you sure?]
[Incoming note]
;file \protocols\JabberG\src\jabber_opt.cpp
[Afar]
[Abkhazian]
[Afrikaans]
[Akan]
[Albanian]
[Amharic]
[Arabic]
[Aragonese]
[Armenian]
[Assamese]
[Avaric]
[Avestan]
[Aymara]
[Azerbaijani]
[Bashkir]
[Bambara]
[Basque]
[Belarusian]
[Bengali]
[Bihari]
[Bislama]
[Bosnian]
[Breton]
[Bulgarian]
[Burmese]
[Catalan; Valencian]
[Chamorro]
[Chechen]
[Chinese]
[Church Slavic; Old Slavonic]
[Chuvash]
[Cornish]
[Corsican]
[Cree]
[Czech]
[Danish]
[Divehi; Dhivehi; Maldivian]
[Dutch; Flemish]
[Dzongkha]
[English]
[Esperanto]
[Estonian]
[Ewe]
[Faroese]
[Fijian]
[Finnish]
[French]
[Western Frisian]
[Fulah]
[Georgian]
[German]
[Gaelic; Scottish Gaelic]
[Irish]
[Galician]
[Manx]
[Greek, Modern (1453-)]
[Guarani]
[Gujarati]
[Haitian; Haitian Creole]
[Hausa]
[Hebrew]
[Herero]
[Hindi]
[Hiri Motu]
[Hungarian]
[Igbo]
[Icelandic]
[Ido]
[Sichuan Yi]
[Inuktitut]
[Interlingue]
[Interlingua (International Auxiliary Language Association)]
[Indonesian]
[Inupiaq]
[Italian]
[Javanese]
[Japanese]
[Kalaallisut; Greenlandic]
[Kannada]
[Kashmiri]
[Kanuri]
[Kazakh]
[Central Khmer]
[Kikuyu; Gikuyu]
[Kinyarwanda]
[Kirghiz; Kyrgyz]
[Komi]
[Kongo]
[Korean]
[Kuanyama; Kwanyama]
[Kurdish]
[Lao]
[Latin]
[Latvian]
[Limburgan; Limburger; Limburgish]
[Lingala]
[Lithuanian]
[Luxembourgish; Letzeburgesch]
[Luba-Katanga]
[Ganda]
[Macedonian]
[Marshallese]
[Malayalam]
[Maori]
[Marathi]
[Malay]
[Malagasy]
[Maltese]
[Moldavian]
[Mongolian]
[Nauru]
[Navajo; Navaho]
[Ndebele, South; South Ndebele]
[Ndebele, North; North Ndebele]
[Ndonga]
[Nepali]
[Norwegian Nynorsk; Nynorsk, Norwegian]
[Bokmaal, Norwegian; Norwegian Bokmaal]
[Norwegian]
[Chichewa; Chewa; Nyanja]
[Occitan (post 1500); Provencal]
[Ojibwa]
[Oriya]
[Oromo]
[Ossetian; Ossetic]
[Panjabi; Punjabi]
[Persian]
[Pali]
[Polish]
[Portuguese]
[Pushto]
[Quechua]
[Romansh]
[Romanian]
[Rundi]
[Russian]
[Sango]
[Sanskrit]
[Serbian]
[Croatian]
[Sinhala; Sinhalese]
[Slovak]
[Slovenian]
[Northern Sami]
[Samoan]
[Shona]
[Sindhi]
[Somali]
[Sotho, Southern]
[Spanish; Castilian]
[Sardinian]
[Swati]
[Sundanese]
[Swahili]
[Swedish]
[Tahitian]
[Tamil]
[Tatar]
[Telugu]
[Tajik]
[Tagalog]
[Thai]
[Tibetan]
[Tigrinya]
[Tonga (Tonga Islands)]
[Tswana]
[Tsonga]
[Turkmen]
[Turkish]
[Twi]
[Uighur; Uyghur]
[Ukrainian]
[Urdu]
[Uzbek]
[Venda]
[Vietnamese]
[Volapuk]
[Welsh]
[Walloon]
[Wolof]
[Xhosa]
[Yiddish]
[Yoruba]
[Zhuang; Chuang]
[Zulu]
[These changes will take effect the next time you connect to the Jabber network.]
[Jabber Protocol Option]
[This operation will kill your account, roster and all other information stored at the server. Are you ready to do that?]
[Account removal warning]
[You can change your password only when you are online]
[You must be online]
[Messaging]
[Send messages slower, but with full acknowledgment]
[Enable avatars]
[Log chat state changes]
[Log presence subscription state changes]
[Log presence errors]
[Enable user moods receiving]
[Enable user tunes receiving]
[Enable user activity receiving]
[Receive notes]
[Automatically save received notes]
[Enable server-side history]
[Server options]
[Disable SASL authentication (for old servers)]
[Enable stream compression (if possible)]
[Other]
[Enable remote controlling (from another resource of same JID only)]
[Show transport agents on contact list]
[Automatically add contact when accept authorization]
[Automatically accept authorization requests]
[Fix incorrect timestamps in incoming messages]
[Disable frame]
[Enable XMPP link processing (requires AssocMgr)]
[Keep contacts assigned to local groups (ignore roster group)]
[Security]
[Allow servers to request version (XEP-0092)]
[Show information about operating system in version replies]
[Accept only in band incoming filetransfers (don't disclose own IP)]
[Accept HTTP Authentication requests (XEP-0070)]
[Use OMEMO encryption for messages if possible (placeholder)]
[General]
[Autoaccept multiuser chat invitations]
[Automatically join bookmarks on login]
[Automatically join conferences on login]
[Hide conference windows at startup]
[Do not show multiuser chat invitations]
[Log events]
[Ban notifications]
[Room configuration changes]
[Affiliation changes]
[Role changes]
[Status changes]
[Don't notify history messages]
[Group]
[Subscription]
[Uploading...]
[Downloading...]
[XML for MS Excel (UTF-8 encoded)]
[Connecting...]
[Network]
[Account]
[Advanced]
[Public XMPP Network]
[Secure XMPP Network]
[Secure XMPP Network (old style)]
[Google Talk!]
[LiveJournal Talk]
[League Of Legends (EU Nordic)]
[League Of Legends (EU West)]
[League Of Legends (Oceania)]
[League Of Legends (US)]
[Odnoklassniki]
[Yandex]
[Some changes will take effect the next time you connect to the Jabber network.]
;file \protocols\JabberG\src\jabber_password.cpp
[Set New Password for %s@%S]
[New password does not match.]
[Current password is incorrect.]
;file \protocols\JabberG\src\jabber_privacy.cpp
[Sending request, please wait...]
[Warning: privacy lists were changed on server.]
[Error occurred while applying changes]
[Privacy lists successfully saved]
[Privacy list %s set as active]
[Active privacy list successfully declined]
[Error occurred while setting active list]
[Privacy list %s set as default]
[Default privacy list successfully declined]
[Error occurred while setting default list]
[Allow]
[Simple mode]
[Advanced mode]
[Add JID]
[Activate]
[Set default]
[Edit rule]
[Add rule]
[Delete rule]
[Move rule up]
[Move rule down]
[Add list...]
[Remove list]
[** Default **]
[** Subscription: both **]
[** Subscription: to **]
[** Subscription: from **]
[** Subscription: none **]
[<none>]
[Message]
[Presence (in)]
[Presence (out)]
[Query]
[List has no rules, empty lists will be deleted then changes applied]
[allow ]
[deny ]
[all.]
[messages]
[ and ]
[incoming presences]
[outgoing presences]
[queries]
[Else ]
[If Jabber ID is ']
[ (nickname: ]
[If group is ']
[If subscription is ']
[then ]
[ (act., def.)]
[ (active)]
[ (default)]
[Ready.]
[Privacy lists are not saved, discard any changes and exit?]
[Please save list before activating]
[First, save the list]
[Please save list before you make it the default list]
[No list selected]
[Can't remove active or default list]
[Sorry]
[Unable to save list because you are currently offline.]
[List Editor...]
;file \protocols\JabberG\src\jabber_proto.cpp
[No compatible file transfer mechanism exists]
[Protocol is offline or no JID]
;file \protocols\JabberG\src\jabber_rc.cpp
[Command completed successfully]
[Error occurred during processing command]
[Set status]
[Set options]
[Forward unread messages]
[Leave group chats]
[Lock workstation]
[Quit Miranda NG]
[Change Status]
[Choose the status and status message]
[Status]
[Extended away (Not available)]
[Invisible]
[Offline]
[Priority]
[Status message]
[Change global status]
[Set Options]
[Set the desired options]
[Automatically Accept File Transfers]
[Play sounds]
[Disable remote controlling (check twice what you are doing)]
[There is no messages to forward]
[Forward options]
[%d message(s) to be forwarded]
[Mark messages as read]
[%d message(s) forwarded]
[Workstation successfully locked]
[Error %d occurred during workstation lock]
[Confirmation needed]
[Please confirm Miranda NG shutdown]
[There is no group chats to leave]
[Choose the group chats you want to leave]
;file \protocols\JabberG\src\jabber_search.cpp
[Error %s %s\r\nPlease select other server]
[Error: unknown reply received\r\nPlease select other server]
[Error %s %s\r\nTry to specify more detailed]
[Search error]
[Select/type search service URL above and press <Go>]
[Please wait...\r\nConnecting search server...]
[You have to be connected to server]
;file \protocols\JabberG\src\jabber_svc.cpp
[closed chat session]
[sent subscription request]
[approved subscription request]
[declined subscription]
[sent error presence]
[sent unknown presence type]
[Nick:]
[Status:]
[Real JID:]
;file \protocols\JabberG\src\jabber_thread.cpp
[Enter password for %s]
[Error: Not enough memory]
[Error: Cannot connect to the server]
[Error: Connection lost]
[Requesting registration instruction...]
[Authentication failed for %s@%S.]
[Message redirected from: %s\r\n%s]
[Sending registration information...]
;file \protocols\JabberG\src\jabber_userinfo.cpp
[Resource]
[<not specified>]
[Software]
[Version]
[System]
[unknown]
[Idle since]
[Client capabilities]
[Software information]
[Operating system]
[Operating system version]
[Software version]
[Miranda core version]
[Mood]
[Activity]
[Tune]
[both]
[to]
[from]
[none]
[Last logoff time]
[Uptime]
[Logoff message]
[<no information available>]
[Last active resource]
[Please switch online to see more details.]
[Copy]
[Copy only this value]
[format]
[Unknown format]
[<Photo not available while offline>]
[<No photo>]
[Photo]
;file \protocols\JabberG\src\jabber_util.cpp
[Redirect]
[Bad request]
[Unauthorized]
[Payment required]
[Forbidden]
[Not found]
[Not allowed]
[Not acceptable]
[Registration required]
[Request timeout]
[Conflict]
[Internal server error]
[Not implemented]
[Remote server error]
[Service unavailable]
[Remote server timeout]
[Unknown error]
[Error]
[Unknown error message]
[Advanced Status]
[Set mood...]
[Set activity...]
;file \protocols\JabberG\src\jabber_vcard.cpp
[Male]
[Female]
[Only JPG, GIF, and BMP image files smaller than 40 KB are supported.]
[Jabber vCard]
[Jabber vCard: Edit Email Address]
[Jabber vCard: Edit Phone Number]
[Contacts]
[Note]
;file \protocols\JabberG\src\jabber_ws.cpp
[%s connection]
;file \protocols\JabberG\src\jabber_xstatus.cpp
[<advanced status slot>]
[Afraid]
[Amazed]
[Amorous]
[Angry]
[Annoyed]
[Anxious]
[Aroused]
[Ashamed]
[Bored]
[Brave]
[Calm]
[Cautious]
[Cold]
[Confident]
[Confused]
[Contemplative]
[Contented]
[Cranky]
[Crazy]
[Creative]
[Curious]
[Dejected]
[Depressed]
[Disappointed]
[Disgusted]
[Dismayed]
[Distracted]
[Embarrassed]
[Envious]
[Excited]
[Flirtatious]
[Frustrated]
[Grateful]
[Grieving]
[Grumpy]
[Guilty]
[Happy]
[Hopeful]
[Hot]
[Humbled]
[Humiliated]
[Hungry]
[Hurt]
[Impressed]
[In awe]
[In love]
[Indignant]
[Interested]
[Intoxicated]
[Invincible]
[Jealous]
[Lonely]
[Lost]
[Lucky]
[Mean]
[Moody]
[Nervous]
[Neutral]
[Offended]
[Outraged]
[Playful]
[Proud]
[Relaxed]
[Relieved]
[Remorseful]
[Restless]
[Sad]
[Sarcastic]
[Satisfied]
[Serious]
[Shocked]
[Shy]
[Sick]
[Sleepy]
[Spontaneous]
[Stressed]
[Strong]
[Surprised]
[Thankful]
[Thirsty]
[Tired]
[Undefined]
[Weak]
[Worried]
[Mood: %s]
[Set Mood]
[Doing chores]
[buying groceries]
[cleaning]
[cooking]
[doing maintenance]
[doing the dishes]
[doing the laundry]
[gardening]
[running an errand]
[walking the dog]
[Drinking]
[having a beer]
[having coffee]
[having tea]
[Eating]
[having a snack]
[having breakfast]
[having dinner]
[having lunch]
[Exercising]
[cycling]
[dancing]
[hiking]
[jogging]
[playing sports]
[running]
[skiing]
[swimming]
[working out]
[Grooming]
[at the spa]
[brushing teeth]
[getting a haircut]
[shaving]
[taking a bath]
[taking a shower]
[Having appointment]
[Inactive]
[day off]
[hanging out]
[hiding]
[on vacation]
[praying]
[scheduled holiday]
[sleeping]
[thinking]
[Relaxing]
[fishing]
[gaming]
[going out]
[partying]
[reading]
[rehearsing]
[shopping]
[smoking]
[socializing]
[sunbathing]
[watching TV]
[watching a movie]
[Talking]
[in real life]
[on the phone]
[on video phone]
[Traveling]
[commuting]
[driving]
[in a car]
[on a bus]
[on a plane]
[on a train]
[on a trip]
[walking]
[Working]
[coding]
[in a meeting]
[studying]
[writing]
[Activity: %s]
[Set Activity]
[Listening To]
[Moods]
[Activities]
;file \protocols\JabberG\src\stdafx.h
[I'm happy Miranda NG user. Get it at http://miranda-ng.org/.]
[/me slaps %s around a bit with a large trout]
|