From 421718958fc47db0f1a7b53f51e0c7063db744b3 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri, 23 Feb 2024 19:20:35 +0000
Subject: [PATCH] fix(callouts): use user provided title instead of canonical for default title
---
quartz/i18n/index.ts | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/quartz/i18n/index.ts b/quartz/i18n/index.ts
index 1e4853f..38d3562 100644
--- a/quartz/i18n/index.ts
+++ b/quartz/i18n/index.ts
@@ -1,6 +1,7 @@
import { Translation, CalloutTranslation } from "./locales/definition"
import en from "./locales/en-US"
import fr from "./locales/fr-FR"
+import it from "./locales/it-IT"
import ja from "./locales/ja-JP"
import de from "./locales/de-DE"
import nl from "./locales/nl-NL"
@@ -9,10 +10,13 @@
import ar from "./locales/ar-SA"
import uk from "./locales/uk-UA"
import ru from "./locales/ru-RU"
+import ko from "./locales/ko-KR"
+import zh from "./locales/zh-CN"
export const TRANSLATIONS = {
"en-US": en,
"fr-FR": fr,
+ "it-IT": it,
"ja-JP": ja,
"de-DE": de,
"nl-NL": nl,
@@ -42,6 +46,8 @@
"ar-MR": ar,
"uk-UA": uk,
"ru-RU": ru,
+ "ko-KR": ko,
+ "zh-CN": zh,
} as const
export const defaultTranslation = "en-US"
--
Gitblit v1.10.0