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
|
#muuid {144e80a2-d198-428b-acbe-9d55dacc7fde}
;============================================================
; File: Jabber.dll
; Plugin: Jabber
; Version: 0.11.0.1
; Authors:
;============================================================
;file \protocols\JabberG\res\jabber.rc
[Edit Note]
[Tags:]
[OK]
[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]
[Roster editor\nView and modify your server-side contact list.]
[Download]
[Upload]
[Import from file]
[Export to file]
[Jabber]
[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]
[Progress1]
[Jabber Agents]
[Register/Search Jabber Agents]
[Jabber server:]
[Browse]
[Register...]
[Browse/Join chat room...]
[Search...]
[Registered Jabber Transports]
[Log on]
[Log off]
[Register with a new service...]
[Close]
[Command]
[Jabber Form]
[Instruction:]
[Submit]
[Next]
[Back]
[Complete]
[Jabber Password]
[Remember password for this session]
[Save password permanently]
[Data form test]
[Address1:]
[Address2:]
[City:]
[State:]
[ZIP:]
[Country:]
[Full name:]
[Nick name:]
[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]
[X400]
[Jabber vCard: Add Phone Number]
[Phone number:]
[Voice]
[Fax]
[Pager]
[Text/Messaging]
[Cellular]
[Video]
[BBS]
[Modem]
[ISDN]
[PCS]
[Load]
[Save]
[Delete]
[Description:]
[Change Password]
[Current Password:]
[New Password:]
[Confirm New Password:]
[Jabber Multi-User Conference]
[Conference server:]
[Create or Join Groupchat]
[Jabber Multi-User Conference\nCreate or join existing conference room.]
[Room:]
[Recently visited chatrooms:]
[Bookmarks]
[JID List]
[Apply Filter]
[Reset Filter]
[Jabber Agent Registration]
[JID:]
[Register]
[Invite Users]
[<room jid>\nSend groupchat invitation.]
[Other JID:]
[Add]
[Invitation reason:]
[&Invite]
[Groupchat Invitation]
[<room jid>\nIncoming groupchat invitation.]
[You are invited to conference room by]
[with following reason:]
[Nickname:]
[&Accept]
[Jabber Bookmarks]
[Server side bookmarks\nStore conference rooms and web links on server.]
[Remove]
[Edit]
[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]
[Privacy Lists\nFlexible 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]
[Favourites]
[Refresh]
[Node:]
[Change %s Message]
[Closing in %d]
[Account type:]
[Login server:]
[Register account now]
[Jabber Account Information:]
[Member Information]
[Member Information\n<user id>]
[Role:]
[Set role]
[Affiliation:]
[Set affiliation]
[Status message:]
[Chat options]
[Alternate nick:]
[Custom messages]
[Quit:]
[Slap:]
[Authorization Request]
[HTTP Authorization\nAccept 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]
[Jabber notebook\nStore 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]
;file \protocols\JabberG\src\jabber.h
[I'm happy Miranda NG user. Get it at http://miranda-ng.org/.]
[/me slaps %s around a bit with a large trout]
;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]
[Sending Ad-Hoc command to]
;file \protocols\JabberG\src\jabber_agent.cpp
[No message]
[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_captcha.cpp
[Enter the text you see]
;file \protocols\JabberG\src\jabber_chat.cpp
[None]
[Member]
[Admin]
[Owner]
[Visitor]
[Participant]
[Moderator]
[User %s in 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]
[NA]
[DND]
[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]
[Send groupchat invitation.]
[not on roster]
[Member Info:]
[from]
[Real JID not available]
[Reason to kick]
[Reason to ban]
[Invite %s to %s]
[Set topic for]
[Change nickname in]
[Reason to destroy]
;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]
;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_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 groupchat directory first.]
[Bookmarks...]
[has set the subject to:]
[Incoming groupchat invitation.]
;file \protocols\JabberG\src\jabber_icolib.cpp
[transport]
[Notes]
[Multi-User Conference]
[Agents list]
[Transports]
[Personal vCard]
[Request authorization]
[Grant authorization]
[Revoke authorization]
[Convert to room]
[Add to roster]
[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]
[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]
[Removing]
;file \protocols\JabberG\src\jabber_iq_handlers.cpp
[Http authentication request received]
;file \protocols\JabberG\src\jabber_menu.cpp
[Convert]
[Add to Bookmarks]
[Commands]
[Send Note]
[Send Presence]
[Jabber Resource]
[Last Active]
[Server's Choice]
[&Convert to Contact]
[&Convert to Chat Room]
[Options...]
[Services...]
[Registered Transports]
[Local Server Transports]
[Browse Chatrooms]
[Create/Join groupchat]
[Roster editor]
[Resource priority]
[Resource priority [%d]]
[Join conference]
[Open bookmarks]
[Service discovery]
[Last active]
[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]
[Confirm password]
[Passwords do not match.]
[This operation will kill your account, roster and all another 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 acknowledgement]
[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 Association Manager)]
[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)]
[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]
[Filter history messages]
[JID]
[Nick Name]
[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]
[Facebook Chat]
[Vkontakte]
[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]
[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]
[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 **]
[** Subsription: both **]
[** Subsription: to **]
[** Subsription: from **]
[** Subsription: none **]
[<none>]
[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]
[Unable to save list because you are currently offline.]
[List Editor...]
;file \protocols\JabberG\src\jabber_proto.cpp
[No compatible file transfer machanism exist]
[Protocol is offline or no jid]
;file \protocols\JabberG\src\jabber_rc.cpp
[Command completed successfully]
[Error occured during processing command]
[Set status]
[Set options]
[Forward unread messages]
[Leave groupchats]
[Lock workstation]
[Quit Miranda NG]
[Change Status]
[Choose the status and status message]
[Status]
[Extended Away (N/A)]
[Do Not Disturb]
[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 occured during workstation lock]
[Confirmation needed]
[Please confirm Miranda NG shutdown]
[There is no groupchats to leave]
[Choose the groupchats you want to leave]
;file \protocols\JabberG\src\jabber_search.cpp
[Error %s %s\r\nPlease select other server]
[Error Unknown reply recieved\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]
;file \protocols\JabberG\src\jabber_thread.cpp
[Enter password for]
[Error: Not enough memory]
[Error: Cannot connect to the server]
[Error: Connection lost]
[Requesting registration instruction...]
[Message redirected from: %s\r\n%s]
[Sending registration information...]
;file \protocols\JabberG\src\jabber_userinfo.cpp
[Resource]
[Message]
[<not specified>]
[Software]
[Version]
[System]
[unknown]
[Idle since]
[Client capabilities]
[Software information]
[Operating system]
[Operating system version]
[Software version]
[Miranda NG core version]
[Unicode build]
[Yes]
[No]
[Alpha build]
[Debug build]
[Mood]
[Activity]
[Tune]
[both]
[to]
[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
[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
[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]
;file \protocols\JabberG\src\ui_utils.cpp
[Set filter...]
|