i18n: add Polish translation (#1148)

* Create pl-PL.ts

* add pl-PL to index.ts

* import pl-PL in index.ts
This commit is contained in:
Bartłomiej Garbiec
2024-05-20 21:36:32 +02:00
committed by GitHub
parent e3cfe1f22f
commit a97e72f219
2 changed files with 85 additions and 0 deletions

View File

@ -16,6 +16,7 @@ import vi from "./locales/vi-VN"
import pt from "./locales/pt-BR"
import hu from "./locales/hu-HU"
import fa from "./locales/fa-IR"
import pl from "./locales/pl-PL"
export const TRANSLATIONS = {
"en-US": en,
@ -56,6 +57,7 @@ export const TRANSLATIONS = {
"pt-BR": pt,
"hu-HU": hu,
"fa-IR": fa,
"pl-PL": pl,
} as const
export const defaultTranslation = "en-US"