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
|
[Hot track items as mouse passes over]
[Disable drag and drop of items]
[Disable rename of items by clicking twice]
[Show selection even when list is not focused]
[Make selection highlight translucent]
[Dim idle contacts]
['Hide offline' means to hide:]
[Groups]
[Draw a line alongside group names]
[Show counts of number of contacts in a group]
[Hide group counts when there are none online]
[Sort groups alphabetically]
[Quick search in open groups only]
[Indent groups by:]
[pixels]
[Visual]
[Scroll list smoothly]
[Time:]
[milliseconds]
[Left margin:]
[Hide vertical scroll bar]
[Row height:]
[Gamma correction]
[Gray out entire list when:]
[Contact list background]
[Background color]
[Selection color]
[Use background image]
[Stretch to width]
[Stretch to height]
[Tile horizontally]
[Tile vertically]
[Scroll with text]
[Stretch proportionally]
[Use Windows colors]
[Status bar]
[Show status bar]
[Show icons]
[Show protocol names]
[Show status text]
[Right click opens status menu]
[Right click opens Miranda NG menu]
[Make sections equal width]
[Show bevels on panels]
[Show resize grip indicator]
[Ordering:]
[Contact list:]
[If window is partially covered, bring it to front]
[Window:]
[Contact list background:]
[&Main menu]
[E&xit]
[&Status]
[&Offline\tCtrl+0]
[On&line\tCtrl+1]
[&Away\tCtrl+2]
[&Not available\tCtrl+3]
[Occ&upied\tCtrl+4]
[&Do not disturb\tCtrl+5]
[&Free for chat\tCtrl+6]
[&Invisible\tCtrl+7]
[On the &phone\tCtrl+8]
[Out to &lunch\tCtrl+9]
[Send file(s)]
[Cancel]
[To:]
[File(s):]
[&Choose again...]
[Total size:]
[Description:]
[&User menu]
[Incoming file transfer]
[A&ccept]
[&Decline]
[From:]
[Date:]
[Files:]
[Save to:]
[&Open...]
[Open &folder]
[Transfer completed, open file(s).]
[No data transferred]
[File already exists]
[Resume]
[Resume all]
[Overwrite]
[Overwrite all]
[Save as...]
[Auto rename]
[Skip]
[Cancel transfer]
[You are about to receive the file]
[Existing file]
[Size:]
[Last modified:]
[Type:]
[Open file]
[Open folder]
[File properties]
[File being received]
[File transfers]
[Clear completed]
[Close]
[Receiving files]
[Received files folder:]
[Variables allowed: %userid%, %nick%, %proto%, %miranda_path%, %userprofile%]
[Auto-accept incoming files from people on my contact list]
[Minimize the file transfer window]
[Close window when transfer completes]
[Clear completed transfers on window closing]
[Virus scanner]
[Scan files:]
[Never, do not use virus scanning]
[When all files have been downloaded]
[As each file finishes downloading]
[Command line:]
[%f will be replaced by the file or folder name to be scanned]
[Warn me before opening a file that has not been scanned]
[If incoming files already exist]
[Ask me]
[Rename (append " (1)", etc.)]
[You will always be asked about files from people not on your contact list]
[About Miranda NG]
[Credits >]
[Become idle if the following is left unattended:]
[Become idle if the screen saver is active]
[Become idle if the computer is locked]
[Become idle if a terminal session is disconnected]
[Do not let protocols report any idle information]
[minute(s)]
[for]
[Change my status mode to:]
[Do not set status back to online when returning from idle]
[Idle options]
[Become idle if application full screen]
[Disable sounds on idle]
[Become idle if computer is left unattended for:]
[Idle (auto-away):]
[Automatically popup window when:]
[In background]
[Close the message window on send]
[Minimize the message window on send]
[Use the contact's status icon as the window icon]
[Save the window size and location individually for each contact]
[Cascade new windows]
[Show 'Send' button]
[Show username on top row]
[Show toolbar buttons on top row]
[Send message on double 'Enter']
[Send message on 'Enter']
[Show character count]
[Show warning when message has not been received after]
[Support CTRL+Up/Down in message area to show previously sent messages]
[Delete temporary contacts when closing message window]
[Enable avatar support in the message window]
[Limit avatar height to]
[Maximum number of flashes]
[Send error]
[An error has occurred. The protocol reported the following error:]
[while sending the following message:]
[Try again]
[Message session]
[&Details]
[Message window event log]
[Show names]
[Show timestamp]
[Show seconds]
[Show dates]
[Show formatting]
[Load history events]
[Load unread events only]
[Load number of previous events]
[Load previous events less than]
[minutes old]
[Send typing notifications to the following users when you are typing a message to them:]
[Show typing notifications when a user is typing a message]
[Update inactive message window icons when a user is typing]
[Show typing notification when no message dialog is open]
[Flash in the system tray and in the contact list]
[Show balloon popup]
[Save the window position for each contact]
[Message window behavior:]
[Messaging:]
[C&lear log]
[&Copy]
[Select &all]
[&Open link]
[Paste and send]
[Delete]
[Find]
[&Find next]
[Find what:]
[Message history]
[&Find...]
[Add phone number]
[Enter country, area code and phone number:]
[Or enter a full international number:]
[Phone can receive SMS text messages]
[Add e-mail address]
[%s: user details]
[View personal user details and more]
[Update now]
[Updating]
[Nickname:]
[First name:]
[Gender:]
[Last name:]
[Age:]
[E-mail:]
[Date of birth:]
[Marital status:]
[Phone:]
[Web page:]
[Past background:]
[Interests:]
[About:]
[My notes:]
[Street:]
[City:]
[State:]
[Postal code:]
[Country:]
[Spoken languages:]
[Timezone:]
[Local time:]
[Set custom time zone]
[Company:]
[Department:]
[Position:]
[Website:]
[Enter account name (for example, My Google)]
[Choose the protocol type]
[Specify the internal account name (optional)]
[Add contact]
[Send "You were added"]
[Send authorization request]
[Open contact's chat window]
[Custom name:]
[Group:]
[&Yes]
[&No]
[Contact display options]
[Instead of displaying contacts by their nickname,\ndrag to choose another order:]
[Miranda NG profile manager]
[Manage your Miranda NG profile]
[&Run]
[&Exit]
[Start in service mode with]
[Find/add contacts]
[Search:]
[E-mail address]
[Name]
[Nick:]
[First:]
[Last:]
[Advanced]
[Advanced >>]
[&Search]
[More options]
[Add to list]
[Custom]
[Here you can add contacts to your contact list]
[Configure your Miranda NG options]
[Apply]
[Switch to simple options]
[Please select a subentry from the list]
[Install database settings]
[A file containing new database settings has been placed in the Miranda NG directory.]
[Do you want to import the settings now?]
[No to all]
[&View contents]
[Security systems to prevent malicious changes are in place and you will be warned before changes that are not known to be safe.]
[Database setting change]
[Database settings are being imported from]
[This file wishes to change the setting]
[to the value]
[Do you want to allow this change?]
[&Allow all further changes to this section]
[Cancel import]
[Database import complete]
[The import has completed from]
[What do you want to do with the file now?]
[&Recycle]
[&Delete]
[&Move/Rename]
[&Leave]
[Netlib log options]
[Received bytes]
[Sent bytes]
[Additional data due to proxy communication]
[SSL traffic]
[Text dumps where available]
[Auto-detect text]
[Calling modules' names]
[Log to]
[OutputDebugString()]
[File]
[Run program when Miranda NG starts (e.g., tail -f, dbgview, etc.):]
[Run now]
[Show this dialog box when Miranda NG starts]
[Sounds]
[&Change...]
[&Preview]
[Download more sounds]
[Sound information]
[Location:]
[Name:]
[Enable sound events]
[Icons]
[Show category:]
[&Load icon set...]
[&Import icons >>]
[Download more icons]
[The following events are being ignored:]
[URLs]
[Files]
[Online notification]
[Auth requests]
[All events]
[None]
[Only the ticked contacts will be shown on the main contact list]
[Ignore]
[Added notification]
[Typing]
[Visibility]
[You are visible to this person even when in invisible mode]
[You are never visible to this person]
[Icon index]
[Icon library:]
[Drag icons to main list to assign them:]
[Import multiple]
[To main icons]
[To]
[<< &Import]
[To default status icons]
[Logging...]
[Outgoing connections]
[Use proxy server]
[Host:]
[Port:]
[(often %d)]
[Use custom login (domain login picked up automatically)]
[Username:]
[Password:]
[Resolve hostnames through proxy]
[Port range:]
[Example: 1050-1070, 2000-2010, 2500]
[Validate SSL certificates]
[Incoming connections]
[Enable UPnP port mapping]
[These changes will take effect the next time you connect to the network.]
[Please complete the following form to create a new user profile]
[Profile]
[e.g., Workplace]
[You can select a different database driver from the default, it may offer more features or abilities, if in doubt use the default.]
[e.g., dbx mmap]
[Driver]
[Problem: Unable to find any database drivers, this means you cannot create a new profile, you need to get dbx_mmap.dll]
[Download more plugins]
[Author(s):]
[Homepage:]
[Unique ID:]
[Copyright:]
[Please restart Miranda NG for your changes to take effect.]
[Fonts and colors]
[Reset]
[Export...]
[Color/background]
[Text effect]
[Text color]
[Choose font]
[Menu objects]
[Menu items]
[Protocol menus]
[Move to the main menu]
[Move to the status bar]
[Warning!\r\nThis menu object not support user defined options.]
[Insert submenu]
[Insert separator]
[Service:]
[Default]
[Set]
[Enable icons]
[Show accounts in the following order,\ndrag to choose another order:]
[Account order and visibility]
[Note: Miranda NG will have to be restarted for changes to take effect.]
[Key bindings]
[Shortcut:]
[Add]
[Remove]
[Undo changes]
[Reset to default]
[Hotkeys]
[Accounts]
[Configure your IM accounts]
[Account information:]
[Additional:]
[Configure network...]
[Get more protocols...]
[&Add...]
[&Edit]
[&Options]
[&Upgrade]
[&Remove...]
[Miranda NG is being restarted.\nPlease wait...]
[Error console]
[Error notifications]
[Headers:]
[This font is used to display main section titles or text elements.]
[Normal text:]
[This font is used to display most text elements or section bodies.]
[Minor notes:]
[This font is used to display various additional notes.]
[Welcome to Miranda NG's account manager!\nHere you can set up your IM accounts.\n\nSelect an account from the list on the left to see the available options. Alternatively, just click on the Plus sign underneath the list to set up a new IM account.]
[Event icon legend:]
[Choose events you wish to ignore:]
[Font effect]
[Effect:]
[Base color:]
[opacity:]
[Secondary color:]
[Select the extra icons to be shown in the contact list:]
[*only the first %d icons will be shown]
[You can group/ungroup icons by selecting them (CTRL+left click) and using the popup menu (right click)]
[Add to existing metacontact]
[Please select a metacontact:]
[Sort alphabetically]
[Editing]
[Contacts]
[&Remove]
[&Set as default]
[Move &up]
[Move &down]
[Send &offline]
[&Apply]
[Context menu]
[Use contact's unique ID]
[Use contact's display name]
[Contact labels]
[When I click on a sub in the popup menu...]
[Set default and open message window]
[Show subcontact context menu]
[Show user information]
[Display subcontact nickname]
[Display subcontact display name]
[Lock name to first contact]
[Current language:]
[Last modified using:]
[Locale:]
[Reload langpack]
[Download more language packs]
[Tray]
[&Hide/Show]
[Nowhere]
[&New group]
[&Hide offline users]
[Hide &offline users out here]
[Hide &empty groups]
[Disable &groups]
[Hide Miranda]
[Group]
[&New subgroup]
[&Hide offline users in here]
[&Rename group]
[&Delete group]
[&Reset to default]
[find/add]
[&Add to list]
[Send &message]
[Open in &new window]
[&Open in existing window]
[Cancel change]
[Ungroup]
[%s requests authorization]
[%u requests authorization]
[%s added you to their contact list]
[%u added you to their contact list]
[Alerts]
[Added event]
[View user's details]
[Add contact permanently to list]
[<Unknown>]
[%s added you to the contact list\n%u (%s) on %s]
[%s added you to the contact list\n%u on %s]
[%s added you to the contact list\n%s on %s]
[(Unknown)]
[%s requested authorization\n%u (%s) on %s]
[%s requested authorization\n%u on %s]
[%s requested authorization\n%s on %s]
[Feature is not supported by protocol]
[Re&ad %s message]
[Re&ad status message]
[I've been away since %time%.]
[Give it up, I'm not in!]
[Not right now.]
[Give a guy some peace, would ya?]
[I'm a chatbot!]
[Yep, I'm here.]
[Nope, not here.]
[I'm hiding from the mafia.]
[That'll be the phone.]
[Mmm... food.]
[idleeeeeeee]
[Status]
[Chat module]
[Group chat log background]
[Message background]
[Nick list background]
[Nick list lines]
[Nick list background (selected)]
[Use a tabbed interface]
[Close tab on double click]
[Restore previously open tabs when showing the window]
[Show tabs at the bottom]
[Send message by pressing the 'Enter' key]
[Send message by pressing the 'Enter' key twice]
[Flash window when someone speaks]
[Flash window when a word is highlighted]
[Show list of users in the chat room]
[Show button for sending messages]
[Show buttons for controlling the chat room]
[Show buttons for formatting the text you are typing]
[Show button menus when right clicking the buttons]
[Show new windows cascaded]
[Save the size and position of chat rooms]
[Show the topic of the room on your contact list (if supported)]
[Do not play sounds when the chat room is focused]
[Do not pop up the window when joining a chat room]
[Toggle the visible state when double clicking in the contact list]
[Show contact statuses if protocol supports them]
[Display contact status icon before user role icon]
[Prefix all events with a timestamp]
[Only prefix with timestamp if it has changed]
[Timestamp has same color as the event]
[Indent the second line of a message]
[Limit user names in the message log to 20 characters]
[Add ':' to auto-completed user names]
[Strip colors from messages in the log]
[Enable the 'event filter' for new rooms]
[Show topic changes]
[Show users joining]
[Show users disconnecting]
[Show messages]
[Show actions]
[Show users leaving]
[Show users being kicked]
[Show notices]
[Show users changing name]
[Show information messages]
[Show status changes of users]
[Show icon for topic changes]
[Show icon for users joining]
[Show icon for users disconnecting]
[Show icon for messages]
[Show icon for actions]
[Show icon for highlights]
[Show icon for users leaving]
[Show icon for users kicking other user]
[Show icon for notices]
[Show icon for name changes]
[Show icon for information messages]
[Show icon for status changes]
[Show icons in tray only when the chat room is not active]
[Show icon in tray for topic changes]
[Show icon in tray for users joining]
[Show icon in tray for users disconnecting]
[Show icon in tray for messages]
[Show icon in tray for actions]
[Show icon in tray for highlights]
[Show icon in tray for users leaving]
[Show icon in tray for users kicking other user]
[Show icon in tray for notices]
[Show icon in tray for name changes]
[Show icon in tray for information messages]
[Show icon in tray for status changes]
[Show popups only when the chat room is not active]
[Show popup for topic changes]
[Show popup for users joining]
[Show popup for users disconnecting]
[Show popup for messages]
[Show popup for actions]
[Show popup for highlights]
[Show popup for users leaving]
[Show popup for users kicking other user]
[Show popup for notices]
[Show popup for name changes]
[Show popup for information messages]
[Show popup for status changes]
[Window icon]
[Bold]
[Italics]
[Underlined]
[Smiley button]
[Room history]
[Room settings]
[Event filter disabled]
[Event filter enabled]
[Hide nick list]
[Show nick list]
[Icon overlay]
[Status 1 (10x10)]
[Status 2 (10x10)]
[Status 3 (10x10)]
[Status 4 (10x10)]
[Status 5 (10x10)]
[Status 6 (10x10)]
[Message in (10x10)]
[Message out (10x10)]
[Action (10x10)]
[Add status (10x10)]
[Remove status (10x10)]
[Join (10x10)]
[Leave (10x10)]
[Quit (10x10)]
[Kick (10x10)]
[Nick change (10x10)]
[Notice (10x10)]
[Topic (10x10)]
[Highlight (10x10)]
[Information (10x10)]
[Messaging]
[Group chats]
[Group chats log]
[Options for using a tabbed interface]
[Appearance and functionality of chat room windows]
[Appearance of the message log]
[Default events to show in new chat rooms if the 'event filter' is enabled]
[Icons to display in the message log]
[Icons to display in the tray]
[Popups to display]
[Select folder]
[Message sessions]
[General]
[Chat log]
[Popups]
[Look up '%s':]
[No word to look up]
[&Message %s]
[Insert a smiley]
[Make the text bold (CTRL+B)]
[Make the text italicized (CTRL+I)]
[Make the text underlined (CTRL+U)]
[Select a background color for the text (CTRL+L)]
[Select a foreground color for the text (CTRL+K)]
[Show the history (CTRL+H)]
[Show/hide the nick list (CTRL+N)]
[Control this room (CTRL+O)]
[Enable/disable the event filter (CTRL+F)]
[Close current tab (CTRL+F4)]
[Nickname]
[Unique ID]
[%s: chat room (%u user)]
[%s: chat room (%u users)]
[%s: message session]
[%s: message session (%u users)]
[Standard contacts]
[Online contacts to whom you have a different visibility]
[Offline contacts]
[Contacts which are 'not on list']
[Group member counts]
[Dividers]
[Offline contacts to whom you have a different visibility]
[Selected text]
[Hottrack text]
[Quicksearch text]
[Not focused]
[Offline]
[Online]
[Away]
[Not available]
[Occupied]
[Do not disturb]
[Free for chat]
[Invisible]
[Out to lunch]
[On the phone]
[List background]
[Global]
[Standard crypto provider]
[User has not registered an e-mail address]
[Send e-mail]
[&E-mail]
[File from %s]
[bytes]
[&File]
[File &transfers...]
[Incoming]
[Complete]
[Error]
[Denied]
[%s file]
[Executable files]
[Events]
[My received files]
[View user's history]
[User menu]
[Canceled]
[This file transfer has been canceled by the other side]
[%d files]
[%d directories]
[This file has not yet been scanned for viruses. Are you certain you want to open it?]
[File received]
[of]
[Request sent, waiting for acceptance...]
[Waiting for connection...]
[Unable to initiate transfer.]
[Contact menu]
[Open...]
[sec]
[remaining]
[Decision sent]
[Connecting...]
[Connecting to proxy...]
[Connected]
[Initializing...]
[Moving to next file...]
[Sending...]
[Receiving...]
[File transfer denied]
[File transfer failed]
[Transfer completed.]
[Transfer completed, open file.]
[Transfer completed, open folder.]
[Scanning for viruses...]
[Transfer and virus scan complete]
[Outgoing]
[< Copyright]
[&Help]
[&About...]
[&Support]
[&Miranda NG homepage]
[&Report bug]
[Idle]
[The message send timed out.]
[Incoming message (10x10)]
[Outgoing message (10x10)]
[Last message received on %s at %s.]
[%s is typing a message...]
[Me]
[File sent]
[Outgoing messages]
[Incoming messages]
[Outgoing name]
[Outgoing time]
[Outgoing colon]
[Incoming name]
[Incoming time]
[Incoming colon]
[Message area]
[Other events]
[Message log]
[** New contacts **]
[** Unknown contacts **]
[Show balloon popup (unsupported system)]
[Messaging log]
[Typing notify]
[Message from %s]
[%s is typing a message]
[Typing notification]
[Miranda could not load the built-in message module, msftedit.dll is missing. Press 'Yes' to continue loading Miranda.]
[Instant messages]
[Incoming (focused window)]
[Incoming (unfocused window)]
[Incoming (new session)]
[Message send error]
[Contact started typing]
[Contact stopped typing]
[An unknown error has occurred.]
[Client cannot decode host message. Possible causes: host does not support SSL or requires not existing security package]
[Host we are connecting to is not the one certificate was issued for]
[Invalid message]
[Outgoing message]
[Incoming message]
[Outgoing URL]
[Incoming URL]
[Outgoing file]
[Incoming file]
[History for %s]
[Are you sure you want to delete this history item?]
[Delete history]
[View &history]
[Edit e-mail address]
[Edit phone number]
[The phone number should start with a + and consist of numbers, spaces, brackets and hyphens only.]
[Invalid phone number]
[Primary]
[Custom %d]
[Fax]
[Mobile]
[Work phone]
[Work fax]
[Male]
[Female]
[<not specified>]
[Single]
[Close relationships]
[Engaged]
[Married]
[Divorced]
[Separated]
[Widowed]
[Actively searching]
[In love]
[It\'s complicated]
[Summary]
[Contact]
[Location]
[Work]
[Background info]
[Notes]
[Owner]
[View/change my &details...]
[%s is online]
[Add %s]
[Please authorize my request and add me to your contact list.]
[&Join chat]
[&Open chat window]
[%s has joined]
[You have joined %s]
[%s has left]
[%s has disconnected]
[%s is now known as %s]
[You are now known as %s]
[%s kicked %s]
[Notice from %s: ]
[The topic is '%s%s']
[ (set by %s on %s)]
[ (set by %s)]
[%s enables '%s' status for %s]
[%s disables '%s' status for %s]
[<invalid>]
[Others nicknames]
[Your nickname]
[User has joined]
[User has left]
[User has disconnected]
[User kicked ...]
[User is now known as ...]
[Notice from user]
[The topic is ...]
[Information messages]
[User enables status for ...]
[User disables status for ...]
[Action message]
[Highlighted message]
[Nick list members (online)]
[Nick list members (away)]
[Message typing area]
[Chat log symbols (Webdings)]
[Message is highlighted]
[User has performed an action]
[User has kicked some other user]
[User's status was changed]
[User has changed name]
[User has sent a notice]
[The topic has been changed]
[&Leave chat]
[%s wants your attention in %s]
[%s speaks in %s]
[%s has joined %s]
[%s has left %s]
[%s kicked %s from %s]
[Notice from %s]
[Topic change in %s]
[Information in %s]
[%s enables '%s' status for %s in %s]
[%s disables '%s' status for %s in %s]
[%s says: %s]
[%s has left (%s)]
[%s has disconnected (%s)]
[%s kicked %s (%s)]
[Notice from %s: %s]
[The topic is '%s']
[The topic is '%s' (set by %s)]
[New group]
[Are you sure you want to delete group '%s'? This operation cannot be undone.]
[Delete group]
[You already have a group with that name. Please enter a unique name for the group.]
[Rename group]
[This group]
[Connecting]
[Connecting (attempt %d)]
[(Unknown contact)]
[This contact is on an instant messaging system which stores its contact list on a central server. The contact will be removed from the server and from your contact list when you next connect to that network.]
[De&lete]
[&Rename]
[&Add permanently to list]
[My custom name (not movable)]
[Nick]
[FirstName]
[E-mail]
[LastName]
[Username]
[FirstName LastName]
[LastName FirstName]
['(Unknown contact)' (not movable)]
['(Unknown contact)']
[Contact names]
[Miranda is trying to upgrade your profile structure.\nIt cannot move profile %s to the new location %s\nBecause profile with this name already exists. Please resolve the issue manually.]
[Miranda is trying to upgrade your profile structure.\nIt cannot move profile %s to the new location %s automatically\nMost likely this is due to insufficient privileges. Please move profile manually.]
[Profile cannot be placed into Miranda root folder.\nPlease move Miranda profile to some other location.]
[Miranda is unable to open '%s' because you do not have any profile plugins installed.\nYou need to install dbx_mmap.dll]
[Miranda was unable to open '%s', it's in an unknown format.\nThis profile might also be damaged, please run DbChecker which should be installed.]
[Miranda was unable to open '%s'\nIt's inaccessible or used by other application or Miranda instance]
[Miranda was unable to open '%s'\nThere is no suitable database driver installed]
[No profile support installed!]
[Miranda can't open that profile]
[Miranda can't understand that profile]
[Security systems to prevent malicious changes are in place and you will be warned before every change that is made.]
[Security systems to prevent malicious changes are in place and you will be warned before changes that are known to be unsafe.]
[Security systems to prevent malicious changes have been disabled. You will receive no further warnings.]
[This change is known to be safe.]
[This change is known to be potentially hazardous.]
[This change is not known to be safe.]
[Invalid setting type for '%s'. The first character of every value must be b, w, d, l, s, e, u, g, h or n.]
[Authorization request from %s%s: %s]
[You were added by %s%s]
[Contacts: ]
[Chat activity]
[You haven't filled in the search field. Please enter a search term and try again.]
[Search]
[Ctrl+Search add contact]
[Results]
[There are no results to display.]
[Searching]
[All networks]
[Handle]
[&Find/add contacts...]
[Failed to create file]
[<none>]
[Shadow at left]
[Shadow at right]
[Outline]
[Outline smooth]
[Smooth bump]
[Contour thin]
[Contour heavy]
[Configuration files]
[Text files]
[Error writing file]
[Customize]
[Sample text]
[Fonts]
[Headers]
[Generic text]
[Small text]
[Browser: Back]
[Browser: Forward]
[Browser: Refresh]
[Browser: Stop]
[Browser: Search]
[Browser: Fav]
[Browser: Home]
[Mute]
[Vol-]
[Vol+]
[Media: Next Track]
[Media: Prev. Track]
[Media: Stop]
[Media: Play/Pause]
[Mail]
[Media: Select]
[App 1]
[App 2]
[Ctrl + ]
[Alt + ]
[Shift + ]
[Win + ]
[Remove shortcut]
[Add another shortcut]
[Scope:]
[System]
[Actions:]
[Add binding]
[Modify]
[System scope]
[Miranda scope]
[** All contacts **]
[Show/Hide contact list]
[Read message]
[Open Options page]
[Open logging options]
[Open 'Find user' dialog]
[(incompatible)]
[Unknown]
[built-in]
[Languages]
[Custom status]
[%s (locked)]
[Status menu]
[Main menu]
[Frame menu]
[Group menu]
[Subgroup menu]
[New submenu]
[Menus]
[Tray menu]
[&Hide/show]
[&Options...]
[&About]
[Menu icons]
[You are going to remove all the contacts associated with this metacontact.\nThis will delete the metacontact.\n\nProceed anyway?]
[Either there is no metacontact in the database (in this case you should first convert a contact into one)\nor there is none that can host this contact.\nAnother solution could be to convert this contact into a new metacontact.\n\nConvert this contact into a new metacontact?]
[This contact is a metacontact.\nYou can't add a metacontact to another metacontact.\n\nPlease choose another.]
[Metacontact conflict]
[This contact is already associated to a metacontact.\nYou cannot add a contact to multiple metacontacts.]
[Multiple metacontacts]
[No suitable metacontact found]
[a contact]
[Adding %s...]
[Please select a metacontact]
[No metacontact selected]
[Assignment to the metacontact failed.]
[Assignment failure]
[Protocol]
[Send offline]
[Send &online]
[Delete metacontact?]
[Toggle off]
[Toggle on]
[Convert to metacontact]
[Add to existing]
[Edit]
[Set to default]
[MetaContacts]
[There was a problem in assigning the contact to the metacontact]
[This will remove the metacontact permanently.\n\nProceed anyway?]
[Are you sure?]
[Remove from metacontact]
[Toggle metacontacts off]
[Toggle metacontacts on]
[Add to existing metacontact...]
[Edit metacontact...]
[Set as metacontact default]
[Delete metacontact]
[Subcontacts]
[Metacontacts]
[No online contacts found.]
[Select metacontact]
[Could not retrieve contact protocol]
[Assignment error]
[Could not get unique ID of contact]
[Contact is 'not on list' - please add the contact to your contact list before assigning.]
[Metacontact is full]
[Could not write contact protocol to metacontact]
[Could not write unique ID of contact to metacontact]
[Could not write nickname of contact to metacontact]
[<Root group>]
[&Move to group]
[Standard Netlib log]
[No times]
[Standard hh:mm:ss times]
[Times in milliseconds]
[Times in microseconds]
[(Miranda core logging)]
[Select where log file will be created]
[Select program to be run]
[<mixed>]
[<All connections>]
[Network]
[No messaging plugins loaded. Please install/enable one of the messaging plugins, for instance, "StdMsg.dll"]
['%s' is disabled, re-enable?]
[Re-enable Miranda plugin?]
[Core plugin '%s' cannot be loaded or missing. Miranda will exit now]
[Fatal error]
[Unable to load plugin in service mode!]
[Unable to start any of the installed contact list plugins, I even ignored your preferences for which contact list couldn't load any.]
[Can't find a contact list plugin! You need StdClist or any other contact list plugin.]
[<all modules>]
[<core modules>]
[Loading... %d%%]
[%s options]
[Miranda NG options]
[Extra icons]
[Avatars]
[Avatars root folder]
[Plugin]
[Version]
[Miranda NG must be restarted to apply changes for these plugins:]
[Do you want to restart it now?]
[Plugins]
[The profile '%s' already exists. Do you want to move it to the Recycle Bin?\n\nWARNING: The profile will be deleted if Recycle Bin is disabled.\nWARNING: A profile may contain confidential information and should be properly deleted.]
[The profile already exists]
[Couldn't move '%s' to the Recycle Bin. Please select another profile name.]
[Problem moving profile]
[Unable to create the profile '%s', the error was %x]
[Problem creating profile]
[&Create]
[<In use>]
[<Unknown format>]
[Are you sure you want to remove profile "%s"?]
[&Convert]
[Run]
[Convert database]
[Check database]
[Size]
[Created]
[Modified]
[My profiles]
[New profile]
[WARNING! The account is going to be deleted. It means that all its settings, contacts and histories will be also erased.\n\nAre you absolutely sure?]
[Your account was successfully upgraded. To activate it, restart of Miranda is needed.\n\nIf you want to restart Miranda now, press Yes, if you want to upgrade another account, press No]
[This account uses legacy protocol plugin. Use Miranda NG options dialogs to change its preferences.]
[Account name must be filled.]
[Account error]
[Account name has to be unique. Please enter unique name.]
[Create new account]
[Editing account]
[Upgrading account]
[Account is disabled. Please activate it to access options.]
[New account]
[Remove account]
[Configure...]
[Upgrade account]
[Account ID]
[<unknown>]
[Protocol is not loaded.]
[Rename]
[Configure]
[Upgrade]
[Account %s is being disabled]
[Account is online. Disable account?]
[Account %s is being deleted]
[You need to disable plugin to delete this account]
[&Accounts...]
[Account]
[Could not start a search on '%s', there was a problem - is %s connected?]
[URL]
|