]> BookStack Code Mirror - bookstack/blob - resources/lang/pt_BR/validation.php
Fix pt_BR translations
[bookstack] / resources / lang / pt_BR / validation.php
1 <?php
2 /**
3  * Validation Lines
4  * The following language lines contain the default error messages used by
5  * the validator class. Some of these rules have multiple versions such
6  * as the size rules. Feel free to tweak each of these messages here.
7  */
8 return [
9
10     // Standard laravel validation lines
11     'accepted'             => 'O :attribute deve ser aceito.',
12     'active_url'           => 'O :attribute não é uma URL válida.',
13     'after'                => 'O :attribute deve ser uma data posterior à data :date.',
14     'alpha'                => 'O :attribute deve conter apenas letras.',
15     'alpha_dash'           => 'O :attribute deve conter apenas letras, números e traços.',
16     'alpha_num'            => 'O :attribute deve conter apenas letras e números.',
17     'array'                => 'O :attribute deve ser uma array.',
18     'before'               => 'O :attribute deve ser uma data anterior à data :date.',
19     'between'              => [
20         'numeric' => 'O :attribute deve ter tamanho entre :min e :max.',
21         'file'    => 'O :attribute deve ter entre :min e :max kilobytes.',
22         'string'  => 'O :attribute deve ter entre :min e :max caracteres.',
23         'array'   => 'O :attribute deve ter entre :min e :max itens.',
24     ],
25     'boolean'              => 'O campo :attribute deve ser verdadeiro ou falso.',
26     'confirmed'            => 'O campo :attribute de confirmação não é igual.',
27     'date'                 => 'O campo :attribute não está em um formato de data válido.',
28     'date_format'          => 'O campo :attribute não tem a formatação :format.',
29     'different'            => 'O campo :attribute e o campo :other devem ser diferentes.',
30     'digits'               => 'O campo :attribute deve ter :digits dígitos.',
31     'digits_between'       => 'O campo :attribute deve ter entre :min e :max dígitos.',
32     'email'                => 'O campo :attribute deve ser um e-mail válido.',
33     'filled'               => 'O campo :attribute é requerido.',
34     'exists'               => 'O atributo :attribute selecionado não é válido.',
35     'image'                => 'O campo :attribute deve ser uma imagem.',
36     'image_extension'      => 'O campo :attribute deve ter uma extensão de imagem válida & suportada.',
37     'in'                   => 'The selected :attribute is invalid.',
38     'integer'              => 'O campo :attribute deve ser um número inteiro.',
39     'ip'                   => 'O campo :attribute deve ser um IP válido.',
40     'max'                  => [
41         'numeric' => 'O valor para o campo :attribute não deve ser maior que :max.',
42         'file'    => 'O valor para o campo :attribute não deve ter tamanho maior que :max kilobytes.',
43         'string'  => 'O valor para o campo :attribute não deve ter mais que :max caracteres.',
44         'array'   => 'O valor para o campo :attribute não deve ter mais que :max itens.',
45     ],
46     'mimes'                => 'O :attribute deve ser do tipo type: :values.',
47     'min'                  => [
48         'numeric' => 'O valor para o campo :attribute não deve ser menor que :min.',
49         'file'    => 'O valor para o campo :attribute não deve ter tamanho menor que :min kilobytes.',
50         'string'  => 'O valor para o campo :attribute não deve ter menos que :min caracteres.',
51         'array'   => 'O valor para o campo :attribute não deve ter menos que :min itens.',
52     ],
53     'no_double_extension'  => 'O campo :attribute deve ter apenas uma extensão de arquivo.',
54     'not_in'               => 'O campo selecionado :attribute é inválido.',
55     'numeric'              => 'O campo :attribute deve ser um número.',
56     'regex'                => 'O formato do campo :attribute é inválido.',
57     'required'             => 'O campo :attribute é requerido.',
58     'required_if'          => 'O campo :attribute é requerido quando o campo :other tem valor :value.',
59     'required_with'        => 'O campo :attribute é requerido quando os valores :values estiverem presentes.',
60     'required_with_all'    => 'O campo :attribute é requerido quando os valores :values estiverem presentes.',
61     'required_without'     => 'O campo :attribute é requerido quando os valores :values não estiverem presentes.',
62     'required_without_all' => 'O campo :attribute é requerido quando nenhum dos valores :values estiverem presentes.',
63     'same'                 => 'O campo :attribute e o campo :other devem ser iguais.',
64     'size'                 => [
65         'numeric' => 'O tamanho do campo :attribute deve ser :size.',
66         'file'    => 'O tamanho do arquivo :attribute deve ser de :size kilobytes.',
67         'string'  => 'O tamanho do campo :attribute deve ser de :size caracteres.',
68         'array'   => 'O campo :attribute deve conter :size itens.',
69     ],
70     'string'               => 'O campo :attribute deve ser uma string.',
71     'timezone'             => 'O campo :attribute deve conter uma timezone válida.',
72     'unique'               => 'Já existe um campo/dado de nome :attribute.',
73     'url'                  => 'O formato da URL :attribute é inválido.',
74     'uploaded'             => 'O arquivo não pôde ser carregado. O servidor pode não aceitar arquivos deste tamanho.',
75
76     // Custom validation lines
77     'custom' => [
78         'password-confirm' => [
79             'required_with' => 'Confirmação de senha requerida',
80         ],
81     ],
82
83     // Custom validation attributes
84     'attributes' => [],
85 ];