Merge branch 'master' of github.com:akaunting/akaunting

This commit is contained in:
Cüneyt Şentürk 2020-02-18 17:16:44 +03:00
commit 996038b2f6
80 changed files with 1320 additions and 724 deletions

View File

@ -947,7 +947,9 @@ class Version200 extends Listener
'resources/assets/sass/app.scss', 'resources/assets/sass/app.scss',
'resources/views/purchases/bills/bill.blade.php', 'resources/views/purchases/bills/bill.blade.php',
'resources/views/sales/invoices/invoice.blade.php', 'resources/views/sales/invoices/invoice.blade.php',
'resources/views/layouts/bill.blade.php',
'resources/views/layouts/customer.blade.php', 'resources/views/layouts/customer.blade.php',
'resources/views/layouts/invoice.blade.php',
'resources/views/layouts/link.blade.php', 'resources/views/layouts/link.blade.php',
'resources/views/modules/token/create.blade.php', 'resources/views/modules/token/create.blade.php',
'resources/views/partials/link/content.blade.php', 'resources/views/partials/link/content.blade.php',

View File

@ -8,7 +8,7 @@ return [
'error' => [ 'error' => [
'not_user_company' => 'Error: No tienes permisos para cambiar esta empresa!', 'not_user_company' => 'Error: No tienes permisos para cambiar esta empresa!',
'delete_active' => 'Error: No se puede eliminar la empresa activa. Por favor, cambie a otra primero!', 'delete_active' => 'Error: No se puede eliminar la empresa activa. Por favor, cambie a otra primero!',
'disable_active' => 'Error: Can not disable the active company. Please, switch to another first!', 'disable_active' => 'Error: No se puede deshabilitar la empresa activa. Por favor, cambie a otra primero!',
], ],
]; ];

View File

@ -3,9 +3,9 @@
return [ return [
'error' => [ 'error' => [
'not_user_dashboard' => 'Error: You are not allowed to change this dashboard!', 'not_user_dashboard' => 'Error: No tiene permiso para cambiar este panel!',
'delete_last' => 'Error: Can not delete the last dashboard. Please, create a new one first!', 'delete_last' => 'Error: No se puede eliminar el último tablero. ¡Por favor, crea uno nuevo primero!',
'disable_last' => 'Error: Can not disable the last dashboard. Please, create a new one first!', 'disable_last' => 'Error: No se puede desactivar el último tablero. ¡Por favor, crea uno nuevo primero!',
], ],
]; ];

View File

@ -3,32 +3,32 @@
return [ return [
'accounts' => [ 'accounts' => [
'cash' => 'Cash', 'cash' => 'Efectivo',
], ],
'categories' => [ 'categories' => [
'deposit' => 'Deposit', 'deposit' => 'Depósito',
'sales' => 'Sales', 'sales' => 'Ventas',
], ],
'currencies' => [ 'currencies' => [
'usd' => 'US Dollar', 'usd' => 'Dólar EEUU',
'eur' => 'Euro', 'eur' => 'Euro',
'gbp' => 'British Pound', 'gbp' => 'Libra esterlina',
'try' => 'Turkish Lira', 'try' => 'Libra turca',
], ],
'offline_payments' => [ 'offline_payments' => [
'cash' => 'Cash', 'cash' => 'Efectivo',
'bank' => 'Bank Transfer', 'bank' => 'Transferencia Bancaria',
], ],
'reports' => [ 'reports' => [
'income' => 'Monthly income summary by category.', 'income' => 'Resumen mensual de ingresos por categoría.',
'expense' => 'Monthly expense summary by category.', 'expense' => 'Resumen mensual de gastos por categoría.',
'income_expense' => 'Monthly income vs expense by category.', 'income_expense' => 'Ingresos mensuales vs gastos por categoría.',
'tax' => 'Quarterly tax summary.', 'tax' => 'Resumen trimestral de impuestos.',
'profit_loss' => 'Quarterly profit & loss by category.', 'profit_loss' => 'Ganancias y pérdidas trimestrales por categoría.',
], ],
]; ];

View File

@ -3,21 +3,21 @@
return [ return [
'title' => [ 'title' => [
'403' => 'Oops! Forbidden Access', '403' => '¡Ups! Acceso prohibido',
'404' => 'Oops! Page not found', '404' => '¡Ups! Página no encontrada',
'500' => 'Oops! Something went wrong', '500' => '¡Ups! Algo fue mal',
], ],
'header' => [ 'header' => [
'403' => '403 Forbidden', '403' => '403 Prohibido',
'404' => '404 Not Found', '404' => '404 Página no encontrada',
'500' => '500 Internal Server Error', '500' => '500 Error interno del servidor',
], ],
'message' => [ 'message' => [
'403' => 'You can not access this page.', '403' => 'No puede acceder a esta página.',
'404' => 'We could not find the page you were looking for.', '404' => 'No pudimos encontrar la página que estaba buscando.',
'500' => 'We will work on fixing that right away.', '500' => 'Trabajaremos para arreglarlo de inmediato.',
], ],
]; ];

View File

