-
Notifications
You must be signed in to change notification settings - Fork 1
/
kdlscan.ini
59 lines (47 loc) · 2.7 KB
/
kdlscan.ini
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
; Kryvich's Delphi Localizer Scanner - Settings
; Skip empty properties ('')
; Set 0 (default) or 1
SkipEmpty=1
; Skip strings without given characters
; Give here letters of a native language of your program
MustHaveChars=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz#АБВГДЕЁЖЗИКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯІЎабвгдеёжзиклмнопрстуфхцчшщъыьэюяіў№
;MustHaveChars=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz#
; Skip specific properties (comma separated list)
SkipNames=Name,Font.Name,Title.Font.Name,TitleFont.Name,DatabaseName,SessionName,IndexFieldNames,IndexName,MasterFields,TableName,FieldName,ImeName,PasswordChar,Fields,Version,DriverName,SQL.Strings,ConnectionString,Provider,LookupKeyFields,LookupResultField,KeyFields,DataField,ValueChecked,ValueUnchecked,KeyField,ListField,CHMPopupTopics,Category,SectionName,Filter,OnAction,OutputName,HotTrackFont.Name
; Skip specific components (comma separated list)
SkipClasses=TDatabase,TAboutBox,TJvSpeedBar,TIdHTTP,TMadExcept,TJvSpeedbarSetupWindow
; Skip resource strings in given units (comma separated list)
SkipUnits=JvResources,JclResources,IdResourceStringsCore,IdResourceStringsOpenSSL,IdResourceStringsProtocols,IdResourceStringsSSPI,IdResourceStrings,System,Vcl,Data
; Use Humanize option to "humanize" processed strings, i.e. to make
; strings more suitable for a viewing and a manually editing.
; If you set Humanize to 0 then strings will be saved in Pascal format.
; Set 0 (default) or 1
Humanize=1
; String-substitution for the #13 character. Also it's used as divider in a TStrings list
; Default value is \
HumanizedCR=\^
; String-substitution for the #13#10
; Default value is \
HumanizedCRLF=\+
; String-substitution for the #10 character.
; Default value is \
HumanizedLF=\#10
; Formatting string rules for the "humanizing":
; Source text Result text
; #13 \
; #13#10 \
; #10 <Tabulation>
; header & trailer ' delete
; '' '
; TStrings will be transformed from a format
; Memo1.Lines.Strings='Line 1','Line2','Line3'
; to format
; Memo1.Lines.Strings=Line 1\Line2\Line3
; where "\" is a current value of HumanizeDivider
; Property name substitutions. Use it when it is a third-party control
; in the application, which override a default dfm file saving behavior
; subst=original_property=result_property
; %n means any substring No. n in a property name
; Substs for TVirtualTree (http://www.delphi-gems.com/VirtualTreeview/):
subst=%1.Columns.%2.WideText=%1.Header.Columns.%2.Text
subst=%1.Columns.%2.WideHint=%1.Header.Columns.%2.Hint