We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ad8f56 commit 9791787Copy full SHA for 9791787
typedoc-plugin-deno.ts
@@ -113,14 +113,15 @@ function processi18nLineByLine(comment: Comment & I18nComment): void {
113
}
114
115
if (comment.text === '') {
116
- // only one line
+ // shortText has been translated
117
comment.shortText_i18n = comment.text_line_i18n.shift();
118
comment.text = comment.text_line_en.join('\n\n');
119
} else {
120
- // multiple lines
121
- comment.text_line_i18n.unshift(comment.text);
+ comment.text_line_en.unshift(comment.text);
122
123
+
124
+ comment.text_line_i18n.push('');
125
126
127
function isSignature(reflection: Reflection): reflection is SignatureReflection {
0 commit comments