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/nl/admin.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/nl/admin.php')
| -rw-r--r-- | app/i18n/nl/admin.php | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/app/i18n/nl/admin.php b/app/i18n/nl/admin.php index 41fa5ff68..f690dff33 100644 --- a/app/i18n/nl/admin.php +++ b/app/i18n/nl/admin.php @@ -1,5 +1,5 @@ <?php -/* Dutch translation by Wanabo. http://www.nieuwskop.be */ + return array( 'auth' => array( 'allow_anonymous' => 'Sta bezoekers toe om artikelen te lezen van de standaard gebruiker (%s)', @@ -83,9 +83,9 @@ return array( 'ok' => 'U hebt PDO en ten minste één van de ondersteunde drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).', ), 'php' => array( - '_' => 'PHP installatie', 'nok' => 'Uw PHP versie is %s maar FreshRSS benodigd tenminste versie %s.', 'ok' => 'Uw PHP versie is %s, welke compatibel is met FreshRSS.', + '_' => 'PHP installatie', ), 'tables' => array( 'nok' => 'Er zijn één of meer ontbrekende tabellen in de database.', @@ -116,8 +116,8 @@ return array( 'name' => 'Naam', 'no_configure_view' => 'Deze uitbreiding kan niet worden geconfigureerd.', 'system' => array( - '_' => 'Systeemuitbreidingen', 'no_rights' => 'Systeemuitbreidingen (U hebt hier geen rechten op)', + '_' => 'Systeemuitbreidingen', ), 'title' => 'Uitbreidingen', 'update' => 'Update beschikbaar', @@ -125,7 +125,6 @@ return array( 'version' => 'Versie', ), 'stats' => array( - '_' => 'Statistieken', 'all_feeds' => 'Alle feeds', 'category' => 'Categorie', 'entry_count' => 'Invoer aantallen', @@ -155,31 +154,32 @@ return array( 'status_unread' => 'Ongelezen', 'title' => 'Statistieken', 'top_feed' => 'Top tien feeds', + '_' => 'Statistieken', ), 'system' => array( - '_' => 'Systeem configuratie', 'auto-update-url' => 'Automatische update server URL', - 'force_email_validation' => 'Emailadresvalidatie forceren', - 'instance-name' => 'Voorbeeld naam', - 'max-categories' => 'Categorielimiet per gebruiker', - 'max-feeds' => 'Feedlimiet per gebruiker', 'cookie-duration' => array( 'help' => 'in seconden', 'number' => 'Tijdsduur om ingelogd te blijven', ), + 'force_email_validation' => 'Emailadresvalidatie forceren', + 'instance-name' => 'Voorbeeld naam', + 'max-categories' => 'Categorielimiet per gebruiker', + 'max-feeds' => 'Feedlimiet per gebruiker', 'registration' => array( 'help' => '0 betekent geen account limiet', 'number' => 'Maximum aantal accounts', ), + '_' => 'Systeem configuratie', ), 'update' => array( - '_' => 'Versie controle', 'apply' => 'Toepassen', 'check' => 'Controleer op nieuwe versies', 'current_version' => 'Uw huidige versie van FreshRSS is %s.', 'last' => 'Laatste controle: %s', 'none' => 'Geen nieuwe versie om toe te passen', 'title' => 'Vernieuw systeem', + '_' => 'Versie controle', ), 'user' => array( 'articles_and_size' => '%s artikelen (%s)', @@ -188,7 +188,7 @@ return array( 'create' => 'Creëer nieuwe gebruiker', 'database_size' => 'Database size', // TODO - Translation 'delete_users' => 'Verwijder gebruiker', - 'feed_count' => 'Feeds', //TODO - Translation + 'feed_count' => 'Feeds', // TODO - Translation 'language' => 'Taal', 'list' => 'User list', // TODO - Translation 'number' => 'Er is %d accounts gemaakt', @@ -198,8 +198,8 @@ return array( 'selected' => 'Geselecteerde gebruiker', 'title' => 'Beheer gebruikers', 'update_users' => 'Gebruiker bijwerken', - 'user_list' => 'Lijst van gebruikers ', 'username' => 'Gebruikersnaam', 'users' => 'Gebruikers', + 'user_list' => 'Lijst van gebruikers ', ), ); |
