typedoc 0.26.11 → 0.27.0-beta.0
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/package.json +3 -0
- package/bin/typedoc +1 -1
- package/dist/index.d.ts +23 -13
- package/dist/index.js +22 -81
- package/dist/lib/application-events.js +1 -4
- package/dist/lib/application.d.ts +26 -16
- package/dist/lib/application.js +222 -242
- package/dist/lib/cli.js +3 -40
- package/dist/lib/converter/comments/blockLexer.d.ts +1 -1
- package/dist/lib/converter/comments/blockLexer.js +24 -30
- package/dist/lib/converter/comments/declarationReference.js +10 -21
- package/dist/lib/converter/comments/declarationReferenceResolver.d.ts +2 -2
- package/dist/lib/converter/comments/declarationReferenceResolver.js +40 -36
- package/dist/lib/converter/comments/discovery.d.ts +4 -4
- package/dist/lib/converter/comments/discovery.js +154 -172
- package/dist/lib/converter/comments/index.d.ts +4 -4
- package/dist/lib/converter/comments/index.js +39 -50
- package/dist/lib/converter/comments/lexer.d.ts +1 -1
- package/dist/lib/converter/comments/lexer.js +2 -5
- package/dist/lib/converter/comments/lineLexer.d.ts +1 -1
- package/dist/lib/converter/comments/lineLexer.js +12 -15
- package/dist/lib/converter/comments/linkResolver.d.ts +2 -2
- package/dist/lib/converter/comments/linkResolver.js +14 -21
- package/dist/lib/converter/comments/parser.d.ts +6 -6
- package/dist/lib/converter/comments/parser.js +69 -96
- package/dist/lib/converter/comments/rawLexer.d.ts +1 -1
- package/dist/lib/converter/comments/rawLexer.js +13 -16
- package/dist/lib/converter/comments/tagName.js +1 -4
- package/dist/lib/converter/comments/textParser.d.ts +4 -4
- package/dist/lib/converter/comments/textParser.js +28 -30
- package/dist/lib/converter/components.d.ts +2 -3
- package/dist/lib/converter/components.js +2 -7
- package/dist/lib/converter/context.d.ts +9 -9
- package/dist/lib/converter/context.js +54 -44
- package/dist/lib/converter/convert-expression.js +16 -23
- package/dist/lib/converter/converter-events.d.ts +1 -0
- package/dist/lib/converter/converter-events.js +2 -4
- package/dist/lib/converter/converter.d.ts +16 -13
- package/dist/lib/converter/converter.js +210 -238
- package/dist/lib/converter/factories/index-signature.d.ts +1 -1
- package/dist/lib/converter/factories/index-signature.js +11 -17
- package/dist/lib/converter/factories/signature.d.ts +2 -2
- package/dist/lib/converter/factories/signature.js +95 -106
- package/dist/lib/converter/index.d.ts +6 -7
- package/dist/lib/converter/index.js +3 -11
- package/dist/lib/converter/jsdoc.d.ts +1 -1
- package/dist/lib/converter/jsdoc.js +34 -41
- package/dist/lib/converter/plugins/CategoryPlugin.d.ts +6 -21
- package/dist/lib/converter/plugins/CategoryPlugin.js +57 -139
- package/dist/lib/converter/plugins/CommentPlugin.d.ts +3 -5
- package/dist/lib/converter/plugins/CommentPlugin.js +153 -163
- package/dist/lib/converter/plugins/GroupPlugin.d.ts +10 -9
- package/dist/lib/converter/plugins/GroupPlugin.js +87 -124
- package/dist/lib/converter/plugins/ImplementsPlugin.d.ts +3 -5
- package/dist/lib/converter/plugins/ImplementsPlugin.js +255 -321
- package/dist/lib/converter/plugins/IncludePlugin.d.ts +11 -0
- package/dist/lib/converter/plugins/IncludePlugin.js +72 -0
- package/dist/lib/converter/plugins/InheritDocPlugin.d.ts +4 -3
- package/dist/lib/converter/plugins/InheritDocPlugin.js +41 -72
- package/dist/lib/converter/plugins/LinkResolverPlugin.d.ts +5 -5
- package/dist/lib/converter/plugins/LinkResolverPlugin.js +37 -58
- package/dist/lib/converter/plugins/MergeModuleWithPlugin.d.ts +12 -0
- package/dist/lib/converter/plugins/MergeModuleWithPlugin.js +49 -0
- package/dist/lib/converter/plugins/PackagePlugin.d.ts +4 -3
- package/dist/lib/converter/plugins/PackagePlugin.js +62 -111
- package/dist/lib/converter/plugins/SourcePlugin.d.ts +3 -5
- package/dist/lib/converter/plugins/SourcePlugin.js +69 -110
- package/dist/lib/converter/plugins/TypePlugin.d.ts +4 -6
- package/dist/lib/converter/plugins/TypePlugin.js +95 -158
- package/dist/lib/converter/plugins/index.d.ts +10 -9
- package/dist/lib/converter/plugins/index.js +10 -21
- package/dist/lib/converter/symbols.d.ts +1 -1
- package/dist/lib/converter/symbols.js +234 -227
- package/dist/lib/converter/types.d.ts +2 -2
- package/dist/lib/converter/types.js +252 -237
- package/dist/lib/converter/utils/nodes.js +5 -13
- package/dist/lib/converter/utils/reflections.d.ts +1 -1
- package/dist/lib/converter/utils/reflections.js +4 -7
- package/dist/lib/converter/utils/repository.d.ts +1 -1
- package/dist/lib/converter/utils/repository.js +103 -97
- package/dist/lib/converter/utils/symbols.js +3 -9
- package/dist/lib/internationalization/index.d.ts +3 -4
- package/dist/lib/internationalization/index.js +3 -8
- package/dist/lib/internationalization/internationalization.d.ts +5 -4
- package/dist/lib/internationalization/internationalization.js +97 -103
- package/dist/lib/internationalization/locale-utils.cjs +8 -0
- package/dist/lib/internationalization/locale-utils.d.cts +8 -0
- package/dist/lib/internationalization/locales/en.cjs +366 -2
- package/dist/lib/internationalization/locales/en.d.cts +339 -2
- package/dist/lib/internationalization/locales/jp.cjs +8 -11
- package/dist/lib/internationalization/locales/jp.d.cts +310 -1
- package/dist/lib/internationalization/locales/ko.cjs +7 -9
- package/dist/lib/internationalization/locales/ko.d.cts +223 -1
- package/dist/lib/internationalization/locales/zh.cjs +7 -10
- package/dist/lib/internationalization/locales/zh.d.cts +381 -1
- package/dist/lib/internationalization/translatable.d.ts +4 -327
- package/dist/lib/internationalization/translatable.js +2 -360
- package/dist/lib/models/FileRegistry.d.ts +20 -9
- package/dist/lib/models/FileRegistry.js +54 -45
- package/dist/lib/models/ReflectionCategory.d.ts +2 -2
- package/dist/lib/models/ReflectionCategory.js +16 -12
- package/dist/lib/models/ReflectionGroup.d.ts +3 -3
- package/dist/lib/models/ReflectionGroup.js +23 -14
- package/dist/lib/models/comments/comment.d.ts +23 -37
- package/dist/lib/models/comments/comment.js +388 -325
- package/dist/lib/models/comments/index.d.ts +2 -2
- package/dist/lib/models/comments/index.js +1 -6
- package/dist/lib/models/index.d.ts +7 -7
- package/dist/lib/models/index.js +7 -23
- package/dist/lib/models/reflections/ReflectionSymbolId.d.ts +2 -2
- package/dist/lib/models/reflections/ReflectionSymbolId.js +42 -34
- package/dist/lib/models/reflections/abstract.d.ts +17 -20
- package/dist/lib/models/reflections/abstract.js +249 -256
- package/dist/lib/models/reflections/container.d.ts +7 -7
- package/dist/lib/models/reflections/container.js +43 -16
- package/dist/lib/models/reflections/declaration.d.ts +15 -12
- package/dist/lib/models/reflections/declaration.js +150 -29
- package/dist/lib/models/reflections/document.d.ts +3 -3
- package/dist/lib/models/reflections/document.js +26 -13
- package/dist/lib/models/reflections/index.d.ts +15 -15
- package/dist/lib/models/reflections/index.js +12 -31
- package/dist/lib/models/reflections/kind.d.ts +1 -1
- package/dist/lib/models/reflections/kind.js +3 -6
- package/dist/lib/models/reflections/parameter.d.ts +5 -4
- package/dist/lib/models/reflections/parameter.js +11 -13
- package/dist/lib/models/reflections/project.d.ts +14 -9
- package/dist/lib/models/reflections/project.js +104 -56
- package/dist/lib/models/reflections/reference.d.ts +3 -3
- package/dist/lib/models/reflections/reference.js +6 -9
- package/dist/lib/models/reflections/signature.d.ts +8 -8
- package/dist/lib/models/reflections/signature.js +35 -14
- package/dist/lib/models/reflections/type-parameter.d.ts +5 -5
- package/dist/lib/models/reflections/type-parameter.js +9 -10
- package/dist/lib/models/reflections/utils.js +1 -4
- package/dist/lib/models/reflections/variant.d.ts +8 -7
- package/dist/lib/models/reflections/variant.js +1 -2
- package/dist/lib/models/sources/file.d.ts +2 -2
- package/dist/lib/models/sources/file.js +22 -5
- package/dist/lib/models/sources/index.d.ts +1 -1
- package/dist/lib/models/sources/index.js +1 -5
- package/dist/lib/models/types.d.ts +26 -13
- package/dist/lib/models/types.js +236 -151
- package/dist/lib/output/components.d.ts +5 -11
- package/dist/lib/output/components.js +84 -125
- package/dist/lib/output/events.d.ts +3 -3
- package/dist/lib/output/events.js +128 -94
- package/dist/lib/output/formatter.d.ts +84 -0
- package/dist/lib/output/formatter.js +619 -0
- package/dist/lib/output/index.d.ts +9 -8
- package/dist/lib/output/index.js +7 -19
- package/dist/lib/output/models/UrlMapping.d.ts +2 -2
- package/dist/lib/output/models/UrlMapping.js +4 -5
- package/dist/lib/output/output.d.ts +13 -0
- package/dist/lib/output/output.js +72 -0
- package/dist/lib/output/plugins/AssetsPlugin.d.ts +7 -8
- package/dist/lib/output/plugins/AssetsPlugin.js +62 -80
- package/dist/lib/output/plugins/IconsPlugin.d.ts +3 -2
- package/dist/lib/output/plugins/IconsPlugin.js +28 -84
- package/dist/lib/output/plugins/JavascriptIndexPlugin.d.ts +9 -2
- package/dist/lib/output/plugins/JavascriptIndexPlugin.js +90 -96
- package/dist/lib/output/plugins/NavigationPlugin.d.ts +3 -2
- package/dist/lib/output/plugins/NavigationPlugin.js +22 -102
- package/dist/lib/output/plugins/SitemapPlugin.d.ts +3 -2
- package/dist/lib/output/plugins/SitemapPlugin.js +60 -120
- package/dist/lib/output/plugins/index.d.ts +6 -6
- package/dist/lib/output/plugins/index.js +6 -15
- package/dist/lib/output/renderer.d.ts +14 -13
- package/dist/lib/output/renderer.js +129 -185
- package/dist/lib/output/theme.d.ts +9 -5
- package/dist/lib/output/theme.js +14 -62
- package/dist/lib/output/themes/MarkedPlugin.d.ts +8 -9
- package/dist/lib/output/themes/MarkedPlugin.js +152 -117
- package/dist/lib/output/themes/default/DefaultTheme.d.ts +17 -29
- package/dist/lib/output/themes/default/DefaultTheme.js +334 -310
- package/dist/lib/output/themes/default/DefaultThemeRenderContext.d.ts +63 -48
- package/dist/lib/output/themes/default/DefaultThemeRenderContext.js +119 -95
- package/dist/lib/output/themes/default/Slugger.d.ts +13 -0
- package/dist/lib/output/themes/default/Slugger.js +46 -0
- package/dist/lib/output/themes/default/layouts/default.d.ts +5 -5
- package/dist/lib/output/themes/default/layouts/default.js +47 -36
- package/dist/lib/output/themes/default/partials/anchor-icon.d.ts +2 -2
- package/dist/lib/output/themes/default/partials/anchor-icon.js +4 -7
- package/dist/lib/output/themes/default/partials/breadcrumb.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/breadcrumb.js +4 -8
- package/dist/lib/output/themes/default/partials/comment.d.ts +6 -4
- package/dist/lib/output/themes/default/partials/comment.js +52 -29
- package/dist/lib/output/themes/default/partials/footer.d.ts +2 -2
- package/dist/lib/output/themes/default/partials/footer.js +11 -14
- package/dist/lib/output/themes/default/partials/header.d.ts +4 -4
- package/dist/lib/output/themes/default/partials/header.js +9 -13
- package/dist/lib/output/themes/default/partials/hierarchy.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/hierarchy.js +9 -12
- package/dist/lib/output/themes/default/partials/icon.d.ts +4 -4
- package/dist/lib/output/themes/default/partials/icon.js +78 -73
- package/dist/lib/output/themes/default/partials/index.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/index.js +19 -22
- package/dist/lib/output/themes/default/partials/member.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/member.declaration.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/member.declaration.js +18 -61
- package/dist/lib/output/themes/default/partials/member.getterSetter.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/member.getterSetter.js +10 -26
- package/dist/lib/output/themes/default/partials/member.js +19 -24
- package/dist/lib/output/themes/default/partials/member.signature.body.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/member.signature.body.js +17 -21
- package/dist/lib/output/themes/default/partials/member.signature.title.d.ts +4 -7
- package/dist/lib/output/themes/default/partials/member.signature.title.js +8 -35
- package/dist/lib/output/themes/default/partials/member.signatures.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/member.signatures.js +9 -13
- package/dist/lib/output/themes/default/partials/member.sources.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/member.sources.js +13 -17
- package/dist/lib/output/themes/default/partials/members.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/members.js +10 -42
- package/dist/lib/output/themes/default/partials/moduleReflection.d.ts +5 -0
- package/dist/lib/output/themes/default/partials/moduleReflection.js +62 -0
- package/dist/lib/output/themes/default/partials/navigation.d.ts +4 -4
- package/dist/lib/output/themes/default/partials/navigation.js +51 -62
- package/dist/lib/output/themes/default/partials/reflectionPreview.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/reflectionPreview.js +12 -15
- package/dist/lib/output/themes/default/partials/toolbar.d.ts +4 -4
- package/dist/lib/output/themes/default/partials/toolbar.js +16 -20
- package/dist/lib/output/themes/default/partials/type.d.ts +4 -6
- package/dist/lib/output/themes/default/partials/type.js +8 -388
- package/dist/lib/output/themes/default/partials/typeAndParent.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/typeAndParent.js +11 -15
- package/dist/lib/output/themes/default/partials/typeDetails.d.ts +8 -0
- package/dist/lib/output/themes/default/partials/typeDetails.js +221 -0
- package/dist/lib/output/themes/default/partials/typeParameters.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/typeParameters.js +14 -17
- package/dist/lib/output/themes/default/templates/document.d.ts +4 -4
- package/dist/lib/output/themes/default/templates/document.js +3 -7
- package/dist/lib/output/themes/default/templates/hierarchy.d.ts +4 -4
- package/dist/lib/output/themes/default/templates/hierarchy.js +10 -13
- package/dist/lib/output/themes/default/templates/index.d.ts +4 -4
- package/dist/lib/output/themes/default/templates/index.js +3 -7
- package/dist/lib/output/themes/default/templates/reflection.d.ts +4 -4
- package/dist/lib/output/themes/default/templates/reflection.js +31 -34
- package/dist/lib/output/themes/lib.d.ts +17 -3
- package/dist/lib/output/themes/lib.js +110 -49
- package/dist/lib/serialization/components.d.ts +2 -5
- package/dist/lib/serialization/components.js +1 -2
- package/dist/lib/serialization/deserializer.d.ts +21 -7
- package/dist/lib/serialization/deserializer.js +138 -123
- package/dist/lib/serialization/events.d.ts +2 -2
- package/dist/lib/serialization/events.js +6 -5
- package/dist/lib/serialization/index.d.ts +5 -5
- package/dist/lib/serialization/index.js +4 -33
- package/dist/lib/serialization/schema.d.ts +8 -2
- package/dist/lib/serialization/schema.js +2 -2
- package/dist/lib/serialization/serializer.d.ts +11 -5
- package/dist/lib/serialization/serializer.js +32 -25
- package/dist/lib/utils/array.d.ts +3 -0
- package/dist/lib/utils/array.js +26 -27
- package/dist/lib/utils/component.d.ts +2 -44
- package/dist/lib/utils/component.js +10 -102
- package/dist/lib/utils/entry-point.d.ts +3 -4
- package/dist/lib/utils/entry-point.js +114 -85
- package/dist/lib/utils/enum.js +6 -14
- package/dist/lib/utils/events.js +6 -12
- package/dist/lib/utils/fs.js +50 -91
- package/dist/lib/utils/general.d.ts +2 -1
- package/dist/lib/utils/general.js +50 -40
- package/dist/lib/utils/highlighter.js +30 -57
- package/dist/lib/utils/hooks.js +7 -13
- package/dist/lib/utils/html-entities.d.ts +8926 -0
- package/dist/lib/utils/html-entities.js +2329 -0
- package/dist/lib/utils/html.d.ts +8 -0
- package/dist/lib/utils/html.js +81 -34
- package/dist/lib/utils/index.d.ts +22 -22
- package/dist/lib/utils/index.js +20 -91
- package/dist/lib/utils/jsx.d.ts +12 -5
- package/dist/lib/utils/jsx.elements.js +1 -4
- package/dist/lib/utils/jsx.js +53 -20
- package/dist/lib/utils/loggers.d.ts +3 -3
- package/dist/lib/utils/loggers.js +36 -46
- package/dist/lib/utils/map.js +6 -13
- package/dist/lib/utils/minimalSourceFile.js +5 -7
- package/dist/lib/utils/options/declaration.d.ts +33 -7
- package/dist/lib/utils/options/declaration.js +20 -22
- package/dist/lib/utils/options/defaults.d.ts +3 -2
- package/dist/lib/utils/options/defaults.js +18 -38
- package/dist/lib/utils/options/help.d.ts +2 -2
- package/dist/lib/utils/options/help.js +7 -10
- package/dist/lib/utils/options/index.d.ts +6 -6
- package/dist/lib/utils/options/index.js +4 -18
- package/dist/lib/utils/options/options.d.ts +8 -5
- package/dist/lib/utils/options/options.js +47 -71
- package/dist/lib/utils/options/readers/arguments.d.ts +2 -2
- package/dist/lib/utils/options/readers/arguments.js +15 -17
- package/dist/lib/utils/options/readers/index.d.ts +4 -4
- package/dist/lib/utils/options/readers/index.js +4 -11
- package/dist/lib/utils/options/readers/package-json.d.ts +3 -3
- package/dist/lib/utils/options/readers/package-json.js +15 -21
- package/dist/lib/utils/options/readers/tsconfig.d.ts +2 -2
- package/dist/lib/utils/options/readers/tsconfig.js +54 -63
- package/dist/lib/utils/options/readers/typedoc.d.ts +3 -3
- package/dist/lib/utils/options/readers/typedoc.js +44 -76
- package/dist/lib/utils/options/sources/index.d.ts +1 -1
- package/dist/lib/utils/options/sources/index.js +1 -5
- package/dist/lib/utils/options/sources/typedoc.d.ts +1 -1
- package/dist/lib/utils/options/sources/typedoc.js +220 -196
- package/dist/lib/utils/options/tsdoc-defaults.d.ts +3 -3
- package/dist/lib/utils/options/tsdoc-defaults.js +16 -12
- package/dist/lib/utils/package-manifest.d.ts +1 -1
- package/dist/lib/utils/package-manifest.js +15 -19
- package/dist/lib/utils/paths.js +9 -15
- package/dist/lib/utils/perf.js +6 -11
- package/dist/lib/utils/plugins.d.ts +1 -1
- package/dist/lib/utils/plugins.js +7 -10
- package/dist/lib/utils/reflections.d.ts +1 -1
- package/dist/lib/utils/reflections.js +9 -12
- package/dist/lib/utils/set.js +2 -6
- package/dist/lib/utils/sort.d.ts +3 -3
- package/dist/lib/utils/sort.js +20 -24
- package/dist/lib/utils/tsconfig.d.ts +1 -1
- package/dist/lib/utils/tsconfig.js +13 -21
- package/dist/lib/utils/tsutils.d.ts +1 -1
- package/dist/lib/utils/tsutils.js +3 -30
- package/dist/lib/utils/validation.js +6 -12
- package/dist/lib/validation/documentation.d.ts +2 -2
- package/dist/lib/validation/documentation.js +26 -29
- package/dist/lib/validation/exports.d.ts +2 -2
- package/dist/lib/validation/exports.js +9 -11
- package/dist/lib/validation/links.d.ts +2 -2
- package/dist/lib/validation/links.js +4 -7
- package/dist/lib/validation/unusedMergeModuleWith.d.ts +3 -0
- package/dist/lib/validation/unusedMergeModuleWith.js +11 -0
- package/package.json +14 -11
- package/static/main.js +4 -4
- package/static/style.css +91 -2
- package/tsdoc.json +30 -0
- package/dist/lib/output/themes/default/partials/member.reference.d.ts +0 -4
- package/dist/lib/output/themes/default/partials/member.reference.js +0 -30
- package/dist/lib/output/themes/default/partials/parameter.d.ts +0 -4
- package/dist/lib/output/themes/default/partials/parameter.js +0 -79
- package/dist/lib/utils/html-entities.json +0 -2326
|
@@ -1,2 +1,311 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: {
|
|
2
|
+
loaded_multiple_times_0: "TypeDoc が複数回読み込まれました。これは通常、TypeDoc を独自にインストールしたプラグインによって発生します。読み込まれたパスは次のとおりです:\n{0}";
|
|
3
|
+
unsupported_ts_version_0: "サポートされていない TypeScript バージョンで実行されています。TypeDoc がクラッシュした場合は、これが原因です。TypeDoc は {0} をサポートしています。";
|
|
4
|
+
no_compiler_options_set: string;
|
|
5
|
+
loaded_plugin_0: "プラグイン {0} が読み込まれました";
|
|
6
|
+
solution_not_supported_in_watch_mode: string;
|
|
7
|
+
strategy_not_supported_in_watch_mode: string;
|
|
8
|
+
found_0_errors_and_1_warnings: "{0} 件のエラーと {1} 件の警告が見つかりました";
|
|
9
|
+
no_entry_points_for_packages: string;
|
|
10
|
+
failed_to_find_packages: string;
|
|
11
|
+
nested_packages_unsupported_0: "{0} のプロジェクトでは entryPointStrategy がパッケージに設定されていますが、ネストされたパッケージはサポートされていません";
|
|
12
|
+
previous_error_occurred_when_reading_options_for_0: "前のエラーは、{0} のパッケージのオプションを読み取り中に発生しました";
|
|
13
|
+
converting_project_at_0: "{0} のプロジェクトを変換しています";
|
|
14
|
+
failed_to_convert_packages: string;
|
|
15
|
+
merging_converted_projects: string;
|
|
16
|
+
no_entry_points_to_merge: string;
|
|
17
|
+
entrypoint_did_not_match_files_0: "エントリポイント グロブ {0} はどのファイルにも一致しませんでした";
|
|
18
|
+
failed_to_parse_json_0: "{0} のファイルを json として解析できませんでした";
|
|
19
|
+
failed_to_read_0_when_processing_document_tag_in_1: "{1} のコメントの @document タグの処理中にファイル {0} の読み取りに失敗しました";
|
|
20
|
+
failed_to_read_0_when_processing_project_document: "プロジェクト ドキュメントの追加時にファイル {0} の読み取りに失敗しました";
|
|
21
|
+
failed_to_read_0_when_processing_document_child_in_1: "{1} 内のドキュメントの子を処理するときにファイル {0} の読み取りに失敗しました";
|
|
22
|
+
frontmatter_children_0_should_be_an_array_of_strings_or_object_with_string_values: "{0} の Frontmatter の子は、文字列の配列または文字列値を持つオブジェクトである必要があります。";
|
|
23
|
+
converting_union_as_interface: string;
|
|
24
|
+
converting_0_as_class_requires_value_declaration: "{0} をクラスとして変換するには、非型値を表す宣言が必要です";
|
|
25
|
+
converting_0_as_class_without_construct_signatures: "{0} はクラスとして変換されていますが、コンストラクト シグネチャがありません";
|
|
26
|
+
comment_for_0_should_not_contain_block_or_modifier_tags: "{0} のコメントにはブロックタグや修飾タグを含めることはできません";
|
|
27
|
+
symbol_0_has_multiple_declarations_with_comment: "{0} にはコメント付きの宣言が複数あります。任意のコメントが使用されます";
|
|
28
|
+
comments_for_0_are_declared_at_1: "{0} のコメントは次の場所で宣言されています:\n{1}";
|
|
29
|
+
multiple_type_parameters_on_template_tag_unsupported: string;
|
|
30
|
+
failed_to_find_jsdoc_tag_for_name_0: "コメントを解析した後、{0} の JSDoc タグが見つかりませんでした。バグレポートを提出してください。";
|
|
31
|
+
inline_inheritdoc_should_not_appear_in_block_tag_in_comment_at_0: "インライン @inheritDoc タグはブロック タグ内に出現しないでください。{0} のコメントでは処理されません。";
|
|
32
|
+
at_most_one_remarks_tag_expected_in_comment_at_0: "コメントには最大 1 つの @remarks タグが必要です。{0} のコメントの最初のタグ以外はすべて無視されます。";
|
|
33
|
+
at_most_one_returns_tag_expected_in_comment_at_0: "コメントには最大 1 つの @returns タグが必要です。{0} のコメントの最初のタグ以外はすべて無視されます。";
|
|
34
|
+
at_most_one_inheritdoc_tag_expected_in_comment_at_0: "コメントには最大 1 つの @inheritDoc タグが必要です。{0} のコメントの最初のタグ以外はすべて無視されます。";
|
|
35
|
+
content_in_summary_overwritten_by_inheritdoc_in_comment_at_0: "概要セクションの内容は、{0} のコメントの @inheritDoc タグによって上書きされます。";
|
|
36
|
+
content_in_remarks_block_overwritten_by_inheritdoc_in_comment_at_0: "@remarks ブロックの内容は、{0} のコメントの @inheritDoc タグによって上書きされます。";
|
|
37
|
+
example_tag_literal_name: string;
|
|
38
|
+
inheritdoc_tag_properly_capitalized: string;
|
|
39
|
+
treating_unrecognized_tag_0_as_modifier: "認識されないタグ {0} を修飾タグとして処理します";
|
|
40
|
+
unmatched_closing_brace: string;
|
|
41
|
+
unescaped_open_brace_without_inline_tag: string;
|
|
42
|
+
unknown_block_tag_0: "不明なブロック タグ {0} に遭遇しました";
|
|
43
|
+
unknown_inline_tag_0: "不明なインライン タグ {0} に遭遇しました";
|
|
44
|
+
open_brace_within_inline_tag: string;
|
|
45
|
+
inline_tag_not_closed: string;
|
|
46
|
+
failed_to_resolve_link_to_0_in_comment_for_1: "{1} のコメント内の「{0}」へのリンクを解決できませんでした";
|
|
47
|
+
type_0_defined_in_1_is_referenced_by_2_but_not_included_in_docs: "{1} で定義されている {0} は {2} によって参照されていますが、ドキュメントには含まれていません。";
|
|
48
|
+
reflection_0_kind_1_defined_in_2_does_not_have_any_documentation: "{2} で定義されている {0} ({1}) にはドキュメントがありません";
|
|
49
|
+
invalid_intentionally_not_exported_symbols_0: "次のシンボルは意図的にエクスポートされないものとしてマークされていますが、ドキュメントで参照されていないか、エクスポートされています:\n{0}";
|
|
50
|
+
not_all_search_category_boosts_used_0: "searchCategoryBoosts で指定されたすべてのカテゴリがドキュメントで使用されているわけではありません。使用されていないカテゴリは次のとおりです:\n{0}";
|
|
51
|
+
not_all_search_group_boosts_used_0: "searchGroupBoosts で指定されたすべてのグループがドキュメントで使用されているわけではありません。使用されていないグループは次のとおりです:\n{0}";
|
|
52
|
+
comment_for_0_includes_categoryDescription_for_1_but_no_child_in_group: "{0} のコメントに「{1}」の @categoryDescription が含まれていますが、そのカテゴリに子が配置されていません";
|
|
53
|
+
comment_for_0_includes_groupDescription_for_1_but_no_child_in_group: "{0} のコメントに \"{1}\" の @groupDescription が含まれていますが、そのグループには子が配置されていません";
|
|
54
|
+
label_0_for_1_cannot_be_referenced: "{1} のラベル \"{0}\" は宣言参照では参照できません。ラベルには A ~ Z、0 ~ 9、_ のみを含めることができ、数字で始まることはできません。";
|
|
55
|
+
failed_to_resolve_link_to_0_in_comment_for_1_may_have_meant_2: "{1} のコメント内の \"{0}\" へのリンクを解決できません。\"{2}\" を意味していた可能性があります。";
|
|
56
|
+
failed_to_resolve_link_to_0_in_readme_for_1: "{1} の README ファイル内の \"{0}\" へのリンクを解決できません。";
|
|
57
|
+
failed_to_resolve_link_to_0_in_readme_for_1_may_have_meant_2: "{1} の README ファイル内の \"{0}\" へのリンクを解決できません。\"{2}\" を意味していた可能性があります。";
|
|
58
|
+
modifier_tag_0_is_mutually_exclusive_with_1_in_comment_for_2: "修飾子タグ {0} は、{2} のコメント内の {1} と相互に排他的です";
|
|
59
|
+
signature_0_has_unused_param_with_name_1: "署名 {0} には、名前が \"{1}\" の @param がありますが、使用されていません。";
|
|
60
|
+
declaration_reference_in_inheritdoc_for_0_not_fully_parsed: "{0} の @inheritDoc の宣言参照が完全に解析されていないため、正しく解決されない可能性があります";
|
|
61
|
+
failed_to_find_0_to_inherit_comment_from_in_1: "{1} のコメントからコメントを継承する「{0}」が見つかりませんでした";
|
|
62
|
+
reflection_0_tried_to_copy_comment_from_1_but_source_had_no_comment: "{0} は @inheritDoc を使用して {1} からコメントをコピーしようとしましたが、ソースには関連付けられたコメントがありません";
|
|
63
|
+
inheritdoc_circular_inheritance_chain_0: "@inheritDoc は循環継承チェーンを指定します: {0}";
|
|
64
|
+
provided_readme_at_0_could_not_be_read: "指定された README パス、{0} は読み取れませんでした";
|
|
65
|
+
defaulting_project_name: string;
|
|
66
|
+
disable_git_set_but_not_source_link_template: string;
|
|
67
|
+
disable_git_set_and_git_revision_used: string;
|
|
68
|
+
git_remote_0_not_valid: "提供された Git リモート \"{0}\" は無効です。ソース リンクは壊れます";
|
|
69
|
+
custom_css_file_0_does_not_exist: "{0} のカスタム CSS ファイルは存在しません";
|
|
70
|
+
unsupported_highlight_language_0_not_highlighted_in_comment_for_1: "サポートされていないハイライト言語 {0} は、{1} のコメントではハイライトされません。";
|
|
71
|
+
unloaded_language_0_not_highlighted_in_comment_for_1: "言語 {0} のコード ブロックは、highlightLanguages オプションに含まれていないため、{1} のコメントでは強調表示されません。";
|
|
72
|
+
yaml_frontmatter_not_an_object: string;
|
|
73
|
+
could_not_write_0: "{0} を書き込めませんでした";
|
|
74
|
+
could_not_empty_output_directory_0: "出力ディレクトリ {0} を空にできませんでした";
|
|
75
|
+
could_not_create_output_directory_0: "出力ディレクトリ {0} を作成できませんでした";
|
|
76
|
+
theme_0_is_not_defined_available_are_1: "テーマ '{0}' は定義されていません。使用可能なテーマは次のとおりです: {1}";
|
|
77
|
+
unable_to_find_any_entry_points: string;
|
|
78
|
+
watch_does_not_support_packages_mode: string;
|
|
79
|
+
watch_does_not_support_merge_mode: string;
|
|
80
|
+
entry_point_0_not_in_program: "エントリ ポイント {0} は、tsconfig の 'files' または 'include' オプションによって参照されていません。";
|
|
81
|
+
use_expand_or_glob_for_files_in_dir: string;
|
|
82
|
+
glob_0_did_not_match_any_files: "グロブ {0} はどのファイルにも一致しませんでした";
|
|
83
|
+
entry_point_0_did_not_match_any_files_after_exclude: "除外パターンを適用した後、グロブ {0} はどのファイルにも一致しませんでした";
|
|
84
|
+
entry_point_0_did_not_exist: "指定されたエントリ ポイント {0} は存在しません";
|
|
85
|
+
entry_point_0_did_not_match_any_packages: "エントリ ポイント glob {0} は、package.json を含むディレクトリと一致しませんでした。";
|
|
86
|
+
file_0_not_an_object: "ファイル {0} はオブジェクトではありません";
|
|
87
|
+
serialized_project_referenced_0_not_part_of_project: "シリアル化されたプロジェクトは、プロジェクトの一部ではないリフレクション {0} を参照しました";
|
|
88
|
+
circular_reference_extends_0: "{0} の \"extends\" フィールドで循環参照が検出されました";
|
|
89
|
+
failed_resolve_0_to_file_in_1: "{0} を {1} 内のファイルに解決できませんでした";
|
|
90
|
+
option_0_can_only_be_specified_by_config_file: "'{0}' オプションは設定ファイル経由でのみ指定できます";
|
|
91
|
+
option_0_expected_a_value_but_none_provided: "--{0} には値が期待されていましたが、引数として値が与えられませんでした";
|
|
92
|
+
unknown_option_0_may_have_meant_1: "不明なオプション: {0}。次のオプションを意味している可能性があります:\n{1}";
|
|
93
|
+
typedoc_key_in_0_ignored: "{0} の 'typedoc' キーは、レガシー パッケージの entryPointStrategy によって使用されており、無視されます。";
|
|
94
|
+
typedoc_options_must_be_object_in_0: "{0} の \"typedocOptions\" フィールドを解析できませんでした。フィールドが存在し、オブジェクトが含まれていることを確認してください。";
|
|
95
|
+
tsconfig_file_0_does_not_exist: "tsconfig ファイル {0} が存在しません";
|
|
96
|
+
tsconfig_file_specifies_options_file: string;
|
|
97
|
+
tsconfig_file_specifies_tsconfig_file: string;
|
|
98
|
+
tags_0_defined_in_typedoc_json_overwritten_by_tsdoc_json: "typedoc.json で定義された {0} は、tsdoc.json の設定によって上書きされます。";
|
|
99
|
+
failed_read_tsdoc_json_0: "{0} の tsdoc.json ファイルの読み取りに失敗しました";
|
|
100
|
+
invalid_tsdoc_json_0: "ファイル {0} は有効な tsdoc.json ファイルではありません";
|
|
101
|
+
options_file_0_does_not_exist: "オプションファイル {0} が存在しません";
|
|
102
|
+
failed_read_options_file_0: "{0} の解析に失敗しました。存在し、オブジェクトをエクスポートしていることを確認してください";
|
|
103
|
+
invalid_plugin_0_missing_load_function: "プラグイン {0} の構造が無効です。ロード関数が見つかりません";
|
|
104
|
+
plugin_0_could_not_be_loaded: "プラグイン {0} を読み込めませんでした";
|
|
105
|
+
help_options: string;
|
|
106
|
+
help_tsconfig: string;
|
|
107
|
+
help_compilerOptions: string;
|
|
108
|
+
help_lang: string;
|
|
109
|
+
help_locales: string;
|
|
110
|
+
help_packageOptions: string;
|
|
111
|
+
help_entryPoints: string;
|
|
112
|
+
help_entryPointStrategy: string;
|
|
113
|
+
help_alwaysCreateEntryPointModule: string;
|
|
114
|
+
help_projectDocuments: string;
|
|
115
|
+
help_exclude: string;
|
|
116
|
+
help_externalPattern: string;
|
|
117
|
+
help_excludeExternals: string;
|
|
118
|
+
help_excludeNotDocumented: string;
|
|
119
|
+
help_excludeNotDocumentedKinds: string;
|
|
120
|
+
help_excludeInternal: string;
|
|
121
|
+
help_excludeCategories: string;
|
|
122
|
+
help_excludePrivate: string;
|
|
123
|
+
help_excludeProtected: string;
|
|
124
|
+
help_excludeReferences: string;
|
|
125
|
+
help_externalSymbolLinkMappings: string;
|
|
126
|
+
help_out: string;
|
|
127
|
+
help_json: string;
|
|
128
|
+
help_pretty: string;
|
|
129
|
+
help_emit: string;
|
|
130
|
+
help_theme: string;
|
|
131
|
+
help_lightHighlightTheme: string;
|
|
132
|
+
help_darkHighlightTheme: string;
|
|
133
|
+
help_highlightLanguages: string;
|
|
134
|
+
help_customCss: string;
|
|
135
|
+
help_markdownItOptions: string;
|
|
136
|
+
help_markdownItLoader: string;
|
|
137
|
+
help_maxTypeConversionDepth: string;
|
|
138
|
+
help_name: string;
|
|
139
|
+
help_includeVersion: string;
|
|
140
|
+
help_disableSources: string;
|
|
141
|
+
help_sourceLinkTemplate: string;
|
|
142
|
+
help_gitRevision: string;
|
|
143
|
+
help_gitRemote: string;
|
|
144
|
+
help_disableGit: string;
|
|
145
|
+
help_basePath: string;
|
|
146
|
+
help_excludeTags: string;
|
|
147
|
+
help_readme: string;
|
|
148
|
+
help_cname: string;
|
|
149
|
+
help_sourceLinkExternal: string;
|
|
150
|
+
help_githubPages: string;
|
|
151
|
+
help_hostedBaseUrl: string;
|
|
152
|
+
help_useHostedBaseUrlForAbsoluteLinks: string;
|
|
153
|
+
help_hideGenerator: string;
|
|
154
|
+
help_customFooterHtml: string;
|
|
155
|
+
help_customFooterHtmlDisableWrapper: string;
|
|
156
|
+
help_cacheBust: string;
|
|
157
|
+
help_searchInComments: string;
|
|
158
|
+
help_searchInDocuments: string;
|
|
159
|
+
help_cleanOutputDir: string;
|
|
160
|
+
help_titleLink: string;
|
|
161
|
+
help_navigationLinks: string;
|
|
162
|
+
help_sidebarLinks: string;
|
|
163
|
+
help_navigationLeaves: string;
|
|
164
|
+
help_navigation: string;
|
|
165
|
+
help_visibilityFilters: string;
|
|
166
|
+
help_searchCategoryBoosts: string;
|
|
167
|
+
help_searchGroupBoosts: string;
|
|
168
|
+
help_jsDocCompatibility: string;
|
|
169
|
+
help_commentStyle: string;
|
|
170
|
+
help_useTsLinkResolution: string;
|
|
171
|
+
help_preserveLinkText: string;
|
|
172
|
+
help_blockTags: string;
|
|
173
|
+
help_inlineTags: string;
|
|
174
|
+
help_modifierTags: string;
|
|
175
|
+
help_categorizeByGroup: string;
|
|
176
|
+
help_defaultCategory: string;
|
|
177
|
+
help_categoryOrder: string;
|
|
178
|
+
help_groupOrder: string;
|
|
179
|
+
help_sort: string;
|
|
180
|
+
help_sortEntryPoints: string;
|
|
181
|
+
help_kindSortOrder: string;
|
|
182
|
+
help_watch: string;
|
|
183
|
+
help_preserveWatchOutput: string;
|
|
184
|
+
help_skipErrorChecking: string;
|
|
185
|
+
help_help: string;
|
|
186
|
+
help_version: string;
|
|
187
|
+
help_showConfig: string;
|
|
188
|
+
help_plugin: string;
|
|
189
|
+
help_logLevel: string;
|
|
190
|
+
help_treatWarningsAsErrors: string;
|
|
191
|
+
help_treatValidationWarningsAsErrors: string;
|
|
192
|
+
help_intentionallyNotExported: string;
|
|
193
|
+
help_requiredToBeDocumented: string;
|
|
194
|
+
help_validation: string;
|
|
195
|
+
unknown_option_0_you_may_have_meant_1: "不明なオプション '{0}' 次のオプションを意味している可能性があります:\n{1}";
|
|
196
|
+
option_0_must_be_between_1_and_2: "{0} は {1} と {2} の間でなければなりません";
|
|
197
|
+
option_0_must_be_equal_to_or_greater_than_1: "{0} は {1} 以上である必要があります";
|
|
198
|
+
option_0_must_be_less_than_or_equal_to_1: "{0} は {1} 以下である必要があります";
|
|
199
|
+
option_0_must_be_one_of_1: "{0} は {1} のいずれかである必要があります";
|
|
200
|
+
flag_0_is_not_valid_for_1_expected_2: "フラグ '{0}' は {1} に対して有効ではありません。{2} のいずれかである必要があります。";
|
|
201
|
+
expected_object_with_flag_values_for_0: "{0} または true/false のフラグ値を持つオブジェクトが必要です";
|
|
202
|
+
flag_values_for_0_must_be_booleans: "{0} のフラグ値はブール値である必要があります";
|
|
203
|
+
locales_must_be_an_object: string;
|
|
204
|
+
exclude_not_documented_specified_0_valid_values_are_1: "excludeNotDocumentedKinds は既知の値のみを指定できますが、無効な値が指定されました ({0})。有効な種類は次のとおりです:\n{1}";
|
|
205
|
+
external_symbol_link_mappings_must_be_object: string;
|
|
206
|
+
highlight_theme_0_must_be_one_of_1: "{0} は次のいずれかである必要があります: {1}";
|
|
207
|
+
highlightLanguages_contains_invalid_languages_0: "highlightLanguages に無効な言語が含まれています: {0}。サポートされている言語のリストについては typedoc --help を実行してください";
|
|
208
|
+
hostedBaseUrl_must_start_with_http: string;
|
|
209
|
+
useHostedBaseUrlForAbsoluteLinks_requires_hostedBaseUrl: string;
|
|
210
|
+
option_0_must_be_an_object: "'{0}' オプションは配列以外のオブジェクトである必要があります";
|
|
211
|
+
option_0_must_be_a_function: "'{0}' オプションは関数である必要があります";
|
|
212
|
+
option_0_must_be_object_with_urls: "{0} は、キーとして文字列ラベル、URL 値として文字列ラベルを持つオブジェクトである必要があります。";
|
|
213
|
+
visibility_filters_only_include_0: "visibilityFilters には、次の非 @ キーのみを含めることができます: {0}";
|
|
214
|
+
visibility_filters_must_be_booleans: string;
|
|
215
|
+
option_0_values_must_be_numbers: "{0} のすべての値は数値である必要があります";
|
|
216
|
+
option_0_values_must_be_array_of_tags: "{0} は有効なタグ名の配列である必要があります";
|
|
217
|
+
option_0_specified_1_but_only_2_is_valid: "{0} は既知の値のみを指定できますが、無効な値が指定されました ({1})。有効な並べ替え戦略は次のとおりです:\n{2}";
|
|
218
|
+
kind_project: string;
|
|
219
|
+
kind_module: string;
|
|
220
|
+
kind_namespace: string;
|
|
221
|
+
kind_enum: string;
|
|
222
|
+
kind_enum_member: string;
|
|
223
|
+
kind_variable: string;
|
|
224
|
+
kind_function: string;
|
|
225
|
+
kind_class: string;
|
|
226
|
+
kind_interface: string;
|
|
227
|
+
kind_constructor: string;
|
|
228
|
+
kind_property: string;
|
|
229
|
+
kind_method: string;
|
|
230
|
+
kind_call_signature: string;
|
|
231
|
+
kind_index_signature: string;
|
|
232
|
+
kind_constructor_signature: string;
|
|
233
|
+
kind_parameter: string;
|
|
234
|
+
kind_type_literal: string;
|
|
235
|
+
kind_type_parameter: string;
|
|
236
|
+
kind_accessor: string;
|
|
237
|
+
kind_get_signature: string;
|
|
238
|
+
kind_set_signature: string;
|
|
239
|
+
kind_type_alias: string;
|
|
240
|
+
kind_reference: string;
|
|
241
|
+
kind_document: string;
|
|
242
|
+
kind_plural_project: string;
|
|
243
|
+
kind_plural_module: string;
|
|
244
|
+
kind_plural_namespace: string;
|
|
245
|
+
kind_plural_enum: string;
|
|
246
|
+
kind_plural_enum_member: string;
|
|
247
|
+
kind_plural_variable: string;
|
|
248
|
+
kind_plural_function: string;
|
|
249
|
+
kind_plural_class: string;
|
|
250
|
+
kind_plural_interface: string;
|
|
251
|
+
kind_plural_constructor: string;
|
|
252
|
+
kind_plural_property: string;
|
|
253
|
+
kind_plural_method: string;
|
|
254
|
+
kind_plural_call_signature: string;
|
|
255
|
+
kind_plural_index_signature: string;
|
|
256
|
+
kind_plural_constructor_signature: string;
|
|
257
|
+
kind_plural_parameter: string;
|
|
258
|
+
kind_plural_type_literal: string;
|
|
259
|
+
kind_plural_type_parameter: string;
|
|
260
|
+
kind_plural_accessor: string;
|
|
261
|
+
kind_plural_get_signature: string;
|
|
262
|
+
kind_plural_set_signature: string;
|
|
263
|
+
kind_plural_type_alias: string;
|
|
264
|
+
kind_plural_reference: string;
|
|
265
|
+
kind_plural_document: string;
|
|
266
|
+
flag_protected: string;
|
|
267
|
+
flag_private: string;
|
|
268
|
+
flag_external: string;
|
|
269
|
+
flag_inherited: string;
|
|
270
|
+
flag_public: string;
|
|
271
|
+
flag_static: string;
|
|
272
|
+
flag_optional: string;
|
|
273
|
+
flag_rest: string;
|
|
274
|
+
flag_abstract: string;
|
|
275
|
+
flag_const: string;
|
|
276
|
+
flag_readonly: string;
|
|
277
|
+
theme_implements: string;
|
|
278
|
+
theme_indexable: string;
|
|
279
|
+
theme_type_declaration: string;
|
|
280
|
+
theme_index: string;
|
|
281
|
+
theme_hierarchy: string;
|
|
282
|
+
theme_hierarchy_view_full: string;
|
|
283
|
+
theme_implemented_by: string;
|
|
284
|
+
theme_defined_in: string;
|
|
285
|
+
theme_implementation_of: string;
|
|
286
|
+
theme_inherited_from: string;
|
|
287
|
+
theme_overrides: string;
|
|
288
|
+
theme_returns: string;
|
|
289
|
+
theme_generated_using_typedoc: string;
|
|
290
|
+
theme_preparing_search_index: string;
|
|
291
|
+
theme_search_index_not_available: string;
|
|
292
|
+
theme_settings: string;
|
|
293
|
+
theme_member_visibility: string;
|
|
294
|
+
theme_theme: string;
|
|
295
|
+
theme_os: string;
|
|
296
|
+
theme_light: string;
|
|
297
|
+
theme_dark: string;
|
|
298
|
+
theme_on_this_page: string;
|
|
299
|
+
theme_search: string;
|
|
300
|
+
theme_menu: string;
|
|
301
|
+
theme_permalink: string;
|
|
302
|
+
tag_see: string;
|
|
303
|
+
tag_group: string;
|
|
304
|
+
tag_example: string;
|
|
305
|
+
theme_copy: string;
|
|
306
|
+
theme_copied: string;
|
|
307
|
+
theme_normally_hidden: string;
|
|
308
|
+
theme_class_hierarchy_title: string;
|
|
309
|
+
theme_loading: string;
|
|
310
|
+
};
|
|
2
311
|
export = _default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
const
|
|
3
|
-
module.exports =
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
const localeUtils = require("../locale-utils.cjs");
|
|
3
|
+
module.exports = localeUtils.buildIncompleteTranslation({
|
|
4
|
+
// output_0_could_not_be_generated
|
|
5
|
+
// output_0_generated_at_1
|
|
6
6
|
no_entry_points_for_packages: "패키지 모드에 대한 진입점이 제공되지 않았으므로 문서를 생성할 수 없습니다",
|
|
7
7
|
failed_to_find_packages: "패키지를 찾지 못했습니다. 적어도 하나의 디렉터리를 package.json을 포함하는 진입점으로 제공했는지 확인하세요",
|
|
8
8
|
nested_packages_unsupported_0: "{0} 프로젝트의 entryPointStrategy가 패키지인데 중첩된 패키지는 지원되지 않습니다",
|
|
@@ -23,7 +23,7 @@ module.exports = (0, translatable_1.buildIncompleteTranslation)({
|
|
|
23
23
|
inheritdoc_tag_properly_capitalized: "@inheritDoc 태그는 올바르게 대문자화되어야 합니다",
|
|
24
24
|
invalid_intentionally_not_exported_symbols_0: "다음 심볼은 의도적으로 내보내지 않았지만 문서화에서 참조되지 않았거나 내보내졌습니다:\n\t{0}",
|
|
25
25
|
defaulting_project_name: '--name 옵션이 지정되지 않았고 package.json도 발견되지 않았습니다. 프로젝트 이름을 "Documentation"으로 기본 설정합니다',
|
|
26
|
-
no_entry_points_provided:
|
|
26
|
+
// no_entry_points_provided:
|
|
27
27
|
unable_to_find_any_entry_points: "어떤 진입점도 찾을 수 없습니다. 이전 경고를 확인하세요",
|
|
28
28
|
watch_does_not_support_packages_mode: "워치 모드는 'packages' 스타일 진입점을 지원하지 않습니다",
|
|
29
29
|
watch_does_not_support_merge_mode: "워치 모드는 'merge' 스타일 진입점을 지원하지 않습니다",
|
|
@@ -69,6 +69,7 @@ module.exports = (0, translatable_1.buildIncompleteTranslation)({
|
|
|
69
69
|
help_disableGit: "모든 것을 sourceLinkTemplate로 링크할 수 있도록 가정합니다. 이 옵션을 사용하려면 sourceLinkTemplate이 설정되어 있어야 합니다. {path}는 basePath에서 시작됩니다",
|
|
70
70
|
help_basePath: "파일 경로를 표시할 때 사용할 기본 경로를 지정합니다",
|
|
71
71
|
help_excludeTags: "문서 주석에서 제거할 블록/수정자 태그를 지정합니다",
|
|
72
|
+
// help_notRenderedTags
|
|
72
73
|
help_readme: "인덱스 페이지에 표시할 readme 파일의 경로를 지정합니다. 'none'을 전달하여 인덱스 페이지를 비활성화하고 글로벌 페이지에서 문서화를 시작합니다",
|
|
73
74
|
help_cname: "GitHub Pages의 사용자 정의 도메인에 유용한 CNAME 파일 텍스트를 설정합니다",
|
|
74
75
|
help_sourceLinkExternal: "소스 링크를 외부 링크로 취급하여 새 탭에서 열도록 지정합니다",
|
|
@@ -78,7 +79,7 @@ module.exports = (0, translatable_1.buildIncompleteTranslation)({
|
|
|
78
79
|
help_hideGenerator: "페이지 끝에 TypeDoc 링크를 출력하지 않습니다",
|
|
79
80
|
help_customFooterHtml: "TypeDoc 링크 뒤에 사용자 정의 푸터를 지정합니다",
|
|
80
81
|
help_customFooterHtmlDisableWrapper: "customFooterHtml의 래퍼 요소를 비활성화합니다",
|
|
81
|
-
|
|
82
|
+
// help_hideTypesInSignatureTitle
|
|
82
83
|
help_cacheBust: "정적 자산의 링크에 생성 시간을 포함합니다",
|
|
83
84
|
help_searchInComments: "검색 인덱스에 주석도 포함합니다. 이 옵션을 사용하면 검색 인덱스의 크기가 크게 증가합니다",
|
|
84
85
|
help_searchInDocuments: "검색 인덱스에 문서도 포함합니다. 이 옵션을 사용하면 검색 인덱스의 크기가 크게 증가합니다",
|
|
@@ -142,7 +143,6 @@ module.exports = (0, translatable_1.buildIncompleteTranslation)({
|
|
|
142
143
|
solution_not_supported_in_watch_mode: "제공된 tsconfig 파일은 watch 모드에서 지원되지 않는 솔루션 스타일 tsconfig처럼 보입니다.",
|
|
143
144
|
strategy_not_supported_in_watch_mode: "watch 모드에서는 EntryPointStrategy를 확인 또는 확장으로 설정해야 합니다.",
|
|
144
145
|
found_0_errors_and_1_warnings: "{0}개의 오류와 {1}개의 경고를 발견했습니다.",
|
|
145
|
-
docs_could_not_be_generated: "위 오류로 인해 문서를 생성할 수 없습니다.",
|
|
146
146
|
// ReflectionFlag translations
|
|
147
147
|
flag_private: "Private",
|
|
148
148
|
flag_protected: "Protected",
|
|
@@ -215,8 +215,6 @@ module.exports = (0, translatable_1.buildIncompleteTranslation)({
|
|
|
215
215
|
theme_inherited_from: "상속받은 타입:",
|
|
216
216
|
theme_overrides: "오버라이드 대상:",
|
|
217
217
|
theme_returns: "반환 형식:",
|
|
218
|
-
theme_re_exports: "다시 내보내진 원본:",
|
|
219
|
-
theme_renames_and_re_exports: "새 이름으로 내보내진 원본:",
|
|
220
218
|
theme_generated_using_typedoc: "TypeDoc으로 생성됨",
|
|
221
219
|
theme_preparing_search_index: "검색 색인 준비 중...",
|
|
222
220
|
theme_search_index_not_available: "검색 색인을 사용할 수 없습니다.",
|
|
@@ -1,2 +1,224 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: {
|
|
2
|
+
no_entry_points_for_packages: string;
|
|
3
|
+
failed_to_find_packages: string;
|
|
4
|
+
nested_packages_unsupported_0: "{0} 프로젝트의 entryPointStrategy가 패키지인데 중첩된 패키지는 지원되지 않습니다";
|
|
5
|
+
previous_error_occurred_when_reading_options_for_0: "{0} 위치의 패키지 옵션을 읽는 중에 이전 오류가 발생했습니다";
|
|
6
|
+
converting_project_at_0: "{0} 위치의 프로젝트 변환 중";
|
|
7
|
+
failed_to_convert_packages: string;
|
|
8
|
+
merging_converted_projects: string;
|
|
9
|
+
no_entry_points_to_merge: string;
|
|
10
|
+
entrypoint_did_not_match_files_0: "진입점 글로브 {0}이(가) 어떤 파일과도 일치하지 않았습니다";
|
|
11
|
+
frontmatter_children_0_should_be_an_array_of_strings_or_object_with_string_values: "{0}의 Frontmatter children은 문자열 배열이나 문자열 값을 갖는 객체여야 합니다";
|
|
12
|
+
inline_inheritdoc_should_not_appear_in_block_tag_in_comment_at_0: "{0} 위치의 주석에서 인라인 @inheritDoc 태그는 블록 태그 안에 나타나서는 안 됩니다";
|
|
13
|
+
at_most_one_remarks_tag_expected_in_comment_at_0: "주석에서 @remarks 태그는 최대 하나만 예상됩니다. {0}";
|
|
14
|
+
at_most_one_returns_tag_expected_in_comment_at_0: "주석에서 @returns 태그는 최대 하나만 예상됩니다. {0}";
|
|
15
|
+
at_most_one_inheritdoc_tag_expected_in_comment_at_0: "주석에서 @inheritDoc 태그는 최대 하나만 예상됩니다. {0}";
|
|
16
|
+
content_in_summary_overwritten_by_inheritdoc_in_comment_at_0: "주석에서 요약 부분의 내용이 @inheritDoc 태그에 의해 덮어쓰여집니다. {0}";
|
|
17
|
+
content_in_remarks_block_overwritten_by_inheritdoc_in_comment_at_0: "주석에서 @remarks 블록의 내용이 @inheritDoc 태그에 의해 덮어쓰여집니다. {0}";
|
|
18
|
+
example_tag_literal_name: string;
|
|
19
|
+
inheritdoc_tag_properly_capitalized: string;
|
|
20
|
+
invalid_intentionally_not_exported_symbols_0: "다음 심볼은 의도적으로 내보내지 않았지만 문서화에서 참조되지 않았거나 내보내졌습니다:\n\t{0}";
|
|
21
|
+
defaulting_project_name: string;
|
|
22
|
+
unable_to_find_any_entry_points: string;
|
|
23
|
+
watch_does_not_support_packages_mode: string;
|
|
24
|
+
watch_does_not_support_merge_mode: string;
|
|
25
|
+
help_options: string;
|
|
26
|
+
help_tsconfig: string;
|
|
27
|
+
help_compilerOptions: string;
|
|
28
|
+
help_lang: string;
|
|
29
|
+
help_locales: string;
|
|
30
|
+
help_packageOptions: string;
|
|
31
|
+
help_entryPoints: string;
|
|
32
|
+
help_entryPointStrategy: string;
|
|
33
|
+
help_alwaysCreateEntryPointModule: string;
|
|
34
|
+
help_projectDocuments: string;
|
|
35
|
+
help_exclude: string;
|
|
36
|
+
help_externalPattern: string;
|
|
37
|
+
help_excludeExternals: string;
|
|
38
|
+
help_excludeNotDocumented: string;
|
|
39
|
+
help_excludeNotDocumentedKinds: string;
|
|
40
|
+
help_excludeInternal: string;
|
|
41
|
+
help_excludeCategories: string;
|
|
42
|
+
help_excludePrivate: string;
|
|
43
|
+
help_excludeProtected: string;
|
|
44
|
+
help_excludeReferences: string;
|
|
45
|
+
help_externalSymbolLinkMappings: string;
|
|
46
|
+
help_out: string;
|
|
47
|
+
help_json: string;
|
|
48
|
+
help_pretty: string;
|
|
49
|
+
help_emit: string;
|
|
50
|
+
help_theme: string;
|
|
51
|
+
help_lightHighlightTheme: string;
|
|
52
|
+
help_darkHighlightTheme: string;
|
|
53
|
+
help_highlightLanguages: string;
|
|
54
|
+
help_customCss: string;
|
|
55
|
+
help_markdownItOptions: string;
|
|
56
|
+
help_markdownItLoader: string;
|
|
57
|
+
help_maxTypeConversionDepth: string;
|
|
58
|
+
help_name: string;
|
|
59
|
+
help_includeVersion: string;
|
|
60
|
+
help_disableSources: string;
|
|
61
|
+
help_sourceLinkTemplate: string;
|
|
62
|
+
help_gitRevision: string;
|
|
63
|
+
help_gitRemote: string;
|
|
64
|
+
help_disableGit: string;
|
|
65
|
+
help_basePath: string;
|
|
66
|
+
help_excludeTags: string;
|
|
67
|
+
help_readme: string;
|
|
68
|
+
help_cname: string;
|
|
69
|
+
help_sourceLinkExternal: string;
|
|
70
|
+
help_githubPages: string;
|
|
71
|
+
help_hostedBaseUrl: string;
|
|
72
|
+
help_useHostedBaseUrlForAbsoluteLinks: string;
|
|
73
|
+
help_hideGenerator: string;
|
|
74
|
+
help_customFooterHtml: string;
|
|
75
|
+
help_customFooterHtmlDisableWrapper: string;
|
|
76
|
+
help_cacheBust: string;
|
|
77
|
+
help_searchInComments: string;
|
|
78
|
+
help_searchInDocuments: string;
|
|
79
|
+
help_cleanOutputDir: string;
|
|
80
|
+
help_titleLink: string;
|
|
81
|
+
help_navigationLinks: string;
|
|
82
|
+
help_sidebarLinks: string;
|
|
83
|
+
help_navigationLeaves: string;
|
|
84
|
+
help_navigation: string;
|
|
85
|
+
help_visibilityFilters: string;
|
|
86
|
+
help_searchCategoryBoosts: string;
|
|
87
|
+
help_searchGroupBoosts: string;
|
|
88
|
+
help_jsDocCompatibility: string;
|
|
89
|
+
help_commentStyle: string;
|
|
90
|
+
help_useTsLinkResolution: string;
|
|
91
|
+
help_preserveLinkText: string;
|
|
92
|
+
help_blockTags: string;
|
|
93
|
+
help_inlineTags: string;
|
|
94
|
+
help_modifierTags: string;
|
|
95
|
+
help_categorizeByGroup: string;
|
|
96
|
+
help_defaultCategory: string;
|
|
97
|
+
help_categoryOrder: string;
|
|
98
|
+
help_groupOrder: string;
|
|
99
|
+
help_sort: string;
|
|
100
|
+
help_sortEntryPoints: string;
|
|
101
|
+
help_kindSortOrder: string;
|
|
102
|
+
help_watch: string;
|
|
103
|
+
help_preserveWatchOutput: string;
|
|
104
|
+
help_skipErrorChecking: string;
|
|
105
|
+
help_help: string;
|
|
106
|
+
help_version: string;
|
|
107
|
+
help_showConfig: string;
|
|
108
|
+
help_plugin: string;
|
|
109
|
+
help_logLevel: string;
|
|
110
|
+
help_treatWarningsAsErrors: string;
|
|
111
|
+
help_treatValidationWarningsAsErrors: string;
|
|
112
|
+
help_intentionallyNotExported: string;
|
|
113
|
+
help_requiredToBeDocumented: string;
|
|
114
|
+
help_validation: string;
|
|
115
|
+
option_0_must_be_between_1_and_2: "{0}은(는) {1}과(와) {2} 사이어야 합니다";
|
|
116
|
+
option_0_must_be_equal_to_or_greater_than_1: "{0}은(는) {1} 이상이어야 합니다";
|
|
117
|
+
option_0_must_be_less_than_or_equal_to_1: "{0}은(는) {1} 이하여야 합니다";
|
|
118
|
+
option_0_must_be_one_of_1: "{0}은(는) 다음 중 하나여야 합니다: {1}";
|
|
119
|
+
flag_0_is_not_valid_for_1_expected_2: "플래그 '{0}'은(는) {1}에 대해 유효하지 않습니다. {2} 중 하나가 예상됩니다";
|
|
120
|
+
expected_object_with_flag_values_for_0: "{0}에 대해 플래그 값이 포함된 객체가 예상됩니다. true/false도 사용할 수 있습니다";
|
|
121
|
+
flag_values_for_0_must_be_booleans: "{0}에 대한 플래그 값은 불리언이어야 합니다";
|
|
122
|
+
locales_must_be_an_object: string;
|
|
123
|
+
external_symbol_link_mappings_must_be_object: string;
|
|
124
|
+
highlight_theme_0_must_be_one_of_1: "{0}은(는) 다음 중 하나여야 합니다: {1}";
|
|
125
|
+
highlightLanguages_contains_invalid_languages_0: "highlightLanguages에 유효하지 않은 언어가 포함되어 있습니다: {0}. 지원하는 언어 목록을 확인하려면 typedoc --help를 실행하세요";
|
|
126
|
+
hostedBaseUrl_must_start_with_http: string;
|
|
127
|
+
useHostedBaseUrlForAbsoluteLinks_requires_hostedBaseUrl: string;
|
|
128
|
+
option_0_must_be_an_object: "'{0}' 옵션은 배열이 아닌 객체여야 합니다";
|
|
129
|
+
option_0_must_be_a_function: "'{0}' 옵션은 함수여야 합니다";
|
|
130
|
+
option_0_values_must_be_numbers: "{0}의 모든 값은 숫자여야 합니다";
|
|
131
|
+
option_0_values_must_be_array_of_tags: "{0}은(는) 유효한 태그 이름 배열이어야 합니다";
|
|
132
|
+
loaded_multiple_times_0: "TypeDoc가 여러 번 로드되었습니다. 일반적으로 자체적으로 설치된 TypeDoc을 가진 플러그인들이 이를 일으킵니다. 로드된 경로는 다음과 같습니다:\n\t{0}";
|
|
133
|
+
unsupported_ts_version_0: "지원되지 않는 Typescript 버전으로 실행 중입니다! TypeDoc이 충돌이 생기는 경우 이것이 그 이유가 됩니다. TypeDoc {0}을 지원합니다.";
|
|
134
|
+
no_compiler_options_set: string;
|
|
135
|
+
loaded_plugin_0: "로드된 플러그인 {0}";
|
|
136
|
+
solution_not_supported_in_watch_mode: string;
|
|
137
|
+
strategy_not_supported_in_watch_mode: string;
|
|
138
|
+
found_0_errors_and_1_warnings: "{0}개의 오류와 {1}개의 경고를 발견했습니다.";
|
|
139
|
+
flag_private: string;
|
|
140
|
+
flag_protected: string;
|
|
141
|
+
flag_public: string;
|
|
142
|
+
flag_static: string;
|
|
143
|
+
flag_external: string;
|
|
144
|
+
flag_optional: string;
|
|
145
|
+
flag_rest: string;
|
|
146
|
+
flag_abstract: string;
|
|
147
|
+
flag_const: string;
|
|
148
|
+
flag_readonly: string;
|
|
149
|
+
flag_inherited: string;
|
|
150
|
+
kind_project: string;
|
|
151
|
+
kind_module: string;
|
|
152
|
+
kind_namespace: string;
|
|
153
|
+
kind_enum: string;
|
|
154
|
+
kind_enum_member: string;
|
|
155
|
+
kind_variable: string;
|
|
156
|
+
kind_function: string;
|
|
157
|
+
kind_class: string;
|
|
158
|
+
kind_interface: string;
|
|
159
|
+
kind_constructor: string;
|
|
160
|
+
kind_property: string;
|
|
161
|
+
kind_method: string;
|
|
162
|
+
kind_call_signature: string;
|
|
163
|
+
kind_index_signature: string;
|
|
164
|
+
kind_constructor_signature: string;
|
|
165
|
+
kind_parameter: string;
|
|
166
|
+
kind_type_literal: string;
|
|
167
|
+
kind_type_parameter: string;
|
|
168
|
+
kind_accessor: string;
|
|
169
|
+
kind_get_signature: string;
|
|
170
|
+
kind_set_signature: string;
|
|
171
|
+
kind_type_alias: string;
|
|
172
|
+
kind_reference: string;
|
|
173
|
+
kind_document: string;
|
|
174
|
+
kind_plural_project: string;
|
|
175
|
+
kind_plural_module: string;
|
|
176
|
+
kind_plural_namespace: string;
|
|
177
|
+
kind_plural_enum: string;
|
|
178
|
+
kind_plural_enum_member: string;
|
|
179
|
+
kind_plural_variable: string;
|
|
180
|
+
kind_plural_function: string;
|
|
181
|
+
kind_plural_class: string;
|
|
182
|
+
kind_plural_interface: string;
|
|
183
|
+
kind_plural_constructor: string;
|
|
184
|
+
kind_plural_property: string;
|
|
185
|
+
kind_plural_method: string;
|
|
186
|
+
kind_plural_call_signature: string;
|
|
187
|
+
kind_plural_index_signature: string;
|
|
188
|
+
kind_plural_constructor_signature: string;
|
|
189
|
+
kind_plural_parameter: string;
|
|
190
|
+
kind_plural_type_literal: string;
|
|
191
|
+
kind_plural_type_parameter: string;
|
|
192
|
+
kind_plural_accessor: string;
|
|
193
|
+
kind_plural_get_signature: string;
|
|
194
|
+
kind_plural_set_signature: string;
|
|
195
|
+
kind_plural_type_alias: string;
|
|
196
|
+
kind_plural_reference: string;
|
|
197
|
+
kind_plural_document: string;
|
|
198
|
+
theme_implements: string;
|
|
199
|
+
theme_indexable: string;
|
|
200
|
+
theme_type_declaration: string;
|
|
201
|
+
theme_index: string;
|
|
202
|
+
theme_hierarchy: string;
|
|
203
|
+
theme_hierarchy_view_full: string;
|
|
204
|
+
theme_implemented_by: string;
|
|
205
|
+
theme_defined_in: string;
|
|
206
|
+
theme_implementation_of: string;
|
|
207
|
+
theme_inherited_from: string;
|
|
208
|
+
theme_overrides: string;
|
|
209
|
+
theme_returns: string;
|
|
210
|
+
theme_generated_using_typedoc: string;
|
|
211
|
+
theme_preparing_search_index: string;
|
|
212
|
+
theme_search_index_not_available: string;
|
|
213
|
+
theme_settings: string;
|
|
214
|
+
theme_member_visibility: string;
|
|
215
|
+
theme_theme: string;
|
|
216
|
+
theme_os: string;
|
|
217
|
+
theme_light: string;
|
|
218
|
+
theme_dark: string;
|
|
219
|
+
theme_on_this_page: string;
|
|
220
|
+
theme_search: string;
|
|
221
|
+
theme_menu: string;
|
|
222
|
+
theme_permalink: string;
|
|
223
|
+
};
|
|
2
224
|
export = _default;
|