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/de/index.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/de/index.php')
| -rw-r--r-- | app/i18n/de/index.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/app/i18n/de/index.php b/app/i18n/de/index.php index 2b3704ce7..296db6939 100644 --- a/app/i18n/de/index.php +++ b/app/i18n/de/index.php @@ -2,35 +2,32 @@ return array( 'about' => array( - '_' => 'Über', - 'agpl3' => '<a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL 3</a>', + 'agpl3' => '<a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL 3</a>', // TODO - Translation 'bugs_reports' => 'Fehlerberichte', - 'credits' => 'Credits', + 'credits' => 'Credits', // TODO - Translation 'credits_content' => 'Einige Designelemente stammen von <a href="http://twitter.github.io/bootstrap/">Bootstrap</a>, obwohl FreshRSS dieses Framework nicht nutzt. <a href="https://git.gnome.org/browse/gnome-icon-theme-symbolic">Icons</a> stammen vom <a href="https://www.gnome.org/">GNOME project</a>. <em>Open Sans</em> Font wurde von <a href="https://fonts.google.com/specimen/Open+Sans">Steve Matteson</a> erstellt. FreshRSS basiert auf <a href="https://github.com/marienfressinaud/MINZ">Minz</a>, einem PHP-Framework.', 'freshrss_description' => 'FreshRSS ist ein RSS-Feedsaggregator zum selbst hosten wie zum Beispiel <a href="http://tontof.net/kriss/feed/">Kriss Feed</a> oder <a href="https://github.com/LeedRSS/Leed">Leed</a>. Er ist leicht und einfach zu handhaben und gleichzeitig ein leistungsstarkes und konfigurierbares Werkzeug.', - 'github' => '<a href="https://github.com/FreshRSS/FreshRSS/issues">on Github</a>', + 'github' => '<a href="https://github.com/FreshRSS/FreshRSS/issues">on Github</a>', // TODO - Translation 'license' => 'Lizenz', 'project_website' => 'Projekt-Webseite', 'title' => 'Über', - 'version' => 'Version', + 'version' => 'Version', // TODO - Translation 'website' => 'Webseite', - ), - 'tos' => array( - 'title' => 'Nutzungsbedingungen', + '_' => 'Über', ), 'feed' => array( 'add' => 'Sie können Feeds hinzufügen.', 'empty' => 'Es gibt keinen Artikel zum Anzeigen.', 'rss_of' => 'RSS-Feed von %s', 'title' => 'Ihre RSS-Feeds', - 'title_global' => 'Globale Ansicht', 'title_fav' => 'Ihre Favoriten', + 'title_global' => 'Globale Ansicht', ), 'log' => array( - '_' => 'Protokolle', 'clear' => 'Protokolle leeren', 'empty' => 'Protokolldatei ist leer.', 'title' => 'Protokolle', + '_' => 'Protokolle', ), 'menu' => array( 'about' => 'Über FreshRSS', @@ -63,4 +60,7 @@ return array( 'tag' => array( 'related' => 'Verwandte Tags', ), + 'tos' => array( + 'title' => 'Nutzungsbedingungen', + ), ); |
