From 3c4d54352d69b6274dd62b9510d62419cd15baf4 Mon Sep 17 00:00:00 2001
From: Eledah <eledah@users.noreply.github.com>
Date: Mon, 13 May 2024 16:12:06 +0000
Subject: [PATCH] feat(i18n): add Farsi (#1133)

---
 quartz/i18n/index.ts |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/quartz/i18n/index.ts b/quartz/i18n/index.ts
index 38d3562..9a86d61 100644
--- a/quartz/i18n/index.ts
+++ b/quartz/i18n/index.ts
@@ -12,6 +12,10 @@
 import ru from "./locales/ru-RU"
 import ko from "./locales/ko-KR"
 import zh from "./locales/zh-CN"
+import vi from "./locales/vi-VN"
+import pt from "./locales/pt-BR"
+import hu from "./locales/hu-HU"
+import fa from "./locales/fa-IR"
 
 export const TRANSLATIONS = {
   "en-US": en,
@@ -48,6 +52,10 @@
   "ru-RU": ru,
   "ko-KR": ko,
   "zh-CN": zh,
+  "vi-VN": vi,
+  "pt-BR": pt,
+  "hu-HU": hu,
+  "fa-IR": fa,
 } as const
 
 export const defaultTranslation = "en-US"

--
Gitblit v1.10.0