typedoc 0.26.2 → 0.26.4
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/dist/index.d.ts +1 -1
- package/dist/lib/application.js +1 -1
- package/dist/lib/converter/comments/textParser.js +12 -6
- package/dist/lib/converter/plugins/CommentPlugin.js +2 -4
- package/dist/lib/converter/plugins/LinkResolverPlugin.js +5 -3
- package/dist/lib/internationalization/locales/jp.cjs +2 -2
- package/dist/lib/internationalization/locales/jp.d.cts +1 -320
- package/dist/lib/internationalization/locales/ko.d.cts +1 -230
- package/dist/lib/internationalization/locales/zh.cjs +2 -2
- package/dist/lib/internationalization/locales/zh.d.cts +1 -320
- package/dist/lib/internationalization/translatable.d.ts +6 -4
- package/dist/lib/internationalization/translatable.js +4 -2
- package/dist/lib/models/FileRegistry.js +6 -4
- package/dist/lib/output/events.d.ts +20 -7
- package/dist/lib/output/events.js +20 -0
- package/dist/lib/output/index.d.ts +1 -1
- package/dist/lib/output/themes/default/DefaultTheme.js +25 -16
- package/dist/lib/output/themes/default/DefaultThemeRenderContext.d.ts +3 -2
- package/dist/lib/output/themes/default/DefaultThemeRenderContext.js +0 -2
- package/dist/lib/output/themes/default/partials/member.reference.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/member.reference.js +10 -4
- package/dist/lib/output/themes/default/partials/members.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/members.js +39 -9
- package/dist/lib/output/themes/default/partials/navigation.js +27 -7
- package/dist/lib/utils/array.d.ts +1 -1
- package/dist/lib/utils/array.js +1 -1
- package/dist/lib/utils/enum.d.ts +3 -3
- package/dist/lib/utils/minimalSourceFile.d.ts +1 -1
- package/dist/lib/utils/minimalSourceFile.js +9 -1
- package/dist/lib/utils/options/declaration.d.ts +1 -1
- package/dist/lib/utils/options/tsdoc-defaults.d.ts +1 -1
- package/dist/lib/utils/options/tsdoc-defaults.js +2 -1
- package/dist/lib/validation/links.js +45 -27
- package/package.json +7 -7
- package/static/main.js +4 -4
- package/static/style.css +10 -0
- package/tsdoc.json +4 -0
- package/dist/lib/output/themes/default/partials/members.group.d.ts +0 -4
- package/dist/lib/output/themes/default/partials/members.group.js +0 -25
|
@@ -1,231 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
2
|
-
docs_generated_at_0: "문서가 {0}에 생성되었습니다";
|
|
3
|
-
json_written_to_0: "{0}에 JSON이 작성되었습니다";
|
|
4
|
-
no_entry_points_for_packages: string;
|
|
5
|
-
failed_to_find_packages: string;
|
|
6
|
-
nested_packages_unsupported_0: "{0} 프로젝트의 entryPointStrategy가 패키지인데 중첩된 패키지는 지원되지 않습니다";
|
|
7
|
-
previous_error_occurred_when_reading_options_for_0: "{0} 위치의 패키지 옵션을 읽는 중에 이전 오류가 발생했습니다";
|
|
8
|
-
converting_project_at_0: "{0} 위치의 프로젝트 변환 중";
|
|
9
|
-
failed_to_convert_packages: string;
|
|
10
|
-
merging_converted_projects: string;
|
|
11
|
-
no_entry_points_to_merge: string;
|
|
12
|
-
entrypoint_did_not_match_files_0: "진입점 글로브 {0}이(가) 어떤 파일과도 일치하지 않았습니다";
|
|
13
|
-
frontmatter_children_0_should_be_an_array_of_strings_or_object_with_string_values: "{0}의 Frontmatter children은 문자열 배열이나 문자열 값을 갖는 객체여야 합니다";
|
|
14
|
-
inline_inheritdoc_should_not_appear_in_block_tag_in_comment_at_0: "{0} 위치의 주석에서 인라인 @inheritDoc 태그는 블록 태그 안에 나타나서는 안 됩니다";
|
|
15
|
-
at_most_one_remarks_tag_expected_in_comment_at_0: "주석에서 @remarks 태그는 최대 하나만 예상됩니다. {0}";
|
|
16
|
-
at_most_one_returns_tag_expected_in_comment_at_0: "주석에서 @returns 태그는 최대 하나만 예상됩니다. {0}";
|
|
17
|
-
at_most_one_inheritdoc_tag_expected_in_comment_at_0: "주석에서 @inheritDoc 태그는 최대 하나만 예상됩니다. {0}";
|
|
18
|
-
content_in_summary_overwritten_by_inheritdoc_in_comment_at_0: "주석에서 요약 부분의 내용이 @inheritDoc 태그에 의해 덮어쓰여집니다. {0}";
|
|
19
|
-
content_in_remarks_block_overwritten_by_inheritdoc_in_comment_at_0: "주석에서 @remarks 블록의 내용이 @inheritDoc 태그에 의해 덮어쓰여집니다. {0}";
|
|
20
|
-
example_tag_literal_name: string;
|
|
21
|
-
inheritdoc_tag_properly_capitalized: string;
|
|
22
|
-
invalid_intentionally_not_exported_symbols_0: "다음 심볼은 의도적으로 내보내지 않았지만 문서화에서 참조되지 않았거나 내보내졌습니다:\n\t{0}";
|
|
23
|
-
defaulting_project_name: string;
|
|
24
|
-
no_entry_points_provided: string;
|
|
25
|
-
unable_to_find_any_entry_points: string;
|
|
26
|
-
watch_does_not_support_packages_mode: string;
|
|
27
|
-
watch_does_not_support_merge_mode: string;
|
|
28
|
-
help_options: string;
|
|
29
|
-
help_tsconfig: string;
|
|
30
|
-
help_compilerOptions: string;
|
|
31
|
-
help_lang: string;
|
|
32
|
-
help_locales: string;
|
|
33
|
-
help_packageOptions: string;
|
|
34
|
-
help_entryPoints: string;
|
|
35
|
-
help_entryPointStrategy: string;
|
|
36
|
-
help_alwaysCreateEntryPointModule: string;
|
|
37
|
-
help_projectDocuments: string;
|
|
38
|
-
help_exclude: string;
|
|
39
|
-
help_externalPattern: string;
|
|
40
|
-
help_excludeExternals: string;
|
|
41
|
-
help_excludeNotDocumented: string;
|
|
42
|
-
help_excludeNotDocumentedKinds: string;
|
|
43
|
-
help_excludeInternal: string;
|
|
44
|
-
help_excludeCategories: string;
|
|
45
|
-
help_excludePrivate: string;
|
|
46
|
-
help_excludeProtected: string;
|
|
47
|
-
help_excludeReferences: string;
|
|
48
|
-
help_externalSymbolLinkMappings: string;
|
|
49
|
-
help_out: string;
|
|
50
|
-
help_json: string;
|
|
51
|
-
help_pretty: string;
|
|
52
|
-
help_emit: string;
|
|
53
|
-
help_theme: string;
|
|
54
|
-
help_lightHighlightTheme: string;
|
|
55
|
-
help_darkHighlightTheme: string;
|
|
56
|
-
help_highlightLanguages: string;
|
|
57
|
-
help_customCss: string;
|
|
58
|
-
help_markdownItOptions: string;
|
|
59
|
-
help_markdownItLoader: string;
|
|
60
|
-
help_maxTypeConversionDepth: string;
|
|
61
|
-
help_name: string;
|
|
62
|
-
help_includeVersion: string;
|
|
63
|
-
help_disableSources: string;
|
|
64
|
-
help_sourceLinkTemplate: string;
|
|
65
|
-
help_gitRevision: string;
|
|
66
|
-
help_gitRemote: string;
|
|
67
|
-
help_disableGit: string;
|
|
68
|
-
help_basePath: string;
|
|
69
|
-
help_excludeTags: string;
|
|
70
|
-
help_readme: string;
|
|
71
|
-
help_cname: string;
|
|
72
|
-
help_sourceLinkExternal: string;
|
|
73
|
-
help_githubPages: string;
|
|
74
|
-
help_hostedBaseUrl: string;
|
|
75
|
-
help_useHostedBaseUrlForAbsoluteLinks: string;
|
|
76
|
-
help_hideGenerator: string;
|
|
77
|
-
help_customFooterHtml: string;
|
|
78
|
-
help_customFooterHtmlDisableWrapper: string;
|
|
79
|
-
help_hideParameterTypesInTitle: string;
|
|
80
|
-
help_cacheBust: string;
|
|
81
|
-
help_searchInComments: string;
|
|
82
|
-
help_searchInDocuments: string;
|
|
83
|
-
help_cleanOutputDir: string;
|
|
84
|
-
help_titleLink: string;
|
|
85
|
-
help_navigationLinks: string;
|
|
86
|
-
help_sidebarLinks: string;
|
|
87
|
-
help_navigationLeaves: string;
|
|
88
|
-
help_navigation: string;
|
|
89
|
-
help_visibilityFilters: string;
|
|
90
|
-
help_searchCategoryBoosts: string;
|
|
91
|
-
help_searchGroupBoosts: string;
|
|
92
|
-
help_jsDocCompatibility: string;
|
|
93
|
-
help_commentStyle: string;
|
|
94
|
-
help_useTsLinkResolution: string;
|
|
95
|
-
help_preserveLinkText: string;
|
|
96
|
-
help_blockTags: string;
|
|
97
|
-
help_inlineTags: string;
|
|
98
|
-
help_modifierTags: string;
|
|
99
|
-
help_categorizeByGroup: string;
|
|
100
|
-
help_defaultCategory: string;
|
|
101
|
-
help_categoryOrder: string;
|
|
102
|
-
help_groupOrder: string;
|
|
103
|
-
help_sort: string;
|
|
104
|
-
help_sortEntryPoints: string;
|
|
105
|
-
help_kindSortOrder: string;
|
|
106
|
-
help_watch: string;
|
|
107
|
-
help_preserveWatchOutput: string;
|
|
108
|
-
help_skipErrorChecking: string;
|
|
109
|
-
help_help: string;
|
|
110
|
-
help_version: string;
|
|
111
|
-
help_showConfig: string;
|
|
112
|
-
help_plugin: string;
|
|
113
|
-
help_logLevel: string;
|
|
114
|
-
help_treatWarningsAsErrors: string;
|
|
115
|
-
help_treatValidationWarningsAsErrors: string;
|
|
116
|
-
help_intentionallyNotExported: string;
|
|
117
|
-
help_requiredToBeDocumented: string;
|
|
118
|
-
help_validation: string;
|
|
119
|
-
option_0_must_be_between_1_and_2: "{0}은(는) {1}과(와) {2} 사이어야 합니다";
|
|
120
|
-
option_0_must_be_equal_to_or_greater_than_1: "{0}은(는) {1} 이상이어야 합니다";
|
|
121
|
-
option_0_must_be_less_than_or_equal_to_1: "{0}은(는) {1} 이하여야 합니다";
|
|
122
|
-
option_0_must_be_one_of_1: "{0}은(는) 다음 중 하나여야 합니다: {1}";
|
|
123
|
-
flag_0_is_not_valid_for_1_expected_2: "플래그 '{0}'은(는) {1}에 대해 유효하지 않습니다. {2} 중 하나가 예상됩니다";
|
|
124
|
-
expected_object_with_flag_values_for_0: "{0}에 대해 플래그 값이 포함된 객체가 예상됩니다. true/false도 사용할 수 있습니다";
|
|
125
|
-
flag_values_for_0_must_be_booleans: "{0}에 대한 플래그 값은 불리언이어야 합니다";
|
|
126
|
-
locales_must_be_an_object: string;
|
|
127
|
-
external_symbol_link_mappings_must_be_object: string;
|
|
128
|
-
highlight_theme_0_must_be_one_of_1: "{0}은(는) 다음 중 하나여야 합니다: {1}";
|
|
129
|
-
highlightLanguages_contains_invalid_languages_0: "highlightLanguages에 유효하지 않은 언어가 포함되어 있습니다: {0}. 지원하는 언어 목록을 확인하려면 typedoc --help를 실행하세요";
|
|
130
|
-
hostedBaseUrl_must_start_with_http: string;
|
|
131
|
-
useHostedBaseUrlForAbsoluteLinks_requires_hostedBaseUrl: string;
|
|
132
|
-
option_0_must_be_an_object: "'{0}' 옵션은 배열이 아닌 객체여야 합니다";
|
|
133
|
-
option_0_must_be_a_function: "'{0}' 옵션은 함수여야 합니다";
|
|
134
|
-
option_0_values_must_be_numbers: "{0}의 모든 값은 숫자여야 합니다";
|
|
135
|
-
option_0_values_must_be_array_of_tags: "{0}은(는) 유효한 태그 이름 배열이어야 합니다";
|
|
136
|
-
loaded_multiple_times_0: "TypeDoc가 여러 번 로드되었습니다. 일반적으로 자체적으로 설치된 TypeDoc을 가진 플러그인들이 이를 일으킵니다. 로드된 경로는 다음과 같습니다:\n\t{0}";
|
|
137
|
-
unsupported_ts_version_0: "지원되지 않는 Typescript 버전으로 실행 중입니다! TypeDoc이 충돌이 생기는 경우 이것이 그 이유가 됩니다. TypeDoc {0}을 지원합니다.";
|
|
138
|
-
no_compiler_options_set: string;
|
|
139
|
-
loaded_plugin_0: "로드된 플러그인 {0}";
|
|
140
|
-
solution_not_supported_in_watch_mode: string;
|
|
141
|
-
strategy_not_supported_in_watch_mode: string;
|
|
142
|
-
found_0_errors_and_1_warnings: "{0}개의 오류와 {1}개의 경고를 발견했습니다.";
|
|
143
|
-
docs_could_not_be_generated: string;
|
|
144
|
-
flag_private: string;
|
|
145
|
-
flag_protected: string;
|
|
146
|
-
flag_public: string;
|
|
147
|
-
flag_static: string;
|
|
148
|
-
flag_external: string;
|
|
149
|
-
flag_optional: string;
|
|
150
|
-
flag_rest: string;
|
|
151
|
-
flag_abstract: string;
|
|
152
|
-
flag_const: string;
|
|
153
|
-
flag_readonly: string;
|
|
154
|
-
flag_inherited: string;
|
|
155
|
-
kind_project: string;
|
|
156
|
-
kind_module: string;
|
|
157
|
-
kind_namespace: string;
|
|
158
|
-
kind_enum: string;
|
|
159
|
-
kind_enum_member: string;
|
|
160
|
-
kind_variable: string;
|
|
161
|
-
kind_function: string;
|
|
162
|
-
kind_class: string;
|
|
163
|
-
kind_interface: string;
|
|
164
|
-
kind_constructor: string;
|
|
165
|
-
kind_property: string;
|
|
166
|
-
kind_method: string;
|
|
167
|
-
kind_call_signature: string;
|
|
168
|
-
kind_index_signature: string;
|
|
169
|
-
kind_constructor_signature: string;
|
|
170
|
-
kind_parameter: string;
|
|
171
|
-
kind_type_literal: string;
|
|
172
|
-
kind_type_parameter: string;
|
|
173
|
-
kind_accessor: string;
|
|
174
|
-
kind_get_signature: string;
|
|
175
|
-
kind_set_signature: string;
|
|
176
|
-
kind_type_alias: string;
|
|
177
|
-
kind_reference: string;
|
|
178
|
-
kind_document: string;
|
|
179
|
-
kind_plural_project: string;
|
|
180
|
-
kind_plural_module: string;
|
|
181
|
-
kind_plural_namespace: string;
|
|
182
|
-
kind_plural_enum: string;
|
|
183
|
-
kind_plural_enum_member: string;
|
|
184
|
-
kind_plural_variable: string;
|
|
185
|
-
kind_plural_function: string;
|
|
186
|
-
kind_plural_class: string;
|
|
187
|
-
kind_plural_interface: string;
|
|
188
|
-
kind_plural_constructor: string;
|
|
189
|
-
kind_plural_property: string;
|
|
190
|
-
kind_plural_method: string;
|
|
191
|
-
kind_plural_call_signature: string;
|
|
192
|
-
kind_plural_index_signature: string;
|
|
193
|
-
kind_plural_constructor_signature: string;
|
|
194
|
-
kind_plural_parameter: string;
|
|
195
|
-
kind_plural_type_literal: string;
|
|
196
|
-
kind_plural_type_parameter: string;
|
|
197
|
-
kind_plural_accessor: string;
|
|
198
|
-
kind_plural_get_signature: string;
|
|
199
|
-
kind_plural_set_signature: string;
|
|
200
|
-
kind_plural_type_alias: string;
|
|
201
|
-
kind_plural_reference: string;
|
|
202
|
-
kind_plural_document: string;
|
|
203
|
-
theme_implements: string;
|
|
204
|
-
theme_indexable: string;
|
|
205
|
-
theme_type_declaration: string;
|
|
206
|
-
theme_index: string;
|
|
207
|
-
theme_hierarchy: string;
|
|
208
|
-
theme_hierarchy_view_full: string;
|
|
209
|
-
theme_implemented_by: string;
|
|
210
|
-
theme_defined_in: string;
|
|
211
|
-
theme_implementation_of: string;
|
|
212
|
-
theme_inherited_from: string;
|
|
213
|
-
theme_overrides: string;
|
|
214
|
-
theme_returns: string;
|
|
215
|
-
theme_re_exports: string;
|
|
216
|
-
theme_renames_and_re_exports: string;
|
|
217
|
-
theme_generated_using_typedoc: string;
|
|
218
|
-
theme_preparing_search_index: string;
|
|
219
|
-
theme_search_index_not_available: string;
|
|
220
|
-
theme_settings: string;
|
|
221
|
-
theme_member_visibility: string;
|
|
222
|
-
theme_theme: string;
|
|
223
|
-
theme_os: string;
|
|
224
|
-
theme_light: string;
|
|
225
|
-
theme_dark: string;
|
|
226
|
-
theme_on_this_page: string;
|
|
227
|
-
theme_search: string;
|
|
228
|
-
theme_menu: string;
|
|
229
|
-
theme_permalink: string;
|
|
230
|
-
};
|
|
1
|
+
declare const _default: Partial<import("../translatable").BuiltinTranslatableStringConstraints>;
|
|
231
2
|
export = _default;
|
|
@@ -33,7 +33,7 @@ module.exports = (0, translatable_1.buildIncompleteTranslation)({
|
|
|
33
33
|
comments_for_0_are_declared_at_1: "{0} 的注释声明于:\n{1}",
|
|
34
34
|
multiple_type_parameters_on_template_tag_unsupported: "TypeDoc 不支持在带有注释的单个 @template 标记中定义多个类型参数",
|
|
35
35
|
failed_to_find_jsdoc_tag_for_name_0: "解析注释后无法找到 {0} 的 JSDoc 标签,请提交错误报告",
|
|
36
|
-
|
|
36
|
+
// relative_path_0_is_not_a_file_and_will_not_be_copied_to_output
|
|
37
37
|
inline_inheritdoc_should_not_appear_in_block_tag_in_comment_at_0: "内联 @inheritDoc 标记不应出现在块标记内,因为它不会在 {0} 处的注释中被处理。",
|
|
38
38
|
at_most_one_remarks_tag_expected_in_comment_at_0: "注释中最多应有一个 @remarks 标签,忽略 {0} 处注释中除第一个标签之外的所有标签",
|
|
39
39
|
at_most_one_returns_tag_expected_in_comment_at_0: "注释中最多应有一个 @returns 标签,忽略 {0} 处注释中除第一个标签之外的所有标签",
|
|
@@ -93,7 +93,7 @@ module.exports = (0, translatable_1.buildIncompleteTranslation)({
|
|
|
93
93
|
entry_point_0_did_not_match_any_packages: "入口点 glob {0} 与任何包含 package.json 的目录不匹配",
|
|
94
94
|
file_0_not_an_object: "文件 {0} 不是对象",
|
|
95
95
|
serialized_project_referenced_0_not_part_of_project: "序列化项目引用了反射 {0},但它不是项目的一部分",
|
|
96
|
-
|
|
96
|
+
// saved_relative_path_0_resolved_from_1_is_not_a_file
|
|
97
97
|
circular_reference_extends_0: "{0} 的“extends”字段出现循环引用",
|
|
98
98
|
failed_resolve_0_to_file_in_1: "无法将 {0} 解析为 {1} 中的文件",
|
|
99
99
|
option_0_can_only_be_specified_by_config_file: "“{0}”选项只能通过配置文件指定",
|
|
@@ -1,321 +1,2 @@
|
|
|
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
|
-
docs_could_not_be_generated: string;
|
|
10
|
-
docs_generated_at_0: "文档生成于 {0}";
|
|
11
|
-
json_written_to_0: "JSON 已写入 {0}";
|
|
12
|
-
no_entry_points_for_packages: string;
|
|
13
|
-
failed_to_find_packages: string;
|
|
14
|
-
nested_packages_unsupported_0: "位于 {0} 的项目已将 entryPointStrategy 设置为包,但不支持嵌套包";
|
|
15
|
-
previous_error_occurred_when_reading_options_for_0: "读取 {0} 处的包的选项时发生上一个错误";
|
|
16
|
-
converting_project_at_0: "正在转换 {0} 处的项目";
|
|
17
|
-
failed_to_convert_packages: string;
|
|
18
|
-
merging_converted_projects: string;
|
|
19
|
-
no_entry_points_to_merge: string;
|
|
20
|
-
entrypoint_did_not_match_files_0: "入口点 glob {0} 与任何文件均不匹配";
|
|
21
|
-
failed_to_parse_json_0: "无法将 {0} 处的文件解析为 json";
|
|
22
|
-
failed_to_read_0_when_processing_document_tag_in_1: "处理 {1} 中注释的 @document 标记时无法读取文件 {0}";
|
|
23
|
-
failed_to_read_0_when_processing_project_document: "添加项目文档时无法读取文件 {0}";
|
|
24
|
-
failed_to_read_0_when_processing_document_child_in_1: "处理 {1} 中的文档子项时无法读取文件 {0}";
|
|
25
|
-
frontmatter_children_0_should_be_an_array_of_strings_or_object_with_string_values: "{0} 中的 Frontmatter 子项应为字符串数组或具有字符串值的对象";
|
|
26
|
-
converting_union_as_interface: string;
|
|
27
|
-
converting_0_as_class_requires_value_declaration: "将 {0} 转换为类需要表示非类型值的声明";
|
|
28
|
-
converting_0_as_class_without_construct_signatures: "{0} 正在转换为类,但没有任何构造签名";
|
|
29
|
-
comment_for_0_should_not_contain_block_or_modifier_tags: "{0} 的注释不应包含任何块或修饰符标签";
|
|
30
|
-
symbol_0_has_multiple_declarations_with_comment: "{0} 有多个带注释的声明。将使用任意注释";
|
|
31
|
-
comments_for_0_are_declared_at_1: "{0} 的注释声明于:\n{1}";
|
|
32
|
-
multiple_type_parameters_on_template_tag_unsupported: string;
|
|
33
|
-
failed_to_find_jsdoc_tag_for_name_0: "解析注释后无法找到 {0} 的 JSDoc 标签,请提交错误报告";
|
|
34
|
-
relative_path_0_does_not_exist: "相对路径 {0} 不存在";
|
|
35
|
-
inline_inheritdoc_should_not_appear_in_block_tag_in_comment_at_0: "内联 @inheritDoc 标记不应出现在块标记内,因为它不会在 {0} 处的注释中被处理。";
|
|
36
|
-
at_most_one_remarks_tag_expected_in_comment_at_0: "注释中最多应有一个 @remarks 标签,忽略 {0} 处注释中除第一个标签之外的所有标签";
|
|
37
|
-
at_most_one_returns_tag_expected_in_comment_at_0: "注释中最多应有一个 @returns 标签,忽略 {0} 处注释中除第一个标签之外的所有标签";
|
|
38
|
-
at_most_one_inheritdoc_tag_expected_in_comment_at_0: "注释中最多应有一个 @inheritDoc 标签,忽略 {0} 处注释中除第一个标签之外的所有标签";
|
|
39
|
-
content_in_summary_overwritten_by_inheritdoc_in_comment_at_0: "摘要部分的内容将被 {0} 处注释中的 @inheritDoc 标记覆盖";
|
|
40
|
-
content_in_remarks_block_overwritten_by_inheritdoc_in_comment_at_0: "@remarks 块中的内容将被 {0} 处注释中的 @inheritDoc 标记覆盖";
|
|
41
|
-
example_tag_literal_name: string;
|
|
42
|
-
inheritdoc_tag_properly_capitalized: string;
|
|
43
|
-
treating_unrecognized_tag_0_as_modifier: "将无法识别的标签 {0} 视为修饰标签";
|
|
44
|
-
unmatched_closing_brace: string;
|
|
45
|
-
unescaped_open_brace_without_inline_tag: string;
|
|
46
|
-
unknown_block_tag_0: "遇到未知的区块标记 {0}";
|
|
47
|
-
unknown_inline_tag_0: "遇到未知的内联标记 {0}";
|
|
48
|
-
open_brace_within_inline_tag: string;
|
|
49
|
-
inline_tag_not_closed: string;
|
|
50
|
-
failed_to_resolve_link_to_0_in_comment_for_1: "无法解析“{1}”评论中的“{0}”链接";
|
|
51
|
-
type_0_defined_in_1_is_referenced_by_2_but_not_included_in_docs: "{0} 在 {1} 中定义,被 {2} 引用,但未包含在文档中";
|
|
52
|
-
reflection_0_kind_1_defined_in_2_does_not_have_any_documentation: "{0} ({1}),在 {2} 中定义,没有任何文档";
|
|
53
|
-
invalid_intentionally_not_exported_symbols_0: "以下符号被标记为有意不导出,但未在文档中引用,或已被导出:\n{0}";
|
|
54
|
-
not_all_search_category_boosts_used_0: "文档中并未使用 searchCategoryBoosts 中指定的所有类别。未使用的类别包括:\n{0}";
|
|
55
|
-
not_all_search_group_boosts_used_0: "文档中并未使用 searchGroupBoosts 中指定的所有组。未使用的组为:\n{0}";
|
|
56
|
-
comment_for_0_includes_categoryDescription_for_1_but_no_child_in_group: "{0} 的评论包含“{1}”的 @categoryDescription,但该类别中没有子项";
|
|
57
|
-
comment_for_0_includes_groupDescription_for_1_but_no_child_in_group: "对 {0} 的评论包含“{1}”的 @groupDescription,但该组中没有子项";
|
|
58
|
-
label_0_for_1_cannot_be_referenced: "无法使用声明引用来引用 {1} 的标签“{0}”。标签只能包含 A-Z、0-9 和 _,并且不能以数字开头";
|
|
59
|
-
modifier_tag_0_is_mutually_exclusive_with_1_in_comment_for_2: "修饰符标记 {0} 与 {2} 注释中的 {1} 互斥";
|
|
60
|
-
signature_0_has_unused_param_with_name_1: "签名 {0} 有一个名为“{1}”的 @param,但未被使用";
|
|
61
|
-
declaration_reference_in_inheritdoc_for_0_not_fully_parsed: "@inheritDoc 中对 {0} 的声明引用未完全解析,可能会解析不正确";
|
|
62
|
-
failed_to_find_0_to_inherit_comment_from_in_1: "在 {1} 的评论中找不到要继承的评论“{0}”";
|
|
63
|
-
failed_to_resolve_link_to_0_in_comment_for_1_may_have_meant_2: "无法解析 {1} 的注释中指向\"{0}\"的链接。您可能想要\"{2}\"";
|
|
64
|
-
failed_to_resolve_link_to_0_in_readme_for_1: "无法解析 {1} 的自述文件中指向\"{0}\"的链接";
|
|
65
|
-
failed_to_resolve_link_to_0_in_readme_for_1_may_have_meant_2: "无法解析 {1} 的自述文件中指向\"{0}\"的链接。您可能想要\"{2}\"";
|
|
66
|
-
reflection_0_tried_to_copy_comment_from_1_but_source_had_no_comment: "{0} 尝试使用 @inheritDoc 从 {1} 复制注释,但源没有相关注释";
|
|
67
|
-
inheritdoc_circular_inheritance_chain_0: "@inheritDoc 指定循环继承链:{0}";
|
|
68
|
-
provided_readme_at_0_could_not_be_read: "提供的 README 路径无法读取 {0}";
|
|
69
|
-
defaulting_project_name: string;
|
|
70
|
-
disable_git_set_but_not_source_link_template: string;
|
|
71
|
-
disable_git_set_and_git_revision_used: string;
|
|
72
|
-
git_remote_0_not_valid: "提供的 git 远程“{0}”无效。源链接将失效";
|
|
73
|
-
custom_css_file_0_does_not_exist: "{0} 处的自定义 CSS 文件不存在";
|
|
74
|
-
unsupported_highlight_language_0_not_highlighted_in_comment_for_1: "不支持的突出显示语言 {0} 将不会在 {1} 的评论中突出显示";
|
|
75
|
-
unloaded_language_0_not_highlighted_in_comment_for_1: "语言为 {0} 的代码块将不会在 {1} 的注释中突出显示,因为它未包含在 highlightLanguages 选项中";
|
|
76
|
-
yaml_frontmatter_not_an_object: string;
|
|
77
|
-
could_not_write_0: "无法写入 {0}";
|
|
78
|
-
could_not_empty_output_directory_0: "无法清空输出目录 {0}";
|
|
79
|
-
could_not_create_output_directory_0: "无法创建输出目录 {0}";
|
|
80
|
-
theme_0_is_not_defined_available_are_1: "主题“{0}”未定义。可用主题为:{1}";
|
|
81
|
-
custom_theme_does_not_define_getSlugger: string;
|
|
82
|
-
no_entry_points_provided: string;
|
|
83
|
-
unable_to_find_any_entry_points: string;
|
|
84
|
-
watch_does_not_support_packages_mode: string;
|
|
85
|
-
watch_does_not_support_merge_mode: string;
|
|
86
|
-
entry_point_0_not_in_program: "入口点 {0} 未被 tsconfig 中的“files”或“include”选项引用";
|
|
87
|
-
use_expand_or_glob_for_files_in_dir: string;
|
|
88
|
-
glob_0_did_not_match_any_files: "glob {0} 与任何文件均不匹配";
|
|
89
|
-
entry_point_0_did_not_match_any_files_after_exclude: "应用排除模式后,glob {0} 没有匹配任何文件";
|
|
90
|
-
entry_point_0_did_not_exist: "提供的入口点 {0} 不存在";
|
|
91
|
-
entry_point_0_did_not_match_any_packages: "入口点 glob {0} 与任何包含 package.json 的目录不匹配";
|
|
92
|
-
file_0_not_an_object: "文件 {0} 不是对象";
|
|
93
|
-
serialized_project_referenced_0_not_part_of_project: "序列化项目引用了反射 {0},但它不是项目的一部分";
|
|
94
|
-
saved_relative_path_0_resolved_from_1_does_not_exist: "序列化项目引用了 {0},相对于 {1} 而言,它并不存在";
|
|
95
|
-
circular_reference_extends_0: "{0} 的“extends”字段出现循环引用";
|
|
96
|
-
failed_resolve_0_to_file_in_1: "无法将 {0} 解析为 {1} 中的文件";
|
|
97
|
-
option_0_can_only_be_specified_by_config_file: "“{0}”选项只能通过配置文件指定";
|
|
98
|
-
option_0_expected_a_value_but_none_provided: "--{0} 需要一个值,但没有给出任何参数";
|
|
99
|
-
unknown_option_0_may_have_meant_1: "未知选项:{0},你可能指的是:\n{1}";
|
|
100
|
-
typedoc_key_in_0_ignored: "{0} 中的“typedoc”键已被旧包 entryPointStrategy 使用,将被忽略";
|
|
101
|
-
typedoc_options_must_be_object_in_0: "无法解析 {0} 中的“typedocOptions”字段,请确保它存在且包含对象";
|
|
102
|
-
tsconfig_file_0_does_not_exist: "tsconfig 文件 {0} 不存在";
|
|
103
|
-
tsconfig_file_specifies_options_file: string;
|
|
104
|
-
tsconfig_file_specifies_tsconfig_file: string;
|
|
105
|
-
tags_0_defined_in_typedoc_json_overwritten_by_tsdoc_json: "typedoc.json 中定义的 {0} 将被 tsdoc.json 中的配置覆盖";
|
|
106
|
-
failed_read_tsdoc_json_0: "无法读取位于 {0} 的 tsdoc.json 文件";
|
|
107
|
-
invalid_tsdoc_json_0: "文件 {0} 不是有效的 tsdoc.json 文件";
|
|
108
|
-
options_file_0_does_not_exist: "选项文件 {0} 不存在";
|
|
109
|
-
failed_read_options_file_0: "无法解析 {0},请确保其存在并导出对象";
|
|
110
|
-
invalid_plugin_0_missing_load_function: "插件 {0} 中的结构无效,未找到加载函数";
|
|
111
|
-
plugin_0_could_not_be_loaded: "无法加载插件 {0}";
|
|
112
|
-
help_options: string;
|
|
113
|
-
help_tsconfig: string;
|
|
114
|
-
help_compilerOptions: string;
|
|
115
|
-
help_lang: string;
|
|
116
|
-
help_locales: string;
|
|
117
|
-
help_packageOptions: string;
|
|
118
|
-
help_entryPoints: string;
|
|
119
|
-
help_entryPointStrategy: string;
|
|
120
|
-
help_alwaysCreateEntryPointModule: string;
|
|
121
|
-
help_projectDocuments: string;
|
|
122
|
-
help_exclude: string;
|
|
123
|
-
help_externalPattern: string;
|
|
124
|
-
help_excludeExternals: string;
|
|
125
|
-
help_excludeNotDocumented: string;
|
|
126
|
-
help_excludeNotDocumentedKinds: string;
|
|
127
|
-
help_excludeInternal: string;
|
|
128
|
-
help_excludeCategories: string;
|
|
129
|
-
help_excludePrivate: string;
|
|
130
|
-
help_excludeProtected: string;
|
|
131
|
-
help_excludeReferences: string;
|
|
132
|
-
help_externalSymbolLinkMappings: string;
|
|
133
|
-
help_out: string;
|
|
134
|
-
help_json: string;
|
|
135
|
-
help_pretty: string;
|
|
136
|
-
help_emit: string;
|
|
137
|
-
help_theme: string;
|
|
138
|
-
help_lightHighlightTheme: string;
|
|
139
|
-
help_darkHighlightTheme: string;
|
|
140
|
-
help_highlightLanguages: string;
|
|
141
|
-
help_customCss: string;
|
|
142
|
-
help_markdownItOptions: string;
|
|
143
|
-
help_markdownItLoader: string;
|
|
144
|
-
help_maxTypeConversionDepth: string;
|
|
145
|
-
help_name: string;
|
|
146
|
-
help_includeVersion: string;
|
|
147
|
-
help_disableSources: string;
|
|
148
|
-
help_sourceLinkTemplate: string;
|
|
149
|
-
help_gitRevision: string;
|
|
150
|
-
help_gitRemote: string;
|
|
151
|
-
help_disableGit: string;
|
|
152
|
-
help_basePath: string;
|
|
153
|
-
help_excludeTags: string;
|
|
154
|
-
help_readme: string;
|
|
155
|
-
help_cname: string;
|
|
156
|
-
help_sourceLinkExternal: string;
|
|
157
|
-
help_githubPages: string;
|
|
158
|
-
help_hostedBaseUrl: string;
|
|
159
|
-
help_useHostedBaseUrlForAbsoluteLinks: string;
|
|
160
|
-
help_hideGenerator: string;
|
|
161
|
-
help_customFooterHtml: string;
|
|
162
|
-
help_customFooterHtmlDisableWrapper: string;
|
|
163
|
-
help_hideParameterTypesInTitle: string;
|
|
164
|
-
help_cacheBust: string;
|
|
165
|
-
help_searchInComments: string;
|
|
166
|
-
help_searchInDocuments: string;
|
|
167
|
-
help_cleanOutputDir: string;
|
|
168
|
-
help_titleLink: string;
|
|
169
|
-
help_navigationLinks: string;
|
|
170
|
-
help_sidebarLinks: string;
|
|
171
|
-
help_navigationLeaves: string;
|
|
172
|
-
help_navigation: string;
|
|
173
|
-
help_visibilityFilters: string;
|
|
174
|
-
help_searchCategoryBoosts: string;
|
|
175
|
-
help_searchGroupBoosts: string;
|
|
176
|
-
help_jsDocCompatibility: string;
|
|
177
|
-
help_commentStyle: string;
|
|
178
|
-
help_useTsLinkResolution: string;
|
|
179
|
-
help_preserveLinkText: string;
|
|
180
|
-
help_blockTags: string;
|
|
181
|
-
help_inlineTags: string;
|
|
182
|
-
help_modifierTags: string;
|
|
183
|
-
help_categorizeByGroup: string;
|
|
184
|
-
help_defaultCategory: string;
|
|
185
|
-
help_categoryOrder: string;
|
|
186
|
-
help_groupOrder: string;
|
|
187
|
-
help_sort: string;
|
|
188
|
-
help_sortEntryPoints: string;
|
|
189
|
-
help_kindSortOrder: string;
|
|
190
|
-
help_watch: string;
|
|
191
|
-
help_preserveWatchOutput: string;
|
|
192
|
-
help_skipErrorChecking: string;
|
|
193
|
-
help_help: string;
|
|
194
|
-
help_version: string;
|
|
195
|
-
help_showConfig: string;
|
|
196
|
-
help_plugin: string;
|
|
197
|
-
help_logLevel: string;
|
|
198
|
-
help_treatWarningsAsErrors: string;
|
|
199
|
-
help_treatValidationWarningsAsErrors: string;
|
|
200
|
-
help_intentionallyNotExported: string;
|
|
201
|
-
help_requiredToBeDocumented: string;
|
|
202
|
-
help_validation: string;
|
|
203
|
-
unknown_option_0_you_may_have_meant_1: "未知选项“{0}” 你可能指的是:\n{1}";
|
|
204
|
-
option_0_must_be_between_1_and_2: "{0} 必须介于 {1} 和 {2} 之间";
|
|
205
|
-
option_0_must_be_equal_to_or_greater_than_1: "{0} 必须等于或大于 {1}";
|
|
206
|
-
option_0_must_be_less_than_or_equal_to_1: "{0} 必须小于或等于 {1}";
|
|
207
|
-
option_0_must_be_one_of_1: "{0} 必须是 {1} 之一";
|
|
208
|
-
flag_0_is_not_valid_for_1_expected_2: "标志“{0}”对 {1} 无效,应为 {2} 之一";
|
|
209
|
-
expected_object_with_flag_values_for_0: "预期为一个带有标志值为 {0} 或 true/false 的对象";
|
|
210
|
-
flag_values_for_0_must_be_booleans: "{0} 的标志值必须是布尔值";
|
|
211
|
-
locales_must_be_an_object: string;
|
|
212
|
-
exclude_not_documented_specified_0_valid_values_are_1: "excludeNotDocumentedKinds 只能指定已知值,并且提供了无效值 ({0})。有效类型为:\n{1}";
|
|
213
|
-
external_symbol_link_mappings_must_be_object: string;
|
|
214
|
-
highlight_theme_0_must_be_one_of_1: "{0} 必须是下列之一:{1}";
|
|
215
|
-
highlightLanguages_contains_invalid_languages_0: "highlightLanguages 包含无效语言:{0},运行 typedoc --help 获取受支持语言的列表";
|
|
216
|
-
hostedBaseUrl_must_start_with_http: string;
|
|
217
|
-
useHostedBaseUrlForAbsoluteLinks_requires_hostedBaseUrl: string;
|
|
218
|
-
option_0_must_be_an_object: "“{0}”选项必须是非数组对象";
|
|
219
|
-
option_0_must_be_a_function: "‘{0}’ 选项必须是一个函数";
|
|
220
|
-
option_0_must_be_object_with_urls: "{0} 必须是具有字符串标签作为键和 URL 值的对象";
|
|
221
|
-
visibility_filters_only_include_0: "visibilityFilters 只能包含以下非@键:{0}";
|
|
222
|
-
visibility_filters_must_be_booleans: string;
|
|
223
|
-
option_0_values_must_be_numbers: "{0} 的所有值都必须是数字";
|
|
224
|
-
option_0_values_must_be_array_of_tags: "{0} 必须是有效标签名称的数组";
|
|
225
|
-
option_0_specified_1_but_only_2_is_valid: "{0} 只能指定已知值,并且提供了无效值 ({1})。有效的排序策略为:\n{2}";
|
|
226
|
-
kind_project: string;
|
|
227
|
-
kind_module: string;
|
|
228
|
-
kind_namespace: string;
|
|
229
|
-
kind_enum: string;
|
|
230
|
-
kind_enum_member: string;
|
|
231
|
-
kind_variable: string;
|
|
232
|
-
kind_function: string;
|
|
233
|
-
kind_class: string;
|
|
234
|
-
kind_interface: string;
|
|
235
|
-
kind_constructor: string;
|
|
236
|
-
kind_property: string;
|
|
237
|
-
kind_method: string;
|
|
238
|
-
kind_call_signature: string;
|
|
239
|
-
kind_index_signature: string;
|
|
240
|
-
kind_constructor_signature: string;
|
|
241
|
-
kind_parameter: string;
|
|
242
|
-
kind_type_literal: string;
|
|
243
|
-
kind_type_parameter: string;
|
|
244
|
-
kind_accessor: string;
|
|
245
|
-
kind_get_signature: string;
|
|
246
|
-
kind_set_signature: string;
|
|
247
|
-
kind_type_alias: string;
|
|
248
|
-
kind_reference: string;
|
|
249
|
-
kind_document: string;
|
|
250
|
-
kind_plural_project: string;
|
|
251
|
-
kind_plural_module: string;
|
|
252
|
-
kind_plural_namespace: string;
|
|
253
|
-
kind_plural_enum: string;
|
|
254
|
-
kind_plural_enum_member: string;
|
|
255
|
-
kind_plural_variable: string;
|
|
256
|
-
kind_plural_function: string;
|
|
257
|
-
kind_plural_class: string;
|
|
258
|
-
kind_plural_interface: string;
|
|
259
|
-
kind_plural_constructor: string;
|
|
260
|
-
kind_plural_property: string;
|
|
261
|
-
kind_plural_method: string;
|
|
262
|
-
kind_plural_call_signature: string;
|
|
263
|
-
kind_plural_index_signature: string;
|
|
264
|
-
kind_plural_constructor_signature: string;
|
|
265
|
-
kind_plural_parameter: string;
|
|
266
|
-
kind_plural_type_literal: string;
|
|
267
|
-
kind_plural_type_parameter: string;
|
|
268
|
-
kind_plural_accessor: string;
|
|
269
|
-
kind_plural_get_signature: string;
|
|
270
|
-
kind_plural_set_signature: string;
|
|
271
|
-
kind_plural_type_alias: string;
|
|
272
|
-
kind_plural_reference: string;
|
|
273
|
-
kind_plural_document: string;
|
|
274
|
-
flag_protected: string;
|
|
275
|
-
flag_private: string;
|
|
276
|
-
flag_external: string;
|
|
277
|
-
flag_inherited: string;
|
|
278
|
-
flag_public: string;
|
|
279
|
-
flag_static: string;
|
|
280
|
-
flag_optional: string;
|
|
281
|
-
flag_rest: string;
|
|
282
|
-
flag_abstract: string;
|
|
283
|
-
flag_const: string;
|
|
284
|
-
flag_readonly: string;
|
|
285
|
-
theme_implements: string;
|
|
286
|
-
theme_indexable: string;
|
|
287
|
-
theme_type_declaration: string;
|
|
288
|
-
theme_index: string;
|
|
289
|
-
theme_hierarchy: string;
|
|
290
|
-
theme_hierarchy_view_full: string;
|
|
291
|
-
theme_implemented_by: string;
|
|
292
|
-
theme_defined_in: string;
|
|
293
|
-
theme_implementation_of: string;
|
|
294
|
-
theme_inherited_from: string;
|
|
295
|
-
theme_overrides: string;
|
|
296
|
-
theme_returns: string;
|
|
297
|
-
theme_re_exports: string;
|
|
298
|
-
theme_renames_and_re_exports: string;
|
|
299
|
-
theme_generated_using_typedoc: string;
|
|
300
|
-
theme_preparing_search_index: string;
|
|
301
|
-
theme_search_index_not_available: string;
|
|
302
|
-
theme_settings: string;
|
|
303
|
-
theme_member_visibility: string;
|
|
304
|
-
theme_theme: string;
|
|
305
|
-
theme_os: string;
|
|
306
|
-
theme_light: string;
|
|
307
|
-
theme_dark: string;
|
|
308
|
-
theme_on_this_page: string;
|
|
309
|
-
theme_search: string;
|
|
310
|
-
theme_menu: string;
|
|
311
|
-
theme_permalink: string;
|
|
312
|
-
tag_see: string;
|
|
313
|
-
tag_group: string;
|
|
314
|
-
tag_example: string;
|
|
315
|
-
theme_copy: string;
|
|
316
|
-
theme_copied: string;
|
|
317
|
-
theme_normally_hidden: string;
|
|
318
|
-
theme_class_hierarchy_title: string;
|
|
319
|
-
theme_loading: string;
|
|
320
|
-
};
|
|
1
|
+
declare const _default: Partial<import("../translatable").BuiltinTranslatableStringConstraints>;
|
|
321
2
|
export = _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { blockTags, inlineTags, modifierTags } from "../utils/options/tsdoc-defaults";
|
|
2
|
-
export declare function buildTranslation
|
|
3
|
-
export declare function buildIncompleteTranslation
|
|
2
|
+
export declare function buildTranslation(translations: BuiltinTranslatableStringConstraints): BuiltinTranslatableStringConstraints;
|
|
3
|
+
export declare function buildIncompleteTranslation(translations: Partial<BuiltinTranslatableStringConstraints>): Partial<BuiltinTranslatableStringConstraints>;
|
|
4
4
|
export declare const translatable: {
|
|
5
5
|
readonly loaded_multiple_times_0: "TypeDoc has been loaded multiple times. This is commonly caused by plugins which have their own installation of TypeDoc. The loaded paths are:\n\t{0}";
|
|
6
6
|
readonly unsupported_ts_version_0: "You are running with an unsupported TypeScript version! If TypeDoc crashes, this is why. TypeDoc supports {0}";
|
|
@@ -34,7 +34,7 @@ export declare const translatable: {
|
|
|
34
34
|
readonly comments_for_0_are_declared_at_1: "The comments for {0} are declared at:\n\t{1}";
|
|
35
35
|
readonly multiple_type_parameters_on_template_tag_unsupported: "TypeDoc does not support multiple type parameters defined in a single @template tag with a comment";
|
|
36
36
|
readonly failed_to_find_jsdoc_tag_for_name_0: "Failed to find JSDoc tag for {0} after parsing comment, please file a bug report";
|
|
37
|
-
readonly
|
|
37
|
+
readonly relative_path_0_is_not_a_file_and_will_not_be_copied_to_output: "The relative path {0} is not a file and will not be copied to the output directory";
|
|
38
38
|
readonly inline_inheritdoc_should_not_appear_in_block_tag_in_comment_at_0: "An inline @inheritDoc tag should not appear within a block tag as it will not be processed in comment at {0}";
|
|
39
39
|
readonly at_most_one_remarks_tag_expected_in_comment_at_0: "At most one @remarks tag is expected in a comment, ignoring all but the first in comment at {0}";
|
|
40
40
|
readonly at_most_one_returns_tag_expected_in_comment_at_0: "At most one @returns tag is expected in a comment, ignoring all but the first in comment at {0}";
|
|
@@ -54,6 +54,8 @@ export declare const translatable: {
|
|
|
54
54
|
readonly failed_to_resolve_link_to_0_in_comment_for_1_may_have_meant_2: "Failed to resolve link to \"{0}\" in comment for {1}. You may have wanted \"{2}\"";
|
|
55
55
|
readonly failed_to_resolve_link_to_0_in_readme_for_1: "Failed to resolve link to \"{0}\" in readme for {1}";
|
|
56
56
|
readonly failed_to_resolve_link_to_0_in_readme_for_1_may_have_meant_2: "Failed to resolve link to \"{0}\" in readme for {1}. You may have wanted \"{2}\"";
|
|
57
|
+
readonly failed_to_resolve_link_to_0_in_document_1: "Failed to resolve link to \"{0}\" in document {1}";
|
|
58
|
+
readonly failed_to_resolve_link_to_0_in_document_1_may_have_meant_2: "Failed to resolve link to \"{0}\" in document {1}. You may have wanted \"{2}\"";
|
|
57
59
|
readonly type_0_defined_in_1_is_referenced_by_2_but_not_included_in_docs: "{0}, defined in {1}, is referenced by {2} but not included in the documentation";
|
|
58
60
|
readonly reflection_0_kind_1_defined_in_2_does_not_have_any_documentation: "{0} ({1}), defined in {2}, does not have any documentation";
|
|
59
61
|
readonly invalid_intentionally_not_exported_symbols_0: "The following symbols were marked as intentionally not exported, but were either not referenced in the documentation, or were exported:\n\t{0}";
|
|
@@ -94,7 +96,7 @@ export declare const translatable: {
|
|
|
94
96
|
readonly entry_point_0_did_not_match_any_packages: "The entry point glob {0} did not match any directories containing package.json";
|
|
95
97
|
readonly file_0_not_an_object: "The file {0} is not an object";
|
|
96
98
|
readonly serialized_project_referenced_0_not_part_of_project: "Serialized project referenced reflection {0}, which was not a part of the project";
|
|
97
|
-
readonly
|
|
99
|
+
readonly saved_relative_path_0_resolved_from_1_is_not_a_file: "Serialized project referenced {0}, which does not exist or is not a file relative to {1}";
|
|
98
100
|
readonly circular_reference_extends_0: "Circular reference encountered for \"extends\" field of {0}";
|
|
99
101
|
readonly failed_resolve_0_to_file_in_1: "Failed to resolve {0} to a file in {1}";
|
|
100
102
|
readonly option_0_can_only_be_specified_by_config_file: "The '{0}' option can only be specified via a config file";
|
|
@@ -43,7 +43,7 @@ exports.translatable = {
|
|
|
43
43
|
// comments/parser.ts
|
|
44
44
|
multiple_type_parameters_on_template_tag_unsupported: `TypeDoc does not support multiple type parameters defined in a single @template tag with a comment`,
|
|
45
45
|
failed_to_find_jsdoc_tag_for_name_0: `Failed to find JSDoc tag for {0} after parsing comment, please file a bug report`,
|
|
46
|
-
|
|
46
|
+
relative_path_0_is_not_a_file_and_will_not_be_copied_to_output: `The relative path {0} is not a file and will not be copied to the output directory`,
|
|
47
47
|
inline_inheritdoc_should_not_appear_in_block_tag_in_comment_at_0: "An inline @inheritDoc tag should not appear within a block tag as it will not be processed in comment at {0}",
|
|
48
48
|
at_most_one_remarks_tag_expected_in_comment_at_0: "At most one @remarks tag is expected in a comment, ignoring all but the first in comment at {0}",
|
|
49
49
|
at_most_one_returns_tag_expected_in_comment_at_0: "At most one @returns tag is expected in a comment, ignoring all but the first in comment at {0}",
|
|
@@ -64,6 +64,8 @@ exports.translatable = {
|
|
|
64
64
|
failed_to_resolve_link_to_0_in_comment_for_1_may_have_meant_2: `Failed to resolve link to "{0}" in comment for {1}. You may have wanted "{2}"`,
|
|
65
65
|
failed_to_resolve_link_to_0_in_readme_for_1: `Failed to resolve link to "{0}" in readme for {1}`,
|
|
66
66
|
failed_to_resolve_link_to_0_in_readme_for_1_may_have_meant_2: `Failed to resolve link to "{0}" in readme for {1}. You may have wanted "{2}"`,
|
|
67
|
+
failed_to_resolve_link_to_0_in_document_1: `Failed to resolve link to "{0}" in document {1}`,
|
|
68
|
+
failed_to_resolve_link_to_0_in_document_1_may_have_meant_2: `Failed to resolve link to "{0}" in document {1}. You may have wanted "{2}"`,
|
|
67
69
|
type_0_defined_in_1_is_referenced_by_2_but_not_included_in_docs: `{0}, defined in {1}, is referenced by {2} but not included in the documentation`,
|
|
68
70
|
reflection_0_kind_1_defined_in_2_does_not_have_any_documentation: `{0} ({1}), defined in {2}, does not have any documentation`,
|
|
69
71
|
invalid_intentionally_not_exported_symbols_0: "The following symbols were marked as intentionally not exported, but were either not referenced in the documentation, or were exported:\n\t{0}",
|
|
@@ -109,7 +111,7 @@ exports.translatable = {
|
|
|
109
111
|
file_0_not_an_object: `The file {0} is not an object`,
|
|
110
112
|
// deserialization
|
|
111
113
|
serialized_project_referenced_0_not_part_of_project: `Serialized project referenced reflection {0}, which was not a part of the project`,
|
|
112
|
-
|
|
114
|
+
saved_relative_path_0_resolved_from_1_is_not_a_file: `Serialized project referenced {0}, which does not exist or is not a file relative to {1}`,
|
|
113
115
|
// options
|
|
114
116
|
circular_reference_extends_0: `Circular reference encountered for "extends" field of {0}`,
|
|
115
117
|
failed_resolve_0_to_file_in_1: `Failed to resolve {0} to a file in {1}`,
|