mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
commit
7109b30673
@ -52,7 +52,16 @@ class ClientController extends BaseController
|
|||||||
'entityType' => ENTITY_CLIENT,
|
'entityType' => ENTITY_CLIENT,
|
||||||
'title' => trans('texts.clients'),
|
'title' => trans('texts.clients'),
|
||||||
'sortCol' => '4',
|
'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',
|
||||||
|
''
|
||||||
|
]),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,7 +37,15 @@ class CreditController extends BaseController
|
|||||||
'entityType' => ENTITY_CREDIT,
|
'entityType' => ENTITY_CREDIT,
|
||||||
'title' => trans('texts.credits'),
|
'title' => trans('texts.credits'),
|
||||||
'sortCol' => '4',
|
'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',
|
||||||
|
''
|
||||||
|
]),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -46,7 +46,16 @@ class PaymentController extends BaseController
|
|||||||
return View::make('list', array(
|
return View::make('list', array(
|
||||||
'entityType' => ENTITY_PAYMENT,
|
'entityType' => ENTITY_PAYMENT,
|
||||||
'title' => trans('texts.payments'),
|
'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',
|
||||||
|
''
|
||||||
|
]),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,7 +43,15 @@ class TaskController extends BaseController
|
|||||||
'entityType' => ENTITY_TASK,
|
'entityType' => ENTITY_TASK,
|
||||||
'title' => trans('texts.tasks'),
|
'title' => trans('texts.tasks'),
|
||||||
'sortCol' => '2',
|
'sortCol' => '2',
|
||||||
'columns' => Utils::trans(['checkbox', 'client', 'date', 'duration', 'description', 'status', '']),
|
'columns' => Utils::trans([
|
||||||
|
'checkbox',
|
||||||
|
'client',
|
||||||
|
'date',
|
||||||
|
'duration',
|
||||||
|
'description',
|
||||||
|
'status',
|
||||||
|
''
|
||||||
|
]),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
22
resources/lang/pt_BR/passwords.php
Normal file
22
resources/lang/pt_BR/passwords.php
Normal 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!",
|
||||||
|
|
||||||
|
];
|
@ -918,28 +918,27 @@ return array(
|
|||||||
'user_unconfirmed' => 'Confirme sua conta para enviar e-mails',
|
'user_unconfirmed' => 'Confirme sua conta para enviar e-mails',
|
||||||
'invalid_contact_email' => 'E-mail do contato inválido',
|
'invalid_contact_email' => 'E-mail do contato inválido',
|
||||||
],
|
],
|
||||||
|
|
||||||
'import_freshbooks' => 'Import From FreshBooks',
|
'import_freshbooks' => 'Importar de FreshBooks',
|
||||||
'import_data' => 'Import Data',
|
'import_data' => 'Importar Dados',
|
||||||
'source' => 'Source',
|
'source' => 'Fonte',
|
||||||
'csv' => 'CSV',
|
'csv' => 'CSV',
|
||||||
'client_file' => 'Client File',
|
'client_file' => 'Arquivo de Clientes',
|
||||||
'invoice_file' => 'Invoice File',
|
'invoice_file' => 'Arquivo de Faturas',
|
||||||
'task_file' => 'Task File',
|
'task_file' => 'Arquivo de Tarefas',
|
||||||
'no_mapper' => 'No valid mapping for file',
|
'no_mapper' => 'Mapeamento inválido',
|
||||||
'invalid_csv_header' => 'Invalid CSV Header',
|
'invalid_csv_header' => 'CSV com cabeçalho inválido',
|
||||||
|
|
||||||
'client_portal' => 'Client Portal',
|
'client_portal' => 'Portal do Cliente',
|
||||||
'admin' => 'Admin',
|
'admin' => 'Admin',
|
||||||
'disabled' => 'Disabled',
|
'disabled' => 'Disabilitado',
|
||||||
'show_archived_users' => 'Show archived users',
|
'show_archived_users' => 'Mostrar usuários arquivados',
|
||||||
'notes' => 'Notes',
|
'notes' => 'Observações',
|
||||||
'invoice_will_create' => 'client will be created',
|
'invoice_will_create' => 'cliente será criado',
|
||||||
'invoices_will_create' => 'invoices will be created',
|
'invoices_will_create' => 'faturas serão criadas',
|
||||||
'failed_to_import' => 'The following records failed to import',
|
'failed_to_import' => 'A importação dos seguintes registros falhou',
|
||||||
|
|
||||||
'publishable_key' => 'Publishable Key',
|
'publishable_key' => 'Publishable Key',
|
||||||
'secret_key' => 'Secret Key',
|
'secret_key' => 'Secret Key',
|
||||||
'missing_publishable_key' => 'Set your Stripe publishable key for an improved checkout process',
|
'missing_publishable_key' => 'Set your Stripe publishable key for an improved checkout process',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user