diff options
| author | 2020-05-15 17:31:21 +0200 | |
|---|---|---|
| committer | 2020-05-15 17:31:21 +0200 | |
| commit | 8487fa6248d1d5dac81640de9c55c1eab9f324b3 (patch) | |
| tree | f3209fdeb8341870bd4fe765e30a0a395a12c4ea /app/i18n/es/feedback.php | |
| parent | 62a42a20630c5dfb4a677a42bbc3dd6c7cd203d2 (diff) | |
Reformat i18n correctly (#2976)
* Ignore i18n gen.dir key
* Add a makefile target to update an i18n key
* Mark some i18n keys to ignore
* Reformat i18n files correctly
* Make i18n keys sort case-sensitive
Calling `make i18n-format` was always inverting 4 lines:
- gen.date.dec with gen.date.Dec
- and gen.date.nov with gen.date.Nov
I don't know why these particular lines and not the others, but it
appeared the sort function was case insensitive due to the
`SORT_FLAG_CASE` flag passed to the `ksort` function. Removing this flag
makes the calls to the formatter idempotent and more reliable.
Unfortunately it moves a lot of lines since the `_` character is
considered differently.
* Check i18n files are correctly formatted on Travis
Diffstat (limited to 'app/i18n/es/feedback.php')
| -rwxr-xr-x | app/i18n/es/feedback.php | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/app/i18n/es/feedback.php b/app/i18n/es/feedback.php index 9bd576663..0a9af5e55 100755 --- a/app/i18n/es/feedback.php +++ b/app/i18n/es/feedback.php @@ -44,9 +44,9 @@ return array( 'ko' => '%s no se puede activar. <a href="%s">Revisa el registro de FreshRSS</a> para más información.', 'ok' => '%s ha quedado activado', ), + 'no_access' => 'No tienes acceso a %s', 'not_enabled' => '%s no está activado', 'not_found' => '%s no existe', - 'no_access' => 'No tienes acceso a %s', ), 'import_export' => array( 'export_no_zip_extension' => 'La extensión ZIP no está disponible en tu servidor. Por favor, exporta estos archivos uno a uno.', @@ -72,10 +72,10 @@ return array( 'emptied' => 'Se ha vaciado la categoría', 'error' => 'No es posible actualizar la categoría', 'name_exists' => 'Ya existe una categoría con ese nombre.', - 'not_delete_default' => '¡No puedes borrar la categoría por defecto!', - 'not_exist' => 'La categoría no existe', 'no_id' => 'Debes especificar la id de la categoría.', 'no_name' => '¡El nombre de la categoría no puede dejarse en blanco!.', + 'not_delete_default' => '¡No puedes borrar la categoría por defecto!', + 'not_exist' => 'La categoría no existe', 'over_max' => 'Has alcanzado el límite de categorías (%d)', 'updated' => 'La categoría se ha actualizado.', ), @@ -89,17 +89,17 @@ return array( 'error' => 'No es posible actualizar la fuente', 'internal_problem' => 'No ha sido posible agregar la fuente RSS. <a href="%s">Revisa el registro de FreshRSS </a> para más información.', 'invalid_url' => 'La URL <em>%s</em> es inválida', - 'not_added' => '<em>%s</em> no ha podido se añadida', - 'not_found' => 'Feed cannot be found', // TODO - Translation - 'no_refresh' => 'No hay fuente a actualizar…', 'n_actualized' => 'Se han actualiado %d fuentes', 'n_entries_deleted' => 'Se han eliminado %d artículos', + 'no_refresh' => 'No hay fuente a actualizar…', + 'not_added' => '<em>%s</em> no ha podido se añadida', + 'not_found' => 'Feed cannot be found', // TODO - Translation 'over_max' => 'Has alcanzado tu límite de fuentes (%d)', 'reloaded' => '<em>%s</em> has been reloaded', // TODO - Translation 'selector_preview' => array( 'http_error' => 'Failed to load website content.', // TODO - Translation - 'no_entries' => 'There is no entries in your feed. You need at least one entry to create a preview.', // TODO - Translation - 'no_feed' => 'Internal error (no feed to entry).', // TODO - Translation + 'no_entries' => 'There are no articles in this feed. You need at least one article to create a preview.', // TODO - Translation + 'no_feed' => 'Internal error (feed can’t be found).', // TODO - Translation 'no_result' => 'The selector didn\'t match anything. As a fallback the original feed text will be displayed instead.', // TODO - Translation 'selector_empty' => 'The selector is empty. You need to define one to create a preview.', // TODO - Translation ), @@ -117,16 +117,16 @@ return array( ), 'user' => array( 'created' => array( - 'error' => 'No se ha podido crear al usuario %s', '_' => 'Se ha creado el usuario %s', + 'error' => 'No se ha podido crear al usuario %s', ), 'deleted' => array( - 'error' => 'El usuario %s no ha podido ser eliminado', '_' => 'El usuario %s ha sido eliminado', + 'error' => 'El usuario %s no ha podido ser eliminado', ), 'updated' => array( - 'error' => 'User %s has not been updated', // TODO - Translation '_' => 'User %s has been updated', // TODO - Translation + 'error' => 'User %s has not been updated', // TODO - Translation ), ), ); |
