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} 'Dutch',
//map
{trUnits} strToDo, //'Units',
{trClassHierarchy} strToDo, //'Class Hierarchy',
{trCio} 'Classes, interfaces and objecten',
{trNestedCR} strToDo, // 'Nested Classes and Records',
{trNestedTypes} strToDo, // 'Nested Types',
{trIdentifiers} strToDo, //'Identifiers',
{trGvUses} strToDo, //'Unit dependency graph',
{trGvClasses} strToDo, //'Classes hierarchy graph',
//tables and members
{trClasses} strToDo, //'Classes',
{trClass} strToDo, //'Class',
{trDispInterface} strToDo, //'DispInterface',
{trInterface} strToDo, //'Interface',
{trObjects} 'Objecten',
{trObject} strToDo, //'Object',
{trRecord} strToDo, //'Record',
{trPacked} strToDo, //'Packed',
{trHierarchy} 'Hierarchie',
{trFields} 'Velden',
{trMethods} strToDo, //'Methods',
{trProperties} 'Eigenschappen',
{trLibrary} strToDo, //'Library',
{trPackage} strToDo, //'Package',
{trProgram} 'Programma',
{trUnit} strToDo, //'Unit',
{trUses} strToDo, //'Uses',
{trConstants} 'Constanten',
{trFunctionsAndProcedures} 'Functies en procedures',
{trTypes} 'Typen',
{trType} strToDo, //'Type',
{trVariables} 'Variabelen',
{trAuthors} 'Auteurs',
{trAuthor} 'Auteur',
{trCreated} 'Gemaakt',
{trLastModified} 'Laatste wijziging',
{trSubroutine} strToDo, //'Subroutine',
{trParameters} strToDo, //'Parameters',
{trReturns} strToDo, //'Returns',
{trExceptionsRaised} strToDo, //'Exceptions raised',
{trExceptions} strToDo, //'Exceptions',
{trException} strToDo, //'Exception',
{trEnum} strToDo, //'Enumeration',
//visibilities
{trVisibility} strToDo, //'Visibility',
{trPrivate} strToDo, //'Private',
{trStrictPrivate} strToDo, //'Strict Private',
{trProtected} strToDo, //'Protected',
{trStrictProtected} strToDo, //'Strict Protected',
{trPublic} strToDo, //'Public',
{trPublished} strToDo, //'Published',
{trAutomated} strToDo, //'Automated',
{trImplicit} strToDo, //'Implicit',
//hints
{trDeprecated} strToDo, //'this symbol is deprecated',
{trPlatformSpecific} strToDo, //'this symbol is specific to some platform',
{trLibrarySpecific} strToDo, //'this symbol is specific to some library',
{trExperimental} strToDo, //'this symbol is experimental',
//headings
{trOverview} 'Overzicht',
{trIntroduction} strToDo, //'Introduction',
{trConclusion} strToDo, //'Conclusion',
{trAdditionalFile} strToDo, //'additional file',
{trEnclosingClass} strToDo, //'Enclosing Class',
{trHeadlineCio} 'Alle classes, interfaces en objecten',
{trHeadlineConstants} 'Alle constanten',
{trHeadlineFunctionsAndProcedures} 'Alle functies en procedures',
{trHeadlineIdentifiers} 'Alle identifiers',
{trHeadlineTypes} 'Alle typen',
{trHeadlineUnits} 'Alle units',
{trHeadlineVariables} 'Alle variabelen',
{trSummaryCio} 'Overzicht van classes, interfaces & objecten',
//column headings
{trDeclaration} 'Declaratie',
{trDescription} 'Omschrijving',
{trDescriptions} strToDo, //'Descriptions', 'Detailed Descriptions'?
{trName} 'Naam',
{trValues} strToDo, //'Values',
//tags with inbuilt heading
{trWarningTag} strToDo,
{trNoteTag} strToDo,
//empty
{trNone} 'Geen',
{trNoCIOs} strToDo, //'The units do not contain any classes, interfaces, objects or records.',
{trNoCIOsForHierarchy} strToDo, //'The units do not contain any classes, interfaces or objects.',
{trNoTypes} strToDo, //'The units do not contain any types.',
{trNoVariables} strToDo, //'The units do not contain any variables.',
{trNoConstants} strToDo, //'The units do not contain any constants.',
{trNoFunctions} strToDo, //'The units do not contain any functions or procedures.',
{trNoIdentifiers} strToDo, //'The units do not contain any identifiers.',
//misc
{trHelp} strToDo, //'Help',
{trLegend} strToDo, //'Legend',
{trMarker} strToDo, //'Marker',
{trWarningOverwrite} 'Waarschuwing, wijzig niets - dit bestand is automatisch gegenereerd en zal worden overschreven',
{trWarning} 'Waarschuwing',
{trGeneratedBy} strToDo, //'Generated by',
{trGeneratedOn} strToDo, //'Generated on'
{trOnDateTime} strToDo, //'on',
{trSearch} strToDo, //'Search',
{trSeeAlso} strToDo, //'See also',
{trNested} strToDo, //'nested',
{trAttributes} strToDo, //'Attributes',
'' //dummy
);
|