feat: add Polish language support to appearance settings and locale configuration

This commit is contained in:
Krzysztof Durek
2024-11-17 22:05:52 +01:00
parent 82367213ea
commit f138b0917f
4 changed files with 5 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
import Cookies from "js-cookie";
const SUPPORTED_LOCALES = ["en", "zh-Hans"] as const;
const SUPPORTED_LOCALES = ["en", "pl", "zh-Hans"] as const;
type Locale = (typeof SUPPORTED_LOCALES)[number];