feat: VivesPOS landing on Winter CMS 1.2 — theme + plugin + Dockerfile
Some checks are pending
Module sub-split / Sub-split (push) Waiting to run
Some checks are pending
Module sub-split / Sub-split (push) Waiting to run
- Base: wintercms/winter branch 1.2 (full framework) - Theme vivespos: Canvas 7 + Bootstrap 5 CDN, custom CSS - Layout: deferred GTM/GA4 tracking, JSON-LD SoftwareApplication - Partials: hero (offline-first), features, modes (offline/nube toggle), screenshots, pricing (3 planes), comparison, FAQ, CTA - Plugin VivesPOS.Site with ContactForm - Dockerfile: PHP 8.2 Apache, port 80, healthcheck - Added winter/wn-pages, blog, sitemap, seo plugins - Active theme set to vivespos
This commit is contained in:
111
modules/system/lang/pl/validation.php
Normal file
111
modules/system/lang/pl/validation.php
Normal file
@@ -0,0 +1,111 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => ':attribute musi zostać zaakceptowany.',
|
||||
'active_url' => ':attribute jest nieprawidłowym adresem URL.',
|
||||
'after' => ':attribute musi być datą późniejszą od :date.',
|
||||
'alpha' => ':attribute może zawierać jedynie litery.',
|
||||
'alpha_dash' => ':attribute może zawierać jedynie litery, cyfry i myślniki.',
|
||||
'alpha_num' => ':attribute może zawierać jedynie litery i cyfry.',
|
||||
'array' => ':attribute musi być tablicą.',
|
||||
'before' => ':attribute musi być datą wcześniejszą od :date.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute musi zawierać się w granicach :min - :max.',
|
||||
'file' => ':attribute musi zawierać się w granicach :min - :max kilobajtów.',
|
||||
'string' => ':attribute musi zawierać się w granicach :min - :max znaków.',
|
||||
'array' => ':attribute musi składać się z :min - :max elementów.',
|
||||
],
|
||||
'boolean' => ':attribute musi mieć wartość prawda albo fałsz',
|
||||
'confirmed' => 'Potwierdzenie :attribute nie zgadza się.',
|
||||
'date' => ':attribute nie jest prawidłową datą.',
|
||||
'date_format' => ':attribute nie jest w formacie :format.',
|
||||
'different' => ':attribute oraz :other muszą się różnić.',
|
||||
'digits' => ':attribute musi składać się z :digits cyfr.',
|
||||
'digits_between' => ':attribute musi mieć od :min do :max cyfr.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'Format :attribute jest nieprawidłowy.',
|
||||
'exists' => 'Zaznaczony :attribute jest nieprawidłowy.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'Pole :attribute jest wymagane.',
|
||||
'image' => ':attribute musi być obrazkiem.',
|
||||
'in' => 'Zaznaczony :attribute jest nieprawidłowy.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => ':attribute musi być liczbą całkowitą.',
|
||||
'ip' => ':attribute musi być prawidłowym adresem IP.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => ':attribute nie może być większy niż :max.',
|
||||
'file' => ':attribute nie może być większy niż :max kilobajtów.',
|
||||
'string' => ':attribute nie może być dłuższy niż :max znaków.',
|
||||
'array' => ':attribute nie może mieć więcej niż :max elementów.',
|
||||
],
|
||||
'mimes' => ':attribute musi być plikiem typu :values.',
|
||||
'min' => [
|
||||
'numeric' => ':attribute musi być nie mniejszy od :min.',
|
||||
'file' => ':attribute musi mieć przynajmniej :min kilobajtów.',
|
||||
'string' => ':attribute musi mieć przynajmniej :min znaków.',
|
||||
'array' => ':attribute musi mieć przynajmniej :min elementów.',
|
||||
],
|
||||
'not_in' => 'Zaznaczony :attribute jest nieprawidłowy.',
|
||||
'numeric' => ':attribute musi być liczbą.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'Format :attribute jest nieprawidłowy.',
|
||||
'required' => 'Pole :attribute jest wymagane.',
|
||||
'required_if' => 'Pole :attribute jest wymagane gdy :other jest :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'Pole :attribute jest wymagane gdy :values jest obecny.',
|
||||
'required_with_all' => 'Pole :attribute jest wymagane gdy :values jest obecny.',
|
||||
'required_without' => 'Pole :attribute jest wymagane gdy :values nie jest obecny.',
|
||||
'required_without_all' => 'Pole :attribute jest wymagane gdy żadne z :values nie są obecne.',
|
||||
'same' => 'Pole :attribute i :other muszą się zgadzać.',
|
||||
'size' => [
|
||||
'numeric' => ':attribute musi mieć :size.',
|
||||
'file' => ':attribute musi mieć :size kilobajtów.',
|
||||
'string' => ':attribute musi mieć :size znaków.',
|
||||
'array' => ':attribute musi zawierać :size elementów.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => ':attribute musi być prawidłową strefą czasową.',
|
||||
'unique' => 'Taki :attribute już występuje.',
|
||||
'url' => 'Format :attribute jest nieprawidłowy.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Attributes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used to swap attribute place-holders
|
||||
| with something more reader friendly such as E-Mail Address instead
|
||||
| of "email". This simply helps us make messages a little cleaner.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user