-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Spanish translation from @aciccarello
- Loading branch information
1 parent
f79b53d
commit e556ada
Showing
6 changed files
with
117 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* eslint-disable import/no-anonymous-default-export */ | ||
export default { | ||
media: { | ||
download: "Descargar archivo", | ||
files: { | ||
none: "No hay archivos", | ||
title: "Archivos cargados", | ||
}, | ||
properties: "Propiedades", | ||
title: "Archivos", | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* eslint-disable import/no-anonymous-default-export */ | ||
export default { | ||
micropub: { | ||
posts: { | ||
none: "No hay publicaciones", | ||
title: "Publicaciones publicadas", | ||
}, | ||
properties: "Propiedades", | ||
title: "Publicaciones", | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* eslint-disable import/no-anonymous-default-export */ | ||
export default { | ||
share: { | ||
"bookmark-of": "URL", | ||
content: "Contenido", | ||
error: { | ||
"bookmark-of": "Ingrese una dirección web como https://example.org", | ||
name: "Pon un título", | ||
}, | ||
name: "Título", | ||
submit: "Publicar", | ||
title: "Compartir", | ||
}, | ||
status: { | ||
bookmarklet: { | ||
guidance: "Arrastra este vínculo a tu barra de favoritos: %s", | ||
label: "Compartir página", | ||
title: "Compartir bookmarklet", | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* eslint-disable import/no-anonymous-default-export */ | ||
export default { | ||
error: "Error", | ||
errorSummaryTitle: "Hay un problema", | ||
errors: { | ||
noDatabase: { | ||
content: "Esta función requiere una base de datos.", | ||
}, | ||
notFound: { | ||
content: "Si ha ingresido una dirección web, compruebe que es correcta.", | ||
title: "Página no encontrada", | ||
}, | ||
}, | ||
guidance: { | ||
discovery: | ||
"Para que los clientes de Micropub puedan descubrir %s y solicitar permiso para publicar en su sitio web, agregue los siguientes valores a `<head>` de su sitio web:", | ||
}, | ||
noValue: "No establecido", | ||
optionalValue: "(opcional)", | ||
session: { | ||
login: { | ||
description: | ||
"Inicia sesión con IndieAuth para verificar que eres propietario de %s", | ||
error: { | ||
validateRedirect: "Intento de redirección inválida", | ||
validateState: "Código faltante o discrepancia de estado", | ||
}, | ||
me: "Dirección web", | ||
submit: "Iniciar sesión con IndieAuth", | ||
title: "Iniciar sesión", | ||
}, | ||
logout: { | ||
title: "Cerrar sesión", | ||
}, | ||
}, | ||
status: { | ||
application: { | ||
accessToken: "Token de acceso", | ||
endpoints: "Puntos finales", | ||
installedPlugins: "Plug-ins instalados", | ||
locale: "Idioma", | ||
localeNotAvailable: "{{app}} aún no se ha traducido a {{locale}}", | ||
name: "Nombre", | ||
scope: "Alcance proporcionado", | ||
summaryTitle: "Ajustes de la aplicación", | ||
themeColor: "Color del tema", | ||
themeColorScheme: "Tema", | ||
themeColorSchemeValue: { | ||
automatic: "Automático", | ||
dark: "Oscuro", | ||
light: "Claro", | ||
}, | ||
}, | ||
publication: { | ||
accessToken: "Token de acceso", | ||
authorizationEndpoint: "Punto final de autorización", | ||
locale: "Idioma", | ||
me: "Dirección web", | ||
mediaEndpoint: "Punto final de medios", | ||
micropubEndpoint: "Punto final de Micropub", | ||
postTypes: "Tipos de publicaciones", | ||
preset: "Preestablecido", | ||
store: "Almacén de contenido", | ||
summaryTitle: "Configuración de publicación", | ||
syndicationTargets: "Objetivos de sindicación", | ||
timeZone: "Zona horaria", | ||
tokenEndpoint: "Punto final de token", | ||
}, | ||
title: "Estado del servidor", | ||
}, | ||
}; |