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
|
RTransTable = (
{trNoTrans} '<what?>', //no ID assigned, so far
{trLanguage} 'English',
//map
{trUnits} 'Units',
{trClassHierarchy} 'Class Hierarchy',
{trCio} 'Classes, Interfaces, Objects and Records',
{trNestedCR} 'Nested Classes and Records',
{trNestedTypes} 'Nested Types',
{trIdentifiers} 'Identifiers',
{trGvUses} 'Unit dependency graph',
{trGvClasses} 'Classes hierarchy graph',
//tables and members
{trClasses} 'Classes',
{trClass} 'Class',
{trDispInterface} 'DispInterface',
{trInterface} 'Interface',
{trObjects} 'Objects',
{trObject} 'Object',
{trRecord} 'Record',
{trPacked} 'Packed',
{trHierarchy} 'Hierarchy',
{trFields} 'Fields',
{trMethods} 'Methods',
{trProperties} 'Properties',
{trLibrary} 'Library',
{trPackage} 'Package',
{trProgram} 'Program',
{trUnit} 'Unit',
{trUses} 'Uses',
{trConstants} 'Constants',
{trFunctionsAndProcedures} 'Functions and Procedures',
{trTypes} 'Types',
{trType} 'Type',
{trVariables} 'Variables',
{trAuthors} 'Authors',
{trAuthor} 'Author',
{trCreated} 'Created',
{trLastModified} 'Last Modified',
{trSubroutine} 'Subroutine',
{trParameters} 'Parameters',
{trReturns} 'Returns',
{trExceptionsRaised} 'Exceptions raised',
{trExceptions} 'Exceptions',
{trException} 'Exception',
{trEnum} 'Enumeration',
//visibilities
{trVisibility} 'Visibility',
{trPrivate} 'Private',
{trStrictPrivate} 'Strict Private',
{trProtected} 'Protected',
{trStrictProtected} 'Strict Protected',
{trPublic} 'Public',
{trPublished} 'Published',
{trAutomated} 'Automated',
{trImplicit} 'Implicit',
//hints
{trDeprecated} 'this symbol is deprecated',
{trPlatformSpecific} 'this symbol is specific to some platform',
{trLibrarySpecific} 'this symbol is specific to some library',
{trExperimental} 'this symbol is experimental',
//headings
{trOverview} 'Overview',
{trIntroduction} 'Introduction',
{trConclusion} 'Conclusion',
{trAdditionalFile} 'additional file',
{trEnclosingClass} 'Enclosing Class',
{trHeadlineCio} 'All Classes, Interfaces, Objects and Records',
{trHeadlineConstants} 'All Constants',
{trHeadlineFunctionsAndProcedures} 'All Functions and Procedures',
{trHeadlineIdentifiers} 'All Identifiers',
{trHeadlineTypes} 'All Types',
{trHeadlineUnits} 'All Units',
{trHeadlineVariables} 'All Variables',
{trSummaryCio} 'Summary of Classes, Interfaces, Objects and Records',
//column headings
{trDeclaration} 'Declaration',
{trDescription} 'Description',
{trDescriptions} 'Detailed Descriptions',
{trName} 'Name',
{trValues} 'Values',
//tags with inbuilt heading
{trWarningTag} 'Warning',
{trNoteTag} 'Note',
//empty
{trNone} 'None',
{trNoCIOs} 'The units do not contain any classes, interfaces, objects or records.',
{trNoCIOsForHierarchy} 'The units do not contain any classes, interfaces or objects.',
{trNoTypes} 'The units do not contain any types.',
{trNoVariables} 'The units do not contain any variables.',
{trNoConstants} 'The units do not contain any constants.',
{trNoFunctions} 'The units do not contain any functions or procedures.',
{trNoIdentifiers} 'The units do not contain any identifiers.',
//misc
{trHelp} 'Help',
{trLegend} 'Legend',
{trMarker} 'Marker',
{trWarningOverwrite} 'Warning: Do not edit - this file has been created automatically and is likely be overwritten',
{trWarning} 'Warning',
{trGeneratedBy} 'Generated by',
{trGeneratedOn} 'Generated on',
{trOnDateTime} 'on',
{trSearch} 'Search',
{trSeeAlso} 'See also',
{trNested} 'nested',
{trAttributes} 'Attributes',
'' //dummy
);
|