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:
99
modules/system/lang/nb-no/validation.php
Normal file
99
modules/system/lang/nb-no/validation.php
Normal file
@@ -0,0 +1,99 @@
|
||||
<?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 må aksepteres.",
|
||||
"active_url" => ":attribute er ikke en gyldig URL.",
|
||||
"after" => ":attribute må være en dato etter :date.",
|
||||
"alpha" => ":attribute kan kun inneholde bokstaver.",
|
||||
"alpha_dash" => ":attribute kan kun inneholde bokstaver, tall og bindestreker.",
|
||||
"alpha_num" => ":attribute kan kun inneholde bokstaver og tall.",
|
||||
"array" => ":attribute må være et array.",
|
||||
"before" => ":attribute må være en dato før :date.",
|
||||
"between" => [
|
||||
"numeric" => ":attribute må være mellom :min - :max.",
|
||||
"file" => ":attribute må være mellom :min - :max kilobytes.",
|
||||
"string" => ":attribute må være mellom :min - :max tegn.",
|
||||
"array" => ":attribute må ha mellom :min - :max elementer.",
|
||||
],
|
||||
"confirmed" => ":attribute bekreftelse samsvarer ikke.",
|
||||
"date" => ":attribute er ikke en gyldig dato.",
|
||||
"date_format" => ":attribute samsvarer ikke med formatet :format.",
|
||||
"different" => ":attribute og :other må være forskjellig.",
|
||||
"digits" => ":attribute må være :digits tall.",
|
||||
"digits_between" => ":attribute må være mellom :min og :max tall.",
|
||||
"email" => ":attribute format ugyldig.",
|
||||
"exists" => "Valgt :attribute er ugyldig.",
|
||||
"image" => ":attribute må være et bilde.",
|
||||
"in" => "Valgt :attribute er ugyldig.",
|
||||
"integer" => ":attribute må være et heltall.",
|
||||
"ip" => ":attribute må være en gyldig IP-adresse.",
|
||||
"max" => [
|
||||
"numeric" => ":attribute kan ikke være større enn :max.",
|
||||
"file" => ":attribute kan ikke være større enn :max kilobytes.",
|
||||
"string" => ":attribute kan ikke inneholde mer enn :max tegn.",
|
||||
"array" => ":attribute kan ikke ha mer enn :max elementer.",
|
||||
],
|
||||
"mimes" => ":attribute må være av filtype: :values.",
|
||||
"extensions" => ":attribute må ha filendelse: :values.",
|
||||
"min" => [
|
||||
"numeric" => ":attribute må være minst :min.",
|
||||
"file" => ":attribute må være minst :min kilobytes.",
|
||||
"string" => ":attribute må være minst :min tegn.",
|
||||
"array" => ":attribute må ha minst :min elementer.",
|
||||
],
|
||||
"not_in" => "Valgt :attribute er ugyldig.",
|
||||
"numeric" => ":attribute må være et tall.",
|
||||
"regex" => ":attribute format er ugyldig.",
|
||||
"required" => ":attribute felt kreves.",
|
||||
"required_if" => ":attribute felt kreves når :other er :value.",
|
||||
"required_with" => ":attribute felt kreves når :values er til stede.",
|
||||
"required_without" => ":attribute felt kreves når :values ikke er til stede.",
|
||||
"same" => ":attribute og :other må samsvare.",
|
||||
"size" => [
|
||||
"numeric" => ":attribute må være :size.",
|
||||
"file" => ":attribute må være :size kilobytes.",
|
||||
"string" => ":attribute må være :size tegn.",
|
||||
"array" => " :attribute må inneholde :size elementer.",
|
||||
],
|
||||
"unique" => ":attribute er allerede i bruk.",
|
||||
"url" => ":attribute format er ugyldig.",
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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