@ -48,8 +48,8 @@ return [
'localisations' => 'Localización|Localizaciones', 'localisations' => 'Localización|Localizaciones',
'defaults' => 'Por defecto|Por defecto', 'defaults' => 'Por defecto|Por defecto',
'widgets' => 'Widget|Widgets', 'widgets' => 'Widget|Widgets',
'templates' => 'Template|Templates', 'templates' => 'Plantilla|Plantillas',
'sales' => 'Sale|Sales', 'sales' => 'Venta|Ventas',
'purchases' => 'Compra|Compras', 'purchases' => 'Compra|Compras',
'welcome' => 'Te damos la bienvenida', 'welcome' => 'Te damos la bienvenida',
@ -70,13 +70,13 @@ return [
'yearly' => 'Anual', 'yearly' => 'Anual',
'add' => 'Añadir', 'add' => 'Añadir',
'add_new' => 'Agregar Nuevo', 'add_new' => 'Agregar Nuevo',
'add_income' => 'Add Income', 'add_income' => 'Añadir Ingreso',
'add_expense' => 'Add Expense', 'add_expense' => 'Añadir Gasto',
'show' => 'Mostrar', 'show' => 'Mostrar',
'edit' => 'Editar', 'edit' => 'Editar',
'delete' => 'Borrar', 'delete' => 'Borrar',
'send' => 'Enviar', 'send' => 'Enviar',
'share' => 'Share', 'share' => 'Compartir',
'download' => 'Descargar', 'download' => 'Descargar',
'delete_confirm' => 'Confirma el borrado de :name :type?', 'delete_confirm' => 'Confirma el borrado de :name :type?',
'name' => 'Nombre', 'name' => 'Nombre',
@ -137,27 +137,27 @@ return [
'difference' => 'Diferencia', 'difference' => 'Diferencia',
'footer' => 'Pie de página', 'footer' => 'Pie de página',
'start_date' => 'Fecha de Inicio', 'start_date' => 'Fecha de Inicio',
'end_date' => 'End Date', 'end_date' => 'Fecha de fin',
'basis' => 'Base', 'basis' => 'Base',
'accrual' => 'Acumulado', 'accrual' => 'Acumulado',
'cash' => 'Efectivo', 'cash' => 'Efectivo',
'group_by' => 'Agrupar por', 'group_by' => 'Agrupar por',
'accounting' => 'Contabilidad', 'accounting' => 'Contabilidad',
'sort' => 'Sort', 'sort' => 'Ordenar',
'width' => 'Width', 'width' => 'Ancho',
'month' => 'Month', 'month' => 'Mes',
'year' => 'Year', 'year' => 'Año',
'type_item_name' => 'Type an item name', 'type_item_name' => 'Escriba un nombre de artículo',
'no_data' => 'No data', 'no_data' => 'Sin datos',
'no_matching_data' => 'No matching data', 'no_matching_data' => 'No hay datos coincidentes',
'clear_cache' => 'Clear Cache', 'clear_cache' => 'Limpiar caché',
'go_to_dashboard' => 'Go to dashboard', 'go_to_dashboard' => 'Ir al panel de control',
'card' => [ 'card' => [
'name' => 'Name on Card', 'name' => 'Nombre del titular',
'number' => 'Card Number', 'number' => 'Número de tarjeta',
'expiration_date' => 'Expiration Date', 'expiration_date' => 'Fecha de caducidad',
'cvv' => 'Card CVV', 'cvv' => 'CVV de tarjeta',
], ],
'title' => [ 'title' => [
@ -168,7 +168,7 @@ return [
'send' => 'Enviar :type', 'send' => 'Enviar :type',
'get' => 'Obtener :type', 'get' => 'Obtener :type',
'add' => 'Agregar :type', 'add' => 'Agregar :type',
'manage' => 'Manage :type', 'manage' => 'Cambiar :type',
], ],
'form' => [ 'form' => [
@ -198,9 +198,9 @@ return [
'bills' => 'Los recibos pueden ser de una vez o recurrentes. Indican lo que debe a sus proveedores por los productos o servicios que compra.', 'bills' => 'Los recibos pueden ser de una vez o recurrentes. Indican lo que debe a sus proveedores por los productos o servicios que compra.',
'payments' => 'El pago es una transacción de gasto pagado. Puede ser un registro independiente (es decir, recibo de alimento) o adjunto a un recibo.', 'payments' => 'El pago es una transacción de gasto pagado. Puede ser un registro independiente (es decir, recibo de alimento) o adjunto a un recibo.',
'vendors' => 'Los proveedores son necesarios si desea crear recibos. Puede ver el saldo que debe y filtrar los informes por proveedor.', 'vendors' => 'Los proveedores son necesarios si desea crear recibos. Puede ver el saldo que debe y filtrar los informes por proveedor.',
'transfers' => 'Transfers allow you to move money from one account to another, whether they use the same currency or not.', 'transfers' => 'Las transferencias te permiten transferir dinero de una cuenta a otra, tanto si utilizan la misma moneda como si no.',
'taxes' => 'Taxes are used to apply extra fees to invoices and bills. Your financials are affected by these regulatory taxes.', 'taxes' => 'Los impuestos se utilizan para aplicar cargos adicionales a facturas y recibos. Sus finanzas se ven afectadas por estos impuestos regulatorios.',
'reconciliations' => 'Bank reconciliation is a process performed to ensure that your company bank records are also correct.', 'reconciliations' => 'La conciliación bancaria es un proceso realizado para asegurar que los registros bancarios de su empresa también sean correctos.',
], ],
]; ];

View File

@ -12,9 +12,9 @@ return [
'search' => 'Buscar', 'search' => 'Buscar',
'install' => 'Instalar', 'install' => 'Instalar',
'buy_now' => 'Comprar ahora', 'buy_now' => 'Comprar ahora',
'get_api_key' => '<a href=":url" target="_blank">Click here</a> to get your API key.', 'get_api_key' => '<a href=":url" target="_blank">Haga clic aquí</a> para obtener su clave API.',
'no_apps' => 'No hay aplicaciones en esta categoría, aún.', 'no_apps' => 'No hay aplicaciones en esta categoría, aún.',
'become_developer' => 'Are you a developer? <a href=":url" target="_blank">Here</a> you can learn how to create an app and start selling today!', 'become_developer' => '¿Eres un desarrollador? <a href="https://akaunting.com/developers" target="_blank">Aquí</a> puedes aprender cómo crear una aplicación y empezar a vender hoy!',
'recommended_apps' => 'Aplicaciones recomendadas', 'recommended_apps' => 'Aplicaciones recomendadas',
'about' => 'Acerca de', 'about' => 'Acerca de',

View File

@ -2,22 +2,22 @@
return [ return [
'total_income' => 'Total Income', 'total_income' => 'Total Ingresos',
'receivables' => 'Receivables', 'receivables' => 'Cuentas por cobrar',
'open_invoices' => 'Open Invoices', 'open_invoices' => 'Facturas Pendientes',
'overdue_invoices' => 'Overdue Invoices', 'overdue_invoices' => 'Facturas Vencidas',
'total_expenses' => 'Total Expenses', 'total_expenses' => 'Total de Gastos',
'payables' => 'Payables', 'payables' => 'Cuentas por pagar',
'open_bills' => 'Open Bills', 'open_bills' => 'Recibos Pendientes',
'overdue_bills' => 'Overdue Bills', 'overdue_bills' => 'Recibos Vencidos',
'total_profit' => 'Total Profit', 'total_profit' => 'Beneficio Total',
'open_profit' => 'Open Profit', 'open_profit' => 'Beneficio Pendiente',
'overdue_profit' => 'Overdue Profit', 'overdue_profit' => 'Beneficio Vencido',
'cash_flow' => 'Cash Flow', 'cash_flow' => 'Flujo de Efectivo',
'no_profit_loss' => 'No Profit Loss', 'no_profit_loss' => 'No hay pérdidas ganancias',
'income_by_category' => 'Income By Category', 'income_by_category' => 'Ingresos por Categoría',
'expenses_by_category' => 'Expenses By Category', 'expenses_by_category' => 'Gastos por Categoría',
'account_balance' => 'Account Balance', 'account_balance' => 'Saldo de la cuenta',
'latest_income' => 'Latest Income', 'latest_income' => 'Últimos ingresos',
'latest_expenses' => 'Latest Expenses', 'latest_expenses' => 'Últimos gastos',
]; ];

View File

@ -13,6 +13,7 @@ return [
'current_email' => 'Dirección de Correo electrónico Actual', 'current_email' => 'Dirección de Correo electrónico Actual',
'reset' => 'Restablecer', 'reset' => 'Restablecer',
'never' => 'nunca', 'never' => 'nunca',
'landing_page' => 'Página de destino',
'password' => [ 'password' => [
'current' => 'Contraseña', 'current' => 'Contraseña',
@ -23,6 +24,7 @@ return [
'error' => [ 'error' => [
'self_delete' => 'Error: ¡No puede eliminarse usted mismo!', 'self_delete' => 'Error: ¡No puede eliminarse usted mismo!',
'self_disable' => 'Error: ¡No puedes desactivarte a ti mismo!',
'no_company' => 'Error: No se asigno una compañía para tu cuenta. Por favor, contacte al administrador del sistema.', 'no_company' => 'Error: No se asigno una compañía para tu cuenta. Por favor, contacte al administrador del sistema.',
], ],

View File

@ -7,7 +7,7 @@ return [
'total_price' => 'Precio Total', 'total_price' => 'Precio Total',
'due_date' => 'Fecha de Vencimiento', 'due_date' => 'Fecha de Vencimiento',
'order_number' => 'Número de Orden', 'order_number' => 'Número de Orden',
'bill_from' => 'Recibo De', 'bill_from' => 'Factura de',
'quantity' => 'Cantidad', 'quantity' => 'Cantidad',
'price' => 'Precio', 'price' => 'Precio',
@ -40,6 +40,8 @@ return [
'received' => 'Recibido', 'received' => 'Recibido',
'partial' => 'Parcial', 'partial' => 'Parcial',
'paid' => 'Pagado', 'paid' => 'Pagado',
'overdue' => 'Vencido',
'unpaid' => 'No Pagado',
], ],
'messages' => [ 'messages' => [

View File

@ -0,0 +1,19 @@
<?php
return [
'bulk_actions' => 'Acción masiva|Acciones masivas',
'selected' => 'seleccionado',
'message' => [
'duplicate' => '¿Está seguro que desea <b>duplicar</b> el registro seleccionado?',
'delete' => '¿Está seguro que desea <b>eliminar</b> el registro seleccionado?|¿Está seguro que desea <b>eliminar</b> los registros seleccionados?',
'export' => '¿Está seguro que desea <b>exportar</b> el registro seleccionado?|¿Está seguro que desea <b>exportar</b> los registros seleccionados?',
'enable' => '¿Está seguro que desea <b>habilitar</b> el registro seleccionado?|¿Está seguro que desea <b>habilitar</b> los registros seleccionados?',
'disable' => '¿Está seguro que desea <b>deshabilitar</b> el registro seleccionado?|¿Está seguro que desea <b>deshabilitar</b> los registros seleccionados?',
'paid' => '¿Está seguro de que desea marcar la factura seleccionada como <b>pagada</b>? ¿Está seguro que desea marcar las facturas seleccionadas como <b>pagadas</b>?',
'sent' => '¿Está seguro que desea marcar la factura seleccionada como <b>enviada</b>? ¿Está seguro que desea marcar las facturas seleccionadas como <b>enviadas</b>?',
'received' => '¿Está seguro de que desea marcar el recibo seleccionado como <b>recibido</b>? ¿Está seguro que desea marcar los recibos seleccionados como <b>recibidos</b>?',
],
];

View File

@ -2,12 +2,13 @@
return [ return [
'domain' => 'Sitio Web', 'domain' => 'Dominio',
'logo' => 'Logotipo', 'logo' => 'Logotipo',
'manage' => 'Gestionar Empresas',
'all' => 'Todas las Empresas',
'error' => [ 'error' => [
'delete_active' => 'Error: ¡No puede eliminar la empresa activa. Por favor, cámbiela antes!', 'not_user_company' => 'Error: ¡No tiene permisos para administrar esta empresa!',
'delete_active' => 'Error: No se puede eliminar la empresa activa. Por favor, cambie a otra primero!',
'disable_active' => 'Error: No se puede deshabilitar la empresa activa. Por favor, cambie a otra primero!',
], ],
]; ];

View File

@ -2,15 +2,11 @@
return [ return [
'allow_login' => '¿Permitir Inicio de Sesión?', 'can_login' => '¿Puede iniciar sesión?',
'user_created' => 'Usuario Creado', 'user_created' => 'Usuario Creado',
'error' => [ 'error' => [
'email' => 'La dirección de correo electrónico ya está en uso.' 'email' => 'La dirección de correo electrónico ya está en uso.',
], ],
'notification' => [
'message' => ':customer hizo un pago de :amount a la factura #:invoice_number.',
'button' => 'Mostrar',
],
]; ];

View File

@ -0,0 +1,11 @@
<?php
return [
'error' => [
'not_user_dashboard' => 'Error: No tiene permiso para cambiar este panel!',
'delete_last' => 'Error: No se puede eliminar el último tablero. ¡Por favor, crea uno nuevo primero!',
'disable_last' => 'Error: No se puede desactivar el último tablero. ¡Por favor, crea uno nuevo primero!',
],
];

View File

@ -2,12 +2,33 @@
return [ return [
'accounts_cash' => 'Efectivo', 'accounts' => [
'categories_deposit' => 'Depósito', 'cash' => 'Efectivo',
'categories_sales' => 'Ventas', ],
'currencies_usd' => 'Dólar EEUU',
'currencies_eur' => 'Euro', 'categories' => [
'currencies_gbp' => 'Libra Esterlina', 'deposit' => 'Depósito',
'currencies_try' => 'Libra Turca', 'sales' => 'Ventas',
],
'currencies' => [
'usd' => 'Dólar EEUU',
'eur' => 'Euro',
'gbp' => 'Libra Esterlina',
'try' => 'Libra Turca',
],
'offline_payments' => [
'cash' => 'Efectivo',
'bank' => 'Transferencia Bancaria',
],
'reports' => [
'income' => 'Resumen mensual de ingresos por categoría.',
'expense' => 'Resumen mensual de gastos por categoría.',
'income_expense' => 'Ingresos mensuales vs gastos por categoría.',
'tax' => 'Resumen trimestral de impuestos.',
'profit_loss' => 'Ganancias y pérdidas trimestrales por categoría.',
],
]; ];

View File

@ -0,0 +1,50 @@
<?php
return [
'invoice_new_customer' => [
'subject' => '{invoice_number} factura creada',
'body' => 'Estimado {customer_name},<br /><br />Le hemos preparado la siguiente factura: <strong>{invoice_number}</strong>.<br /><br />Puede ver los detalles de la factura y proceder con el pago desde el siguiente enlace: <a href="{invoice_guest_link}">{invoice_number}</a>.<br /><br />Ponte en contacto con nosotros para cualquier pregunta.<br /><br />Saludos cordiales,<br />{company_name}',
],
'invoice_remind_customer' => [
'subject' => '{invoice_number} notificación de factura vencida',
'body' => 'Estimado {customer_name},<br /><br />Este es un aviso de factura vencida para <strong>{invoice_number}</strong>.<br /><br />El total de la factura es {invoice_total} y venció el <strong>{invoice_due_date}</strong>.<br /><br />Puede ver los detalles de la factura y proceder con el pago desde el siguiente enlace: <a href="{invoice_guest_link}">{invoice_number}</a>.<br /><br />Saludos cordiales,<br />{company_name}',
],
'invoice_remind_admin' => [
'subject' => '{invoice_number} notificación de factura vencida',
'body' => 'Hola,<br /><br />{customer_name} ha recibido un aviso de vencimiento por la factura <strong>{invoice_number}</strong>.<br /><br />El total de la factura es {invoice_total} y venció el <strong>{invoice_due_date}</strong>.<br /><br />Puede ver los detalles de la factura desde el siguiente enlace: <a href="{invoice_admin_link}">{invoice_number}</a>.<br /><br />Saludos cordiales,<br />{company_name}',
],
'invoice_recur_customer' => [
'subject' => '{invoice_number} factura recurrente creada',
'body' => 'Estimado {customer_name},<br /><br />Basado en su ciclo recurrente, le hemos preparado la siguiente factura: <strong>{invoice_number}</strong>.<br /><br />Puede ver los detalles de la factura y proceder con el pago desde el siguiente enlace: <a href="{invoice_guest_link}">{invoice_number}</a>.<br /><br />Ponte en contacto con nosotros para cualquier pregunta.<br /><br />Saludos cordiales,<br />{company_name}',
],
'invoice_recur_admin' => [
'subject' => '{invoice_number} factura recurrente creada',
'body' => 'Estimado {customer_name},<br /><br />, Basado en su ciclo recurrente su factura <strong>{invoice_number}</strong> ha sido creada automáticamente.<br /><br />Puede ver los detalles de la factura desde el siguiente enlace: <a href="{invoice_admin_link}">{invoice_number}</a>.<br /><br />Saludos cordiales,<br />{company_name}',
],
'invoice_payment_customer' => [
'subject' => 'Pago recibido por factura {invoice_number}',
'body' => 'Estimado {customer_name},<br /><br />Gracias por el pago. Encuentre los detalles de pago a continuación:<br /><br />-------------------------------------------------<br />Monto: <strong>{transaction_total}</strong><br />Fecha: <strong>{transaction_paid_date}</strong><br />Número de factura: <strong>{invoice_number}</strong><br />-------------------------------------------------<br /><br />Siempre puede ver los detalles de la factura desde el siguiente enlace: <a href="{invoice_guest_link}">{invoice_number}</a>.<br /><br />Ponte en contacto con nosotros para cualquier pregunta.<br /><br />Saludos cordiales,<br />{company_name}',
],
'invoice_payment_admin' => [
'subject' => 'Pago recibido por factura {invoice_number}',
'body' => 'Hola,<br /><br />{customer_name} registró un pago por la factura <strong>{invoice_number}</strong>.<br /><br />Puede ver los detalles de la factura desde el siguiente enlace: <a href="{invoice_admin_link}">{invoice_number}</a>.<br /><br />Saludos cordiales,<br />{company_name}',
],
'bill_remind_admin' => [
'subject' => 'Aviso recordatorio de factura {bill_number}',
'body' => 'Hola,<br /><br />Este es un aviso recordatorio para el recibo <strong>{bill_number}</strong> de {vendor_name}.<br /><br />El total de la recibo a pagar es de {bill_total} y vence <strong>{bill_due_date}</strong>.<br /><br />Puedes ver los detalles de la recibo desde el siguiente enlace: <a href="{bill_admin_link}">{bill_number}</a>.<br /><br />Saludos cordiales,<br />{company_name}',
],
'bill_recur_admin' => [
'subject' => '{bill_number} recibo recurrente creado',
'body' => 'Hola,<br /><br /> Basado en el ciclo recurrente de {vendor_name}, el recibo <strong>{bill_number}</strong> ha sido creado automáticamente.<br /><br />Puedes ver los detalles del recibo desde el siguiente enlace: <a href="{bill_admin_link}">{bill_number}</a>.<br /><br />Saludos cordiales,<br />{company_name}',
],
];

View File

@ -2,23 +2,22 @@
return [ return [
'forbidden_access' => 'Forbidden Access', 'title' => [
'error_page' => 'Error Page', '403' => '¡Ups! Acceso prohibido',
'page_not_found' => 'Page Not Found', '404' => '¡Ups! Página no encontrada',
'500' => '¡Ups! Algo salió mal',
'body' => [
'forbidden_access' => 'Oops! Forbidden Access.',
'error_page' => 'Oops! Something went wrong.',
'page_not_found' => 'Oops! Page not found.',
], ],
'messages' => [ 'header' => [
'forbidden_access' => 'You can not access this page. '403' => '403 Prohibido',
Meanwhile, you may <a href=":link">return to dashboard</a>.', '404' => '404 Página no encontrada',
'error_page' => 'We will work on fixing that right away. '500' => '500 Error interno del servidor',
Meanwhile, you may <a href=":link">return to dashboard</a>.', ],
'page_not_found' => 'We could not find the page you were looking for.
Meanwhile, you may <a href=":link">return to dashboard</a>.', 'message' => [
'403' => 'No puede acceder a esta página.',
'404' => 'No pudimos encontrar la página que estaba buscando.',
'500' => 'Trabajaremos para arreglarlo de inmediato.',
], ],
]; ];

View File

@ -2,6 +2,7 @@
return [ return [
'dashboards' => 'Tablero|Tableros',
'items' => 'Producto/Servicio | Productos/Servicios', 'items' => 'Producto/Servicio | Productos/Servicios',
'incomes' => 'Ingreso | Ingresos', 'incomes' => 'Ingreso | Ingresos',
'invoices' => 'Factura | Facturas', 'invoices' => 'Factura | Facturas',
@ -41,8 +42,17 @@ return [
'contacts' => 'Contact|Contactos', 'contacts' => 'Contact|Contactos',
'reconciliations' => 'Reconcliación|Reconciliaciones', 'reconciliations' => 'Reconcliación|Reconciliaciones',
'developers' => 'Desarrollador|Desarrolladores', 'developers' => 'Desarrollador|Desarrolladores',
'schedules' => 'Horario|Horarios',
'groups' => 'Grupo|Grupos',
'charts' => 'Gráfico|Gráficos',
'localisations' => 'Localización|Localizaciones',
'defaults' => 'Por defecto|Por defecto',
'widgets' => 'Widget|Widgets',
'templates' => 'Plantilla|Plantillas',
'sales' => 'Venta|Ventas',
'purchases' => 'Compra|Compras',
'dashboard' => 'Panel de Control', 'welcome' => 'Bienvenido/a',
'banking' => 'Bancos', 'banking' => 'Bancos',
'general' => 'General', 'general' => 'General',
'no_records' => 'No hay registros.', 'no_records' => 'No hay registros.',
@ -54,15 +64,19 @@ return [
'no' => 'No', 'no' => 'No',
'na' => 'N/A', 'na' => 'N/A',
'daily' => 'Diario', 'daily' => 'Diario',
'weekly' => 'Semanal',
'monthly' => 'Mensual', 'monthly' => 'Mensual',
'quarterly' => 'Trimestral', 'quarterly' => 'Trimestral',
'yearly' => 'Anual', 'yearly' => 'Anual',
'add' => 'Añadir', 'add' => 'Añadir',
'add_new' => 'Agregar Nuevo', 'add_new' => 'Agregar Nuevo',
'add_income' => 'Añadir ingresos',
'add_expense' => 'Añadir gastos',
'show' => 'Mostrar', 'show' => 'Mostrar',
'edit' => 'Editar', 'edit' => 'Editar',
'delete' => 'Borrar', 'delete' => 'Borrar',
'send' => 'Envíar', 'send' => 'Envíar',
'share' => 'Compartir',
'download' => 'Descargar', 'download' => 'Descargar',
'delete_confirm' => 'Confirma el borrado de :name :type?', 'delete_confirm' => 'Confirma el borrado de :name :type?',
'name' => 'Nombre', 'name' => 'Nombre',
@ -80,9 +94,11 @@ return [
'reference' => 'Referencia', 'reference' => 'Referencia',
'attachment' => 'Adjunto', 'attachment' => 'Adjunto',
'change' => 'Cambiar', 'change' => 'Cambiar',
'change_type' => 'Cambiar :type',
'switch' => 'Cambiar', 'switch' => 'Cambiar',
'color' => 'Color', 'color' => 'Color',
'save' => 'Guardar', 'save' => 'Guardar',
'confirm' => 'Confirmar',
'cancel' => 'Cancelar', 'cancel' => 'Cancelar',
'loading' => 'Cargando...', 'loading' => 'Cargando...',
'from' => 'De ', 'from' => 'De ',
@ -112,20 +128,47 @@ return [
'disable' => 'Desactivar', 'disable' => 'Desactivar',
'select_all' => 'Seleccionar Todo', 'select_all' => 'Seleccionar Todo',
'unselect_all' => 'Deseleccionar Todo', 'unselect_all' => 'Deseleccionar Todo',
'go_to' => 'Ir a :name',
'created_date' => 'Fecha de Creación', 'created_date' => 'Fecha de Creación',
'period' => 'Periodo', 'period' => 'Periodo',
'frequency' => 'Frecuencia',
'start' => 'Comenzar', 'start' => 'Comenzar',
'end' => 'Terminar', 'end' => 'Terminar',
'clear' => 'Limpiar', 'clear' => 'Limpiar',
'difference' => 'Diferencia', 'difference' => 'Diferencia',
'footer' => 'Pie de página',
'start_date' => 'Fecha inicio',
'end_date' => 'Fecha fin',
'basis' => 'Base',
'accrual' => 'Acumulado',
'cash' => 'Efectivo',
'group_by' => 'Agrupar por',
'accounting' => 'Contabilidad',
'sort' => 'Ordenar',
'width' => 'Ancho',
'month' => 'Mes',
'year' => 'Año',
'type_item_name' => 'Escriba un nombre de artículo',
'no_data' => 'Sin datos',
'no_matching_data' => 'No hay coincidencias',
'clear_cache' => 'Limpiar caché',
'go_to_dashboard' => 'Ir al panel de control',
'card' => [
'name' => 'Nombre en la tarjeta',
'number' => 'Número de la tarjeta',
'expiration_date' => 'Fecha de expiración',
'cvv' => 'CVV de tarjeta',
],
'title' => [ 'title' => [
'new' => 'Nuevo :type', 'new' => 'Nuevo :type',
'edit' => 'Editar :type', 'edit' => 'Editar :type',
'delete' => 'Eliminar :type',
'create' => 'Crear :type', 'create' => 'Crear :type',
'send' => 'Enviar :type', 'send' => 'Enviar :type',
'get' => 'Obtener :type', 'get' => 'Obtener :type',
'add' => 'Agregar :type',
'manage' => 'Administrar :type',
], ],
'form' => [ 'form' => [
@ -134,6 +177,7 @@ return [
'field' => '- Seleccione :field -', 'field' => '- Seleccione :field -',
'file' => 'Seleccionar Archivo', 'file' => 'Seleccionar Archivo',
], ],
'add_new' => 'Agregar Nuevo :field',
'no_file_selected' => 'Ningún archivo seleccionado...', 'no_file_selected' => 'Ningún archivo seleccionado...',
], ],
@ -144,4 +188,19 @@ return [
'this_month' => 'Este mes', 'this_month' => 'Este mes',
'last_month' => 'Último mes', 'last_month' => 'Último mes',
], ],
'empty' => [
'documentation' => 'Revisa la <a href=":url" target="_blank">documentación</a> para más detalles.',
'items' => 'Los artículos pueden ser productos o servicios. Puede utilizar artículos al crear facturas y recibos para poblar los campos precio, impuestos, etc.',
'invoices' => 'Las facturas pueden ser una vez o recurrentes. Puedes enviarlas a los clientes y empezar a aceptar pagos en línea.',
'revenues' => 'Los ingresos son una transacción de ingresos pagados, puede ser un registro independiente (es decir, depósito) o adjunto a una factura.',
'customers' => 'Los clientes son requeridos si desea crear facturas. También pueden iniciar sesión en el Portal del Cliente y ver su saldo.',
'bills' => 'Los recibos pueden ser de una vez o recurrentes. Indican lo que debe a sus proveedores por los productos o servicios que compra.',
'payments' => 'El pago es una transacción de gastos pagados. Puede ser un registro independiente (por ejemplo, recibo de alimentos) o adjunto a una factura.',
'vendors' => 'Los proveedores son necesarios si desea crear recibos. Puede ver el saldo que debe y filtrar los informes por proveedor.',
'transfers' => 'Las transferencias te permiten transferir dinero de una cuenta a otra, tanto si utilizan la misma moneda como si no.',
'taxes' => 'Los impuestos se utilizan para aplicar cargos adicionales a facturas y facturas por pagar. Sus finanzas se ven afectadas por estos impuestos regulatorios.',
'reconciliations' => 'La conciliación bancaria es un proceso realizado para asegurar que los registros bancarios de su empresa también sean correctos.',
],
]; ];

View File

@ -8,9 +8,9 @@ return [
'counter' => '{0} No tiene notificaciones | {1} Tiene :count notificación | [2,*] Tiene :count notificaciones', 'counter' => '{0} No tiene notificaciones | {1} Tiene :count notificación | [2,*] Tiene :count notificaciones',
'overdue_invoices' => '{1} :count factura vencida | [2,*] :count facturas vencidas', 'overdue_invoices' => '{1} :count factura vencida | [2,*] :count facturas vencidas',
'upcoming_bills' => '{1} :count recibo por vencer | [2,*] :count recibos por vencer', 'upcoming_bills' => '{1} :count recibo por vencer | [2,*] :count recibos por vencer',
'items_stock' => '{1} :count producto/servicio sin stock | [2,*] :count productos/servicios sin stock',
'view_all' => 'Ver Todo' 'view_all' => 'Ver Todo'
], ],
'docs_link' => 'https://akaunting.com/docs', 'docs_link' => 'https://akaunting.com/docs',
'support_link' => 'https://akaunting.com/support',
]; ];

View File

@ -29,44 +29,44 @@ return [
'add_payment' => 'Añadir Pago', 'add_payment' => 'Añadir Pago',
'mark_paid' => 'Marcar Como Pagada', 'mark_paid' => 'Marcar Como Pagada',
'mark_sent' => 'Marcar Como Enviada', 'mark_sent' => 'Marcar Como Enviada',
'mark_viewed' => 'Marcar como visto',
'download_pdf' => 'Descargar archivo PDF', 'download_pdf' => 'Descargar archivo PDF',
'send_mail' => 'Enviar Correo Electrónico', 'send_mail' => 'Enviar Correo Electrónico',
'all_invoices' => 'Login to view all invoices', 'all_invoices' => 'Inicie sesión para ver todas las facturas',
'create_invoice' => 'Create Invoice', 'create_invoice' => 'Crear Factura',
'send_invoice' => 'Send Invoice', 'send_invoice' => 'Enviar Factura',
'get_paid' => 'Get Paid', 'get_paid' => 'Recibir Pago',
'accept_payments' => 'Accept Online Payments', 'accept_payments' => 'Aceptar pagos en línea',
'statuses' => [ 'statuses' => [
'draft' => 'Borrador', 'draft' => 'Borrador',
'sent' => 'Enviado', 'sent' => 'Enviada',
'viewed' => 'Visto', 'viewed' => 'Visto',
'approved' => 'Aprobado', 'approved' => 'Aprobada',
'partial' => 'Parcial', 'partial' => 'Pago Parcial',
'paid' => 'Pagado', 'paid' => 'Pagada',
'overdue' => 'Vencida',
'unpaid' => 'No Pagada',
], ],
'messages' => [ 'messages' => [
'email_sent' => '¡El correo electrónico de la factura se ha enviado correctamente!', 'email_sent' => '¡El correo electrónico de la factura ha sido enviado!',
'marked_sent' => '¡Factura marcada como enviada con éxito!', 'marked_sent' => '¡Factura marcada como enviada!',
'marked_paid' => '¡Factura marcada como pagada!',
'email_required' => 'No se encontró una dirección de correo para este cliente!', 'email_required' => 'No se encontró una dirección de correo para este cliente!',
'draft' => 'This is a <b>DRAFT</b> invoice and will be reflected to charts after it gets sent.', 'draft' => 'Esta es una factura <b>BORRADOR</b> y se reflejará en gráficos después de ser enviada.',
'status' => [ 'status' => [
'created' => 'Created on :date', 'created' => 'Creado el :date',
'viewed' => 'Vista',
'send' => [ 'send' => [
'draft' => 'Not sent', 'draft' => 'No enviada',
'sent' => 'Sent on :date', 'sent' => 'Enviada el :date',
], ],
'paid' => [ 'paid' => [
'await' => 'Awaiting payment', 'await' => 'Pendiente de pago',
], ],
], ],
], ],
'notification' => [
'message' => 'Estimado :cliente, usted está recibiendo este correo electrónico debido a que tiene una factura pendiente de pago por la cantidad de :amount, es de suma importancia que se contacte de inmediato con nosotros. Evite la suspensión de los servicios que tiene contratados o la entrega de los productos solicitados, además de posibles recargos y gastos de cobranza.',
'button' => 'Realizar el Pago Ahora',
],
]; ];

View File

@ -2,17 +2,7 @@
return [ return [
'quantities' => 'Cantidad | Cantidades',
'sales_price' => 'Precio de Venta', 'sales_price' => 'Precio de Venta',
'purchase_price' => 'Precio de Compra', 'purchase_price' => 'Precio de Compra',
'sku' => 'SKU/Código/Clave',
'notification' => [
'message' => [
'reminder' => 'Usted está recibiendo este email porque sólo :quantity de :name han permanecido.',
'out_of_stock' => 'You are receiving this email because the :name is running out of stock.',
],
'button' => 'Ver Ahora',
],
]; ];

View File

@ -0,0 +1,11 @@
<?php
return [
'title' => 'En Mantenimiento',
'message' => 'Lo sentimos, estamos en mantenimiento. Por favor, inténtalo de nuevo más tarde!',
'last-updated' => 'Este mensaje fue actualizado por última vez el :timestamp.',
];

View File

@ -8,17 +8,19 @@ return [
'deleted' => '¡:type eliminado!', 'deleted' => '¡:type eliminado!',
'duplicated' => '¡:type duplicado!', 'duplicated' => '¡:type duplicado!',
'imported' => '¡:type importado!', 'imported' => '¡:type importado!',
'exported' => '¡:type exportado!',
'enabled' => ':type activado!', 'enabled' => ':type activado!',
'disabled' => ':type desactivado!', 'disabled' => ':type desactivado!',
], ],
'error' => [ 'error' => [
'over_payment' => 'Error: Payment not added! The amount you entered passes the total: :amount', 'over_payment' => 'Error: ¡Pago no añadido! La cantidad que ingresó pasa el total: :amount',
'not_user_company' => 'Error: ¡No tiene permisos para administrar esta empresa!', 'not_user_company' => 'Error: ¡No tiene permisos para administrar esta empresa!',
'customer' => 'Error: Usuario no creado! :nombre ya utiliza esta dirección de correo.', 'customer' => 'Error: Usuario no creado! :nombre ya utiliza esta dirección de correo.',
'no_file' => 'Error: ¡Ningún archivo se ha seleccionado!', 'no_file' => 'Error: ¡Ningún archivo se ha seleccionado!',
'last_category' => 'Error: No se pudo eliminar el ultimo No. :type category!', 'last_category' => 'Error: No se pudo eliminar el ultimo No. :type category!',
'invalid_apikey' => 'Error: El token ingresado es invalido!', 'change_type' => 'Error: No se puede cambiar el tipo porque tiene :text relacionado!',
'invalid_apikey' => 'Error: ¡La clave de API introducida no es válida!',
'import_column' => 'Error: :message Nombre de la hoja: :sheet. Número de línea: :line.', 'import_column' => 'Error: :message Nombre de la hoja: :sheet. Número de línea: :line.',
'import_sheet' => 'Error: El nombre de la hoja no es válido. Por favor, verifique el archivo de ejemplo.', 'import_sheet' => 'Error: El nombre de la hoja no es válido. Por favor, verifique el archivo de ejemplo.',
], ],
@ -26,7 +28,8 @@ return [
'warning' => [ 'warning' => [
'deleted' => 'Advertencia: No puede borrar <b>:name</b> porque tiene :text relacionado.', 'deleted' => 'Advertencia: No puede borrar <b>:name</b> porque tiene :text relacionado.',
'disabled' => 'Advertencia: No se permite desactivar <b>:name</b> porque tiene :text relacionado.', 'disabled' => 'Advertencia: No se permite desactivar <b>:name</b> porque tiene :text relacionado.',
'disable_code' => 'Warning: You are not allowed to disable or change the currency of <b>:name</b> because it has :text related.', 'disable_code' => 'Advertencia: No puede desactivar o cambiar la moneda <b>:name</b> porque tiene :text relacionado.',
'payment_cancel' => 'Advertencia: Ha cancelado su reciente método de pago :method!',
], ],
]; ];

View File

@ -2,10 +2,9 @@
return [ return [
'title' => 'Token de API', 'api_key' => 'Clave API',
'api_token' => 'Token',
'my_apps' => 'Mis Apps', 'my_apps' => 'Mis Apps',
'pre_sale' => 'Pre-Sale', 'pre_sale' => 'Preventa',
'top_paid' => 'Más Pagado', 'top_paid' => 'Más Pagado',
'new' => 'Nuevo', 'new' => 'Nuevo',
'top_free' => 'Top Gratis', 'top_free' => 'Top Gratis',
@ -13,20 +12,19 @@ return [
'search' => 'Buscar', 'search' => 'Buscar',
'install' => 'Instalar', 'install' => 'Instalar',
'buy_now' => 'Comprar Ahora', 'buy_now' => 'Comprar Ahora',
'token_link' => 'Haga <a href="https://akaunting.com/tokens" target="_blank">Haga click aquí</a> para obtener su token de API.', 'get_api_key' => '<a href=":url" target="_blank">Haga clic aquí</a> para obtener su clave API.',
'no_apps' => 'No hay aplicaciones en esta categoría, aún.', 'no_apps' => 'No hay aplicaciones en esta categoría, aún.',
'developer' => '¿Eres un desarrollador? <a href="https://akaunting.com/blog/akaunting-app-store" target="_blank">Aquí</a> puedes aprender cómo crear una aplicación y comenzar a venderla hoy!', 'become_developer' => '¿Eres un desarrollador? <a href=":url" target="_blank">Aquí</a> puedes aprender cómo crear una aplicación y empezar a vender hoy!',
'recommended_apps' => 'Aplicaciones recomendadas',
'recommended_apps' => 'Recommended Apps',
'about' => 'Acerca de', 'about' => 'Acerca de',
'added' => 'Agregado', 'added' => 'Agregado',
'updated' => 'Actualizado', 'updated' => 'Actualizado',
'compatibility' => 'Compatibilidad', 'compatibility' => 'Compatibilidad',
'documentation' => 'Documentation', 'documentation' => 'Documentación',
'view' => 'View', 'view' => 'Ver',
'back' => 'Back', 'back' => 'Atrás',
'installed' => ':module instalado', 'installed' => ':module instalado',
'uninstalled' => ':module desinstalado', 'uninstalled' => ':module desinstalado',
@ -38,31 +36,30 @@ return [
'installation' => 'Instalación', 'installation' => 'Instalación',
'faq' => 'Preguntas Frecuentes', 'faq' => 'Preguntas Frecuentes',
'changelog' => 'Historial de Cambios', 'changelog' => 'Historial de Cambios',
'reviews' => 'Reviews', 'reviews' => 'Revisiones',
], ],
'installation' => [ 'installation' => [
'header' => 'Instalación de Aplicación', 'header' => 'Instalación de Aplicación',
'download' => 'Descargando archivo :module .', 'download' => 'Descargando :module',
'unzip' => 'Extrayendo archivo :module .', 'unzip' => 'Extrayendo archivos de :module',
'file_copy' => 'Copying :module files.', 'file_copy' => 'Copiando archivos de :module',
'migrate' => 'Applying :module updates.', 'finish' => 'Finalizando la instalación de :module',
'finish' => 'The update was successfully installed. You will be redirect Update Center.', 'redirect' => ':module instalado, redirigiendo a la página de actualizaciones',
'install' => 'Instalando archivos de :module .', 'install' => 'Instalando :module',
], ],
'errors' => [ 'errors' => [
'download' => ':module can not download!', 'download' => 'No se puede descargar :module',
'upload' => 'Downloaded :module can not saved!', 'zip' => 'No se puede crear el archivo zip :module',
'unzip' => ':module can not unzip!', 'unzip' => 'No se puede descomprimir :module',
'file_copy' => ':module files can not copy!', 'file_copy' => 'No se pueden copiar los archivos de :module',
'migrate' => ':module migrate broken!', 'finish' => 'No se puede finalizar la instalación de :module',
'migrate core' => ':module already latest version so then yon can not update.',
], ],
'badge' => [ 'badge' => [
'installed' => 'Instalado', 'installed' => 'Instalado',
'pre_sale' => 'Pre-Sale', 'pre_sale' => 'Preventa',
], ],
'button' => [ 'button' => [
@ -72,14 +69,16 @@ return [
], ],
'my' => [ 'my' => [
'purchased' => 'Comprado', 'purchased' => 'Comprado',
'installed' => 'Instalado', 'installed' => 'Instalado',
], ],
'reviews' => [ 'reviews' => [
'button' => [ 'button' => [
'add' => 'Add a Review' 'add' => 'Añadir una reseña'
], ],
'na' => 'There are no reviews.'
] 'na' => 'No hay reseñas.'
],
]; ];

View File

@ -2,8 +2,9 @@
return [ return [
'previous' => '&laquo; Anterior', 'previous' => 'Anterior',
'next' => 'Siguiente &raquo;', 'next' => 'Siguiente',
'showing' => 'Mostrando :first a :last de :total :type', 'showing' => ':first-:last de :total registros.',
'page' => 'por página.',
]; ];

View File

@ -2,13 +2,13 @@
return [ return [
'reconcile' => 'Reconciliar', 'reconcile' => 'Conciliar',
'reconciled' => 'Reconciliado', 'reconciled' => 'Concialiado',
'closing_balance' => 'Balance de Cierre', 'closing_balance' => 'Balance de Cierre',
'unreconciled' => 'Enmistados', 'unreconciled' => 'Sin conciliar',
'list_transactions' => 'Lista de transacciones', 'transactions' => 'Transacciones',
'start_date' => 'Fecha de Comienzo', 'start_date' => 'Fecha Inicial',
'end_date' => 'Fecha de Finalización', 'end_date' => 'Fecha Final',
'cleared_amount' => 'Monto Liquidado', 'cleared_amount' => 'Monto Liquidado',
'deposit' => 'Depósito', 'deposit' => 'Depósito',
'withdrawal' => 'Retiro', 'withdrawal' => 'Retiro',

View File

@ -12,6 +12,7 @@ return [
'net_profit' => 'Ganancia Neta', 'net_profit' => 'Ganancia Neta',
'total_expenses' => 'Total de Gastos', 'total_expenses' => 'Total de Gastos',
'net' => 'Neto', 'net' => 'Neto',
'income_expense' => 'Ingresos y Gastos',
'summary' => [ 'summary' => [
'income' => 'Resumen de Ingresos', 'income' => 'Resumen de Ingresos',
@ -20,11 +21,10 @@ return [
'tax' => 'Resumen de impuestos', 'tax' => 'Resumen de impuestos',
], ],
'quarter' => [ 'charts' => [
'1' => 'Ene-Mar', 'line' => 'Línea',
'2' => 'Abr-Jun', 'bar' => 'Barra',
'3' => 'Jul-Sep', 'pie' => 'Pastel',
'4' => 'Oct-Dic',
], ],
]; ];

View File

@ -3,15 +3,17 @@
return [ return [
'company' => [ 'company' => [
'description' => 'Cambiar el nombre de la empresa, correo electrónico, dirección, RFC, etc',
'name' => 'Nombre', 'name' => 'Nombre',
'email' => 'Correo Electrónico', 'email' => 'Correo Electrónico',
'phone' => 'Teléfono', 'phone' => 'Teléfono',
'address' => 'Dirección', 'address' => 'Dirección',
'logo' => 'Logotipo', 'logo' => 'Logotipo',
], ],
'localisation' => [ 'localisation' => [
'tab' => 'Localización', 'description' => 'Establecer año fiscal, zona horaria, formato de fecha y más configuraciones locales',
'financial_start' => 'Financial Year Start', 'financial_start' => 'Inicio del ejercicio financiero',
'timezone' => 'Zona Horaria', 'timezone' => 'Zona Horaria',
'date' => [ 'date' => [
'format' => 'Formato de Fecha', 'format' => 'Formato de Fecha',
@ -28,8 +30,9 @@ return [
'after' => 'Después del número', 'after' => 'Después del número',
], ],
], ],
'invoice' => [ 'invoice' => [
'tab' => 'Factura', 'description' => 'Personalizar prefijo de factura, número, términos, pie de página etc',
'prefix' => 'Prefijo de Número', 'prefix' => 'Prefijo de Número',
'digit' => 'Número de Dígitos', 'digit' => 'Número de Dígitos',
'next' => 'Siguiente Número', 'next' => 'Siguiente Número',
@ -44,16 +47,25 @@ return [
'rate' => 'Tasa', 'rate' => 'Tasa',
'quantity_name' => 'Nombre de la Cantidad', 'quantity_name' => 'Nombre de la Cantidad',
'quantity' => 'Cantidad', 'quantity' => 'Cantidad',
'payment_terms' => 'Condiciones de pago',
'title' => 'Título',
'subheading' => 'Subtítulo',
'due_receipt' => 'Vence después de la recepción',
'due_days' => 'Vencimiento dentro de :days días',
'choose_template' => 'Elegir plantilla de factura',
'default' => 'Predeterminado',
'classic' => 'Clásica',
'modern' => 'Moderna',
], ],
'default' => [ 'default' => [
'tab' => 'Valores Predeterminados', 'description' => 'Cuenta predeterminada, moneda, idioma de su empresa',
'account' => 'Cuenta Predeterminada', 'list_limit' => 'Registros Por Página',
'currency' => 'Moneda Predeterminada', 'use_gravatar' => 'Usar Gravatar',
'tax' => 'Tasa de Impuesto Predeterminado',
'payment' => 'Método de Pago Predeterminado',
'language' => 'Idioma Predeterminado',
], ],
'email' => [ 'email' => [
'description' => 'Cambiar el protocolo de envío y plantillas de correo electrónico',
'protocol' => 'Protocolo', 'protocol' => 'Protocolo',
'php' => 'PHP Mail', 'php' => 'PHP Mail',
'smtp' => [ 'smtp' => [
@ -68,36 +80,44 @@ return [
'sendmail' => 'Sendmail', 'sendmail' => 'Sendmail',
'sendmail_path' => 'Ruta de acceso de Sendmail', 'sendmail_path' => 'Ruta de acceso de Sendmail',
'log' => 'Registrar Correos Electrónicos', 'log' => 'Registrar Correos Electrónicos',
'templates' => [
'subject' => 'Asunto',
'body' => 'Contenido',
'tags' => '<strong>Etiquetas disponibles:</strong> :tag_list',
'invoice_new_customer' => 'Nueva Plantilla de Factura (enviada al cliente)',
'invoice_remind_customer' => 'Plantilla de Recordatorio de Factura (enviada al cliente)',
'invoice_remind_admin' => 'Plantilla de Recordatorio de Factura (enviado al administrador)',
'invoice_recur_customer' => 'Plantilla de Factura Recurrente (enviada al cliente)',
'invoice_recur_admin' => 'Plantilla de Factura Recurrente (enviada al administrador)',
'invoice_payment_customer' => 'Plantilla de Pago Recibido (enviada al cliente)',
'invoice_payment_admin' => 'Plantilla de Pago Recibido (enviada al administrador)',
'bill_remind_admin' => 'Plantilla de Recordatorio de Factura por pagar (enviada a administrador)',
'bill_recur_admin' => 'Plantilla de Factura Recurrente por pagar (enviada al administrador)',
],
], ],
'scheduling' => [ 'scheduling' => [
'tab' => 'Programación', 'name' => 'Programación',
'description' => 'Recordatorios y comandos automáticos para recurrentes',
'send_invoice' => 'Enviar Recordatorio de Factura', 'send_invoice' => 'Enviar Recordatorio de Factura',
'invoice_days' => 'Enviar Después del vencimiento', 'invoice_days' => 'Enviar Después del vencimiento',
'send_bill' => 'Enviar Recordatorio de Recibo', 'send_bill' => 'Enviar Recordatorio de Recibo',
'bill_days' => 'Enviar Antes del Vencimiento', 'bill_days' => 'Enviar Antes del Vencimiento',
'cron_command' => 'Comando de Cron', 'cron_command' => 'Comando de Cron',
'schedule_time' => 'Hora de Ejecución', 'schedule_time' => 'Hora de Ejecución',
'send_item_reminder'=> 'Enviar Recordatorio del Elemento',
'item_stocks' => 'Enviar Cuando Exista Stock del Elemento',
], ],
'appearance' => [
'tab' => 'Apariencia', 'categories' => [
'theme' => 'Tema', 'description' => 'Categorías ilimitadas para ingresos, gastos y artículos',
'light' => 'Claro',
'dark' => 'Oscuro',
'list_limit' => 'Registros por Página',
'use_gravatar' => 'Usar Gravatar',
], ],
'system' => [
'tab' => 'Sistema', 'currencies' => [
'session' => [ 'description' => 'Crear, administrar monedas y establecer sus tarifas',
'lifetime' => 'Duración de la Sesión (Minutos)', ],
'handler' => 'Gestor de Sesión',
'file' => 'Archivo', 'taxes' => [
'database' => 'Base de Datos', 'description' => 'Tasas de impuestos fijas, normales, inclusivas y compuestas',
],
'file_size' => 'Tamaño Máximo de Archivo (MB)',
'file_types' => 'Tipos de Archivo Permitidos',
], ],
]; ];

View File

@ -5,7 +5,7 @@ return [
'rate' => 'Tasa', 'rate' => 'Tasa',
'rate_percent' => 'Tasa (%)', 'rate_percent' => 'Tasa (%)',
'normal' => 'Normal', 'normal' => 'Normal',
'inclusive' => 'Inclusive', 'inclusive' => 'Incluido',
'compound' => 'Compound', 'compound' => 'Compuesto',
'fixed' => 'Fijo',
]; ];

View File

@ -33,19 +33,20 @@ return [
'confirmed' => ':attribute, la confirmación no coincide.', 'confirmed' => ':attribute, la confirmación no coincide.',
'date' => ':attribute no es una fecha válida.', 'date' => ':attribute no es una fecha válida.',
'date_format' => ':attribute no coincide con el formato :format.', 'date_format' => ':attribute no coincide con el formato :format.',
'different' => ':attribute y :other deben ser diferentes.', 'different' => ':attribute y :other deben ser <strong>diferentes</strong>.',
'digits' => ':attribute debe tener :digits dígitos.', 'digits' => ':attribute debe tener :digits dígitos.',
'digits_between' => ':attribute debe tener entre :min y :max dígitos.', 'digits_between' => ':attribute debe tener entre :min y :max dígitos.',
'dimensions' => ':attribute tiene dimensiones de imagen no válidas.', 'dimensions' => ':attribute tiene dimensiones de imagen no válidas.',
'distinct' => ':attribute tiene un valor duplicado.', 'distinct' => ':attribute tiene un valor duplicado.',
'email' => ':attribute debe ser una dirección de correo electrónico válida.', 'email' => ':attribute debe ser una <strong>dirección de correo electrónico</strong> válida.',
'ends_with' => ':attribute debe terminar con uno de los siguientes: :values',
'exists' => 'El :attribute seleccionado es inválido.', 'exists' => 'El :attribute seleccionado es inválido.',
'file' => ':attribute debe ser un archivo.', 'file' => ':attribute debe ser un <strong>archivo</strong>.',
'filled' => ':attribute debe tener un valor.', 'filled' => ':attribute debe tener un <strong>valor</strong>.',
'image' => ':attribute debe ser una imagen.', 'image' => ':attribute debe ser una <strong>imagen</strong>.',
'in' => 'El :attribute seleccionado es inválido.', 'in' => 'El :attribute seleccionado es inválido.',
'in_array' => ':attribute no existe en :other.', 'in_array' => ':attribute no existe en :other.',
'integer' => ':attribute debe ser un número entero.', 'integer' => ':attribute debe ser un <strong>entero</strong>.',
'ip' => ':attribute debe ser una dirección IP válida.', 'ip' => ':attribute debe ser una dirección IP válida.',
'json' => ':attribute debe ser una cadena JSON válida.', 'json' => ':attribute debe ser una cadena JSON válida.',
'max' => [ 'max' => [
@ -64,9 +65,9 @@ return [
], ],
'not_in' => 'El :attribute seleccionado es inválido.', 'not_in' => 'El :attribute seleccionado es inválido.',
'numeric' => ':attribute debe ser un número.', 'numeric' => ':attribute debe ser un número.',
'present' => ':attribute debe tener un valor.', 'present' => ':attribute debe estar <strong>presente</strong>.',
'regex' => ':attribute tiene un formato incorrecto.', 'regex' => 'El formato de :attribute es <strong>inválido</strong>.',
'required' => ':attribute es obligatorio.', 'required' => 'El campo :attribute es <strong>obligatorio</strong>.',
'required_if' => ':attribute es obligatorio cuando :other es :value.', 'required_if' => ':attribute es obligatorio cuando :other es :value.',
'required_unless' => ':attribute es obligatorio a menos que :other esté en :values.', 'required_unless' => ':attribute es obligatorio a menos que :other esté en :values.',
'required_with' => ':attribute es obligatorio cuando :values está presente.', 'required_with' => ':attribute es obligatorio cuando :values está presente.',
@ -77,14 +78,14 @@ return [
'size' => [ 'size' => [
'numeric' => ':attribute debe ser :size.', 'numeric' => ':attribute debe ser :size.',
'file' => ':attribute debe tener :size kilobytes.', 'file' => ':attribute debe tener :size kilobytes.',
'string' => ':attribute debe tener :size caracteres.', 'string' => ':attribute debe tener <strong>:size caracteres</strong>.',
'array' => ':attribute debe tener al menos :size items.', 'array' => ':attribute debe tener al menos :size items.',
], ],
'string' => ':attribute debe ser una cadena de caracteres.', 'string' => ':attribute debe ser una <strong>cadena de caracteres</strong>.',
'timezone' => ':attribute debe ser una zona válida.', 'timezone' => ':attribute debe ser una zona válida.',
'unique' => ':attribute ya ha sido tomado.', 'unique' => 'El atributo :attribute ya ha sido <strong>tomado</strong>.',
'uploaded' => ':attribute no se pudo cargar.', 'uploaded' => 'El :attribute <strong>falló</strong> al subirlo.',
'url' => ':attribute tiene un formato incorrecto.', 'url' => 'El formato de :attribute es <strong>inválido</strong>.',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -102,7 +103,7 @@ return [
'rule-name' => 'custom-message', 'rule-name' => 'custom-message',
], ],
'invalid_currency' => 'El código de :attribute es incorrecto.', 'invalid_currency' => 'El código de :attribute es incorrecto.',
'invalid_amount' => 'The amount :attribute is invalid.', 'invalid_amount' => 'La cantidad :attribute no es válida.',
], ],
/* /*

View File

@ -2,23 +2,22 @@
return [ return [
'total_incomes' => 'Total de Ingresos', 'total_income' => 'Total de Ingresos',
'receivables' => 'Cuentas por Cobrar', 'receivables' => 'Cuentas por cobrar',
'open_invoices' => 'Facturas Abiertas', 'open_invoices' => 'Facturas Abiertas',
'overdue_invoices' => 'Facturas Vencidas', 'overdue_invoices' => 'Facturas Vencidas',
'total_expenses' => 'Total de Gastos', 'total_expenses' => 'Total de Gastos',
'payables' => 'Cuentas por Pagar', 'payables' => 'Cuentas por pagar',
'open_bills' => 'Recibos Abiertos', 'open_bills' => 'Recibos Abiertos',
'overdue_bills' => 'Recibos Vencidos', 'overdue_bills' => 'Recibos Vencidos',
'total_profit' => 'Ganancias Totales', 'total_profit' => 'Ganancias Totales',
'open_profit' => 'Ganancias Pendientes', 'open_profit' => 'Ganancias Pendientes',
'overdue_profit' => 'Ganancias Vencidas', 'overdue_profit' => 'Ganancias Vencidas',
'cash_flow' => 'Flujo de Efectivo', 'cash_flow' => 'Flujo de Efectivo',
'no_profit_loss' => 'No hay Perdida de Ganancias', 'no_profit_loss' => 'Sin pérdida de ganancias',
'incomes_by_category' => 'Ingresos por Categoría', 'income_by_category' => 'Ingresos por Categoría',
'expenses_by_category' => 'Gastos por Categoría', 'expenses_by_category' => 'Gastos por Categoría',
'account_balance' => 'Saldo de la Cuenta', 'account_balance' => 'Saldo de la Cuenta',
'latest_incomes' => 'Últimos Ingresos', 'latest_income' => 'Últimos Ingresos',
'latest_expenses' => 'Últimos Gastos', 'latest_expenses' => 'Últimos Gastos',
]; ];

View File

@ -13,6 +13,7 @@ return [
'current_email' => 'Trenutni E-mail', 'current_email' => 'Trenutni E-mail',
'reset' => 'Resetiranje', 'reset' => 'Resetiranje',
'never' => 'nikad', 'never' => 'nikad',
'landing_page' => 'Odredišna stranica',
'password' => [ 'password' => [
'current' => 'Lozinka', 'current' => 'Lozinka',
@ -23,6 +24,7 @@ return [
'error' => [ 'error' => [
'self_delete' => 'Pogreška: Nije moguće izbrisati sebe!', 'self_delete' => 'Pogreška: Nije moguće izbrisati sebe!',
'self_disable' => 'Pogreška: Ne možete se onemogućiti!',
'no_company' => 'Pogleška: Nema dodijeljene tvrtke za vaš račun. Obratite se administratoru sustava.', 'no_company' => 'Pogleška: Nema dodijeljene tvrtke za vaš račun. Obratite se administratoru sustava.',
], ],

View File

@ -2,54 +2,59 @@
return [ return [
'bill_number' => 'Broj računa', 'bill_number' => 'Broj računa',
'bill_date' => 'Datum računa', 'bill_date' => 'Datum računa',
'total_price' => 'Ukupna cijena', 'total_price' => 'Ukupna cijena',
'due_date' => 'Datum dospijeća', 'due_date' => 'Datum dospijeća',
'order_number' => 'Broj narudžbe', 'order_number' => 'Broj narudžbe',
'bill_from' => 'Račun od', 'bill_from' => 'Račun od',
'quantity' => 'Količina', 'quantity' => 'Količina',
'price' => 'Cijena', 'price' => 'Cijena',
'sub_total' => 'Podzbroj', 'sub_total' => 'Podzbroj',
'discount' => 'Popust', 'discount' => 'Popust',
'tax_total' => 'Porez Ukupno', 'tax_total' => 'Porez Ukupno',
'total' => 'Ukupno', 'total' => 'Ukupno',
'item_name' => 'Naziv stavke|Nazivi stavaka', 'item_name' => 'Naziv stavke|Nazivi stavaka',
'show_discount' => ':discount% popusta', 'show_discount' => ':discount% popusta',
'add_discount' => 'Dodaj popust', 'add_discount' => 'Dodaj popust',
'discount_desc' => 'od podzbroja', 'discount_desc' => 'od podzbroja',
'payment_due' => 'Dospijeća plaćanja', 'payment_due' => 'Dospijeća plaćanja',
'amount_due' => 'Dospjeli iznos', 'amount_due' => 'Dospjeli iznos',
'paid' => 'Plaćeno', 'paid' => 'Plaćeno',
'histories' => 'Povijesti', 'histories' => 'Povijesti',
'payments' => 'Plaćanja', 'payments' => 'Plaćanja',
'add_payment' => 'Dodaj plaćanje', 'add_payment' => 'Dodaj plaćanje',
'mark_received' => 'Označi kao primljeno', 'mark_received' => 'Označi kao primljeno',
'download_pdf' => 'Preuzmite PDF', 'download_pdf' => 'Preuzmite PDF',
'send_mail' => 'Pošalji e-mail', 'send_mail' => 'Pošalji e-mail',
'create_bill' => 'Kreiraj fakturu',
'receive_bill' => 'Primiti račun',
'make_payment' => 'Kreiraj uplatu',
'statuses' => [ 'statuses' => [
'draft' => 'Skica', 'draft' => 'Skica',
'received' => 'Primljeno', 'received' => 'Primljeno',
'partial' => 'Djelomično', 'partial' => 'Djelomično',
'paid' => 'Plaćeno', 'paid' => 'Plaćeno',
'overdue' => 'Dospjelo',
'unpaid' => 'Neplaćeno',
], ],
'messages' => [ 'messages' => [
'received' => 'Račun označen kao uspješno primljen!', 'received' => 'Račun označen kao uspješno primljen!',
'draft' => 'Ovo je <b>SKICA</b> računa i odrazit će se na grafikone nakon što se zaprimi.', 'draft' => 'Ovo je <b>SKICA</b> računa i odrazit će se na grafikone nakon što se zaprimi.',
'status' => [ 'status' => [
'created' => 'Kreirano :date', 'created' => 'Kreirano :date',
'receive' => [ 'receive' => [
'draft' => 'Nije poslano', 'draft' => 'Nije poslano',
'received' => 'Zaprimljeno :date', 'received' => 'Zaprimljeno :date',
], ],
'paid' => [ 'paid' => [
'await' => 'Čeka plaćanje', 'await' => 'Čeka plaćanje',
], ],
], ],

View File

@ -0,0 +1,19 @@
<?php
return [
'bulk_actions' => 'Skupna akcija | Skupne akcije',
'selected' => 'odabrano',
'message' => [
'duplicate' => 'Jeste li sigurni da želite <b> duplicirati </b> odabrani zapis?',
'delete' => 'Jeste li sigurni da želite <b> izbrisati </b> odabrani zapis? | Jeste li sigurni da želite <b> izbrisati </b> odabrane zapise?',
'export' => 'Jeste li sigurni da želite <b> izvoziti </b> odabrani zapis? | Jeste li sigurni da želite <b> izvoziti </b> odabrane zapise?',
'enable' => 'Jeste li sigurni da želite <b> omogućiti </b> odabrani zapis? | Jeste li sigurni da želite <b> omogućiti </b> odabrane zapise?',
'disable' => 'Jeste li sigurni da želite <b> onemogućiti </b> odabrani zapis? | Jeste li sigurni da želite <b> onemogućiti </b> odabrane zapise?',
'paid' => 'Jeste li sigurni da odabranu fakturu želite označiti kao <b> plaćenu </b>? | Jeste li sigurni da odabrane račune želite označiti kao <b> plaćene </b>?',
'sent' => 'Jeste li sigurni da odabranu fakturu želite označiti kao <b> poslanu </b>? | Jeste li sigurni da odabrane račune želite označiti kao <b> poslane </b>?',
'received' => 'Jeste li sigurni da odabrani račun želite označiti kao <b> primljeni </b>? | Jeste li sigurni da odabrane račune želite označiti kao <b> primljene </b>?',
],
];

View File

@ -4,10 +4,11 @@ return [
'domain' => 'Domena', 'domain' => 'Domena',
'logo' => 'Logo', 'logo' => 'Logo',
'manage' => 'Upravljanje tvrtkama',
'all' => 'Sve tvrtke',
'error' => [ 'error' => [
'delete_active' => 'Pogreška: Nije moguće izbrisati aktivnu tvrtku, molimo da je prvo promijenite!', 'not_user_company' => 'Pogreška: Nije vam dopušteno mijenjati ovu tvrtku!',
'delete_active' => 'Pogreška: Aktivno poduzeće nije moguće izbrisati. Molimo da najprije prijeđite na sljedeću!',
'disable_active' => 'Pogreška: Ne može se onemogućiti aktivna tvrtka. Molimo da je najprije promijenite!',
], ],
]; ];

View File

@ -2,15 +2,11 @@
return [ return [
'allow_login' => 'Omogućiti prijavu?', 'can_login' => 'Možete li se prijaviti?',
'user_created' => 'Korisnik kreiran', 'user_created' => 'Korisnik kreiran',
'error' => [ 'error' => [
'email' => 'E-mail je već zauzet.' 'email' => 'E-mail je već zauzet.',
], ],
'notification' => [
'message' => ':customer je uplatio :amount za fakturu broj :invoice_number.',
'button' => 'Prikaži',
],
]; ];

View File

@ -0,0 +1,11 @@
<?php
return [
'error' => [
'not_user_dashboard' => 'Pogreška: Nije vam dopušteno mijenjati ovu nadzornu ploču!',
'delete_last' => 'Pogreška: Ne može se izbrisati zadnja nadzorna ploča. Prvo stvorite novi!',
'disable_last' => 'Pogreška: Ne može se izbrisati zadnja nadzorna ploča. Prvo stvorite novi!',
],
];

View File

@ -2,15 +2,33 @@
return [ return [
'accounts_cash' => 'Gotovina', 'accounts' => [
'categories_deposit' => 'Depozit', 'cash' => 'Gotovina',
'categories_sales' => 'Prodaje', ],
'currencies_usd' => 'Američki dolar',
'currencies_eur' => 'Euro', 'categories' => [
'currencies_gbp' => 'Britanska funta', 'deposit' => 'Depozit',
'currencies_try' => 'Turska lira', 'sales' => 'Prodaje',
'taxes_exempt' => 'Izuzeto od poreza', ],
'taxes_normal' => 'Normalan porez',
'taxes_sales' => 'Porez prodaje', 'currencies' => [
'usd' => 'Američki dollar',
'eur' => 'Euro',
'gbp' => 'Britanska funta',
'try' => 'Turska lira',
],
'offline_payments' => [
'cash' => 'Gotovina',
'bank' => 'Bankovna doznaka',
],
'reports' => [
'income' => 'Mjesečni sažetak prihoda po kategorijama.',
'expense' => 'Mjesečni sažetak troškova po kategorijama.',
'income_expense' => 'Mjesečni prihod prema izdacima po kategorijama.',
'tax' => 'Tromjesečni porezni rezime.',
'profit_loss' => 'Tromjesečni dobitak i gubitak po kategorijama.',
],
]; ];

View File

@ -0,0 +1,51 @@
<?php
return [
'invoice_new_customer' => [
'subject' => '{invoice_number} faktura je kreirana',
'body' => 'Poštovani, {customer_name}, <br /> <br /> Za vas smo pripremili slijedeću fakturu: <strong> {invoice_number} </strong>. <br /> <br /> Možete vidjeti detalje računa i nastaviti s plaćanje sa slijedeće veze: <a href="{invoice_guest_link}"> {invoice_number} </a>. <br /> <br /> Slobodno nas kontaktirajte po bilo kojem pitanju. <br /> <br /> Srdačan pozdrav, <br /> {company_name}',
],
'invoice_remind_customer' => [
'subject' => '{invoice_number} obavijest o zakašnjenju računa',
'body' => 'Poštovani, {customer_name}, <br /><br /> Ovo je zakašnjelo upozorenje za <strong> {invoice_number} </strong> fakture. <br /> <br /> Ukupni račun fakture je {invoice_total} i dospio je < strong> {invoice_due_date} </strong>. <br /> <br />Pojedinosti o računu možete vidjeti i nastaviti s plaćanjem sa sljedeće veze: <a href="{invoice_guest_link}"> {invoice_number} </ a >. <br /> <br /> Srdačan pozdrav, <br /> {company_name}',
],
'invoice_remind_admin' => [
'subject' => '{invoice_number} obavijest o neplaćanju fakture',
'body' => 'Poštovani, {customer_name}, <br /><br /> zaprimio je zakašnjelo upozorenje za <strong> {invoice_number} </strong> fakture. <br /> <br /> Ukupni račun fakture je {invoice_total} i dospio je < strong> {invoice_due_date} </strong>. <br /> <br />Pojedinosti o računu možete vidjeti i nastaviti s plaćanjem sa sljedeće veze: <a href="{invoice_guest_link}"> {invoice_number} </ a >. <br /> <br /> Srdačan pozdrav, <br /> {company_name}',
],
'invoice_recur_customer' => [
'subject' => '{invoice_number} faktura je kreirana',
'body' => 'Poštovani, {customer_name}, <br /> <br /> Za vas smo pripremili slijedeću fakturu: <strong> {invoice_number} </strong>. <br /> <br /> Možete vidjeti detalje računa i nastaviti s plaćanje sa slijedeće veze: <a href="{invoice_guest_link}"> {invoice_number} </a>. <br /> <br /> Slobodno nas kontaktirajte po bilo kojem pitanju. <br /> <br /> Srdačan pozdrav, <br /> {company_name}',
],
'invoice_recur_admin' => [
'subject' => '{invoice_number} faktura je kreirana',
'body' => 'Pozdrav, <br /> <br /> Na temelju {customer_name} ponavljajućeg kruga, <strong> {invoice_number} </strong> faktura je automatski stvorena. <br /> <br /> Pojedinosti računa možete vidjeti u odjeljku sljedeća veza: <a href="{invoice_admin_link}"> {invoice_number} </a>. <br /> <br /> Srdačan pozdrav, <br /> {company_name}',
],
'invoice_payment_customer' => [
'subject' => 'Primanje plaćanja za {invoice_number} fakturu',
'body' => 'Poštovani {customer_name},<br /><br />Hvala na uplati. Pojedinosti o plaćanju potražite u nastavku:<br /><br />-------------------------------------------------<br />Iznos: <strong>{transaction_total}</strong><br />Datum: <strong>{transaction_paid_date}</strong><br />Invoice Number: <strong>{invoice_number}</strong><br />-------------------------------------------------<br /><br />Pojedinosti računa uvijek možete vidjeti na sljedećoj poveznici: <a href="{invoice_guest_link}">{invoice_number}</a>.<br /><br />
Slobodno nas kontaktirajte za svako pitanje.<br /><br />Lijep Pozdrav,<br />{company_name}',
],
'invoice_payment_admin' => [
'subject' => 'Primanje plaćanja za {invoice_number} fakturu',
'body' => 'Pozdrav, <br /> <br /> Na temelju {customer_name} ponavljajućeg kruga, <strong> {invoice_number} </strong> faktura je automatski stvorena. <br /> <br /> Pojedinosti računa možete vidjeti u odjeljku sljedeća veza: <a href="{invoice_admin_link}"> {invoice_number} </a>. <br /> <br /> Srdačan pozdrav, <br /> {company_name}',
],
'bill_remind_admin' => [
'subject' => '{bill_number} obavijest o podjsetniku na račun',
'body' => 'Pozdrav,<br /><br />Ovo je podsjetnik za <strong>{bill_number}</strong> račun {vendor_name}.<br /><br />Ukupna vrijednost računa je {bill_total} i dospijeva<strong>{bill_due_date}</strong>.<br /><br />Pojedinosti o računu možete vidjeti na sljedećoj poveznici: <a href="{bill_admin_link}">{bill_number}</a>.<br /><br />Lijep pozdrav,<br />{company_name}',
],
'bill_recur_admin' => [
'subject' => '{bill_number} kreiran ponavljajući račun',
'body' => 'Pozdrav, <br /> <br /> Na temelju {vendor_name} ponavljajućeg kruga, <strong> {bill_number} </strong> faktura je automatski stvorena. <br /> <br /> Pojedinosti računa možete vidjeti u odjeljku sljedeća veza: <a href="{bill_admin_link}"> {bill_number} </a>. <br /> <br /> Srdačan pozdrav, <br /> {company_name}',
],
];

View File

@ -0,0 +1,23 @@
<?php
return [
'title' => [
'403' => 'Uh! Zabranjeni pristup',
'404' => 'Uh! Stranica nije pronađena',
'500' => 'Uh! Nešto je pošlo po zlu',
],
'header' => [
'403' => '403 Zabranjeno',
'404' => '404 Stranica nije pronađena',
'500' => '500 Interna pogreška poslužitelja',
],
'message' => [
'403' => 'Ne možete pristupiti ovoj stranici.',
'404' => 'Nismo mogli pronaći stranicu koju ste tražili.',
'500' => 'Odmah ćemo raditi na tome da to popravimo.',
],
];

View File

@ -2,6 +2,7 @@
return [ return [
'dashboards' => 'Nadzorna ploča|Nadzorne ploče',
'items' => 'Stavka|Stavke', 'items' => 'Stavka|Stavke',
'incomes' => 'Prihod|Prihodi', 'incomes' => 'Prihod|Prihodi',
'invoices' => 'Faktura|Fakture', 'invoices' => 'Faktura|Fakture',
@ -39,11 +40,19 @@ return [
'statuses' => 'Status|Statusi', 'statuses' => 'Status|Statusi',
'others' => 'Ostalo|Ostali', 'others' => 'Ostalo|Ostali',
'contacts' => 'Contact|Contacts', 'contacts' => 'Contact|Contacts',
'reconciliations' => 'Reconciliation|Reconciliations', 'reconciliations' => 'Pomirenje | pomirenja',
'deposits' => 'Deposit|Deposits', 'developers' => 'Razvojni programer | Razvojni programeri',
'withdrawals' => 'Withdrawal|Withdrawals', 'schedules' => 'Raspored | Rasporedi',
'groups' => 'Grupa | Grupe',
'charts' => 'Grafikon | Grafikoni',
'localisations' => 'Lokalizacija | lokalizacije',
'defaults' => 'Zadano | Zadana',
'widgets' => 'Widget | Widgeti',
'templates' => 'Predložak| Predlošci',
'sales' => 'Prodaja | Prodaje',
'purchases' => 'Kupnja | Kupnje',
'dashboard' => 'Nadzorna ploča', 'welcome' => 'Dobrodošli',
'banking' => 'Bankarstvo', 'banking' => 'Bankarstvo',
'general' => 'Općenito', 'general' => 'Općenito',
'no_records' => 'Nema zapisa.', 'no_records' => 'Nema zapisa.',
@ -55,15 +64,19 @@ return [
'no' => 'Ne', 'no' => 'Ne',
'na' => 'N/A', 'na' => 'N/A',
'daily' => 'Dnevno', 'daily' => 'Dnevno',
'weekly' => 'Tjedno',
'monthly' => 'Mjesečno', 'monthly' => 'Mjesečno',
'quarterly' => 'Kvartalno', 'quarterly' => 'Kvartalno',
'yearly' => 'Godišnje', 'yearly' => 'Godišnje',
'add' => 'Dodaj', 'add' => 'Dodaj',
'add_new' => 'Dodaj novo', 'add_new' => 'Dodaj novo',
'add_income' => 'Dodajte prihod',
'add_expense' => 'Dodajte trošak',
'show' => 'Prikaži', 'show' => 'Prikaži',
'edit' => 'Uredi', 'edit' => 'Uredi',
'delete' => 'Izbriši', 'delete' => 'Izbriši',
'send' => 'Pošalji', 'send' => 'Pošalji',
'share' => 'Podijeli',
'download' => 'Preuzmi', 'download' => 'Preuzmi',
'delete_confirm' => 'Potvrda brisanja :name: :type?', 'delete_confirm' => 'Potvrda brisanja :name: :type?',
'name' => 'Naziv', 'name' => 'Naziv',
@ -81,9 +94,11 @@ return [
'reference' => 'Referenca', 'reference' => 'Referenca',
'attachment' => 'Privitak', 'attachment' => 'Privitak',
'change' => 'Promijeni', 'change' => 'Promijeni',
'change_type' => 'Promijeni :tip',
'switch' => 'Prebaci', 'switch' => 'Prebaci',
'color' => 'Boja', 'color' => 'Boja',
'save' => 'Spremi', 'save' => 'Spremi',
'confirm' => 'Potvrdi',
'cancel' => 'Otkaži', 'cancel' => 'Otkaži',
'loading' => 'Učitavanje...', 'loading' => 'Učitavanje...',
'from' => 'Od', 'from' => 'Od',
@ -106,27 +121,54 @@ return [
'partially' => 'Djelomično', 'partially' => 'Djelomično',
'partially_paid' => 'Djelomično plaćeno', 'partially_paid' => 'Djelomično plaćeno',
'export' => 'Izvoz', 'export' => 'Izvoz',
'finish' => 'Finish', 'finish' => 'Završi',
'wizard' => 'Wizard', 'wizard' => 'Čarobnjak',
'skip' => 'Preskoči', 'skip' => 'Preskoči',
'enable' => 'Omogući', 'enable' => 'Omogući',
'disable' => 'Onemogući', 'disable' => 'Onemogući',
'select_all' => 'Označi Sve', 'select_all' => 'Označi Sve',
'unselect_all' => 'Unselect All', 'unselect_all' => 'Poništi odabir',
'go_to' => 'Go to :name',
'created_date' => 'Datum kreiranja', 'created_date' => 'Datum kreiranja',
'period' => 'Razdoblje', 'period' => 'Razdoblje',
'frequency' => 'Frekvencija',
'start' => 'Početak', 'start' => 'Početak',
'end' => 'Kraj', 'end' => 'Kraj',
'clear' => 'Clear', 'clear' => 'Očisti',
'difference' => 'Difference', 'difference' => 'Razlika',
'footer' => 'Podnožje',
'start_date' => 'Datum početka',
'end_date' => 'Datum završetka',
'basis' => 'Osnova',
'accrual' => 'Prirast',
'cash' => 'Gotovina',
'group_by' => 'Grupiraj po',
'accounting' => 'Računovodstvo',
'sort' => 'Sortiraj',
'width' => 'Širina',
'month' => 'Mjesec',
'year' => 'Godina',
'type_item_name' => 'Upišite naziv predmeta',
'no_data' => 'Nema podataka',
'no_matching_data' => 'Nema podudaranja podataka',
'clear_cache' => 'Očisti cache',
'go_to_dashboard' => 'Idite na nadzornu ploču',
'card' => [
'name' => 'Ime na kartici',
'number' => 'Broj kartice',
'expiration_date' => 'Datum isteka roka trajanja',
'cvv' => 'CVV kartice',
],
'title' => [ 'title' => [
'new' => 'Novo - :type', 'new' => 'Novo - :type',
'edit' => 'Uređivanje - :type', 'edit' => 'Uređivanje - :type',
'delete' => 'Izbriši: tip',
'create' => 'Kreiraj :type', 'create' => 'Kreiraj :type',
'send' => 'Send :type', 'send' => 'Pošalji :tip',
'get' => 'Get :type', 'get' => 'Dobijte: type',
'add' => 'Dodaj :type',
'manage' => 'Promijeni :type',
], ],
'form' => [ 'form' => [
@ -135,14 +177,30 @@ return [
'field' => '- :field odabir -', 'field' => '- :field odabir -',
'file' => 'Odaberite datoteku', 'file' => 'Odaberite datoteku',
], ],
'add_new' => 'Dodaj novo :field',
'no_file_selected' => 'Datoteka nije odabrana...', 'no_file_selected' => 'Datoteka nije odabrana...',
], ],
'date_range' => [ 'date_range' => [
'today' => 'Today', 'today' => 'Danas',
'yesterday' => 'Yesterday', 'yesterday' => 'Jučer',
'last_days' => 'Last :day Days', 'last_days' => 'Zadnjih :day dana',
'this_month' => 'This Month', 'this_month' => 'Ovaj mjesec',
'last_month' => 'Last Month', 'last_month' => 'Prethodni mjesec',
], ],
'empty' => [
'documentation' => 'Pregledajte <a href=":url" target="_blank"> dokumentaciju</a> za više detalja.',
'items' => 'Predmeti mogu biti proizvodi ili usluge. Stavke možete koristiti pri kreiranju faktura i računa kako bi se popunila polja cijene, poreza itd.',
'invoices' => 'Računi mogu biti jednokratni ili ponavljajući. Možete ih poslati klijentima i početi prihvaćati online plaćanja.',
'revenues' => 'Prihod je transakcija s plaćenim dohotkom. To može biti neovisan zapis (tj. Polog) ili priložen na računu.',
'customers' => 'Kupci su potrebni ako želite stvoriti račune. Također se mogu prijaviti na Portal za klijente i vidjeti njihov saldo.',
'bills' => 'Računi mogu biti jednokratni ili ponavljajući. Označavaju što dugujete svojim dobavljačima za proizvode ili usluge koje kupujete.',
'payments' => 'Plaćanje je transakcija s plaćenim troškovima. To može biti neovisan zapis (tj. Primitak hrane) ili priložen na računu.',
'vendors' => 'Dobavljači su potrebni ako želite stvoriti račune. Možete vidjeti stanje koje dugujete i filtrirati izvještaje od strane dobavljača.',
'transfers' => 'Transferi vam omogućuju premještanje novca s jednog računa na drugi, bilo da koriste istu valutu ili ne.',
'taxes' => 'Porezi se koriste za primjenu dodatnih naknada na fakture i račune. Regulatorni porezi utječu na vaše financije.',
'reconciliations' => 'Izmirenje banaka postupak je koji se izvodi kako bi se osiguralo da su bankovne evidencije vaše tvrtke također točne.',
],
]; ];

View File

@ -8,9 +8,9 @@ return [
'counter' => '{0} Nemate obavijesti|{1} Imate :count obavijest | [2,*] Imate :count obavijesti', 'counter' => '{0} Nemate obavijesti|{1} Imate :count obavijest | [2,*] Imate :count obavijesti',
'overdue_invoices' => '{1} :count dospjela faktura|[2,*] :count dospjelih faktura', 'overdue_invoices' => '{1} :count dospjela faktura|[2,*] :count dospjelih faktura',
'upcoming_bills' => '{1} :count nadolazeći račun|[2,*] :count nadolazećih računa', 'upcoming_bills' => '{1} :count nadolazeći račun|[2,*] :count nadolazećih računa',
'items_stock' => '{1} :count stavka ponestaje zaliha|[2,*] :count stavke ponestaje zaliha',
'view_all' => 'Vidi sve' 'view_all' => 'Vidi sve'
], ],
'docs_link' => 'https://akaunting.com/docs', 'docs_link' => 'https://akaunting.com/docs',
'support_link' => 'https://akaunting.com/support',
]; ];

View File

@ -2,67 +2,71 @@
return [ return [
'invoice_number' => 'Broj fakture', 'invoice_number' => 'Broj fakture',
'invoice_date' => 'Datum fakture', 'invoice_date' => 'Datum fakture',
'total_price' => 'Ukupna cijena', 'total_price' => 'Ukupna cijena',
'due_date' => 'Datum dospijeća', 'due_date' => 'Datum dospijeća',
'order_number' => 'Broj narudžbe', 'order_number' => 'Broj narudžbe',
'bill_to' => 'Naplatiti', 'bill_to' => 'Naplatiti',
'quantity' => 'Količina', 'quantity' => 'Količina',
'price' => 'Cijena', 'price' => 'Cijena',
'sub_total' => 'Podzbroj', 'sub_total' => 'Podzbroj',
'discount' => 'Popust', 'discount' => 'Popust',
'tax_total' => 'Porez Ukupno', 'tax_total' => 'Porez Ukupno',
'total' => 'Ukupno', 'total' => 'Ukupno',
'item_name' => 'Ime stavke|Imena stavaka', 'item_name' => 'Ime stavke|Imena stavaka',
'show_discount' => ':discount% popusta', 'show_discount' => ':discount% popusta',
'add_discount' => 'Dodaj popust', 'add_discount' => 'Dodaj popust',
'discount_desc' => 'od podzbroja', 'discount_desc' => 'od podzbroja',
'payment_due' => 'Dospijeća plaćanja', 'payment_due' => 'Dospijeća plaćanja',
'paid' => 'Plaćeno', 'paid' => 'Plaćeno',
'histories' => 'Povijesti', 'histories' => 'Povijesti',
'payments' => 'Plaćanja', 'payments' => 'Plaćanja',
'add_payment' => 'Dodaj plaćanje', 'add_payment' => 'Dodaj plaćanje',
'mark_paid' => 'Označi kao plaćeno', 'mark_paid' => 'Označi kao plaćeno',
'mark_sent' => 'Označi kao poslano', 'mark_sent' => 'Označi kao poslano',
'download_pdf' => 'Preuzmite PDF', 'mark_viewed' => 'Označi pogledano',
'send_mail' => 'Pošalji e-mail', 'download_pdf' => 'Preuzmite PDF',
'all_invoices' => 'Login to view all invoices', 'send_mail' => 'Pošalji e-mail',
'all_invoices' => 'Prijavite se za pregled svih faktura',
'create_invoice' => 'Kreiraj fakturu',
'send_invoice' => 'Pošalji fakturu',
'get_paid' => 'Biti plaćen',
'accept_payments' => 'Prihvatite mrežna plaćanja',
'statuses' => [ 'statuses' => [
'draft' => 'Skica', 'draft' => 'Skica',
'sent' => 'Poslano', 'sent' => 'Poslano',
'viewed' => 'Pogledano', 'viewed' => 'Pogledano',
'approved' => 'Odobreno', 'approved' => 'Odobreno',
'partial' => 'Djelomično', 'partial' => 'Djelomično',
'paid' => 'Plaćeno', 'paid' => 'Plaćeno',
'overdue' => 'Kasne',
'unpaid' => 'Neplaćeno',
], ],
'messages' => [ 'messages' => [
'email_sent' => 'E-mail računa je uspješno poslan!', 'email_sent' => 'E-adresa s računom je poslana!',
'marked_sent' => 'Račun je uspješno označen kao poslan!', 'marked_sent' => 'Račun označen kao poslan!',
'email_required' => 'Nema e-mail adrese za ovog kupca!', 'marked_paid' => 'Račun označen kao plaćen!',
'draft' => 'This is a <b>DRAFT</b> invoice and will be reflected to charts after it gets sent.', 'email_required' => 'Nema e-mail adrese za ovog kupca!',
'draft' => 'This is a <b>SKICA</b> invoice and will be reflected to charts after it gets sent.',
'status' => [ 'status' => [
'created' => 'Kreirano :date', 'created' => 'Kreirano :date',
'send' => [ 'viewed' => 'Pogledano',
'draft' => 'Not sent', 'send' => [
'sent' => 'Sent on :date', 'draft' => 'Nije poslano',
'sent' => 'Poslano: datum',
], ],
'paid' => [ 'paid' => [
'await' => 'Awaiting payment', 'await' => 'Čeka plaćanje',
], ],
], ],
], ],
'notification' => [
'message' => 'Primili ste ovaj e-mail jer imate nadolazeću :amount fakturu za :customer.',
'button' => 'Platite sada',
],
]; ];

View File

@ -2,17 +2,7 @@
return [ return [
'quantities' => 'Količina|Količine',
'sales_price' => 'Prodajna cijena', 'sales_price' => 'Prodajna cijena',
'purchase_price' => 'Nabavna cijena', 'purchase_price' => 'Nabavna cijena',
'sku' => 'SKU',
'notification' => [
'message' => [
'reminder' => 'Primili ste ovaj e-mail jer je preostalo samo :quantity :name.',
'out_of_stock' => 'Primili ste ovaj e-mail jer ponestaje zaliha za :name.',
],
'button' => 'Pogledaj sada',
],
]; ];

View File

@ -0,0 +1,11 @@
<?php
return [
'title' => 'Pod održavanjem',
'message' => 'Žao nam je, trenutačno smo na održavanju. Molimo pokušajte ponovo kasnije!',
'last-updated' => 'Ova je poruka zadnji put ažurirana: vremenska oznaka.',
];

View File

@ -8,22 +8,28 @@ return [
'deleted' => ':type izbrisan!', 'deleted' => ':type izbrisan!',
'duplicated' => ':type dupliciran!', 'duplicated' => ':type dupliciran!',
'imported' => ':type uvezen!', 'imported' => ':type uvezen!',
'enabled' => ':type enabled!', 'exported' => ': type izvezen!',
'disabled' => ':type disabled!', 'enabled' => ': type omogućena!',
'disabled' => ':type onemogućeno!',
], ],
'error' => [ 'error' => [
'over_payment' => 'Error: Payment not added! The amount you entered passes the total: :amount', 'over_payment' => 'Greška: Uplata nije dodana! Upisani iznos uplate premašuje ukupni iznos: :amount',
'not_user_company' => 'Pogreška: Nije vam dozvoljeno upravljanje ovom tvrtkom!', 'not_user_company' => 'Pogreška: Nije vam dozvoljeno upravljanje ovom tvrtkom!',
'customer' => 'Pogreška: Korisnik nije kreiran! :name već koristi ovu e-mail adresu.', 'customer' => 'Pogreška: Korisnik nije kreiran! :name već koristi ovu e-mail adresu.',
'no_file' => 'Pogreška: Nije odabrana nijedna datoteka!', 'no_file' => 'Pogreška: Nije odabrana nijedna datoteka!',
'last_category' => 'Pogreška: Nije moguće izbrisati zadnju :type kategoriju!', 'last_category' => 'Pogreška: Nije moguće izbrisati zadnju :type kategoriju!',
'invalid_apikey' => 'Pogreška: Upisani token nije valjan!', 'change_type' => 'Pogreška: Ne mogu promijeniti vrstu jer ima: tekst se odnosi!',
'import_column' => 'Error: :message Sheet name: :sheet. Line number: :line.', 'invalid_apikey' => 'Pogreška: Uneseni API token nije važeći!',
'import_sheet' => 'Error: Sheet name is not valid. Please, check the sample file.', 'import_column' => 'Greška:: poruka Naziv lista:: list. Broj retka:: linija.',
'import_sheet' => 'Pogreška: naziv liste nije važeći. Provjerite oglednu datoteku.',
], ],
'warning' => [ 'warning' => [
'deleted' => 'Upozorenje: Nije vam dozvoljeno izbrisati <b>:name</b> jer postoji poveznica s :text.', 'deleted' => 'Upozorenje: Nije vam dozvoljeno izbrisati <b>:name</b> jer postoji poveznica s :text.',
'disabled' => 'Upozorenje: Nije vam dozvoljeno onemogućiti <b>:name</b> jer postoji poveznica s :text.', 'disabled' => 'Upozorenje: Nije vam dozvoljeno onemogućiti <b>:name</b> jer postoji poveznica s :text.',
'disable_code' => 'Upozorenje: Nije vam dopušteno onesposobiti ili promijeniti valutu <b>: ime </b> jer je: tekst povezan.',
'payment_cancel' => 'Upozorenje: Otkazali ste nedavni: način plaćanja!',
], ],
]; ];

View File

@ -2,9 +2,9 @@
return [ return [
'title' => 'API Token', 'api_key' => 'API ključ',
'api_token' => 'Token',
'my_apps' => 'Moje aplikacije', 'my_apps' => 'Moje aplikacije',
'pre_sale' => 'Pre-Prodaja',
'top_paid' => 'Najbolje plaćeni', 'top_paid' => 'Najbolje plaćeni',
'new' => 'Novo', 'new' => 'Novo',
'top_free' => 'Najbolje besplatno', 'top_free' => 'Najbolje besplatno',
@ -12,17 +12,19 @@ return [
'search' => 'Pretraživanje', 'search' => 'Pretraživanje',
'install' => 'Instaliraj', 'install' => 'Instaliraj',
'buy_now' => 'Kupi odmah', 'buy_now' => 'Kupi odmah',
'token_link' => '<a href="https://akaunting.com/tokens" target="_blank">Kliknite ovdje</a> da biste dobili svoj API token.', 'get_api_key' => '<a href=":url" target="_blank"> Kliknite ovdje </a> da biste dobili svoj API ključ.',
'no_apps' => 'U ovoj kategoriji još nema aplikacija.', 'no_apps' => 'U ovoj kategoriji još nema aplikacija.',
'developer' => 'Jeste li programer? <a href="https://akaunting.com/blog/akaunting-app-store" target="_blank">Ovdje</a> možete naučiti kako kreirati aplikaciju i početi prodavati!', 'become_developer' => 'Jeste li programer? <a href=":url" target="_blank"> Ovdje </a> možete naučiti kako stvoriti aplikaciju i započeti s prodajom već danas!',
'recommended_apps' => 'Preporučene aplikacije',
'recommended_apps' => 'Recommended Apps',
'about' => 'O aplikaciji', 'about' => 'O aplikaciji',
'added' => 'Dodano', 'added' => 'Dodano',
'updated' => 'Ažurirano', 'updated' => 'Ažurirano',
'compatibility' => 'Kompatibilnost', 'compatibility' => 'Kompatibilnost',
'documentation' => 'Dokumentacija',
'view' => 'Pogledaj',
'back' => 'Natrag',
'installed' => ':module instalirana', 'installed' => ':module instalirana',
'uninstalled' => ':module deinstalirana', 'uninstalled' => ':module deinstalirana',
@ -34,30 +36,30 @@ return [
'installation' => 'Instalacija', 'installation' => 'Instalacija',
'faq' => 'ČPP', 'faq' => 'ČPP',
'changelog' => 'Popis promjena', 'changelog' => 'Popis promjena',
'reviews' => 'Reviews', 'reviews' => 'Recenzije',
], ],
'installation' => [ 'installation' => [
'header' => 'Instalacija aplikacije', 'header' => 'Instalacija aplikacije',
'download' => 'Preuzimanje :module datoteke.', 'download' => 'Preuzimanje :module',
'unzip' => 'Raspakiravanje :module datoteka.', 'unzip' => 'Raspakiravanje :module datoteka',
'file_copy' => 'Copying :module files.', 'file_copy' => 'Kopiranje :module datoteka',
'migrate' => 'Applying :module updates.', 'finish' => 'Dovršavanje :module instalacije',
'finish' => 'The update was successfully installed. You will be redirect Update Center.', 'redirect' => ': instaliran modul, preusmjeravanje na stranicu ažuriranja',
'install' => 'Instalacija :module datoteka.', 'install' => 'Instaliranje :module',
], ],
'errors' => [ 'errors' => [
'download' => ':module can not download!', 'download' => 'Ne mogu preuzeti: modul',
'upload' => 'Downloaded :module can not saved!', 'zip' => 'Ne može stvoriti: zip datoteku modula',
'unzip' => ':module can not unzip!', 'unzip' => 'Ne mogu raspakirati: modul',
'file_copy' => ':module files can not copy!', 'file_copy' => 'Ne mogu kopirati: datoteke modula',
'migrate' => ':module migrate broken!', 'finish' => 'Nije moguće dovršiti: instalacija modula',
'migrate core' => ':module already latest version so then yon can not update.',
], ],
'badge' => [ 'badge' => [
'installed' => 'Instalirano', 'installed' => 'Instalirano',
'pre_sale' => 'Pre-Prodaja',
], ],
'button' => [ 'button' => [
@ -67,14 +69,16 @@ return [
], ],
'my' => [ 'my' => [
'purchased' => 'Kupljeno', 'purchased' => 'Kupljeno',
'installed' => 'Instalirano', 'installed' => 'Instalirano',
], ],
'reviews' => [ 'reviews' => [
'button' => [ 'button' => [
'add' => 'Add a Review' 'add' => 'Dodajte recenziju'
], ],
'na' => 'There are no reviews.'
] 'na' => 'Nema recenzija.'
],
]; ];

View File

@ -4,7 +4,7 @@ return [
'whoops' => 'Ups!', 'whoops' => 'Ups!',
'hello' => 'Pozdrav!', 'hello' => 'Pozdrav!',
'salutation' => 'Regards,<br> :company_name', 'salutation' => 'Pozdrav, <br>: ime tvrtke',
'subcopy' => 'If youre having trouble clicking the ":text" button, copy and paste the URL below into your web browser: [:url](:url)', 'subcopy' => 'Ako imate problema s klikom na gumb ": tekst", kopirajte i zalijepite URL ispod u svoj web preglednik: [: url] (: url)',
]; ];

View File

@ -2,8 +2,9 @@
return [ return [
'previous' => '&laquo; Prethodna', 'previous' => 'Prethodno',
'next' => 'Sljedeća &raquo;', 'next' => 'Dalje',
'showing' => 'Prikazivanje :first do :last od :total :type', 'showing' => ': first-: last of: ukupno zapisa.',
'page' => 'po stranici.',
]; ];

View File

@ -2,13 +2,15 @@
return [ return [
'reconcile' => 'Reconcile', 'reconcile' => 'Pomiriti',
'reconciled' => 'Reconciled', 'reconciled' => 'Pomiren',
'closing_balance' => 'Closing Balance', 'closing_balance' => 'Završni saldo',
'unreconciled' => 'Unreconciled', 'unreconciled' => 'Nesaglašen',
'list_transactions' => 'List Transactions', 'transactions' => 'Transakcije',
'start_date' => 'Start Date', 'start_date' => 'Početni datum',
'end_date' => 'End Date', 'end_date' => 'Datum završetka',
'cleared_amount' => 'Cleared Amount', 'cleared_amount' => 'Očisti iznos',
'deposit' => 'Depozit',
'withdrawal' => 'Povlačenje',
]; ];

View File

@ -12,6 +12,7 @@ return [
'net_profit' => 'Neto dobit', 'net_profit' => 'Neto dobit',
'total_expenses' => 'Ukupni troškovi', 'total_expenses' => 'Ukupni troškovi',
'net' => 'Neto', 'net' => 'Neto',
'income_expense' => 'Prihodi i rashodi',
'summary' => [ 'summary' => [
'income' => 'Sažetak prihoda', 'income' => 'Sažetak prihoda',
@ -20,11 +21,10 @@ return [
'tax' => 'Sažetak poreza', 'tax' => 'Sažetak poreza',
], ],
'quarter' => [ 'charts' => [
'1' => 'Sij-Ožu', 'line' => 'Crta',
'2' => 'Tra-Lip', 'bar' => 'Bar',
'3' => 'Srp-Ruj', 'pie' => 'Pita',
'4' => 'Lis-Pro',
], ],
]; ];

View File

@ -3,14 +3,18 @@
return [ return [
'company' => [ 'company' => [
'description' => 'Promijenite naziv tvrtke, e-mail, adresu, porezni broj itd',
'name' => 'Naziv', 'name' => 'Naziv',
'email' => 'E-mail', 'email' => 'E-mail',
'phone' => 'Telefon', 'phone' => 'Telefon',
'address' => 'Adresa', 'address' => 'Adresa',
'logo' => 'Logo', 'logo' => 'Logo',
], ],
'localisation' => [ 'localisation' => [
'tab' => 'Lokalizacija', 'description' => 'Postavite fiskalnu godinu, vremensku zonu, format datuma i više',
'financial_start' => 'Početak fiskalne godine',
'timezone' => 'Vremenska zona',
'date' => [ 'date' => [
'format' => 'Format datuma', 'format' => 'Format datuma',
'separator' => 'Separator datuma', 'separator' => 'Separator datuma',
@ -20,39 +24,48 @@ return [
'slash' => 'Kosa crta (/)', 'slash' => 'Kosa crta (/)',
'space' => 'Razmak ( )', 'space' => 'Razmak ( )',
], ],
'timezone' => 'Vremenska zona',
'percent' => [ 'percent' => [
'title' => 'Pozicija postotka (%)', 'title' => 'Pozicija postotka (%)',
'before' => 'Ispred broja', 'before' => 'Ispred broja',
'after' => 'Nakon broja', 'after' => 'Nakon broja',
], ],
], ],
'invoice' => [ 'invoice' => [
'tab' => 'Faktura', 'description' => 'Prilagodite prefiks fakture, broj, uvjete, podnožje itd',
'prefix' => 'Prefiks proja', 'prefix' => 'Prefiks proja',
'digit' => 'Broj znamenki', 'digit' => 'Broj znamenki',
'next' => 'Sljedeći broj', 'next' => 'Sljedeći broj',
'logo' => 'Logo', 'logo' => 'Logo',
'custom' => 'Custom', 'custom' => 'Prilagođeno',
'item_name' => 'Ime stavke', 'item_name' => 'Ime stavke',
'item' => 'Stavke', 'item' => 'Stavke',
'product' => 'Proizvodi', 'product' => 'Proizvodi',
'service' => 'Usluge', 'service' => 'Usluge',
'price_name' => 'Price Name', 'price_name' => 'Naziv cijene',
'price' => 'Cijena', 'price' => 'Cijena',
'rate' => 'Rate', 'rate' => 'Stopa',
'quantity_name' => 'Quantity Name', 'quantity_name' => 'Naziv količine',
'quantity' => 'Količina', 'quantity' => 'Količina',
'payment_terms' => 'Uvjeti plaćanja',
'title' => 'Naslov',
'subheading' => 'Podnaslov',
'due_receipt' => 'Rok za primanje',
'due_days' => 'Rok dospijeća: nekoliko dana',
'choose_template' => 'Odaberite drugi predložak',
'default' => 'Zadano',
'classic' => 'Klasično',
'modern' => 'Moderno',
], ],
'default' => [ 'default' => [
'tab' => 'Zadano', 'description' => 'Zadani račun, valuta, jezik vaše tvrtke',
'account' => 'Zadani račun', 'list_limit' => 'Zapisa po stranici',
'currency' => 'Zadana valuta', 'use_gravatar' => 'Koristi Gravatar',
'tax' => 'Zadana stopa poreza',
'payment' => 'Zadani način plaćanja',
'language' => 'Zadani jezik',
], ],
'email' => [ 'email' => [
'description' => 'Promijenite protokol za slanje i e-mail predloške',
'protocol' => 'Protokol', 'protocol' => 'Protokol',
'php' => 'PHP Mail', 'php' => 'PHP Mail',
'smtp' => [ 'smtp' => [
@ -67,36 +80,44 @@ return [
'sendmail' => 'Sendmail', 'sendmail' => 'Sendmail',
'sendmail_path' => 'Sendmail putanja', 'sendmail_path' => 'Sendmail putanja',
'log' => 'E-mail evidentiranje', 'log' => 'E-mail evidentiranje',
'templates' => [
'subject' => 'Predmet',
'body' => 'Sadržaj',
'tags' => '<strong>Dostupne oznake:</strong> :tag_list',
'invoice_new_customer' => 'Predložak primljenog plaćanja (poslano kupcu)',
'invoice_remind_customer' => 'Predložak podsjetnika za fakturu (poslano kupcu)',
'invoice_remind_admin' => 'Predložak podsjetnika za fakturu (poslan administratoru)',
'invoice_recur_customer' => 'Predložak ponavljajućeg računa (poslano kupcu)',
'invoice_recur_admin' => 'Predložak ponavljajućeg računa (poslano administratoru)',
'invoice_payment_customer' => 'Predložak primljenog plaćanja (poslano kupcu)',
'invoice_payment_admin' => 'Predložak primljenog plaćanja (poslano administratoru)',
'bill_remind_admin' => 'Predložak podsjetnika za račun (poslano administratoru)',
'bill_recur_admin' => 'Ponavljajući predložak računa (poslan administratoru)',
],
], ],
'scheduling' => [ 'scheduling' => [
'tab' => 'Zakazivanje', 'name' => 'Zakazivanje',
'description' => 'Automatski podsjetnici i naredba za ponavljanje',
'send_invoice' => 'Slanje podsjetnika faktura', 'send_invoice' => 'Slanje podsjetnika faktura',
'invoice_days' => 'Slanje prije datuma dospijeća', 'invoice_days' => 'Slanje prije datuma dospijeća',
'send_bill' => 'Slanje podsjetnika računa', 'send_bill' => 'Slanje podsjetnika računa',
'bill_days' => 'Slanje prije datuma dospijeća', 'bill_days' => 'Slanje prije datuma dospijeća',
'cron_command' => 'Cron naredba', 'cron_command' => 'Cron naredba',
'schedule_time' => 'Vrijeme pokretanja', 'schedule_time' => 'Vrijeme pokretanja',
'send_item_reminder'=> 'Send Item Reminder',
'item_stocks' => 'Send When Item Stock',
], ],
'appearance' => [
'tab' => 'Izgled', 'categories' => [
'theme' => 'Tema', 'description' => 'Neograničene kategorije za prihod, rashod i stavke',
'light' => 'Svjetlo',
'dark' => 'Tamno',
'list_limit' => 'Zapisa po stranici',
'use_gravatar' => 'Koristi Gravatar',
], ],
'system' => [
'tab' => 'Sustav', 'currencies' => [
'session' => [ 'description' => 'Kreirajte i upravljajte valutama i postavite njihove tečajeve',
'lifetime' => 'Životni vijek sesije (Minute)', ],
'handler' => 'Rukovatelj sesije',
'file' => 'Datoteka', 'taxes' => [
'database' => 'Baza podataka', 'description' => 'Fiksne, normalne, uključive i složene porezne stope',
],
'file_size' => 'Max veličina datoteke (MB)',
'file_types' => 'Dopuštena vrsta datoteka',
], ],
]; ];

View File

@ -4,5 +4,8 @@ return [
'rate' => 'Stopa', 'rate' => 'Stopa',
'rate_percent' => 'Stopa (%)', 'rate_percent' => 'Stopa (%)',
'normal' => 'Normalno',
'inclusive' => 'Uključivo',
'compound' => 'Veza',
'fixed' => 'Popravljeno',
]; ];

View File

@ -33,19 +33,20 @@ return [
'confirmed' => ':attribute potvrda se ne podudara.', 'confirmed' => ':attribute potvrda se ne podudara.',
'date' => ':attribute nije važeći datum.', 'date' => ':attribute nije važeći datum.',
'date_format' => ':attribute ne odgovara formatu :format.', 'date_format' => ':attribute ne odgovara formatu :format.',
'different' => ':attribute i :other moraju biti različiti.', 'different' => 'Polja :attribute i :other moraju biti različita.',
'digits' => ':attribute mora sadržavati :digits znamenki.', 'digits' => ':attribute mora sadržavati :digits znamenki.',
'digits_between' => ':attribute mora biti između :min i :max znamenki.', 'digits_between' => ':attribute mora biti između :min i :max znamenki.',
'dimensions' => ':attribute ima nevažeće dimenzije slike.', 'dimensions' => ':attribute ima nevažeće dimenzije slike.',
'distinct' => 'Polje :attribute ima dvostruku vrijednost.', 'distinct' => 'Polje :attribute ima dvostruku vrijednost.',
'email' => ':attribute mora biti važeća e-mail adresa.', 'email' => 'Polje :attribute mora biti ispravna e-mail adresa.',
'ends_with' => ':atribut mora završiti jednim od sljedećeg:: vrijednosti',
'exists' => 'Odabrano :attribute nije važeće.', 'exists' => 'Odabrano :attribute nije važeće.',
'file' => ':attribute mora biti datoteka.', 'file' => 'Polje :attribute mora biti datoteka.',
'filled' => 'Polje :attribute mora imati vrijednost.', 'filled' => 'Polje :attribute je obavezno.',
'image' => ':attribute mora biti slika.', 'image' => 'Polje :attribute mora biti slika.',
'in' => 'Odabrano :attribute nije valjano.', 'in' => 'Odabrano :attribute nije valjano.',
'in_array' => 'Polje :attribute ne postoji u :other.', 'in_array' => 'Polje :attribute ne postoji u :other.',
'integer' => ':attribute mora biti cijeli broj.', 'integer' => 'Polje :attribute mora biti broj.',
'ip' => ':attribute mora biti važeća IP adresa.', 'ip' => ':attribute mora biti važeća IP adresa.',
'json' => ':attribute mora biti valjani JSON niz.', 'json' => ':attribute mora biti valjani JSON niz.',
'max' => [ 'max' => [
@ -65,7 +66,7 @@ return [
'not_in' => 'Odabrano :attribute nije valjano.', 'not_in' => 'Odabrano :attribute nije valjano.',
'numeric' => ':attribute mora biti broj.', 'numeric' => ':attribute mora biti broj.',
'present' => 'Polje :attribute mora biti prisutno.', 'present' => 'Polje :attribute mora biti prisutno.',
'regex' => ':attribute format nije valjan.', 'regex' => 'Polje :attribute se ne podudara s formatom.',
'required' => 'Polje :attribute je obavezno.', 'required' => 'Polje :attribute je obavezno.',
'required_if' => 'Polje :attribute je obavezno kada je :other :value.', 'required_if' => 'Polje :attribute je obavezno kada je :other :value.',
'required_unless' => 'Polje :attribute je obavezno osim ako je :other u :values.', 'required_unless' => 'Polje :attribute je obavezno osim ako je :other u :values.',
@ -77,14 +78,14 @@ return [
'size' => [ 'size' => [
'numeric' => ':attribute mora biti :size.', 'numeric' => ':attribute mora biti :size.',
'file' => ':attribute mora biti :size kilobajta.', 'file' => ':attribute mora biti :size kilobajta.',
'string' => ':attribute mora biti :size znakova.', 'string' => 'Polje :attribute mora biti :size znakova.',
'array' => ':attribute mora sadržavati :size stavki.', 'array' => ':attribute mora sadržavati :size stavki.',
], ],
'string' => ':attribute mora biti niz.', 'string' => 'Polje :attribute mora biti string.',
'timezone' => ':attribute mora biti važeća vremenska zona.', 'timezone' => ':attribute mora biti važeća vremenska zona.',
'unique' => ':attribute već postoji.', 'unique' => 'Polje :attribute već postoji.',
'uploaded' => ':attribute nije uspješno učitan.', 'uploaded' => 'Polje :attribute nije uspešno učitano.',
'url' => ':attribute nije ispravnog formata.', 'url' => 'Polje :attribute nije ispravnog formata.',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -101,8 +102,8 @@ return [
'attribute-name' => [ 'attribute-name' => [
'rule-name' => 'prilagođena-poruka', 'rule-name' => 'prilagođena-poruka',
], ],
'invalid_currency' => 'The :attribute code is invalid.', 'invalid_currency' => ': Atributni kod nije valjan.',
'invalid_amount' => 'The amount :attribute is invalid.', 'invalid_amount' => 'Iznos: atribut nije važeći.',
], ],
/* /*

View File

@ -2,9 +2,9 @@
return [ return [
'total_incomes' => 'Ukupni prihodi', 'total_income' => 'Ukupni prihodi',
'receivables' => 'Potraživanja', 'receivables' => 'Potraživanja',
'open_invoices' => 'Otvorene fakture', 'open_invoices' => 'Otvorite fakture',
'overdue_invoices' => 'Dospjele fakture', 'overdue_invoices' => 'Dospjele fakture',
'total_expenses' => 'Ukupni troškovi', 'total_expenses' => 'Ukupni troškovi',
'payables' => 'Dugovanja', 'payables' => 'Dugovanja',
@ -15,10 +15,9 @@ return [
'overdue_profit' => 'Dospjela dobit', 'overdue_profit' => 'Dospjela dobit',
'cash_flow' => 'Novčani tok', 'cash_flow' => 'Novčani tok',
'no_profit_loss' => 'Nema gubitka dobiti', 'no_profit_loss' => 'Nema gubitka dobiti',
'incomes_by_category' => 'Prihodi po kategorijama', 'income_by_category' => 'Prihodi po kategorijama',
'expenses_by_category' => 'Troškovi po kategorijama', 'expenses_by_category' => 'Troškovi po kategorijama',
'account_balance' => 'Stanje računa', 'account_balance' => 'Stanje računa',
'latest_incomes' => 'Najnoviji prihodi', 'latest_income' => 'Najnoviji prihodi',
'latest_expenses' => 'Najnoviji troškovi', 'latest_expenses' => 'Najnoviji troškovi',
]; ];

View File

@ -13,6 +13,7 @@ return [
'current_email' => 'E-pasta adrese', 'current_email' => 'E-pasta adrese',
'reset' => 'Atiestatīt', 'reset' => 'Atiestatīt',
'never' => 'nekad', 'never' => 'nekad',
'landing_page' => 'Landing Page',
'password' => [ 'password' => [
'current' => 'Parole', 'current' => 'Parole',
@ -23,6 +24,7 @@ return [
'error' => [ 'error' => [
'self_delete' => 'Kļūda: Nevar izdzēst sevi!', 'self_delete' => 'Kļūda: Nevar izdzēst sevi!',
'self_disable' => 'Error: Can not disable yourself!',
'no_company' => 'Kļūda: Jūsu kontam nav piesaistīts neviens uzņēmums. Sazinieties, lūdzu, ar sistēmas administratoru.', 'no_company' => 'Kļūda: Jūsu kontam nav piesaistīts neviens uzņēmums. Sazinieties, lūdzu, ar sistēmas administratoru.',
], ],

View File

@ -36,10 +36,12 @@ return [
'make_payment' => 'Veikt maksājumu', 'make_payment' => 'Veikt maksājumu',
'statuses' => [ 'statuses' => [
'draft' => 'Melnraksts', 'draft' => 'Draft',
'received' => 'Saņemts', 'received' => 'Received',
'partial' => 'Daļējs', 'partial' => 'Partial',
'paid' => 'Samaksāts', 'paid' => 'Paid',
'overdue' => 'Overdue',
'unpaid' => 'Unpaid',
], ],
'messages' => [ 'messages' => [

View File

@ -0,0 +1,19 @@
<?php
return [
'bulk_actions' => 'Bulk Action|Bulk Actions',
'selected' => 'selected',
'message' => [
'duplicate' => 'Are you sure you want to <b>duplicate</b> selected record?',
'delete' => 'Are you sure you want to <b>delete</b> selected record?|Are you sure you want to <b>delete</b> selected records?',
'export' => 'Are you sure you want to <b>export</b> selected record?|Are you sure you want to <b>export</b> selected records?',
'enable' => 'Are you sure you want to <b>enable</b> selected record?|Are you sure you want to <b>enable</b> selected records?',
'disable' => 'Are you sure you want to <b>disable</b> selected record?|Are you sure you want to <b>disable</b> selected records?',
'paid' => 'Are you sure you want to mark selected invoice as <b>paid</b>?|Are you sure you want to mark selected invoices as <b>paid</b>?',
'sent' => 'Are you sure you want to mark selected invoice as <b>sent</b>?|Are you sure you want to mark selected invoices as <b>sent</b>?',
'received' => 'Are you sure you want to mark selected bill as <b>received</b>?|Are you sure you want to mark selected bills as <b>received</b>?',
],
];

View File

@ -4,10 +4,11 @@ return [
'domain' => 'Domēns', 'domain' => 'Domēns',
'logo' => 'Logo', 'logo' => 'Logo',
'manage' => 'Pārvaldīt uzņēmumus',
'all' => 'Visi uzņēmumi',
'error' => [ 'error' => [
'delete_active' => 'Kļūda: Nevar dzēst aktīvo uzņēmumu. Lai dzēstu šo uzņēmumu, vispirms pārslēdzieties uz citu uzņēmumu!', 'not_user_company' => 'Error: You are not allowed to change this company!',
'delete_active' => 'Error: Can not delete the active company. Please, switch to another first!',
'disable_active' => 'Error: Can not disable the active company. Please, switch to another first!',
], ],
]; ];

View File

@ -2,15 +2,11 @@
return [ return [
'allow_login' => 'Atļaut ielogoties?', 'can_login' => 'Can Login?',
'user_created' => 'Lietotājs, kas izveidojis', 'user_created' => 'Lietotājs, kas izveidojis',
'error' => [ 'error' => [
'email' => 'Lietotājs ar šādu e-pasta adresi jau eksistē.' 'email' => 'Lietotājs ar šādu e-pasta adresi jau eksistē.',
], ],
'notification' => [
'message' => ':customer made :amount payment to invoice number :invoice_number.',
'button' => 'Show',
],
]; ];

View File

@ -1,24 +0,0 @@
<?php
return [
'total_incomes' => 'Kopējie ieņēmumi',
'receivables' => 'Pircēju parādi',
'open_invoices' => 'Neapmaksātie rēķini',
'overdue_invoices' => 'Kavētie rēķini',
'total_expenses' => 'Kopējās izmaksas',
'payables' => 'Piegādātāju rēķini',
'open_bills' => 'Neapmaksātie rēķini',
'overdue_bills' => 'Kavētie rēķini',
'total_profit' => 'Kopējā peļņa',
'open_profit' => 'Neapmaksātā peļņa',
'overdue_profit' => 'Peļņa (kavētie rēķini)',
'cash_flow' => 'Naudas plūsma',
'no_profit_loss' => 'No Profit Loss',
'incomes_by_category' => 'Ieņēmumu kategorijas',
'expenses_by_category' => 'Izdevumu kategorijas',
'account_balance' => 'Konta atlikums',
'latest_incomes' => 'Pēdējie ieņēmumi',
'latest_expenses' => 'Pēdējās izmaksas',
];

View File

@ -0,0 +1,11 @@
<?php
return [
'error' => [
'not_user_dashboard' => 'Error: You are not allowed to change this dashboard!',
'delete_last' => 'Error: Can not delete the last dashboard. Please, create a new one first!',
'disable_last' => 'Error: Can not disable the last dashboard. Please, create a new one first!',
],
];

View File

@ -2,12 +2,33 @@
return [ return [
'accounts_cash' => 'Skaidra nauda', 'accounts' => [
'categories_deposit' => 'Bezskaidra nauda', 'cash' => 'Cash',
'categories_sales' => 'Pārdošana', ],
'currencies_usd' => 'ASV dolārs',
'currencies_eur' => 'Euro', 'categories' => [
'currencies_gbp' => 'Angļu mārciņa', 'deposit' => 'Deposit',
'currencies_try' => 'Turku lira', 'sales' => 'Sales',
],
'currencies' => [
'usd' => 'US Dollar',
'eur' => 'Euro',
'gbp' => 'British Pound',
'try' => 'Turkish Lira',
],
'offline_payments' => [
'cash' => 'Cash',
'bank' => 'Bank Transfer',
],
'reports' => [
'income' => 'Monthly income summary by category.',
'expense' => 'Monthly expense summary by category.',
'income_expense' => 'Monthly income vs expense by category.',
'tax' => 'Quarterly tax summary.',
'profit_loss' => 'Quarterly profit & loss by category.',
],
]; ];

View File

@ -0,0 +1,50 @@
<?php
return [
'invoice_new_customer' => [
'subject' => '{invoice_number} invoice created',
'body' => 'Dear {customer_name},<br /><br />We have prepared the following invoice for you: <strong>{invoice_number}</strong>.<br /><br />You can see the invoice details and proceed with the payment from the following link: <a href="{invoice_guest_link}">{invoice_number}</a>.<br /><br />Feel free to contact us for any question.<br /><br />Best Regards,<br />{company_name}',
],
'invoice_remind_customer' => [
'subject' => '{invoice_number} invoice overdue notice',
'body' => 'Dear {customer_name},<br /><br />This is an overdue notice for <strong>{invoice_number}</strong> invoice.<br /><br />The invoice total is {invoice_total} and was due <strong>{invoice_due_date}</strong>.<br /><br />You can see the invoice details and proceed with the payment from the following link: <a href="{invoice_guest_link}">{invoice_number}</a>.<br /><br />Best Regards,<br />{company_name}',
],
'invoice_remind_admin' => [
'subject' => '{invoice_number} invoice overdue notice',
'body' => 'Hello,<br /><br />{customer_name} has received an overdue notice for <strong>{invoice_number}</strong> invoice.<br /><br />The invoice total is {invoice_total} and was due <strong>{invoice_due_date}</strong>.<br /><br />You can see the invoice details from the following link: <a href="{invoice_admin_link}">{invoice_number}</a>.<br /><br />Best Regards,<br />{company_name}',
],
'invoice_recur_customer' => [
'subject' => '{invoice_number} recurring invoice created',
'body' => 'Dear {customer_name},<br /><br />Based on your recurring circle, we have prepared the following invoice for you: <strong>{invoice_number}</strong>.<br /><br />You can see the invoice details and proceed with the payment from the following link: <a href="{invoice_guest_link}">{invoice_number}</a>.<br /><br />Feel free to contact us for any question.<br /><br />Best Regards,<br />{company_name}',
],
'invoice_recur_admin' => [
'subject' => '{invoice_number} recurring invoice created',
'body' => 'Hello,<br /><br />Based on {customer_name} recurring circle, <strong>{invoice_number}</strong> invoice has been automatically created.<br /><br />You can see the invoice details from the following link: <a href="{invoice_admin_link}">{invoice_number}</a>.<br /><br />Best Regards,<br />{company_name}',
],
'invoice_payment_customer' => [
'subject' => 'Payment received for {invoice_number} invoice',
'body' => 'Dear {customer_name},<br /><br />Thank you for the payment. Find the payment details below:<br /><br />-------------------------------------------------<br />Amount: <strong>{transaction_total}</strong><br />Date: <strong>{transaction_paid_date}</strong><br />Invoice Number: <strong>{invoice_number}</strong><br />-------------------------------------------------<br /><br />You can always see the invoice details from the following link: <a href="{invoice_guest_link}">{invoice_number}</a>.<br /><br />Feel free to contact us for any question.<br /><br />Best Regards,<br />{company_name}',
],
'invoice_payment_admin' => [
'subject' => 'Payment received for {invoice_number} invoice',
'body' => 'Hello,<br /><br />{customer_name} recorded a payment for <strong>{invoice_number}</strong> invoice.<br /><br />You can see the invoice details from the following link: <a href="{invoice_admin_link}">{invoice_number}</a>.<br /><br />Best Regards,<br />{company_name}',
],
'bill_remind_admin' => [
'subject' => '{bill_number} bill reminding notice',
'body' => 'Hello,<br /><br />This is a reminding notice for <strong>{bill_number}</strong> bill to {vendor_name}.<br /><br />The bill total is {bill_total} and is due <strong>{bill_due_date}</strong>.<br /><br />You can see the bill details from the following link: <a href="{bill_admin_link}">{bill_number}</a>.<br /><br />Best Regards,<br />{company_name}',
],
'bill_recur_admin' => [
'subject' => '{bill_number} recurring bill created',
'body' => 'Hello,<br /><br />Based on {vendor_name} recurring circle, <strong>{bill_number}</strong> invoice has been automatically created.<br /><br />You can see the bill details from the following link: <a href="{bill_admin_link}">{bill_number}</a>.<br /><br />Best Regards,<br />{company_name}',
],
];

View File

@ -2,23 +2,22 @@
return [ return [
'forbidden_access' => 'Forbidden Access', 'title' => [
'error_page' => 'Error Page', '403' => 'Oops! Forbidden Access',
'page_not_found' => 'Page Not Found', '404' => 'Oops! Page not found',
'500' => 'Oops! Something went wrong',
'body' => [
'forbidden_access' => 'Oops! Forbidden Access.',
'error_page' => 'Oops! Something went wrong.',
'page_not_found' => 'Oops! Page not found.',
], ],
'messages' => [ 'header' => [
'forbidden_access' => 'You can not access this page. '403' => '403 Forbidden',
Meanwhile, you may <a href=":link">return to dashboard</a>.', '404' => '404 Not Found',
'error_page' => 'We will work on fixing that right away. '500' => '500 Internal Server Error',
Meanwhile, you may <a href=":link">return to dashboard</a>.', ],
'page_not_found' => 'We could not find the page you were looking for.
Meanwhile, you may <a href=":link">return to dashboard</a>.', 'message' => [
'403' => 'You can not access this page.',
'404' => 'We could not find the page you were looking for.',
'500' => 'We will work on fixing that right away.',
], ],
]; ];

View File

@ -2,6 +2,7 @@
return [ return [
'dashboards' => 'Dashboard|Dashboards',
'items' => 'Preces|Preces', 'items' => 'Preces|Preces',
'incomes' => 'Ienākumi|Ienākumi', 'incomes' => 'Ienākumi|Ienākumi',
'invoices' => 'Rēķini|Rēķini', 'invoices' => 'Rēķini|Rēķini',
@ -41,8 +42,17 @@ return [
'contacts' => 'Contact|Contacts', 'contacts' => 'Contact|Contacts',
'reconciliations' => 'Reconciliation|Reconciliations', 'reconciliations' => 'Reconciliation|Reconciliations',
'developers' => 'Developer|Developers', 'developers' => 'Developer|Developers',
'schedules' => 'Schedule|Schedules',
'groups' => 'Group|Groups',
'charts' => 'Chart|Charts',
'localisations' => 'Localisation|Localisations',
'defaults' => 'Default|Defaults',
'widgets' => 'Widget|Widgets',
'templates' => 'Template|Templates',
'sales' => 'Sale|Sales',
'purchases' => 'Purchase|Purchases',
'dashboard' => 'Sākums', 'welcome' => 'Welcome',
'banking' => 'Banka', 'banking' => 'Banka',
'general' => 'Galvenā', 'general' => 'Galvenā',
'no_records' => 'Ierakstu nav.', 'no_records' => 'Ierakstu nav.',
@ -54,15 +64,19 @@ return [
'no' => 'Nē', 'no' => 'Nē',
'na' => 'Nav pieejams', 'na' => 'Nav pieejams',
'daily' => 'Ikdienas', 'daily' => 'Ikdienas',
'weekly' => 'Weekly',
'monthly' => 'Ikmēneša', 'monthly' => 'Ikmēneša',
'quarterly' => 'Ceturkšņa', 'quarterly' => 'Ceturkšņa',
'yearly' => 'Gada', 'yearly' => 'Gada',
'add' => 'Pievienot', 'add' => 'Pievienot',
'add_new' => 'Pievienot jaunu', 'add_new' => 'Pievienot jaunu',
'add_income' => 'Add Income',
'add_expense' => 'Add Expense',
'show' => 'Skatīt', 'show' => 'Skatīt',
'edit' => 'Labot', 'edit' => 'Labot',
'delete' => 'Dzēst', 'delete' => 'Dzēst',
'send' => 'Sūtīt', 'send' => 'Sūtīt',
'share' => 'Share',
'download' => 'Lejupielādēt', 'download' => 'Lejupielādēt',
'delete_confirm' => 'Apstiprināt dzēšanu :name :type?', 'delete_confirm' => 'Apstiprināt dzēšanu :name :type?',
'name' => 'Nosaukums', 'name' => 'Nosaukums',
@ -80,9 +94,11 @@ return [
'reference' => 'Reference', 'reference' => 'Reference',
'attachment' => 'Pielikums', 'attachment' => 'Pielikums',
'change' => 'Mainīt', 'change' => 'Mainīt',
'change_type' => 'Change :type',
'switch' => 'Mainīt', 'switch' => 'Mainīt',
'color' => 'Krāsa', 'color' => 'Krāsa',
'save' => 'Saglabāt', 'save' => 'Saglabāt',
'confirm' => 'Confirm',
'cancel' => 'Atcelt', 'cancel' => 'Atcelt',
'loading' => 'Loading...', 'loading' => 'Loading...',
'from' => 'No', 'from' => 'No',
@ -105,27 +121,54 @@ return [
'partially' => 'Daļēji', 'partially' => 'Daļēji',
'partially_paid' => 'Daļēji apmaksāts', 'partially_paid' => 'Daļēji apmaksāts',
'export' => 'Eksportēt', 'export' => 'Eksportēt',
'finish' => 'Finish', 'finish' => 'Pabeigt',
'wizard' => 'Wizard', 'wizard' => 'Palīgs',
'skip' => 'Skip', 'skip' => 'Izlaist',
'enable' => 'Iespējot', 'enable' => 'Iespējot',
'disable' => 'Atspējot', 'disable' => 'Atspējot',
'select_all' => 'Select All', 'select_all' => 'Izvēlēties visu',
'unselect_all' => 'Unselect All', 'unselect_all' => 'Atcelt visus izvēlētos',
'go_to' => 'Go to :name', 'created_date' => 'Izveidošanas datums',
'created_date' => 'Created Date', 'period' => 'Periods',
'period' => 'Period', 'frequency' => 'Biežums',
'start' => 'Start', 'start' => 'Sākums',
'end' => 'End', 'end' => 'Beigas',
'clear' => 'Clear', 'clear' => 'Dzēst',
'difference' => 'Difference', 'difference' => 'Atšķirības',
'footer' => 'Kājene (lapas apakša)',
'start_date' => 'Sākuma datums',
'end_date' => 'Beigu datums',
'basis' => 'Pamatvērtības',
'accrual' => 'Uzkrāšana',
'cash' => 'Skaidra nauda',
'group_by' => 'Grupēt pēc',
'accounting' => 'Grāmatvedība',
'sort' => 'Kārtot',
'width' => 'Platums',
'month' => 'Mēnesis',
'year' => 'Gads',
'type_item_name' => 'Ievadiet lietas/priekšmeta nosaukumu',
'no_data' => 'Dati nav atrasti',
'no_matching_data' => 'Nav sakritību datos',
'clear_cache' => 'Notīrīt kešatmiņu',
'go_to_dashboard' => 'Doties uz galveno paneli',
'card' => [
'name' => 'Nosaukums uz kartes',
'number' => 'Kartes numurs',
'expiration_date' => 'Derīguma termiņš',
'cvv' => 'Kartes CVV kods',
],
'title' => [ 'title' => [
'new' => 'Jauns :type', 'new' => 'Jauns :type',
'edit' => 'Redigēts :type', 'edit' => 'Redigēts :type',
'create' => 'Create :type', 'delete' => 'Dzēst',
'send' => 'Send :type', 'create' => 'Izveidot',
'get' => 'Get :type', 'send' => 'Nosūtīt',
'get' => 'Saņemt',
'add' => 'Pievienot',
'manage' => 'Pārvaldīt',
], ],
'form' => [ 'form' => [
@ -134,14 +177,30 @@ return [
'field' => '- Izvēlēties :field -', 'field' => '- Izvēlēties :field -',
'file' => 'Izvēlēties failu', 'file' => 'Izvēlēties failu',
], ],
'add_new' => 'Pievienot Jaunu',
'no_file_selected' => 'Fails nav izvēlēts...', 'no_file_selected' => 'Fails nav izvēlēts...',
], ],
'date_range' => [ 'date_range' => [
'today' => 'Today', 'today' => 'Šodiena',
'yesterday' => 'Yesterday', 'yesterday' => 'Vakardiena',
'last_days' => 'Last :day Days', 'last_days' => 'Pēdējās 30 dienas',
'this_month' => 'This Month', 'this_month' => 'Tekošais mēnesis',
'last_month' => 'Last Month', 'last_month' => 'Iepriekšējais mēnesis',
], ],
'empty' => [
'documentation' => 'Check out the <a href=":url" target="_blank">documentation</a> for more details.',
'items' => 'Items can be products or services. You can use items when creating invoices and bills to have the price, tax etc fields populated.',
'invoices' => 'Invoices can be one time or recurring. You can send them to customers and start accepting online payments.',
'revenues' => 'Revenue is a paid income transaction. It can be an independent record (i.e. deposit) or attached to an invoice.',
'customers' => 'Customers are required if you want to create invoices. They may also log in to Client Portal and see their balance.',
'bills' => 'Bills can be one time or recurring. They indicate what you owe your vendors for the products or services you purchase.',
'payments' => 'Payment is a paid expense transaction. It can be an independent record (i.e. food receipt) or attached to a bill.',
'vendors' => 'Vendors are required if you want to create bills. You can see the balance you owe and filter reports by the vendor.',
'transfers' => 'Transfers allow you to move money from one account to another, whether they use the same currency or not.',
'taxes' => 'Taxes are used to apply extra fees to invoices and bills. Your financials are affected by these regulatory taxes.',
'reconciliations' => 'Bank reconciliation is a process performed to ensure that your company bank records are also correct.',
],
]; ];

View File

@ -8,9 +8,9 @@ return [
'counter' => '{0} Jums nav nevienas notifkācijas|{1} Jums ir :count notifikācija|[2,*] Jums ir :count notifikācijas', 'counter' => '{0} Jums nav nevienas notifkācijas|{1} Jums ir :count notifikācija|[2,*] Jums ir :count notifikācijas',
'overdue_invoices' => '{1} :count kavēts rēķins|[2,*] :count kavēti rēķini', 'overdue_invoices' => '{1} :count kavēts rēķins|[2,*] :count kavēti rēķini',
'upcoming_bills' => '{1} Drīzumā jāapmaksā :count rēķins |[2,*] Drīzūmā jāapmaksā :count rēķini', 'upcoming_bills' => '{1} Drīzumā jāapmaksā :count rēķins |[2,*] Drīzūmā jāapmaksā :count rēķini',
'items_stock' => '{1} Noliktavā trūkst :count preces |[2,*] Noliktavā trūkst :count preču',
'view_all' => 'Skatīt visus' 'view_all' => 'Skatīt visus'
], ],
'docs_link' => 'https://akaunting.com/docs', 'docs_link' => 'https://akaunting.com/docs',
'support_link' => 'https://akaunting.com/support',
]; ];

View File

@ -29,6 +29,7 @@ return [
'add_payment' => 'Pievienot maksājumu', 'add_payment' => 'Pievienot maksājumu',
'mark_paid' => 'Atzīmēt kā samaksāts', 'mark_paid' => 'Atzīmēt kā samaksāts',
'mark_sent' => 'Atzīmēt kā nosūtītu', 'mark_sent' => 'Atzīmēt kā nosūtītu',
'mark_viewed' => 'Mark Viewed',
'download_pdf' => 'Lejupielādēt PDF', 'download_pdf' => 'Lejupielādēt PDF',
'send_mail' => 'Sūtīt e-pastu', 'send_mail' => 'Sūtīt e-pastu',
'all_invoices' => 'Pierakstīties, lai skatītu visus rēķinus', 'all_invoices' => 'Pierakstīties, lai skatītu visus rēķinus',
@ -38,22 +39,26 @@ return [
'accept_payments' => 'Pieņemt tiešsaistes maksājumus', 'accept_payments' => 'Pieņemt tiešsaistes maksājumus',
'statuses' => [ 'statuses' => [
'draft' => 'Sagatave', 'draft' => 'Draft',
'sent' => 'Nosūtīts', 'sent' => 'Sent',
'viewed' => 'Skatīts', 'viewed' => 'Viewed',
'approved' => 'Apstiprināts', 'approved' => 'Approved',
'partial' => 'Daļēji', 'partial' => 'Partial',
'paid' => 'Samaksāts', 'paid' => 'Paid',
'overdue' => 'Overdue',
'unpaid' => 'Unpaid',
], ],
'messages' => [ 'messages' => [
'email_sent' => 'Rēķins veiksmīgi nosūtīts uz e-pastu!', 'email_sent' => 'Invoice email has been sent!',
'marked_sent' => 'Rēķins atzīmēts kā nosūtīts!', 'marked_sent' => 'Invoice marked as sent!',
'marked_paid' => 'Invoice marked as paid!',
'email_required' => 'Pircējam nav norādīta e-pasta adrese!', 'email_required' => 'Pircējam nav norādīta e-pasta adrese!',
'draft' => 'This is a <b>DRAFT</b> invoice and will be reflected to charts after it gets sent.', 'draft' => 'Šis ir <b>melnraksts</b> rēķinam un tas atspoguļosies diagrammās, pēc tam, kad tas tiks iespējots / nosūtīts.',
'status' => [ 'status' => [
'created' => 'Izveidots: datums', 'created' => 'Izveidots: datums',
'viewed' => 'Viewed',
'send' => [ 'send' => [
'draft' => 'Nav nosūtīts', 'draft' => 'Nav nosūtīts',
'sent' => 'Nosūtīts: datums', 'sent' => 'Nosūtīts: datums',
@ -64,9 +69,4 @@ return [
], ],
], ],
'notification' => [
'message' => 'Jūs saņemāt šo e-pastu, jo jums ir sagatavots rēķins par summu :amount, Rēķins izrakstīts :customer.',
'button' => 'Apmaksāt tagad',
],
]; ];

View File

@ -2,17 +2,7 @@
return [ return [
'quantities' => 'Daudzums|Daudzums',
'sales_price' => 'Pārdošanas cena', 'sales_price' => 'Pārdošanas cena',
'purchase_price' => 'Iegādes cena', 'purchase_price' => 'Iegādes cena',
'sku' => 'Kods',
'notification' => [
'message' => [
'reminder' => 'You are receiving this email because only :quantity of :name has remained.',
'out_of_stock' => 'You are receiving this email because the :name is running out of stock.',
],
'button' => 'Skatīt tagad',
],
]; ];

View File

@ -0,0 +1,11 @@
<?php
return [
'title' => 'Under Maintenance',
'message' => 'Sorry, we\'re down for maintenance. Please, try again later!',
'last-updated' => 'This message was last updated :timestamp.',
];

View File

@ -8,6 +8,7 @@ return [
'deleted' => ':type dzēsts!', 'deleted' => ':type dzēsts!',
'duplicated' => ':type kopēts!', 'duplicated' => ':type kopēts!',
'imported' => ':type importēts!', 'imported' => ':type importēts!',
'exported' => ':type exported!',
'enabled' => ':type iespējots!', 'enabled' => ':type iespējots!',
'disabled' => ':type atspējots!', 'disabled' => ':type atspējots!',
], ],
@ -18,7 +19,8 @@ return [
'customer' => 'Kļūda: Lietotājs nav izveidots! :name jau lieto šādu e-pasta adresi.', 'customer' => 'Kļūda: Lietotājs nav izveidots! :name jau lieto šādu e-pasta adresi.',
'no_file' => 'Kļūda: Fails nav izvēlēts!', 'no_file' => 'Kļūda: Fails nav izvēlēts!',
'last_category' => 'Kļūda: Nevar izdzēst pēdējo :type kategoriju!', 'last_category' => 'Kļūda: Nevar izdzēst pēdējo :type kategoriju!',
'invalid_apikey' => 'Kļūda: Ievadītā atslēga nav pareiza!', 'change_type' => 'Error: Can not change the type because it has :text related!',
'invalid_apikey' => 'Error: The API Key entered is invalid!',
'import_column' => 'Kļūda: :message Lapas nosaukums: :sheet. Rindas numurs: :line.', 'import_column' => 'Kļūda: :message Lapas nosaukums: :sheet. Rindas numurs: :line.',
'import_sheet' => 'Kļūda: Lapas nosaukums nav pareizs. Lūdzu pārbaudiet parauga failu.', 'import_sheet' => 'Kļūda: Lapas nosaukums nav pareizs. Lūdzu pārbaudiet parauga failu.',
], ],
@ -27,6 +29,7 @@ return [
'deleted' => 'Brīdinājums: Jums nav tiesību dzēst <b>:name</b> jo tas ir saistīts ar :text.', 'deleted' => 'Brīdinājums: Jums nav tiesību dzēst <b>:name</b> jo tas ir saistīts ar :text.',
'disabled' => 'Brīdinājums: Jums nav tiesību atspējot <b>:name</b> jo tas ir saistīts ar :text.', 'disabled' => 'Brīdinājums: Jums nav tiesību atspējot <b>:name</b> jo tas ir saistīts ar :text.',
'disable_code' => 'Warning: You are not allowed to disable or change the currency of <b>:name</b> because it has :text related.', 'disable_code' => 'Warning: You are not allowed to disable or change the currency of <b>:name</b> because it has :text related.',
'payment_cancel' => 'Warning: You have cancelled your recent :method payment!',
], ],
]; ];

View File

@ -2,8 +2,7 @@
return [ return [
'title' => 'API atslēga', 'api_key' => 'API Key',
'api_token' => 'Atslēga',
'my_apps' => 'Manas programmas', 'my_apps' => 'Manas programmas',
'pre_sale' => 'Pre-Sale', 'pre_sale' => 'Pre-Sale',
'top_paid' => 'Top maksas', 'top_paid' => 'Top maksas',
@ -13,10 +12,9 @@ return [
'search' => 'Meklēt', 'search' => 'Meklēt',
'install' => 'Instalēt', 'install' => 'Instalēt',
'buy_now' => 'Pirkt tagad', 'buy_now' => 'Pirkt tagad',
'token_link' => '<a href="https://akaunting.com/tokens" target="_blank">Spied šeit</a>, lai saņemtu savu API atslēgu.', 'get_api_key' => '<a href=":url" target="_blank">Click here</a> to get your API key.',
'no_apps' => 'Šajā kategorijā programmu vēl nav.', 'no_apps' => 'Šajā kategorijā programmu vēl nav.',
'developer' => 'Vai jūs esat izstrādātājs? <a href="https://akaunting.com/blog/akaunting-app-store" target="_blank">Šeit</a> jūs varat iemācīties, kā veidot programmas un sākt tās pārdot!', 'become_developer' => 'Are you a developer? <a href=":url" target="_blank">Here</a> you can learn how to create an app and start selling today!',
'recommended_apps' => 'Recommended Apps', 'recommended_apps' => 'Recommended Apps',
'about' => 'Par', 'about' => 'Par',
@ -38,31 +36,30 @@ return [
'installation' => 'Instalācija', 'installation' => 'Instalācija',
'faq' => 'BUJ', 'faq' => 'BUJ',
'changelog' => 'Izmaiņas', 'changelog' => 'Izmaiņas',
'reviews' => 'Reviews', 'reviews' => 'Reviews',
], ],
'installation' => [ 'installation' => [
'header' => 'Programmas instalācija', 'header' => 'Programmas instalācija',
'download' => 'Lejupielādēju :module.', 'download' => 'Downloading :module',
'unzip' => 'Atarhivēju :module.', 'unzip' => 'Extracting :module files',
'file_copy' => 'Copying :module files.', 'file_copy' => 'Copying :module files',
'migrate' => 'Applying :module updates.', 'finish' => 'Finalizing :module installation',
'finish' => 'The update was successfully installed. You will be redirect Update Center.', 'redirect' => ':module installed, redirecting to updates page',
'install' => 'Instalēju :module.', 'install' => 'Installing :module',
], ],
'errors' => [ 'errors' => [
'download' => ':module can not download!', 'download' => 'Not able to download :module',
'upload' => 'Downloaded :module can not saved!', 'zip' => 'Not able to create :module zip file',
'unzip' => ':module can not unzip!', 'unzip' => 'Not able to unzip :module',
'file_copy' => ':module files can not copy!', 'file_copy' => 'Not able to copy :module files',
'migrate' => ':module migrate broken!', 'finish' => 'Not able to finalize :module installation',
'migrate core' => ':module already latest version so then yon can not update.',
], ],
'badge' => [ 'badge' => [
'installed' => 'Instalēts', 'installed' => 'Instalēts',
'pre_sale' => 'Pre-Sale', 'pre_sale' => 'Pre-Sale',
], ],
'button' => [ 'button' => [
@ -72,14 +69,16 @@ return [
], ],
'my' => [ 'my' => [
'purchased' => 'Nopirkts', 'purchased' => 'Nopirkts',
'installed' => 'Instalēts', 'installed' => 'Instalēts',
], ],
'reviews' => [ 'reviews' => [
'button' => [ 'button' => [
'add' => 'Add a Review' 'add' => 'Add a Review'
], ],
'na' => 'There are no reviews.'
] 'na' => 'There are no reviews.'
],
]; ];

View File

@ -2,8 +2,9 @@
return [ return [
'previous' => '&laquo; Nākamā', 'previous' => 'Previous',
'next' => 'Iepriešējā &raquo;', 'next' => 'Next',
'showing' => 'Rāda :first līdz :last no :total :type', 'showing' => ':first-:last of :total records.',
'page' => 'per page.',
]; ];

View File

@ -6,7 +6,7 @@ return [
'reconciled' => 'Reconciled', 'reconciled' => 'Reconciled',
'closing_balance' => 'Closing Balance', 'closing_balance' => 'Closing Balance',
'unreconciled' => 'Unreconciled', 'unreconciled' => 'Unreconciled',
'list_transactions' => 'List Transactions', 'transactions' => 'Transactions',
'start_date' => 'Start Date', 'start_date' => 'Start Date',
'end_date' => 'End Date', 'end_date' => 'End Date',
'cleared_amount' => 'Cleared Amount', 'cleared_amount' => 'Cleared Amount',

View File

@ -12,6 +12,7 @@ return [
'net_profit' => 'Neto peļņa', 'net_profit' => 'Neto peļņa',
'total_expenses' => 'Kopējie izdevumi', 'total_expenses' => 'Kopējie izdevumi',
'net' => 'NET', 'net' => 'NET',
'income_expense' => 'Income & Expense',
'summary' => [ 'summary' => [
'income' => 'Ieņēmumu kopsavilkums', 'income' => 'Ieņēmumu kopsavilkums',
@ -20,11 +21,10 @@ return [
'tax' => 'Nodokļu kopsavilkums', 'tax' => 'Nodokļu kopsavilkums',
], ],
'quarter' => [ 'charts' => [
'1' => 'Jan-Mar', 'line' => 'Line',
'2' => 'Apr-Jun', 'bar' => 'Bar',
'3' => 'Jul-Sep', 'pie' => 'Pie',
'4' => 'Okt-Dec',
], ],
]; ];

View File

@ -3,15 +3,17 @@
return [ return [
'company' => [ 'company' => [
'description' => 'Nomainiet kompānijas nosaukumu, e-pastu, adresi, nodokļu maksātāja nr. u.c.',
'name' => 'Vārds', 'name' => 'Vārds',
'email' => 'E-pasts', 'email' => 'E-pasts',
'phone' => 'Tālrunis', 'phone' => 'Tālrunis',
'address' => 'Adrese', 'address' => 'Adrese',
'logo' => 'Logo', 'logo' => 'Logo',
], ],
'localisation' => [ 'localisation' => [
'tab' => 'Reģionālie iestatījumi', 'description' => 'Noteikt fiskālo gadu, laika zonu, datuma formātu un citas lokālās vienības',
'financial_start' => 'Financial Year Start', 'financial_start' => 'Finansiālā gada sākums',
'timezone' => 'Laika zona', 'timezone' => 'Laika zona',
'date' => [ 'date' => [
'format' => 'Datuma formāts', 'format' => 'Datuma formāts',
@ -28,32 +30,42 @@ return [
'after' => 'Pēc skaitļa', 'after' => 'Pēc skaitļa',
], ],
], ],
'invoice' => [ 'invoice' => [
'tab' => 'Rēķini', 'description' => 'Rediģēt pavadzīmju artikulus, numerāciju, terminus, kājeni (footer) u.c.',
'prefix' => 'Rēķina sākums', 'prefix' => 'Rēķina sākums',
'digit' => 'Rēķina numura garums', 'digit' => 'Rēķina numura garums',
'next' => 'Nākamais numurs', 'next' => 'Nākamais numurs',
'logo' => 'Logo', 'logo' => 'Logo',
'custom' => 'Custom', 'custom' => 'Pasūtījuma',
'item_name' => 'Item Name', 'item_name' => 'Lietas nosaukums',
'item' => 'Items', 'item' => 'Lietas / Preces',
'product' => 'Products', 'product' => 'Produkti',
'service' => 'Services', 'service' => 'Servisi',
'price_name' => 'Price Name', 'price_name' => 'Cenas nosaukums',
'price' => 'Price', 'price' => 'Cena',
'rate' => 'Rate', 'rate' => 'Attiecība',
'quantity_name' => 'Quantity Name', 'quantity_name' => 'Daudzuma nosaukums',
'quantity' => 'Quantity', 'quantity' => 'Daudzums',
'payment_terms' => 'Maksājuma termini',
'title' => 'Nosaukums',
'subheading' => 'Apakš-nosaukums',
'due_receipt' => 'Termiņš līdz saņemšanai',
'due_days' => 'Izpildes laiks, dienu skaits',
'choose_template' => 'Izvēlēties pavadzīmes sagatavi',
'default' => 'Noklusējuma',
'classic' => 'Klasisks',
'modern' => 'Moderns',
], ],
'default' => [ 'default' => [
'tab' => 'Noklusētie iestatījumi', 'description' => 'Jūsu uzņēmuma noklusējuma konts, valūta un valoda',
'account' => 'Noklusētais konts', 'list_limit' => 'Ierakstu skaits lapā',
'currency' => 'Noklusētā valūta', 'use_gravatar' => 'Use Gravatar',
'tax' => 'Noklusētā PVN likme',
'payment' => 'Noklusētā maksājuma metode',
'language' => 'Noklusētā valoda',
], ],
'email' => [ 'email' => [
'description' => 'Nomainīt uzsūtnes protokolu un e-pasta sagataves',
'protocol' => 'Protokols', 'protocol' => 'Protokols',
'php' => 'PHP Mail', 'php' => 'PHP Mail',
'smtp' => [ 'smtp' => [
@ -68,36 +80,44 @@ return [
'sendmail' => 'Sendmail', 'sendmail' => 'Sendmail',
'sendmail_path' => 'Sendmail ceļš', 'sendmail_path' => 'Sendmail ceļš',
'log' => 'Auditēt e-pastus', 'log' => 'Auditēt e-pastus',
'templates' => [
'subject' => 'Nosaukums / Tēma',
'body' => 'Galvenā daļa',
'tags' => '<strong>Available Tags:</strong> :tag_list',
'invoice_new_customer' => 'Jaunas pavadzīmes sagatave (nosūtīts klientam)',
'invoice_remind_customer' => 'Atgādinājums par pavadzīmi (nosūtīts klientam)',
'invoice_remind_admin' => 'Atgādinājums par pavadzīmi (nosūtīts administrātoram)',
'invoice_recur_customer' => 'Atkārtotas pavadzīmes sagatave (nosūtīts klientam)',
'invoice_recur_admin' => 'Atkārtotas pavadzīmes sagatave (nosūtīts administrātoram)',
'invoice_payment_customer' => '"Maksājums saņemts" sagatave (nosūtīts klientam)',
'invoice_payment_admin' => '"Maksājums saņemts" sagatave (nosūtīts administrātoram)',
'bill_remind_admin' => '"Atgādinājums par rēķinu" sagatave (nosūtīts administrātoram)',
'bill_recur_admin' => 'Atkārtota rēķina sagatave (nosūtīts administrātoram)',
],
], ],
'scheduling' => [ 'scheduling' => [
'tab' => 'Atgādinājumi', 'name' => 'Ieplānotšana',
'description' => 'Automātiskie atgādinātāji un komandas atkārtojumu veikšanai',
'send_invoice' => 'Sūtīt rēķinu atgādinājumus', 'send_invoice' => 'Sūtīt rēķinu atgādinājumus',
'invoice_days' => 'Sūtīt pēc kavētām dienām', 'invoice_days' => 'Sūtīt pēc kavētām dienām',
'send_bill' => 'Sūtīt piegādātāju rēķinu atgādinājumus', 'send_bill' => 'Sūtīt piegādātāju rēķinu atgādinājumus',
'bill_days' => 'Sūtīt dienas pirms termiņa', 'bill_days' => 'Sūtīt dienas pirms termiņa',
'cron_command' => 'Cron komanda', 'cron_command' => 'Cron komanda',
'schedule_time' => 'Stunda kurā sūtīt', 'schedule_time' => 'Stunda kurā sūtīt',
'send_item_reminder'=> 'Send Item Reminder',
'item_stocks' => 'Send When Item Stock',
], ],
'appearance' => [
'tab' => 'Izskats', 'categories' => [
'theme' => 'Tēma', 'description' => 'Bezizmēra kategorijas ienākumiem, izdevumiem un priekšmetiem',
'light' => 'Gaiša',
'dark' => 'Tumša',
'list_limit' => 'Ieraksti lapā',
'use_gravatar' => 'Lietot attēlu',
], ],
'system' => [
'tab' => 'Sistēma', 'currencies' => [
'session' => [ 'description' => 'Uzstādīt un pārvaldīt valūtas un to attiecību',
'lifetime' => 'Sesijas ilgums (minūtes)', ],
'handler' => 'Sesijas uzturēšana',
'file' => 'Fails', 'taxes' => [
'database' => 'Datubāze', 'description' => 'Fiksētas, ierastas, ietverošas un apvienotas nodokļu likmes',
],
'file_size' => 'Maksimālais faila lielums (MB)',
'file_types' => 'Atļautie failu tipi',
], ],
]; ];

View File

@ -4,8 +4,8 @@ return [
'rate' => 'Likme', 'rate' => 'Likme',
'rate_percent' => 'Likme (%)', 'rate_percent' => 'Likme (%)',
'normal' => 'Normal', 'normal' => 'Ierastas',
'inclusive' => 'Inclusive', 'inclusive' => 'Ietverošas',
'compound' => 'Compound', 'compound' => 'Apvienotas',
'fixed' => 'Fiksētas',
]; ];

View File

@ -13,78 +13,79 @@ return [
| |
*/ */
'accepted' => ':attribute nepieciešams akceptēt.', 'accepted' => ' :attribute ir jābūt pieņemtam.',
'active_url' => ':attribute nav derīga URL adrese.', 'active_url' => ' :attribute ir ar nederīgu linku.',
'after' => ':attribute datumam jābūt pēc :date datuma.', 'after' => ' :attribute ir jābūt ar datumu pēc :datums.',
'after_or_equal' => ':attribute datumam jābūt vienādam vai vēlākam par :date.', 'after_or_equal' => ' :attribute ir jābūt ar datumu pēc vai vienādu ar :datums.',
'alpha' => ':attribute jāsatur tikai burti.', 'alpha' => ' :attribute var saturēt tikai burtus.',
'alpha_dash' => ':attribute var saturēt tikai burtus, ciparus un domuzīmes.', 'alpha_dash' => ' :attribute var saturēt tikai burtus, nummurus un atstarpes.',
'alpha_num' => ':attribute var saturēt tikai burtus un ciparus.', 'alpha_num' => ' :attribute var tikai saturēt burtus un nummurus.',
'array' => ':attribute nepieciešams būt datu masīvam.', 'array' => ' :attribute ir jābūt sakārtotam.',
'before' => ':attribute jābūt pirms :date.', 'before' => ' :attribute ir jābūt ar datumu pirms :datums.',
'before_or_equal' => ':attribute jābūt vienādam vai pirms :date.', 'before_or_equal' => ' :attribute ir jābūt ar datumu pirms vai vienādu ar :datums.',
'between' => [ 'between' => [
'numeric' => ':attribute nepieciešams būt starp :min un :max.', 'numeric' => ' :attribute jābūt starp :min un :max.',
'file' => ':attribute nepieciešams būt starp :min un :max kilobaitiem.', 'file' => ' :attribute jābūt starp :min un :max kilobaiti.',
'string' => ':attribute nepieciešams būt starp :min un :max zīmēm.', 'string' => ' :attribute jābūt no :min līdz :max zīmēm.',
'array' => ':attribute nepieciešams būt starp :min un :max vienībām.', 'array' => ' :attribute jābūt no :min līdz :max vienībām.',
], ],
'boolean' => ':attribute jābūt true vai false.', 'boolean' => ' :attribute laiciņam jābūt atbilstošam vai neatbilstošam.',
'confirmed' => ':attribute apstiprinājums nav derīgs.', 'confirmed' => ' :attribute apstiprinājums neatbilst.',
'date' => ':attribute nav derīgs datums.', 'date' => ' :attribute nav derīgs.',
'date_format' => ':attribute neatbilst formātam :format.', 'date_format' => ' :attribute neatbilst formātam :format.',
'different' => ':attribute un :other jābūt atšķirīgiem.', 'different' => ' :attribute un :other ir jābūt citiem.',
'digits' => ':attribute jābūt :digits zīmju skaitlim.', 'digits' => ' :attribute ir jābūt :digits ciparam.',
'digits_between' => ':attribute vajag būt starp :min un :max zīmēm.', 'digits_between' => ' :attribute ir jābūt :min un :max ciparam.',
'dimensions' => ':attribute nav derīgs attēla izmērs.', 'dimensions' => ' :attribute ir nederīgs attēla izmērs.',
'distinct' => ':attribute laukam vērtība atkārtojas.', 'distinct' => ' :attribute laikam ir dubulta vērtība.',
'email' => ':attribute jābūt derīgai e-pasta adresei', 'email' => ' :attribute derīgam e-pastam.',
'exists' => 'Izvēlētā vērtība :attribute nav derīga.', 'ends_with' => 'The :attribute must end with one of the following: :values',
'file' => ':attribute jābūt failam.', 'exists' => 'Izvēlētais :attribute ir nederīgs.',
'filled' => ':attribute jābūt norādītai vērtībai.', 'file' => ' :attribute jābūt failam.',
'image' => ':attribute jābūt attēlam.', 'filled' => ':attribute lauks ir nepieciešams.',
'in' => 'Atzīmētā vērtība :attribute nav derīga.', 'image' => ' :attribute jābūt attēlam.',
'in_array' => ':attribute vērtība neeksistē :other.', 'in' => 'Izvēlētais :attribute ir nederīgs.',
'integer' => ':attribute jābūt veselam skaitlim.', 'in_array' => ' :attribute laiks neeksistē :cits.',
'ip' => ':attribute jābūt derīgai IP adresei.', 'integer' => ' :attribute ir jabūt skaitim.',
'json' => ':attribute jābūt derīgai JSON vērtībai.', 'ip' => ' :attribute jābūt derīgai IP adresei.',
'json' => ' :attribute jābūt derīgai JSON virknei.',
'max' => [ 'max' => [
'numeric' => ':attribute nevar būt lielāks par :max.', 'numeric' => ' :attribute nedrīkst pārsniegt :max.',
'file' => ':attribute nevar būt lielāks par :max kilobaitiem.', 'file' => ' :attribute nedrīkst pārsniegt :max kilobaiti.',
'string' => ':attribute nevar būt garāks par :max zīmēm.', 'string' => ' :attribute nedrīkst pārsniegt :max zīmes.',
'array' => ':attribute nevar saturēt vairāk kā :max vērtības.', 'array' => ' :attribute nedrīkst pārsniegt :max vienības.',
], ],
'mimes' => ':attribute ir jābūt šāda tipa failam: :values.', 'mimes' => ' :attribute jābūt faila tipam: :values',
'mimetypes' => ':attribute ir jābūt šāda tipa failam: :values.', 'mimetypes' => ' :attribute jābūt faile tipam: :values.',
'min' => [ 'min' => [
'numeric' => ':attribute jābūt vismaz :min.', 'numeric' => ' :attribute jābūt vismaz :min.',
'file' => ':attribute jābūt lielākam par :min kilobaitiem.', 'file' => ' :attribute jābūt vismaz :min kilobaiti.',
'string' => ':attribute jābūt vismaz zīmes :min garam.', 'string' => ' :attribute jābūt vismaz :min zīmes.',
'array' => ':attribute jāsatur vismaz :min vērtības.', 'array' => ' :attribute jāsatur vismaz :min vienības.',
], ],
'not_in' => 'Atzīmētā vērtība :attribute nav derīga.', 'not_in' => ' izvēlieties :attribute ir nederīgs.',
'numeric' => ':attribute jābūt skaitlim.', 'numeric' => ' :attribute jābūt skaitlim.',
'present' => ':attribute jābūt norādītam.', 'present' => ' :attribute laikums ir nepieciešams.',
'regex' => ':attribute formāts nav derīgs.', 'regex' => ' :attribute formāts ir nederīgs.',
'required' => ':attribute lauks ir obligāts.', 'required' => ' :attribute laukums ir nepieciešams.',
'required_if' => ':attribute jauks ir obligāts, ja :other ir :value.', 'required_if' => ' :attribute laukums ir nepieciešams, ja vien :other ir :values.',
'required_unless' => ':attribute lauks ir obligāts, ja :other satur :values.', 'required_unless' => ' :attribute laukums ir nepieciešams, ja vien :other ir :values.',
'required_with' => ':attribute lauks ir obligāts, ja :values ir aizpildīta.', 'required_with' => ' :attribute laukums ir nepieciešams, kad :values ir pieejama.',
'required_with_all' => ':attribute lauks ir obligāts, ja :values ir aizpildītas.', 'required_with_all' => ' :attribute laukums ir nepieciešams, kad :values ir pieejama.',
'required_without' => ':attribute laukam jābūt aizpildītam, ja lauks :values nav aizpildīts.', 'required_without' => ' :attribute laukums ir nepieciešams, kad :values nav pieejama.',
'required_without_all' => ':attribute lauks ir jāaizpilda, ja lauki :values nav aizpildīti.', 'required_without_all' => ' :attribute laukums ir nepieciešams, kad neviena no :values nav pieejama.',
'same' => ':attribute un :other jābūt vienādiem.', 'same' => ' :attribute un :citiem ir jāsakrīt.',
'size' => [ 'size' => [
'numeric' => ':attribute jābūt :size.', 'numeric' => ' :attribute jābūt :size.',
'file' => ':attribute jābūt :size kilobaiti.', 'file' => ' :attribute jābūt :size kilobaiti.',
'string' => ':attribute jābūt :size zīmes.', 'string' => ' :attribute jābūt :size zīmes.',
'array' => ':attribute jāsatur :size vērtības.', 'array' => ' :attribute jāsatur :size vienības.',
], ],
'string' => ':attribute jābūt teksta vērtībai.', 'string' => ' :attribute jābūt virknē.',
'timezone' => ':attribute jābūt derīgai laika zonai.', 'timezone' => ' :attribute jābūt derīgā zonā.',
'unique' => ':attribute jau ir aizņemts.', 'unique' => ' :attribute jau ir aizņemts.',
'uploaded' => ':attribute neizdevās augšupielādēt.', 'uploaded' => ' :attribute netika augšuplādēts.',
'url' => ':attribute formāts nav derīgs.', 'url' => ' :attribute formāts ir nederīgs.',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -99,10 +100,10 @@ return [
'custom' => [ 'custom' => [
'attribute-name' => [ 'attribute-name' => [
'rule-name' => 'custom-message', 'rule-name' => 'ziņa pēc pieprasījuma',
], ],
'invalid_currency' => ':attribute kods nav derīgs.', 'invalid_currency' => ':attribute kods nav derīgs.',
'invalid_amount' => 'The amount :attribute is invalid.', 'invalid_amount' => 'Daudzums :attribute ir nederīgs.',
], ],
/* /*

View File

@ -0,0 +1,23 @@
<?php
return [
'total_income' => 'Total Income',
'receivables' => 'Receivables',
'open_invoices' => 'Open Invoices',
'overdue_invoices' => 'Overdue Invoices',
'total_expenses' => 'Total Expenses',
'payables' => 'Payables',
'open_bills' => 'Open Bills',
'overdue_bills' => 'Overdue Bills',
'total_profit' => 'Total Profit',
'open_profit' => 'Open Profit',
'overdue_profit' => 'Overdue Profit',
'cash_flow' => 'Cash Flow',
'no_profit_loss' => 'No Profit Loss',
'income_by_category' => 'Income By Category',
'expenses_by_category' => 'Expenses By Category',
'account_balance' => 'Account Balance',
'latest_income' => 'Latest Income',
'latest_expenses' => 'Latest Expenses',
];

View File

@ -2,10 +2,10 @@
return [ return [
'title' => 'Sob Manutenção', 'title' => 'Em Manutenção',
'message' => 'Desculpe, estamos em manutenção. Por favor, tente novamente mais tarde!', 'message' => 'Desculpe, estamos em manutenção. Por favor, tente novamente mais tarde!',
'last-updated' => 'Esta mensagem foi atualizada pela última vez :timestamp.', 'last-updated' => 'Esta mensagem foi atualizada pela última vez em :timestamp.',
]; ];