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/pt-pt/validation.php
Normal file
99
modules/system/lang/pt-pt/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 deve ser aceito.',
|
||||
'active_url' => ':attribute não é uma URL válida.',
|
||||
'after' => ':attribute deve ser uma data após :date.',
|
||||
'alpha' => ':attribute só pode conter letras.',
|
||||
'alpha_dash' => ':attribute só pode conter letras, números e traços.',
|
||||
'alpha_num' => ':attribute só pode conter letras e números.',
|
||||
'array' => ':attribute deve ser uma matriz.',
|
||||
'before' => ':attribute deve ser uma data antes :date.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute deve situar-se entre :min e :max.',
|
||||
'file' => ':attribute deve ter entre :min e :max kilobytes.',
|
||||
'string' => ':attribute deve ter entre :min e :max caracteres.',
|
||||
'array' => ':attribute deve ter entre :min e :max itens.',
|
||||
],
|
||||
'confirmed' => 'A confirmação de :attribute não corresponde.',
|
||||
'date' => ':attribute não é uma data válida.',
|
||||
'date_format' => ':attribute não coincide com o formato :format.',
|
||||
'different' => ':attribute e :other devem ser diferentes.',
|
||||
'digits' => ':attribute deve ser :digits dígitos.',
|
||||
'digits_between' => ':attribute deve ter entre :min e :max dígitos.',
|
||||
'email' => 'Formato de :attribute é inválido.',
|
||||
'exists' => ':attribute selecionado é inválido.',
|
||||
'image' => ':attribute deve ser uma imagem.',
|
||||
'in' => ':attribute selecionado é inválido.',
|
||||
'integer' => ':attribute deve ser um número inteiro.',
|
||||
'ip' => ':attribute deve ser um endereço IP válido.',
|
||||
'max' => [
|
||||
'numeric' => ':attribute não pode ser maior do que :max.',
|
||||
'file' => ':attribute não pode ser maior do que :max kilobytes.',
|
||||
'string' => ':attribute não pode ser maior do que :max caracteres.',
|
||||
'array' => ':attribute não pode ter mais que :max itens.',
|
||||
],
|
||||
'mimes' => ':attribute deve ser um arquivo do tipo: :values.',
|
||||
"extensions" => "O :attribute deve conter uma extensão: :values.",
|
||||
'min' => [
|
||||
'numeric' => ':attribute deve ser no mínimo :min.',
|
||||
'file' => ':attribute deve ter pelo menos :min kilobytes.',
|
||||
'string' => ':attribute deve ter pelo menos :min caracteres.',
|
||||
'array' => ':attribute deve ter pelo menos :min itens.',
|
||||
],
|
||||
'not_in' => ':attribute selecionado é inválido.',
|
||||
'numeric' => ':attribute deve ser um número.',
|
||||
'regex' => 'Formato de :attribute é inválido.',
|
||||
'required' => 'O campo :attribute é obrigatório.',
|
||||
'required_if' => 'O campo :attribute é obrigatório quando :other é :value.',
|
||||
'required_with' => 'O campo :attribute é obrigatório quando :values está presente.',
|
||||
'required_without' => 'O campo :attribute é obrigatório quando :values não está presente.',
|
||||
'same' => 'O campo :attribute e :other devem corresponder.',
|
||||
'size' => [
|
||||
'numeric' => ':attribute deve ser :size.',
|
||||
'file' => ':attribute deve ser :size kilobytes.',
|
||||
'string' => ':attribute deve ter :size caracteres.',
|
||||
'array' => ':attribute deve conter :size itens.',
|
||||
],
|
||||
'unique' => ':attribute já está em utilização.',
|
||||
'url' => 'Formato de :attribute é inválido.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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