Menu

[327ada]: / Source / VCL / SynEdit / Source / SynEditStrConst.pas  Maximize  Restore  History

Download this file

562 lines (537 with data), 30.4 kB

  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
{-------------------------------------------------------------------------------
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
the specific language governing rights and limitations under the License.
The Original Code is: SynEditStrConst.pas, released 2000-04-07.
The Original Code is based on mwLocalStr.pas by Michael Hieke, part of the
mwEdit component suite.
All Rights Reserved.
Contributors to the SynEdit and mwEdit projects are listed in the
Contributors.txt file.
Alternatively, the contents of this file may be used under the terms of the
GNU General Public License Version 2 or later (the "GPL"), in which case
the provisions of the GPL are applicable instead of those above.
If you wish to allow use of your version of this file only under the terms
of the GPL and not to allow others to use your version of this file
under the MPL, indicate your decision by deleting the provisions above and
replace them with the notice and other provisions required by the GPL.
If you do not delete the provisions above, a recipient may use your version
of this file under either the MPL or the GPL.
$Id: SynEditStrConst.pas,v 1.41.2.5 2009/01/06 16:26:01 maelh Exp $
You may retrieve the latest version of this file at the SynEdit home page,
located at http://SynEdit.SourceForge.net
Known Issues:
-------------------------------------------------------------------------------}
unit SynEditStrConst;
{$I SynEdit.inc}
interface
// NOTE: this is design-time stuff, so no need to have it in stringtables
const
SYNS_ComponentsPage = 'SynEdit';
SYNS_HighlightersPage = 'SynEdit Highlighters';
// NOTE: the following constants are used to store information to the registry,
// INI files or XML files. For maximum compatibility only the chars
// 'A'..'Z', 'a'..'z', '0'..'9', '_' and '-' are allowed!
//
// If you want translated/"pretty"/more detailed descriptions use the
// resourcestrings, i.e. the "friendly" versions below.
// constant names for highlighter attributes
//
//
const
SYNS_AttrAreaAIdentifier = 'Area_A_Identifier';
SYNS_AttrArrowHead = 'ArrowHead';
SYNS_AttrAsm = 'Asm';
SYNS_AttrAsmComment = 'AsmComment';
SYNS_AttrAsmKey = 'AsmKey';
SYNS_AttrAssembler = 'Assembler';
SYNS_AttrAttribute = 'Attribute';
SYNS_AttrAttributeName = 'AttributeName';
SYNS_AttrAttributeValue = 'AttributeValue';
SYNS_AttrBasicTypes = 'BasicTypes';
SYNS_AttrBlock = 'Block';
SYNS_AttrBoolean = 'Booleanvalue';
SYNS_AttrBrackets = 'Brackets';
SYNS_AttrCDATASection = 'CDATA-Section';
SYNS_AttrCharacter = 'Character';
SYNS_AttrClass = 'Class';
SYNS_AttrColor = 'ColorValue';
SYNS_AttrConstant = 'Constant';
SYNS_AttrComment = 'Comment';
SYNS_AttrCondition = 'Condition';
SYNS_AttrConditionalComment = 'ConditionalComment';
SYNS_AttrConsoleOutput = 'ConsoleOutput';
SYNS_AttrDataType = 'DataType';
SYNS_AttrDebugLines = 'DebuggingLines';
SYNS_AttrDefaultPackage = 'DefaultPackages';
SYNS_AttrDelimitedIdentifier = 'DelimitedIdentifier';
SYNS_AttrDir = 'Direction';
SYNS_AttrDirections = 'Directions';
SYNS_AttrDirective = 'Directive';
SYNS_AttrDOCTYPESection = 'DOCTYPE-Section';
SYNS_AttrDocumentation = 'Documentation';
SYNS_AttrElementName = 'ElementName';
SYNS_AttrEmbedSQL = 'EmbeddedSQL';
SYNS_AttrEmbedText = 'EmbeddedText';
SYNS_AttrEntityReference = 'EntityReference';
SYNS_AttrEscapeAmpersand = 'EscapeAmpersand';
SYNS_AttrEvent = 'Event';
SYNS_AttrException = 'Exception';
SYNS_AttrFirstTri = 'FirstTri';
SYNS_AttrFloat = 'Float';
SYNS_AttrForm = 'Form';
SYNS_AttrFourthTri = 'FourthTri';
SYNS_AttrFunction = 'Function';
SYNS_AttrHexadecimal = 'Hexadecimal';
SYNS_AttrIcon = 'IconReference';
SYNS_AttrIdentifier = 'Identifier';
SYNS_AttrIllegalChar = 'IllegalChar';
SYNS_AttrInclude = 'Include';
SYNS_AttrIndicator = 'IndicatorArea';
SYNS_AttrIndirect = 'Indirect';
SYNS_AttrInstructions = 'Instructions';
SYNS_AttrInvalidSymbol = 'InvalidSymbol';
SYNS_AttrInternalFunction = 'InternalFunction';
SYNS_AttrKey = 'Key';
SYNS_AttrLabel = 'Label';
SYNS_AttrLace = 'Lace';
SYNS_AttrLine = 'Line';
SYNS_AttrMacro = 'Macro';
SYNS_AttrMarker = 'Marker';
SYNS_AttrMathMode = 'MathMode';
SYNS_AttrMessage = 'Message';
SYNS_AttrMiscellaneous = 'Miscellaneous';
SYNS_AttrNamespaceAttrName = 'NamespaceAttributeName';
SYNS_AttrNamespaceAttrValue = 'NamespaceAttributeValue';
SYNS_AttrNonReservedKeyword = 'NonreservedKeyword';
SYNS_AttrNull = 'Null';
SYNS_AttrNumber = 'Number';
SYNS_AttrOctal = 'Octal';
SYNS_AttrOperator = 'Operator';
SYNS_AttrOperatorAndSymbols = 'OperatorAndSymbols';
SYNS_AttrOpLine = 'OpLine';
SYNS_AttrOptions = 'Options';
SYNS_AttrPath = 'PathName';
SYNS_AttrPLSQL = 'PLSQL-ReservedWord';
SYNS_AttrPragma = 'Pragma';
SYNS_AttrPredefined = 'Predefined';
SYNS_AttrPreprocessor = 'Preprocessor';
SYNS_AttrProcessingInstr = 'ProcessingInstruction';
SYNS_AttrProcName = 'ProcName';
SYNS_AttrProperty = 'Property';
SYNS_AttrQuad = 'Quad';
SYNS_AttrQualifier = 'Qualifier';
SYNS_AttrRegister = 'Register';
SYNS_AttrReservedWord = 'ReservedWord';
SYNS_AttrResultValue = 'ResultValue';
SYNS_AttrRoundBracket = 'RoundBracket';
SYNS_AttrRpl = 'Rpl';
SYNS_AttrRplKey = 'Rpl-Key';
SYNS_AttrRplComment = 'Rpl-Comment';
SYNS_AttrSASM = 'SASM';
SYNS_AttrSASMComment = 'SASM-Comment';
SYNS_AttrSASMKey = 'SASM-Key';
SYNS_AttrSecondReservedWord = 'SecondReservedWord';
SYNS_AttrSecondTri = 'SecondTri';
SYNS_AttrSection = 'Section';
SYNS_AttrSequence = 'SequenceNumberArea';
SYNS_AttrShape = 'Shape';
SYNS_AttrSingleString = 'SingleQuotedString';
SYNS_AttrSpace = 'Space';
SYNS_AttrSpecialVariable = 'SpecialVariable';
SYNS_AttrSQLKey = 'SQL-Keyword';
SYNS_AttrSQLPlus = 'SQLPlus-Command';
SYNS_AttrSquareBracket = 'SquareBracket';
SYNS_AttrString = 'String';
SYNS_AttrSymbol = 'Symbol';
SYNS_AttrSyntaxError = 'SyntaxError';
SYNS_AttrSystem = 'SystemFunctionsAndVariables';
SYNS_AttrSystemValue = 'SystemValue';
SYNS_AttrTagArea = 'TagArea';
SYNS_AttrTableName = 'TableName';
SYNS_AttrTerminator = 'Terminator';
SYNS_AttrTeXCommand = 'TeX-Command';
SYNS_AttrText = 'Text';
SYNS_AttrTextMathMode = 'TextInMathMode';
SYNS_AttrThirdTri = 'ThirdTri';
SYNS_AttrTixKeyWords = 'Tix-Keywords';
SYNS_AttrTriangle = 'Triangle';
SYNS_AttrUndefinedProperty = 'UndefinedProperty';
SYNS_AttrUnknownWord = 'UnknownWord';
SYNS_AttrURI = 'URI';
SYNS_AttrUser = 'UserFunctionsAndVariables';
SYNS_AttrUserFunction = 'UserFunctions';
SYNS_AttrValue = 'Value';
SYNS_AttrVariable = 'Variable';
SYNS_AttrVisitedURI = 'VisitedURI';
SYNS_AttrVrmlAppearance = 'Vrml_Appearance';
SYNS_AttrVrmlAttribute = 'Vrml_Attribute';
SYNS_AttrVrmlDefinition = 'Vrml_Definition';
SYNS_AttrVrmlEvent = 'Vrml_Event';
SYNS_AttrVrmlGrouping = 'Vrml_Grouping';
SYNS_AttrVrmlInterpolator = 'Vrml_Interpolator';
SYNS_AttrVrmlLight = 'Vrml_Light';
SYNS_AttrVrmlNode = 'Vrml_Node';
SYNS_AttrVrmlParameter = 'Vrml_Parameter';
SYNS_AttrVrmlProto = 'Vrml_Proto';
SYNS_AttrVrmlSensor = 'Vrml_Sensor';
SYNS_AttrVrmlShape = 'Vrml_Shape';
SYNS_AttrVrmlShape_Hint = 'Vrml_Shape_Hint';
SYNS_AttrVrmlTime_dependent = 'Vrml_Time_dependent';
SYNS_AttrVrmlViewpoint = 'Vrml_Viewpoint';
SYNS_AttrVrmlWorldInfo = 'Vrml_WorldInfo';
SYNS_AttrWhitespace = 'Whitespace';
SYNS_AttrWidgetWords = 'Widget-Keywords';
SYNS_AttrX3DDocType = 'X3DDocType';
SYNS_AttrX3DHeader = 'X3DHeader';
// constant language names
SYNS_LangHP48 = 'HP48';
SYNS_LangCAClipper = 'CA-Clipper';
SYNS_LangCPM = 'COAS_Product_Manager_Report';
SYNS_LangCPP = 'CandCPlusPlus';
SYNS_LangCS = 'CSharp';
SYNS_LangJava = 'Java';
SYNS_LangPerl = 'Perl';
SYNS_LangBatch = 'MS-DOS_Batch';
SYNS_LangDfm = 'BorlandForms';
SYNS_LangAWK = 'AWK';
SYNS_LangCORBAIDL = 'CORBA_IDL';
SYNS_LangHTML = 'HTML';
SYNS_LangVBSScript = 'MS-VBScript';
SYNS_LangGalaxy = 'Galaxy';
SYNS_LangGeneral = 'General';
SYNS_LangPascal = 'ObjectPascal';
SYNS_LangX86Asm = 'x86Assembly';
SYNS_LangPython = 'Python';
SYNS_LangTclTk = 'TclTk';
SYNS_LangSQL = 'SQL';
SYNS_LangGembase = 'Gembase';
SYNS_LangINI = 'INI';
SYNS_LangSML = 'StandardML';
SYNS_LangVisualBASIC = 'VisualBasic';
SYNS_LangADSP21xx = 'ADSP21xx';
SYNS_LangPHP = 'PHP';
SYNS_LangSybaseSQL = 'SybaseSQL';
SYNS_LangGeneralMulti = 'General_Multi-Highlighter';
SYNS_LangCache = 'CacheObjectScript';
SYNS_LangCSS = 'CascadingStyleSheet';
SYNS_LangJScript = 'JavaScript';
SYNS_LangJSON = 'JSON';
SYNS_LangKIX = 'KiXtart';
SYNS_LangBaan = 'Baan_4GL';
SYNS_LangFoxpro = 'Foxpro';
SYNS_LangFortran = 'Fortran';
SYNS_Lang68HC11 = '68HC11_Assembler';
SYNS_LangProgress = 'Progress';
SYNS_LangInno = 'InnoSetupScript';
SYNS_LangModelica = 'Modelica';
SYNS_LangModula3 = 'Modula3';
SYNS_LangSDD = 'SemantaDataDictionary';
SYNS_LangXML = 'XML';
SYNS_LangGWS = 'GW-TEL';
SYNS_LangSynGenMsgfiles = 'SynGen_Msg';
SYNS_LangUnreal = 'Unreal';
SYNS_LangST = 'StructuredText';
SYNS_LangCOBOL = 'COBOL';
SYNS_LangTeX = 'TeX';
SYNS_LangRC = 'Resource';
SYNS_LangRuby = 'Ruby';
SYNS_LangNameUNIXShellScript = 'UNIXShellScript';
SYNS_LangHaskell = 'Haskell';
SYNS_LangDOT = 'DOT_Graph_Drawing_Description_language';
SYNS_LangEiffel = 'Eiffel';
SYNS_LangLDraw = 'LEGO_LDraw';
SYNS_LangLLVMIR = 'LLVM IR';
SYNS_LangUnknown = '<Unknown>';
SYNS_LangURI = 'URI';
SYNS_LangVrml97 = 'Vrml97';
resourcestring
SYNS_NoSearchEngineError = 'No search engine has been assigned';
SYNS_Untitled = 'Untitled';
// Friendly names for highlighter attributes
SYNS_FriendlyAttrAreaAIdentifier = 'Area A Identifier';
SYNS_FriendlyAttrArrowHead = 'ArrowHead';
SYNS_FriendlyAttrAsm = 'Asm';
SYNS_FriendlyAttrAsmComment = 'Asm Comment';
SYNS_FriendlyAttrAsmKey = 'Asm Key';
SYNS_FriendlyAttrAssembler = 'Assembler';
SYNS_FriendlyAttrAttribute = 'Attribute';
SYNS_FriendlyAttrAttributeName = 'Attribute Name';
SYNS_FriendlyAttrAttributeValue = 'Attribute Value';
SYNS_FriendlyAttrBasicTypes = 'Basic Types';
SYNS_FriendlyAttrBlock = 'Block';
SYNS_FriendlyAttrBoolean = 'Boolean value';
SYNS_FriendlyAttrBrackets = 'Brackets';
SYNS_FriendlyAttrCDATASection = 'CDATA Section';
SYNS_FriendlyAttrCharacter = 'Character';
SYNS_FriendlyAttrClass = 'Class';
SYNS_FriendlyAttrColor = 'Color Value';
SYNS_FriendlyAttrComment = 'Comment';
SYNS_FriendlyAttrCondition = 'Condition';
SYNS_FriendlyAttrConditionalComment = 'Conditional Comment';
SYNS_FriendlyAttrConsoleOutput = 'Console output';
SYNS_FriendlyAttrConstant = 'Constant';
SYNS_FriendlyAttrDataType = 'Data Type';
SYNS_FriendlyAttrDebugLines = 'Debugging Lines';
SYNS_FriendlyAttrDefaultPackage = 'Default Packages';
SYNS_FriendlyAttrDelimitedIdentifier = 'Delimited Identifier';
SYNS_FriendlyAttrDir = 'Direction';
SYNS_FriendlyAttrDirections = 'Directions';
SYNS_FriendlyAttrDirective = 'Directive';
SYNS_FriendlyAttrDOCTYPESection = 'DOCTYPE Section';
SYNS_FriendlyAttrDocumentation = 'Documentation';
SYNS_FriendlyAttrElementName = 'Element Name';
SYNS_FriendlyAttrEmbedSQL = 'Embedded SQL';
SYNS_FriendlyAttrEmbedText = 'Embedded Text';
SYNS_FriendlyAttrEntityReference = 'Entity Reference';
SYNS_FriendlyAttrEscapeAmpersand = 'Escape Ampersand';
SYNS_FriendlyAttrEvent = 'Event';
SYNS_FriendlyAttrException = 'Exception';
SYNS_FriendlyAttrFirstTri = 'FirstTri';
SYNS_FriendlyAttrFloat = 'Float';
SYNS_FriendlyAttrForm = 'Form';
SYNS_FriendlyAttrFourthTri = 'FourthTri';
SYNS_FriendlyAttrFunction = 'Function';
SYNS_FriendlyAttrHexadecimal = 'Hexadecimal';
SYNS_FriendlyAttrIcon = 'Icon Reference';
SYNS_FriendlyAttrIdentifier = 'Identifier';
SYNS_FriendlyAttrIllegalChar = 'Illegal Char';
SYNS_FriendlyAttrInclude = 'Include';
SYNS_FriendlyAttrIndicator = 'Indicator Area';
SYNS_FriendlyAttrIndirect = 'Indirect';
SYNS_FriendlyAttrInstructions = 'Instructions';
SYNS_FriendlyAttrInternalFunction = 'Internal Function';
SYNS_FriendlyAttrInvalidSymbol = 'Invalid Symbol';
SYNS_FriendlyAttrKey = 'Key';
SYNS_FriendlyAttrLabel = 'Label';
SYNS_FriendlyAttrLace = 'Lace';
SYNS_FriendlyAttrLine = 'Line';
SYNS_FriendlyAttrMacro = 'Macro';
SYNS_FriendlyAttrMarker = 'Marker';
SYNS_FriendlyAttrMathMode = 'Math Mode';
SYNS_FriendlyAttrMessage = 'Message';
SYNS_FriendlyAttrMiscellaneous = 'Miscellaneous';
SYNS_FriendlyAttrNamespaceAttrName = 'Namespace Attribute Name';
SYNS_FriendlyAttrNamespaceAttrValue = 'Namespace Attribute Value';
SYNS_FriendlyAttrNonReservedKeyword = 'Non-reserved Keyword';
SYNS_FriendlyAttrNull = 'Null';
SYNS_FriendlyAttrNumber = 'Number';
SYNS_FriendlyAttrOctal = 'Octal';
SYNS_FriendlyAttrOperator = 'Operator';
SYNS_FriendlyAttrOperatorAndSymbols = 'Operator And Symbols';
SYNS_FriendlyAttrOpLine = 'OpLine';
SYNS_FriendlyAttrOptions = 'Options';
SYNS_FriendlyAttrPath = 'Pathname';
SYNS_FriendlyAttrPLSQL = 'PL/SQL Reserved Word';
SYNS_FriendlyAttrPragma = 'Pragma';
SYNS_FriendlyAttrPredefined = 'Predefined';
SYNS_FriendlyAttrPreprocessor = 'Preprocessor';
SYNS_FriendlyAttrProcessingInstr = 'Processing Instruction';
SYNS_FriendlyAttrProcName = 'Procedure name';
SYNS_FriendlyAttrProperty = 'Property';
SYNS_FriendlyAttrQuad = 'Quad';
SYNS_FriendlyAttrQualifier = 'Qualifier';
SYNS_FriendlyAttrRegister = 'Register';
SYNS_FriendlyAttrReservedWord = 'Reserved Word';
SYNS_FriendlyAttrResultValue = 'Result Value';
SYNS_FriendlyAttrRoundBracket = 'Round Bracket';
SYNS_FriendlyAttrRpl = 'Rpl';
SYNS_FriendlyAttrRplKey = 'Rpl Key';
SYNS_FriendlyAttrRplComment = 'Rpl Comment';
SYNS_FriendlyAttrSASM = 'SASM';
SYNS_FriendlyAttrSASMComment = 'SASM Comment';
SYNS_FriendlyAttrSASMKey = 'SASM Key';
SYNS_FriendlyAttrSecondReservedWord = 'Second Reserved Word';
SYNS_FriendlyAttrSecondTri = 'SecondTri';
SYNS_FriendlyAttrSection = 'Section';
SYNS_FriendlyAttrSequence = 'Sequence Number Area';
SYNS_FriendlyAttrShape = 'Shape';
SYNS_FriendlyAttrSingleString = 'Single Quoted String';
SYNS_FriendlyAttrSpace = 'Space';
SYNS_FriendlyAttrSpecialVariable = 'Special Variable';
SYNS_FriendlyAttrSQLKey = 'SQL Keyword';
SYNS_FriendlyAttrSQLPlus = 'SQL*Plus Command';
SYNS_FriendlyAttrSquareBracket = 'Square Bracket';
SYNS_FriendlyAttrString = 'String';
SYNS_FriendlyAttrSymbol = 'Symbol';
SYNS_FriendlyAttrSyntaxError = 'Syntax Error';
SYNS_FriendlyAttrSystem = 'System Functions and Variables';
SYNS_FriendlyAttrSystemValue = 'System Value';
SYNS_FriendlyAttrTagArea = 'Tag Area';
SYNS_FriendlyAttrTableName = 'Table Name';
SYNS_FriendlyAttrTerminator = 'Terminator';
SYNS_FriendlyAttrTeXCommand = 'TeX Command';
SYNS_FriendlyAttrText = 'Text';
SYNS_FriendlyAttrTextMathMode = 'Text in Math Mode';
SYNS_FriendlyAttrThirdTri = 'ThirdTri';
SYNS_FriendlyAttrTixKeyWords = 'Tix Keywords';
SYNS_FriendlyAttrTriangle = 'Triangle';
SYNS_FriendlyAttrUndefinedProperty = 'Undefined Property';
SYNS_FriendlyAttrUnknownWord = 'Unknown Word';
SYNS_FriendlyAttrURI = 'URI';
SYNS_FriendlyAttrUser = 'User Functions and Variables';
SYNS_FriendlyAttrUserFunction = 'User Functions';
SYNS_FriendlyAttrValue = 'Value';
SYNS_FriendlyAttrVariable = 'Variable';
SYNS_FriendlyAttrVisitedURI = 'Visited URI';
SYNS_FriendlyAttrVrmlAppearance = 'Vrml_Appearance';
SYNS_FriendlyAttrVrmlAttribute = 'Vrml_Attribute';
SYNS_FriendlyAttrVrmlDefinition = 'Vrml_Definition';
SYNS_FriendlyAttrVrmlEvent = 'Vrml_Event';
SYNS_FriendlyAttrVrmlGrouping = 'Vrml_Grouping';
SYNS_FriendlyAttrVrmlInterpolator = 'Vrml_Interpolator';
SYNS_FriendlyAttrVrmlLight = 'Vrml_Light';
SYNS_FriendlyAttrVrmlNode = 'Vrml_Node';
SYNS_FriendlyAttrVrmlParameter = 'Vrml_Parameter';
SYNS_FriendlyAttrVrmlProto = 'Vrml_Proto';
SYNS_FriendlyAttrVrmlSensor = 'Vrml_Sensor';
SYNS_FriendlyAttrVrmlShape = 'Vrml_Shape';
SYNS_FriendlyAttrVrmlShape_Hint = 'Vrml_Shape_Hint';
SYNS_FriendlyAttrVrmlTime_dependent = 'Vrml_Time_dependent';
SYNS_FriendlyAttrVrmlViewpoint = 'Vrml_Viewpoint';
SYNS_FriendlyAttrVrmlWorldInfo = 'Vrml_WorldInfo';
SYNS_FriendlyAttrWhitespace = 'Whitespace';
SYNS_FriendlyAttrWidgetWords = 'Widget Keywords';
SYNS_FriendlyAttrX3DDocType = 'X3DDocType';
SYNS_FriendlyAttrX3DHeader = 'X3DHeader';
// names of exporter output formats
SYNS_ExporterFormatHTML = 'HTML';
SYNS_ExporterFormatRTF = 'RTF';
SYNS_ExporterFormatTeX = 'TeX';
// TCustomSynEdit scroll hint window caption
SYNS_ScrollInfoFmt = '%d - %d';
SYNS_ScrollInfoFmtTop = 'Top Line: %d';
// TSynEditPrintPreview page number
SYNS_PreviewScrollInfoFmt = 'Page: %d';
// strings for property editors etc
SYNS_EDuplicateShortcut = 'Shortcut already exists';
SYNS_ShortcutNone = '<none>';
SYNS_DuplicateShortcutMsg = 'The keystroke "%s" is already assigned ' +
'to another editor command. (%s)';
SYNS_DuplicateShortcutMsg2 = 'The keystroke "%s" is already assigned ' +
'to another editor command.'#13#10'The ' +
'shortcut for this item has not been changed.';
// Filters used for open/save dialog
SYNS_FilterPascal = 'Pascal Files (*.pas;*.pp;*.dpr;*.dpk;*.inc)|*.pas;*.pp;*.dpr;*.dpk;*.inc';
SYNS_FilterHP48 = 'HP48 Files (*.s;*.sou;*.a;*.hp)|*.s;*.sou;*.a;*.hp';
SYNS_FilterCAClipper = 'CA-Clipper Files (*.prg;*.ch;*.inc)|*.prg;*.ch;*.inc';
SYNS_FilterCORBAIDL = 'CORBA IDL Files (*.idl)|*.idl';
SYNS_FilterCPM = 'CPM Reports (*.rdf;*.rif;*.rmf;*.rxf)|*.rdf;*.rif;*.rmf;*.rxf';
SYNS_FilterCPP = 'C/C++ Files (*.c;*.cpp;*.cc;*.h;*.hpp;*.hh;*.cxx;*.hxx;*.cu)|*.c;*.cpp;*.cc;*.h;*.hpp;*.hh;*.cxx;*.hxx;*.cu';
SYNS_FilterCS = 'C# Files (*.cs)|*.cs';
SYNS_FilterDWS = 'DWScript Files (*.dws;*.pas;*.inc)|*.dws;*.pas;*.inc';
SYNS_FilterJava = 'Java Files (*.java)|*.java';
SYNS_FilterPerl = 'Perl Files (*.pl;*.pm;*.cgi)|*.pl;*.pm;*.cgi';
SYNS_FilterAWK = 'AWK Scripts (*.awk)|*.awk';
SYNS_FilterHTML = 'HTML Documents (*.htm;*.html)|*.htm;*.html';
SYNS_FilterVBScript = 'VBScript Files (*.vbs)|*.vbs';
SYNS_FilterGalaxy = 'Galaxy Files (*.gtv;*.galrep;*.txt)|*.gtv;*.galrep;*.txt';
SYNS_FilterPython = 'Python Files (*.py)|*.py';
SYNS_FilterSQL = 'SQL Files (*.sql)|*.sql';
SYNS_FilterTclTk = 'Tcl/Tk Files (*.tcl)|*.tcl';
SYNS_FilterRTF = 'Rich Text Format Documents (*.rtf)|*.rtf';
SYNS_FilterBatch = 'MS-DOS Batch Files (*.bat;*.cmd)|*.bat;*.cmd';
SYNS_FilterDFM = 'Borland Form Files (*.dfm;*.xfm)|*.dfm;*.xfm';
SYNS_FilterX86Assembly = 'x86 Assembly Files (*.asm)|*.asm';
SYNS_FilterGembase = 'GEMBASE Files (*.dml;*.gem)|*.dml;*.gem';
SYNS_FilterINI = 'INI Files (*.ini)|*.ini';
SYNS_FilterSML = 'Standard ML Files (*.sml)|*.sml';
SYNS_FilterVisualBASIC = 'Visual Basic Files (*.bas)|*.bas';
SYNS_FilterADSP21xx = 'DSP Files (*.dsp;*.inc)|*.dsp;*.inc';
SYNS_FilterPHP = 'PHP Files (*.php;*.php3;*.phtml;*.inc)|*.php;*.php3;*.phtml;*.inc';
SYNS_FilterCache = 'Cache Files (*.mac;*.inc;*.int)|*.mac;*.inc;*.int';
SYNS_FilterCSS = 'Cascading Stylesheets (*.css)|*.css';
SYNS_FilterJScript = 'Javascript Files (*.js)|*.js';
SYNS_FilterJSON = 'JSON Files (*.json)|*.json';
SYNS_FilterKIX = 'KiXtart Scripts (*.kix)|*.kix';
SYNS_FilterBaan = 'Baan 4GL Files (*.cln)|*.cln';
SYNS_FilterFoxpro = 'Foxpro Files (*.prg)|*.prg';
SYNS_FilterFortran = 'Fortran Files (*.for)|*.for';
SYNS_FilterAsm68HC11 = '68HC11 Assembler Files (*.hc11;*.asm;*.asc)|*.hc11;*.asm;*.asc';
SYNS_FilterProgress = 'Progress Files (*.w;*.p;*.i)|*.w;*.p;*.i';
SYNS_FilterInno = 'Inno Setup Scripts (*.iss)|*.iss';
SYNS_FilterModelica = 'Modelica Files (*.mo)|*.mo';
SYNS_FilterModula3 = 'Modula-3 Files (*.m3)|*.m3';
SYNS_FilterSDD = 'Semanta DD Files (*.sdd)|*.sdd';
SYNS_FilterXML = 'XML Files (*.xml;*.xsd;*.xsl;*.xslt;*.dtd)|*.xml;*.xsd;*.xsl;*.xslt;*.dtd';
SYNS_FilterGWS = 'GW-TEL Scripts (*.gws)|*.gws';
SYNS_FilterSynGenMsgfiles = 'Msg Files (*.msg)|*.msg';
SYNS_FilterST = 'Structured Text Files (*.st)|*.st';
SYNS_FilterCOBOL = 'COBOL Files (*.cbl;*.cob)|*.cbl;*.cob';
SYNS_FilterTeX = 'TeX Files (*.tex)|*.tex';
SYNS_FilterRC = 'Resource Files (*.rc)|*.rc';
SYNS_FilterRuby = 'Ruby Files (*.rb;*.rbw)|*.rb;*.rbw';
SYNS_FilterUNIXShellScript = 'UNIX Shell Scripts (*.sh)|*.sh';
SYNS_FilterHaskell = 'Haskell Files (*.hs;*.lhs)|*.hs;*.lhs';
SYNS_FilterDOT = 'DOT Graph Drawing Description (*.dot)|*.dot';
SYNS_FilterEiffel = 'Eiffel (*.e;*.ace)|*.e;*.ace';
SYNS_FilterLDraw = 'LEGO LDraw Files (*.ldr)|*.ldr';
SYNS_FilterLLVMIR = 'LLVM IR files (*.ll)|*.ll';
SYNS_FilterURI = 'All Files (*.*)|*.*';
SYNS_FilterVrml97 = 'Vrml97/X3D World (*.wrl;*.wrml;*.vrl;*.vrml;*.x3d)|*.wrl;*.wrml;*.vrl;*.vrml;*.x3d';
// friendly language names
SYNS_FriendlyLangHP48 = 'HP48';
SYNS_FriendlyLangCAClipper = 'CA-Clipper';
SYNS_FriendlyLangCPM = 'COAS Product Manager Report';
SYNS_FriendlyLangCPP = 'C/C++';
SYNS_FriendlyLangCS = 'C#';
SYNS_FriendlyLangJava = 'Java';
SYNS_FriendlyLangPerl = 'Perl';
SYNS_FriendlyLangBatch = 'MS-DOS Batch';
SYNS_FriendlyLangDfm = 'Borland Forms';
SYNS_FriendlyLangAWK = 'AWK';
SYNS_FriendlyLangCORBAIDL = 'CORBA IDL';
SYNS_FriendlyLangHTML = 'HTML';
SYNS_FriendlyLangVBSScript = 'MS VBScript';
SYNS_FriendlyLangGalaxy = 'Galaxy';
SYNS_FriendlyLangGeneral = 'General';
SYNS_FriendlyLangPascal = 'Object Pascal';
SYNS_FriendlyLangX86Asm = 'x86 Assembly';
SYNS_FriendlyLangPython = 'Python';
SYNS_FriendlyLangTclTk = 'Tcl/Tk';
SYNS_FriendlyLangSQL = 'SQL';
SYNS_FriendlyLangGembase = 'Gembase';
SYNS_FriendlyLangINI = 'INI';
SYNS_FriendlyLangSML = 'Standard ML';
SYNS_FriendlyLangVisualBASIC = 'Visual Basic';
SYNS_FriendlyLangADSP21xx = 'ADSP21xx';
SYNS_FriendlyLangPHP = 'PHP';
SYNS_FriendlyLangSybaseSQL = 'Sybase SQL';
SYNS_FriendlyLangGeneralMulti = 'General Multi-Highlighter';
SYNS_FriendlyLangCache = 'Cache Object Script';
SYNS_FriendlyLangCSS = 'Cascading Style Sheet';
SYNS_FriendlyLangJScript = 'JavaScript';
SYNS_FriendlyLangJSON = 'JSON';
SYNS_FriendlyLangKIX = 'KiXtart';
SYNS_FriendlyLangBaan = 'Baan 4GL';
SYNS_FriendlyLangFoxpro = 'Foxpro';
SYNS_FriendlyLangFortran = 'Fortran';
SYNS_FriendlyLang68HC11 = '68HC11 Assembler';
SYNS_FriendlyLangProgress = 'Progress';
SYNS_FriendlyLangInno = 'Inno Setup Script';
SYNS_FriendlyLangModelica = 'Modelica';
SYNS_FriendlyLangModula3 = 'Modula 3';
SYNS_FriendlyLangSDD = 'Semanta Data Dictionary';
SYNS_FriendlyLangXML = 'XML';
SYNS_FriendlyLangGWS = 'GW-TEL';
SYNS_FriendlyLangSynGenMsgfiles = 'SynGen Msg';
SYNS_FriendlyLangUnreal = 'Unreal';
SYNS_FriendlyLangST = 'Structured Text';
SYNS_FriendlyLangCOBOL = 'COBOL';
SYNS_FriendlyLangTeX = 'TeX';
SYNS_FriendlyLangRC = 'Resource';
SYNS_FriendlyLangRuby = 'Ruby';
SYNS_FriendlyLangNameUNIXShellScript = 'UNIX Shell Script';
SYNS_FriendlyLangHaskell = 'Haskell';
SYNS_FriendlyLangDOT = 'DOT Graph Drawing Description language';
SYNS_FriendlyLangEiffel = 'Eiffel';
SYNS_FriendlyLangLDraw = 'LEGO LDraw';
SYNS_FriendlyLangLLVMIR = 'LLVM Intermediate Representation';
SYNS_FriendlyLangUnknown = '<Unknown>';
SYNS_FriendlyLangURI = 'URI';
SYNS_FriendlyLangVrml97 = 'Vrml97';
implementation
end.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.