mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-19 13:54:44 -04:00
* i18n(de): improve German translations - Fix orthography and grammar (e.g. Authentifizierung→Authentifizierung, Kategory→Kategorie) - Replace anglicisms with German terms (Hashtags→Tags, Icon→Symbol, Layout→Theme where appropriate) - Improve clarity and naturalness (e.g. Archivierungsausnahmen→Bereinigungsausnahme, Trägheit→Lazy Load) - Complete TODO translations (send_referrer_allowlist, when_same_guid_in_category, keep_adding_feed) - Fix typos (Artikle→Artikel, EAls→Als, Aals→Als) - Use consistent terminology (Account→Konto, Nutzername→Benutzername, Webseite→Website) * i18n(de): revert Account→Konto, Nutzername→Benutzername, Icon→Symbol Keep 'Account' (Konto too bank-like), 'Nutzername' (Nutzer preferred over Benutzer), and 'Icon' (Symbol sounds dated). --------- Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
34 lines
1.4 KiB
PHP
34 lines
1.4 KiB
PHP
<?php
|
|
|
|
/******************************************************************************
|
|
* Each entry of that file can be associated with a comment to indicate its *
|
|
* state. When there is no comment, it means the entry is fully translated. *
|
|
* The recognized comments are (comment matching is case-insensitive): *
|
|
* + TODO: the entry has never been translated. *
|
|
* + DIRTY: the entry has been translated but needs to be updated. *
|
|
* + IGNORE: the entry does not need to be translated. *
|
|
* When a comment is not recognized, it is discarded. *
|
|
******************************************************************************/
|
|
|
|
return array(
|
|
'information' => array(
|
|
'address' => 'API-Adresse:',
|
|
'output' => array(
|
|
'encoding-support' => '⚠️ WARNUNG: Keine <code>%2F</code>-Unterstützung, einige Clients/Apps funktionieren ggf. nicht!',
|
|
'invalid-configuration' => '⚠️ WARNUNG: Die Base URL in ./data/config.php könnte ungültig sein',
|
|
'pass' => '✔️ OK',
|
|
'unknown-error' => '❌ ', // IGNORE
|
|
),
|
|
'test' => array(
|
|
'fever' => 'Prüfung der Fever-API-Einstellungen:',
|
|
'greader' => 'Prüfung der Google-Reader-API-Einstellungen:',
|
|
),
|
|
'title' => array(
|
|
'_' => 'FreshRSS-API-Endpunkte',
|
|
'extension' => 'API für Erweiterungen',
|
|
'fever' => 'Fever kompatible API',
|
|
'greader' => 'Google Reader kompatible API',
|
|
),
|
|
),
|
|
);
|