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} '<häh?>', //no ID assigned, so far
{trLanguage} 'German',
//map
{trUnits} strKeep, //'Units',
{trClassHierarchy} 'Klassenhierarchie',
{trCio} 'Klassen, Interfaces und Objects',
{trNestedCR} strToDo, //'Nested Classes and Records',
{trNestedTypes} strToDo, //'Nested Types',
{trIdentifiers} 'Bezeichner',
{trGvUses} 'Graph der Unit-Abhängigkeiten',
{trGvClasses} 'Graph der Klassenhierarchie',
//tables and members
{trClasses} 'Klassen',
{trClass} 'Klasse',
{trDispInterface} strKeep, //'DispInterface',
{trInterface} strKeep, //'Interface', 'Schnittstelle'?
{trObjects} strKeep, //'Objects',
{trObject} strKeep, //'Object',
{trRecord} strKeep, //'Record',
{trPacked} strToDo, //'Packed',
{trHierarchy} 'Hierarchie',
{trFields} 'Felder',
{trMethods} 'Methoden',
{trProperties} 'Eigenschaften',
{trLibrary} 'Bibliothek',
{trPackage} strKeep, //'Package',
{trProgram} 'Programm',
{trUnit} strKeep, //'Unit',
{trUses} strKeep, //'Uses',
{trConstants} 'Konstanten',
{trFunctionsAndProcedures} 'Funktionen und Prozeduren',
{trTypes} 'Datentypen',
{trType} strKeep, //'Type', 'Typ'?
{trVariables} 'Variablen',
{trAuthors} 'Autoren',
{trAuthor} 'Autor',
{trCreated} 'Erstellt',
{trLastModified} 'Letzte Änderung',
{trSubroutine} 'Unterprogramm',
{trParameters} 'Parameter',
{trReturns} 'Result',
{trExceptionsRaised} 'Wirft Ausnahmen', //'Exceptions raised',
{trExceptions} 'Ausnahmen',
{trException} strKeep, //'Exception',
{trEnum} strKeep, //'Enumeration',
//visibilities
{trVisibility} 'Sichtbarkeit',
{trPrivate} strKeep, //'Private',
{trStrictPrivate} strKeep, //'Strict Private',
{trProtected} strKeep, //'Protected',
{trStrictProtected} strKeep, //'Strict Protected',
{trPublic} strKeep, //'Public',
{trPublished} strKeep, //'Published',
{trAutomated} strKeep, //'Automated',
{trImplicit} strKeep, //'Implicit',
//hints
{trDeprecated} 'Dieses Symbol sollte nicht (mehr) verwendet werden.',
{trPlatformSpecific} 'Dieses Symbol ist plattformspezifisch.',
{trLibrarySpecific} 'Dieses Symbol ist spezifisch für eine bestimmte Bibliothek.',
{trExperimental} strToDo, //'this symbol is experimental',
//headings
{trOverview} 'Übersicht',
{trIntroduction} 'Einführung',
{trConclusion} 'Fazit',
{trAdditionalFile} 'weitere Datei',
{trEnclosingClass} 'Einschließende Klasse',
{trHeadlineCio} 'Alle Klassen, Schnittstellen, Objekte und Records',
{trHeadlineConstants} 'Alle Konstanten',
{trHeadlineFunctionsAndProcedures} 'Alle Funktionen und Prozeduren',
{trHeadlineIdentifiers} 'Alle Bezeichner',
{trHeadlineTypes} 'Alle Typen',
{trHeadlineUnits} 'Alle Units',
{trHeadlineVariables} 'Alle Variablen',
{trSummaryCio} 'Zusammenfassung aller Klassen, Schnittstellen, Objekte und Records',
//column headings
{trDeclaration} 'Deklaration',
{trDescription} 'Beschreibung',
{trDescriptions} 'Ausführliche Beschreibungen',
{trName} strKeep, //'Name',
{trValues} 'Werte',
//tags with inbuilt heading
{trWarningTag} 'Warnung',
{trNoteTag} 'Hinweis',
//empty
{trNone} 'Keine',
{trNoCIOs} 'Die Units enthalten keine Klassen, Interfaces, Objects oder Records.',
{trNoCIOsForHierarchy} 'Die Units enthalten keine Klassen, Interfaces oder Objects.',
{trNoTypes} 'Die Units enthalten keine Typen.',
{trNoVariables} 'Die Units enthalten keine Variablen.',
{trNoConstants} 'Die Units enthalten keine Konstanten.',
{trNoFunctions} 'Die Units enthalten keine Funktionen oder Prozeduren.',
{trNoIdentifiers} 'Die Units enthalten keine Bezeichner.',
//misc
{trHelp} 'Hilfe',
{trLegend} 'Legende',
{trMarker} 'Markierung',
{trWarningOverwrite} 'Achtung: Nicht ändern - diese Datei wurde automatisch erstellt und wird möglicherweise überschrieben',
{trWarning} 'Warnung',
{trGeneratedBy} 'Erstellt mit',
{trGeneratedOn} strToDo, //'Generated on'
{trOnDateTime} 'am',
{trSearch} 'Suchen',
{trSeeAlso} 'Siehe auch',
{trNested} strToDo, //'nested',
{trAttributes} strToDo, //'Attributes',
'' //dummy
);
|