|
|
@@ -67,9 +67,9 @@ return array(
|
|
|
'empty' => 'Deze feed is leeg. Controleer of deze nog actueel is.',
|
|
|
'error' => 'Deze feed heeft problemen. Verifieer a.u.b het doeladres en actualiseer het.',
|
|
|
'export-as-opml' => array(
|
|
|
- 'download' => 'Download', // TODO
|
|
|
- 'help' => 'XML file', // TODO
|
|
|
- 'label' => 'Export as OPML', // TODO
|
|
|
+ 'download' => 'Downloaden',
|
|
|
+ 'help' => 'XML-bestand',
|
|
|
+ 'label' => 'Als OPML exporteren',
|
|
|
),
|
|
|
'filteractions' => array(
|
|
|
'_' => 'Filteracties',
|
|
|
@@ -129,42 +129,42 @@ return array(
|
|
|
'json_dotnotation' => array(
|
|
|
'_' => 'JSON (puntnotatie)',
|
|
|
'feed_title' => array(
|
|
|
- '_' => 'feed title', // TODO
|
|
|
- 'help' => 'Example: <code>meta.title</code> or a static string: <code>"My custom feed"</code>', // TODO
|
|
|
+ '_' => 'feed-titel',
|
|
|
+ 'help' => 'Voorbeeld: <code>meta.titel</code> of een statische reeks tekst: <code>"Mijn aangepaste feed"</code>',
|
|
|
),
|
|
|
'help' => 'JSON-puntnotatie gebruikt punten tussen objecten en vierkante haakjes voor arrays (bv. <code>data.items[0].titel</code>)',
|
|
|
'item' => array(
|
|
|
- '_' => 'finding news <strong>items</strong><br /><small>(most important)</small>', // TODO
|
|
|
- 'help' => 'JSON path to the array containing the items, e.g. <code>newsItems</code>', // TODO
|
|
|
+ '_' => 'nieuws-<strong>items</strong> vinden<br /><small>(het belangrijkst)</small>',
|
|
|
+ 'help' => 'JSON-puntnotatiepad naar de array met de items, bv. <code>nieuwsItems</code>',
|
|
|
),
|
|
|
- 'item_author' => 'item author', // TODO
|
|
|
- 'item_categories' => 'item tags', // TODO
|
|
|
+ 'item_author' => 'item-auteur',
|
|
|
+ 'item_categories' => 'item-tags',
|
|
|
'item_content' => array(
|
|
|
- '_' => 'item content', // TODO
|
|
|
- 'help' => 'Key under which the content is found, e.g. <code>content</code>', // TODO
|
|
|
+ '_' => 'item-inhoud',
|
|
|
+ 'help' => 'De sleutel waaronder de inhoude te vinden is, bv. <code>content</code>',
|
|
|
),
|
|
|
'item_thumbnail' => array(
|
|
|
- '_' => 'item thumbnail', // TODO
|
|
|
- 'help' => 'Example: <code>image</code>', // TODO
|
|
|
+ '_' => 'item-miniatuur',
|
|
|
+ 'help' => 'Voorbeeld: <code>image</code>',
|
|
|
),
|
|
|
'item_timeFormat' => array(
|
|
|
- '_' => 'Custom date/time format', // TODO
|
|
|
- 'help' => 'Optional. A format supported by <a href="https://php.net/datetime.createfromformat" target="_blank"><code>DateTime::createFromFormat()</code></a> such as <code>d-m-Y H:i:s</code>', // TODO
|
|
|
+ '_' => 'Aangepast datum-/tijdformaat',
|
|
|
+ 'help' => 'Optioneel. Een formaat ondersteund door <a href="https://php.net/datetime.createfromformat" target="_blank"><code>DateTime::createFromFormat()</code></a> zoals <code>d-m-Y H:i:s</code>',
|
|
|
),
|
|
|
'item_timestamp' => array(
|
|
|
- '_' => 'item date', // TODO
|
|
|
- 'help' => 'The result will be parsed by <a href="https://php.net/strtotime" target="_blank"><code>strtotime()</code></a>', // TODO
|
|
|
+ '_' => 'item-datum',
|
|
|
+ 'help' => 'Het resultaat zal worden geparst door <a href="https://php.net/strtotime" target="_blank"><code>strtotime()</code></a>',
|
|
|
),
|
|
|
- 'item_title' => 'item title', // TODO
|
|
|
- 'item_uid' => 'item unique ID', // TODO
|
|
|
+ 'item_title' => 'item-titel',
|
|
|
+ 'item_uid' => 'uniek item-id',
|
|
|
'item_uri' => array(
|
|
|
- '_' => 'item link (URL)', // TODO
|
|
|
- 'help' => 'Example: <code>permalink</code>', // TODO
|
|
|
+ '_' => 'item-link (url)',
|
|
|
+ 'help' => 'Voorbeeld: <code>permalink</code>',
|
|
|
),
|
|
|
'json' => 'puntnotatie voor:',
|
|
|
'relative' => 'puntnotatiepad (relatief aan item) voor:',
|
|
|
),
|
|
|
- 'jsonfeed' => 'JSON Feed', // TODO
|
|
|
+ 'jsonfeed' => 'JSON Feed', // IGNORE
|
|
|
'rss' => 'RSS / Atom (standaard)',
|
|
|
'xml_xpath' => 'XML + XPath', // IGNORE
|
|
|
),
|
|
|
@@ -178,10 +178,10 @@ return array(
|
|
|
'max_http_redir' => 'Max HTTP redirects', // IGNORE
|
|
|
'max_http_redir_help' => 'Stel in op 0 of laat leeg om uit te schakelen, -1 voor ongelimiteerde redirects',
|
|
|
'method' => array(
|
|
|
- '_' => 'HTTP Method', // TODO
|
|
|
+ '_' => 'HTTP-methode',
|
|
|
),
|
|
|
- 'method_help' => 'The POST payload has automatic support for <code>application/x-www-form-urlencoded</code> and <code>application/json</code>', // TODO
|
|
|
- 'method_postparams' => 'Payload for POST', // TODO
|
|
|
+ 'method_help' => 'De POST-payload ondersteunt automatisch <code>application/x-www-form-urlencoded</code> en <code>application/json</code>',
|
|
|
+ 'method_postparams' => 'Payload voor POST',
|
|
|
'moved_category_deleted' => 'Als u een categorie verwijderd, worden de feeds automatisch geclassificeerd onder <em>%s</em>.',
|
|
|
'mute' => 'demp',
|
|
|
'no_selected' => 'Geen feed geselecteerd.',
|
|
|
@@ -190,7 +190,7 @@ return array(
|
|
|
'_' => 'Zichtbaarheid',
|
|
|
'archived' => 'Niet weergeven (gearchiveerd)',
|
|
|
'category' => 'Toon in categorie',
|
|
|
- 'important' => 'Show in important feeds', // TODO
|
|
|
+ 'important' => 'In belangrijke feeds tonen',
|
|
|
'main_stream' => 'Zichtbaar in het overzicht',
|
|
|
),
|
|
|
'proxy' => 'Proxy instellen om deze feed op te halen',
|
|
|
@@ -245,7 +245,7 @@ return array(
|
|
|
'subscription_tools' => 'Hulpmiddelen voor abonnementen',
|
|
|
),
|
|
|
'tag' => array(
|
|
|
- 'auto_label' => 'Add this label to new articles', // TODO
|
|
|
+ 'auto_label' => 'Dit label aan nieuwe artikelen toevoegen',
|
|
|
'name' => 'Naam',
|
|
|
'new_name' => 'Nieuwe naam',
|
|
|
'old_name' => 'Oude naam',
|