Merge branch 'master' of github.com:akaunting/akaunting
This commit is contained in:
commit
ebda456f21
@ -475,14 +475,14 @@ class Bills extends Controller
|
||||
|
||||
$excel->sheet('invoices', function($sheet) use ($bills) {
|
||||
$sheet->fromModel($bills->makeHidden([
|
||||
'company_id', 'parent_id', 'created_at', 'updated_at', 'deleted_at', 'attachment', 'discount', 'items', 'payments', 'totals', 'media'
|
||||
'company_id', 'parent_id', 'created_at', 'updated_at', 'deleted_at', 'attachment', 'discount', 'items', 'histories', 'payments', 'totals', 'media'
|
||||
]));
|
||||
});
|
||||
|
||||
$tables = ['items', 'histories', 'payments', 'totals'];
|
||||
foreach ($tables as $table) {
|
||||
$excel->sheet('bill_' . $table, function($sheet) use ($bills, $table) {
|
||||
$hidden_fields = ['id', 'company_id', 'created_at', 'updated_at', 'deleted_at'];
|
||||
$hidden_fields = ['id', 'company_id', 'created_at', 'updated_at', 'deleted_at', 'title'];
|
||||
|
||||
$i = 1;
|
||||
foreach ($bills as $bill) {
|
||||
|
@ -496,14 +496,14 @@ class Invoices extends Controller
|
||||
|
||||
$excel->sheet('invoices', function($sheet) use ($invoices) {
|
||||
$sheet->fromModel($invoices->makeHidden([
|
||||
'company_id', 'parent_id', 'created_at', 'updated_at', 'deleted_at', 'attachment', 'discount', 'items', 'payments', 'totals', 'media'
|
||||
'company_id', 'parent_id', 'created_at', 'updated_at', 'deleted_at', 'attachment', 'discount', 'items', 'histories', 'payments', 'totals', 'media'
|
||||
]));
|
||||
});
|
||||
|
||||
$tables = ['items', 'histories', 'payments', 'totals'];
|
||||
foreach ($tables as $table) {
|
||||
$excel->sheet('invoice_' . $table, function($sheet) use ($invoices, $table) {
|
||||
$hidden_fields = ['id', 'company_id', 'created_at', 'updated_at', 'deleted_at'];
|
||||
$hidden_fields = ['id', 'company_id', 'created_at', 'updated_at', 'deleted_at', 'title'];
|
||||
|
||||
$i = 1;
|
||||
foreach ($invoices as $invoice) {
|
||||
|
@ -3,15 +3,15 @@
|
||||
return [
|
||||
|
||||
'profile' => 'Perfil',
|
||||
'logout' => 'Cerrar sesión',
|
||||
'login' => 'Iniciar sesión',
|
||||
'logout' => 'Salir',
|
||||
'login' => 'Entrar',
|
||||
'login_to' => 'Inicia sesión para comenzar',
|
||||
'remember_me' => 'Recordarme',
|
||||
'forgot_password' => 'Olvidé mi contraseña',
|
||||
'reset_password' => 'Restablecer Contraseña',
|
||||
'enter_email' => 'Introduce tu Dirección de Correo Electrónico',
|
||||
'current_email' => 'Dirección de Correo electrónico Actual',
|
||||
'reset' => 'Resetear',
|
||||
'reset' => 'Restablecer',
|
||||
'never' => 'nunca',
|
||||
|
||||
'password' => [
|
||||
@ -23,7 +23,7 @@ return [
|
||||
|
||||
'error' => [
|
||||
'self_delete' => 'Error: ¡No puede eliminarse usted mismo!',
|
||||
'no_company' => 'Error: No company assigned to your account. Please, contact the system administrator.',
|
||||
'no_company' => 'Error: No se asigno una compañía para tu cuenta. Por favor, contacte al administrador del sistema.',
|
||||
],
|
||||
|
||||
'failed' => 'Estas credenciales no coinciden con nuestros registros.',
|
||||
@ -31,9 +31,9 @@ return [
|
||||
'throttle' => 'Demasiados intentos fallidos de inicio de sesión. Por favor, vuelva a intentarlo después de :seconds segundos.',
|
||||
|
||||
'notification' => [
|
||||
'message_1' => 'You are receiving this email because we received a password reset request for your account.',
|
||||
'message_2' => 'If you did not request a password reset, no further action is required.',
|
||||
'button' => 'Reset Password',
|
||||
'message_1' => 'Has recibido este correo electrónico porque se solicito un restablecimiento de contraseña para tu cuenta.',
|
||||
'message_2' => 'Si no solicitaste que se restablezca tu contraseña, no es necesario realizar ninguna acción',
|
||||
'button' => 'Restablecer Contraseña',
|
||||
],
|
||||
|
||||
];
|
||||
|
@ -100,9 +100,9 @@ return [
|
||||
'overdue' => 'Vencida',
|
||||
'partially' => 'Parcial',
|
||||
'partially_paid' => 'Pagada Parcialmente',
|
||||
'export' => 'Export',
|
||||
'enable' => 'Enable',
|
||||
'disable' => 'Disable',
|
||||
'export' => 'Exportar',
|
||||
'enable' => 'Activar',
|
||||
'disable' => 'Desactivar',
|
||||
|
||||
'title' => [
|
||||
'new' => 'Nuevo :type',
|
||||
|
@ -4,6 +4,6 @@ return [
|
||||
|
||||
'import' => 'Importar',
|
||||
'title' => 'Importar :type',
|
||||
'message' => 'Allowed file types: XLS, XLSX. Please, <a target="_blank" href=":link"><strong>download</strong></a> the sample file.',
|
||||
'message' => 'Tipos de archivos permitidos: XLS, XLSX. Por favor, <a target="_blank" href=":link"><strong>descarga</strong></a> el archivo de ejemplo.',
|
||||
|
||||
];
|
||||
|
@ -8,8 +8,8 @@ return [
|
||||
'deleted' => '¡:type eliminado!',
|
||||
'duplicated' => '¡:type duplicado!',
|
||||
'imported' => '¡:type importado!',
|
||||
'enabled' => ':type enabled!',
|
||||
'disabled' => ':type disabled!',
|
||||
'enabled' => ':type activado!',
|
||||
'disabled' => ':type desactivado!',
|
||||
],
|
||||
'error' => [
|
||||
'over_payment' => 'Error: Pago no agregado! Cantidad sobre pasa el total.',
|
||||
|
@ -4,7 +4,7 @@ return [
|
||||
|
||||
'title' => 'Token de API',
|
||||
'api_token' => 'Token',
|
||||
'my_apps' => 'My Apps',
|
||||
'my_apps' => 'Mis Apps',
|
||||
'top_paid' => 'Más Pagado',
|
||||
'new' => 'Nuevo',
|
||||
'top_free' => 'Top Gratis',
|
||||
@ -42,7 +42,7 @@ return [
|
||||
],
|
||||
|
||||
'badge' => [
|
||||
'installed' => 'Installed',
|
||||
'installed' => 'Instalado',
|
||||
],
|
||||
|
||||
'button' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
|
||||
'my' => [
|
||||
'purchased' => 'Purchased',
|
||||
'installed' => 'Installed',
|
||||
'purchased' => 'Comprado',
|
||||
'installed' => 'Instalado',
|
||||
],
|
||||
];
|
||||
|
@ -6,7 +6,7 @@ return [
|
||||
'to_account' => 'A la Cuenta',
|
||||
|
||||
'messages' => [
|
||||
'delete' => ':from to :to (:amount)',
|
||||
'delete' => ':from a :to (:amount)',
|
||||
],
|
||||
|
||||
];
|
||||
|
@ -8,7 +8,7 @@ return [
|
||||
'overdue_invoices' => 'Faturas Vencidas',
|
||||
'total_expenses' => 'Despesas totais',
|
||||
'payables' => 'A Pagar',
|
||||
'open_bills' => 'Contas Abertas',
|
||||
'open_bills' => 'Contas em Aberto',
|
||||
'overdue_bills' => 'Contas Vencidas',
|
||||
'total_profit' => 'Lucro Total',
|
||||
'open_profit' => 'Lucro em Aberto',
|
||||
@ -17,7 +17,7 @@ return [
|
||||
'no_profit_loss' => 'Sem perda de lucro',
|
||||
'incomes_by_category' => 'Rendimento por Categoria',
|
||||
'expenses_by_category' => 'Despesa por Categoria',
|
||||
'account_balance' => 'Saldo da Conta',
|
||||
'account_balance' => 'Saldo da(s) Conta(s)',
|
||||
'latest_incomes' => 'Últimas Receitas',
|
||||
'latest_expenses' => 'Últimas Despesas',
|
||||
|
||||
|
@ -45,7 +45,7 @@ return [
|
||||
'no_records' => 'Sem Registos.',
|
||||
'date' => 'Data',
|
||||
'amount' => 'Montante',
|
||||
'enabled' => 'Activado',
|
||||
'enabled' => 'Ativo',
|
||||
'disabled' => 'Desativado',
|
||||
'yes' => 'Sim',
|
||||
'no' => 'Não',
|
||||
@ -55,8 +55,8 @@ return [
|
||||
'quarterly' => 'Trimestral',
|
||||
'yearly' => 'Anual',
|
||||
'add' => 'Adicionar',
|
||||
'add_new' => 'Novo',
|
||||
'show' => 'Visualizar',
|
||||
'add_new' => 'Novo(a)',
|
||||
'show' => 'Mostrar',
|
||||
'edit' => 'Editar',
|
||||
'delete' => 'Excluir',
|
||||
'send' => 'Enviar',
|
||||
@ -88,8 +88,8 @@ return [
|
||||
'search_placeholder' => 'Digite para procurar..',
|
||||
'filter' => 'Filtrar',
|
||||
'help' => 'Ajuda',
|
||||
'all' => 'Todos',
|
||||
'all_type' => 'Todos os :type',
|
||||
'all' => 'Todos(as)',
|
||||
'all_type' => 'Todos(as) os(as) :type',
|
||||
'upcoming' => 'Próximo',
|
||||
'created' => 'Criado',
|
||||
'id' => 'ID',
|
||||
@ -101,11 +101,11 @@ return [
|
||||
'partially' => 'Parcialmente',
|
||||
'partially_paid' => 'Parcialmente Pago',
|
||||
'export' => 'Exportar',
|
||||
'enable' => 'Ativado',
|
||||
'disable' => 'Desativado',
|
||||
'enable' => 'Activar',
|
||||
'disable' => 'Desactivar',
|
||||
|
||||
'title' => [
|
||||
'new' => 'Novo :type',
|
||||
'new' => 'Novo(a) :type',
|
||||
'edit' => 'Editar :type',
|
||||
],
|
||||
|
||||
|
@ -3,13 +3,13 @@
|
||||
return [
|
||||
|
||||
'success' => [
|
||||
'added' => ':type adicionado!',
|
||||
'updated' => ':type atualizado!',
|
||||
'deleted' => ':type excluído!',
|
||||
'duplicated' => ':type duplicado!',
|
||||
'imported' => ':type importado!',
|
||||
'enabled' => ':type ativado!',
|
||||
'disabled' => ': type desativado!',
|
||||
'added' => ':type adicionado(a)!',
|
||||
'updated' => ':type atualizada(s)!',
|
||||
'deleted' => ':type excluído(a)!',
|
||||
'duplicated' => ':type duplicado(a)!',
|
||||
'imported' => ':type importado(a)!',
|
||||
'enabled' => ':type ativado(a)!',
|
||||
'disabled' => ': type desativado(a)!',
|
||||
],
|
||||
'error' => [
|
||||
'over_payment' => 'Erro: Pagamento não adicionado! O valor passa o total.',
|
||||
|
Loading…
x
Reference in New Issue
Block a user