-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStrings.txt
14836 lines (14831 loc) · 320 KB
/
Strings.txt
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
development.MPQ
****\\expansion-speech-****.MPQ
****\\expansion-locale-****.MPQ
****\\speech-****.MPQ
****\\locale-****.MPQ
common.MPQ
expansion.MPQ
expansionspeech.MPQ
expansionloc.MPQ
speech.MPQ
dbc.MPQ
fonts.MPQ
sound.MPQ
wmo.MPQ
terrain.MPQ
texture.MPQ
model.MPQ
misc.MPQ
interface.MPQ
alternate.MPQ
..\\Data\\
Data\\
movement
sound
objects
models
animation
world
general
bad allocation
delete
delete[]
DEBUGACTION:
%d%d
Level: %s
Total: %s
Time played:
World transfer pending...
%04d.txt
ClientMovement.txt
World of Warcraft\\Client
MoveLogFile
Error display disabled
Error display enabled
Error display hidden
Error display shown
through warnings
through errors
through fatal errors
fatal errors
errors
warnings
informational messages
only
Displaying
Displaying all system messages
%i is not valid, valid values are 0 - %i
Now filtering: %s
Now filtering: all messages
i.e.: all except objects
use \"except\" to invert mask
Filters: general world ui animation models objects sound movement all
Unknown filter %s
except
Profanity filter disabled
Profanity filter enabled
Spam filter disabled
Spam filter enabled
timingInfo
perf
reloadUI
Texture atlas disabled.
Specified mask %08x is greater than the maximum allowable value of %08x
Texture filtering mode must be in range 0 to %d.
Doodad batching disabled.
Doodad batching enabled.
Particle batching disabled.
Particle batching enabled.
Sorting particles normally.
Sorting all particles as though they were additive.
.\\Client.cpp
****
%s%s
----
Format version in %s file is not supported.
NGIS
Illegal scope string %s in %s: must be \"INTERNAL\" or \"RELEASE\".
RELEASE
Signature string (%s) in %s file does not match game's signature version (%d).
Could not authenticate the %s file.
file: %s
signaturefile
800x600
1024x768
1280x960
1280x1024
1600x1200
16bit
uptodate
nosound
soundchaos
nofixlag
windowed
hwdetect
console
gxoverride
Realm: ???
Realm:
%s %s
WowError.exe
World of Warcraft
Burning Crusade Closed Beta
InstallPath
Blizzard Entertainment World of Warcraft
WoW.stor
e:\\buildserver\\bs2\\work\\wow-code\\branches\\wow-patch-2_4_3-branch\\wow\\source\\Object/ObjectClient/Player_C.h
World transfer aborted...
TRANSFER_ABORT_DIFFICULTY%d
TRANSFER_ABORT_INSUF_EXPAN_LVL%d
TRANSFER_ABORT_ZONE_IN_COMBAT
TRANSFER_ABORT_TOO_MANY_INSTANCES
TRANSFER_ABORT_NOT_FOUND
TRANSFER_ABORT_MAX_PLAYERS
TRANSFER_ABORT_ERROR
Bad SMSG_NEW_WORLD zoneID\n
Bad SMSG_NEW_WORLD\n
showToolsUI
Display the launcher when starting the game
screenshotQuality
Set the quality of screenshots (1 - 10)
screenshotFormat
Set the format of screenshots
jpeg
spamFilter
Toggle spam filter
profanityFilter
Toggle profanity filter
readContest
Status of the Contest notice
readScanning
Status of the Scanning notice
readTerminationWithoutNotice
Status of the Termination without Notice notice
readEULA
Status of the EULA
readTOS
Status of the TOS
lastCharacterIndex
Last character selected
Gamma
DesktopGamma
ErrorFilter
ErrorLevelMax
ErrorLevelMin
ShowErrors
Errors
mouseSpeed
%1.1f
checkAddonVersion
Check interface addon version number
movieSubtitle
Show movie subtitles
expansionMovie
Show expansion movie on startup
movie
Show movie on startup
accountName
Saved account name
login
Pixel shaders disabled.
Pixel shaders unsupported on current hardware.
Pixel shaders enabled.
asyncHandlerTimeout
Engine option: Async read main thread timeout
asyncThreadSleep
Engine option: Async read thread sleep
Failed to open archive %s
%d - %s
'%s' is not a valid timing method. Valid methods are:
Timing test error: %d
Timing method selected: %d - %s
Timing method desired: %d - %s
timingTestError
timingMethod
Local Zone:
%s: %s, %016I64X, (%g,%g,%g)\r\n
Add Ons:
Cursor Item
Last Enemy Target
Locked Target
Interact Target
Current Object Track
Attacking Target
Local Player
WoWBuild: %d\r\n
BENCHMARK_TAXI_AVERAGE_FPS
BENCHMARK_TAXI_MAX_FPS
BENCHMARK_TAXI_MIN_FPS
BENCHMARK_TAXI_RESULTS
e:\\buildserver\\bs2\\work\\wow-code\\branches\\wow-patch-2_4_3-branch\\wow\\source\\DB/WowClientDB.h
%s: Cannot read string table
%s has wrong row size (found %i, expected %i)
%s has wrong number of columns (found %i, expected %i)
Unable to open %s
%s already loaded! Aborting to prevent memory leak!
Bad zone ID %i
e:\\buildserver\\bs2\\work\\wow-code\\branches\\wow-patch-2_4_3-branch\\wow\\source\\WowServices/PatchFiles.h
patch-%s-2.MPQ
patch-2.MPQ
patch-%s-3.MPQ
patch-%s-4.MPQ
patch-3.MPQ
patch-4.MPQ
patch-%s.MPQ
patch-%s-?.MPQ
patch-?.MPQ
patch.MPQ
..\\Data\\%s\\
Data\\%s\\
enUS
enGB
Country
Language
WoW Config
Region
Wow.ini
Missing or corrupted data
Failed to open archive %s: %s
enTW
zhTW
enCN
zhCN
locale
charselect
RunOnce*.wtf
%sWTF\\
Unknown Error
CacheUpdateHandler
videoOptionsVersion
UIFaster
UI acceleration option
M2FasterDebug
programmer control of scene optimization mode
M2Faster
end user control of scene optimization mode - (0-3)
M2UseShaders
skin models using vertex shaders
M2ForceAdditiveParticleSort
force all particles to sort as though they were additive
M2BatchParticles
combine particle emitters to reduce batch count
M2BatchDoodads
combine doodads to reduce batch count
M2UseThreads
multithread model animations
M2UseClipPlanes
use clip planes for sorting transparent objects
M2UseZFill
z-fill transparent objects
pixelShaders
Pixel shaders enable
textureFilteringMode
Texture filtering mode
VIDEO_OPTIONS_RESET
Desired method for game timing
Error reported by the timing validation system
processAffinityMask
Sets which core(s) WoW may execute on - changes require restart to take effect
coresDetected
repairlist
Set the game locale
dbCompress
Database compression
Config.wtf
WoW.mfil
World of WarCraft (build 8606)
SendErrorLogs
player hidden
player visible
togglecloak
togglehelm
showplayer
setrawpos
worldport
port
Coordinates out of range\n
Bad world number: %i\n
Usage: worldport <continentID> [x y z] [facing]
/d?=m\a
#vQ1W0+y\bP
V]^ir\n\r
Fonts\\NIM_____.TTF
Fonts\\blei00d.TTF
Fonts\\ZYKai_T.TTF
Fonts\\2002.TTF
Fonts\\FRIZQT__.TTF
Interface\\Glues\\LoadingBar\\Loading-BarBorder
Interface\\Glues\\LoadingBar\\Loading-BarFill
���<HՈ
Interface\\Glues\\loading
Interface\\WorldMap\\World\\World%d
Interface\\Glues\\LoadingScreens\\DynamicElements
.\\LoadingScreen.cpp
CorExitProcess
mscoree.dll
runtime error
TLOSS error\r\n
SING error\r\n
DOMAIN error\r\n
runtime library incorrectly.\nPlease contact the application's support team for more information.\r\n
R6033\r\n- Attempt to use MSIL code from this assembly during native code initialization\nThis indicates a bug in your application. It is most likely the result of calling an MSIL-compiled (/clr) function from a native constructor or from DllMain.\r\n
R6032\r\n- not enough space for locale information\r\n
R6031\r\n- Attempt to initialize the CRT more than once.\nThis indicates a bug in your application.\r\n
R6030\r\n- CRT not initialized\r\n
R6028\r\n- unable to initialize heap\r\n
R6027\r\n- not enough space for lowio initialization\r\n
R6026\r\n- not enough space for stdio initialization\r\n
R6025\r\n- pure virtual function call\r\n
R6024\r\n- not enough space for _onexit/atexit table\r\n
R6019\r\n- unable to open console device\r\n
R6018\r\n- unexpected heap error\r\n
R6017\r\n- unexpected multithread lock error\r\n
R6016\r\n- not enough space for thread data\r\n
\r\nThis application has requested the Runtime to terminate it in an unusual way.\nPlease contact the application's support team for more information.\r\n
R6009\r\n- not enough space for environment\r\n
R6008\r\n- not enough space for arguments\r\n
R6002\r\n- floating point support not loaded\r\n
Microsoft Visual C++ Runtime Library
<program name unknown>
Runtime Error!\n\nProgram:
.mixcrt
EncodePointer
KERNEL32.DLL
DecodePointer
FlsFree
FlsSetValue
FlsGetValue
FlsAlloc
e+000
IsProcessorFeaturePresent
KERNEL32
(null)
( 8PX\a\b
700WP\a
\b`h````
xpxxxx\b\a\b
_nextafter
_logb
frexp
fmod
_hypot
_cabs
ldexp
modf
fabs
floor
ceil
sqrt
atan2
atan
acos
asin
tanh
cosh
sinh
log10
InitializeCriticalSectionAndSpinCount
kernel32.dll
GetProcessWindowStation
GetUserObjectInformationA
GetLastActivePopup
GetActiveWindow
MessageBoxA
USER32.DLL
\a\b\t\n\v
!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~
Complete Object Locator'
Class Hierarchy Descriptor'
Base Class Array'
Base Class Descriptor at (
Type Descriptor'
`local static thread guard'
`managed vector copy constructor iterator'
`vector vbase copy constructor iterator'
`vector copy constructor iterator'
`dynamic atexit destructor for '
`dynamic initializer for '
`eh vector vbase copy constructor iterator'
`eh vector copy constructor iterator'
`managed vector destructor iterator'
`managed vector constructor iterator'
`placement delete[] closure'
`placement delete closure'
`omni callsig'
delete[]
new[]
`local vftable constructor closure'
`local vftable'
`RTTI
`udt returning'
`copy constructor closure'
`eh vector vbase constructor iterator'
`eh vector destructor iterator'
`eh vector constructor iterator'
`virtual displacement map'
`vector vbase constructor iterator'
`vector destructor iterator'
`vector constructor iterator'
`scalar deleting destructor'
`default constructor closure'
`vector deleting destructor'
`vbase destructor'
`string'
`local static guard'
`typeof'
`vcall'
`vbtable'
`vftable'
operator
delete
new
__unaligned
__restrict
__ptr64
__clrcall
__fastcall
__thiscall
__stdcall
__pascal
__cdecl
__based(
NULL
UNKNOWN
char
('8PW
700PP
`h`hhh\b\b\axppwpp\b\b
\a\b\t\n\v
!\"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~
\a\b\t\n\v
!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~
HH:mm:ss
dddd, MMMM dd, yyyy
MM/dd/yy
December
November
October
September
August
July
June
April
March
February
January
Saturday
Friday
Thursday
Wednesday
Tuesday
Monday
Sunday
am/pm
1#QNAN
1#INF
1#IND
1#SNAN
SunMonTueWedThuFriSat
JanFebMarAprMayJunJulAugSepOctNovDec
CONOUT$
GetProcAddress
FreeEnvironmentStringsW
WideCharToMultiByte
GetEnvironmentStringsW
GetCPInfo
IsValidCodePage
MultiByteToWideChar
GetLocaleInfoW
LCMapStringW
GetStringTypeW
WriteConsoleW
CompareStringW
msvfw32.dll
sensapi.dll
oledlg.dll
oleacc.dll
secur32.dll
avicap32.dll
winspool.drv
winmm.dll
rasapi32.dll
mpr.dll
version.dll
comdlg32.dll
shell32.dll
advapi32.dll
gdi32.dll
user32.dll
unicows.dll
security.dll
ntdll.dll
LdrUnloadDll
GetFileAttributesW
EnableWindow
GetClipboardData
GetPropA
GetWindowLongA
MessageBoxW
RemovePropA
SetPropA
SetWindowLongA
DBFilesClient\\Startup_Strings.dbc
Connected
Disconnected
Can't Connect
SMSG_AUTH_RESPONSE
SMSG_ADDON_INFO
SMSG_AUTH_CHALLENGE
SMSG_CHAR_ENUM
RealmConnection::MessageHandler
Message Under Read!
LOGIN_DISCONNECTED
LOGIN_LOCKED_ENFORCED
LOGIN_PARENTALCONTROL
LOGIN_SUSPENDED
LOGIN_DBBUSY
LOGIN_NOTIME
LOGIN_ALREADYONLINE
LOGIN_BADVERSION
LOGIN_BANNED
LOGIN_SERVER_DOWN
LOGIN_FAILED
LOGIN_INCORRECT_PASSWORD
LOGIN_UNKNOWN_ACCOUNT_CALL
LOGIN_UNKNOWN_ACCOUNT_PIN
LOGIN_UNKNOWN_ACCOUNT
LOGIN_BAD_SERVER_RECODE_PROOF
LOGIN_INVALID_RECODE_MESSAGE
LOGIN_BAD_SERVER_PROOF
LOGIN_INVALID_PROOF_MESSAGE
LOGIN_SRP_ERROR
LOGIN_INVALID_CHALLENGE_MESSAGE
LOGIN_OK
LOGIN_UNKNOWN_%d
REALM_LIST_CANTCONNECT
REALM_LIST_DISCONNECTED
REALM_LIST_CONNECTED
LOGIN_STATE_DISCONNECTED
LOGIN_STATE_CONNECTED
LOGIN_STATE_CHECKSUM
LOGIN_STATE_TOKEN
LOGIN_STATE_MATRIX
LOGIN_STATE_PIN
LOGIN_STATE_DOWNLOADFILE
LOGIN_STATE_FAILED
LOGIN_STATE_AUTHENTICATED
LOGIN_STATE_AUTHENTICATING
LOGIN_STATE_HANDSHAKING
LOGIN_STATE_CONNECTING
LOGIN_STATE_INITIALIZED
.\\Login.cpp
us.logon.worldofwarcraft.com:3724
e:\\buildserver\\bs2\\work\\wow-code\\branches\\wow-patch-2_4_3-branch\\engine\\source\\base\\CDataStore.h
WDataStoreLargeBuffer
WDataStoreSmallBuffer
.\\WDataStore.cpp
.\\WowConnection.cpp
socket() returned %d, reason: %s
can't create socket (No network connection available?)
ServerLink::CMD_GRUNT_AUTH_CHALLENGE
ClientLink::CMD_AUTH_LOGON_CHALLENGE
\a\b\t\n\v
received kick message for account id [%d:%d]
.\\Grunt.cpp
Bad command received [%02X]
Unknown grunt result %d @ %d
Sending HELLO to Grunt server at %s, I am an update server
My server revision is %d
My realm type is %d
My version is %d.%d.%d.%d
My realm name is %s
My public address is %s
Sending HELLO to Grunt at %s
Unable to get the information necessary to identify self to Grunt
Server name=%s
Unknown grunt result %d
account id [%d] has passed authentication, accountflags=0x%lx, timeOptions=0x%lx, timePlayedMinutes=%d, expansionLevel=%d
(Refer-A-Friend) Account [%d] was referred by account [%d]. Referral expires in %.02f minutes.
%d.%d.%d.%d
GruntTimerEvt
ClientLink::CMD_XFER_DATA
ClientLink::CMD_XFER_INITIATE
ClientLink::CMD_REALM_LIST
ClientLink::CMD_AUTH_RECONNECT_PROOF
ClientLink::CMD_AUTH_RECONNECT_CHALLENGE
ClientLink::CMD_AUTH_LOGON_PROOF
ServerLink::CMD_GRUNT_PCWARNING
ServerLink::CMD_GRUNT_KICK
ServerLink::CMD_GRUNT_PROVESESSION
ServerLink::CMD_GRUNT_HELLO
ServerLink::CMD_GRUNT_CONN_PONG
ServerLink::CMD_GRUNT_CONN_PING
ServerLink::CMD_GRUNT_AUTH_VERIFY
Network thread %d did not exit normally
Main network thread did not exit normally
Main network thread did not send stop event normally
Network
Net Thread %d
\t\r\n
nowarnings
22050
fullscreen
detail
depth
timedemo
swtnl
opengl
gametype
loadfile
nolagfix
datadir
.\\Status.cpp
e:\\buildserver\\bs2\\work\\wow-code\\branches\\wow-patch-2_4_3-branch\\engine\\source\\base\\Status.h
format
e:\\BuildServer\\bs2\\work\\WoW-code\\branches\\wow-patch-2_4_3-branch\\Storm\\h\\stpl.h
.\\FileCache.cpp
Logs
fileName
.\\Prop.cpp
.\\RCString.cpp
Engine %x
EvtShutdown
.\\EvtSched.cpp
EvtSched#%d
IEvtScheduler already initialized
Context: interactive = %u, idleTime = %u
context
list->m_linkoffset == m_linkoffset
list != this
list
Error, attempt to kill eventID %d with mismatching handler (%s)!
.\\EvtTimer.cpp
FontString
Shaders\\Pixel\\Desaturate.bls
Texture
name
.\\CSimpleRender.cpp
<unnamed>
alphaMode
Texture %s: Unable to load texture file %s
file
Gradient
Color
bottom
right
left
TexCoords
hidden
Couldn't find inherited node: %s
Recursively inherited node: %s
inherits
string
Offset
Shadow
indented
justifyH
justifyV
spacing
FontString %s: Unable to load font file %s
monochrome
THICK
NORMAL
outline
FontString %s: Missing font height in %s element
FontHeight
font
maxLines
bytes
nonspacewrap
text
$parent
scale
.\\CLayoutFrame.cpp
relative != this
relative
Frame anchored to itself: %s
Couldn't find relative frame: %s
relativeTo
Invalid anchor point in frame: %s
relativePoint
point
SETALLPOINTS set to true in frame with anchors (ignored)
Anchors
true
setAllPoints
Size
SetMultilineIndent
GetMultilineIndent
SetNonSpaceWrap
CanNonSpaceWrap
SetJustifyV
GetJustifyV
SetJustifyH
GetJustifyH
GetStringHeight
GetStringWidth
SetTextHeight
SetSpacing
GetSpacing
SetShadowOffset
GetShadowOffset
SetShadowColor
GetShadowColor
SetTextColor
GetTextColor
SetFormattedText
SetText
GetText
SetFont
GetFont
SetFontObject
GetFontObject
SetAlphaGradient
IsDesaturated
SetDesaturated
GetTexCoordModifiesRect
SetTexCoordModifiesRect
SetTexCoord
GetTexCoord
SetTexture
GetTexture
IsShown
IsVisible
Hide
Show
GetAlpha
SetAlpha
SetGradientAlpha
SetGradient
SetVertexColor
GetVertexColor
SetBlendMode
GetBlendMode
SetDrawLayer
GetDrawLayer
Wrong object type for member function
Attempt to find 'this' in non-framescript object
Attempt to find 'this' in non-table object (used '.' instead of ':' ?)
Usage: %s:SetDrawLayer(\"layer\")
Usage: %s:SetBlendMode(\"mode\")
Usage: %s:SetGradient(\"orientation\", minR, minG, minB, maxR, maxG, maxB)
Usage: %s:SetGradientAlpha(\"orientation\", minR, minG, minB, minA, maxR, maxG, maxB, maxA)
Usage: %s:SetAlpha(alpha)
Usage: %s:SetAlphaGradient(start, length)
Usage: %s:SetFontObject(font or \"font\" or nil)
%s:SetFontObject(): Couldn't find font named %s
%s:SetFontObject(): Wrong object type, expected font
%s:SetFontObject(): Couldn't find 'this' in font object
Usage: %s:SetFont(\"font\", fontHeight [, flags])
%s:SetText(): Font not set
Usage: %s:SetShadowOffset(x, y)
Usage: %s:SetSpacing(spacing)
Usage: %s:SetTextHeight(pixelHeight)
%s:SetTextHeight(): invalid text height: %f
Usage: %s:SetTexCoord(minX, maxX, minY, maxY) or SetTexCoord(ULx, ULy, LLx, LLy, URx, URy, LRx, LRy)
Usage: %s:SetJustifyH(\"justify\")
Usage: %s:SetJustifyV(\"justify\")
Frame
return function(self,name,value) %s end
OnAttributeChanged
OnKeyUp
return function(self,key) %s end
OnKeyDown
return function(self,text) %s end
OnChar
OnReceiveDrag
OnDragStop
OnDragStart
return function(self,delta) %s end
OnMouseWheel
OnMouseUp
return function(self,button) %s end
OnMouseDown
OnLeave
return function(self,motion) %s end
OnEnter
OnHide
OnShow
return function(self,elapsed) %s end
OnUpdate
return function(self,w,h) %s end
OnSizeChanged
OnLoad
NUMPADEQUALS
PRINTSCREEN
CAPSLOCK
NUMLOCK
PAGEDOWN
PAGEUP
HOME
DELETE
INSERT
DOWN
RIGHT
LEFT
BACKSPACE
ENTER
ESCAPE
NUMPADDECIMAL
NUMPADDIVIDE
NUMPADMULTIPLY
NUMPADMINUS
NUMPADPLUS
NUMPAD%d
SPACE
NONE
RALT
LALT
RCTRL
LCTRL
RSHIFT
LSHIFT
Button5
Button4
MiddleButton
RightButton
LeftButton
level
Frame %s: Unknown child node in %s element: %s
Layer
Frames
*:%s
Frame %s: Unknown script element %s
return function(self) %s end
region
number
boolean
Frame %s: attribute element named %s missing value
value
type
Frame %s: unnamed attribute element
Frame %s: Unknown attributes element %s
Attribute
Scripts
Attributes
Layers
HitRectInsets
Backdrop
maxResize
minResize
ResizeBounds
.\\CSimpleFrame.cpp
TitleRegion
protected
clampedToScreen
enableKeyboard
enableMouse
alpha
Frame %s: Unknown frame level: %s
frameLevel
Frame %s: Unknown frame strata: %s
frameStrata
resizable
movable
toplevel
.\\CSimpleTop.cpp
Font
.\\CSimpleFont.cpp
Font %s: Unable to load font file %s
Font %s: Missing font height in %s element
Couldn't find inherited font: %s
ClearAllPoints
SetAllPoints
SetPoint
GetPoint
GetNumPoints
SetHeight
GetHeight
SetWidth
GetWidth
GetBottom
GetTop
GetRight
GetLeft
GetCenter
GetRect
SetParent
GetParent
GetName
CanChangeProtectedState
IsProtected
IsObjectType
GetObjectType
Usage: %s:IsObjectType(\"TYPE\")
%s:SetParent(): Would create a loop parenting to %s
%s:SetParent(): Couldn't find region named '%s'
%s:SetParent(): Wrong parent object type, expected frame
%s:SetParent(): Couldn't find 'this' in parent object
%s:SetParent(): cannot create a 'nil' parent for fonts or textures.
Usage: %s:SetWidth(width)
Usage: %s:SetHeight(height)
%s:SetPoint(): %s is dependent on this
%s:SetPoint(): trying to anchor to itself
%s:SetPoint(): Couldn't find region named '%s'
%s:SetPoint(): Unknown region point
Usage: %s:SetPoint(\"point\" [, region or nil] [, \"relativePoint\"] [, offsetX, offsetY])
%s:SetAllPoints(): %s is dependent on this
%s:SetAllPoints(): trying to anchor to itself
%s:SetAllPoints(): Couldn't find region named '%s'
SetBackdropBorderColor
GetBackdropBorderColor
SetBackdropColor
GetBackdropColor
SetBackdrop
GetBackdrop
IsMouseWheelEnabled
EnableMouseWheel
IsMouseEnabled
EnableMouse
IsKeyboardEnabled
EnableKeyboard
RegisterForDrag
IsClampedToScreen
SetClampedToScreen
IsUserPlaced
SetUserPlaced
StopMovingOrSizing
StartSizing
StartMoving
IsResizable
SetResizable
IsMovable
SetMovable
SetMaxResize
GetMaxResize
SetMinResize
GetMinResize
SetClampRectInsets
GetClampRectInsets
SetHitRectInsets
GetHitRectInsets
Lower
Raise
DisableDrawLayer
EnableDrawLayer
IsToplevel
SetToplevel
SetID
GetID
GetEffectiveAlpha
SetScale
GetScale
GetEffectiveScale
SetAttribute
GetAttribute
AllowAttributeChanges
IsEventRegistered
UnregisterAllEvents
RegisterAllEvents
UnregisterEvent
RegisterEvent
HookScript
SetScript
GetScript
HasScript
SetFrameLevel
GetFrameLevel
SetFrameStrata
GetFrameStrata
GetChildren
GetNumChildren
GetRegions
GetNumRegions
GetBoundsRect
CreateFontString
CreateTexture
CreateTitleRegion
GetTitleRegion
IsFrameType
GetFrameType
.\\CSimpleFrameScript.cpp
Usage: %s:SetFrameStrata(level)
%s:SetFrameStrata(): Unknown frame strata: %s
Usage: %s:SetFrameLevel(level)
%s:SetFrameLevel(): Passed negative frame level: %d
Usage: %s:HasScript(\"type\")
%s doesn't have a \"%s\" script
Usage: %s:GetScript(\"type\")
Usage: %s:SetScript(\"type\", function)
Usage: %s:HookScript(\"type\", function)
Usage: %s:RegisterEvent(\"event\")
Usage: %s:UnregisterEvent(\"event\")
Usage: %s:IsEventRegistered(\"event\")
Usage: %s:GetAttribute(\"name\")
Usage: %s:SetAttribute(\"name\", value)
Usage: %s:SetScale(scale)
%s:SetScale(): Scale must be > 0
Usage: %s:SetAlpha(alpha 0 to 1)
Usage: %s:SetID(ID)
Usage: %s:SetHitRectInsets(left, right, top, bottom)