-
Notifications
You must be signed in to change notification settings - Fork 1
/
en_us.l
6519 lines (5547 loc) · 196 KB
/
en_us.l
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
# United States English language file.
#
# (C) 2003-2009 Anope Team
# Contact us at [email protected]
#
# Please read COPYING and README for further details.
#
# Based on the original code of Epona by Lara.
# Based on the original code of Services by Andy Church.
#
# When translating this file to another language, keep in mind that the
# order of parameters for sprintf() is fixed in the source code, so your
# messages need to take the same parameters in the same order as the
# English messages do. (Obviously, this doesn't hold for the strftime()
# format lines immediately below.) If you can't get a natural translation
# of a message without changing the order of the parameters, let us know
# ([email protected]) which message is causing a problem and I'll see
# what I can do.
#
# In help messages, "%S" (capital S, not lowercase) refers to the name of
# the service sending the message; for example, in NickServ help messages,
# "%S" is replaced by "NickServ" (or whatever it is renamed to in
# services.conf). The %S's do not count as sprintf() parameters, so they can be
# rearranged, removed, or added as necessary.
#
# Also in help messages, please try to limit line lengths to 60 characters
# of text (not including the leading tab). This length was chosen because
# it does not cause line wrap under default settings on most current IRC
# clients. Remember that format characters (control-B, control-_) are not
# included in that 60-character limit (since they don't show on the user's
# screen). Also remember that format specifiers (%S, etc.) will expand
# when displayed, so remember to take this into account; you can assume
# that the length of a pseudoclient name (%S replacement) will be eight
# characters, so reduce the maximum line length by 6 for every %S on a
# line.
#
# Finally, remember to put a tab at the beginning of every line of text
# (including empty lines). This has to be a tab, not spaces.
###########################################################################
#
# Name of this language
#
###########################################################################
# For languages other than English, this string should have the following
# format:
# language-name-in-language (language-name-in-English)
# For example, "Espa�l (Spanish)" or "Fran�is (French)".
LANG_NAME
English
###########################################################################
#
# General messages
#
###########################################################################
# strftime() format strings. man 3 strftime for information on the
# meanings of the format specifiers. Short version:
# %a = weekday name (short) %H = hour
# %b = month name (short) %M = minute
# %d = day of month %S = second
# %Y = year %Z = time zone
# This is used as the format string for strftime() for a date and time
# together.
STRFTIME_DATE_TIME_FORMAT
%b %d %H:%M:%S %Y %Z
# This is used as the format string for strftime() for a date alone in long
# format (English: including weekday).
STRFTIME_LONG_DATE_FORMAT
%a %b %d %Y
# This is used as the format string for strftime() for a date alone in
# short format (English: without weekday).
STRFTIME_SHORT_DATE_FORMAT
%b %d %Y
# These tell our strftime() what the names of months and days are. If you
# don't use %a, %A, %b, or %B in your strftime() strings above, you can
# leave these empty. However, if you enter names, they MUST stay in order,
# one per line, and the list MUST be complete!
# %a
STRFTIME_DAYS_SHORT
Sun
Mon
Tue
Wed
Thu
Fri
Sat
# %A
STRFTIME_DAYS_LONG
Sunday
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
# %b
STRFTIME_MONTHS_SHORT
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
# %B
STRFTIME_MONTHS_LONG
January
February
March
April
May
June
July
August
September
October
November
December
# This is used in ChanServ/NickServ INFO displays.
COMMA_SPACE
,
# Various error messages.
USER_RECORD_NOT_FOUND
Internal error - unable to process request.
UNKNOWN_COMMAND
Unknown command %s.
UNKNOWN_COMMAND_HELP
Unknown command %s. "%R%s HELP" for help.
SYNTAX_ERROR
Syntax: %s
MORE_INFO
%R%s HELP %s for more information.
NO_HELP_AVAILABLE
No help available for %s.
OBSOLETE_COMMAND
This command is obsolete; use %s instead.
BAD_USERHOST_MASK
Mask must be in the form user@host.
BAD_EXPIRY_TIME
Invalid expiry time.
USERHOST_MASK_TOO_WIDE
%s coverage is too wide; Please use a more specific mask.
SERVICE_OFFLINE
%s is currently offline.
READ_ONLY_MODE
Notice: Services is in read-only mode; changes will not be saved!
PASSWORD_INCORRECT
Password incorrect.
INVALID_TARGET
"/msg %s" is no longer supported. Use "/msg %s@%s" or "/%s" instead.
# What's the difference between "Access denied" and "Permission denied"?
# Very little; you can safely make them the same message with no real loss
# of meaning. If you want to make a distinction, "Access denied" is
# usually used more generally; for example, a non-oper trying to access
# OperServ gets "Access denied", while a non-Services admin trying to use
# NickServ SASET NOEXPIRE gets "Permission denied".
ACCESS_DENIED
Access denied.
PERMISSION_DENIED
Permission denied.
RAW_DISABLED
The RAW option has been disabled. If you must use it, configure the DisableRaw directive in Services configuration.
MORE_OBSCURE_PASSWORD
Please try again with a more obscure password. Passwords should be at least five characters long, should not be something easily guessed (e.g. your real name or your nick), and cannot contain the space or tab characters.
PASSWORD_TOO_LONG
Your password is too long. Please try again with a shorter password.
NICK_NOT_REGISTERED
Your nick isn't registered.
NICK_NOT_REGISTERED_HELP
Your nick isn't registered. Type %R%s HELP for information on registering your nickname.
NICK_X_IS_SERVICES
Nick %s is part of this Network's Services.
NICK_X_NOT_REGISTERED
Nick %s isn't registered.
NICK_X_IN_USE
Nick %s is currently in use.
NICK_X_NOT_IN_USE
Nick %s isn't currently in use.
NICK_X_NOT_ON_CHAN
%s is not currently on channel %s.
NICK_X_FORBIDDEN
Nick %s may not be registered or used.
NICK_X_FORBIDDEN_OPER
Nick %s has been forbidden by %s:
%s
NICK_X_ILLEGAL
Nick %s is an illegal nickname and cannot be used.
NICK_X_TRUNCATED
Nick %s was truncated to %d characters.
NICK_X_SUSPENDED
Nick %s is currently suspended.
CHAN_X_NOT_REGISTERED
Channel %s isn't registered.
CHAN_X_NOT_IN_USE
Channel %s doesn't exist.
CHAN_X_FORBIDDEN
Channel %s may not be registered or used.
CHAN_X_FORBIDDEN_OPER
Channel %s has been forbidden by %s:
%s
CHAN_X_SUSPENDED
Suspended: [%s] %s
NICK_IDENTIFY_REQUIRED
Password authentication required for that command.
Retry after typing %R%s IDENTIFY password.
CHAN_IDENTIFY_REQUIRED
Password authentication required for that command.
Retry after typing %R%s IDENTIFY %s password.
MAIL_DISABLED
Services have been configured to not send mail.
MAIL_INVALID
E-mail for %s is invalid.
MAIL_X_INVALID
%s is not a valid e-mail address.
MAIL_LATER
Cannot send mail now; please retry a little later.
MAIL_DELAYED
Please wait %d seconds and retry.
NO_REASON
No reason
UNKNOWN
<unknown>
# Duration system
DURATION_DAY
1 day
DURATION_DAYS
%d days
DURATION_HOUR
1 hour
DURATION_HOURS
%d hours
DURATION_MINUTE
1 minute
DURATION_MINUTES
%d minutes
DURATION_SECOND
1 second
DURATION_SECONDS
%d seconds
# Human readable expiration
NO_EXPIRE
does not expire
EXPIRES_SOON
expires at next database update
EXPIRES_M
expires in %d minutes
EXPIRES_1M
expires in %d minute
EXPIRES_HM
expires in %d hours, %d minutes
EXPIRES_H1M
expires in %d hours, %d minute
EXPIRES_1HM
expires in %d hour, %d minutes
EXPIRES_1H1M
expires in %d hour, %d minute
EXPIRES_D
expires in %d days
EXPIRES_1D
expires in %d day
# Generic Footer message
END_OF_ANY_LIST
End of %s list.
# Generic List error messages
LIST_INCORRECT_RANGE
Incorrect range specified. The correct syntax is #from-to.
CS_LIST_INCORRECT_RANGE
To search for channels starting with #, search for the channel
name without the #-sign prepended (anope instead of #anope).
# Generic help limited to messages
HELP_LIMIT_SERV_OPER
Limited to Services Operators.
HELP_LIMIT_SERV_ADMIN
Limited to Services Administrators.
HELP_LIMIT_SERV_ROOT
Limited to Services Roots.
HELP_LIMIT_IRC_OPER
Limited to IRC Operators.
HELP_LIMIT_HOST_SETTER
Limited to Host Setters.
HELP_LIMIT_HOST_REMOVER
Limited to Host Removers.
###########################################################################
#
# NickServ messages
#
###########################################################################
# Automatic messages
NICK_IS_REGISTERED
This nick is owned by someone else. Please choose another.
(If this is your nick, type %R%s IDENTIFY password.)
NICK_IS_SECURE
This nickname is registered and protected. If it is your
nick, type %R%s IDENTIFY password. Otherwise,
please choose a different nick.
NICK_MAY_NOT_BE_USED
This nickname may not be used. Please choose another one.
FORCENICKCHANGE_IN_1_MINUTE
If you do not change within one minute, I will change your nick.
FORCENICKCHANGE_IN_20_SECONDS
If you do not change within 20 seconds, I will change your nick.
FORCENICKCHANGE_NOW
This nickname has been registered; you may not use it.
FORCENICKCHANGE_CHANGING
Your nickname is now being changed to %s
# REGISTER responses
NICK_REGISTER_SYNTAX
REGISTER password [email]
NICK_REGISTER_SYNTAX_EMAIL
REGISTER password email
NICK_REGISTRATION_DISABLED
Sorry, nickname registration is temporarily disabled.
NICK_REGISTRATION_FAILED
Sorry, registration failed.
NICK_REG_PLEASE_WAIT
Please wait %d seconds before using the REGISTER command again.
NICK_CANNOT_BE_REGISTERED
Nickname %s may not be registered.
NICK_ALREADY_REGISTERED
Nickname %s is already registered!
NICK_REGISTERED
Nickname %s registered under your account: %s
NICK_REGISTERED_NO_MASK
Nickname %s registered.
NICK_PASSWORD_IS
Your password is %s - remember this for later use.
NICK_REG_DELAY
You must have been using this nick for at least %d seconds to register.
# GROUP responses
NICK_GROUP_SYNTAX
GROUP target password
NICK_GROUP_DISABLED
Sorry, nickname grouping is temporarily disabled.
NICK_GROUP_FAILED
Sorry, grouping failed.
NICK_GROUP_PLEASE_WAIT
Please wait %d seconds before using the GROUP command again.
NICK_GROUP_CHANGE_DISABLED
Your nick is already registered; type %R%s DROP first.
NICK_GROUP_SAME
You are already a member of the group of %s.
NICK_GROUP_TOO_MANY
There are too many nicks in %s's group; list them and drop some.
Type %R%s HELP GLIST and %R%s HELP DROP
for more information.
NICK_GROUP_JOINED
You are now in the group of %s.
# IDENTIFY responses
NICK_IDENTIFY_SYNTAX
IDENTIFY password
NICK_IDENTIFY_FAILED
Sorry, identification failed.
NICK_IDENTIFY_SUCCEEDED
Password accepted - you are now recognized.
NICK_IDENTIFY_EMAIL_REQUIRED
You must now supply an e-mail for your nick.
This e-mail will allow you to retrieve your password in
case you forget it.
NICK_IDENTIFY_EMAIL_HOWTO
Type %R%S SET EMAIL e-mail in order to set your e-mail.
Your privacy is respected; this e-mail won't be given to
any third-party person.
NICK_ALREADY_IDENTIFIED
You are already identified.
# UPDATE responses
NICK_UPDATE_SUCCESS
Status updated (memos, vhost, chmodes, flags).
# LOGOUT responses
NICK_LOGOUT_SYNTAX
LOGOUT
NICK_LOGOUT_SUCCEEDED
Your nick has been logged out.
NICK_LOGOUT_X_SUCCEEDED
Nick %s has been logged out.
NICK_LOGOUT_SERVICESADMIN
Can't logout %s because he's a services administrator.
# DROP responses
NICK_DROP_DISABLED
Sorry, nickname de-registration is temporarily disabled.
NICK_DROPPED
Your nickname has been dropped.
NICK_X_DROPPED
Nickname %s has been dropped.
# SET responses
NICK_SET_SYNTAX
SET option parameters
NICK_SET_SERVADMIN_SYNTAX
SET [nick] option parameters
NICK_SET_DISABLED
Sorry, nickname option setting is temporarily disabled.
NICK_SET_UNKNOWN_OPTION
Unknown SET option %s.
NICK_SET_OPTION_DISABLED
Option %s cannot be set on this network.
# SET DISPLAY responses
NICK_SET_DISPLAY_INVALID
The new display MUST be a nickname of your nickname group!
NICK_SET_DISPLAY_CHANGED
The new display is now %s.
# SET PASSWORD responses
NICK_SET_PASSWORD_FAILED
Sorry, couldn't change password.
NICK_SET_PASSWORD_CHANGED
Password changed.
NICK_SET_PASSWORD_CHANGED_TO
Password changed to %s.
# SET LANGUAGE responses
NICK_SET_LANGUAGE_SYNTAX
SET LANGUAGE number
NICK_SET_LANGUAGE_UNKNOWN
Unknown language number %d. Type %R%s HELP SET LANGUAGE for a list of languages.
NICK_SET_LANGUAGE_CHANGED
Language changed to English.
# SET URL responses
NICK_SET_URL_CHANGED
URL changed to %s.
NICK_SET_URL_UNSET
URL unset.
# SET EMAIL responses
NICK_SET_EMAIL_CHANGED
E-mail address changed to %s.
NICK_SET_EMAIL_UNSET
E-mail address unset.
NICK_SET_EMAIL_UNSET_IMPOSSIBLE
You cannot unset the e-mail on this network.
# SET ICQ responses
NICK_SET_ICQ_CHANGED
ICQ number set to %s.
NICK_SET_ICQ_UNSET
ICQ number unset.
NICK_SET_ICQ_INVALID
%s is not a valid number.
# SET GREET responses
NICK_SET_GREET_CHANGED
Greet message changed to %s.
NICK_SET_GREET_UNSET
Greet message unset.
# SET PROTECT responses
NICK_SET_KILL_SYNTAX
SET KILL {ON | QUICK | OFF}
NICK_SET_KILL_IMMED_SYNTAX
SET KILL {ON | QUICK | IMMED | OFF}
NICK_SET_KILL_ON
Protection is now ON.
NICK_SET_KILL_QUICK
Protection is now ON, with a reduced delay.
NICK_SET_KILL_IMMED
Protection is now ON, with no delay.
NICK_SET_KILL_IMMED_DISABLED
The IMMED option is not available on this network.
NICK_SET_KILL_OFF
Protection is now OFF.
# SET SECURE responses
NICK_SET_SECURE_SYNTAX
SET SECURE {ON | OFF}
NICK_SET_SECURE_ON
Secure option is now ON.
NICK_SET_SECURE_OFF
Secure option is now OFF.
# SET PRIVATE responses
NICK_SET_PRIVATE_SYNTAX
SET PRIVATE {ON | OFF}
NICK_SET_PRIVATE_ON
Private option is now ON.
NICK_SET_PRIVATE_OFF
Private option is now OFF.
# SET HIDE responses
NICK_SET_HIDE_SYNTAX
SET HIDE {EMAIL | USERMASK | QUIT} {ON | OFF}
NICK_SET_HIDE_EMAIL_ON
Your E-mail address will now be hidden from %s INFO displays.
NICK_SET_HIDE_EMAIL_OFF
Your E-mail address will now be shown in %s INFO displays.
NICK_SET_HIDE_MASK_ON
Your last seen user@host mask will now be hidden from %s INFO displays.
NICK_SET_HIDE_MASK_OFF
Your last seen user@host mask will now be shown in %s INFO displays.
NICK_SET_HIDE_QUIT_ON
Your last quit message will now be hidden from %s INFO displays.
NICK_SET_HIDE_QUIT_OFF
Your last quit message will now be shown in %s INFO displays.
NICK_SET_HIDE_STATUS_ON
Your services access status will now be hidden from %s INFO displays.
NICK_SET_HIDE_STATUS_OFF
Your services access status will now be shown in %s INFO displays.
# SET MSG responses
NICK_SET_MSG_SYNTAX
SET MSG {ON | OFF}
NICK_SET_MSG_ON
Services will now reply to you with messages.
NICK_SET_MSG_OFF
Services will now reply to you with notices.
# SET AUTOOP responses
NICK_SET_AUTOOP_SYNTAX
SET AUTOOP {ON | OFF}
NICK_SET_AUTOOP_ON
Services will now autoop you in channels.
NICK_SET_AUTOOP_OFF
Services will no longer autoop you in channels.
# SASET responses
NICK_SASET_SYNTAX
SASET nickname option parameters
NICK_SASET_DISABLED
Sorry, nickname option setting is temporarily disabled.
NICK_SASET_UNKNOWN_OPTION
Unknown SASET option %s.
NICK_SASET_BAD_NICK
Nickname %s not registered.
NICK_SASET_OPTION_DISABLED
Option %s cannot be set on this network.
# SASET DISPLAY responses
NICK_SASET_DISPLAY_INVALID
The new display for %s MUST be a nickname of the nickname group!
NICK_SASET_DISPLAY_CHANGED
The new display is now %s.
# SASET PASSWORD responses
NICK_SASET_PASSWORD_FAILED
Sorry, couldn't change password for %s.
NICK_SASET_PASSWORD_CHANGED
Password for %s changed.
NICK_SASET_PASSWORD_CHANGED_TO
Password for %s changed to %s.
# SASET URL responses
NICK_SASET_URL_CHANGED
URL for %s changed to %s.
NICK_SASET_URL_UNSET
URL %s unset.
# SASET EMAIL responses
NICK_SASET_EMAIL_CHANGED
E-mail address for %s changed to %s.
NICK_SASET_EMAIL_UNSET
E-mail address for %s unset.
NICK_SASET_EMAIL_UNSET_IMPOSSIBLE
You cannot unset the e-mail on this network.
# SASET ICQ responses
NICK_SASET_ICQ_CHANGED
ICQ number for %s set to %s.
NICK_SASET_ICQ_UNSET
ICQ number for %s unset.
NICK_SASET_ICQ_INVALID
%s is not a valid number.
# SASET GREET responses
NICK_SASET_GREET_CHANGED
Greet message for %s changed to %s.
NICK_SASET_GREET_UNSET
Greet message for %s unset.
# SASET PROTECT responses
NICK_SASET_KILL_SYNTAX
SASET nickname KILL {ON | QUICK | OFF}
NICK_SASET_KILL_IMMED_SYNTAX
SASET nickname KILL {ON | QUICK | IMMED | OFF}
NICK_SASET_KILL_ON
Protection is now ON for %s.
NICK_SASET_KILL_QUICK
Protection is now ON for %s, with a reduced delay.
NICK_SASET_KILL_IMMED
Protection is now ON for %s, with no delay.
NICK_SASET_KILL_IMMED_DISABLED
The IMMED option is not available on this network.
NICK_SASET_KILL_OFF
Protection is now OFF for %s.
# SASET SECURE responses
NICK_SASET_SECURE_SYNTAX
SASET nickname SECURE {ON | OFF}
NICK_SASET_SECURE_ON
Secure option is now ON for %s.
NICK_SASET_SECURE_OFF
Secure option is now OFF for %s.
# SASET PRIVATE responses
NICK_SASET_PRIVATE_SYNTAX
SASET nickname PRIVATE {ON | OFF}
NICK_SASET_PRIVATE_ON
Private option is now ON for %s.
NICK_SASET_PRIVATE_OFF
Private option is now OFF for %s.
# SASET HIDE responses
NICK_SASET_HIDE_SYNTAX
SASET nickname HIDE {EMAIL | USERMASK | QUIT} {ON | OFF}
NICK_SASET_HIDE_EMAIL_ON
The E-mail address of %s will now be hidden from %s INFO displays.
NICK_SASET_HIDE_EMAIL_OFF
The E-mail address of %s will now be shown in %s INFO displays.
NICK_SASET_HIDE_MASK_ON
The last seen user@host mask of %s will now be hidden from %s INFO displays.
NICK_SASET_HIDE_MASK_OFF
The last seen user@host mask of %s will now be shown in %s INFO displays.
NICK_SASET_HIDE_QUIT_ON
The last quit message of %s will now be hidden from %s INFO displays.
NICK_SASET_HIDE_QUIT_OFF
The last quit message of %s will now be shown in %s INFO displays.
NICK_SASET_HIDE_STATUS_ON
The services access status of %s will now be hidden from %s INFO displays.
NICK_SASET_HIDE_STATUS_OFF
The services access status of %s will now be shown in %s INFO displays.
# SASET MSG responses
NICK_SASET_MSG_SYNTAX
SASAET nickname PRIVATE {ON | OFF}
NICK_SASET_MSG_ON
Services will now reply to %s with messages.
NICK_SASET_MSG_OFF
Services will now reply to %s with notices.
# SASET NOEXPIRE responses
NICK_SASET_NOEXPIRE_SYNTAX
SASET nickname NOEXPIRE {ON | OFF}
NICK_SASET_NOEXPIRE_ON
Nick %s will not expire.
NICK_SASET_NOEXPIRE_OFF
Nick %s will expire.
# SASET AUTOOP responses
NICK_SASET_AUTOOP_SYNTAX
SASET nickname AUTOOP {ON | OFF}
NICK_SASET_AUTOOP_ON
Services will now autoop %s in channels.
NICK_SASET_AUTOOP_OFF
Services will no longer autoop %s in channels.
# SASET LANGUAGE responses
NICK_SASET_LANGUAGE_SYNTAX
SASET nickname LANGUAGE number
NICK_SASET_LANGUAGE_UNKNOWN
Unknown language number %d. Type %R%s HELP SET LANGUAGE for a list of languages.
NICK_SASET_LANGUAGE_CHANGED
Language for %s changed to %s.
# ACCESS responses
NICK_ACCESS_SYNTAX
ACCESS {ADD | DEL | LIST} [mask]
NICK_ACCESS_ALREADY_PRESENT
Mask %s already present on your access list.
NICK_ACCESS_REACHED_LIMIT
Sorry, you can only have %d access entries for a nickname.
NICK_ACCESS_ADDED
%s added to your access list.
NICK_ACCESS_NOT_FOUND
%s not found on your access list.
NICK_ACCESS_DELETED
%s deleted from your access list.
NICK_ACCESS_LIST
Access list:
NICK_ACCESS_LIST_X
Access list for %s:
NICK_ACCESS_LIST_EMPTY
Your access list is empty.
NICK_ACCESS_LIST_X_EMPTY
Access list for %s is empty.
# Status messages
NICK_STATUS_0
STATUS %s 0
NICK_STATUS_1
STATUS %s 1
NICK_STATUS_2
STATUS %s 2
NICK_STATUS_3
STATUS %s 3
# INFO responses
NICK_INFO_SYNTAX
INFO nick [ALL]
NICK_INFO_REALNAME
%s is %s
NICK_INFO_SERVICES_OPER
%s is a services operator.
NICK_INFO_SERVICES_ADMIN
%s is a services admin.
NICK_INFO_SERVICES_ROOT
%s is a services root administrator.
NICK_INFO_ADDRESS
Last seen address: %s
NICK_INFO_ADDRESS_ONLINE
Is online from: %s
NICK_INFO_ADDRESS_ONLINE_NOHOST
%s is currently online.
NICK_INFO_TIME_REGGED
Time registered: %s
NICK_INFO_LAST_SEEN
Last seen time: %s
NICK_INFO_LAST_QUIT
Last quit message: %s
NICK_INFO_URL
URL: %s
NICK_INFO_EMAIL
E-mail address: %s
NICK_INFO_VHOST
vhost: %s
NICK_INFO_VHOST2
vhost: %s@%s
NICK_INFO_ICQ
ICQ #: %d
NICK_INFO_GREET
Greet message: %s
NICK_INFO_OPTIONS
Options: %s
NICK_INFO_EXPIRE
Expires on: %s
# These strings MUST NOT be empty
NICK_INFO_OPT_KILL
Protection
NICK_INFO_OPT_SECURE
Security
NICK_INFO_OPT_PRIVATE
Private
NICK_INFO_OPT_MSG
Message mode
NICK_INFO_OPT_AUTOOP
Auto-op
NICK_INFO_OPT_NONE
None
NICK_INFO_NO_EXPIRE
This nickname will not expire.
NICK_INFO_FOR_MORE
For more verbose information, type %R%s INFO %s ALL.
NICK_INFO_SUSPENDED
This nickname is currently suspended, reason: %s
NICK_INFO_SUSPENDED_NO_REASON
This nickname is currently suspended
# LIST responses
NICK_LIST_SYNTAX
LIST pattern
NICK_LIST_SERVADMIN_SYNTAX
LIST pattern [FORBIDDEN] [SUSPENDED] [NOEXPIRE] [UNCONFIRMED]
NICK_LIST_HEADER
List of entries matching %s:
NICK_LIST_RESULTS
End of list - %d/%d matches shown.
# ALIST responses
NICK_ALIST_SYNTAX
ALIST nickname
NICK_ALIST_HEADER
Channels that you have access on:
Num Channel Level Description
NICK_ALIST_HEADER_X
Channels that %s has access on:
Num Channel Level Description
NICK_ALIST_XOP_FORMAT
%3d %c%-20s %-8s %s
NICK_ALIST_ACCESS_FORMAT
%3d %c%-20s %-8d %s
NICK_ALIST_FOOTER
End of list - %d/%d channels shown.
# GLIST responses
NICK_GLIST_HEADER
List of nicknames in your group:
NICK_GLIST_HEADER_X
List of nicknames in the group of %s:
NICK_GLIST_FOOTER
%d nicknames in the group.
NICK_GLIST_REPLY
%c%s
NICK_GLIST_REPLY_ADMIN
%c%s (expires in %s)
# RECOVER responses
NICK_RECOVER_SYNTAX
RECOVER nickname [password]
NICK_NO_RECOVER_SELF
You can't recover yourself!
NICK_RECOVERED
User claiming your nick has been killed.
%R%s RELEASE %s to get it back before %s timeout.
# RELEASE responses
NICK_RELEASE_SYNTAX
RELEASE nickname [password]
NICK_RELEASE_NOT_HELD
Nick %s isn't being held.
NICK_RELEASED
Services' hold on your nick has been released.
# GHOST responses
NICK_GHOST_SYNTAX
GHOST nickname [password]
NICK_NO_GHOST_SELF
You can't ghost yourself!
NICK_GHOST_KILLED
Ghost with your nick has been killed.
# GETPASS responses
NICK_GETPASS_SYNTAX
GETPASS nickname
NICK_GETPASS_UNAVAILABLE
GETPASS command unavailable because encryption is in use.
NICK_GETPASS_PASSWORD_IS
Password for %s is %s.
# GETEMAIL responses
NICK_GETEMAIL_SYNTAX
GETEMAIL user@email-host No WildCards!!
NICK_GETEMAIL_EMAILS_ARE
Emails Match %s to %s.
NICK_GETEMAIL_NOT_USED
No Emails listed for %s.
# SENDPASS responses
NICK_SENDPASS_SYNTAX
SENDPASS nickname
NICK_SENDPASS_UNAVAILABLE
SENDPASS command unavailable because encryption is in use.
NICK_SENDPASS_SUBJECT
Nickname password (%s)
NICK_SENDPASS_HEAD
Hi,
NICK_SENDPASS_LINE_1
You have requested to receive the password of nickname %s by e-mail.
NICK_SENDPASS_LINE_2
The password is %s for security purposes, you should change it as soon as you receive this mail.
NICK_SENDPASS_LINE_3
If you don't know why this mail is sent to you, please ignore it silently.
NICK_SENDPASS_LINE_4
PLEASE DON'T ANSWER TO THIS MAIL!
NICK_SENDPASS_LINE_5
%s administrators.
NICK_SENDPASS_OK
Password of %s has been sent.
# SUSPEND responses
NICK_SUSPEND_SYNTAX
SUSPEND nickname reason
NICK_SUSPEND_SUCCEEDED
Nick %s is now suspended.
NICK_SUSPEND_FAILED
Couldn't suspend nick %s!
# UNSUSPEND responses
NICK_UNSUSPEND_SYNTAX
UNSUSPEND nickname
NICK_UNSUSPEND_SUCCEEDED
Nick %s is now released.
NICK_UNSUSPEND_FAILED
Couldn't release nick %s!
# FORBID responses
NICK_FORBID_SYNTAX
FORBID nickname [reason]
NICK_FORBID_SYNTAX_REASON
FORBID nickname reason
NICK_FORBID_SUCCEEDED
Nick %s is now forbidden.
NICK_FORBID_FAILED
Couldn't forbid nick %s!
# Nick Registraion responses
NICK_REQUESTED
This nick has already been requested, please check your e-mail address for the pass code
NICK_REG_RESENT
Your passcode has been re-sent to %s.
NICK_REG_UNABLE
Nick NOT registered, please try again later.
NICK_IS_PREREG
This nick is awaiting an e-mail verification code before completing registration.
NICK_ENTER_REG_CODE
A passcode has been sent to %s, please type %R%s confirm <passcode> to complete registration
NICK_CONFIRM_NOT_FOUND
Registration step 1 may have expired, please use "%R%s register <password> <email>" first.
NICK_CONFIRM_INVALID
Invalid passcode has been entered, please check the e-mail again, and retry
NICK_REG_MAIL_SUBJECT
Nickname Registration (%s)
NICK_REG_MAIL_HEAD
Hi,
NICK_REG_MAIL_LINE_1
You have requested to register the following nickname %s.
NICK_REG_MAIL_LINE_2
Please type " %R%s confirm %s " to complete registration.
NICK_REG_MAIL_LINE_3
If you don't know why this mail is sent to you, please ignore it silently.
NICK_REG_MAIL_LINE_4
PLEASE DON'T ANSWER TO THIS MAIL!
NICK_REG_MAIL_LINE_5
%s administrators.
NICK_GETPASS_PASSCODE_IS
Passcode for %s is %s.
NICK_FORCE_REG
Nickname %s confirmed
###########################################################################
#
# ChanServ messages
#
###########################################################################
# Access level descriptions
CHAN_LEVEL_AUTOOP
Automatic channel operator status
CHAN_LEVEL_AUTOVOICE
Automatic mode +v
CHAN_LEVEL_AUTOHALFOP
Automatic mode +h
CHAN_LEVEL_AUTOPROTECT
Automatic mode +a
CHAN_LEVEL_AUTODEOP
Channel operator status disallowed
CHAN_LEVEL_NOJOIN
Not allowed to join channel
CHAN_LEVEL_INVITE
Allowed to use INVITE command
CHAN_LEVEL_AKICK
Allowed to use AKICK command
CHAN_LEVEL_SET
Allowed to use SET command (not FOUNDER/PASSWORD)
CHAN_LEVEL_CLEAR
Allowed to use CLEAR command
CHAN_LEVEL_UNBAN
Allowed to use UNBAN command
CHAN_LEVEL_OPDEOP
Allowed to use OP/DEOP commands
CHAN_LEVEL_ACCESS_LIST
Allowed to view the access list
CHAN_LEVEL_ACCESS_CHANGE
Allowed to modify the access list
CHAN_LEVEL_MEMO
Allowed to list/read channel memos
CHAN_LEVEL_ASSIGN
Allowed to assign/unassign a bot
CHAN_LEVEL_BADWORDS
Allowed to use BADWORDS command
CHAN_LEVEL_NOKICK
Never kicked by the bot's kickers
CHAN_LEVEL_FANTASIA
Allowed to use fantaisist commands
CHAN_LEVEL_SAY
Allowed to use SAY and ACT commands