feat: add Polish language support (#9770)

Co-authored-by: Kasper Fabricius Kristensen <45367945+kasperkristensen@users.noreply.github.com>
This commit is contained in:
Paweł Romanowski
2024-11-11 11:07:28 +01:00
committed by GitHub
parent a151865d0a
commit 5c22c57cb8
4 changed files with 2771 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
import { enUS } from "date-fns/locale"
import { enUS, pl } from "date-fns/locale"
import { Language } from "./types"
export const languages: Language[] = [
@@ -8,4 +8,10 @@ export const languages: Language[] = [
ltr: true,
date_locale: enUS,
},
{
code: "pl",
display_name: "Polish",
ltr: true,
date_locale: pl,
},
]

View File

@@ -1,6 +1,10 @@
import en from "./en.json"
import pl from "./pl.json"
export default {
en: {
translation: en,
},
pl: {
translation: pl,
},
}

File diff suppressed because it is too large Load Diff