summaryrefslogtreecommitdiffstats
path: root/l10n/de.json
diff options
context:
space:
mode:
Diffstat (limited to 'l10n/de.json')
-rw-r--r--l10n/de.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/l10n/de.json b/l10n/de.json
index 0dfb184ce..4ba883990 100644
--- a/l10n/de.json
+++ b/l10n/de.json
@@ -19,7 +19,7 @@
"Use ownCloud cron for updates" : "ownCloud-Cron für Updates nutzen",
"Disable this if you run a custom updater such as the Python updater included in the app" : "Deaktiviere dies, wenn Du einen eigenen Updater wie z.B. den in der App mitgelieferten Python-Updater nutzt",
"Purge interval" : "Aufräum-Intervall",
- "Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored" : "Minimum an Sekunden nachdem gelöschte Feeds und Ordner aus der Datenbank entfernt werden; Werte unter 60 Sekunden werden ignoriert",
+ "Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored" : "Minimum an Sekunden, nachdem gelöschte Feeds und Ordner aus der Datenbank entfernt werden; Werte unter 60 Sekunden werden ignoriert",
"Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed",
"Defines the maximum amount of articles that can be read per feed which won't be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off completely" : "Definiert die maximale Anzahl an Artikeln, die pro Feed gelesen und bei einem Aufräumauftrag nicht aus der Datenbank gelöscht werden; wenn ältere Artikel nach dem Lesen erhalten bleiben sollen, erhöhen diesen Wert; negative Werte sowie -1 deaktivieren diese Funktion komplett",
"Maximum redirects" : "Maximale Anzahl der HTTP Redirects",
@@ -29,10 +29,10 @@
"Feed fetcher timeout" : "Feed Updater maximum Timeout",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted" : "Maximale Anzahl an Sekunden zum Laden eines RSS- oder Atom-Feeds; wenn dies länger dauert, wird die Aktualisierung abgebrochen.",
"Explore Service URL" : "Service-URL entdecken",
- "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty" : "Wenn eingetragen, werden diese Service-URLs zur Darstellung der Feeds im Abschnitt Feeds entdecken verwendet. Um auf den eingebauten Entdecken-Service zurück zufallen, dieses Feld leer lassen.",
+ "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty" : "Falls angegeben, wird die URL dieses Dienstes zur Feed-Anzeige innerhalb des Explore-Feed-Bereichs abgefragt. Lasse dieses Feld unausgefüllt, um auf den eingebauten Explore-Dienst zurückzugreifen.",
"Saved" : "Gespeichert",
"Ajax cron mode detected! Your feeds will not be updated correctly. It is recommended to either use the operating system cron or a custom updater." : "Ajax Cron-Modus erkannt! Deine Feeds werden nicht korrekt aktualisiert. Es wird empfohlen, entweder den systemeigenen Cron oder einen benutzerdefinierten Updater zu verwenden.",
- "How to set up the operating system cron" : "Wie den systemeigenen Cron einrichten",
+ "How to set up the operating system cron" : "Wie der systemeigene Cron eingerichtet wird",
"How to set up a custom updater (faster and no possible deadlock) " : "Wie ein benutzerdefinierter Updater eingerichtet wird (zur Beschleunigung und Verhinderung von Blockaden)",
"Subscribe" : "Abonnieren",
"Refresh" : "Aktualisieren",
span> * * @author Alessandro Cosentino <cosenal@gmail.com> * @author Bernhard Posselt <dev@bernhard-posselt.com> * @copyright Alessandro Cosentino 2012 * @copyright Bernhard Posselt 2012, 2014 */ namespace OCA\News\Fetcher; interface IFeedFetcher { /** * @param string $url remote url of the feed * @param boolean $getFavicon if the favicon should also be fetched, * defaults to true * @param string $lastModified a last modified value from an http header * defaults to false. If lastModified matches the http header from the feed * no results are fetched * @param string $etag an etag from an http header. * If lastModified matches the http header from the feed * no results are fetched * @throws FetcherException if the fetcher encounters a problem * @return array an array containing the new feed and its items, first * element being the Feed and second element being an array of Items */ function fetch($url, $getFavicon=true, $lastModified=null, $etag=null); /** * @param string $url the url that should be fetched * @return boolean if the fetcher can handle the url. This fetcher will be * used exclusively to fetch the feed and the items of the page */ function canHandle($url); }