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 (es) translation #163

Merged
merged 1 commit into from
Oct 5, 2021
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"Select All": "Select All",
"Language": "Language",
"en": "English (en)",
"es": "Español (es)",
"hi": "हिंदी (hi)",
"it": "Italiano (it)",
"Tab": "Tab",
Expand Down
42 changes: 42 additions & 0 deletions locales/es/translation.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"&File": "&Archivo",
"Force &Reload": "Forzar &recarga",
"&Quit": "&Salir",
"&Edit": "&Editar",
"Undo": "Deshacer",
"Redo": "Rehacer",
"Cut": "Cortar",
"Copy": "Copiar",
"Paste": "Pegar",
"Select All": "Seleccionar todo",
"Language": "Idioma",
"en": "English (en)",
"es": "Español (es)",
"hi": "हिंदी (hi)",
"it": "Italiano (it)",
"Tab": "Pestaña",
"Add New Tab": "Nueva pestaña",
"Edit Active Tab": "Editar pestaña activa",
"Close Active Tab": "Cerrar pestaña activa",
"Open Tab DevTools": "Herramientas de desarrollador de la pestaña",
"Restore Tab": "Restaurar pestaña",
"Go to Next Tab": "Ir a la siguiente pestaña",
"Go to Previous Tab": "Ir a la pestaña anterior",
"Go to First Tab": "Ir a la primera pestaña",
"Go to Last Tab": "Ir a la última pestaña",
"&View": "&Ver",
"Toggle Fullscreen": "Activar/Desactivar pantalla completa",
"Toggle Tab Bar": "Activar/Desactivar barra de pestañas",
"Themes": "Temas",
"Theme Manager": "Gestor de temas",
"&Settings": "&Preferencias",
"&Help": "A&yuda",
"&About": "Acerca &de",
"Donate": "Donar",
"Check For &Updates": "&Buscar actualizaciones",
"Links": "Links",
"Report Bugs/Issues": "Reportar bugs/problemas",
"Website": "Página web",
"Repository": "Repositorio",
"Open &DevTools": "Abrir herramientas de desarrollador"
}
Empty file.
1 change: 1 addition & 0 deletions locales/hi/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"Select All": "सभी का चयन करे",
"Language": "भाषा",
"en": "English (en)",
"es": "Español (es)",
"hi": "हिंदी (hi)",
"it": "Italiano (it)",
"Tab": "Tab",
Expand Down
1 change: 1 addition & 0 deletions locales/it/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"Select All": "Seleziona tutto",
"Language": "Lingua",
"en": "English (en)",
"es": "Español (es)",
"hi": "हिंदी (hi)",
"it": "Italiano (it)",
"Tab": "Scheda",
Expand Down
2 changes: 1 addition & 1 deletion src/lang.conf.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
languages: ["en", "hi", "it"],
languages: ["en", "es", "hi", "it"],
fallbackLang: "en",
namespace: "translation",
};