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

perf: add Spanish Language #385

Merged
merged 3 commits into from Mar 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
83 changes: 83 additions & 0 deletions src/lang/es.js
@@ -0,0 +1,83 @@
const locale = {
/** General */
category: 'categoría',
settings: 'ajustes',
pause: 'pausar',
delete: 'borrar',
save: 'guardar',
cancel: 'cancelar',
confirm: 'confirmar',

/** Torrent */
torrent: {
title: 'título',
added: 'agregado el',
availability: 'disponibilidad',
size: 'tamaño',
progress: 'progreso',
directory: 'directorio',
downloaded: 'descargado',
uploaded: 'subido',
created: 'creado por',
comments: 'comentarios'
},
/** Navbar */
navbar: {
currentSpeed: 'velocidad actual',
freeSpace: 'espacio libre',
topActions: {
addTorrent: 'agregar torrrent',
resumeSelected: 'resumir torrents seleccionados',
pauseSelected: 'pausar torrents seleccionados',
removeSelected: 'quitar torrents seleccionados',
openSettings: 'abrir ajustes',
searchNew: 'buscar nuevo torrent'
},
sessionStats: {
tooltip: 'Desde la última vez que se reinició qBittorrent'
}
},

/** Modals */
modals: {
add: {
title: 'Agregar nuevo torrent',
selectFiles: 'Selecciona tus archivos'
},
delete: {
check: 'También borrar archivos del disco'
}
},

/** Toast */
toast: {
loginSuccess: '¡Inicio de sesión correcto! 🎉',
loginFailed: 'Inicio de sesión fallido 😕',
settingsSaved: '¡Los ajustes se guardaron correctamente!',
categorySaved: '¡Categoría guardada correctamente!'
},

/** RightClick **/
rightClick: {
resume: 'reanudar',
forceResume: 'forzar reanudado',
advanced: {
advanced: 'avanzado',
changeLocation: 'cambiar directorio',
rename: 'renombrar'
},
prio: {
prio: 'prioridad',
top: 'arriba',
bottom: 'abajo',
increase: 'incrementar',
decrease: 'reducir'
},
category: 'categoría',
limit: 'poner límite',
copy: 'copiar',
info: 'mostrar información'
}
}

export default locale