Merge branch 'translations' of github.com:akaunting/akaunting
This commit is contained in:
commit
0400e83c45
@ -44,7 +44,7 @@ return [
|
||||
'status' => [
|
||||
'created' => 'Oprettet den :date',
|
||||
'receive' => [
|
||||
'draft' => 'Ikke sendt',
|
||||
'draft' => 'Ikke modtaget',
|
||||
'received' => 'Modtaget den :date',
|
||||
],
|
||||
'paid' => [
|
||||
|
@ -8,7 +8,9 @@ return [
|
||||
'deleted' => ':type slettet!',
|
||||
'duplicated' => ':type duplikeret!',
|
||||
'imported' => ':type importeret!',
|
||||
'import_queued' => ':type import er planlagt! Du vil modtage en e-mail, når den er færdig.',
|
||||
'exported' => ':type exporteret!',
|
||||
'export_queued' => ':type eksport er planlagt! Du vil modtage en e-mail, når den er klar til download.',
|
||||
'enabled' => ':type aktiveret!',
|
||||
'disabled' => ':type deaktiveret!',
|
||||
],
|
||||
|
@ -4,7 +4,7 @@ return [
|
||||
|
||||
'whoops' => 'Ups!',
|
||||
'hello' => 'Hej!',
|
||||
'salutation' => 'Med venlig hilsen,<br> : company_name',
|
||||
'salutation' => 'Med venlig hilsen,<br> :company_name',
|
||||
'subcopy' => 'Hvis du har problemer med at klikke på ":text" knappen, kopier og indsæt nedenstående URL i din webbrowser: [:url](:url)',
|
||||
|
||||
'update' => [
|
||||
@ -24,4 +24,31 @@ return [
|
||||
|
||||
],
|
||||
|
||||
'import' => [
|
||||
|
||||
'completed' => [
|
||||
'subject' => 'Import fuldført',
|
||||
'description' => 'Importen er gennemført, og posteringerne er tilgængelige i dit panel.',
|
||||
],
|
||||
|
||||
'failed' => [
|
||||
'subject' => 'Import mislykkedes',
|
||||
'description' => 'Ikke i stand til at importere filen på grund af følgende problemer:',
|
||||
],
|
||||
],
|
||||
|
||||
'export' => [
|
||||
|
||||
'completed' => [
|
||||
'subject' => 'Eksport er klar',
|
||||
'description' => 'Eksportfilen er klar til download fra følgende link:',
|
||||
],
|
||||
|
||||
'failed' => [
|
||||
'subject' => 'Eksport mislykkedes',
|
||||
'description' => 'Ikke i stand til at oprette eksportfilen på grund af følgende problem:',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
|
@ -3,7 +3,9 @@
|
||||
return [
|
||||
|
||||
'from_account' => 'Fra konto',
|
||||
'from_account_rate' => 'Fra kontosats',
|
||||
'to_account' => 'Til konto',
|
||||
'to_account_rate' => 'Til kontosats',
|
||||
|
||||
'messages' => [
|
||||
'delete' => ':from til :to (:amount)',
|
||||
|
@ -8,7 +8,9 @@ return [
|
||||
'deleted' => ':type gelöscht!',
|
||||
'duplicated' => ':type dupliziert!',
|
||||
'imported' => ':type importiert!',
|
||||
'import_queued' => ':type Import ist geplant! Sie erhalten eine E-Mail, sobald dieser fertiggestellt ist.',
|
||||
'exported' => ':type exportiert!',
|
||||
'export_queued' => ':type Export ist geplant! Sie erhalten eine E-Mail, sobald dieser fertiggestellt ist.',
|
||||
'enabled' => ':type aktiviert!',
|
||||
'disabled' => ':type deaktiviert!',
|
||||
],
|
||||
|
@ -24,4 +24,31 @@ return [
|
||||
|
||||
],
|
||||
|
||||
'import' => [
|
||||
|
||||
'completed' => [
|
||||
'subject' => 'Import abgeschlossen',
|
||||
'description' => 'Der Import wurde abgeschlossen und die Datensätze sind verfügbar.',
|
||||
],
|
||||
|
||||
'failed' => [
|
||||
'subject' => 'Import fehlgeschlagen',
|
||||
'description' => 'Die Daten können aufgrund der folgenden Probleme nicht importiert werden:',
|
||||
],
|
||||
],
|
||||
|
||||
'export' => [
|
||||
|
||||
'completed' => [
|
||||
'subject' => 'Export ist bereit',
|
||||
'description' => 'Die Exportdatei kann von folgendem Link heruntergeladen werden:',
|
||||
],
|
||||
|
||||
'failed' => [
|
||||
'subject' => 'Export fehlgeschlagen',
|
||||
'description' => 'Der Export konnte aufgrund des folgenden Problems nicht erstellt werden:',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
|
54
resources/lang/es-ES/documents.php
Normal file
54
resources/lang/es-ES/documents.php
Normal file
@ -0,0 +1,54 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'edit_columns' => 'Editar Columnas',
|
||||
'empty_items' =>'No has añadido ningún artículo.',
|
||||
|
||||
'statuses' => [
|
||||
'draft' => 'Borrador',
|
||||
'sent' => 'Enviado',
|
||||
'expired' => 'Caducado',
|
||||
'viewed' => 'Visto',
|
||||
'approved' => 'Aprobada',
|
||||
'received' => 'Recibido',
|
||||
'refused' => 'Rechazado',
|
||||
'restored' => 'Restaurado',
|
||||
'reversed' => 'Invertida',
|
||||
'partial' => 'Parcial',
|
||||
'paid' => 'Pagado',
|
||||
'pending' => 'Pendiente',
|
||||
'invoiced' => 'Facturado',
|
||||
'overdue' => 'Vencida',
|
||||
'unpaid' => 'No Pagada',
|
||||
'cancelled' => 'Cancelada',
|
||||
'voided' => 'Anulada',
|
||||
'completed' => 'Finalizado',
|
||||
'shipped' => 'Enviado',
|
||||
'refunded' => 'Reembolsado',
|
||||
'failed' => 'Fallo',
|
||||
'denied' => 'Denegado',
|
||||
'processed' => 'Procesado',
|
||||
'open' => 'Abrir',
|
||||
'closed' => 'Cerrado',
|
||||
'billed' => 'Facturado',
|
||||
'delivered' => 'Entregado',
|
||||
'returned' => 'Devuelto',
|
||||
'drawn' => 'Dibujado',
|
||||
'not_billed' => 'No facturado',
|
||||
'issued' => 'Emitido',
|
||||
'not_invoiced' => 'No Facturado',
|
||||
'confirmed' => 'Confirmado',
|
||||
'not_confirmed' => 'No confirmado',
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
'email_sent' => '¡Se ha enviado :type por correo!',
|
||||
'marked_as' => '¡:type marcado/a como :status!',
|
||||
'marked_sent' => '¡:type marcado/a como enviado!',
|
||||
'marked_paid' => '¡:type marcado/a como pagado/a!',
|
||||
'marked_viewed' => '¡:type marcado/a como visto/a!',
|
||||
'marked_cancelled' => '¡:type marcado/a como cancelado/a!',
|
||||
'marked_received' => '¡:type marcado/a como recibido/a!',
|
||||
],
|
||||
];
|
@ -3,21 +3,22 @@
|
||||
return [
|
||||
|
||||
'title' => [
|
||||
'403' => '¡Ups! Acceso prohibido',
|
||||
'404' => '¡Ups! Página no encontrada',
|
||||
'500' => '¡Ups! Algo fue mal',
|
||||
'403' => '¡Ups! Acceso prohibido',
|
||||
'404' => '¡Ups! Página no encontrada',
|
||||
'500' => '¡Ups! Algo fue mal',
|
||||
],
|
||||
|
||||
'header' => [
|
||||
'403' => '403 Prohibido',
|
||||
'404' => '404 Página no encontrada',
|
||||
'500' => '500 Error interno del servidor',
|
||||
'403' => '403 Prohibido',
|
||||
'404' => '404 Página no encontrada',
|
||||
'500' => '500 Error interno del servidor',
|
||||
],
|
||||
|
||||
'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.',
|
||||
'403' => 'No puede acceder a esta página.',
|
||||
'404' => 'No pudimos encontrar la página que estaba buscando.',
|
||||
'500' => 'Trabajaremos para arreglarlo de inmediato.',
|
||||
'record' => 'No pudimos encontrar el registro que estaba buscando.',
|
||||
],
|
||||
|
||||
];
|
||||
|
@ -2,7 +2,8 @@
|
||||
|
||||
return [
|
||||
|
||||
'sales_price' => 'Precio de Venta',
|
||||
'purchase_price' => 'Precio de Compra',
|
||||
'sales_price' => 'Precio de Venta',
|
||||
'purchase_price' => 'Precio de Compra',
|
||||
'enter_item_description' => 'Indique una descripción',
|
||||
|
||||
];
|
||||
|
@ -8,7 +8,9 @@ return [
|
||||
'deleted' => ':type borrado!',
|
||||
'duplicated' => ': type duplicado!',
|
||||
'imported' => ':type importado!',
|
||||
'import_queued' => 'La importación de :type ha sido programada! Recibirás un correo electrónico cuando haya terminado.',
|
||||
'exported' => ':type exportado!',
|
||||
'export_queued' => 'La exportación de :type ha sido programada! Recibirás un correo electrónico cuando haya terminado.',
|
||||
'enabled' => ':type habilitado!',
|
||||
'disabled' => ':type deshabilitado!',
|
||||
],
|
||||
|
20
resources/lang/es-ES/search_string.php
Normal file
20
resources/lang/es-ES/search_string.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'columns' => [
|
||||
'last_logged_in_at' => 'Último acceso',
|
||||
'paid_at' => 'Fecha de pago',
|
||||
'started_at' => 'Fecha de inicio',
|
||||
'ended_at' => 'Fecha de Fin',
|
||||
'billed_at' => 'Fecha de Recibo',
|
||||
'due_at' => 'Fecha de Vencimiento',
|
||||
'invoiced_at' => 'Fecha de Factura',
|
||||
'issued_at' => 'Fecha',
|
||||
'symbol_first' => 'Posición del Símbolo',
|
||||
'reconciled' => 'Concialiado',
|
||||
'expense_account' => 'De Cuenta',
|
||||
'income_account' => 'A Cuenta',
|
||||
],
|
||||
|
||||
];
|
@ -2,6 +2,7 @@
|
||||
|
||||
return [
|
||||
|
||||
'currencies' => 'Divisas',
|
||||
'total_income' => 'Total Ingresos',
|
||||
'receivables' => 'Cuentas por cobrar',
|
||||
'open_invoices' => 'Facturas Pendientes',
|
||||
|
@ -178,7 +178,7 @@ return [
|
||||
'send' => 'Invia :type',
|
||||
'get' => 'Ottieni :type',
|
||||
'add' => 'Aggiungi :type',
|
||||
'manage' => 'Gestisci :tipo',
|
||||
'manage' => 'Gestisci :type',
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
return [
|
||||
|
||||
'currencies' => 'Valute',
|
||||
'total_income' => 'Totale Entrate',
|
||||
'receivables' => 'Crediti',
|
||||
'open_invoices' => 'Fatture aperte',
|
||||
|
@ -8,7 +8,9 @@ return [
|
||||
'deleted' => ':type fshirë!',
|
||||
'duplicated' => ':type dubluar!',
|
||||
'imported' => ':type importuar!',
|
||||
'import_queued' => 'Importi :type është planifikuar! Ju do të merrni një email kur të ketë mbaruar.',
|
||||
'exported' => ':type eksportuar!',
|
||||
'export_queued' => 'Eksporti :type është planifikuar! Ju do të merrni një email kur të jetë gati për t\'u shkarkuar.',
|
||||
'enabled' => ':type aktivizuar!',
|
||||
'disabled' => ':type çaktivizuar!',
|
||||
],
|
||||
|
@ -24,4 +24,31 @@ return [
|
||||
|
||||
],
|
||||
|
||||
'import' => [
|
||||
|
||||
'completed' => [
|
||||
'subject' => 'Importi ka përfunduar',
|
||||
'description' => 'Importi ka përfunduar dhe të dhënat janë në dispozicion në panelin tuaj.',
|
||||
],
|
||||
|
||||
'failed' => [
|
||||
'subject' => 'Importi dështoi.',
|
||||
'description' => 'Nuk është në gjendje të importojë skedarin për shkak të çështjeve të mëposhtme:',
|
||||
],
|
||||
],
|
||||
|
||||
'export' => [
|
||||
|
||||
'completed' => [
|
||||
'subject' => 'Eksporti është gati',
|
||||
'description' => 'Skedari i eksportit është gati për t\'u shkarkuar nga linku vijues:',
|
||||
],
|
||||
|
||||
'failed' => [
|
||||
'subject' => 'Eksporti dështoi',
|
||||
'description' => 'Nuk është në gjendje të krijojë skedarin e eksportit për shkak të çështjes vijuese:',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
|
@ -44,7 +44,7 @@ return [
|
||||
'status' => [
|
||||
'created' => 'Формирана на: датум',
|
||||
'receive' => [
|
||||
'draft' => 'Није послато',
|
||||
'draft' => 'Није примљено',
|
||||
'received' => 'Примљено дана: датум',
|
||||
],
|
||||
'paid' => [
|
||||
|
Loading…
x
Reference in New Issue
Block a user