Skip to content

Commit

Permalink
Added Spanish translations (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
pathros committed Apr 10, 2022
1 parent 01330ba commit c099a23
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions resources/lang/es/backup.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<?php

return [

'components' => [
'backup_destination_list' => [
'table' => [
'actions' => [
'download' => 'Descargar',
'delete' => 'Eliminar',
],

'fields' => [
'path' => 'Ruta',
'disk' => 'Disco',
'date' => 'Fecha',
'size' => 'Tamaño',
],

'filters' => [
'disk' => 'Disco'
],
]
],

'backup_destination_status_list' => [
'table' => [
'fields' => [
'name' => 'Nombre',
'disk' => 'Disco',
'healthy' => 'Estado',
'amount' => 'Cantidad',
'newest' => 'Más reciente',
'used_storage' => 'Espacio utilizado',
],
]
],
],

'pages' => [
'backups' => [
'actions' => [
'create_backup' => 'Hacer respaldo',
],

'heading' => 'Respaldos',

'messages' => [
'backup_success' => 'Creando un nuevo respaldo en segundo plano.'
],

'modal' => [
'buttons' => [
'only_db' => 'Solo la base de datos',
'only_files' => 'Solo los archivos',
'db_and_files' => 'Base de datos y archivos',
],

'label' => 'Elija una opción',
],

'navigation' => [
'group' => 'Configuraciones',
'label' => 'Respaldos',
],
],
],

];

0 comments on commit c099a23

Please sign in to comment.