1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-09 20:52:56 +01:00

Merge pull request #549 from rafaelsisweb/master

New pt_BR text + fix
This commit is contained in:
Hillel Coren 2015-11-30 13:49:08 +02:00
commit 7109b30673
6 changed files with 76 additions and 21 deletions

View File

@ -52,7 +52,16 @@ class ClientController extends BaseController
'entityType' => ENTITY_CLIENT,
'title' => trans('texts.clients'),
'sortCol' => '4',
'columns' => Utils::trans(['checkbox', 'client', 'contact', 'email', 'date_created', 'last_login', 'balance', '']),
'columns' => Utils::trans([
'checkbox',
'client',
'contact',
'email',
'date_created',
'last_login',
'balance',
''
]),
));
}

View File

@ -37,7 +37,15 @@ class CreditController extends BaseController
'entityType' => ENTITY_CREDIT,
'title' => trans('texts.credits'),
'sortCol' => '4',
'columns' => Utils::trans(['checkbox', 'client', 'credit_amount', 'credit_balance', 'credit_date', 'private_notes', '']),
'columns' => Utils::trans([
'checkbox',
'client',
'credit_amount',
'credit_balance',
'credit_date',
'private_notes',
''
]),
));
}

View File

@ -46,7 +46,16 @@ class PaymentController extends BaseController
return View::make('list', array(
'entityType' => ENTITY_PAYMENT,
'title' => trans('texts.payments'),
'columns' => Utils::trans(['checkbox', 'invoice', 'client', 'transaction_reference', 'method', 'payment_amount', 'payment_date', '']),
'columns' => Utils::trans([
'checkbox',
'invoice',
'client',
'transaction_reference',
'method',
'payment_amount',
'payment_date',
''
]),
));
}

View File

@ -43,7 +43,15 @@ class TaskController extends BaseController
'entityType' => ENTITY_TASK,
'title' => trans('texts.tasks'),
'sortCol' => '2',
'columns' => Utils::trans(['checkbox', 'client', 'date', 'duration', 'description', 'status', '']),
'columns' => Utils::trans([
'checkbox',
'client',
'date',
'duration',
'description',
'status',
''
]),
));
}

View File

@ -0,0 +1,22 @@
<?php
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" => "Senhas deve conter pelo menos seis caracteres e combinar com a confirmação.",
"user" => "Usuário não encontrado.",
"token" => "Token inválido.",
"sent" => "Link para reset da senha enviado por email!",
"reset" => "Senha resetada!",
];

View File

@ -918,28 +918,27 @@ return array(
'user_unconfirmed' => 'Confirme sua conta para enviar e-mails',
'invalid_contact_email' => 'E-mail do contato inválido',
],
'import_freshbooks' => 'Import From FreshBooks',
'import_data' => 'Import Data',
'source' => 'Source',
'import_freshbooks' => 'Importar de FreshBooks',
'import_data' => 'Importar Dados',
'source' => 'Fonte',
'csv' => 'CSV',
'client_file' => 'Client File',
'invoice_file' => 'Invoice File',
'task_file' => 'Task File',
'no_mapper' => 'No valid mapping for file',
'invalid_csv_header' => 'Invalid CSV Header',
'client_file' => 'Arquivo de Clientes',
'invoice_file' => 'Arquivo de Faturas',
'task_file' => 'Arquivo de Tarefas',
'no_mapper' => 'Mapeamento inválido',
'invalid_csv_header' => 'CSV com cabeçalho inválido',
'client_portal' => 'Client Portal',
'client_portal' => 'Portal do Cliente',
'admin' => 'Admin',
'disabled' => 'Disabled',
'show_archived_users' => 'Show archived users',
'notes' => 'Notes',
'invoice_will_create' => 'client will be created',
'invoices_will_create' => 'invoices will be created',
'failed_to_import' => 'The following records failed to import',
'disabled' => 'Disabilitado',
'show_archived_users' => 'Mostrar usuários arquivados',
'notes' => 'Observações',
'invoice_will_create' => 'cliente será criado',
'invoices_will_create' => 'faturas serão criadas',
'failed_to_import' => 'A importação dos seguintes registros falhou',
'publishable_key' => 'Publishable Key',
'secret_key' => 'Secret Key',
'missing_publishable_key' => 'Set your Stripe publishable key for an improved checkout process',
);