Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Spanish translations #13

Merged
merged 2 commits into from
Apr 10, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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',
],
],
],

];