summaryrefslogtreecommitdiff
path: root/protocols/IcqOscarJ/icqoscarj-translation.txt
blob: 520c8a1ce6f0a0313b5b7df0bd8b84b97092e28b (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
; Common strings that belong to many files
;[%d Files]
;[Add to server list]
;[Arabic]
;[Business]
;[Cancel]
;[Change ICQ Details]
;[Close]
;[Education]
;[Grant authorization]
;[Greek]
;[Hebrew]
;[Homepage]
;[ICQ]
;[ICQ Note]
;[Internet]
;[Japanese]
;[Korean]
;[No description given]
;[OK]
;[Other]
;[Request authorization]
;[Revoke authorization]
;[Thai]
;[Turkish]
;[Vietnamese]
;[Work]
;[Your file receive has been aborted because Miranda could not open the destination file in order to write to it. You may be trying to save to a read-only folder.]
;[Your file transfer has been aborted because one of the files that you selected to send is no longer readable from the disk. You may have deleted or moved it.]

; ../../protocols/IcqOscarJ/UI/askauthentication.cpp
;[Please authorize me to add you to my contact list.]

; ../../protocols/IcqOscarJ/UI/loginpassword.cpp
;[Enter a password for UIN %u:]

; ../../protocols/IcqOscarJ/UI/userinfotab.cpp
;[ (DC Established)]
;[%s Details]
;[<not specified>]
;[Member since:]
;[ScreenName:]

; ../../protocols/IcqOscarJ/chan_04close.cpp
;[Connection failed.\nSecure (MD5) login is not supported on this account.]
;[Connection failed.\nServer has too many connections from your IP (%d).]
;[Connection failed.\nThe server did not accept this client version.]
;[Connection failed.\nThe server is temporarily unavailable (%d).]
;[Connection failed.\nUnknown error during sign on: 0x%02x]
;[Connection failed.\nYou have connected too quickly,\nplease wait and retry 10 to 20 minutes later (%d).]
;[Connection failed.\nYou were rejected by the server for an unknown reason.\nThis can happen if the UIN is already connected.]
;[Connection failed.\nYour ICQ number or password was rejected (%d).]
;[The server sent warning, this version is getting old.\nTry to look for a new one.]
;[Unable to connect to ICQ communication server]
;[Unable to connect to migrated ICQ communication server]
;[Unknown runtime error: 0x%02x]
;[You could not sign on because the server returned invalid data. Try again.]
;[You have been disconnected from the ICQ network because the current server shut down.]
;[You have been disconnected from the ICQ network because you logged on from another location using the same ICQ number.]

; ../../protocols/IcqOscarJ/changeinfo/constants.cpp
;[About]
;[Affiliation 1]
;[Affiliation 2]
;[Affiliation 3]
;[Affiliation category 1]
;[Affiliation category 2]
;[Affiliation category 3]
;[Affiliations]
;[Age]
;[April]
;[August]
;[Category 1]
;[Category 2]
;[Category 3]
;[Cellular number]
;[City]
;[Company ZIP/postcode]
;[Company city]
;[Company country]
;[Company department]
;[Company fax]
;[Company homepage]
;[Company industry]
;[Company name]
;[Company occupation]
;[Company phone]
;[Company position]
;[Company state]
;[Company street]
;[Contact]
;[Country]
;[Day of birth]
;[December]
;[Degree]
;[Fax number]
;[February]
;[First name]
;[GMT+0:00 London; Dublin; Edinburgh; Lisbon; Casablanca]
;[GMT+0:30]
;[GMT+10:00 East Australia; Guam; Vladivostok]
;[GMT+10:30]
;[GMT+11:00 Magadan; Solomon Is.; New Caledonia]
;[GMT+11:30]
;[GMT+12:00 Auckland; Wellington; Fiji; Kamchatka; Marshall Is.]
;[GMT+1:00 Central European Time; West Central Africa; Warsaw]
;[GMT+1:30]
;[GMT+2:00 Jerusalem; Helsinki; Harare; Cairo; Bucharest; Athens]
;[GMT+2:30]
;[GMT+3:00 Moscow; St. Petersburg; Nairobi; Kuwait; Baghdad]
;[GMT+3:30 Tehran]
;[GMT+4:00 Baku; Tbilisi; Yerevan; Abu Dhabi; Muscat]
;[GMT+4:30 Kabul]
;[GMT+5:00 Calcutta; Chennai; Mumbai; New Delhi; Ekaterinburg]
;[GMT+5:30]
;[GMT+6:00 Astana; Dhaka; Almaty; Novosibirsk; Sri Jayawardenepura]
;[GMT+6:30 Rangoon]
;[GMT+7:00 Bankok; Hanoi; Jakarta; Krasnoyarsk]
;[GMT+7:30]
;[GMT+8:00 Perth; Taipei; Singapore; Hong Kong; Beijing]
;[GMT+8:30]
;[GMT+9:00 Tokyo; Osaka; Seoul; Sapporo; Yakutsk]
;[GMT+9:30 Darwin; Adelaide]
;[GMT-0:30]
;[GMT-10:00 Hawaii]
;[GMT-10:30]
;[GMT-11:00 Midway Island; Samoa]
;[GMT-11:30]
;[GMT-12:00 Eniwetok; Kwajalein]
;[GMT-1:00 Cape Verde Islands; Azores]
;[GMT-1:30]
;[GMT-2:00 Mid-Atlantic]
;[GMT-2:30]
;[GMT-3:00 Greenland; Buenos Aires; Georgetown]
;[GMT-3:30 Newfoundland]
;[GMT-4:00 Atlantic Time; Santiago; Caracas; La Paz]
;[GMT-4:30]
;[GMT-5:00 Eastern Time; Bogota; Lima; Quito]
;[GMT-5:30]
;[GMT-6:00 Central Time; Central America; Saskatchewan]
;[GMT-6:30]
;[GMT-7:00 Arizona; Mountain Time]
;[GMT-7:30]
;[GMT-8:00 Pacific Time; Tijuana]
;[GMT-8:30]
;[GMT-9:00 Alaska]
;[GMT-9:30]
;[Gender]
;[Graduation Year]
;[Institute]
;[Interest areas 1]
;[Interest areas 2]
;[Interest areas 3]
;[Interest areas 4]
;[Interest category 1]
;[Interest category 2]
;[Interest category 3]
;[Interest category 4]
;[January]
;[July]
;[June]
;[Last name]
;[Level]
;[March]
;[Marital Status]
;[May]
;[Month of birth]
;[Nickname]
;[November]
;[October]
;[Originally from]
;[Password]
;[Past Background]
;[Past Background 1]
;[Past Background 2]
;[Past Background 3]
;[Personal]
;[Personal Detail]
;[Personal Interests]
;[Phone number]
;[Primary e-mail]
;[Secondary e-mail]
;[September]
;[Spoken language 1]
;[Spoken language 2]
;[Spoken language 3]
;[State]
;[Street]
;[Tertiary e-mail]
;[Timezone]
;[Year of birth]
;[ZIP/postcode]

; ../../protocols/IcqOscarJ/changeinfo/db.cpp
;[The ICQ server does not support passwords longer than 8 characters. Please use a shorter password.]
;[The password does not match the password you originally entered. Check Caps Lock and try again.]
;[The password does not match your current password. Check Caps Lock and try again.]

; ../../protocols/IcqOscarJ/changeinfo/dlgproc.cpp
;[<empty>]
;[<unremovable once applied>]
;[Unknown value]
;[Unspecified]
;[Upload FAILED]
;[Upload complete]
;[Upload in progress...]
;[You've made some changes to your ICQ details but it has not been saved to the server. Are you sure you want to close this dialog?]

; ../../protocols/IcqOscarJ/changeinfo/upload.cpp
;[You are not currently connected to the ICQ network. You must be online in order to update your information on the server.]

; ../../protocols/IcqOscarJ/fam_01service.cpp
;[A server migration has failed because the server returned invalid data. You must reconnect manually.]
;[Failed to request offline messages. They may be received next time you log in.]

; ../../protocols/IcqOscarJ/fam_03buddy.cpp
;[Contact deleted & further events blocked.]
;[Spambot Detected]

; ../../protocols/IcqOscarJ/fam_04message.cpp
;[Contact \"%s\" has closed the message window.]
;[Incoming URL:]
;[SNAC(4.1) SENDMSG Error (x%02x)]
;[The SNAC format was rejected by the server.\nSNAC(4.1) Error x0E]
;[The contact does not support receiving offline messages.]
;[The messaging service is temporarily unavailable. Wait a while and try again.\r\nSNAC(4.1) Error x05]
;[The receiving client does not support this type of message.\r\nSNAC(4.1) Error x09]
;[The user has logged off. Select 'Retry' to send an offline message.\r\nSNAC(4.1) Error x04]
;[The user is temporarily unavailable. Wait a while and try again.\r\nSNAC(4.1) Error x13]
;[You are sending too fast. Wait a while and try again.\r\nSNAC(4.1) Error x02]
;[You are sending too fast. Wait a while and try again.\r\nSNAC(4.1) Error x03]
;[You sent too long message. The receiving client does not support it.\r\nSNAC(4.1) Error x0A]

; ../../protocols/IcqOscarJ/fam_13servclist.cpp
;[Adding of contact to server list failed.]
;[Adding of group to server list failed.]
;[Adding of privacy item to server list failed.]
;[Contact \"%s\" lost its authorization in the server list.]
;[Contact \"%s\" was authorized in the server list.]
;[Moving of user to another group on server list failed.]
;[Removing of contact from server list failed.]
;[Removing of group from server list failed.]
;[Removing of privacy item from server list failed.]
;[Renaming of server group failed.]
;[Server contact list is unavailable, Miranda will use local contact list.]
;[Updating of group on server list failed.]
;[Updating of server contact failed.]
;[User \"%s\" was removed from server list.]

; ../../protocols/IcqOscarJ/fam_17signon.cpp
;[Secure login failed.\nInvalid key length.]
;[Secure login failed.\nInvalid server response.]

; ../../protocols/IcqOscarJ/icq_avatar.cpp
;[Error uploading avatar to server, server refused to accept the image.]
;[Error uploading avatar to server, server temporarily unavailable.]

; ../../protocols/IcqOscarJ/icq_fieldnames.cpp
;[50's]
;[60's]
;[60-above]
;[70's]
;[80's]
;[Academic]
;[Administrative]
;[Afghanistan]
;[Afrikaans]
;[Agriculture]
;[Albania]
;[Albanian]
;[Algeria]
;[Alumni Org.]
;[Andorra]
;[Angola]
;[Anguilla]
;[Antigua and Barbuda]
;[Antilles]
;[Argentina]
;[Armenia]
;[Armenian]
;[Art]
;[Art/Entertainment]
;[Arts]
;[Aruba]
;[Ascension Island]
;[Associated degree]
;[Astronomy]
;[Audio and Visual]
;[Australia]
;[Australia, Antarctic Territory]
;[Australia, Christmas Island]
;[Australia, Cocos (Keeling) Islands]
;[Australia, Norfolk Island]
;[Austria]
;[Azerbaijan]
;[Azerbaijani]
;[Bachelor's degree]
;[Bahamas]
;[Bahrain]
;[Bangladesh]
;[Barbados]
;[Barbuda]
;[Belarus]
;[Belgium]
;[Belize]
;[Belorussian]
;[Benin]
;[Bermuda]
;[Bhojpuri]
;[Bhutan]
;[Bolivia]
;[Bosnia and Herzegovina]
;[Bosnian]
;[Botswana]
;[Brazil]
;[British Virgin Islands]
;[Brunei]
;[Bulgaria]
;[Bulgarian]
;[Burkina Faso]
;[Burmese]
;[Burundi]
;[Business Services]
;[Cambodia]
;[Cameroon]
;[Canada]
;[Canary Islands]
;[Cantonese]
;[Cape Verde Islands]
;[Cars]
;[Catalan]
;[Cayman Islands]
;[Celebrity Fans]
;[Central African Republic]
;[Chad]
;[Chamorro]
;[Charity Org.]
;[Chile, Republic of]
;[China]
;[Chinese]
;[Close relationships]
;[Clothing]
;[Club/Social Org.]
;[Cocos (Keeling) Islands]
;[Collections]
;[College]
;[College Student]
;[Colombia]
;[Community & Social]
;[Community Org.]
;[Comoros]
;[Computers]
;[Congo, Democratic Republic of (Zaire)]
;[Congo, Republic of the]
;[Construction]
;[Consumer Goods]
;[Cook Islands]
;[Corporate Services]
;[Costa Rica]
;[Cote d'Ivoire (Ivory Coast)]
;[Croatia]
;[Croatian]
;[Cuba]
;[Cultural Org.]
;[Culture]
;[Curacao]
;[Czech]
;[Czech Republic]
;[Danish]
;[Denmark]
;[Diego Garcia]
;[Divorced]
;[Djibouti]
;[Dominica]
;[Dominican Republic]
;[Dutch]
;[Ecology]
;[Ecuador]
;[Egypt]
;[El Salvador]
;[Elementary]
;[Elementary School]
;[Engaged]
;[Engineering]
;[English]
;[Entertainment]
;[Equatorial Guinea]
;[Eritrea]
;[Esperanto]
;[Estonia]
;[Estonian]
;[Ethiopia]
;[Europe]
;[Faeroe Islands]
;[Falkland Islands]
;[Fan Clubs]
;[Farsi]
;[Female]
;[Fiji]
;[Finance]
;[Finance and Corporate]
;[Financial Services]
;[Finland]
;[Finnish]
;[Fitness]
;[France]
;[Fraternity/Sorority]
;[French]
;[French Antilles]
;[French Guiana]
;[French Polynesia]
;[Gabon]
;[Gaelic]
;[Gambia]
;[Games]
;[Georgia]
;[German]
;[Germany]
;[Ghana]
;[Gibraltar]
;[Government]
;[Greece]
;[Greek, Republic of South Cyprus]
;[Greenland]
;[Grenada]
;[Guadeloupe]
;[Guam, US Territory of]
;[Guatemala]
;[Guinea]
;[Guinea-Bissau]
;[Gujarati]
;[Guyana]
;[Haiti]
;[Health and Beauty]
;[High School]
;[High School Student]
;[High Tech]
;[High-school]
;[Hindi]
;[Hobbies]
;[Hobbyists Org.]
;[Home]
;[Home Automation]
;[Honduras]
;[Hong Kong]
;[Household Products]
;[Hungarian]
;[Hungary]
;[ICQ - Help]
;[ICQ - Providing Help]
;[Iceland]
;[Icelandic]
;[India]
;[Indonesia]
;[Indonesian]
;[International Org.]
;[Iran (Islamic Republic of)]
;[Iraq]
;[Ireland]
;[Israel]
;[Italian]
;[Italy]
;[Jamaica]
;[Japan]
;[Jordan]
;[Kazakhstan]
;[Kenya]
;[Khmer]
;[Kiribati]
;[Korea, North]
;[Korea, South]
;[Kosovo, Republic of]
;[Kurdish]
;[Kuwait]
;[Kyrgyzstan]
;[Lao]
;[Laos]
;[Latvia]
;[Latvian]
;[Law]
;[Lebanon]
;[Legal]
;[Lesotho]
;[Liberia]
;[Libyan Arab Jamahiriya]
;[Liechtenstein]
;[Lifestyle]
;[Lithuania]
;[Lithuanian]
;[Luxembourg]
;[Macau]
;[Macedonia, Republic of]
;[Macedonian]
;[Madagascar]
;[Mail Order Catalog]
;[Malawi]
;[Malay]
;[Malaysia]
;[Maldives]
;[Male]
;[Mali]
;[Malta]
;[Managerial]
;[Mandarin]
;[Manufacturing]
;[Married]
;[Marshall Islands]
;[Martinique]
;[Master's degree]
;[Mauritania]
;[Mauritius]
;[Mayotte Island]
;[Media]
;[Medical & Health Care]
;[Medical/Health]
;[Mexico]
;[Micronesia, Federated States of]
;[Military]
;[Moldova, Republic of]
;[Monaco]
;[Mongolia]
;[Mongolian]
;[Montenegro, Republic of]
;[Montserrat]
;[Morocco]
;[Movies and TV]
;[Mozambique]
;[Music]
;[Myanmar]
;[Mystics]
;[Namibia]
;[Nature and Environment Org.]
;[Nauru]
;[Nepal]
;[Netherlands]
;[Netherlands (Bonaire Island)]
;[Netherlands (Saba Island)]
;[Netherlands (St. Eustatius Island)]
;[Netherlands Antilles]
;[Nevis]
;[New Caledonia]
;[New Zealand]
;[News and Media]
;[Nicaragua]
;[Niger]
;[Nigeria]
;[Niue]
;[Non-Government Organization]
;[Non-Profit Organization Management]
;[Northern Mariana Islands, US Territory of]
;[Norway]
;[Norwegian]
;[Oman]
;[Open relationship]
;[Other Services]
;[Outdoors]
;[Pakistan]
;[Palau]
;[Panama]
;[Papua New Guinea]
;[Paraguay]
;[Parenting]
;[Parties]
;[Past Organization]
;[Past Work Place]
;[Persian]
;[Peru]
;[Pets and Animals]
;[PhD]
;[Philippines]
;[Poland]
;[Polish]
;[Portugal]
;[Portuguese]
;[Postdoctoral]
;[Professional]
;[Professional Org.]
;[Publishing]
;[Puerto Rico]
;[Punjabi]
;[Qatar]
;[Recreation, Travel & Entertainment]
;[Religion]
;[Retail]
;[Retail Stores]
;[Retired]
;[Reunion Island]
;[Romania]
;[Romanian]
;[Rota Island]
;[Russia]
;[Russian]
;[Rwanda]
;[Saint Helena]
;[Saint Kitts]
;[Saint Kitts and Nevis]
;[Saint Lucia]
;[Saint Pierre and Miquelon]
;[Saint Vincent and the Grenadines]
;[Saipan Island]
;[Samoa (USA)]
;[Samoa, Western]
;[San Marino]
;[Sao Tome and Principe]
;[Saudi Arabia]
;[Science]
;[Science & Research]
;[Scientific/Technical Org.]
;[Scotland]
;[Self Improvement Group]
;[Senegal]
;[Separated]
;[Serbia, Republic of]
;[Serbian]
;[Service Industry]
;[Seychelles]
;[Sierra Leone]
;[Sindhi]
;[Singapore]
;[Single]
;[Skills]
;[Slovak]
;[Slovakia]
;[Slovenia]
;[Slovenian]
;[Social science]
;[Solomon Islands]
;[Somali]
;[Somalia]
;[South Africa]
;[Space]
;[Spain]
;[Spain, Canary Islands]
;[Spanish]
;[Spiritual/Religious Org.]
;[Sporting and Athletic]
;[Sports]
;[Sports Org.]
;[Sri Lanka]
;[St. Maarten]
;[Sudan]
;[Support Org.]
;[Suriname]
;[Swahili]
;[Swaziland]
;[Sweden]
;[Swedish]
;[Switzerland]
;[Syrian Arab Republic]
;[Tagalog]
;[Taiwan]
;[Taiwanese]
;[Tajikistan]
;[Tamil]
;[Tanzania]
;[Tatar]
;[Technical]
;[Thailand]
;[Timor, East]
;[Tinian Island]
;[Togo]
;[Tokelau]
;[Tonga]
;[Trade and Business Org.]
;[Transportation]
;[Travel]
;[Trinidad and Tobago]
;[Tunisia]
;[Turkey]
;[Turkey, Republic of Northern Cyprus]
;[Turkmenistan]
;[Turks and Caicos Islands]
;[Tuvalu]
;[USA]
;[Uganda]
;[Ukraine]
;[Ukrainian]
;[Union]
;[United Arab Emirates]
;[United Kingdom]
;[University]
;[University / College]
;[University Student]
;[Urdu]
;[Uruguay]
;[Uzbekistan]
;[Vanuatu]
;[Vatican City]
;[Venezuela]
;[Vietnam]
;[Virgin Islands (UK)]
;[Virgin Islands (USA)]
;[Volunteer Org.]
;[Wales]
;[Wallis and Futuna Islands]
;[Web Building]
;[Web Design]
;[Welsh]
;[Widowed]
;[Women]
;[Yemen]
;[Yiddish]
;[Yoruba]
;[Yugoslavia]
;[Zambia]
;[Zimbabwe]

; ../../protocols/IcqOscarJ/icq_menu.cpp
;[Open ICQ profile]
;[Show custom status details]

; ../../protocols/IcqOscarJ/icq_opts.cpp
;[Account]
;[Baltic]
;[Central European]
;[Contacts]
;[Cyrillic]
;[Display all problems]
;[Display explanations for disconnection]
;[Display problems causing possible loss of data]
;[Display problems requiring user intervention]
;[Do not display any problems (not recommended)]
;[Features]
;[Korean (Johab)]
;[Latin I]
;[Network]
;[Popups]
;[Privacy]
;[Simplified Chinese]
;[System default codepage]
;[Traditional Chinese]

; ../../protocols/IcqOscarJ/icq_popups.cpp
;[Popup Title]
;[Sample Error]
;[Sample Fatal]
;[Sample Note]
;[Sample Spambot]
;[Sample Warning]

; ../../protocols/IcqOscarJ/icq_proto.cpp
;[%s client-to-client connections]
;[%s server connection]
;[User ID]
;[You have not entered a ICQ number.\nConfigure this in Options->Network->ICQ and try again.]

; ../../protocols/IcqOscarJ/icq_server.cpp
;[Connection failed.\nLogin sequence failed for unknown reason.\nTry again later.]
;[Miranda was unable to allocate a port to listen for direct peer-to-peer connections between clients. You will be able to use most of the ICQ network without problems but you may be unable to send or receive files.\n\nIf you have a firewall this may be blocking Miranda, in which case you should configure your firewall to leave some ports open and tell Miranda which ports to use in M->Options->ICQ->Network.]
;[Unable to connect to ICQ login server]
;[Unable to connect to ICQ login server, SSL could not be negotiated]
;[Your connection with the ICQ server was abortively closed]

; ../../protocols/IcqOscarJ/icq_servlist.cpp
;[Failed to create the correct sub-group, the using closest parent group.]
;[The contact's information was too big and was truncated.]

; ../../protocols/IcqOscarJ/icq_uploadui.cpp
;[** All contacts **]
;[ALREADY EXISTS]
;[Adding %s to invisible list...]
;[Adding %s to visible list...]
;[Adding group \"%s\"...]
;[All operations complete]
;[Cleaning groups]
;[Deleting %s from invisible list...]
;[Deleting %s from visible list...]
;[Deleting %s...]
;[Deleting group \"%s\"...]
;[FAILED]
;[INVALID DATA]
;[LIST FULL]
;[Moving %s to group \"%s\"...]
;[NOT FOUND]
;[No upload group available]
;[Ready...]
;[Select contacts you want to store on server.]
;[Server rate warning -> slowing down the process.]
;[Updating group \"%s\"...]
;[Uploading %s...]
;[You have to be online to sychronize the server-list !]

; ../../protocols/IcqOscarJ/icq_xstatus.cpp
;[%s Custom Status]
;[@home]
;[@work]
;[Afro]
;[Alien]
;[Angel]
;[Angry]
;[Baby]
;[Basketball]
;[Beetle]
;[Birdie]
;[Birthday]
;[Broken hearted]
;[Candy]
;[Celebrating]
;[Cocktail]
;[Coffee]
;[Cooking]
;[Cool]
;[Crazy Professor]
;[Cupid shot me]
;[Cyclop]
;[Depressed]
;[Dog]
;[Donut]
;[Double Rainbow]
;[Drinking beer]
;[Eating]
;[Evil]
;[Feeling Good]
;[Feeling sick]
;[Free for Chat]
;[Gaming]
;[Having fun]
;[Headmaster]
;[Hot Dog]
;[I'm high]
;[Ice-Cream]
;[Kitty]
;[Laughing]
;[Lips]
;[Listening to music]
;[Lollypop]
;[Love]
;[Mask]
;[Meeting]
;[Money]
;[Monkey]
;[Ninja]
;[None]
;[Oink Oink]
;[On WC]
;[On my mobile]
;[On the phone]
;[Picnic]
;[Pilot]
;[Pink Lady]
;[Pirate]
;[Pizza]
;[Playing]
;[Punch]
;[Rock On]
;[Rough]
;[Scooter]
;[Shooting]
;[Shopping]
;[Sleeping]
;[Smoking]
;[Snoring]
;[Soccer]
;[St. Patrick]
;[Strawberry]
;[Studying]
;[Sumo]
;[Surfing]
;[Sushi]
;[Taking a bath]
;[Thinking]
;[Tired]
;[To be or not to be]
;[Typing]
;[Up yours]
;[Watching TV]
;[Watching pro7 on TV]
;[Working]
;[Writing]

; ../../protocols/IcqOscarJ/icq_xtraz.cpp
;[Greeting card:]

; ../../protocols/IcqOscarJ/icqosc_svcs.cpp
;[** This message was blocked by the ICQ server ** The message was invalid.]
;[** This message was blocked by the ICQ server ** The message was too long.]
;[** This message was blocked by the ICQ server ** The sender has flooded the server.]
;[** This message was blocked by the ICQ server ** You are too evil.]
;[** Unknown missed message event.]
;[Are you sure you want to revoke user's authorization (this will remove you from his/her list on some clients) ?]
;[Confirmation]

; ../../protocols/IcqOscarJ/init.cpp
;[ICQ Plugin]
;[You cannot use Unicode version of ICQ Protocol plug-in with Ansi version of Miranda IM.]

; ../../protocols/IcqOscarJ/log.cpp
;[ICQ Error]
;[ICQ Fatal]
;[ICQ Warning]
;[Miranda was unable to make a connection with a server. It is likely that the server is down, in which case you should wait for a while and try again later.]
;[Miranda was unable to resolve the name of a server to its numeric address. This is most likely caused by a catastrophic loss of your network connection (for example, your modem has disconnected), but if you are behind a proxy, you may need to use the 'Resolve hostnames through proxy' option in M->Options->Network.]
;[The connection with the server was abortively closed during the connection attempt. You may have lost your local network connection.]
;[The server did not respond to the connection attempt within a reasonable time, it may be temporarily down. Try again later.]
;[The server to which you are trying to connect does not exist. Check your spelling in M->Options->Network->ICQ.]
;[Your proxy rejected the user name and password that you provided. Please check them in M->Options->Network.]
;[error]

; ../../protocols/IcqOscarJ/oscar_filetransfer.cpp
;[Connection lost during file transfer.]
;[Failed to Initialize File Transfer. No valid files were specified.]
;[Failed to Initialize File Transfer. Unable to bind local port and File proxy unavailable.]
;[File transfer negotiation failed for unknown reason.]
;[The checksum of file \"%s\" does not match, the file is probably damaged.]
;[The file transfer failed: Invalid request]
;[The file transfer failed: Proxy error]
;[The file transfer failed: Proxy unavailable]
;[The file transfer was aborted by the other user.]
;[The files are too big to be sent at once. Files bigger than 4GB can be sent only separately.]

; ../../protocols/IcqOscarJ/resources.rc
;[&Cancel]
;[&Save changes]
;[&Send]
;[&Use Windows colors]
;[(*) Timeouts require Popup v. 1.0.1.9 or later]
;[Add contacts to the server's list when I add them to mine]
;[Age:]
;[All users may add me to their Contact List]
;[Allow direct connections only when I authorize or initiate them]
;[Allow direct connections with any user]
;[Allow direct connections with users on my contact list]
;[Allow others to view my Online / Offline status from the web (Web Aware)]
;[Allow others to view my primary e-mail address]
;[Allowing direct connections will expose your IP address but may be necessary for some ICQ features to work properly.]
;[Auto-retrieve Custom status details]
;[Back Color]
;[Background info]
;[Block known Spam Bots]
;[Category:]
;[Check avatar validity before saving *]
;[City:]
;[Closing in %d]
;[Company:]
;[Confirm Password Change]
;[Connection settings]
;[Contact List Authorization]
;[Country:]
;[Create a new ICQ account]
;[Create a new ICQ account using the ICQ website]
;[Custom Status \"%s\" Details]
;[Default]
;[Department:]
;[Direct connections]
;[Display errors using popups]
;[Display popup when spambot is detected]
;[E-mail:]
;[Enable AIM contacts support]
;[Enable Custom status support for moods]
;[Enable Custom status support for xtraz]
;[Enable avatar support]
;[Enable peer-to-peer message connections]
;[Enable popup support]
;[Enable server-side contact lists *]
;[Enable unicode messaging support]
;[Enter ICQ Password]
;[Enter a password for UIN %d:]
;[Enter an authorization request]
;[Enter your current password:]
;[Error]
;[External IP:]
;[Extra Features]
;[Fatal]
;[First name:]
;[Gender:]
;[Hint: If you don't enter your password here, Miranda will ask for the password everytime you try to go online.]
;[Hint: Use port 0 to connect on a random port. Try port 80 or port 443 if you are having problems connecting through a http proxy server.]
;[I want to be asked when someone wants to add me to their Contact List]
;[ICQ Number:]
;[ICQ avatars]
;[ICQ contacts stored on server]
;[ICQ number:]
;[Idle since:]
;[Ignore concurrent error messages]
;[Interests]
;[Internal IP:]
;[Keywords:]
;[Language:]
;[Last name:]
;[Load avatars automatically (like ICQ Lite)]
;[Location]
;[Login Server:]
;[Look && Feel]
;[Make me temporarily visible to contacts I send message to]
;[Manage ICQ Server Contacts]
;[Manage server's list...]
;[Marital status:]
;[Message:]
;[Messaging]
;[Misc Settings]
;[Never use legacy messaging (server acknowledgements)]
;[Nickname:]
;[Note]
;[Note: The options marked with an asterisk have important side-effects or caveats that may not be initially apparent documented in the help.]
;[Notify me when a message delivery has failed (recommended)]
;[Occupation:]
;[Online since:]
;[Only reply to status message request from visible contacts]
;[Only reply to status message requests from users on my contact list]
;[Options]
;[Organisation:]
;[Passive mode, i.e. do not initiate new connections]
;[Password:]
;[Past]
;[Peer-to-peer Messaging]
;[Please re-type your new password:]
;[Port:]
;[Position:]
;[Previe&w]
;[Protocol Version:]
;[Remember this session password]
;[Reset Custom status on status change]
;[Retrieve a lost password or ICQ number]
;[Retrieving custom status details...]
;[Search online users only]
;[Secure (MD5) login]
;[Secure Connection (SSL)]
;[Select contacts to store:]
;[Send 'Keep-alives' (enable this if you use a proxy server and frequently get disconnected)]
;[Send all messages in unicode if possible]
;[Show connection error messages:]
;[Slider1]
;[Some options are greyed out because they can only be changed when you are online.]
;[Spam detected]
;[State:]
;[Status:]
;[Summary]
;[Synchronize]
;[System up since:]
;[Text Color]
;[Timeout (*)]
;[Title:]
;[UIN:]
;[Update contacts' details on the server's list when I change them in mine]
;[Update my contacts' details from the server *]
;[Use system &icons]
;[Use this codepage for Ansi <-> Unicode translation :]
;[User Client:]
;[Warning]
;[You cannot enable/disable the server-side contact list while you are connected to the ICQ network.]
;[You will need to reconnect to the ICQ network for the changes you have made on this page to take effect.]

; ../../protocols/IcqOscarJ/utilities.cpp
;[<invalid>]