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/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/nl/install.php')
| -rw-r--r-- | app/i18n/nl/install.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/i18n/nl/install.php b/app/i18n/nl/install.php index 6597c8146..6834bf352 100644 --- a/app/i18n/nl/install.php +++ b/app/i18n/nl/install.php @@ -1,5 +1,5 @@ <?php -/* Dutch translation by Wanabo. http://www.nieuwskop.be */ + return array( 'action' => array( 'finish' => 'Completeer installatie', @@ -17,20 +17,19 @@ return array( 'type' => 'Authenticatiemethode', ), 'bdd' => array( - '_' => 'Database', 'conf' => array( - '_' => 'Database configuratie', 'ko' => 'Controleer uw database informatie.', 'ok' => 'Database configuratie is opgeslagen.', + '_' => 'Database configuratie', ), 'host' => 'Host', 'password' => 'Database wachtwoord', 'prefix' => 'Tabel voorvoegsel', 'type' => 'Type database', 'username' => 'Database gebruikersnaam', + '_' => 'Database', ), 'check' => array( - '_' => 'Controles', 'already_installed' => 'We hebben geconstateerd dat FreshRSS al is geïnstallerd!', 'cache' => array( 'nok' => 'Controleer permissies van de <em>./data/cache</em> map. HTTP server moet rechten hebben om er in te kunnen schrijven', @@ -96,10 +95,11 @@ return array( 'nok' => 'U mist de benodigde bibliotheek om XML te gebruiken.', 'ok' => 'U hebt de benodigde bibliotheek om XML te gebruiken.', ), + '_' => 'Controles', ), 'conf' => array( - '_' => 'Algemene configuratie', 'ok' => 'Algemene configuratie is opgeslagen.', + '_' => 'Algemene configuratie', ), 'congratulations' => 'Gefeliciteerd!', 'default_user' => 'Gebruikersnaam van de standaardgebruiker <small>(maximaal 16 alfanumerieke tekens)</small>', @@ -110,14 +110,14 @@ return array( 'confirm_reinstall' => 'U zal uw vorige configuratie kwijtraken door FreshRSS opnieuw te installeren. Weet u zeker dat u verder wilt gaan?', ), 'language' => array( - '_' => 'Taal', 'choose' => 'Kies een taal voor FreshRSS', 'defined' => 'Taal is bepaald.', + '_' => 'Taal', ), 'not_deleted' => 'Er ging iets fout! U moet het bestand <em>%s</em> handmatig verwijderen.', 'ok' => 'De installatieprocedure is geslaagd.', 'step' => 'stap %d', 'steps' => 'Stappen', - 'title' => 'Installatie · FreshRSS', 'this_is_the_end' => 'Dit is het einde', + 'title' => 'Installatie · FreshRSS', ); |
