fix(i18n): forgot a string

This commit is contained in:
Jacky Zhao 2024-02-05 16:40:39 -08:00
parent 2b9659a1c2
commit bec726b666

View File

@ -104,7 +104,9 @@ export function renderPage(
type: "element", type: "element",
tagName: "a", tagName: "a",
properties: { href: inner.properties?.href, class: ["internal"] }, properties: { href: inner.properties?.href, class: ["internal"] },
children: [{ type: "text", value: `Link to original` }], children: [
{ type: "text", value: i18n(cfg.locale).components.transcludes.linkToOriginal },
],
}, },
] ]
} }