typedoc 0.28.19 → 0.28.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/typedoc +1 -1
- package/dist/browser-utils.js +29 -2
- package/dist/cli.js +111 -0
- package/dist/index.js +17888 -44
- package/dist/models.js +3736 -0
- package/dist/node-utils.js +7018 -0
- package/dist/serialization.js +430 -0
- package/dist/{lib → types}/application-events.d.ts +2 -0
- package/dist/{lib → types}/application.d.ts +51 -8
- package/dist/{lib → types}/converter/comments/declarationReferenceResolver.d.ts +1 -1
- package/dist/{lib → types}/converter/comments/discovery.d.ts +3 -3
- package/dist/{lib → types}/converter/comments/index.d.ts +4 -4
- package/dist/{lib → types}/converter/comments/lexer.d.ts +1 -1
- package/dist/{lib → types}/converter/comments/linkResolver.d.ts +1 -1
- package/dist/{lib → types}/converter/comments/parser.d.ts +3 -4
- package/dist/{lib → types}/converter/comments/textParser.d.ts +8 -2
- package/dist/{lib → types}/converter/components.d.ts +1 -1
- package/dist/{lib → types}/converter/context.d.ts +2 -2
- package/dist/{lib → types}/converter/converter.d.ts +6 -8
- package/dist/{lib → types}/converter/factories/signature.d.ts +1 -1
- package/dist/{lib → types}/converter/index.d.ts +1 -0
- package/dist/{lib → types}/converter/plugins/CategoryPlugin.d.ts +2 -2
- package/dist/{lib → types}/converter/plugins/GroupPlugin.d.ts +2 -3
- package/dist/{lib → types}/converter/plugins/IncludePlugin.d.ts +1 -1
- package/dist/{lib → types}/converter/plugins/InheritDocPlugin.d.ts +1 -1
- package/dist/{lib → types}/converter/plugins/LinkResolverPlugin.d.ts +3 -3
- package/dist/{lib → types}/converter/plugins/SourcePlugin.d.ts +1 -2
- package/dist/{lib → types}/converter/plugins/TypePlugin.d.ts +1 -1
- package/dist/{lib → types}/converter/types.d.ts +1 -1
- package/dist/{lib/converter/utils → types/converter/utilities}/reflections.d.ts +1 -1
- package/dist/{lib/converter/utils → types/converter/utilities}/repository.d.ts +14 -13
- package/dist/{index.d.ts → types/index.d.ts} +15 -16
- package/dist/{lib → types}/internationalization/internationalization.d.ts +0 -8
- package/dist/types/internationalization/locale-utils.d.ts +3 -0
- package/dist/types/internationalization/locales/de.d.ts +368 -0
- package/dist/{lib/internationalization/locales/en.d.cts → types/internationalization/locales/en.d.ts} +2 -1
- package/dist/types/internationalization/locales/fr.d.ts +346 -0
- package/dist/types/internationalization/locales/ja.d.ts +307 -0
- package/dist/types/internationalization/locales/ko.d.ts +221 -0
- package/dist/types/internationalization/locales/zh.d.ts +452 -0
- package/dist/{lib → types}/internationalization/translatable.d.ts +1 -1
- package/dist/{lib → types}/models/FileRegistry.d.ts +5 -0
- package/dist/{lib → types}/models/ReflectionSymbolId.d.ts +9 -3
- package/dist/{lib → types}/models/SourceReference.d.ts +5 -3
- package/dist/types/models.d.ts +1 -0
- package/dist/types/node-utils.d.ts +1 -0
- package/dist/{lib → types}/output/components.d.ts +3 -3
- package/dist/{lib → types}/output/events.d.ts +1 -2
- package/dist/{lib → types}/output/formatter.d.ts +1 -2
- package/dist/{lib → types}/output/output.d.ts +2 -2
- package/dist/{lib → types}/output/renderer.d.ts +4 -5
- package/dist/{lib → types}/output/router.d.ts +2 -2
- package/dist/{lib → types}/output/themes/MarkedPlugin.d.ts +3 -3
- package/dist/{lib → types}/output/themes/default/DefaultTheme.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/DefaultThemeRenderContext.d.ts +25 -25
- package/dist/{lib → types}/output/themes/default/layouts/default.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/anchor-icon.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/breadcrumb.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/comment.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/header.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/hierarchy.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/icon.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/index.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/member.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/member.getterSetter.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/member.signature.body.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/member.signature.title.d.ts +2 -2
- package/dist/{lib → types}/output/themes/default/partials/member.signatures.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/member.sources.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/members.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/moduleReflection.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/navigation.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/reflectionPreview.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/toolbar.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/partials/type.d.ts +2 -2
- package/dist/{lib → types}/output/themes/default/partials/typeDetails.d.ts +2 -2
- package/dist/{lib → types}/output/themes/default/partials/typeParameters.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/templates/document.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/templates/hierarchy.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/templates/index.d.ts +1 -1
- package/dist/{lib → types}/output/themes/default/templates/reflection.d.ts +1 -1
- package/dist/{lib → types}/output/themes/lib.d.ts +1 -1
- package/dist/types/serialization.d.ts +1 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -0
- package/dist/{lib → types}/utils/ValidatingFileRegistry.d.ts +1 -1
- package/dist/{lib → types}/utils/entry-point.d.ts +2 -2
- package/dist/{lib → types}/utils/general.d.ts +3 -0
- package/dist/types/utils/index.d.ts +22 -0
- package/dist/{lib → types}/utils/options/declaration.d.ts +1 -1
- package/dist/{lib → types}/utils/options/defaults.d.ts +1 -1
- package/dist/{lib → types}/utils/options/index.d.ts +2 -1
- package/dist/{lib → types}/utils/options/options.d.ts +1 -1
- package/dist/{lib → types}/utils/options/tsdoc-defaults.d.ts +1 -1
- package/dist/{lib → types}/utils/reflections.d.ts +1 -1
- package/dist/{lib → types}/utils/sort.d.ts +1 -2
- package/dist/{lib → types}/utils-common/general.d.ts +4 -4
- package/dist/types/utils-common.d.ts +1 -0
- package/dist/{lib → types}/validation/documentation.d.ts +1 -1
- package/dist/{lib → types}/validation/exports.d.ts +1 -1
- package/dist/types/validation/filePaths.d.ts +3 -0
- package/dist/{lib → types}/validation/links.d.ts +1 -1
- package/dist/{lib → types}/validation/unusedMergeModuleWith.d.ts +1 -1
- package/dist/utils-common.js +1311 -0
- package/package.json +45 -36
- package/static/main.js +1 -1
- package/static/style.css +18 -3
- package/tsdoc.json +4 -0
- package/typedoc-config.schema.json +1 -0
- package/dist/lib/application-events.js +0 -5
- package/dist/lib/application.js +0 -716
- package/dist/lib/cli.js +0 -111
- package/dist/lib/converter/comments/blockLexer.js +0 -391
- package/dist/lib/converter/comments/declarationReferenceResolver.js +0 -218
- package/dist/lib/converter/comments/discovery.js +0 -567
- package/dist/lib/converter/comments/index.js +0 -241
- package/dist/lib/converter/comments/lexer.js +0 -10
- package/dist/lib/converter/comments/lineLexer.js +0 -279
- package/dist/lib/converter/comments/linkResolver.js +0 -186
- package/dist/lib/converter/comments/parser.js +0 -538
- package/dist/lib/converter/comments/rawLexer.js +0 -218
- package/dist/lib/converter/comments/tagName.js +0 -58
- package/dist/lib/converter/comments/textParser.js +0 -372
- package/dist/lib/converter/components.js +0 -3
- package/dist/lib/converter/context.js +0 -311
- package/dist/lib/converter/convert-expression.js +0 -58
- package/dist/lib/converter/converter-events.js +0 -13
- package/dist/lib/converter/converter.js +0 -705
- package/dist/lib/converter/factories/index-signature.js +0 -50
- package/dist/lib/converter/factories/signature.js +0 -353
- package/dist/lib/converter/factories/symbol-id.js +0 -50
- package/dist/lib/converter/index.js +0 -3
- package/dist/lib/converter/jsdoc.js +0 -135
- package/dist/lib/converter/plugins/CategoryPlugin.js +0 -278
- package/dist/lib/converter/plugins/CommentPlugin.js +0 -770
- package/dist/lib/converter/plugins/GroupPlugin.js +0 -281
- package/dist/lib/converter/plugins/ImplementsPlugin.js +0 -438
- package/dist/lib/converter/plugins/IncludePlugin.js +0 -254
- package/dist/lib/converter/plugins/InheritDocPlugin.js +0 -220
- package/dist/lib/converter/plugins/LinkResolverPlugin.js +0 -88
- package/dist/lib/converter/plugins/MergeModuleWithPlugin.js +0 -50
- package/dist/lib/converter/plugins/PackagePlugin.js +0 -188
- package/dist/lib/converter/plugins/SourcePlugin.js +0 -215
- package/dist/lib/converter/plugins/TypePlugin.js +0 -108
- package/dist/lib/converter/plugins/index.js +0 -10
- package/dist/lib/converter/symbols.js +0 -861
- package/dist/lib/converter/types.js +0 -833
- package/dist/lib/converter/utils/nodes.js +0 -26
- package/dist/lib/converter/utils/reflections.js +0 -17
- package/dist/lib/converter/utils/repository.js +0 -295
- package/dist/lib/converter/utils/symbols.js +0 -12
- package/dist/lib/debug/index.js +0 -2
- package/dist/lib/debug/reflectionLifetimes.js +0 -27
- package/dist/lib/debug/rendererUrls.js +0 -68
- package/dist/lib/internationalization/index.js +0 -7
- package/dist/lib/internationalization/internationalization.js +0 -64
- package/dist/lib/internationalization/locale-utils.cjs +0 -8
- package/dist/lib/internationalization/locale-utils.d.cts +0 -8
- package/dist/lib/internationalization/locales/de.cjs +0 -401
- package/dist/lib/internationalization/locales/de.d.cts +0 -368
- package/dist/lib/internationalization/locales/en.cjs +0 -411
- package/dist/lib/internationalization/locales/fr.cjs +0 -347
- package/dist/lib/internationalization/locales/fr.d.cts +0 -346
- package/dist/lib/internationalization/locales/ja.cjs +0 -320
- package/dist/lib/internationalization/locales/ja.d.cts +0 -307
- package/dist/lib/internationalization/locales/ko.cjs +0 -233
- package/dist/lib/internationalization/locales/ko.d.cts +0 -221
- package/dist/lib/internationalization/locales/zh.cjs +0 -488
- package/dist/lib/internationalization/locales/zh.d.cts +0 -452
- package/dist/lib/internationalization/translatable.js +0 -8
- package/dist/lib/models/Comment.js +0 -534
- package/dist/lib/models/ContainerReflection.js +0 -159
- package/dist/lib/models/DeclarationReflection.js +0 -287
- package/dist/lib/models/DocumentReflection.js +0 -66
- package/dist/lib/models/FileRegistry.js +0 -133
- package/dist/lib/models/ParameterReflection.js +0 -39
- package/dist/lib/models/ProjectReflection.js +0 -417
- package/dist/lib/models/ReferenceReflection.js +0 -85
- package/dist/lib/models/Reflection.js +0 -495
- package/dist/lib/models/ReflectionCategory.js +0 -56
- package/dist/lib/models/ReflectionGroup.js +0 -72
- package/dist/lib/models/ReflectionSymbolId.js +0 -85
- package/dist/lib/models/SignatureReflection.js +0 -96
- package/dist/lib/models/SourceReference.js +0 -50
- package/dist/lib/models/TypeParameterReflection.js +0 -45
- package/dist/lib/models/index.js +0 -19
- package/dist/lib/models/kind.js +0 -231
- package/dist/lib/models/types.js +0 -1296
- package/dist/lib/models/utils.js +0 -26
- package/dist/lib/models/variant.js +0 -1
- package/dist/lib/output/components.js +0 -133
- package/dist/lib/output/events.js +0 -195
- package/dist/lib/output/formatter.js +0 -660
- package/dist/lib/output/index.js +0 -7
- package/dist/lib/output/output.js +0 -92
- package/dist/lib/output/plugins/AssetsPlugin.js +0 -160
- package/dist/lib/output/plugins/HierarchyPlugin.js +0 -65
- package/dist/lib/output/plugins/IconsPlugin.js +0 -58
- package/dist/lib/output/plugins/JavascriptIndexPlugin.js +0 -222
- package/dist/lib/output/plugins/NavigationPlugin.js +0 -23
- package/dist/lib/output/plugins/SitemapPlugin.js +0 -82
- package/dist/lib/output/plugins/index.js +0 -7
- package/dist/lib/output/renderer.js +0 -387
- package/dist/lib/output/router.js +0 -522
- package/dist/lib/output/theme.js +0 -17
- package/dist/lib/output/themes/MarkedPlugin.js +0 -461
- package/dist/lib/output/themes/default/DefaultTheme.js +0 -367
- package/dist/lib/output/themes/default/DefaultThemeRenderContext.js +0 -151
- package/dist/lib/output/themes/default/Slugger.js +0 -60
- package/dist/lib/output/themes/default/layouts/default.js +0 -89
- package/dist/lib/output/themes/default/partials/anchor-icon.js +0 -9
- package/dist/lib/output/themes/default/partials/breadcrumb.js +0 -11
- package/dist/lib/output/themes/default/partials/comment.js +0 -80
- package/dist/lib/output/themes/default/partials/footer.js +0 -37
- package/dist/lib/output/themes/default/partials/header.js +0 -39
- package/dist/lib/output/themes/default/partials/hierarchy.js +0 -32
- package/dist/lib/output/themes/default/partials/icon.js +0 -101
- package/dist/lib/output/themes/default/partials/index.js +0 -24
- package/dist/lib/output/themes/default/partials/member.declaration.js +0 -35
- package/dist/lib/output/themes/default/partials/member.getterSetter.js +0 -12
- package/dist/lib/output/themes/default/partials/member.js +0 -36
- package/dist/lib/output/themes/default/partials/member.signature.body.js +0 -33
- package/dist/lib/output/themes/default/partials/member.signature.title.js +0 -9
- package/dist/lib/output/themes/default/partials/member.signatures.js +0 -9
- package/dist/lib/output/themes/default/partials/member.sources.js +0 -55
- package/dist/lib/output/themes/default/partials/members.js +0 -17
- package/dist/lib/output/themes/default/partials/moduleReflection.js +0 -68
- package/dist/lib/output/themes/default/partials/navigation.js +0 -144
- package/dist/lib/output/themes/default/partials/reflectionPreview.js +0 -26
- package/dist/lib/output/themes/default/partials/toolbar.js +0 -13
- package/dist/lib/output/themes/default/partials/type.js +0 -9
- package/dist/lib/output/themes/default/partials/typeAndParent.js +0 -28
- package/dist/lib/output/themes/default/partials/typeDetails.js +0 -284
- package/dist/lib/output/themes/default/partials/typeParameters.js +0 -26
- package/dist/lib/output/themes/default/templates/document.js +0 -3
- package/dist/lib/output/themes/default/templates/hierarchy.js +0 -31
- package/dist/lib/output/themes/default/templates/index.js +0 -3
- package/dist/lib/output/themes/default/templates/reflection.js +0 -53
- package/dist/lib/output/themes/lib.js +0 -218
- package/dist/lib/serialization/components.js +0 -1
- package/dist/lib/serialization/deserializer.js +0 -235
- package/dist/lib/serialization/events.js +0 -18
- package/dist/lib/serialization/index.js +0 -4
- package/dist/lib/serialization/schema.js +0 -32
- package/dist/lib/serialization/serializer.js +0 -65
- package/dist/lib/utils/ValidatingFileRegistry.js +0 -52
- package/dist/lib/utils/component.js +0 -41
- package/dist/lib/utils/compress.js +0 -13
- package/dist/lib/utils/declaration-maps.js +0 -51
- package/dist/lib/utils/entry-point.js +0 -330
- package/dist/lib/utils/fs.js +0 -372
- package/dist/lib/utils/general.js +0 -25
- package/dist/lib/utils/highlighter.js +0 -150
- package/dist/lib/utils/html-entities.js +0 -2329
- package/dist/lib/utils/html.js +0 -635
- package/dist/lib/utils/index.d.ts +0 -17
- package/dist/lib/utils/index.js +0 -15
- package/dist/lib/utils/loggers.js +0 -71
- package/dist/lib/utils/options/declaration.js +0 -444
- package/dist/lib/utils/options/defaults.js +0 -104
- package/dist/lib/utils/options/help.js +0 -63
- package/dist/lib/utils/options/index.js +0 -4
- package/dist/lib/utils/options/options.js +0 -273
- package/dist/lib/utils/options/readers/arguments.js +0 -109
- package/dist/lib/utils/options/readers/index.js +0 -4
- package/dist/lib/utils/options/readers/package-json.js +0 -40
- package/dist/lib/utils/options/readers/tsconfig.js +0 -172
- package/dist/lib/utils/options/readers/typedoc.js +0 -136
- package/dist/lib/utils/options/sources/index.js +0 -1
- package/dist/lib/utils/options/sources/typedoc.js +0 -876
- package/dist/lib/utils/options/tsdoc-defaults.js +0 -94
- package/dist/lib/utils/package-manifest.js +0 -84
- package/dist/lib/utils/paths.js +0 -127
- package/dist/lib/utils/perf.js +0 -86
- package/dist/lib/utils/plugins.js +0 -61
- package/dist/lib/utils/reflections.js +0 -64
- package/dist/lib/utils/sort.js +0 -153
- package/dist/lib/utils/tsconfig.js +0 -60
- package/dist/lib/utils/tsutils.js +0 -23
- package/dist/lib/utils-common/array.js +0 -152
- package/dist/lib/utils-common/declarationReference.js +0 -341
- package/dist/lib/utils-common/enum.js +0 -27
- package/dist/lib/utils-common/events.js +0 -49
- package/dist/lib/utils-common/general.js +0 -22
- package/dist/lib/utils-common/hooks.js +0 -90
- package/dist/lib/utils-common/i18n.js +0 -39
- package/dist/lib/utils-common/index.js +0 -17
- package/dist/lib/utils-common/jsx.elements.js +0 -3
- package/dist/lib/utils-common/jsx.js +0 -187
- package/dist/lib/utils-common/logger.js +0 -129
- package/dist/lib/utils-common/map.js +0 -63
- package/dist/lib/utils-common/minimalSourceFile.js +0 -43
- package/dist/lib/utils-common/path.js +0 -130
- package/dist/lib/utils-common/set.js +0 -23
- package/dist/lib/utils-common/string.js +0 -84
- package/dist/lib/utils-common/validation.js +0 -50
- package/dist/lib/validation/documentation.js +0 -91
- package/dist/lib/validation/exports.js +0 -65
- package/dist/lib/validation/links.js +0 -78
- package/dist/lib/validation/unusedMergeModuleWith.js +0 -12
- /package/dist/{browser-utils.d.ts → types/browser-utils.d.ts} +0 -0
- /package/dist/{lib → types}/cli.d.ts +0 -0
- /package/dist/{lib → types}/converter/comments/blockLexer.d.ts +0 -0
- /package/dist/{lib → types}/converter/comments/lineLexer.d.ts +0 -0
- /package/dist/{lib → types}/converter/comments/rawLexer.d.ts +0 -0
- /package/dist/{lib → types}/converter/comments/tagName.d.ts +0 -0
- /package/dist/{lib → types}/converter/convert-expression.d.ts +0 -0
- /package/dist/{lib → types}/converter/converter-events.d.ts +0 -0
- /package/dist/{lib → types}/converter/factories/index-signature.d.ts +0 -0
- /package/dist/{lib → types}/converter/factories/symbol-id.d.ts +0 -0
- /package/dist/{lib → types}/converter/jsdoc.d.ts +0 -0
- /package/dist/{lib → types}/converter/plugins/CommentPlugin.d.ts +0 -0
- /package/dist/{lib → types}/converter/plugins/ImplementsPlugin.d.ts +0 -0
- /package/dist/{lib → types}/converter/plugins/MergeModuleWithPlugin.d.ts +0 -0
- /package/dist/{lib → types}/converter/plugins/PackagePlugin.d.ts +0 -0
- /package/dist/{lib → types}/converter/plugins/index.d.ts +0 -0
- /package/dist/{lib → types}/converter/symbols.d.ts +0 -0
- /package/dist/{lib/converter/utils → types/converter/utilities}/nodes.d.ts +0 -0
- /package/dist/{lib/converter/utils → types/converter/utilities}/symbols.d.ts +0 -0
- /package/dist/{lib → types}/debug/index.d.ts +0 -0
- /package/dist/{lib → types}/debug/reflectionLifetimes.d.ts +0 -0
- /package/dist/{lib → types}/debug/rendererUrls.d.ts +0 -0
- /package/dist/{lib → types}/internationalization/index.d.ts +0 -0
- /package/dist/{lib → types}/models/Comment.d.ts +0 -0
- /package/dist/{lib → types}/models/ContainerReflection.d.ts +0 -0
- /package/dist/{lib → types}/models/DeclarationReflection.d.ts +0 -0
- /package/dist/{lib → types}/models/DocumentReflection.d.ts +0 -0
- /package/dist/{lib → types}/models/ParameterReflection.d.ts +0 -0
- /package/dist/{lib → types}/models/ProjectReflection.d.ts +0 -0
- /package/dist/{lib → types}/models/ReferenceReflection.d.ts +0 -0
- /package/dist/{lib → types}/models/Reflection.d.ts +0 -0
- /package/dist/{lib → types}/models/ReflectionCategory.d.ts +0 -0
- /package/dist/{lib → types}/models/ReflectionGroup.d.ts +0 -0
- /package/dist/{lib → types}/models/SignatureReflection.d.ts +0 -0
- /package/dist/{lib → types}/models/TypeParameterReflection.d.ts +0 -0
- /package/dist/{lib → types}/models/index.d.ts +0 -0
- /package/dist/{lib → types}/models/kind.d.ts +0 -0
- /package/dist/{lib → types}/models/types.d.ts +0 -0
- /package/dist/{lib → types}/models/utils.d.ts +0 -0
- /package/dist/{lib → types}/models/variant.d.ts +0 -0
- /package/dist/{lib → types}/output/index.d.ts +0 -0
- /package/dist/{lib → types}/output/plugins/AssetsPlugin.d.ts +0 -0
- /package/dist/{lib → types}/output/plugins/HierarchyPlugin.d.ts +0 -0
- /package/dist/{lib → types}/output/plugins/IconsPlugin.d.ts +0 -0
- /package/dist/{lib → types}/output/plugins/JavascriptIndexPlugin.d.ts +0 -0
- /package/dist/{lib → types}/output/plugins/NavigationPlugin.d.ts +0 -0
- /package/dist/{lib → types}/output/plugins/SitemapPlugin.d.ts +0 -0
- /package/dist/{lib → types}/output/plugins/index.d.ts +0 -0
- /package/dist/{lib → types}/output/theme.d.ts +0 -0
- /package/dist/{lib → types}/output/themes/default/Slugger.d.ts +0 -0
- /package/dist/{lib → types}/output/themes/default/partials/footer.d.ts +0 -0
- /package/dist/{lib → types}/output/themes/default/partials/member.declaration.d.ts +0 -0
- /package/dist/{lib → types}/output/themes/default/partials/typeAndParent.d.ts +0 -0
- /package/dist/{lib → types}/serialization/components.d.ts +0 -0
- /package/dist/{lib → types}/serialization/deserializer.d.ts +0 -0
- /package/dist/{lib → types}/serialization/events.d.ts +0 -0
- /package/dist/{lib → types}/serialization/index.d.ts +0 -0
- /package/dist/{lib → types}/serialization/schema.d.ts +0 -0
- /package/dist/{lib → types}/serialization/serializer.d.ts +0 -0
- /package/dist/{lib → types}/utils/component.d.ts +0 -0
- /package/dist/{lib → types}/utils/compress.d.ts +0 -0
- /package/dist/{lib → types}/utils/declaration-maps.d.ts +0 -0
- /package/dist/{lib → types}/utils/fs.d.ts +0 -0
- /package/dist/{lib → types}/utils/highlighter.d.ts +0 -0
- /package/dist/{lib → types}/utils/html-entities.d.ts +0 -0
- /package/dist/{lib → types}/utils/html.d.ts +0 -0
- /package/dist/{lib → types}/utils/loggers.d.ts +0 -0
- /package/dist/{lib → types}/utils/options/help.d.ts +0 -0
- /package/dist/{lib → types}/utils/options/readers/arguments.d.ts +0 -0
- /package/dist/{lib → types}/utils/options/readers/index.d.ts +0 -0
- /package/dist/{lib → types}/utils/options/readers/package-json.d.ts +0 -0
- /package/dist/{lib → types}/utils/options/readers/tsconfig.d.ts +0 -0
- /package/dist/{lib → types}/utils/options/readers/typedoc.d.ts +0 -0
- /package/dist/{lib → types}/utils/options/sources/index.d.ts +0 -0
- /package/dist/{lib → types}/utils/options/sources/typedoc.d.ts +0 -0
- /package/dist/{lib → types}/utils/package-manifest.d.ts +0 -0
- /package/dist/{lib → types}/utils/paths.d.ts +0 -0
- /package/dist/{lib → types}/utils/perf.d.ts +0 -0
- /package/dist/{lib → types}/utils/plugins.d.ts +0 -0
- /package/dist/{lib → types}/utils/tsconfig.d.ts +0 -0
- /package/dist/{lib → types}/utils/tsutils.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/array.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/declarationReference.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/enum.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/events.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/hooks.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/i18n.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/index.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/jsx.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/jsx.elements.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/logger.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/map.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/minimalSourceFile.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/path.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/set.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/string.d.ts +0 -0
- /package/dist/{lib → types}/utils-common/validation.d.ts +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ContainerReflection, type DeclarationReflection, type DocumentReflection } from "
|
|
1
|
+
import { ContainerReflection, type DeclarationReflection, type DocumentReflection } from "#models";
|
|
2
2
|
import { ConverterComponent } from "../components.js";
|
|
3
3
|
import type { Converter } from "../converter.js";
|
|
4
4
|
/**
|
|
@@ -35,7 +35,7 @@ export declare class CategoryPlugin extends ConverterComponent {
|
|
|
35
35
|
* @returns An array containing all children of the given reflection categorized
|
|
36
36
|
*/
|
|
37
37
|
private getReflectionCategories;
|
|
38
|
-
getSortFunction(reflection: ContainerReflection): (reflections:
|
|
38
|
+
getSortFunction(reflection: ContainerReflection): (reflections: Array<DeclarationReflection | DocumentReflection>) => void;
|
|
39
39
|
/**
|
|
40
40
|
* Callback used to sort categories by name.
|
|
41
41
|
*
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { ContainerReflection, type DeclarationReflection, type DocumentReflection } from "
|
|
2
|
-
import { ReflectionGroup } from "../../models/ReflectionGroup.js";
|
|
1
|
+
import { ContainerReflection, type DeclarationReflection, type DocumentReflection, ReflectionGroup } from "#models";
|
|
3
2
|
import { ConverterComponent } from "../components.js";
|
|
4
3
|
import type { Converter } from "../converter.js";
|
|
5
4
|
/**
|
|
@@ -40,7 +39,7 @@ export declare class GroupPlugin extends ConverterComponent {
|
|
|
40
39
|
* @returns An array containing all children of the given reflection grouped by their kind.
|
|
41
40
|
*/
|
|
42
41
|
getReflectionGroups(parent: ContainerReflection, reflections: Array<DeclarationReflection | DocumentReflection>): ReflectionGroup[];
|
|
43
|
-
getSortFunction(reflection: ContainerReflection): (reflections:
|
|
42
|
+
getSortFunction(reflection: ContainerReflection): (reflections: (DeclarationReflection | DocumentReflection)[]) => void;
|
|
44
43
|
/**
|
|
45
44
|
* Callback used to sort groups by name.
|
|
46
45
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import type { CommentDisplayPart, Reflection } from "#models";
|
|
1
2
|
import { ConverterComponent } from "../components.js";
|
|
2
|
-
import type { CommentDisplayPart, Reflection } from "../../models/index.js";
|
|
3
3
|
import type { Converter } from "../converter.js";
|
|
4
4
|
/**
|
|
5
5
|
* Handles `@include` and `@includeCode` within comments/documents.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import { type ValidationOptions } from "#node-utils";
|
|
1
2
|
import { ConverterComponent } from "../components.js";
|
|
2
|
-
import { type ValidationOptions } from "../../utils/index.js";
|
|
3
3
|
import type { Converter } from "../converter.js";
|
|
4
4
|
/**
|
|
5
5
|
* A plugin that handles `@inheritDoc` tags by copying documentation from another API item.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { ProjectReflection } from "#models";
|
|
2
|
+
import { type ValidationOptions } from "#node-utils";
|
|
2
3
|
import type { Context, Converter } from "../../converter/index.js";
|
|
3
|
-
import {
|
|
4
|
-
import type { ProjectReflection } from "../../models/index.js";
|
|
4
|
+
import { ConverterComponent } from "../components.js";
|
|
5
5
|
/**
|
|
6
6
|
* A plugin that resolves `{@link Foo}` tags.
|
|
7
7
|
*/
|
|
@@ -9,12 +9,11 @@ export declare class SourcePlugin extends ConverterComponent {
|
|
|
9
9
|
accessor gitRemote: string;
|
|
10
10
|
accessor disableGit: boolean;
|
|
11
11
|
accessor sourceLinkTemplate: string;
|
|
12
|
-
get displayBasePath(): import("
|
|
12
|
+
get displayBasePath(): import("../../index.ts").NormalizedPath;
|
|
13
13
|
/**
|
|
14
14
|
* All file names to find the base path from.
|
|
15
15
|
*/
|
|
16
16
|
private fileNames;
|
|
17
|
-
private repositories?;
|
|
18
17
|
constructor(owner: Converter);
|
|
19
18
|
private onEnd;
|
|
20
19
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import ts from "typescript";
|
|
2
|
-
import { type SomeType } from "
|
|
2
|
+
import { type SomeType } from "#models";
|
|
3
3
|
import type { Context } from "./context.js";
|
|
4
4
|
export interface TypeConverter<TNode extends ts.TypeNode = ts.TypeNode, TType extends ts.Type = ts.Type> {
|
|
5
5
|
kind: TNode["kind"][];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { type SomeType } from "
|
|
1
|
+
import { type SomeType } from "#models";
|
|
2
2
|
export declare function removeUndefined(type: SomeType): SomeType;
|
|
@@ -1,5 +1,10 @@
|
|
|
1
|
-
import { type Logger } from "#utils";
|
|
2
|
-
export
|
|
1
|
+
import { type Logger, type NormalizedPath } from "#utils";
|
|
2
|
+
export interface SpawnResult {
|
|
3
|
+
status: number | null;
|
|
4
|
+
stdout: string;
|
|
5
|
+
stderr: string;
|
|
6
|
+
errorCode?: string;
|
|
7
|
+
}
|
|
3
8
|
export interface Repository {
|
|
4
9
|
readonly path: string;
|
|
5
10
|
getURL(fileName: string, line: number): string | undefined;
|
|
@@ -45,9 +50,9 @@ export declare class GitRepository implements Repository {
|
|
|
45
50
|
* creates a new instance of {@link GitRepository}.
|
|
46
51
|
*
|
|
47
52
|
* @param path The potential repository root.
|
|
48
|
-
* @returns A
|
|
53
|
+
* @returns A promise resolving to {@link GitRepository} or undefined.
|
|
49
54
|
*/
|
|
50
|
-
static tryCreateRepository(path: string, sourceLinkTemplate: string, gitRevision: string, gitRemote: string, logger: Logger): GitRepository | undefined
|
|
55
|
+
static tryCreateRepository(path: string, sourceLinkTemplate: string, gitRevision: string, gitRemote: string, logger: Logger): Promise<GitRepository | undefined>;
|
|
51
56
|
}
|
|
52
57
|
/**
|
|
53
58
|
* Responsible for keeping track of 0-N repositories which exist on a machine.
|
|
@@ -81,16 +86,12 @@ export declare class RepositoryManager {
|
|
|
81
86
|
private sourceLinkTemplate;
|
|
82
87
|
private disableGit;
|
|
83
88
|
private logger;
|
|
84
|
-
private
|
|
89
|
+
private repositories;
|
|
85
90
|
private assumedRepo;
|
|
86
91
|
constructor(basePath: string, gitRevision: string, gitRemote: string, sourceLinkTemplate: string, disableGit: boolean, logger: Logger);
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
* @returns The found repository info or undefined.
|
|
92
|
-
*/
|
|
93
|
-
getRepository(fileName: string): Repository | undefined;
|
|
94
|
-
private getRepositoryFolder;
|
|
92
|
+
private discoverPossibleGitDirs;
|
|
93
|
+
initializeRepositoriesForDirs(dirs: readonly string[]): Promise<void>;
|
|
94
|
+
getURL(fileName: NormalizedPath, line: number): string | undefined;
|
|
95
|
+
getRepository(fileName: NormalizedPath): Repository | undefined;
|
|
95
96
|
}
|
|
96
97
|
export declare function guessSourceUrlTemplate(remotes: string[]): string | undefined;
|
|
@@ -10,8 +10,7 @@
|
|
|
10
10
|
* of the members described here which makes it suitable for usage in browser
|
|
11
11
|
* bundles which want to use TypeDoc's JSON output in the browser.
|
|
12
12
|
*/
|
|
13
|
-
export { Application, type ApplicationEvents } from "./
|
|
14
|
-
export { resetReflectionID } from "./lib/models/Reflection.js";
|
|
13
|
+
export { Application, type ApplicationEvents } from "./application.js";
|
|
15
14
|
/**
|
|
16
15
|
* All symbols documented under the Models namespace are also available in the root import.
|
|
17
16
|
* @primaryExport
|
|
@@ -26,24 +25,24 @@ export { resetReflectionID } from "./lib/models/Reflection.js";
|
|
|
26
25
|
* @summary
|
|
27
26
|
* TypeDoc converts source code into these object types.
|
|
28
27
|
*/
|
|
29
|
-
export *
|
|
28
|
+
export * from "#models";
|
|
29
|
+
export * as Models from "#models";
|
|
30
|
+
export { type CommentParserConfig, Context, Converter, type ConverterEvents, type ExternalResolveResult, type ExternalSymbolResolver, RepositoryManager, } from "./converter/index.js";
|
|
31
|
+
export { BaseRouter, CategoryRouter, DefaultTheme, DefaultThemeRenderContext, GroupRouter, IndexEvent, KindDirRouter, KindRouter, MarkdownEvent, PageEvent, PageKind, Renderer, RendererEvent, Slugger, StructureDirRouter, StructureRouter, Theme, } from "./output/index.js";
|
|
32
|
+
export type { Icons, NavigationElement, PageDefinition, PageHeading, RendererEvents, RendererHooks, RenderTemplate, Router, RouterTarget, } from "./output/index.js";
|
|
33
|
+
export { Outputs } from "./output/output.js";
|
|
34
|
+
export {
|
|
30
35
|
/**
|
|
31
36
|
* All symbols documented under the Configuration namespace are also available in the root import.
|
|
32
37
|
* @summary
|
|
33
38
|
* Controls how TypeDoc reads option files and what options are available.
|
|
34
39
|
*/
|
|
35
|
-
|
|
36
|
-
export
|
|
37
|
-
|
|
38
|
-
export * as Configuration from "./lib/utils/options/index.js";
|
|
39
|
-
export { BaseRouter, CategoryRouter, DefaultTheme, DefaultThemeRenderContext, GroupRouter, IndexEvent, KindDirRouter, KindRouter, MarkdownEvent, PageEvent, PageKind, Renderer, RendererEvent, Slugger, StructureDirRouter, StructureRouter, Theme, } from "./lib/output/index.js";
|
|
40
|
-
export type { Icons, NavigationElement, PageDefinition, PageHeading, RendererEvents, RendererHooks, RenderTemplate, Router, RouterTarget, } from "./lib/output/index.js";
|
|
41
|
-
export { Outputs } from "./lib/output/output.js";
|
|
42
|
-
export { ArgumentsReader, CommentStyle, EntryPointStrategy, normalizePath, Option, OptionDefaults, Options, PackageJsonReader, ParameterHint, ParameterType, TSConfigReader, TypeDocReader, ValidatingFileRegistry, } from "./lib/utils/index.js";
|
|
43
|
-
export type { ArrayDeclarationOption, BooleanDeclarationOption, DeclarationOption, DeclarationOptionBase, DeclarationOptionToOptionType, DocumentationEntryPoint, FancyConsoleLogger, FlagsDeclarationOption, JsDocCompatibility, KeyToDeclaration, ManuallyValidatedOption, MapDeclarationOption, MixedDeclarationOption, NumberDeclarationOption, ObjectDeclarationOption, OptionsReader, OutputSpecification, ParameterTypeToOptionTypeMap, SortStrategy, StringDeclarationOption, TypeDocOptionMap, TypeDocOptions, TypeDocOptionValues, ValidationOptions, } from "./lib/utils/index.js";
|
|
40
|
+
Configuration, EntryPointStrategy, normalizePath, ValidatingFileRegistry, } from "#node-utils";
|
|
41
|
+
export { ArgumentsReader, type ArrayDeclarationOption, type BooleanDeclarationOption, CommentStyle, type DeclarationOption, type DeclarationOptionBase, type DeclarationOptionToOptionType, type FlagsDeclarationOption, type JsDocCompatibility, type KeyToDeclaration, type ManuallyValidatedOption, type MapDeclarationOption, type MixedDeclarationOption, type NumberDeclarationOption, type ObjectDeclarationOption, Option, OptionDefaults, Options, type OptionsReader, type OutputSpecification, PackageJsonReader, ParameterHint, ParameterType, type StringDeclarationOption, TSConfigReader, type TypeDocOptionMap, type TypeDocOptions, type TypeDocOptionValues, TypeDocReader, type ValidationOptions, } from "#node-utils";
|
|
42
|
+
export type { DocumentationEntryPoint, FancyConsoleLogger, SortStrategy } from "#node-utils";
|
|
44
43
|
export { type ComponentPath, ConsoleLogger, type DeclarationReference, type EnumKeys, EventDispatcher, EventHooks, type GlobString, i18n, JSX, Logger, LogLevel, type Meaning, type MeaningKeyword, type MinimalNode, MinimalSourceFile, type NormalizedPath, type NormalizedPathOrModule, type NormalizedPathOrModuleOrFunction, type SymbolReference, type TagString, type TranslatedString, translateTagName, } from "#utils";
|
|
45
|
-
export { type Deserializable, Deserializer, type DeserializerComponent, JSONOutput, SerializeEvent, Serializer, type SerializerComponent, type SerializerEvents, } from "
|
|
46
|
-
export * as Internationalization from "./
|
|
47
|
-
export type { TranslatableStrings } from "./
|
|
48
|
-
import TypeScript from "typescript";
|
|
44
|
+
export { type Deserializable, Deserializer, type DeserializerComponent, JSONOutput, SerializeEvent, Serializer, type SerializerComponent, type SerializerEvents, } from "#serialization";
|
|
45
|
+
export * as Internationalization from "./internationalization/index.js";
|
|
46
|
+
export type { TranslatableStrings } from "./internationalization/internationalization.js";
|
|
49
47
|
export { TypeScript };
|
|
48
|
+
import TypeScript from "typescript";
|
|
@@ -43,14 +43,6 @@ export interface TranslatableStrings extends BuiltinTranslatableStringArgs {
|
|
|
43
43
|
export type TranslationProxy = {
|
|
44
44
|
[K in keyof TranslatableStrings]: (...args: TranslatableStrings[K]) => TranslatedString;
|
|
45
45
|
};
|
|
46
|
-
/**
|
|
47
|
-
* Load TypeDoc's translations for a specified language
|
|
48
|
-
*/
|
|
49
|
-
export declare function loadTranslations(lang: string): Record<string, string>;
|
|
50
|
-
/**
|
|
51
|
-
* Get languages which TypeDoc includes translations for
|
|
52
|
-
*/
|
|
53
|
-
export declare function getNativelySupportedLanguages(): string[];
|
|
54
46
|
/**
|
|
55
47
|
* Responsible for maintaining loaded internationalized strings.
|
|
56
48
|
*/
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { BuiltinTranslatableStringConstraints } from "./translatable.js";
|
|
2
|
+
export declare function buildTranslation<const T extends BuiltinTranslatableStringConstraints>(translations: T): T;
|
|
3
|
+
export declare function buildIncompleteTranslation<const T extends Partial<BuiltinTranslatableStringConstraints>>(translations: T): T;
|
|
@@ -0,0 +1,368 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
readonly loaded_multiple_times_0: "TypeDoc wurde mehrfach geladen. Das wird oft von Plugins verursacht, die auch TypeDoc installiert haben. Die Pfade, von denen TypeDoc geladen wurde, sind:\n\t{0}";
|
|
3
|
+
readonly unsupported_ts_version_0: "Sie verwenden eine Version von TypeScript, die nicht unterstützt wird! Stürzt TypeDoc ab, ist das der Grund. TypeDoc unterstützt {0}";
|
|
4
|
+
readonly no_compiler_options_set: "Keine Compiler-Optionen gesetzt. Das bedeutet wahrscheinlich, dass TypeDoc die tsconfig.json nicht finden konnte. Die generierte Dokumentation wird wahrscheinlich leer sein";
|
|
5
|
+
readonly loaded_plugin_0: "Plugin {0} geladen";
|
|
6
|
+
readonly solution_not_supported_in_watch_mode: "Die angegebene tsconfig-Datei sieht nach einer Solution-Style-tsconfig aus, die nicht im Watch-Modus unterstützt wird";
|
|
7
|
+
readonly strategy_not_supported_in_watch_mode: "entryPointStrategy muss für den Watch-Modus entweder auf resolve oder expand gesetzt werden";
|
|
8
|
+
readonly file_0_changed_restarting: "Konfigurationsdatei {0} wurde verändert: Kompletter Neustart erforderlich...";
|
|
9
|
+
readonly file_0_changed_rebuilding: "Datei {0} wurde verändert: Baue Ausgabe neu...";
|
|
10
|
+
readonly found_0_errors_and_1_warnings: "{0} Fehler und {1} Warnungen gefunden";
|
|
11
|
+
readonly output_0_could_not_be_generated: "{0}-Ausgabe konnte aufgrund obiger Fehler nicht erstellt werden";
|
|
12
|
+
readonly output_0_generated_at_1: "{0} wurde generiert in {1}";
|
|
13
|
+
readonly no_entry_points_for_packages: "Keine Einstiegspunkte für den packages-Modus angegeben, Dokumentation kann nicht generiert werden";
|
|
14
|
+
readonly failed_to_find_packages: "Konnte keine Packages finden, stellen Sie sicher, dass mindestens ein Verzeichnis mit einer package.json als Einstiegspunkt angegeben wurde";
|
|
15
|
+
readonly nested_packages_unsupported_0: "Projekt unter {0} hat die entryPointStrategy auf packages gesetzt, aber geschachtelte Packages werden nicht unterstützt";
|
|
16
|
+
readonly package_option_0_should_be_specified_at_root: "Die Option packageOptions setzt die Option {0}, welche nur auf Root-Ebene eine Auswirkung hat";
|
|
17
|
+
readonly previous_error_occurred_when_reading_options_for_0: "Der vorangegangene Fehler trat auf, als die Optionen für das Package unter {0} gelesen wurden";
|
|
18
|
+
readonly converting_project_at_0: "Konvertiere Projekt unter {0}";
|
|
19
|
+
readonly failed_to_convert_packages: "Konnte ein oder mehrere Packages nicht konvertieren, Ergebnisse werden nicht zusammengeführt";
|
|
20
|
+
readonly merging_converted_projects: "Führe konvertierte Projekte zusammen";
|
|
21
|
+
readonly no_entry_points_to_merge: "Keine Einstiegspunkte zum Zusammenführen angegeben";
|
|
22
|
+
readonly entrypoint_did_not_match_files_0: "Der Glob {0} für den Einstiegspunkt passte auf keine Dateien";
|
|
23
|
+
readonly failed_to_parse_json_0: "Konnte Datei unter {0} nicht als JSON parsen";
|
|
24
|
+
readonly failed_to_read_0_when_processing_document_tag_in_1: "Fehler beim Einlesen der Datei {0} während der Verarbeitung des @document-Tags vom Kommentar in {1}";
|
|
25
|
+
readonly failed_to_read_0_when_processing_project_document: "Fehler beim Einlesen der Datei {0} während des Hinzufügens des Projekt-Dokuments";
|
|
26
|
+
readonly failed_to_read_0_when_processing_document_child_in_1: "Fehler beim Einlesen der Datei {0} während der Verarbeitung der Dokument-Kindelemente in {1}";
|
|
27
|
+
readonly frontmatter_children_0_should_be_an_array_of_strings_or_object_with_string_values: "Kinder der Frontmatter in {0} sollten entweder ein Array von Strings oder ein Objekt mit String-Werten sein";
|
|
28
|
+
readonly converting_union_as_interface: "Nutzung von @interface auf einem Union-Typ verwirft alle Eigenschaften, die nicht in allen Teilen der Union vorhanden sind. TypeDocs Ausgabe spiegelt möglicherweise den Quellcode nicht korrekt wider.";
|
|
29
|
+
readonly converting_0_as_class_requires_value_declaration: "Konvertierung von {0} als Klasse erfordert eine Klassen-Deklaration, die einen Wert und nicht nur einen Typ darstellt";
|
|
30
|
+
readonly converting_0_as_class_without_construct_signatures: "{0} wird als Klasse konvertiert, hat aber keine Konstruktor-Signaturen";
|
|
31
|
+
readonly comment_for_0_should_not_contain_block_or_modifier_tags: "Das Kommentar für {0} sollte keine Block- oder Modifier-Tags enthalten";
|
|
32
|
+
readonly symbol_0_has_multiple_declarations_with_comment: "{0} hat mehrere Deklarationen mit Kommentaren. Ein beliebiges Kommentar wird verwendet werden";
|
|
33
|
+
readonly comments_for_0_are_declared_at_1: "Die Kommentare für {0} sind deklariert in:\n\t{1}";
|
|
34
|
+
readonly multiple_type_parameters_on_template_tag_unsupported: "TypeDoc unterstützt mehrfache Typenparameter nicht, wenn diese in einem einzelnen @template-Tag mit Kommentar definiert sind";
|
|
35
|
+
readonly failed_to_find_jsdoc_tag_for_name_0: "Konnte JSDoc-Tag für {0} nach dem Parsen der Kommentare nicht finden, bitte erstellen Sie einen Bug-Report";
|
|
36
|
+
readonly relative_path_0_is_not_a_file_and_will_not_be_copied_to_output: "Der relative Pfad {0} ist keine Datei und wird daher nicht mit in das Ausgabeverzeichnis kopiert";
|
|
37
|
+
readonly inline_inheritdoc_should_not_appear_in_block_tag_in_comment_at_0: "Inline-@inheritDoc-Tag sollte nicht innerhalb eines Block-Tags verwendet werden. Solche Tags im Kommentar unter {0} können nicht verarbeitet werden";
|
|
38
|
+
readonly at_most_one_remarks_tag_expected_in_comment_at_0: "Höchstens ein @remarks-Tag darf in einem Kommentar verwendet werden. Alle außer dem ersten Tag im Kommentar unter {0} werden ignoriert";
|
|
39
|
+
readonly at_most_one_returns_tag_expected_in_comment_at_0: "Höchstens ein @returns-Tag darf in einem Kommentar verwendet werden. Alle außer dem ersten Tag im Kommentar unter {0} werden ignoriert";
|
|
40
|
+
readonly at_most_one_inheritdoc_tag_expected_in_comment_at_0: "Höchstens ein @inheritDoc-Tag darf in einem Kommentar verwendet werden. Alle außer dem ersten Tag im Kommentar unter {0} werden ignoriert";
|
|
41
|
+
readonly content_in_summary_overwritten_by_inheritdoc_in_comment_at_0: "Inhalt in der Zusammenfassung des Kommentars unter {0} wird vom @inheritDoc-Tag überschrieben werden";
|
|
42
|
+
readonly content_in_remarks_block_overwritten_by_inheritdoc_in_comment_at_0: "Inhalt im @remarks-Block des Kommentars unter {0} wird vom @inheritDoc-Tag überschrieben werden";
|
|
43
|
+
readonly example_tag_literal_name: "Die erste Zeile eines @example-Tags wird wortwörtlich als Name des Beispiels interpretiert und sollte nur Text enthalten";
|
|
44
|
+
readonly inheritdoc_tag_properly_capitalized: "Der @inheritDoc-Tag sollte korrekte Groß- und Kleinschreibung verwenden";
|
|
45
|
+
readonly treating_unrecognized_tag_0_as_modifier: "Behandle unerkannten Tag {0} als Modifier-Tag";
|
|
46
|
+
readonly unmatched_closing_brace: "Nicht übereinstimmende schließende Klammern";
|
|
47
|
+
readonly unescaped_open_brace_without_inline_tag: "Unmaskierte öffnende Klammer ohne Inline-Tag vorgefunden";
|
|
48
|
+
readonly unknown_block_tag_0: "Unbekannter Block-Tag {0} vorgefunden";
|
|
49
|
+
readonly unknown_inline_tag_0: "Unbekannter Inline-Tag {0} vorgefunden";
|
|
50
|
+
readonly open_brace_within_inline_tag: "Öffnende Klammer innerhalb eines Inline-Tags vorgefunden, das ist wahrscheinlich ein Fehler";
|
|
51
|
+
readonly inline_tag_not_closed: "Inline-Tag wurde nicht geschlossen";
|
|
52
|
+
readonly failed_to_resolve_link_to_0_in_comment_for_1: "Konnte Link zu \"{0}\" im Kommentar für {1} nicht auflösen";
|
|
53
|
+
readonly failed_to_resolve_link_to_0_in_comment_for_1_may_have_meant_2: "Konnte Link zu \"{0}\" im Kommentar für {1} nicht auflösen. Meinten Sie vielleicht \"{2}\"";
|
|
54
|
+
readonly failed_to_resolve_link_to_0_in_readme_for_1: "Konnte Link zu \"{0}\" in Readme für {1} nicht auflösen";
|
|
55
|
+
readonly failed_to_resolve_link_to_0_in_readme_for_1_may_have_meant_2: "Konnte Link zu \"{0}\" in Readme für {1} nicht auflösen. Meinten Sie vielleicht \"{2}\"";
|
|
56
|
+
readonly failed_to_resolve_link_to_0_in_document_1: "Konnte Link zu \"{0}\" im Dokument {1} nicht auflösen";
|
|
57
|
+
readonly failed_to_resolve_link_to_0_in_document_1_may_have_meant_2: "Konnte Link zu \"{0}\" im Dokument {1} nicht auflösen. Meinten Sie vielleicht \"{2}\"";
|
|
58
|
+
readonly type_0_defined_in_1_is_referenced_by_2_but_not_included_in_docs: "{0}, definiert in {1}, wird referenziert von {2}, ist aber nicht in der Dokumentation enthalten";
|
|
59
|
+
readonly reflection_0_kind_1_defined_in_2_does_not_have_any_documentation: "{0} ({1}), definiert in {2}, hat keinerlei Dokumentation";
|
|
60
|
+
readonly invalid_intentionally_not_documented_names_0: "Die folgenden qualifizierten Reflection-Namen wurden absichtlich als undokumentiert markiert, wurden aber entweder in der Dokumentation nicht referenziert oder werden dokumentiert:\n\t{0}";
|
|
61
|
+
readonly invalid_intentionally_not_exported_symbols_0: "Die folgenden Symbole wurden absichtlich als nicht exportiert markiert, wurden aber entweder in der Dokumentation nicht referenziert oder werden dokumentiert:\n\t{0}";
|
|
62
|
+
readonly reflection_0_has_unused_mergeModuleWith_tag: "{0} hat einen @mergeModuleWith-Tag, der nicht aufgelöst werden konnte";
|
|
63
|
+
readonly reflection_0_links_to_1_with_text_2_but_resolved_to_3: "\"{0}\" verlinkt auf \"{1}\" mit Text \"{2}\", welcher zwar existiert, aber keinen Link in der Dokumentation hat. Verlinke stattdessen auf \"{3}\"";
|
|
64
|
+
readonly not_all_search_category_boosts_used_0: "Nicht alle in searchCategoryBoosts angegebenen Kategorien werden in der Dokumentation verwendet. Die unbenutzten Kategorien sind:\n\t{0}";
|
|
65
|
+
readonly not_all_search_group_boosts_used_0: "Nicht alle in searchGroupBoosts angegebenen Gruppen werden in der Dokumentation verwendet. Die unbenutzten Gruppen sind:\n\t{0}";
|
|
66
|
+
readonly comment_for_0_includes_categoryDescription_for_1_but_no_child_in_group: "Kommentar für {0} enthält @categoryDescription für \"{1}\", aber kein Kind wurde in dieser Kategorie platziert";
|
|
67
|
+
readonly comment_for_0_includes_groupDescription_for_1_but_no_child_in_group: "Kommentar für {0} enthält @groupDescription für \"{1}\", aber kein Kind wurde in dieser Gruppe platziert";
|
|
68
|
+
readonly label_0_for_1_cannot_be_referenced: "Das Label \"{0}\" für {1} kann nicht mit einer Deklarationsreferenz referenziert werden. Labels dürfen nur A-Z, 0-9 sowie _ enthalten und dürfen nicht mit einer Ziffer beginnen";
|
|
69
|
+
readonly modifier_tag_0_is_mutually_exclusive_with_1_in_comment_for_2: "Der Modifier-Tag {0} darf nicht gleichzeitig mit {1} verwendet werden im Kommentar für {2}";
|
|
70
|
+
readonly signature_0_has_unused_param_with_name_1: "Die Signatur {0} enthält einen @param mit Namen \"{1}\", der nicht verwendet wird";
|
|
71
|
+
readonly declaration_reference_in_inheritdoc_for_0_not_fully_parsed: "Deklarationsreferenz in @inheritDoc für {0} wurde nicht vollständig geparst und wird möglicherweise falsch aufgelöst werden";
|
|
72
|
+
readonly failed_to_find_0_to_inherit_comment_from_in_1: "Konnte \"{0}\" zum Erben des Kommentars nicht finden. Betrifft Kommentar für {1}";
|
|
73
|
+
readonly reflection_0_tried_to_copy_comment_from_1_but_source_had_no_comment: "{0} hat versucht, ein Kommentar von {1} mit @inheritDoc zu kopieren, aber die Quelle hat kein zugehöriges Kommentar";
|
|
74
|
+
readonly inheritdoc_circular_inheritance_chain_0: "@inheritDoc spezifiziert eine zyklische Vererbungskette: {0}";
|
|
75
|
+
readonly provided_readme_at_0_could_not_be_read: "Angegebener README-Pfad {0} konnte nicht gelesen werden";
|
|
76
|
+
readonly defaulting_project_name: "Die Option --name wurde nicht angegeben und kein package.json wurde gefunden. Verwende \"Dokumentation\" als Rückfallwert für den Projektnamen";
|
|
77
|
+
readonly disable_git_set_but_not_source_link_template: "disableGit wurde gesetzt, aber sourceLinkTemplate nicht, sodass Links auf die Quellcode-Dateien nicht erstellt werden können. Setzen Sie sourceLinkTemplate oder disableSources, um das Ermitteln der Quellcode-Dateien zu deaktivieren";
|
|
78
|
+
readonly disable_git_set_and_git_revision_used: "disableGit wurde gesetzt und sourceLinkTemplate enthält {gitRevision}, was mit dem Leerstring ersetzt wird, da keine Revision angegeben wurde";
|
|
79
|
+
readonly git_remote_0_not_valid: "Das angegebene Git-Remote \"{0}\" war nicht gültig. Links auf Quellcode-Dateien werden nicht funktionieren";
|
|
80
|
+
readonly reflection_0_tried_to_merge_into_child_1: "Die Reflection {0} versuchte mittels @mergeModuleWith, sich in eines ihrer Kinder einzufügen: {1}";
|
|
81
|
+
readonly include_0_in_1_specified_2_resolved_to_3_does_not_exist: "{0}-Tag im Kommentar für {1} gab \"{2}\" zum Einbinden an, was zu \"{3}\" aufgelöst wurde und nicht existiert oder keine Datei ist.";
|
|
82
|
+
readonly include_0_in_1_specified_2_circular_include_3: "{0}-Tag im Kommentar für {1} gab \"{2}\" zum Einbinden an, was in einer zyklischen Einbindung resultierte:\n\t{3}";
|
|
83
|
+
readonly include_0_tag_in_1_specified_2_file_3_region_4_region_not_found: "{0}-Tag in {1} gab \"{2}\" zum Einbinden der Region mit Label \"{4}\" aus Datei \"{3}\" an, aber die Region wurde nicht in der Datei gefunden.";
|
|
84
|
+
readonly include_0_tag_in_1_region_2_region_not_supported: "{0}-Tag in {1} gab \"{2}\" an, aber Regionen werden für die Dateierweiterung nicht unterstützt.";
|
|
85
|
+
readonly include_0_tag_in_1_specified_2_file_3_region_4_region_close_not_found: "{0}-Tag in {1} gab \"{2}\" zum Einbinden der Region mit Label \"{4}\" aus Datei \"{3}\" an, aber das Kommentar zum Schließen der Region wurde nicht in der Datei gefunden.";
|
|
86
|
+
readonly include_0_tag_in_1_specified_2_file_3_region_4_region_open_not_found: "{0}-Tag in {1} gab \"{2}\" zum Einbinden der Region mit Label \"{4}\" aus Datei \"{3}\" an, aber das Kommentar zum Öffnen einer Region wurde nicht in der Datei gefunden.";
|
|
87
|
+
readonly include_0_tag_in_1_specified_2_file_3_region_4_region_close_found_multiple_times: "{0}-Tag in {1} gab \"{2}\" zum Einbinden der Region mit Label \"{4}\" aus Datei \"{3}\" an, aber das Kommentar zum Schließen der Region wurde mehrfach in der Datei gefunden.";
|
|
88
|
+
readonly include_0_tag_in_1_specified_2_file_3_region_4_region_open_found_multiple_times: "{0}-Tag in {1} gab \"{2}\" zum Einbinden der Region mit Label \"{4}\" aus Datei \"{3}\" an, aber das Kommentar zum Öffnen der Region wurde mehrfach in der Datei gefunden.";
|
|
89
|
+
readonly include_0_tag_in_1_specified_2_file_3_region_4_region_found_multiple_times: "{0}-Tag in {1} gab \"{2}\" zum Einbinden der Region mit Label \"{4}\" aus Datei \"{3}\" an, aber die Region wurde mehrfach in der Datei gefunden.";
|
|
90
|
+
readonly include_0_tag_in_1_specified_2_file_3_region_4_region_empty: "{0}-Tag in {1} gab \"{2}\" zum Einbinden der Region mit Label \"{4}\" aus Datei \"{3}\" an. Die Region wurde gefunden, ist aber leer oder enthält nur Leerzeichen.";
|
|
91
|
+
readonly include_0_tag_in_1_specified_2_file_3_lines_4_invalid_range: "{0}-Tag in {1} gab \"{2}\" zum Einbinden der Zeilen {4} aus Datei \"{3}\" an, aber ein ungültiges Intervall wurde angegeben.";
|
|
92
|
+
readonly include_0_tag_in_1_specified_2_file_3_lines_4_but_only_5_lines: "{0}-Tag in {1} gab \"{2}\" zum Einbinden der Zeilen {4} aus Datei \"{3}\" an, aber die Datei hat nur {5} Zeilen.";
|
|
93
|
+
readonly custom_css_file_0_does_not_exist: "Eigene CSS-Datei unter {0} existiert nicht";
|
|
94
|
+
readonly custom_js_file_0_does_not_exist: "Eigene JavaScript-Datei unter {0} existiert nicht";
|
|
95
|
+
readonly unsupported_highlight_language_0_not_highlighted_in_comment_for_1: "Sprache {0} unterstützt keine Syntaxhervorhebung und wird im Kommentar {1} nicht hervorgehoben";
|
|
96
|
+
readonly unloaded_language_0_not_highlighted_in_comment_for_1: "Code-Block mit Sprache {0} wird keine Syntaxhervorhebung im Kommentar für {1} erfahren, da diese Sprache nicht in der Option highlightLanguages enthalten ist";
|
|
97
|
+
readonly yaml_frontmatter_not_an_object: "Erwartete ein Objekt für die YAML-Frontmatter";
|
|
98
|
+
readonly could_not_write_0: "{0} konnte nicht geschrieben werden";
|
|
99
|
+
readonly could_not_empty_output_directory_0: "Ausgabeverzeichnis {0} konnte nicht geleert werden";
|
|
100
|
+
readonly could_not_create_output_directory_0: "Konnte das Ausgabeverzeichnis {0} nicht erstellen";
|
|
101
|
+
readonly theme_0_is_not_defined_available_are_1: "Das Theme '{0}' ist nicht definiert. Verfügbare Themes sind: {1}";
|
|
102
|
+
readonly router_0_is_not_defined_available_are_1: "Der Router '{0}' ist nicht definiert. Verfügbare Router sind: {1}";
|
|
103
|
+
readonly reflection_0_links_to_1_but_anchor_does_not_exist_try_2: "{0} verlinkt auf {1}, aber der Anker existiert nicht. Meinten Sie vielleicht:\n\t{2}";
|
|
104
|
+
readonly no_entry_points_provided: "Einstiegspunkte wurden weder angegeben noch konnten sie aus den package.json-Exports ermittelt werden. Das ist wahrscheinlich eine Fehlerkonfiguration";
|
|
105
|
+
readonly unable_to_find_any_entry_points: "Konnte keine Einstiegspunkte finden. Beachte auch die vorigen Warnmeldungen";
|
|
106
|
+
readonly watch_does_not_support_packages_mode: "Watch-Modus unterstützt Einstiegspunkte der Art 'packages' nicht";
|
|
107
|
+
readonly watch_does_not_support_merge_mode: "Watch-Modus unterstützt Einstiegspunkte der Art 'merge' nicht";
|
|
108
|
+
readonly entry_point_0_not_in_program: "Der Einstiegspunkt {0} wird nicht von der Option 'files' oder 'include' in der tsconfig referenziert";
|
|
109
|
+
readonly failed_to_resolve_0_to_ts_path: "Konnte den Einstiegspunktpfad {0} der package.json nicht zu einer TypeScript-Quellcode-Datei auflösen";
|
|
110
|
+
readonly use_expand_or_glob_for_files_in_dir: "Falls Sie Dateien aus diesem Verzeichnis einbinden wollten, setzen Sie die --entryPointStrategy auf \"expand\" oder geben Sie einen Glob an";
|
|
111
|
+
readonly glob_0_did_not_match_any_files: "Der Glob {0} passte auf keine Dateien";
|
|
112
|
+
readonly entry_point_0_did_not_match_any_files_after_exclude: "Der Glob {0} passte auf keine Dateien mehr, nachdem die Exclude-Patterns angewandt wurden";
|
|
113
|
+
readonly entry_point_0_did_not_exist: "Angegebener Einstiegspunkt {0} existiert nicht";
|
|
114
|
+
readonly entry_point_0_did_not_match_any_packages: "Der Einstiegspunkt-Glob {0} passte auf keine Verzeichnisse mit einer package.json-Datei";
|
|
115
|
+
readonly file_0_not_an_object: "Die Datei {0} ist kein Objekt";
|
|
116
|
+
readonly serialized_project_referenced_0_not_part_of_project: "Serialisiertes Projekt referenziert Reflection {0}, welche kein Teil des Projekts ist";
|
|
117
|
+
readonly saved_relative_path_0_resolved_from_1_does_not_exist: "Serialisiertes Projekt referenziert {0}, was relativ zu {1} nicht existiert";
|
|
118
|
+
readonly circular_reference_extends_0: "Zyklische Referenz im \"extends\"-Feld von {0} gefunden";
|
|
119
|
+
readonly failed_resolve_0_to_file_in_1: "Konnte {0} in {1} nicht zu einer Datei auflösen";
|
|
120
|
+
readonly glob_0_should_use_posix_slash: "Der Glob \"{0}\" maskiert nichtspezielle Zeichen. Glob-Eingaben für TypeDoc dürfen keine Windows-Pfadtrennzeichen (\\) verwenden, nutzen Sie stattdessen Posix-Pfadtrennzeichen (/)";
|
|
121
|
+
readonly option_0_can_only_be_specified_by_config_file: "Die Option '{0}' darf nur in einer Konfigurationsdatei angegeben werden";
|
|
122
|
+
readonly option_0_expected_a_value_but_none_provided: "--{0} erwartet einen Wert, aber keiner wurde als Argument übergeben";
|
|
123
|
+
readonly unknown_option_0_may_have_meant_1: "Unbekannte Option: {0}, meinten Sie vielleicht:\n\t{1}";
|
|
124
|
+
readonly typedoc_key_in_0_ignored: "Das Feld 'typedoc' in {0} wurde von der entryPointStrategy \"legacy-packages\" verwendet und wird ignoriert";
|
|
125
|
+
readonly typedoc_options_must_be_object_in_0: "Konnte das Feld \"typedocOptions\" in {0} nicht parsen, stellen Sie sicher, dass es existiert und ein Objekt enthält";
|
|
126
|
+
readonly tsconfig_file_0_does_not_exist: "Die tsconfig-Datei {0} existiert nicht";
|
|
127
|
+
readonly tsconfig_file_specifies_options_file: "\"typedocOptions\" in der tsconfig-Datei gibt eine einzulesende Datei mit Optionen an, aber die Optionsdatei wurde schon eingelesen. Das ist wahrscheinlich ein Konfigurationsfehler";
|
|
128
|
+
readonly tsconfig_file_specifies_tsconfig_file: "\"typedocOptions\" in der tsconfig-Datei darf keine tsconfig-Datei zum Einlesen angeben";
|
|
129
|
+
readonly tags_0_defined_in_typedoc_json_overwritten_by_tsdoc_json: "Die {0} aus der typedoc.json werden durch die Konfiguration in der tsdoc.json überschrieben";
|
|
130
|
+
readonly failed_read_tsdoc_json_0: "Konnte tsdoc.json-Datei unter {0} nicht lesen";
|
|
131
|
+
readonly invalid_tsdoc_json_0: "Die Datei {0} ist keine gültige tsdoc.json-Datei";
|
|
132
|
+
readonly options_file_0_does_not_exist: "Die Optionsdatei {0} existiert nicht";
|
|
133
|
+
readonly failed_read_options_file_0: "Konnte {0} nicht parsen, stellen Sie sicher, dass die Datei existiert und ein Objekt exportiert";
|
|
134
|
+
readonly invalid_plugin_0_missing_load_function: "Ungültige Struktur im Plugin {0}, keine load-Funktion gefunden";
|
|
135
|
+
readonly plugin_0_could_not_be_loaded: "Das Plugin {0} konnte nicht geladen werden";
|
|
136
|
+
readonly help_options: "JSON-Datei mit Optionen, die geladen werden soll. Ist keine angegeben, schaut TypeDoc nach einer 'typedoc.json' im aktuellen Verzeichnis";
|
|
137
|
+
readonly help_tsconfig: "TypeScript-Konfigurationsdatei, die geladen werden soll. Ist keine angegeben, schaut TypeDoc nach einer 'tsconfig.json' im aktuellen Verzeichnis";
|
|
138
|
+
readonly help_compilerOptions: "Ausgewählte TypeScript-Compiler-Optionen überschreiben, die von TypeDoc genutzt werden";
|
|
139
|
+
readonly help_lang: "Setzt die Sprache für die generierte Dokumentation und für die von TypeDoc ausgegebenen Meldungen";
|
|
140
|
+
readonly help_locales: "Fügt Übersetzungen für eine bestimmte Sprache hinzu. Die Option ist hauptsächlich als Überbrückung gedacht, bis TypeDoc die Sprache offiziell unterstützt";
|
|
141
|
+
readonly help_packageOptions: "Setzt Optionen, die innerhalb jedes Packages verwendet werden, falls die entryPointStrategy auf packages gesetzt ist";
|
|
142
|
+
readonly help_entryPoints: "Die Einstiegspunkte der Dokumentation";
|
|
143
|
+
readonly help_entryPointStrategy: "Die zu nutzende Strategie, um die Einstiegspunkte in Dokumentationsmodule umzuwandeln";
|
|
144
|
+
readonly help_alwaysCreateEntryPointModule: "Falls gesetzt, erstellt TypeDoc immer ein `Modul` für Einstiegspunkte, selbst wenn nur eins angegeben wurde";
|
|
145
|
+
readonly help_projectDocuments: "Dokumente, die als Kinder zur Root-Ebene der generierten Dokumentation hinzugefügt werden sollen. Unterstützt Globs, um mehrere Dateien zu selektieren";
|
|
146
|
+
readonly help_exclude: "Patterns zum Ausschließen von Dateien, wenn nach Dateien in einem Verzeichnis gesucht wird, das als Einstiegspunkt angegeben wurde";
|
|
147
|
+
readonly help_externalPattern: "Patterns für Dateien, die als extern betrachtet werden sollen";
|
|
148
|
+
readonly help_excludeExternals: "Verhindert die Dokumentation von als extern aufgelösten Symbolen";
|
|
149
|
+
readonly help_excludeNotDocumented: "Verhindert, dass Symbole in der Dokumentation erscheinen, die nicht explizit dokumentiert wurden";
|
|
150
|
+
readonly help_excludeNotDocumentedKinds: "Arten von Reflections, die von excludeNotDocumented entfernt werden können";
|
|
151
|
+
readonly help_excludeInternal: "Verhindert, dass Symbole in der Dokumentation erscheinen, die mit @internal markiert sind";
|
|
152
|
+
readonly help_excludeCategories: "Schließt Symbole aus dieser Kategorie von der Dokumentation aus";
|
|
153
|
+
readonly help_excludeProtected: "Ignoriert geschützte Variablen und Methoden";
|
|
154
|
+
readonly help_excludeReferences: "Wird ein Symbol mehrfach exportiert, ignoriere alle außer dem ersten Export";
|
|
155
|
+
readonly help_externalSymbolLinkMappings: "Definiert eigene Links für Symbole, die nicht in der Dokumentation enthalten sind";
|
|
156
|
+
readonly help_out: "Gibt den Pfad an, wohin die Dokumentation für die Default-Ausgabe geschrieben werden soll. Der Standard-Ausgabetyp kann von Plugins geändert werden.";
|
|
157
|
+
readonly help_html: "Gibt den Pfad an, wohin die HTML-Dokumentation geschrieben werden soll.";
|
|
158
|
+
readonly help_json: "Gibt den Pfad und den Dateinamen an, wohin eine JSON-Datei mit einer Beschreibung des Projekts geschrieben werden soll";
|
|
159
|
+
readonly help_pretty: "Gibt an, ob die JSON-Datei mit Tabs formatiert werden soll";
|
|
160
|
+
readonly help_emit: "Gibt an, was TypeDoc ausgeben soll, 'docs', 'both', oder 'none'";
|
|
161
|
+
readonly help_theme: "Gibt den Namen des Themes an, mit dem die Dokumentation erstellt werden soll";
|
|
162
|
+
readonly help_router: "Gibt den Namen des Routers an, der zum Ermitteln der Dateinamen in der Dokumentation verwendet wird";
|
|
163
|
+
readonly help_lightHighlightTheme: "Gibt das Theme für die Syntaxhervorhebung im Light-Modus an";
|
|
164
|
+
readonly help_darkHighlightTheme: "Gibt das Theme für die Syntaxhervorhebung im Dark-Modus an";
|
|
165
|
+
readonly help_highlightLanguages: "Gibt die Sprachen an, die geladen werden sollen, um Code bei der Ausgabe hervorzuheben";
|
|
166
|
+
readonly help_ignoredHighlightLanguages: "Gibt Sprachen an, welche als gültige Sprache für die Syntaxhervorhebung erkannt werden, aber zur Laufzeit nicht hervorgehoben werden";
|
|
167
|
+
readonly help_typePrintWidth: "Breite beim Rendern eines Typs, ab der Code in eine neue Zeile umgebrochen wird";
|
|
168
|
+
readonly help_customCss: "Pfad auf eine eigene CSS-Datei, die zusätzlich zum Theme importiert wird";
|
|
169
|
+
readonly help_customJs: "Pfade auf eine eigene einzubindende JavaScript-Datei";
|
|
170
|
+
readonly help_markdownItOptions: "Gibt Optionen an, die zu markdown-it weitergereicht werden, dem von TypeDoc verwendeten Markdown-Parser";
|
|
171
|
+
readonly help_markdownItLoader: "Gibt ein Callback an, das beim Laden der markdown-it-Instanz gerufen wird. Dem Callback wird die Instanz des Parsers übergeben, den TypeDoc verwenden wird";
|
|
172
|
+
readonly help_maxTypeConversionDepth: "Setzt die maximale Tiefe von Typen, bis zu der diese konvertiert werden";
|
|
173
|
+
readonly help_name: "Setzt den Namen des Projekts, der im Header des Templates verwendet wird";
|
|
174
|
+
readonly help_includeVersion: "Fügt die Package-Version zum Projektnamen hinzu";
|
|
175
|
+
readonly help_disableSources: "Deaktiviert das Setzen der Quelle, wenn eine Reflection dokumentiert wird";
|
|
176
|
+
readonly help_sourceLinkTemplate: "Gibt ein Link-Template an, das beim Generieren von Quelldatei-URLs verwendet wird. Wenn nicht gesetzt, wird automatisch ein Template vom Git-Remote erstellt. Unterstützt die Platzhalter {path}, {line} und {gitRevision}";
|
|
177
|
+
readonly help_gitRevision: "Nutzt die angegebene Revision statt der neuesten Revision zum Verlinken der Quellcode-Dateien auf GitHub/Bitbucket. Hat keinen Effekt, wenn disableSources gesetzt ist";
|
|
178
|
+
readonly help_gitRemote: "Nutzt das angegebene Remote zum Verlinken von Quellcode-Dateien auf GitHub/Bitbucket. Hat keinen Effekt, wenn disableGit oder disableSources gesetzt ist";
|
|
179
|
+
readonly help_disableGit: "Gehe davon aus, dass auf alles mit dem sourceLinkTemplate verlinkt werden kann, sourceLinkTemplate muss gesetzt sein, falls die Option aktiviert ist. Der Platzhalter {path} ist dann relativ zum basePath";
|
|
180
|
+
readonly help_basePath: "Gibt den Basispfad an, der beim Anzeigen von Dateipfaden verwendet wird";
|
|
181
|
+
readonly help_excludeTags: "Entfernt die angegebenen Block- und Modifier-Tags von den Doc-Kommentaren";
|
|
182
|
+
readonly help_notRenderedTags: "Tags, die in den Doc-Kommentaren bewahrt werden, aber in der Dokumentation nicht angezeigt werden sollen";
|
|
183
|
+
readonly help_cascadedModifierTags: "Modifier-Tags, die in alle Kinder einer Eltern-Reflection kopiert werden sollen";
|
|
184
|
+
readonly help_readme: "Pfad auf die Readme-Datei, die auf der Indexseite angezeigt werden soll. `none`, um die Indexseite zu deaktivieren und die Dokumentation auf der Seite mit den globalen Variablen beginnen zu lassen";
|
|
185
|
+
readonly help_cname: "Setzt den CNAME-Dateitext, nützlich für eigene Domains bei GitHub-Pages";
|
|
186
|
+
readonly help_favicon: "Pfad auf ein Favicon, welches als Icon für die Seite eingebunden werden soll";
|
|
187
|
+
readonly help_sourceLinkExternal: "Gibt an, dass Quelldatei-Links als externe Links behandelt und in einem neuen Tab geöffnet werden sollen";
|
|
188
|
+
readonly help_markdownLinkExternal: "Gibt an, dass http[s]://-Links in Kommentaren und Markdown-Dateien als externe Links behandelt und in einem neuen Tab geöffnet werden sollen";
|
|
189
|
+
readonly help_githubPages: "Erzeugt eine .nojekyll-Datei, um 404-Fehler bei GitHub-Pages zu vermeiden. Standardwert ist `true`";
|
|
190
|
+
readonly help_hostedBaseUrl: "Gibt die Basis-URL an, die beim Erzeugen einer sitemap.xml im Ausgabeverzeichnis und für kanonische Links verwendet wird. Wenn nicht angegeben, wird keine Sitemap erzeugt";
|
|
191
|
+
readonly help_useHostedBaseUrlForAbsoluteLinks: "Wenn gesetzt, erzeugt TypeDoc unter Verwendung der Option hostedBaseUrl absolute Links auf Unterseiten der Seite";
|
|
192
|
+
readonly help_hideGenerator: "Gibt den TypeDoc-Link am Ende der Seite nicht aus";
|
|
193
|
+
readonly help_customFooterHtml: "Eigener Footer nach dem TypeDoc-Link";
|
|
194
|
+
readonly help_customFooterHtmlDisableWrapper: "Wenn gesetzt, wird das Wrapper-Element um customFooterHtml nicht ausgegeben";
|
|
195
|
+
readonly help_cacheBust: "Zeitpunkt der Erstellung der Dokumentation in Links auf statische Assets inkludieren";
|
|
196
|
+
readonly help_searchInComments: "Wenn gesetzt, wird der Suchindex auch Kommentare enthalten. Dies wird die Größe des Suchindex stark erhöhen";
|
|
197
|
+
readonly help_searchInDocuments: "Wenn gesetzt, wird der Suchindex auch Dokumente enthalten. Dies wird die Größe des Suchindex stark erhöhen";
|
|
198
|
+
readonly help_cleanOutputDir: "Wenn gesetzt, löscht TypeDoc das Ausgabeverzeichnis vor dem Schreiben der Dokumentation";
|
|
199
|
+
readonly help_titleLink: "Setzt den Link des Titels im Header. Standardmäßig wird auf die Startseite der Dokumentation verlinkt";
|
|
200
|
+
readonly help_navigationLinks: "Gibt Links an, die mit in den Header geschrieben werden";
|
|
201
|
+
readonly help_sidebarLinks: "Gibt Links an, die mit in die Seitenleiste geschrieben werden";
|
|
202
|
+
readonly help_navigationLeaves: "Zweige des Navigationsbaums, die nicht ausgeklappt sein sollen";
|
|
203
|
+
readonly help_headings: "Legt fest, welche optionalen Überschriften ausgegeben werden sollen";
|
|
204
|
+
readonly help_sluggerConfiguration: "Legt fest, wie Anker im generierten HTML festgelegt werden.";
|
|
205
|
+
readonly help_navigation: "Legt fest, wie die Navigationsseitenleiste organisiert wird";
|
|
206
|
+
readonly help_includeHierarchySummary: "Wenn gesetzt, wird eine Übersicht der Reflection-Hierarchie auf der Zusammenfassungsseite ausgegeben. Standardwert ist `true`";
|
|
207
|
+
readonly help_visibilityFilters: "Gibt die standardmäßige Sichtbarkeit für eingebaute Filter sowie zusätzliche Filter anhand eines Modifier-Tags an.";
|
|
208
|
+
readonly help_searchCategoryBoosts: "Konfiguriert die Suche so, dass ausgewählte Kategorien als relevanter bewertet werden";
|
|
209
|
+
readonly help_searchGroupBoosts: "Konfiguriert die Suche so, dass ausgewählte Symbolarten (z.B. \"Klasse\") als relevanter bewertet werden";
|
|
210
|
+
readonly help_useFirstParagraphOfCommentAsSummary: "Wenn gesetzt und kein @summary-Tag vorhanden ist, verwendet TypeDoc den ersten Absatz eines Kommentars als die Kurzzusammenfassung in der Modul- oder Namensraum-Ansicht";
|
|
211
|
+
readonly help_jsDocCompatibility: "Setzt Kompatibilitätsoptionen beim Parsen von Kommentaren, welche die Ähnlichkeit zu JSDoc-Kommentaren erhöhen";
|
|
212
|
+
readonly help_suppressCommentWarningsInDeclarationFiles: "Verhindert, dass Warnungen gemeldet werden, die durch unspezifizierte Tags innerhalb von Kommentaren in .d.ts-Dateien verursacht wurden.";
|
|
213
|
+
readonly help_commentStyle: "Legt fest, wie TypeDoc nach Kommentaren sucht";
|
|
214
|
+
readonly help_useTsLinkResolution: "Verwendet TypeScripts Mechanismus zur Auflösung von Links beim Ermitteln des Ziels eines @link-Tags. Betrifft nur Kommentare im JSDoc-Stil";
|
|
215
|
+
readonly help_preserveLinkText: "Wenn gesetzt, wird bei @link-Tags ohne expliziten Link-Text der Textinhalt als Link verwendet. Wenn nicht gesetzt, wird der Name der Ziel-Reflection verwendet";
|
|
216
|
+
readonly help_blockTags: "Block-Tags, die TypeDoc beim Parsen von Kommentaren erkennen soll";
|
|
217
|
+
readonly help_inlineTags: "Inline-Tags, die TypeDoc beim Parsen von Kommentaren erkennen soll";
|
|
218
|
+
readonly help_modifierTags: "Modifier-Tags, die TypeDoc beim Parsen von Kommentaren erkennen soll";
|
|
219
|
+
readonly help_categorizeByGroup: "Gibt an, ob die Kategorisierung auf der Gruppen-Ebene vorgenommen werden soll";
|
|
220
|
+
readonly help_groupReferencesByType: "Wenn gesetzt, werden Referenzen zusammen mit dem Typ, auf den sie verweisen, gruppiert und nicht innerhalb einer 'Referenzen'-Gruppe";
|
|
221
|
+
readonly help_defaultCategory: "Gibt die Standard-Kategorie für Reflections ohne eine Kategorie an";
|
|
222
|
+
readonly help_categoryOrder: "Gibt die Reihenfolge an, in der Kategorien erscheinen. * legt die relative Reihenfolge für Kategorien fest, die nicht in der Liste sind";
|
|
223
|
+
readonly help_groupOrder: "Gibt die Reihenfolge an, in der Gruppen erscheinen. * legt die relative Reihenfolge für Gruppen fest, die nicht in der Liste sind";
|
|
224
|
+
readonly help_sort: "Gibt die Sortierstrategie für dokumentierte Werte an";
|
|
225
|
+
readonly help_sortEntryPoints: "Wenn gesetzt, werden auf Einstiegspunkte die gleichen Sortierregeln angewandt, die auch für andere Reflections gelten";
|
|
226
|
+
readonly help_kindSortOrder: "Gibt die Sortierreihenfolge für Reflections an, wenn ein 'kind' festgelegt ist";
|
|
227
|
+
readonly help_watch: "Überwache Dateien auf Änderungen und baue die Dokumentation bei Änderungen neu";
|
|
228
|
+
readonly help_preserveWatchOutput: "Wenn gesetzt, leert TypeDoc den Bildschirm nicht zwischen Kompilierungsschritten";
|
|
229
|
+
readonly help_skipErrorChecking: "Führt die Typenprüfung von TypeScript nicht vor Erzeugung der Dokumentation aus";
|
|
230
|
+
readonly help_help: "Gibt diese Nachricht aus";
|
|
231
|
+
readonly help_version: "Gibt die Version von TypeDoc aus";
|
|
232
|
+
readonly help_showConfig: "Gibt die aufgelöste Konfiguration aus und stoppt";
|
|
233
|
+
readonly help_plugin: "Gibt die NPM-Plugins an, die geladen werden sollen. Nicht angeben, um alle installierten Plugins zu laden";
|
|
234
|
+
readonly help_logLevel: "Gibt an, welches Level für das Logging verwendet werden soll";
|
|
235
|
+
readonly help_treatWarningsAsErrors: "Wenn gesetzt, werden alle Warnungen als Fehler behandelt";
|
|
236
|
+
readonly help_treatValidationWarningsAsErrors: "Wenn gesetzt, werden alle Warnungen, die während der Validierung erzeugt wurden, als Fehler behandelt. Diese Option kann nicht zum Deaktivieren von treatWarningsAsErrors für Validierungswarnungen verwendet werden";
|
|
237
|
+
readonly help_intentionallyNotExported: "Eine Liste von Typen, welche keine Warnungen der Art 'referenziert, aber nicht dokumentiert' erzeugen sollen";
|
|
238
|
+
readonly help_requiredToBeDocumented: "Eine Liste von Reflection-Arten, die dokumentiert werden müssen";
|
|
239
|
+
readonly help_packagesRequiringDocumentation: "Eine Liste von Packages, die dokumentiert werden müssen";
|
|
240
|
+
readonly help_intentionallyNotDocumented: "Eine Liste von vollständigen Reflection-Namen, welche keine Warnungen erzeugen sollen, wenn sie nicht dokumentiert sind";
|
|
241
|
+
readonly help_validation: "Gibt an, welche Validierungsschritte TypeDoc auf die erzeugte Dokumentation anwenden soll";
|
|
242
|
+
readonly unknown_option_0_you_may_have_meant_1: "Unbekannte Option '{0}'. Meinten Sie vielleicht:\n\t{1}";
|
|
243
|
+
readonly option_0_must_be_between_1_and_2: "{0} muss zwischen {1} und {2} liegen";
|
|
244
|
+
readonly option_0_must_be_equal_to_or_greater_than_1: "{0} muss größer oder gleich {1} sein";
|
|
245
|
+
readonly option_0_must_be_less_than_or_equal_to_1: "{0} muss kleiner oder gleich {1} sein";
|
|
246
|
+
readonly option_0_must_be_one_of_1: "{0} muss enthalten sein in {1}";
|
|
247
|
+
readonly flag_0_is_not_valid_for_1_expected_2: "Das Flag '{0}' ist nicht gültig für {1}, erwartet wird {2}";
|
|
248
|
+
readonly expected_object_with_flag_values_for_0: "Erwartet für {0} wird entweder true/false oder ein Objekt mit Flag-Werten";
|
|
249
|
+
readonly flag_values_for_0_must_be_booleans: "Flag-Werte für {0} müssen Wahrheitswerte sein";
|
|
250
|
+
readonly locales_must_be_an_object: "Die Option 'locales' muss auf ein Objekt der folgenden Form gesetzt werden: { en: { theme_implements: \"Implements\" }}";
|
|
251
|
+
readonly exclude_not_documented_specified_0_valid_values_are_1: "excludeNotDocumentedKinds erlaubt nur bekannte Werte, und ungültige Werte wurden angegeben ({0}). Die gültigen Arten sind:\n{1}";
|
|
252
|
+
readonly external_symbol_link_mappings_must_be_object: "externalSymbolLinkMappings muss vom Typ Record<package name, Record<symbol name, link>> sein";
|
|
253
|
+
readonly highlight_theme_0_must_be_one_of_1: "{0} muss einer der folgenden Werte sein: {1}";
|
|
254
|
+
readonly highlightLanguages_contains_invalid_languages_0: "highlightLanguages enthält ungültige Sprachen: {0}, führen Sie typedoc --help aus, um eine Liste unterstützter Sprachen zu erhalten";
|
|
255
|
+
readonly hostedBaseUrl_must_start_with_http: "hostedBaseUrl muss mit http:// oder https:// anfangen";
|
|
256
|
+
readonly useHostedBaseUrlForAbsoluteLinks_requires_hostedBaseUrl: "Die Option useHostedBaseUrlForAbsoluteLinks erfordert, dass auch hostedBaseUrl gesetzt wird";
|
|
257
|
+
readonly favicon_must_have_one_of_the_following_extensions_0: "Favicon muss eine der folgenden Dateiendungen haben: {0}";
|
|
258
|
+
readonly option_0_must_be_an_object: "Die Option '{0}' muss ein Objekt (kein Array) sein";
|
|
259
|
+
readonly option_0_must_be_a_function: "Die Option '{0}' muss eine Funktion sein";
|
|
260
|
+
readonly option_0_must_be_object_with_urls: "{0} muss ein Objekt sein, mit String-Labels als Schlüssel und URLs als Werte";
|
|
261
|
+
readonly visibility_filters_only_include_0: "visibilityFilters darf nur die folgenden nicht-@-Schlüssel enthalten: {0}";
|
|
262
|
+
readonly visibility_filters_must_be_booleans: "Alle Werte von visibilityFilters müssen Wahrheitswerte sein";
|
|
263
|
+
readonly option_0_values_must_be_numbers: "Alle Werte von {0} müssen Zahlen sein";
|
|
264
|
+
readonly option_0_values_must_be_array_of_tags: "{0} muss ein Array mit gültigen Tag-Namen sein";
|
|
265
|
+
readonly option_0_specified_1_but_only_2_is_valid: "{0} erlaubt nur bekannte Werte, und ungültige Werte wurden angegeben ({1}). Die gültigen Sortierungsstrategien sind:\n{2}";
|
|
266
|
+
readonly option_outputs_must_be_array: "Option \"outputs\" muss ein Array aus Elementen vom Typ { name: string, path: string, options?: TypeDocOptions } sein.";
|
|
267
|
+
readonly specified_output_0_has_not_been_defined: "Angegebene Ausgabe \"{0}\" wurde nicht definiert.";
|
|
268
|
+
readonly alert_note: "Hinweis";
|
|
269
|
+
readonly alert_tip: "Tipp";
|
|
270
|
+
readonly alert_important: "Wichtig";
|
|
271
|
+
readonly alert_warning: "Warnung";
|
|
272
|
+
readonly alert_caution: "Achtung";
|
|
273
|
+
readonly kind_project: "Projekt";
|
|
274
|
+
readonly kind_module: "Modul";
|
|
275
|
+
readonly kind_namespace: "Namensraum";
|
|
276
|
+
readonly kind_enum: "Aufzählung";
|
|
277
|
+
readonly kind_enum_member: "Aufzählungselement";
|
|
278
|
+
readonly kind_variable: "Variable";
|
|
279
|
+
readonly kind_function: "Funktion";
|
|
280
|
+
readonly kind_class: "Klasse";
|
|
281
|
+
readonly kind_interface: "Schnittstelle";
|
|
282
|
+
readonly kind_constructor: "Konstruktor";
|
|
283
|
+
readonly kind_property: "Eigenschaft";
|
|
284
|
+
readonly kind_method: "Methode";
|
|
285
|
+
readonly kind_call_signature: "Aufrufsignatur";
|
|
286
|
+
readonly kind_index_signature: "Indexsignatur";
|
|
287
|
+
readonly kind_constructor_signature: "Konstruktorsignatur";
|
|
288
|
+
readonly kind_parameter: "Parameter";
|
|
289
|
+
readonly kind_type_literal: "Typenliteral";
|
|
290
|
+
readonly kind_type_parameter: "Typenparameter";
|
|
291
|
+
readonly kind_accessor: "Zugriffsfunktion";
|
|
292
|
+
readonly kind_get_signature: "Abfragesignatur";
|
|
293
|
+
readonly kind_set_signature: "Änderungssignatur";
|
|
294
|
+
readonly kind_type_alias: "Typenalias";
|
|
295
|
+
readonly kind_reference: "Referenz";
|
|
296
|
+
readonly kind_document: "Dokument";
|
|
297
|
+
readonly kind_plural_project: "Projekte";
|
|
298
|
+
readonly kind_plural_module: "Module";
|
|
299
|
+
readonly kind_plural_namespace: "Namensräume";
|
|
300
|
+
readonly kind_plural_enum: "Aufzählungen";
|
|
301
|
+
readonly kind_plural_enum_member: "Aufzählungselemente";
|
|
302
|
+
readonly kind_plural_variable: "Variablen";
|
|
303
|
+
readonly kind_plural_function: "Funktionen";
|
|
304
|
+
readonly kind_plural_class: "Klassen";
|
|
305
|
+
readonly kind_plural_interface: "Schnittstellen";
|
|
306
|
+
readonly kind_plural_constructor: "Konstruktoren";
|
|
307
|
+
readonly kind_plural_property: "Eigenschaften";
|
|
308
|
+
readonly kind_plural_method: "Methoden";
|
|
309
|
+
readonly kind_plural_call_signature: "Aufrufsignaturen";
|
|
310
|
+
readonly kind_plural_index_signature: "Indexsignaturen";
|
|
311
|
+
readonly kind_plural_constructor_signature: "Konstruktorsignaturen";
|
|
312
|
+
readonly kind_plural_parameter: "Parameter";
|
|
313
|
+
readonly kind_plural_type_literal: "Typenliterale";
|
|
314
|
+
readonly kind_plural_type_parameter: "Typenparameter";
|
|
315
|
+
readonly kind_plural_accessor: "Zugriffsfunktionen";
|
|
316
|
+
readonly kind_plural_get_signature: "Abfragesignaturen";
|
|
317
|
+
readonly kind_plural_set_signature: "Änderungssignaturen";
|
|
318
|
+
readonly kind_plural_type_alias: "Typenaliasse";
|
|
319
|
+
readonly kind_plural_reference: "Referenzen";
|
|
320
|
+
readonly kind_plural_document: "Dokumente";
|
|
321
|
+
readonly flag_private: "Privat";
|
|
322
|
+
readonly flag_protected: "Geschützt";
|
|
323
|
+
readonly flag_public: "Öffentlich";
|
|
324
|
+
readonly flag_static: "Statisch";
|
|
325
|
+
readonly flag_external: "Extern";
|
|
326
|
+
readonly flag_optional: "Optional";
|
|
327
|
+
readonly flag_rest: "Rest";
|
|
328
|
+
readonly flag_abstract: "Abstrakt";
|
|
329
|
+
readonly flag_const: "Konstant";
|
|
330
|
+
readonly flag_readonly: "Schreibgeschützt";
|
|
331
|
+
readonly flag_inherited: "Geerbt";
|
|
332
|
+
readonly theme_implements: "Implementiert";
|
|
333
|
+
readonly theme_indexable: "Indexierbar";
|
|
334
|
+
readonly theme_type_declaration: "Typendeklaration";
|
|
335
|
+
readonly theme_index: "Index";
|
|
336
|
+
readonly theme_hierarchy: "Hierarchie";
|
|
337
|
+
readonly theme_hierarchy_summary: "Hierarchieübersicht";
|
|
338
|
+
readonly theme_hierarchy_view_summary: "Zusammenfassung anzeigen";
|
|
339
|
+
readonly theme_implemented_by: "Implementiert von";
|
|
340
|
+
readonly theme_defined_in: "Definiert in";
|
|
341
|
+
readonly theme_implementation_of: "Implementierung von";
|
|
342
|
+
readonly theme_inherited_from: "Geerbt von";
|
|
343
|
+
readonly theme_overrides: "Überschreibt";
|
|
344
|
+
readonly theme_returns: "Rückgabewert";
|
|
345
|
+
readonly theme_generated_using_typedoc: "Generiert mit TypeDoc";
|
|
346
|
+
readonly theme_preparing_search_index: "Bereite Suchindex vor...";
|
|
347
|
+
readonly theme_loading: "Lade...";
|
|
348
|
+
readonly theme_settings: "Einstellungen";
|
|
349
|
+
readonly theme_member_visibility: "Member-Sichtbarkeit";
|
|
350
|
+
readonly theme_theme: "Theme";
|
|
351
|
+
readonly theme_os: "OS";
|
|
352
|
+
readonly theme_light: "Light";
|
|
353
|
+
readonly theme_dark: "Dark";
|
|
354
|
+
readonly theme_on_this_page: "Auf dieser Seite";
|
|
355
|
+
readonly theme_search: "Suchen";
|
|
356
|
+
readonly theme_menu: "Menu";
|
|
357
|
+
readonly theme_permalink: "Permalink";
|
|
358
|
+
readonly theme_folder: "Ordner";
|
|
359
|
+
readonly theme_copy: "Kopieren";
|
|
360
|
+
readonly theme_copied: "Kopiert!";
|
|
361
|
+
readonly theme_normally_hidden: "Dieser Member ist normalerweise aufgrund der Filtereinstellungen versteckt.";
|
|
362
|
+
readonly theme_hierarchy_expand: "Ausklappen";
|
|
363
|
+
readonly theme_hierarchy_collapse: "Einklappen";
|
|
364
|
+
readonly theme_search_index_not_available: "Der Suchindex ist nicht verfügbar";
|
|
365
|
+
readonly theme_search_no_results_found_for_0: "Keine Resultate gefunden für {0}";
|
|
366
|
+
readonly theme_search_placeholder: "Dokumentation durchsuchen";
|
|
367
|
+
};
|
|
368
|
+
export default _default;
|