diff options
| author | 2019-12-04 08:27:39 +0100 | |
|---|---|---|
| committer | 2019-12-04 08:27:39 +0100 | |
| commit | 3e49b44839237693ce1a8151325942704917f6c6 (patch) | |
| tree | 75a1af8089d48d3bb14de2d9d98c503ee76433e2 /app/i18n/es/install.php | |
| parent | de2b323847e0a91119625e4f506f51ec9d43872f (diff) | |
Update i18n cli tools (#2673)
* Update i18n cli tools
Few things were bugging me when using the cli tool for i18n. So I've modified
the tools to be easier to use.
First, the tool automatically adds missing keys to all languages. This way, we
always have all keys in all languages.
Second, the tool detects all untranslated keys and adds automatically the todo
comment after the value.
Third, when adding a new key, the key is pushed to all languages at once. There
is no need to duplicate it manually. Thus making the duplication process obsolete.
Fourth, translation and ignore keys are manipulated at the same time. Thus we
don't have obsolete ignored strings anymore.
* Add i18n rules
I find that having the common rules in the Makefile is easier to use,
as long as you know they are here. As it is self documented, people
will see the new rules when using make.
* Use long parameters in Makefile
I find that using long parameters in scripts makes it easier to understand
what's going on. So I've switched all short parameters to long one.
* Format all i18n files
I've used the updated version of the cli tools to have some output
that can be consistently formated. This commit is a huge formating
commit. Nothing was added but some comments were removed in the
process.
Diffstat (limited to 'app/i18n/es/install.php')
| -rwxr-xr-x | app/i18n/es/install.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app/i18n/es/install.php b/app/i18n/es/install.php index 44236ccae..6ab7128e4 100755 --- a/app/i18n/es/install.php +++ b/app/i18n/es/install.php @@ -17,20 +17,19 @@ return array( 'type' => 'Método de identificación', ), 'bdd' => array( - '_' => 'Base de datos', 'conf' => array( - '_' => 'Configuración de la base de datos', 'ko' => 'Verificar la información de tu base de datos.', 'ok' => 'La configuración de la base de datos ha sido guardada.', + '_' => 'Configuración de la base de datos', ), 'host' => 'Servidor', 'password' => 'Contraseña de la base de datos', 'prefix' => 'Prefijo de la tabla', 'type' => 'Tipo de base de datos', 'username' => 'Nombre de usuario de la base de datos', + '_' => 'Base de datos', ), 'check' => array( - '_' => 'Verificaciones', 'already_installed' => '¡FreshRSS ya está instalado!', 'cache' => array( 'nok' => 'Comprueba los permisos en el directorio <em>./data/cache</em>. El servidor HTTP debe contar con permisos de escritura.', @@ -69,8 +68,8 @@ return array( 'ok' => 'Dispones de la librería recomendada para procesar JSON.', ), 'mbstring' => array( - 'nok' => 'Cannot find the recommended library mbstring for Unicode.', //TODO - Translation - 'ok' => 'You have the recommended library mbstring for Unicode.', //TODO - Translation + 'nok' => 'Cannot find the recommended library mbstring for Unicode.', // TODO - Translation + 'ok' => 'You have the recommended library mbstring for Unicode.', // TODO - Translation ), 'minz' => array( 'nok' => 'No se ha podido localizar el entorno Minz.', @@ -96,10 +95,11 @@ return array( 'nok' => 'No se ha podido localizar la librería necesaria para procesar XML.', 'ok' => 'Dispones de la librería necesaria para procesar XML.', ), + '_' => 'Verificaciones', ), 'conf' => array( - '_' => 'Configuración general', 'ok' => 'La configuración general se ha guardado.', + '_' => 'Configuración general', ), 'congratulations' => '¡Enhorabuena!', 'default_user' => 'Nombre de usuario para el usuario por defecto <small>(máximo de 16 caracteres alfanuméricos)</small>', @@ -110,14 +110,14 @@ return array( 'confirm_reinstall' => 'Al reinstalar FreshRSS perderás cualquier configuración anterior. ¿Seguro que quieres continuar?', ), 'language' => array( - '_' => 'Idioma', 'choose' => 'Selecciona el idioma para FreshRSS', 'defined' => 'Idioma seleccionado.', + '_' => 'Idioma', ), 'not_deleted' => 'Parece que ha habido un error. Debes eliminar el archivo <em>%s</em> de forma manual.', 'ok' => 'La instalación se ha completado correctamente.', 'step' => 'paso %d', 'steps' => 'Pasos', - 'title' => 'Instalación · FreshRSS', 'this_is_the_end' => '¡Terminamos!', + 'title' => 'Instalación · FreshRSS', ); |
