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/de/install.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/de/install.php')
| -rw-r--r-- | app/i18n/de/install.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/i18n/de/install.php b/app/i18n/de/install.php index 734edb7bb..f359b5d79 100644 --- a/app/i18n/de/install.php +++ b/app/i18n/de/install.php @@ -17,19 +17,20 @@ return array( 'type' => 'Authentifizierungsmethode', ), 'bdd' => array( + '_' => 'Datenbank', 'conf' => array( + '_' => 'Datenbank-Konfiguration', 'ko' => 'Überprüfen Sie Ihre Datenbank-Information.', 'ok' => 'Datenbank-Konfiguration ist gespeichert worden.', - '_' => 'Datenbank-Konfiguration', ), 'host' => 'Host', // TODO - Translation 'password' => 'SQL-Password', 'prefix' => 'Tabellen-Präfix', 'type' => 'Datenbank-Typ', 'username' => 'SQL-Nutzername', - '_' => 'Datenbank', ), 'check' => array( + '_' => 'Überprüfungen', 'already_installed' => 'Wir haben festgestellt, dass FreshRSS bereits installiert wurde!', 'cache' => array( 'nok' => 'Überprüfen Sie die Berechtigungen des Verzeichnisses <em>./data/cache</em>. Der HTTP-Server muss Schreibrechte besitzen.', @@ -95,11 +96,10 @@ return array( 'nok' => 'Ihnen fehlt die benötigte Bibliothek um XML zu parsen.', 'ok' => 'Sie haben die benötigte Bibliothek um XML zu parsen.', ), - '_' => 'Überprüfungen', ), 'conf' => array( - 'ok' => 'Die allgemeine Konfiguration ist gespeichert worden.', '_' => 'Allgemeine Konfiguration', + 'ok' => 'Die allgemeine Konfiguration ist gespeichert worden.', ), 'congratulations' => 'Glückwunsch!', 'default_user' => 'Nutzername des Standardbenutzers <small>(maximal 16 alphanumerische Zeichen)</small>', @@ -110,9 +110,9 @@ return array( 'confirm_reinstall' => 'Du wirst deine vorherige Konfiguration (Daten) verlieren FreshRSS. Bist du sicher, dass du fortfahren willst?', ), 'language' => array( + '_' => 'Sprache', 'choose' => 'Wählen Sie eine Sprache für FreshRSS', 'defined' => 'Die Sprache ist festgelegt worden.', - '_' => 'Sprache', ), 'not_deleted' => 'Etwas ist schiefgelaufen; Sie müssen die Datei <em>%s</em> manuell löschen.', 'ok' => 'Der Installationsvorgang war erfolgreich.', |
