snipe-it/resources/lang/pt-PT/validation.php
snipe 16fb2213b5 Updated language strings
Signed-off-by: snipe <snipe@snipe.net>
2022-01-28 12:40:03 -08:00

139 lines
7.6 KiB
PHP

<?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' => 'O :attribute tem que ser aceite.',
'active_url' => 'O :attribute não é um URL válido.',
'after' => 'A :attribute tem que ser superior a :date.',
'after_or_equal' => 'O atributo: deve ser uma data após ou igual a: data.',
'alpha' => 'O :attribute só pode conter letras.',
'alpha_dash' => 'O :attribute só pode conter letras, números e traços.',
'alpha_num' => 'O :attribute só pode conter letras e números.',
'array' => 'O atributo: deve ser uma matriz.',
'before' => 'A :attribute tem que ser anterior a :date.',
'before_or_equal' => 'O atributo: deve ser uma data anterior ou igual a: data.',
'between' => [
'numeric' => 'O :attribute deve estar entre :min e :max.',
'file' => 'O :attribute deve estar entre :min e :max kilobytes.',
'string' => 'O :attribute deve estar entre :min e :max caracteres.',
'array' => 'O atributo deve ter entre: min e: itens máximos.',
],
'boolean' => 'O campo: atributo deve ser verdadeiro ou falso.',
'confirmed' => 'A confirmação da :attribute não coincide.',
'date' => 'A :attribute não é uma data válida.',
'date_format' => ':attribute não corresponde ao formato :format.',
'different' => ':attribute e :other têm que ser diferentes.',
'digits' => ':attribute de contem :digits dígitos.',
'digits_between' => 'O :attribute deve estar entre :min e :max dígitos.',
'dimensions' => 'O atributo: tem dimensões de imagem inválidas.',
'distinct' => 'O campo: atributo tem um valor duplicado.',
'email' => 'O formato do :attribute é inválido.',
'exists' => 'O :attribute é inválido.',
'file' => 'O atributo: deve ser um arquivo.',
'filled' => 'O campo: atributo deve ter um valor.',
'image' => 'O :attribute tem que ser uma imagem.',
'in' => 'O :attribute selecionado é inválido.',
'in_array' => 'O campo: atributo não existe em: outro.',
'integer' => 'O :attribute tem que ser um inteiro.',
'ip' => 'O :attribute tem que ser um IP válido.',
'ipv4' => 'O atributo: deve ser um endereço IPv4 válido.',
'ipv6' => 'O atributo deve ser um endereço IPv6 válido.',
'json' => 'O atributo: deve ser uma string JSON válida.',
'max' => [
'numeric' => 'O :attribute não pode ser maior do que :max.',
'file' => 'O :attribute não pode ter mais do que :max kilobytes.',
'string' => 'O :attribute não pode tem mais do que :max caracteres.',
'array' => 'O atributo: pode não ter mais do que: itens máximos.',
],
'mimes' => 'O :attribute só pode contem os seguintes formatos: :values.',
'mimetypes' => 'O: atributo deve ser um arquivo de tipo:: valores.',
'min' => [
'numeric' => ':attribute deve ter pelos menos :min.',
'file' => ':attribute deve ter pelos menos :min kilobytes.',
'string' => 'O :attribute deve conter pelos menos :min caracteres.',
'array' => 'O atributo deve ter pelo menos: itens mínimos.',
],
'starts_with' => 'O :attribute deve começar com um dos seguintes: :values.',
'not_in' => 'O :attribute selecionado é inválido.',
'numeric' => ':attribute tem que ser um número.',
'present' => 'O campo: atributo deve estar presente.',
'valid_regex' => 'Este não é um código regex válido.',
'regex' => 'O formato do :attribute é inválido.',
'required' => ':attribute é obrigatório.',
'required_if' => 'O :attribute é obrigatório quando :other é :value.',
'required_unless' => 'O campo: atributo é necessário a menos que: outro esteja em: valores.',
'required_with' => 'O :attribute é obrigatório quando :values existem.',
'required_with_all' => 'O campo: atributo é obrigatório quando: os valores estão presentes.',
'required_without' => 'O :attribute é obrigatório quando :values não existem.',
'required_without_all' => 'O campo: atributo é obrigatório quando nenhum de: valores estão presentes.',
'same' => ':attribute e :other devem coincidir.',
'size' => [
'numeric' => 'O :attribute deve ser maior que :size.',
'file' => 'O :attribute deve ter :size kilobytes.',
'string' => 'O :attribute deve conter :size caracteres.',
'array' => 'O atributo: deve conter: itens de tamanho.',
],
'string' => 'O atributo deve ser uma string.',
'timezone' => 'O atributo: deve ser uma zona válida.',
'unique' => 'Este :attribute já existe.',
'uploaded' => 'O atributo: não foi possível carregar.',
'url' => 'O formato do :attribute é inválido.',
'unique_undeleted' => 'O :atribute deve ser único.',
'non_circular' => 'O :attribute não deve criar uma referência circular.',
/*
|--------------------------------------------------------------------------
| 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 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' => [
'alpha_space' => 'O campo: atributo contém um caractere que não é permitido.',
'email_array' => 'Um ou mais endereços de e-mail são inválidos.',
'hashed_pass' => 'Sua senha atual está incorreta',
'dumbpwd' => 'Essa senha é muito comum.',
'statuslabel_type' => 'Você deve selecionar um tipo de etiqueta de status válido',
],
/*
|--------------------------------------------------------------------------
| 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' => [],
];