Language-update-patch
# update french translation # Added Portuguese (Brazil) language translation
This commit is contained in:
File diff suppressed because it is too large
Load Diff
1391
resources/lang/pt/lang.php
Normal file
1391
resources/lang/pt/lang.php
Normal file
File diff suppressed because it is too large
Load Diff
31
resources/lang/pt/pagination.php
Normal file
31
resources/lang/pt/pagination.php
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
|-------------------------------------------------------------------------------------
|
||||||
|
| Dutch translation [for version 1.0.8.0]
|
||||||
|
|-------------------------------------------------------------------------------------
|
||||||
|
| Author : Marcelo A. Fernandes
|
||||||
|
| Email : marcelo.fernandes@corplantechnologia.com.br
|
||||||
|
| Last translated : 30-11-2016
|
||||||
|
|********************************************************************************
|
||||||
|
| Details of new words added for translation
|
||||||
|
|--------------------------------------------------------------------------------
|
||||||
|
| Added by :
|
||||||
|
| translated : [NO/YES]
|
||||||
|
| Added on :
|
||||||
|
*/
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| 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 »',
|
||||||
|
];
|
35
resources/lang/pt/passwords.php
Normal file
35
resources/lang/pt/passwords.php
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
|-------------------------------------------------------------------------------------
|
||||||
|
| Dutch translation [for version 1.0.8.0]
|
||||||
|
|-------------------------------------------------------------------------------------
|
||||||
|
| Author : Marcelo A. Fernandes
|
||||||
|
| Email : marcelo.fernandes@corplantechnologia.com.br
|
||||||
|
| Last translated : 30-11-2016
|
||||||
|
|********************************************************************************
|
||||||
|
| Details of new words added for translation
|
||||||
|
|--------------------------------------------------------------------------------
|
||||||
|
| Added by :
|
||||||
|
| translated : [NO/YES]
|
||||||
|
| Added on :
|
||||||
|
*/
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| 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 pelo menos seis caracteres e serem idênticas.',
|
||||||
|
'user' => 'Nenhum usuário foi localizado com esse endereço de e-mail.',
|
||||||
|
'token' => 'Chave de redefinição de senha é inválida.',
|
||||||
|
'sent' => 'O link para redefinição de senha será enviado por e-mail!',
|
||||||
|
'reset' => 'Sua senha foi redefinida!',
|
||||||
|
];
|
116
resources/lang/pt/validation.php
Normal file
116
resources/lang/pt/validation.php
Normal file
@@ -0,0 +1,116 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
|-------------------------------------------------------------------------------------
|
||||||
|
| Dutch translation [for version 1.0.8.0]
|
||||||
|
|-------------------------------------------------------------------------------------
|
||||||
|
| Author : Marcelo A. Fernandes
|
||||||
|
| Email : marcelo.fernandes@corplantechnologia.com.br
|
||||||
|
| Last translated : 30-11-2016
|
||||||
|
|********************************************************************************
|
||||||
|
| Details of new words added for translation
|
||||||
|
|--------------------------------------------------------------------------------
|
||||||
|
| Added by :
|
||||||
|
| translated : [NO/YES]
|
||||||
|
| Added on :
|
||||||
|
*/
|
||||||
|
|
||||||
|
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
|
||||||
|
| as the size rules. Feel free to tweak each of these messages here.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'accepted' => 'A opção deverá ser aceita.',
|
||||||
|
'active_url' => 'A informação não é uma URL válida',
|
||||||
|
'after' => 'A informação deve ser uma data superior a :date.',
|
||||||
|
'alpha' => 'A informação só pode conter letras.',
|
||||||
|
'alpha_dash' => 'A informação só pode conter letras, números e traços',
|
||||||
|
'alpha_num' => 'A informação só pode conter letras e números.',
|
||||||
|
'array' => 'A informação deverá ser em ordem.',
|
||||||
|
'before' => 'A informação deverá ser uma data inferior a :date.',
|
||||||
|
'between' => [
|
||||||
|
'numeric' => 'A informação deverá estar entre :min e :max.',
|
||||||
|
'string' => 'A informação deverá estar entre :min e :max characters.',
|
||||||
|
'file' => 'A informação deverá estar entre :min e :max kilobytes.',
|
||||||
|
'array' => 'A informação deverá estar entre :min e :max items.',
|
||||||
|
],
|
||||||
|
'boolean' => 'A informação deverá ser verdadeira ou falsa.',
|
||||||
|
'confirmed' => 'A informação não está correta.',
|
||||||
|
'date' => 'A informação não é uma data válida.',
|
||||||
|
'date_format' => 'A informação não corresponde ao formato :format.',
|
||||||
|
'different' => 'A informação :other deverá ser diferente.',
|
||||||
|
'digits' => 'A informação deve ser :digits dígitos.',
|
||||||
|
'digits_between' => 'A informação deve estar entre :min e :max dígitos.',
|
||||||
|
'email' => 'A informação deverá ser um e-mail válido.',
|
||||||
|
'filled' => 'A informação é inválida.',
|
||||||
|
'exists' => 'A informação :attribute é inválida.',
|
||||||
|
'image' => 'O arquivo deve ser uma imagem.',
|
||||||
|
'in' => 'A informação selecionada :attribute é inválida.',
|
||||||
|
'integer' => 'O informação deve ser um número inteiro.',
|
||||||
|
'ip' => 'O número deve ser um endereço de IP válido.',
|
||||||
|
'max' => [
|
||||||
|
'numeric' => 'O valor não pode ser maior a :max.',
|
||||||
|
'file' => 'O arquivo não pode ser maior a :max kilobytes.',
|
||||||
|
'string' => 'A informação não pode ser maior a :max caracteres.',
|
||||||
|
'array' => 'A informação não pode ter mais do que :max itens.',
|
||||||
|
],
|
||||||
|
'mimes' => 'O :attribute deve ser um arquivo do tipo: :values.',
|
||||||
|
'min' => [
|
||||||
|
'numeric' => 'O valor deve ser de pelo menos :min.',
|
||||||
|
'file' => 'O arquivo deve ser de pelo menos :min kilobytes.',
|
||||||
|
'string' => 'A informação deve ser de pelo menos :min caracteres.',
|
||||||
|
'array' => 'A informação deve ter pelo menos :min itens.',
|
||||||
|
],
|
||||||
|
'not_in' => 'A informação selecionada é inválida.',
|
||||||
|
'numeric' => 'A informação deverá ser um número.',
|
||||||
|
'regex' => 'O formato está inválido.',
|
||||||
|
'required' => 'O campo é obrigatório.',
|
||||||
|
'required_if' => 'O campo é obrigatório quando :other é :value.',
|
||||||
|
'required_with' => 'O campo é obrigatório quando for informado os dados.',
|
||||||
|
'required_with_all' => 'O campo é obrigatório quando os valores estiverem presentes.',
|
||||||
|
'required_without' => 'O campo é obrigatório quando os valores não estiverem presentes',
|
||||||
|
'required_without_all' => 'O campo é obrigatório quando nenhum dos valores estiver presentes',
|
||||||
|
'same' => 'Os campos deverão estar iguais.',
|
||||||
|
'size' => [
|
||||||
|
'numeric' => 'O valor deve ser :size.',
|
||||||
|
'file' => 'O arquivo deve ser :size kilobytes.',
|
||||||
|
'string' => 'O campo :attribute deve ser :size caracteres.',
|
||||||
|
'array' => 'O campo deve conter :size itens.',
|
||||||
|
],
|
||||||
|
'unique' => 'O campo já está preenchido.',
|
||||||
|
'url' => 'Formato inválido.',
|
||||||
|
'timezone' => 'O campo deve ser um fuso horário vá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' => [
|
||||||
|
'attribute-name' => [
|
||||||
|
'rule-name' => 'custom-message',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| 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