From ee23e681693ef237f9ef5ee9f7d18c269ef7d9a7 Mon Sep 17 00:00:00 2001 From: Anarion <2185791+anarion80@users.noreply.github.com> Date: Fri, 7 Jun 2024 12:25:00 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=90=20Add=20Polish=20locale=20(#152)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/Factory/Settings/Options.vue | 5 +-- resources/js/forms/classic.ts | 2 ++ resources/locales/pl.json | 35 +++++++++++++++++++ 3 files changed, 40 insertions(+), 2 deletions(-) create mode 100644 resources/locales/pl.json diff --git a/resources/js/components/Factory/Settings/Options.vue b/resources/js/components/Factory/Settings/Options.vue index 66bd886e..6ef9f905 100644 --- a/resources/js/components/Factory/Settings/Options.vue +++ b/resources/js/components/Factory/Settings/Options.vue @@ -55,10 +55,11 @@ const languageOptions = ref([ { label: "English", value: "en" }, // Alternative languages - { label: "German", value: "de" }, - { label: "Slovak", value: "sk" }, { label: "Français", value: "fr" }, + { label: "German", value: "de" }, { label: "Norwegian", value: "no" }, + { label: "Polish", value: "pl" }, + { label: "Slovak", value: "sk" }, { label: "简体中文", value: "zh-CN"}, ]); diff --git a/resources/js/forms/classic.ts b/resources/js/forms/classic.ts index a8ce1c1d..cde3c072 100644 --- a/resources/js/forms/classic.ts +++ b/resources/js/forms/classic.ts @@ -10,6 +10,7 @@ import localeEN from "@i18n/en.json"; import localeSK from "@i18n/sk.json"; import localeFR from "@i18n/fr.json"; import localeNO from "@i18n/no.json"; +import localePL from "@i18n/pl.json"; import localeZHCN from "@i18n/zh-CN.json"; const pinia = createPinia(); @@ -24,6 +25,7 @@ const i18n = createI18n({ sk: localeSK, fr: localeFR, no: localeNO, + pl: localePL, zhCN: localeZHCN, }, }); diff --git a/resources/locales/pl.json b/resources/locales/pl.json new file mode 100644 index 00000000..8bf7b500 --- /dev/null +++ b/resources/locales/pl.json @@ -0,0 +1,35 @@ +{ + "admin": { + "blocks": "brak bloków | 1 blok | {n} bloków" + }, + "Accept & Submit": "Zaakceptuj i wyślij", + "Accept": "Akceptuj", + "Close": "Zamknij", + "Enter": "Enter", + "Find us here": "Znajdziesz nas tutaj", + "Form Submitted": "Formularz przesłany", + "Go to next Page": "Idź do następnej Strony", + "Go to previous Page": "Idź do poprzedniej Strony", + "Legal Notice": "Informacje Prawne", + "Next": "Następny", + "Other": "Inne", + "Please enter a valid email.": "Proszę wprowadzić prawidłowy adres e-mail.", + "Please enter a valid link.": "Proszę wprowadzić prawidłowy link.", + "Please enter a valid number.": "Proszę wprowadzić prawidłową liczbę.", + "Please enter a valid phone number.": "Proszę wprowadzić prawidłowy numer telefonu.", + "Please select an option.": "Proszę wybrać opcję.", + "Privacy Policy": "Polityka Prywatności", + "required": "wymagane", + "Something went wrong validating your input": "Coś poszło nie tak podczas sprawdzania poprawności danych wejściowych", + "Submit": "Wyślij", + "This field is required.": "Tol pole jest wymagane.", + "Type your answer": "Wprowadź swoją odpowiedź", + "You have exceeded the maximum number of characters allowed.": "Przekroczyłeś maksymalną dozwoloną liczbę znaków.", + "hints": { + "edit": "Naciśnij {0} aby edytować", + "confirm": "{0} aby potwierdzić" + }, + "validation": { + "consent_required": "Aby kontynuować, musisz zaakceptować warunki." + } +}