Created
April 3, 2014 11:14
-
-
Save cagartner/bece64f4850057f6b3c3 to your computer and use it in GitHub Desktop.
Traduções padrão do Laravel para pt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| return array( | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | Pagination Language Lines | |
| |-------------------------------------------------------------------------- | |
| | | |
| | The following language lines are used by the paginator library to build | |
| | the simple pagination links. You are free to change them to anything | |
| | you want to customize your views to better match your application. | |
| | | |
| */ | |
| 'previous' => '« Anterior', | |
| 'next' => 'Próximo »', | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| return array( | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | Password Reminder Language Lines | |
| |-------------------------------------------------------------------------- | |
| | | |
| | The following language lines are the default lines which match reasons | |
| | that are given by the password broker for a password update attempt | |
| | has failed, such as for an invalid token or invalid new password. | |
| | | |
| */ | |
| "password" => "As senhas devem ter seis caracteres e corresponder a confirmação", | |
| "user" => "Nós não podemos encontrar um usuário com esse endereço de e-mail.", | |
| "token" => "Esse token de redefinição de senha é inválido.", | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| return array( | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | 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 deve ser aceite.", | |
| "active_url" => "O :attribute não é uma URL válida.", | |
| "after" => "O :attribute deve ser uma data após :date.", | |
| "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.", | |
| "before" => "O :attribute deve ser uma data anterior à :date.", | |
| "between" => array( | |
| "numeric" => "O :attribute deve estar entre :min - :max.", | |
| "file" => "O :attribute deve estar entre :min - :max kilobytes.", | |
| "string" => "O campo :attribute deve estar entre :min - :max caracteres.", | |
| ), | |
| "confirmed" => "O :attribute confirmação não coincide.", | |
| "date" => "O :attribute não é uma data válida.", | |
| "date_format" => "O :attribute não corresponde ao formato :format.", | |
| "different" => "O :attribute e :other deve ser diferente.", | |
| "digits" => "O :attribute deve ter :digits dígitos.", | |
| "digits_between" => "O :attribute deve ter entre :min e :max dígitos.", | |
| "email" => "O :attribute não é um e-mail válido.", | |
| "exists" => "O :attribute selecionado é inválido.", | |
| "image" => "O :attribute deve ser uma imagem.", | |
| "in" => "O :attribute selecionado é inválido.", | |
| "integer" => "O :attribute deve ser um inteiro.", | |
| "ip" => "O :attribute deve ser um endereço IP válido.", | |
| "max" => array( | |
| "numeric" => "O :attribute deve ser inferior a :max.", | |
| "file" => "O :attribute deve ser inferior a :max kilobytes.", | |
| "string" => "O campo :attribute deve ser inferior a :max caracteres.", | |
| ), | |
| "mimes" => "O :attribute deve ser um arquivo do tipo: :values.", | |
| "min" => array( | |
| "numeric" => "O :attribute deve conter pelo menos :min.", | |
| "file" => "O :attribute deve conter pelo menos :min kilobytes.", | |
| "string" => "O campo :attribute deve conter pelo menos :min caracteres.", | |
| ), | |
| "not_in" => "O :attribute selecionado é inválido.", | |
| "numeric" => "O :attribute deve ser um número.", | |
| "regex" => "O :attribute não é válido.", | |
| "required" => "O campo :attribute deve ser preenchido.", | |
| "required_if" => "O campo :attribute deve ser preenchido quando :other é :value.", | |
| "required_with" => "O campo :attribute deve ser preenchido quando :values está presente.", | |
| "required_without" => "O campo :attribute deve ser preenchido quando :values não está presente.", | |
| "same" => "O :attribute e :other devem ser iguais.", | |
| "size" => array( | |
| "numeric" => "O :attribute deve ser :size.", | |
| "file" => "O :attribute deve ter :size kilobyte.", | |
| "string" => "O campo :attribute deve ter :size caracteres.", | |
| ), | |
| "unique" => "Este :attribute já existe.", | |
| "url" => "O formato :attribute é inválido.", | |
| "minimum_age" => "Você precisar ter no mínimo :minimum_age de idade.", | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | 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' => array(), | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | 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' => array( | |
| 'username' => 'Nome do usuário', | |
| ), | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment