Merge pull request #1 from friendica/develop

Develop
This commit is contained in:
gerhard6380 2015-11-24 02:58:08 +01:00
commit e16360f6d2
44 changed files with 7972 additions and 6785 deletions

View file

@ -19,7 +19,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica');
define ( 'FRIENDICA_CODENAME', 'Lily of the valley');
define ( 'FRIENDICA_VERSION', '3.4.3-dev' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1190 );
define ( 'DB_UPDATE_VERSION', 1191 );
define ( 'EOL', "<br />\r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );

View file

@ -30,6 +30,7 @@ Friendica Documentation and Resources
* [Install](help/Install)
* [Settings](help/Settings)
* [Installing Connectors (Twitter/GNU Social)](help/Installing-Connectors)
* [Install an ejabberd server (XMPP chat) with synchronized credentials](help/install-ejabberd)
* [Message Flow](help/Message-Flow)
* [Using SSL with Friendica](help/SSL)
* [Twitter/GNU Social API Functions](help/api)

View file

@ -32,6 +32,7 @@ Friendica - Dokumentation und Ressourcen
* [Konfigurationen](help/Settings)
* [Plugins](help/Plugins)
* [Konnektoren (Connectors) installieren (Twitter/GNU Social)](help/Installing-Connectors)
* [Installation eines ejabberd Servers (XMPP-Chat) mit synchronisierten Anmeldedaten](help/install-ejabberd) (EN)
* [Nachrichtenfluss](help/Message-Flow)
* [Betreibe deine Seite mit einem SSL-Zertifikat](help/SSL)
* [Entwickler](help/Developers)

View file

@ -53,9 +53,21 @@ In the descirption and location field you can use BBCode to format the text.
When you *Share* the event it will be posted to your wall with the access permissions you've selected.
But before you do, you can also *preview* the event in a pop-up box.
### Interaction with Events
When you publish an event, you can choose who shall receive it, as with a regular new posting.
The recipients will see the posting about the event in their network-stream.
Additionally it will be added to their calendar and thus be shown in their events overview page.
Recipients of the event-posting can comment or dis-/like the event, as with a regular posting, but also announce that they will attend, not attend or may-be attend the event with a single click.
### Addons
#### OpenStreetMap
If this addon is activated on you friendica node, the content of the location field will be mathced with the identification service of OSM when you submit the event.
Should OSM find anything matching, a map for the location will be embedded automatically at the end of the events view.
#### Calendar Export
If this addon is activated the public events you have created will be published in ical or csv file. The URL of the published file is ``example.com/cal/nickname/export/format`` (where format is either ical of csv).

45
doc/install-ejabberd.md Normal file
View file

@ -0,0 +1,45 @@
Install an ejabberd with synchronized credentials
=================================================
* [Home](help)
[Ejabberd](https://www.ejabberd.im/) is a chat server that uses XMPP as messaging protocol that you can use with a large amount of clients. In conjunction
with the "xmpp" addon it can be used for a web based chat solution for your users.
Installation
------------
- Change it's owner to whichever user is running the server, ie. ejabberd
$ chown ejabberd:ejabberd /path/to/friendica/include/auth_ejabberd.php
- Change the access mode so it is readable only to the user ejabberd and has exec
$ chmod 700 /path/to/friendica/include/auth_ejabberd.php
- Edit your ejabberd.cfg file, comment out your auth_method and add:
{auth_method, external}.
{extauth_program, "/path/to/friendica/include/auth_ejabberd.php"}.
- Disable the module "mod_register" and disable the registration:
{access, register, [{deny, all}]}.
- Enable BOSH:
- Enable the module "mod_http_bind"
- Edit this line:
{5280, ejabberd_http, [captcha, http_poll, http_bind]}
- In your apache configuration for your site add this line:
ProxyPass /http-bind http://127.0.0.1:5280/http-bind retry=0
- Restart your ejabberd service, you should be able to login with your friendica credentials
Other hints
-----------
- if a user has a space or a @ in the nickname, the user has to replace these characters:
- " " (space) is replaced with "%20"
- "@" is replaced with "(a)"

View file

@ -30,6 +30,7 @@ Friendica Documentation and Resources
* [Settings](help/Settings)
* [Plugins](help/Plugins)
* [Installing Connectors (Twitter/GNU Social)](help/Installing-Connectors)
* [Install an ejabberd server (XMPP chat) with synchronized credentials](help/install-ejabberd)
* [Message Flow](help/Message-Flow)
* [Using SSL with Friendica](help/SSL)
* [Developers](help/Developers)

View file

@ -285,7 +285,7 @@
* Unique contact to contact url.
*/
function api_unique_id_to_url($id){
$r = q("SELECT url FROM unique_contacts WHERE id=%d LIMIT 1",
$r = q("SELECT `url` FROM `unique_contacts` WHERE `id`=%d LIMIT 1",
intval($id));
if ($r)
return ($r[0]["url"]);
@ -390,9 +390,9 @@
$r = array();
if ($url != "")
$r = q("SELECT * FROM unique_contacts WHERE url='%s' LIMIT 1", $url);
$r = q("SELECT * FROM `unique_contacts` WHERE `url`='%s' LIMIT 1", $url);
elseif ($nick != "")
$r = q("SELECT * FROM unique_contacts WHERE nick='%s' LIMIT 1", $nick);
$r = q("SELECT * FROM `unique_contacts` WHERE `nick`='%s' LIMIT 1", $nick);
if ($r) {
// If no nick where given, extract it from the address
@ -505,14 +505,14 @@
}
// Fetching unique id
$r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1", dbesc(normalise_link($uinfo[0]['url'])));
$r = q("SELECT id FROM `unique_contacts` WHERE `url`='%s' LIMIT 1", dbesc(normalise_link($uinfo[0]['url'])));
// If not there, then add it
if (count($r) == 0) {
q("INSERT INTO unique_contacts (url, name, nick, avatar) VALUES ('%s', '%s', '%s', '%s')",
q("INSERT INTO `unique_contacts` (`url`, `name`, `nick`, `avatar`) VALUES ('%s', '%s', '%s', '%s')",
dbesc(normalise_link($uinfo[0]['url'])), dbesc($uinfo[0]['name']),dbesc($uinfo[0]['nick']), dbesc($uinfo[0]['micro']));
$r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1", dbesc(normalise_link($uinfo[0]['url'])));
$r = q("SELECT `id` FROM `unique_contacts` WHERE `url`='%s' LIMIT 1", dbesc(normalise_link($uinfo[0]['url'])));
}
$network_name = network_to_name($uinfo[0]['network'], $uinfo[0]['url']);
@ -539,7 +539,8 @@
'verified' => true,
'statusnet_blocking' => false,
'notifications' => false,
'statusnet_profile_url' => $a->get_baseurl()."/contacts/".$uinfo[0]['cid'],
//'statusnet_profile_url' => $a->get_baseurl()."/contacts/".$uinfo[0]['cid'],
'statusnet_profile_url' => $uinfo[0]['url'],
'uid' => intval($uinfo[0]['uid']),
'cid' => intval($uinfo[0]['cid']),
'self' => $uinfo[0]['self'],
@ -552,36 +553,44 @@
function api_item_get_user(&$a, $item) {
$author = q("SELECT * FROM unique_contacts WHERE url='%s' LIMIT 1",
$author = q("SELECT * FROM `unique_contacts` WHERE `url`='%s' LIMIT 1",
dbesc(normalise_link($item['author-link'])));
if (count($author) == 0) {
q("INSERT INTO unique_contacts (url, name, avatar) VALUES ('%s', '%s', '%s')",
dbesc(normalise_link($item["author-link"])), dbesc($item["author-name"]), dbesc($item["author-avatar"]));
q("INSERT INTO `unique_contacts` (`url`, `name`, `avatar`) VALUES ('%s', '%s', '%s')",
dbesc(normalise_link($item["author-link"])), dbesc($item["author-name"]), dbesc($item["author-avatar"]));
$author = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
$author = q("SELECT `id` FROM `unique_contacts` WHERE `url`='%s' LIMIT 1",
dbesc(normalise_link($item['author-link'])));
} else if ($item["author-link"].$item["author-name"] != $author[0]["url"].$author[0]["name"]) {
q("UPDATE unique_contacts SET name = '%s', avatar = '%s' WHERE (`name` != '%s' OR `avatar` != '%s') AND url = '%s'",
dbesc($item["author-name"]), dbesc($item["author-avatar"]),
dbesc($item["author-name"]), dbesc($item["author-avatar"]),
dbesc(normalise_link($item["author-link"])));
$r = q("SELECT `id` FROM `unique_contacts` WHERE `name` = '%s' AND `avatar` = '%s' AND url = '%s'",
dbesc($item["author-name"]), dbesc($item["author-avatar"]),
dbesc(normalise_link($item["author-link"])));
if (!$r)
q("UPDATE `unique_contacts` SET `name` = '%s', `avatar` = '%s' WHERE `url` = '%s'",
dbesc($item["author-name"]), dbesc($item["author-avatar"]),
dbesc(normalise_link($item["author-link"])));
}
$owner = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
$owner = q("SELECT `id` FROM `unique_contacts` WHERE `url`='%s' LIMIT 1",
dbesc(normalise_link($item['owner-link'])));
if (count($owner) == 0) {
q("INSERT INTO unique_contacts (url, name, avatar) VALUES ('%s', '%s', '%s')",
dbesc(normalise_link($item["owner-link"])), dbesc($item["owner-name"]), dbesc($item["owner-avatar"]));
q("INSERT INTO `unique_contacts` (`url`, `name`, `avatar`) VALUES ('%s', '%s', '%s')",
dbesc(normalise_link($item["owner-link"])), dbesc($item["owner-name"]), dbesc($item["owner-avatar"]));
$owner = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
$owner = q("SELECT `id` FROM `unique_contacts` WHERE `url`='%s' LIMIT 1",
dbesc(normalise_link($item['owner-link'])));
} else if ($item["owner-link"].$item["owner-name"] != $owner[0]["url"].$owner[0]["name"]) {
q("UPDATE unique_contacts SET name = '%s', avatar = '%s' WHERE (`name` != '%s' OR `avatar` != '%s') AND url = '%s'",
dbesc($item["owner-name"]), dbesc($item["owner-avatar"]),
dbesc($item["owner-name"]), dbesc($item["owner-avatar"]),
dbesc(normalise_link($item["owner-link"])));
$r = q("SELECT `id` FROM `unique_contacts` WHERE `name` = '%s' AND `avatar` = '%s' AND url = '%s'",
dbesc($item["owner-name"]), dbesc($item["owner-avatar"]),
dbesc(normalise_link($item["owner-link"])));
if (!$r)
q("UPDATE `unique_contacts` SET `name` = '%s', `avatar` = '%s' WHERE `url` = '%s'",
dbesc($item["owner-name"]), dbesc($item["owner-avatar"]),
dbesc(normalise_link($item["owner-link"])));
}
// Comments in threads may appear as wall-to-wall postings.
@ -952,7 +961,7 @@
$in_reply_to_status_id= intval($lastwall['parent']);
$in_reply_to_status_id_str = (string) intval($lastwall['parent']);
$r = q("SELECT * FROM unique_contacts WHERE `url` = '%s'", dbesc(normalise_link($lastwall['item-author'])));
$r = q("SELECT * FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($lastwall['item-author'])));
if ($r) {
if ($r[0]['nick'] == "")
$r[0]['nick'] = api_get_nick($r[0]["url"]);
@ -1074,7 +1083,7 @@
$in_reply_to_status_id = intval($lastwall['parent']);
$in_reply_to_status_id_str = (string) intval($lastwall['parent']);
$r = q("SELECT * FROM unique_contacts WHERE `url` = '%s'", dbesc(normalise_link($reply[0]['item-author'])));
$r = q("SELECT * FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($reply[0]['item-author'])));
if ($r) {
if ($r[0]['nick'] == "")
$r[0]['nick'] = api_get_nick($r[0]["url"]);
@ -1135,9 +1144,9 @@
$userlist = array();
if (isset($_GET["q"])) {
$r = q("SELECT id FROM unique_contacts WHERE name='%s'", dbesc($_GET["q"]));
$r = q("SELECT id FROM `unique_contacts` WHERE `name`='%s'", dbesc($_GET["q"]));
if (!count($r))
$r = q("SELECT id FROM unique_contacts WHERE nick='%s'", dbesc($_GET["q"]));
$r = q("SELECT `id` FROM `unique_contacts` WHERE `nick`='%s'", dbesc($_GET["q"]));
if (count($r)) {
foreach ($r AS $user) {
@ -2180,7 +2189,7 @@
intval(api_user()),
intval($in_reply_to_status_id));
if ($r) {
$r = q("SELECT * FROM unique_contacts WHERE `url` = '%s'", dbesc(normalise_link($r[0]['author-link'])));
$r = q("SELECT * FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($r[0]['author-link'])));
if ($r) {
if ($r[0]['nick'] == "")
@ -2439,7 +2448,7 @@
$stringify_ids = (x($_REQUEST,'stringify_ids')?$_REQUEST['stringify_ids']:false);
$r = q("SELECT unique_contacts.id FROM contact, unique_contacts WHERE contact.nurl = unique_contacts.url AND `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 $sql_extra",
$r = q("SELECT `unique_contact`.`id` FROM contact, `unique_contacts` WHERE contact.nurl = unique_contacts.url AND `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 $sql_extra",
intval(api_user())
);
@ -2841,15 +2850,29 @@ function api_share_as_retweet(&$item) {
function api_get_nick($profile) {
/* To-Do:
- remove trailing jung from profile url
- remove trailing junk from profile url
- pump.io check has to check the website
*/
$nick = "";
$friendica = preg_replace("=https?://(.*)/profile/(.*)=ism", "$2", $profile);
if ($friendica != $profile)
$nick = $friendica;
$r = q("SELECT `nick` FROM `gcontact` WHERE `nurl` = '%s'",
dbesc(normalise_link($profile)));
if ($r)
$nick = $r[0]["nick"];
if (!$nick == "") {
$r = q("SELECT `nick` FROM `contact` WHERE `uid` = 0 AND `nurl` = '%s'",
dbesc(normalise_link($profile)));
if ($r)
$nick = $r[0]["nick"];
}
if (!$nick == "") {
$friendica = preg_replace("=https?://(.*)/profile/(.*)=ism", "$2", $profile);
if ($friendica != $profile)
$nick = $friendica;
}
if (!$nick == "") {
$diaspora = preg_replace("=https?://(.*)/u/(.*)=ism", "$2", $profile);
@ -2887,7 +2910,7 @@ function api_get_nick($profile) {
//}
if ($nick != "") {
q("UPDATE unique_contacts SET nick = '%s' WHERE `nick` != '%s' AND url = '%s'",
q("UPDATE `unique_contacts` SET `nick` = '%s' WHERE `nick` != '%s' AND url = '%s'",
dbesc($nick), dbesc($nick), dbesc(normalise_link($profile)));
return($nick);
}

View file

@ -100,7 +100,7 @@ function localize_item(&$item){
$item['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $item['contact-id']);
$xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
if (activity_match($item['verb'],ACTIVITY_LIKE)
if (activity_match($item['verb'],ACTIVITY_LIKE)
|| activity_match($item['verb'],ACTIVITY_DISLIKE)
|| activity_match($item['verb'],ACTIVITY_ATTEND)
|| activity_match($item['verb'],ACTIVITY_ATTENDNO)
@ -984,15 +984,15 @@ function builtin_activity_puller($item, &$conv_responses) {
$url = z_root(true) . '/redir/' . $item['contact-id'];
$sparkle = ' class="sparkle" ';
}
else
else
$url = zrl($url);
$url = '<a href="'. $url . '"'. $sparkle .'>' . htmlentities($item['author-name']) . '</a>';
if(! $item['thr-parent'])
$item['thr-parent'] = $item['parent-uri'];
if(! ((isset($conv_responses[$mode][$item['thr-parent'] . '-l']))
if(! ((isset($conv_responses[$mode][$item['thr-parent'] . '-l']))
&& (is_array($conv_responses[$mode][$item['thr-parent'] . '-l']))))
$conv_responses[$mode][$item['thr-parent'] . '-l'] = array();
@ -1064,9 +1064,9 @@ function format_like($cnt,$arr,$type,$id) {
}
$likers = $str;
$spanatts = "class=\"fakelink\" onclick=\"openClose('{$type}list-$id');\"";
switch($type) {
case 'like':
$phrase = sprintf( t('<span %1$s>%2$d people</span> like this'), $spanatts, $cnt);
@ -1291,6 +1291,15 @@ function conv_sort($arr,$order) {
$parents = array();
$children = array();
$newarr = array();
// This is a preparation for having two different items with the same uri in one thread
// This will otherwise lead to an endless loop.
foreach($arr as $x)
if (!isset($newarr[$x['uri']]))
$newarr[$x['uri']] = $x;
$arr = $newarr;
foreach($arr as $x)
if($x['id'] == $x['parent'])

View file

@ -340,9 +340,9 @@ function delivery_run(&$argv, &$argc){
$ssl_policy = get_config('system','ssl_policy');
fix_contact_ssl_policy($x[0],$ssl_policy);
// If we are setup as a soapbox we aren't accepting input from this person
// If we are setup as a soapbox we aren't accepting top level posts from this person
if($x[0]['page-flags'] == PAGE_SOAPBOX)
if (($x[0]['page-flags'] == PAGE_SOAPBOX) AND $top_level)
break;
require_once('library/simplepie/simplepie.inc');

View file

@ -1,19 +1,54 @@
<?php
/*
* Features management
/**
* @file include/features.php *
* @brief Features management
*/
/**
* @brief check if feature is enabled
*
* return boolean
*/
function feature_enabled($uid,$feature) {
//return true;
$x = get_pconfig($uid,'feature',$feature);
if($x === false) {
$x = get_config('feature',$feature);
if($x === false)
$x = get_feature_default($feature);
}
$arr = array('uid' => $uid, 'feature' => $feature, 'enabled' => $x);
call_hooks('feature_enabled',$arr);
return($arr['enabled']);
}
/**
* @brief check if feature is enabled or disabled by default
*
* @param string $feature
* @return boolean
*/
function get_feature_default($feature) {
$f = get_features();
foreach($f as $cat) {
foreach($cat as $feat) {
if(is_array($feat) && $feat[0] === $feature)
return $feat[3];
}
}
return false;
}
/**
* @ brief get a list of all available features
* The array includes the setting group, the setting name,
* explainations for the setting and if it's enabled or disabled
* by default
*
* @return array
*/
function get_features() {
$arr = array(
@ -22,46 +57,53 @@ function get_features() {
'general' => array(
t('General Features'),
//array('expire', t('Content Expiration'), t('Remove old posts/comments after a period of time')),
array('multi_profiles', t('Multiple Profiles'), t('Ability to create multiple profiles')),
array('multi_profiles', t('Multiple Profiles'), t('Ability to create multiple profiles'),false),
array('photo_location', t('Photo Location'), t('Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'),false),
),
// Post composition
'composition' => array(
t('Post Composition Features'),
array('richtext', t('Richtext Editor'), t('Enable richtext editor')),
array('preview', t('Post Preview'), t('Allow previewing posts and comments before publishing them')),
array('aclautomention', t('Auto-mention Forums'), t('Add/remove mention when a fourm page is selected/deselected in ACL window.')),
array('richtext', t('Richtext Editor'), t('Enable richtext editor'),false),
array('preview', t('Post Preview'), t('Allow previewing posts and comments before publishing them'),false),
array('aclautomention', t('Auto-mention Forums'), t('Add/remove mention when a fourm page is selected/deselected in ACL window.'),false),
),
// Network sidebar widgets
'widgets' => array(
t('Network Sidebar Widgets'),
array('archives', t('Search by Date'), t('Ability to select posts by date ranges')),
array('groups', t('Group Filter'), t('Enable widget to display Network posts only from selected group')),
array('networks', t('Network Filter'), t('Enable widget to display Network posts only from selected network')),
array('savedsearch', t('Saved Searches'), t('Save search terms for re-use')),
array('archives', t('Search by Date'), t('Ability to select posts by date ranges'),false),
array('forumlist_widget', t('List Forums'), t('Enable widget to display the forums your are connected with'),true),
array('groups', t('Group Filter'), t('Enable widget to display Network posts only from selected group'),false),
array('networks', t('Network Filter'), t('Enable widget to display Network posts only from selected network'),false),
array('savedsearch', t('Saved Searches'), t('Save search terms for re-use'),false),
),
// Network tabs
'net_tabs' => array(
t('Network Tabs'),
array('personal_tab', t('Network Personal Tab'), t('Enable tab to display only Network posts that you\'ve interacted on')),
array('new_tab', t('Network New Tab'), t('Enable tab to display only new Network posts (from the last 12 hours)')),
array('link_tab', t('Network Shared Links Tab'), t('Enable tab to display only Network posts with links in them')),
array('personal_tab', t('Network Personal Tab'), t('Enable tab to display only Network posts that you\'ve interacted on'),false),
array('new_tab', t('Network New Tab'), t('Enable tab to display only new Network posts (from the last 12 hours)'),false),
array('link_tab', t('Network Shared Links Tab'), t('Enable tab to display only Network posts with links in them'),false),
),
// Item tools
'tools' => array(
t('Post/Comment Tools'),
array('multi_delete', t('Multiple Deletion'), t('Select and delete multiple posts/comments at once')),
array('edit_posts', t('Edit Sent Posts'), t('Edit and correct posts and comments after sending')),
array('commtag', t('Tagging'), t('Ability to tag existing posts')),
array('categories', t('Post Categories'), t('Add categories to your posts')),
array('filing', t('Saved Folders'), t('Ability to file posts under folders')),
array('dislike', t('Dislike Posts'), t('Ability to dislike posts/comments')),
array('star_posts', t('Star Posts'), t('Ability to mark special posts with a star indicator')),
array('ignore_posts', t('Mute Post Notifications'), t('Ability to mute notifications for a thread')),
array('multi_delete', t('Multiple Deletion'), t('Select and delete multiple posts/comments at once'),false),
array('edit_posts', t('Edit Sent Posts'), t('Edit and correct posts and comments after sending'),false),
array('commtag', t('Tagging'), t('Ability to tag existing posts'),false),
array('categories', t('Post Categories'), t('Add categories to your posts'),false),
array('filing', t('Saved Folders'), t('Ability to file posts under folders'),false),
array('dislike', t('Dislike Posts'), t('Ability to dislike posts/comments')),
array('star_posts', t('Star Posts'), t('Ability to mark special posts with a star indicator'),false),
array('ignore_posts', t('Mute Post Notifications'), t('Ability to mute notifications for a thread'),false),
),
// Advanced Profile Settings
'advanced_profile' => array(
t('Advanced Profile Settings'),
array('forumlist_profile', t('List Forums'), t('Show visitors public community forums at the Advanced Profile Page'),false),
),
);

149
include/forums.php Normal file
View file

@ -0,0 +1,149 @@
<?php
/**
* @file include/forums.php
* @brief Functions related to forum functionality *
*/
/**
* @brief Function to list all forums a user is connected with
*
* @param int $uid of the profile owner
* @param boolean $showhidden
* Show frorums which are not hidden
* @param boolean $lastitem
* Sort by lastitem
* @param boolean $showprivate
* Show private groups
*
* @returns array
* 'url' => forum url
* 'name' => forum name
* 'id' => number of the key from the array
* 'micro' => contact photo in format micro
*/
function get_forumlist($uid, $showhidden = true, $lastitem, $showprivate = false) {
$forumlist = array();
$order = (($showhidden) ? '' : ' AND NOT `hidden` ');
$order .= (($lastitem) ? ' ORDER BY `last-item` DESC ' : ' ORDER BY `name` ASC ');
$select = '`forum` ';
if ($showprivate) {
$select = '(`forum` OR `prv`)';
}
$contacts = q("SELECT `contact`.`id`, `contact`.`url`, `contact`.`name`, `contact`.`micro` FROM `contact`
WHERE `network`= 'dfrn' AND $select AND `uid` = %d
AND NOT `blocked` AND NOT `hidden` AND NOT `pending` AND NOT `archive`
AND `success_update` > `failure_update`
$order ",
intval($uid)
);
foreach($contacts as $contact) {
$forumlist[] = array(
'url' => $contact['url'],
'name' => $contact['name'],
'id' => $contact['id'],
'micro' => $contact['micro'],
);
}
return($forumlist);
}
/**
* @brief Forumlist widget
*
* Sidebar widget to show subcribed friendica forums. If activated
* in the settings, it appears at the notwork page sidebar
*
* @param App $a
* @return string
*/
function widget_forumlist($a) {
if(! intval(feature_enabled(local_user(),'forumlist_widget')))
return;
$o = '';
//sort by last updated item
$lastitem = true;
$contacts = get_forumlist($a->user['uid'],true,$lastitem, true);
$total = count($contacts);
$visible_forums = 10;
if(count($contacts)) {
$id = 0;
foreach($contacts as $contact) {
$entry = array(
'url' => $a->get_baseurl() . '/network?f=&cid=' . $contact['id'],
'external_url' => $a->get_baseurl() . '/redir/' . $contact['id'],
'name' => $contact['name'],
'micro' => proxy_url($contact['micro'], false, PROXY_SIZE_MICRO),
'id' => ++$id,
);
$entries[] = $entry;
}
$tpl = get_markup_template('widget_forumlist.tpl');
$o .= replace_macros($tpl,array(
'$title' => t('Forums'),
'$forums' => $entries,
'$link_desc' => t('External link to forum'),
'$total' => $total,
'$visible_forums' => $visible_forums,
'$showmore' => t('show more'),
));
}
return $o;
}
/**
* @brief Format forumlist as contact block
*
* This function is used to show the forumlist in
* the advanced profile.
*
* @param int $uid
* @return string
*
*/
function forumlist_profile_advanced($uid) {
$profile = intval(feature_enabled($uid,'forumlist_profile'));
if(! $profile)
return;
$o = '';
// place holder in case somebody wants configurability
$show_total = 9999;
//don't sort by last updated item
$lastitem = false;
$contacts = get_forumlist($uid,false,$lastitem,false);
$total_shown = 0;
foreach($contacts as $contact) {
$forumlist .= micropro($contact,false,'forumlist-profile-advanced');
$total_shown ++;
if($total_shown == $show_total)
break;
}
if(count($contacts) > 0)
$o .= $forumlist;
return $o;
}

View file

@ -85,14 +85,16 @@ function deletenode(&$doc, $node)
$child->parentNode->removeChild($child);
}}
function _replace_code_cb($m){
return "<code>".str_replace("\n","<br>\n",$m[1]). "</code>";
}
function html2bbcode($message)
{
$message = str_replace("\r", "", $message);
$message = preg_replace_callback("|<pre><code>([^<]*)</code></pre>|ism", function($m) {
return "<code>".str_replace("\n","<br>\n",$m[1]). "</code>";
}, $message);
$message = preg_replace_callback("|<pre><code>([^<]*)</code></pre>|ism", "_replace_code_cb", $message);
$message = str_replace(array(
"<li><p>",

View file

@ -1,4 +1,9 @@
<?php
/**
* @file include/identity.php
*/
require_once('include/forums.php');
/**
@ -59,15 +64,15 @@ if(! function_exists('profile_load')) {
$profile_int = intval($profile);
$r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d and `contact`.`self` = 1 LIMIT 1",
WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d AND `contact`.`self` = 1 LIMIT 1",
dbesc($nickname),
intval($profile_int)
);
}
if((!$r) && (!count($r))) {
$r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 and `contact`.`self` = 1 LIMIT 1",
INNER JOIN `contact` ON `contact`.`uid` = `profile`.`uid` INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 AND `contact`.`self` = 1 LIMIT 1",
dbesc($nickname)
);
}
@ -82,7 +87,7 @@ if(! function_exists('profile_load')) {
// fetch user tags if this isn't the default profile
if(!$r[0]['is-default']) {
$x = q("select `pub_keywords` from `profile` where uid = %d and `is-default` = 1 limit 1",
$x = q("SELECT `pub_keywords` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
intval($r[0]['profile_uid'])
);
if($x && count($x))
@ -306,7 +311,7 @@ if(! function_exists('profile_sidebar')) {
if(count($r))
$updated = date("c", strtotime($r[0]['updated']));
$r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0 AND `archive` = 0
$r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
AND `network` IN ('%s', '%s', '%s', '')",
intval($profile['uid']),
dbesc(NETWORK_DFRN),
@ -525,8 +530,9 @@ if(! function_exists('get_events')) {
function advanced_profile(&$a) {
$o = '';
$uid = $a->profile['uid'];
$o .= replace_macros(get_markup_template("section_title.tpl"),array(
$o .= replace_macros(get_markup_template('section_title.tpl'),array(
'$title' => t('Profile')
));
@ -603,6 +609,11 @@ function advanced_profile(&$a) {
if($txt = prepare_text($a->profile['work'])) $profile['work'] = array( t('Work/employment:'), $txt);
if($txt = prepare_text($a->profile['education'])) $profile['education'] = array( t('School/education:'), $txt );
//show subcribed forum if it is enabled in the usersettings
if (feature_enabled($uid,'forumlist_profile')) {
$profile['forumlist'] = array( t('Forums:'), forumlist_profile_advanced($uid));
}
if ($a->profile['uid'] == local_user())
$profile['edit'] = array($a->get_baseurl(). '/profiles/'.$a->profile['id'], t('Edit profile'),"", t('Edit profile'));

View file

@ -2381,85 +2381,45 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
$contact_updated = $photo_timestamp;
require_once("include/Photo.php");
$photo_failure = false;
$have_photo = false;
$photos = import_profile_photo($photo_url,$contact['uid'],$contact['id']);
$r = q("SELECT `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d LIMIT 1",
intval($contact['id']),
intval($contact['uid'])
q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s'
WHERE `uid` = %d AND `id` = %d AND NOT `self`",
dbesc(datetime_convert()),
dbesc($photos[0]),
dbesc($photos[1]),
dbesc($photos[2]),
intval($contact['uid']),
intval($contact['id'])
);
if(count($r)) {
$resource_id = $r[0]['resource-id'];
$have_photo = true;
}
else {
$resource_id = photo_new_resource();
}
$img_str = fetch_url($photo_url,true);
// guess mimetype from headers or filename
$type = guess_image_type($photo_url,true);
$img = new Photo($img_str, $type);
if($img->is_valid()) {
if($have_photo) {
q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `contact-id` = %d AND `uid` = %d",
dbesc($resource_id),
intval($contact['id']),
intval($contact['uid'])
);
}
$img->scaleImageSquare(175);
$hash = $resource_id;
$r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 4);
$img->scaleImage(80);
$r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 5);
$img->scaleImage(48);
$r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 6);
$a = get_app();
q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s'
WHERE `uid` = %d AND `id` = %d",
dbesc(datetime_convert()),
dbesc($a->get_baseurl() . '/photo/' . $hash . '-4.'.$img->getExt()),
dbesc($a->get_baseurl() . '/photo/' . $hash . '-5.'.$img->getExt()),
dbesc($a->get_baseurl() . '/photo/' . $hash . '-6.'.$img->getExt()),
intval($contact['uid']),
intval($contact['id'])
);
}
}
if((is_array($contact)) && ($name_updated) && (strlen($new_name)) && ($name_updated > $contact['name-date'])) {
if ($name_updated > $contact_updated)
$contact_updated = $name_updated;
$r = q("select * from contact where uid = %d and id = %d limit 1",
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `id` = %d LIMIT 1",
intval($contact['uid']),
intval($contact['id'])
);
$x = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d",
$x = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d AND `name` != '%s' AND NOT `self`",
dbesc(notags(trim($new_name))),
dbesc(datetime_convert()),
intval($contact['uid']),
intval($contact['id'])
intval($contact['id']),
dbesc(notags(trim($new_name)))
);
// do our best to update the name on content items
if(count($r)) {
q("update item set `author-name` = '%s' where `author-name` = '%s' and `author-link` = '%s' and uid = %d",
if(count($r) AND (notags(trim($new_name)) != $r[0]['name'])) {
q("UPDATE `item` SET `author-name` = '%s' WHERE `author-name` = '%s' AND `author-link` = '%s' AND `uid` = %d AND `author-name` != '%s'",
dbesc(notags(trim($new_name))),
dbesc($r[0]['name']),
dbesc($r[0]['url']),
intval($contact['uid'])
intval($contact['uid']),
dbesc(notags(trim($new_name)))
);
}
}
@ -3119,85 +3079,46 @@ function local_delivery($importer,$data) {
logger('local_delivery: Updating photo for ' . $importer['name']);
require_once("include/Photo.php");
$photo_failure = false;
$have_photo = false;
$r = q("SELECT `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d LIMIT 1",
intval($importer['id']),
intval($importer['importer_uid'])
$photos = import_profile_photo($photo_url,$importer['importer_uid'],$importer['id']);
q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s'
WHERE `uid` = %d AND `id` = %d AND NOT `self`",
dbesc(datetime_convert()),
dbesc($photos[0]),
dbesc($photos[1]),
dbesc($photos[2]),
intval($importer['importer_uid']),
intval($importer['id'])
);
if(count($r)) {
$resource_id = $r[0]['resource-id'];
$have_photo = true;
}
else {
$resource_id = photo_new_resource();
}
$img_str = fetch_url($photo_url,true);
// guess mimetype from headers or filename
$type = guess_image_type($photo_url,true);
$img = new Photo($img_str, $type);
if($img->is_valid()) {
if($have_photo) {
q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `contact-id` = %d AND `uid` = %d",
dbesc($resource_id),
intval($importer['id']),
intval($importer['importer_uid'])
);
}
$img->scaleImageSquare(175);
$hash = $resource_id;
$r = $img->store($importer['importer_uid'], $importer['id'], $hash, basename($photo_url), 'Contact Photos', 4);
$img->scaleImage(80);
$r = $img->store($importer['importer_uid'], $importer['id'], $hash, basename($photo_url), 'Contact Photos', 5);
$img->scaleImage(48);
$r = $img->store($importer['importer_uid'], $importer['id'], $hash, basename($photo_url), 'Contact Photos', 6);
$a = get_app();
q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s'
WHERE `uid` = %d AND `id` = %d",
dbesc(datetime_convert()),
dbesc($a->get_baseurl() . '/photo/' . $hash . '-4.'.$img->getExt()),
dbesc($a->get_baseurl() . '/photo/' . $hash . '-5.'.$img->getExt()),
dbesc($a->get_baseurl() . '/photo/' . $hash . '-6.'.$img->getExt()),
intval($importer['importer_uid']),
intval($importer['id'])
);
}
}
if(($name_updated) && (strlen($new_name)) && ($name_updated > $importer['name-date'])) {
if ($name_updated > $contact_updated)
$contact_updated = $name_updated;
$r = q("select * from contact where uid = %d and id = %d limit 1",
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `id` = %d LIMIT 1",
intval($importer['importer_uid']),
intval($importer['id'])
);
$x = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d",
$x = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d AND `name` != '%s' AND NOT `self`",
dbesc(notags(trim($new_name))),
dbesc(datetime_convert()),
intval($importer['importer_uid']),
intval($importer['id'])
intval($importer['id']),
dbesc(notags(trim($new_name)))
);
// do our best to update the name on content items
if(count($r)) {
q("update item set `author-name` = '%s' where `author-name` = '%s' and `author-link` = '%s' and uid = %d",
if(count($r) AND (notags(trim($new_name)) != $r[0]['name'])) {
q("UPDATE `item` SET `author-name` = '%s' WHERE `author-name` = '%s' AND `author-link` = '%s' AND `uid` = %d AND `author-name` != '%s'",
dbesc(notags(trim($new_name))),
dbesc($r[0]['name']),
dbesc($r[0]['url']),
intval($importer['importer_uid'])
intval($importer['importer_uid']),
dbesc(notags(trim($new_name)))
);
}
}

View file

@ -734,9 +734,9 @@ function notifier_run(&$argv, &$argc){
$ssl_policy = get_config('system','ssl_policy');
fix_contact_ssl_policy($x[0],$ssl_policy);
// If we are setup as a soapbox we aren't accepting input from this person
// If we are setup as a soapbox we aren't accepting top level posts from this person
if($x[0]['page-flags'] == PAGE_SOAPBOX)
if (($x[0]['page-flags'] == PAGE_SOAPBOX) AND $top_level)
break;
require_once('library/simplepie/simplepie.inc');

View file

@ -1,7 +1,17 @@
<?php
/**
* @file include/identity.php
*
* @brief Some functions to handle addons and themes.
*/
// install and uninstall plugin
/**
* @brief uninstalls an addon.
*
* @param string $plugin name of the addon
* @return boolean
*/
if (! function_exists('uninstall_plugin')){
function uninstall_plugin($plugin){
logger("Addons: uninstalling " . $plugin);
@ -16,6 +26,12 @@ function uninstall_plugin($plugin){
}
}}
/**
* @brief installs an addon.
*
* @param string $plugin name of the addon
* @return bool
*/
if (! function_exists('install_plugin')){
function install_plugin($plugin) {
// silently fail if plugin was removed
@ -42,7 +58,7 @@ function install_plugin($plugin) {
// This way the system won't fall over dead during the update.
if(file_exists('addon/' . $plugin . '/.hidden')) {
q("update addon set hidden = 1 where name = '%s'",
q("UPDATE `addon` SET `hidden` = 1 WHERE `name` = '%s'",
dbesc($plugin)
);
}
@ -105,10 +121,27 @@ function reload_plugins() {
}}
/**
* @brief check if addon is enabled
*
* @param string $plugin
* @return boolean
*/
function plugin_enabled($plugin) {
$r = q("SELECT * FROM `addon` WHERE `installed` = 1 AND `name` = '%s'", $plugin);
return((bool)(count($r) > 0));
}
/**
* @brief registers a hook.
*
* @param string $hook the name of the hook
* @param string $file the name of the file that hooks into
* @param string $function the name of the function that the hook will call
* @param int $priority A priority (defaults to 0)
* @return mixed|bool
*/
if(! function_exists('register_hook')) {
function register_hook($hook,$file,$function,$priority=0) {
@ -129,6 +162,14 @@ function register_hook($hook,$file,$function,$priority=0) {
return $r;
}}
/**
* @brief unregisters a hook.
*
* @param string $hook the name of the hook
* @param string $file the name of the file that hooks into
* @param string $function the name of the function that the hook called
* @return array
*/
if(! function_exists('unregister_hook')) {
function unregister_hook($hook,$file,$function) {
@ -155,7 +196,15 @@ function load_hooks() {
}
}}
/**
* @brief Calls a hook.
*
* Use this function when you want to be able to allow a hook to manipulate
* the provided data.
*
* @param string $name of the hook to call
* @param string|array &$data to transmit to the callback handler
*/
if(! function_exists('call_hooks')) {
function call_hooks($name, &$data = null) {
$stamp1 = microtime(true);
@ -178,7 +227,7 @@ function call_hooks($name, &$data = null) {
}
else {
// remove orphan hooks
q("delete from hook where hook = '%s' and file = '%s' and function = '%s'",
q("DELETE FROM `hook` WHERE `hook` = '%s' AND `file` = '%s' AND `function` = '%s'",
dbesc($name),
dbesc($hook[0]),
dbesc($hook[1])
@ -204,16 +253,20 @@ function plugin_is_app($name) {
return false;
}}
/*
* parse plugin comment in search of plugin infos.
* like
/**
* @brief Parse plugin comment in search of plugin infos.
*
* * Name: Plugin
* like
* \code
*...* Name: Plugin
* * Description: A plugin which plugs in
* * Version: 1.2.3
* . * Version: 1.2.3
* * Author: John <profile url>
* * Author: Jane <email>
* *
* *\endcode
* @param string $plugin the name of the plugin
* @return array with the plugin information
*/
if (! function_exists('get_plugin_info')){
@ -265,16 +318,20 @@ function get_plugin_info($plugin){
}}
/*
* parse theme comment in search of theme infos.
/**
* @brief Parse theme comment in search of theme infos.
*
* like
*
* * Name: My Theme
* \code
* ..* Name: My Theme
* * Description: My Cool Theme
* * Version: 1.2.3
* . * Version: 1.2.3
* * Author: John <profile url>
* * Maintainer: Jane <profile url>
* *
* \endcode
* @param string $theme the name of the theme
* @return array
*/
if (! function_exists('get_theme_info')){
@ -340,7 +397,14 @@ function get_theme_info($theme){
return $info;
}}
/**
* @brief Returns the theme's screenshot.
*
* The screenshot is expected as view/theme/$theme/screenshot.[png|jpg].
*
* @param sring $theme The name of the theme
* @return string
*/
function get_theme_screenshot($theme) {
$a = get_app();
$exts = array('.png','.jpg');
@ -402,7 +466,7 @@ function service_class_allows($uid,$property,$usage = false) {
$service_class = $a->user['service_class'];
}
else {
$r = q("select service_class from user where uid = %d limit 1",
$r = q("SELECT `service_class` FROM `user` WHERE `uid` = %d LIMIT 1",
intval($uid)
);
if($r !== false and count($r)) {
@ -432,7 +496,7 @@ function service_class_fetch($uid,$property) {
$service_class = $a->user['service_class'];
}
else {
$r = q("select service_class from user where uid = %d limit 1",
$r = q("SELECT `service_class` FROM `user` WHERE `uid` = %d LIMIT 1",
intval($uid)
);
if($r !== false and count($r)) {

View file

@ -20,6 +20,10 @@ function replace_macros($s,$r) {
$stamp1 = microtime(true);
$a = get_app();
// pass $baseurl to all templates
$r['$baseurl'] = $a->get_baseurl();
$t = $a->template_engine();
try {

View file

@ -135,7 +135,7 @@ function admin_content(&$a) {
/* get plugins admin page */
$r = q("SELECT name FROM `addon` WHERE `plugin_admin`=1");
$r = q("SELECT `name` FROM `addon` WHERE `plugin_admin`=1 ORDER BY `name`");
$aside['plugins_admin']=Array();
foreach ($r as $h){
$plugin =$h['name'];

View file

@ -476,8 +476,8 @@ function dfrn_poll_content(&$a) {
// URL reply
if($dfrn_version < 2.2) {
$s = fetch_url($r[0]['poll']
. '?dfrn_id=' . $encrypted_id
$s = fetch_url($r[0]['poll']
. '?dfrn_id=' . $encrypted_id
. '&type=profile-check'
. '&dfrn_version=' . DFRN_PROTOCOL_VERSION
. '&challenge=' . $challenge
@ -493,7 +493,7 @@ function dfrn_poll_content(&$a) {
'sec' => $sec
));
}
$profile = ((count($r) && $r[0]['nickname']) ? $r[0]['nickname'] : $nickname);
switch($destination_url) {
@ -506,7 +506,7 @@ function dfrn_poll_content(&$a) {
case 'status':
case '':
$dest = $a->get_baseurl() . '/profile/' . $profile;
break;
break;
default:
$dest = $destination_url . '?f=&redir=1';
break;
@ -564,5 +564,3 @@ function dfrn_poll_content(&$a) {
}
}
}

View file

@ -11,6 +11,14 @@ function install_init(&$a){
echo "ok";
killme();
}
// We overwrite current theme css, because during install we could not have a working mod_rewrite
// so we could not have a css at all. Here we set a static css file for the install procedure pages
$a->config['system']['theme'] = "../install";
$a->theme['stylesheet'] = $a->get_baseurl()."/view/install/style.css";
global $install_wizard_pass;
if (x($_POST,'pass'))
$install_wizard_pass = intval($_POST['pass']);

View file

@ -112,6 +112,7 @@ function network_init(&$a) {
require_once('include/group.php');
require_once('include/contact_widgets.php');
require_once('include/items.php');
require_once('include/forums.php');
if(! x($a->page,'aside'))
$a->page['aside'] = '';
@ -145,6 +146,7 @@ function network_init(&$a) {
}
$a->page['aside'] .= (feature_enabled(local_user(),'groups') ? group_side('network/0','network',true,$group_id) : '');
$a->page['aside'] .= (feature_enabled(local_user(),'forumlist_widget') ? widget_forumlist($a) : '');
$a->page['aside'] .= posted_date_widget($a->get_baseurl() . '/network',local_user(),false);
$a->page['aside'] .= networks_widget($a->get_baseurl(true) . '/network',(x($_GET, 'nets') ? $_GET['nets'] : ''));
$a->page['aside'] .= saved_searches($search);

View file

@ -1,6 +1,8 @@
<?php
/*
Documentation: http://nodeinfo.diaspora.software/schema.html
/**
* @file mod/nodeinfo.php
*
* Documentation: http://nodeinfo.diaspora.software/schema.html
*/
require_once("include/plugin.php");
@ -67,48 +69,48 @@ function nodeinfo_init(&$a){
$nodeinfo["metadata"] = array("nodeName" => $a->config["sitename"]);
if (nodeinfo_plugin_enabled("appnet"))
if (plugin_enabled("appnet"))
$nodeinfo["services"]["inbound"][] = "appnet";
if (nodeinfo_plugin_enabled("appnet") OR nodeinfo_plugin_enabled("buffer"))
if (plugin_enabled("appnet") OR plugin_enabled("buffer"))
$nodeinfo["services"]["outbound"][] = "appnet";
if (nodeinfo_plugin_enabled("blogger"))
if (plugin_enabled("blogger"))
$nodeinfo["services"]["outbound"][] = "blogger";
if (nodeinfo_plugin_enabled("dwpost"))
if (plugin_enabled("dwpost"))
$nodeinfo["services"]["outbound"][] = "dreamwidth";
if (nodeinfo_plugin_enabled("fbpost") OR nodeinfo_plugin_enabled("buffer"))
if (plugin_enabled("fbpost") OR plugin_enabled("buffer"))
$nodeinfo["services"]["outbound"][] = "facebook";
if (nodeinfo_plugin_enabled("statusnet")) {
if (plugin_enabled("statusnet")) {
$nodeinfo["services"]["inbound"][] = "gnusocial";
$nodeinfo["services"]["outbound"][] = "gnusocial";
}
if (nodeinfo_plugin_enabled("gpluspost") OR nodeinfo_plugin_enabled("buffer"))
if (plugin_enabled("gpluspost") OR plugin_enabled("buffer"))
$nodeinfo["services"]["outbound"][] = "google";
if (nodeinfo_plugin_enabled("ijpost"))
if (plugin_enabled("ijpost"))
$nodeinfo["services"]["outbound"][] = "insanejournal";
if (nodeinfo_plugin_enabled("libertree"))
if (plugin_enabled("libertree"))
$nodeinfo["services"]["outbound"][] = "libertree";
if (nodeinfo_plugin_enabled("buffer"))
if (plugin_enabled("buffer"))
$nodeinfo["services"]["outbound"][] = "linkedin";
if (nodeinfo_plugin_enabled("ljpost"))
if (plugin_enabled("ljpost"))
$nodeinfo["services"]["outbound"][] = "livejournal";
if (nodeinfo_plugin_enabled("buffer"))
if (plugin_enabled("buffer"))
$nodeinfo["services"]["outbound"][] = "pinterest";
if (nodeinfo_plugin_enabled("posterous"))
if (plugin_enabled("posterous"))
$nodeinfo["services"]["outbound"][] = "posterous";
if (nodeinfo_plugin_enabled("pumpio")) {
if (plugin_enabled("pumpio")) {
$nodeinfo["services"]["inbound"][] = "pumpio";
$nodeinfo["services"]["outbound"][] = "pumpio";
}
@ -118,13 +120,13 @@ function nodeinfo_init(&$a){
if ($smtp)
$nodeinfo["services"]["outbound"][] = "smtp";
if (nodeinfo_plugin_enabled("tumblr"))
if (plugin_enabled("tumblr"))
$nodeinfo["services"]["outbound"][] = "tumblr";
if (nodeinfo_plugin_enabled("twitter") OR nodeinfo_plugin_enabled("buffer"))
if (plugin_enabled("twitter") OR plugin_enabled("buffer"))
$nodeinfo["services"]["outbound"][] = "twitter";
if (nodeinfo_plugin_enabled("wppost"))
if (plugin_enabled("wppost"))
$nodeinfo["services"]["outbound"][] = "wordpress";
$nodeinfo["metadata"]["protocols"] = $nodeinfo["protocols"];
@ -134,7 +136,7 @@ function nodeinfo_init(&$a){
$nodeinfo["metadata"]["services"] = $nodeinfo["services"];
if (nodeinfo_plugin_enabled("twitter"))
if (plugin_enabled("twitter"))
$nodeinfo["metadata"]["services"]["inbound"][] = "twitter";
header('Content-type: application/json; charset=utf-8');
@ -142,17 +144,14 @@ function nodeinfo_init(&$a){
exit;
}
function nodeinfo_plugin_enabled($plugin) {
$r = q("SELECT * FROM `addon` WHERE `installed` = 1 AND `name` = '%s'", $plugin);
return((bool)(count($r) > 0));
}
function nodeinfo_cron() {
$a = get_app();
// If the plugin "statistics_json" is enabled then disable it and actrivate nodeinfo.
if (nodeinfo_plugin_enabled("statistics_json")) {
if (plugin_enabled("statistics_json")) {
set_config("system", "nodeinfo", true);
$plugin = "statistics_json";

View file

@ -41,8 +41,9 @@ function ping_init(&$a) {
FROM `item` INNER JOIN `item` as `pitem` ON `pitem`.`id`=`item`.`parent`
WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1 AND
`item`.`deleted` = 0 AND `item`.`uid` = %d AND `pitem`.`parent` != 0
AND `item`.`contact-id` != %d
ORDER BY `item`.`created` DESC",
intval(local_user())
intval(local_user()), intval(local_user())
);
if(count($r)) {

View file

@ -79,7 +79,7 @@ function profile_photo_post(&$a) {
$im->scaleImage(80);
$r = $im->store(local_user(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 5, $is_default_profile);
if($r === false)
notice( sprintf(t('Image size reduction [%s] failed.'),"80") . EOL );
@ -97,11 +97,17 @@ function profile_photo_post(&$a) {
dbesc($base_image['resource-id']),
intval(local_user())
);
}
else {
$r = q("UPDATE `contact` SET `photo` = '%s', `thumb` = '%s', `micro` = '%s' WHERE `self` AND `uid` = %d",
dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-4.' . $im->getExt()),
dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-5.' . $im->getExt()),
dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-6.' . $im->getExt()),
intval(local_user())
);
} else {
$r = q("update profile set photo = '%s', thumb = '%s' where id = %d and uid = %d",
dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-4'),
dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-5'),
dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-4.' . $im->getExt()),
dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-5.' . $im->getExt()),
intval($_REQUEST['profile']),
intval(local_user())
);

View file

@ -100,6 +100,9 @@ function register_post(&$a) {
). EOL
);
}
} else {
info( t('Registration successful.') . EOL ) ;
goaway(z_root());
}
}
elseif($a->config['register_policy'] == REGISTER_APPROVE) {

View file

@ -1,5 +1,9 @@
<?php
require_once("mod/nodeinfo.php");
/**
* @file mod/statistics_json.php
*/
require_once("include/plugin.php");
function statistics_json_init(&$a) {
@ -20,19 +24,19 @@ function statistics_json_init(&$a) {
);
$statistics["services"] = array();
$statistics["services"]["appnet"] = nodeinfo_plugin_enabled("appnet");
$statistics["services"]["blogger"] = nodeinfo_plugin_enabled("blogger");
$statistics["services"]["buffer"] = nodeinfo_plugin_enabled("buffer");
$statistics["services"]["dreamwidth"] = nodeinfo_plugin_enabled("dwpost");
$statistics["services"]["facebook"] = nodeinfo_plugin_enabled("fbpost");
$statistics["services"]["gnusocial"] = nodeinfo_plugin_enabled("statusnet");
$statistics["services"]["googleplus"] = nodeinfo_plugin_enabled("gpluspost");
$statistics["services"]["libertree"] = nodeinfo_plugin_enabled("libertree");
$statistics["services"]["livejournal"] = nodeinfo_plugin_enabled("ljpost");
$statistics["services"]["pumpio"] = nodeinfo_plugin_enabled("pumpio");
$statistics["services"]["twitter"] = nodeinfo_plugin_enabled("twitter");
$statistics["services"]["tumblr"] = nodeinfo_plugin_enabled("tumblr");
$statistics["services"]["wordpress"] = nodeinfo_plugin_enabled("wppost");
$statistics["services"]["appnet"] = plugin_enabled("appnet");
$statistics["services"]["blogger"] = plugin_enabled("blogger");
$statistics["services"]["buffer"] = plugin_enabled("buffer");
$statistics["services"]["dreamwidth"] = plugin_enabled("dwpost");
$statistics["services"]["facebook"] = plugin_enabled("fbpost");
$statistics["services"]["gnusocial"] = plugin_enabled("statusnet");
$statistics["services"]["googleplus"] = plugin_enabled("gpluspost");
$statistics["services"]["libertree"] = plugin_enabled("libertree");
$statistics["services"]["livejournal"] = plugin_enabled("ljpost");
$statistics["services"]["pumpio"] = plugin_enabled("pumpio");
$statistics["services"]["twitter"] = plugin_enabled("twitter");
$statistics["services"]["tumblr"] = plugin_enabled("tumblr");
$statistics["services"]["wordpress"] = plugin_enabled("wppost");
$statistics["appnet"] = $statistics["services"]["appnet"];
$statistics["blogger"] = $statistics["services"]["blogger"];

View file

@ -16,10 +16,10 @@ function wall_upload_post(&$a, $desktopmode = true) {
);
if(! count($r)){
if ($r_json) {
echo json_encode(array('error'=>t('Invalid request.')));
killme();
}
if ($r_json) {
echo json_encode(array('error'=>t('Invalid request.')));
killme();
}
return;
}
} else {
@ -29,10 +29,10 @@ function wall_upload_post(&$a, $desktopmode = true) {
);
}
} else {
if ($r_json) {
echo json_encode(array('error'=>t('Invalid request.')));
killme();
}
if ($r_json) {
echo json_encode(array('error'=>t('Invalid request.')));
killme();
}
return;
}
@ -73,18 +73,18 @@ function wall_upload_post(&$a, $desktopmode = true) {
if(! $can_post) {
if ($r_json) {
echo json_encode(array('error'=>t('Permission denied.')));
killme();
}
if ($r_json) {
echo json_encode(array('error'=>t('Permission denied.')));
killme();
}
notice( t('Permission denied.') . EOL );
killme();
}
if(! x($_FILES,'userfile') && ! x($_FILES,'media')){
if ($r_json) {
echo json_encode(array('error'=>t('Invalid request.')));
}
if ($r_json) {
echo json_encode(array('error'=>t('Invalid request.')));
}
killme();
}
@ -118,10 +118,10 @@ function wall_upload_post(&$a, $desktopmode = true) {
}
if ($src=="") {
if ($r_json) {
echo json_encode(array('error'=>t('Invalid request.')));
killme();
}
if ($r_json) {
echo json_encode(array('error'=>t('Invalid request.')));
killme();
}
notice(t('Invalid request.').EOL);
killme();
}
@ -243,9 +243,9 @@ function wall_upload_post(&$a, $desktopmode = true) {
$r = q("SELECT `id`, `datasize`, `width`, `height`, `type` FROM `photo` WHERE `resource-id` = '%s' ORDER BY `width` DESC LIMIT 1", $hash);
if (!$r){
if ($r_json) {
echo json_encode(array('error'=>''));
killme();
}
echo json_encode(array('error'=>''));
killme();
}
return false;
}
$picture = array();
@ -260,16 +260,16 @@ function wall_upload_post(&$a, $desktopmode = true) {
$picture["preview"] = $a->get_baseurl()."/photo/{$hash}-{$smallest}.".$ph->getExt();
if ($r_json) {
echo json_encode(array('picture'=>$picture));
killme();
}
echo json_encode(array('picture'=>$picture));
killme();
}
return $picture;
}
if ($r_json) {
echo json_encode(array('ok'=>true));
killme();
}
echo json_encode(array('ok'=>true));
killme();
}
/* mod Waitman Gobble NO WARRANTY */

View file

@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1190 );
define( 'UPDATE_VERSION' , 1191 );
/**
*
@ -1659,3 +1659,67 @@ function update_1188() {
return UPDATE_SUCCESS;
}
function update_1190() {
require_once('include/plugin.php');
set_config('system', 'maintenance', 1);
if (plugin_enabled('forumlist')) {
$plugin = 'forumlist';
$plugins = get_config('system','addon');
$plugins_arr = array();
if($plugins) {
$plugins_arr = explode(",",str_replace(" ", "",$plugins));
$idx = array_search($plugin, $plugins_arr);
if ($idx !== false){
unset($plugins_arr[$idx]);
//delete forumlist manually from addon and hook table
// since uninstall_plugin() don't work here
q("DELETE FROM `addon` WHERE `name` = 'forumlist' ");
q("DELETE FROM `hook` WHERE `file` = 'addon/forumlist/forumlist.php' ");
set_config('system','addon', implode(", ",$plugins_arr));
}
}
}
// select old formlist addon entries
$r = q("SELECT `uid`, `cat`, `k`, `v` FROM `pconfig` WHERE `cat` = '%s' ",
dbesc('forumlist')
);
// convert old forumlist addon entries in new config entries
if (count($r)) {
foreach ($r as $rr) {
$uid = $rr['uid'];
$family = $rr['cat'];
$key = $rr['k'];
$value = $rr['v'];
if ($key === 'randomise')
del_pconfig($uid,$family,$key);
if ($key === 'show_on_profile') {
if ($value)
set_pconfig($uid,feature,forumlist_profile,$value);
del_pconfig($uid,$family,$key);
}
if ($key === 'show_on_network') {
if ($value)
set_pconfig($uid,feature,forumlist_widget,$value);
del_pconfig($uid,$family,$key);
}
}
}
set_config('system', 'maintenance', 0);
return UPDATE_SUCCESS;
}

View file

@ -260,29 +260,56 @@ a {
}
/* poke */
#poke-desc {
margin: 5px 0 10px;
margin: 5px 0 10px;
}
#poke-wrapper {
padding: 10px 0 0px;
padding: 10px 0 0px;
}
#poke-recipient, #poke-action, #poke-privacy-settings {
margin: 10px 0 30px;
margin: 10px 0 30px;
}
#poke-recip-label, #poke-action-label, #prvmail-message-label {
margin: 10px 0 10px;
margin: 10px 0 10px;
}
ul.credits {
list-style: none;
list-style: none;
}
ul.credits li {
float: left;
width: 240px;
float: left;
width: 240px;
}
.contact-entry-photo img {
max-width: 80px;
max-height: 80px;
}
/* forumlist widget */
#hide-forum-list {
opacity: 0.3;
filter:alpha(opacity=30);
}
#hide-forum-list:hover {
opacity: 1.0;
filter:alpha(opacity=100);
}
#forumlist-settings-label, #forumlist-random-label, #forumlist-profile-label, #forumlist-network-label {
float: left;
width: 200px;
margin-bottom: 25px;
}
#forumlist-max-forumlists, #forumlist-random, #forumlist-profile, #forumlist-network {
float: left;
}
.forumlist-img {
height: 20px;
width: 20px;
}

BIN
view/install/green.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 323 B

BIN
view/install/info.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
view/install/red.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 316 B

58
view/install/style.css Normal file
View file

@ -0,0 +1,58 @@
/***
* Friendica Communcation Server
*
* This is the static css for the install procedure
*/
body {
background-color: #FFF;
max-width: 750px;
margin: 0 auto;
}
section {
background-color: rgb(252, 252, 252);
padding: 0.5em 2em;
}
h1 img {
vertical-align: sub;
}
td {
padding: 0.2em;
border-bottom: 1px solid rgb(238, 238, 238);
}
td.help {
border-width: 0px 0px 2px 2px;
border-style: solid;
border-color: #000;
background: transparent url("/friendica/view/install/info.png") no-repeat scroll 5px 5px;
}
td.help blockquote {
margin-left: 60px;
}
input[type="submit"] {
margin: 2em 0;
}
tt {
background-color: rgb(238, 238, 238);
padding: 0.1em 0.2em;
}
.field {
margin-bottom: 0.5em;
}
.field label,
.field input, .field select, .field textarea {
width: 100%;
display: block;
}
.field .field_help {
color: #999;
text-align: right;
width: 100%;
display: block;
font-size: 0.8em;
}

BIN
view/install/yellow.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 280 B

View file

@ -10,912 +10,531 @@
# jeroenpraat <jeroenpraat@xs4all.nl>, 2012-2014
# jeroenpraat <jeroenpraat@xs4all.nl>, 2012
# Karel Vandecandelaere <karel@dasrakel.eu>, 2015
# Ralph <pcbee4you@gmail.com>, 2015
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-07-08 13:18+0200\n"
"PO-Revision-Date: 2015-07-14 10:17+0000\n"
"Last-Translator: Karel Vandecandelaere <karel@dasrakel.eu>\n"
"Language-Team: Dutch (http://www.transifex.com/p/friendica/language/nl/)\n"
"POT-Creation-Date: 2015-11-08 21:46+0100\n"
"PO-Revision-Date: 2015-11-17 23:49+0000\n"
"Last-Translator: Ralph <pcbee4you@gmail.com>\n"
"Language-Team: Dutch (http://www.transifex.com/Friendica/friendica/language/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: object/Item.php:95
msgid "This entry was edited"
msgstr ""
#: object/Item.php:117 mod/content.php:622 mod/photos.php:1379
msgid "Private Message"
msgstr "Privébericht"
#: object/Item.php:121 mod/content.php:730 mod/settings.php:683
msgid "Edit"
msgstr "Bewerken"
#: object/Item.php:130 mod/content.php:439 mod/content.php:742
#: mod/photos.php:1672 include/conversation.php:612
msgid "Select"
msgstr "Kies"
#: object/Item.php:131 mod/admin.php:1017 mod/contacts.php:760
#: mod/content.php:440 mod/content.php:743 mod/group.php:171
#: mod/photos.php:1673 mod/settings.php:684 include/conversation.php:613
msgid "Delete"
msgstr "Verwijder"
#: object/Item.php:134 mod/content.php:765
msgid "save to folder"
msgstr "Bewaren in map"
#: object/Item.php:196 mod/content.php:755
msgid "add star"
msgstr "ster toevoegen"
#: object/Item.php:197 mod/content.php:756
msgid "remove star"
msgstr "ster verwijderen"
#: object/Item.php:198 mod/content.php:757
msgid "toggle star status"
msgstr "ster toevoegen of verwijderen"
#: object/Item.php:201 mod/content.php:760
msgid "starred"
msgstr "met ster"
#: object/Item.php:209
msgid "ignore thread"
msgstr ""
#: object/Item.php:210
msgid "unignore thread"
msgstr ""
#: object/Item.php:211
msgid "toggle ignore status"
msgstr ""
#: object/Item.php:214
msgid "ignored"
msgstr ""
#: object/Item.php:221 mod/content.php:761
msgid "add tag"
msgstr "label toevoegen"
#: object/Item.php:232 mod/content.php:686 mod/photos.php:1561
msgid "I like this (toggle)"
msgstr "Vind ik leuk"
#: object/Item.php:232 mod/content.php:686
msgid "like"
msgstr "leuk"
#: object/Item.php:233 mod/content.php:687 mod/photos.php:1562
msgid "I don't like this (toggle)"
msgstr "Vind ik niet leuk"
#: object/Item.php:233 mod/content.php:687
msgid "dislike"
msgstr "niet leuk"
#: object/Item.php:235 mod/content.php:689
msgid "Share this"
msgstr "Delen"
#: object/Item.php:235 mod/content.php:689
msgid "share"
msgstr "Delen"
#: object/Item.php:319 include/conversation.php:665
msgid "Categories:"
msgstr "Categorieën:"
#: object/Item.php:320 include/conversation.php:666
msgid "Filed under:"
msgstr "Bewaard onder:"
#: object/Item.php:329 object/Item.php:330 mod/content.php:473
#: mod/content.php:854 mod/content.php:855 include/conversation.php:653
#: mod/contacts.php:118
#, php-format
msgid "View %s's profile @ %s"
msgstr "Bekijk het profiel van %s @ %s"
msgid "%d contact edited."
msgid_plural "%d contacts edited"
msgstr[0] ""
msgstr[1] ""
#: object/Item.php:331 mod/content.php:856
msgid "to"
msgstr "aan"
#: mod/contacts.php:149 mod/contacts.php:372
msgid "Could not access contact record."
msgstr "Kon geen toegang krijgen tot de contactgegevens"
#: object/Item.php:332
msgid "via"
msgstr "via"
#: mod/contacts.php:163
msgid "Could not locate selected profile."
msgstr "Kon het geselecteerde profiel niet vinden."
#: object/Item.php:333 mod/content.php:857
msgid "Wall-to-Wall"
msgstr "wall-to-wall"
#: mod/contacts.php:196
msgid "Contact updated."
msgstr "Contact bijgewerkt."
#: object/Item.php:334 mod/content.php:858
msgid "via Wall-To-Wall:"
msgstr "via wall-to-wall"
#: mod/contacts.php:198 mod/dfrn_request.php:576
msgid "Failed to update contact record."
msgstr "Ik kon de contactgegevens niet aanpassen."
#: object/Item.php:343 mod/content.php:483 mod/content.php:866
#: include/conversation.php:673
#, php-format
msgid "%s from %s"
msgstr "%s van %s"
#: object/Item.php:364 object/Item.php:680 mod/content.php:711
#: mod/photos.php:1583 mod/photos.php:1627 mod/photos.php:1715 boot.php:754
msgid "Comment"
msgstr "Reacties"
#: object/Item.php:367 mod/wallmessage.php:156 mod/message.php:334
#: mod/message.php:565 mod/content.php:501 mod/content.php:885
#: mod/editpost.php:124 mod/photos.php:1564 include/conversation.php:691
#: include/conversation.php:1074
msgid "Please wait"
msgstr "Even geduld"
#: object/Item.php:390 mod/content.php:605
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d reactie"
msgstr[1] "%d reacties"
#: object/Item.php:392 object/Item.php:405 mod/content.php:607
#: include/text.php:2004
msgid "comment"
msgid_plural "comments"
msgstr[0] "reactie"
msgstr[1] "reacties"
#: object/Item.php:393 mod/content.php:608 include/contact_widgets.php:205
#: include/items.php:5133 boot.php:755
msgid "show more"
msgstr "toon meer"
#: object/Item.php:678 mod/content.php:709 mod/photos.php:1581
#: mod/photos.php:1625 mod/photos.php:1713
msgid "This is you"
msgstr "Dit ben jij"
#: object/Item.php:681 view/theme/perihel/config.php:95
#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633
#: view/theme/quattro/config.php:64
#: view/theme/zero-childs/cleanzero/config.php:80
#: view/theme/dispy/config.php:70 view/theme/clean/config.php:83
#: view/theme/duepuntozero/config.php:59 view/theme/cleanzero/config.php:80
#: view/theme/vier/config.php:56 view/theme/vier-mobil/config.php:47
#: mod/mood.php:137 mod/localtime.php:45 mod/poke.php:199 mod/fsuggest.php:107
#: mod/invite.php:140 mod/manage.php:110 mod/message.php:335
#: mod/message.php:564 mod/contacts.php:564 mod/content.php:712
#: mod/crepair.php:191 mod/events.php:511 mod/install.php:250
#: mod/install.php:288 mod/photos.php:1104 mod/photos.php:1223
#: mod/photos.php:1533 mod/photos.php:1584 mod/photos.php:1628
#: mod/photos.php:1716 mod/profiles.php:682
msgid "Submit"
msgstr "Opslaan"
#: object/Item.php:682 mod/content.php:713
msgid "Bold"
msgstr "Vet"
#: object/Item.php:683 mod/content.php:714
msgid "Italic"
msgstr "Cursief"
#: object/Item.php:684 mod/content.php:715
msgid "Underline"
msgstr "Onderstrepen"
#: object/Item.php:685 mod/content.php:716
msgid "Quote"
msgstr "Citeren"
#: object/Item.php:686 mod/content.php:717
msgid "Code"
msgstr "Broncode"
#: object/Item.php:687 mod/content.php:718
msgid "Image"
msgstr "Afbeelding"
#: object/Item.php:688 mod/content.php:719
msgid "Link"
msgstr "Link"
#: object/Item.php:689 mod/content.php:720
msgid "Video"
msgstr "Video"
#: object/Item.php:690 mod/content.php:721 mod/editpost.php:145
#: mod/events.php:509 mod/photos.php:1585 mod/photos.php:1629
#: mod/photos.php:1717 include/conversation.php:1089
msgid "Preview"
msgstr "Voorvertoning"
#: view/smarty3/compiled/a908c9746db77ea1b3b8583681c75a6737ae4de1.file.blob.tpl.php:76
#: view/smarty3/compiled/3652bcbaa383153072aa300c238792d03867c262.file.tree.tpl.php:76
#: view/smarty3/compiled/788b954cfdfbf400e0cd17e1e5629515d87eb32f.file.commit.tpl.php:77
#: view/smarty3/compiled/c6d84f5d6190b86e81c93d71a9bb01aa32004841.file.project.tpl.php:76
#: view/smarty3/compiled/75e3f44e184d57ada4cf6c86f0ab429f322f9b3e.file.project_empty.tpl.php:76
#: view/smarty3/compiled/7fd1b71c8d07cc4e9605dd231482f4f114db46f5.file.commits.tpl.php:77
msgid "Clone this project:"
msgstr ""
#: view/smarty3/compiled/a908c9746db77ea1b3b8583681c75a6737ae4de1.file.blob.tpl.php:111
msgid "Click here to download"
msgstr ""
#: view/smarty3/compiled/75e3f44e184d57ada4cf6c86f0ab429f322f9b3e.file.project_empty.tpl.php:98
msgid "This project is empty!"
msgstr ""
#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:31
msgid "Projects"
msgstr ""
#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:32
msgid "add new"
msgstr ""
#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:51
msgid "delete"
msgstr ""
#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:68
#, php-format
msgid ""
"Do you want to delete the project '%s'?\\n\\nThis operation cannot be "
"undone."
msgstr ""
#: view/theme/perihel/theme.php:33 view/theme/diabook/theme.php:123
#: mod/notifications.php:93 include/nav.php:105 include/nav.php:148
msgid "Home"
msgstr "Tijdlijn"
#: view/theme/perihel/theme.php:33 view/theme/diabook/theme.php:123
#: include/nav.php:76 include/nav.php:148
msgid "Your posts and conversations"
msgstr "Jouw berichten en conversaties"
#: view/theme/perihel/theme.php:34 view/theme/diabook/theme.php:124
#: mod/newmember.php:32 mod/profperm.php:104 include/identity.php:529
#: include/identity.php:610 include/identity.php:639 include/nav.php:77
msgid "Profile"
msgstr "Profiel"
#: view/theme/perihel/theme.php:34 view/theme/diabook/theme.php:124
#: include/nav.php:77
msgid "Your profile page"
msgstr "Jouw profiel pagina"
#: view/theme/perihel/theme.php:35 view/theme/diabook/theme.php:126
#: mod/fbrowser.php:25 include/identity.php:646 include/nav.php:78
msgid "Photos"
msgstr "Foto's"
#: view/theme/perihel/theme.php:35 view/theme/diabook/theme.php:126
#: include/nav.php:78
msgid "Your photos"
msgstr "Jouw foto's"
#: view/theme/perihel/theme.php:36 view/theme/diabook/theme.php:127
#: mod/events.php:396 include/identity.php:663 include/nav.php:80
msgid "Events"
msgstr "Gebeurtenissen"
#: view/theme/perihel/theme.php:36 view/theme/diabook/theme.php:127
#: include/nav.php:80
msgid "Your events"
msgstr "Jouw gebeurtenissen"
#: view/theme/perihel/theme.php:37 view/theme/diabook/theme.php:128
#: include/nav.php:81
msgid "Personal notes"
msgstr "Persoonlijke nota's"
#: view/theme/perihel/theme.php:37 view/theme/diabook/theme.php:128
msgid "Your personal photos"
msgstr "Jouw persoonlijke foto's"
#: view/theme/perihel/theme.php:38 view/theme/diabook/theme.php:129
#: mod/community.php:32 include/nav.php:129 include/nav.php:131
msgid "Community"
msgstr "Website"
#: view/theme/perihel/config.php:89 view/theme/diabook/config.php:142
#: view/theme/diabook/theme.php:621 include/acl_selectors.php:337
msgid "don't show"
msgstr "niet tonen"
#: view/theme/perihel/config.php:89 view/theme/diabook/config.php:142
#: view/theme/diabook/theme.php:621 include/acl_selectors.php:336
msgid "show"
msgstr "tonen"
#: view/theme/perihel/config.php:97 view/theme/diabook/config.php:150
#: view/theme/quattro/config.php:66
#: view/theme/zero-childs/cleanzero/config.php:82
#: view/theme/dispy/config.php:72 view/theme/clean/config.php:85
#: view/theme/duepuntozero/config.php:61 view/theme/cleanzero/config.php:82
#: view/theme/vier/config.php:58 view/theme/vier-mobil/config.php:49
#: mod/settings.php:919
msgid "Theme settings"
msgstr "Thema-instellingen"
#: view/theme/perihel/config.php:98 view/theme/diabook/config.php:151
#: view/theme/zero-childs/cleanzero/config.php:84
#: view/theme/dispy/config.php:73 view/theme/cleanzero/config.php:84
msgid "Set font-size for posts and comments"
msgstr "Stel lettergrootte voor berichten en reacties in"
#: view/theme/perihel/config.php:99 view/theme/diabook/config.php:152
#: view/theme/dispy/config.php:74
msgid "Set line-height for posts and comments"
msgstr "Stel lijnhoogte voor berichten en reacties in"
#: view/theme/perihel/config.php:100 view/theme/diabook/config.php:153
msgid "Set resolution for middle column"
msgstr "Stel resolutie in voor de middelste kolom. "
#: view/theme/diabook/config.php:154
msgid "Set color scheme"
msgstr "Stel kleurenschema in"
#: view/theme/diabook/config.php:155
msgid "Set zoomfactor for Earth Layer"
msgstr ""
#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585
msgid "Set longitude (X) for Earth Layers"
msgstr ""
#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586
msgid "Set latitude (Y) for Earth Layers"
msgstr ""
#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130
#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624
msgid "Community Pages"
msgstr "Forum/groepspagina's"
#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579
#: view/theme/diabook/theme.php:625
msgid "Earth Layers"
msgstr "Earth Layers"
#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391
#: view/theme/diabook/theme.php:626
msgid "Community Profiles"
msgstr "Forum/groepsprofielen"
#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599
#: view/theme/diabook/theme.php:627
msgid "Help or @NewHere ?"
msgstr ""
#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606
#: view/theme/diabook/theme.php:628
msgid "Connect Services"
msgstr "Diensten verbinden"
#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523
#: view/theme/diabook/theme.php:629
msgid "Find Friends"
msgstr "Zoek vrienden"
#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412
#: view/theme/diabook/theme.php:630
msgid "Last users"
msgstr "Laatste gebruikers"
#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486
#: view/theme/diabook/theme.php:631
msgid "Last photos"
msgstr "Laatste foto's"
#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441
#: view/theme/diabook/theme.php:632
msgid "Last likes"
msgstr "Recent leuk gevonden"
#: view/theme/diabook/theme.php:125 mod/contacts.php:745 include/nav.php:178
msgid "Contacts"
msgstr "Contacten"
#: view/theme/diabook/theme.php:125
msgid "Your contacts"
msgstr "Jouw contacten"
#: view/theme/diabook/theme.php:463 include/conversation.php:118
#: include/conversation.php:245 include/text.php:1998
msgid "event"
msgstr "gebeurtenis"
#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475
#: mod/tagger.php:62 mod/like.php:149 mod/like.php:319 mod/subthread.php:87
#: include/conversation.php:121 include/conversation.php:130
#: include/conversation.php:248 include/conversation.php:257
#: include/diaspora.php:2106
msgid "status"
msgstr "status"
#: view/theme/diabook/theme.php:471 mod/tagger.php:62 mod/like.php:149
#: mod/subthread.php:87 include/conversation.php:126
#: include/conversation.php:253 include/diaspora.php:2106
#: include/text.php:2000
msgid "photo"
msgstr "foto"
#: view/theme/diabook/theme.php:480 mod/like.php:166
#: include/conversation.php:137 include/diaspora.php:2122
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s vindt het %3$s van %2$s leuk"
#: view/theme/diabook/theme.php:499 mod/photos.php:50 mod/photos.php:177
#: mod/photos.php:1086 mod/photos.php:1207 mod/photos.php:1230
#: mod/photos.php:1779 mod/photos.php:1791
msgid "Contact Photos"
msgstr "Contactfoto's"
#: view/theme/diabook/theme.php:500 mod/photos.php:177 mod/photos.php:753
#: mod/photos.php:1207 mod/photos.php:1230 mod/profile_photo.php:74
#: mod/profile_photo.php:81 mod/profile_photo.php:88 mod/profile_photo.php:204
#: mod/profile_photo.php:296 mod/profile_photo.php:305 include/user.php:343
#: include/user.php:350 include/user.php:357
msgid "Profile Photos"
msgstr "Profielfoto's"
#: view/theme/diabook/theme.php:524
msgid "Local Directory"
msgstr "Lokale gids"
#: view/theme/diabook/theme.php:525 mod/directory.php:53
msgid "Global Directory"
msgstr "Globale gids"
#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36
msgid "Similar Interests"
msgstr "Dezelfde interesses"
#: view/theme/diabook/theme.php:527 mod/suggest.php:69
#: include/contact_widgets.php:35
msgid "Friend Suggestions"
msgstr "Vriendschapsvoorstellen"
#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38
msgid "Invite Friends"
msgstr "Vrienden uitnodigen"
#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648
#: mod/newmember.php:22 mod/admin.php:1114 mod/admin.php:1335
#: mod/settings.php:90 include/nav.php:173
msgid "Settings"
msgstr "Instellingen"
#: view/theme/diabook/theme.php:584
msgid "Set zoomfactor for Earth Layers"
msgstr ""
#: view/theme/diabook/theme.php:622
msgid "Show/hide boxes at right-hand column:"
msgstr ""
#: view/theme/quattro/config.php:67
msgid "Alignment"
msgstr "Uitlijning"
#: view/theme/quattro/config.php:67
msgid "Left"
msgstr "Links"
#: view/theme/quattro/config.php:67
msgid "Center"
msgstr "Gecentreerd"
#: view/theme/quattro/config.php:68
#: view/theme/zero-childs/cleanzero/config.php:86
#: view/theme/clean/config.php:88 view/theme/cleanzero/config.php:86
msgid "Color scheme"
msgstr "Kleurschema"
#: view/theme/quattro/config.php:69
msgid "Posts font size"
msgstr "Lettergrootte berichten"
#: view/theme/quattro/config.php:70
msgid "Textareas font size"
msgstr "Lettergrootte tekstgebieden"
#: view/theme/zero-childs/cleanzero/config.php:83
#: view/theme/cleanzero/config.php:83
msgid "Set resize level for images in posts and comments (width and height)"
msgstr ""
#: view/theme/zero-childs/cleanzero/config.php:85
#: view/theme/cleanzero/config.php:85
msgid "Set theme width"
msgstr "Stel breedte van het thema in"
#: view/theme/dispy/config.php:75
msgid "Set colour scheme"
msgstr "Stel kleurschema in"
#: view/theme/clean/config.php:56 view/theme/duepuntozero/config.php:44
#: include/text.php:1734 include/user.php:255
msgid "default"
msgstr "standaard"
#: view/theme/clean/config.php:57
msgid "Midnight"
msgstr ""
#: view/theme/clean/config.php:58
msgid "Zenburn"
msgstr ""
#: view/theme/clean/config.php:59
msgid "Bootstrap"
msgstr ""
#: view/theme/clean/config.php:60
msgid "Shades of Pink"
msgstr ""
#: view/theme/clean/config.php:61
msgid "Lime and Orange"
msgstr ""
#: view/theme/clean/config.php:62
msgid "GeoCities Retro"
msgstr ""
#: view/theme/clean/config.php:86
msgid "Background Image"
msgstr ""
#: view/theme/clean/config.php:86
msgid ""
"The URL to a picture (e.g. from your photo album) that should be used as "
"background image."
msgstr ""
#: view/theme/clean/config.php:87
msgid "Background Color"
msgstr "achtergrondkleur"
#: view/theme/clean/config.php:87
msgid "HEX value for the background color. Don't include the #"
msgstr ""
#: view/theme/clean/config.php:89
msgid "font size"
msgstr ""
#: view/theme/clean/config.php:89
msgid "base font size for your interface"
msgstr ""
#: view/theme/duepuntozero/config.php:45
msgid "greenzero"
msgstr ""
#: view/theme/duepuntozero/config.php:46
msgid "purplezero"
msgstr ""
#: view/theme/duepuntozero/config.php:47
msgid "easterbunny"
msgstr ""
#: view/theme/duepuntozero/config.php:48
msgid "darkzero"
msgstr ""
#: view/theme/duepuntozero/config.php:49
msgid "comix"
msgstr ""
#: view/theme/duepuntozero/config.php:50
msgid "slackr"
msgstr ""
#: view/theme/duepuntozero/config.php:62
msgid "Variations"
msgstr ""
#: view/theme/vier/config.php:59 view/theme/vier-mobil/config.php:50
msgid "Set style"
msgstr ""
#: mod/mood.php:62 include/conversation.php:226
#, php-format
msgid "%1$s is currently %2$s"
msgstr "%1$s is op dit moment %2$s"
#: mod/mood.php:114 mod/api.php:26 mod/api.php:31 mod/wallmessage.php:9
#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103
#: mod/attach.php:33 mod/regmod.php:110 mod/uimport.php:23 mod/poke.php:135
#: mod/delegate.php:12 mod/nogroup.php:25 mod/fsuggest.php:78
#: mod/invite.php:15 mod/invite.php:101 mod/manage.php:96 mod/message.php:38
#: mod/message.php:174 mod/viewcontacts.php:24 mod/notifications.php:66
#: mod/allfriends.php:9 mod/contacts.php:322 mod/crepair.php:120
#: mod/dfrn_confirm.php:55 mod/display.php:508 mod/editpost.php:10
#: mod/events.php:164 mod/follow.php:9 mod/follow.php:42 mod/follow.php:81
#: mod/group.php:19 mod/item.php:170 mod/item.php:186 mod/network.php:4
#: mod/notes.php:20 mod/photos.php:156 mod/photos.php:1072
#: mod/contacts.php:354 mod/manage.php:96 mod/display.php:496
#: mod/profile_photo.php:19 mod/profile_photo.php:169
#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/profiles.php:165
#: mod/profiles.php:614 mod/suggest.php:58 mod/wall_attach.php:55
#: mod/wall_upload.php:66 mod/register.php:42 mod/settings.php:20
#: mod/settings.php:107 mod/settings.php:608 include/items.php:5022
#: index.php:382
#: mod/profile_photo.php:180 mod/profile_photo.php:193
#: mod/ostatus_subscribe.php:9 mod/follow.php:10 mod/follow.php:72
#: mod/follow.php:137 mod/item.php:169 mod/item.php:185 mod/group.php:19
#: mod/dfrn_confirm.php:55 mod/fsuggest.php:78 mod/wall_upload.php:77
#: mod/wall_upload.php:80 mod/viewcontacts.php:24 mod/notifications.php:69
#: mod/message.php:45 mod/message.php:181 mod/crepair.php:120
#: mod/dirfind.php:11 mod/nogroup.php:25 mod/network.php:4
#: mod/allfriends.php:11 mod/events.php:165 mod/wallmessage.php:9
#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103
#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/settings.php:20
#: mod/settings.php:116 mod/settings.php:635 mod/register.php:42
#: mod/delegate.php:12 mod/common.php:17 mod/mood.php:114 mod/suggest.php:58
#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10
#: mod/api.php:26 mod/api.php:31 mod/notes.php:22 mod/poke.php:149
#: mod/repair_ostatus.php:9 mod/invite.php:15 mod/invite.php:101
#: mod/photos.php:163 mod/photos.php:1097 mod/regmod.php:110
#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5103 index.php:382
msgid "Permission denied."
msgstr "Toegang geweigerd"
#: mod/mood.php:133
msgid "Mood"
msgstr "Stemming"
#: mod/contacts.php:393
msgid "Contact has been blocked"
msgstr "Contact is geblokkeerd"
#: mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr "Stel je huidige stemming in, en vertel het je vrienden"
#: mod/contacts.php:393
msgid "Contact has been unblocked"
msgstr "Contact is gedeblokkeerd"
#: mod/decrypt.php:9 mod/viewsrc.php:7
msgid "Access denied."
msgstr "Toegang geweigerd"
#: mod/contacts.php:404
msgid "Contact has been ignored"
msgstr "Contact wordt genegeerd"
#: mod/decrypt.php:15 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:169
#: mod/admin.php:1062 mod/admin.php:1275 mod/display.php:82
#: mod/display.php:295 mod/display.php:512 include/items.php:4813
msgid "Item not found."
msgstr "Item niet gevonden."
#: mod/contacts.php:404
msgid "Contact has been unignored"
msgstr "Contact wordt niet meer genegeerd"
#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536
#, php-format
msgid "%1$s welcomes %2$s"
msgstr "%1$s heet %2$s van harte welkom"
#: mod/contacts.php:416
msgid "Contact has been archived"
msgstr "Contact is gearchiveerd"
#: mod/api.php:76 mod/api.php:102
msgid "Authorize application connection"
msgstr ""
#: mod/contacts.php:416
msgid "Contact has been unarchived"
msgstr "Contact is niet meer gearchiveerd"
#: mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr ""
#: mod/contacts.php:443 mod/contacts.php:816
msgid "Do you really want to delete this contact?"
msgstr "Wil je echt dit contact verwijderen?"
#: mod/api.php:89
msgid "Please login to continue."
msgstr "Log in om verder te gaan."
#: mod/api.php:104
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"
#: mod/api.php:105 mod/message.php:209 mod/contacts.php:413
#: mod/dfrn_request.php:845 mod/follow.php:57 mod/profiles.php:657
#: mod/profiles.php:660 mod/suggest.php:29 mod/register.php:235
#: mod/settings.php:1036 mod/settings.php:1042 mod/settings.php:1050
#: mod/settings.php:1054 mod/settings.php:1059 mod/settings.php:1065
#: mod/settings.php:1071 mod/settings.php:1077 mod/settings.php:1105
#: mod/settings.php:1106 mod/settings.php:1107 mod/settings.php:1108
#: mod/settings.php:1109 include/items.php:4854
#: mod/contacts.php:445 mod/follow.php:105 mod/message.php:216
#: mod/settings.php:1091 mod/settings.php:1097 mod/settings.php:1105
#: mod/settings.php:1109 mod/settings.php:1114 mod/settings.php:1120
#: mod/settings.php:1126 mod/settings.php:1132 mod/settings.php:1158
#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161
#: mod/settings.php:1162 mod/dfrn_request.php:848 mod/register.php:235
#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661
#: mod/profiles.php:687 mod/api.php:105 include/items.php:4935
msgid "Yes"
msgstr "Ja"
#: mod/api.php:106 mod/dfrn_request.php:845 mod/follow.php:57
#: mod/profiles.php:657 mod/profiles.php:661 mod/register.php:236
#: mod/settings.php:1036 mod/settings.php:1042 mod/settings.php:1050
#: mod/settings.php:1054 mod/settings.php:1059 mod/settings.php:1065
#: mod/settings.php:1071 mod/settings.php:1077 mod/settings.php:1105
#: mod/settings.php:1106 mod/settings.php:1107 mod/settings.php:1108
#: mod/settings.php:1109
msgid "No"
msgstr "Nee"
#: mod/contacts.php:448 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116
#: mod/videos.php:123 mod/message.php:219 mod/fbrowser.php:93
#: mod/fbrowser.php:128 mod/settings.php:649 mod/settings.php:675
#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:147
#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1221
#: include/items.php:4938
msgid "Cancel"
msgstr "Annuleren"
#: mod/lostpass.php:19
msgid "No valid account found."
msgstr "Geen geldige account gevonden."
#: mod/contacts.php:460
msgid "Contact has been removed."
msgstr "Contact is verwijderd."
#: mod/lostpass.php:35
msgid "Password reset request issued. Check your email."
msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."
#: mod/lostpass.php:42
#: mod/contacts.php:498
#, php-format
msgid ""
"\n"
"\t\tDear %1$s,\n"
"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
"\t\tpassword. In order to confirm this request, please select the verification link\n"
"\t\tbelow or paste it into your web browser address bar.\n"
"\n"
"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
"\t\tprovided and ignore and/or delete this email.\n"
"\n"
"\t\tYour password will not be changed unless we can verify that you\n"
"\t\tissued this request."
msgid "You are mutual friends with %s"
msgstr "Je bent wederzijds bevriend met %s"
#: mod/contacts.php:502
#, php-format
msgid "You are sharing with %s"
msgstr "Je deelt met %s"
#: mod/contacts.php:507
#, php-format
msgid "%s is sharing with you"
msgstr "%s deelt met jou"
#: mod/contacts.php:527
msgid "Private communications are not available for this contact."
msgstr "Privécommunicatie met dit contact is niet beschikbaar."
#: mod/contacts.php:530 mod/admin.php:643
msgid "Never"
msgstr "Nooit"
#: mod/contacts.php:534
msgid "(Update was successful)"
msgstr "(Wijziging is geslaagd)"
#: mod/contacts.php:534
msgid "(Update was not successful)"
msgstr "(Wijziging is niet geslaagd)"
#: mod/contacts.php:536
msgid "Suggest friends"
msgstr "Stel vrienden voor"
#: mod/contacts.php:540
#, php-format
msgid "Network type: %s"
msgstr "Netwerk type: %s"
#: mod/contacts.php:543 include/contact_widgets.php:200
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d gedeeld contact"
msgstr[1] "%d gedeelde contacten"
#: mod/contacts.php:548
msgid "View all contacts"
msgstr "Alle contacten zien"
#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:820
#: mod/admin.php:1114
msgid "Unblock"
msgstr "Blokkering opheffen"
#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:820
#: mod/admin.php:1113
msgid "Block"
msgstr "Blokkeren"
#: mod/contacts.php:556
msgid "Toggle Blocked status"
msgstr "Schakel geblokkeerde status"
#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:821
msgid "Unignore"
msgstr "Negeer niet meer"
#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:821
#: mod/notifications.php:54 mod/notifications.php:179
#: mod/notifications.php:259
msgid "Ignore"
msgstr "Negeren"
#: mod/contacts.php:564
msgid "Toggle Ignored status"
msgstr "Schakel negeerstatus"
#: mod/contacts.php:570 mod/contacts.php:822
msgid "Unarchive"
msgstr "Archiveer niet meer"
#: mod/contacts.php:570 mod/contacts.php:822
msgid "Archive"
msgstr "Archiveer"
#: mod/contacts.php:573
msgid "Toggle Archive status"
msgstr "Schakel archiveringsstatus"
#: mod/contacts.php:578
msgid "Repair"
msgstr "Herstellen"
#: mod/contacts.php:581
msgid "Advanced Contact Settings"
msgstr "Geavanceerde instellingen voor contacten"
#: mod/contacts.php:589
msgid "Communications lost with this contact!"
msgstr "Communicatie met dit contact is verbroken!"
#: mod/contacts.php:592
msgid "Fetch further information for feeds"
msgstr ""
#: mod/lostpass.php:53
#, php-format
msgid ""
"\n"
"\t\tFollow this link to verify your identity:\n"
"\n"
"\t\t%1$s\n"
"\n"
"\t\tYou will then receive a follow-up message containing the new password.\n"
"\t\tYou may change that password from your account settings page after logging in.\n"
"\n"
"\t\tThe login details are as follows:\n"
"\n"
"\t\tSite Location:\t%2$s\n"
"\t\tLogin Name:\t%3$s"
#: mod/contacts.php:593 mod/admin.php:652
msgid "Disabled"
msgstr "Uitgeschakeld"
#: mod/contacts.php:593
msgid "Fetch information"
msgstr ""
#: mod/lostpass.php:72
#, php-format
msgid "Password reset requested at %s"
msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"
#: mod/lostpass.php:92
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."
#: mod/lostpass.php:109 boot.php:1277
msgid "Password Reset"
msgstr "Wachtwoord opnieuw instellen"
#: mod/lostpass.php:110
msgid "Your password has been reset as requested."
msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd."
#: mod/lostpass.php:111
msgid "Your new password is"
msgstr "Je nieuwe wachtwoord is"
#: mod/lostpass.php:112
msgid "Save or copy your new password - and then"
msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan"
#: mod/lostpass.php:113
msgid "click here to login"
msgstr "klik hier om in te loggen"
#: mod/lostpass.php:114
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina."
#: mod/lostpass.php:125
#, php-format
msgid ""
"\n"
"\t\t\t\tDear %1$s,\n"
"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
"\t\t\t\tinformation for your records (or change your password immediately to\n"
"\t\t\t\tsomething that you will remember).\n"
"\t\t\t"
msgstr "\n\t\t\t\tBeste %1$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\n\t\t\t"
#: mod/lostpass.php:131
#, php-format
msgid ""
"\n"
"\t\t\t\tYour login details are as follows:\n"
"\n"
"\t\t\t\tSite Location:\t%1$s\n"
"\t\t\t\tLogin Name:\t%2$s\n"
"\t\t\t\tPassword:\t%3$s\n"
"\n"
"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
"\t\t\t"
#: mod/contacts.php:593
msgid "Fetch information and keywords"
msgstr ""
#: mod/lostpass.php:147
#: mod/contacts.php:606
msgid "Contact Editor"
msgstr "Contactbewerker"
#: mod/contacts.php:608 mod/manage.php:124 mod/fsuggest.php:107
#: mod/message.php:342 mod/message.php:525 mod/crepair.php:195
#: mod/events.php:574 mod/content.php:712 mod/install.php:253
#: mod/install.php:291 mod/mood.php:137 mod/profiles.php:696
#: mod/localtime.php:45 mod/poke.php:198 mod/invite.php:140
#: mod/photos.php:1129 mod/photos.php:1253 mod/photos.php:1571
#: mod/photos.php:1622 mod/photos.php:1670 mod/photos.php:1758
#: object/Item.php:710 view/theme/cleanzero/config.php:80
#: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64
#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633
#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59
msgid "Submit"
msgstr "Opslaan"
#: mod/contacts.php:609
msgid "Profile Visibility"
msgstr "Zichtbaarheid profiel"
#: mod/contacts.php:610
#, php-format
msgid "Your password has been changed at %s"
msgstr "Je wachtwoord is veranderd op %s"
#: mod/lostpass.php:159
msgid "Forgot your Password?"
msgstr "Wachtwoord vergeten?"
#: mod/lostpass.php:160
msgid ""
"Enter your email address and submit to have your password reset. Then check "
"your email for further instructions."
msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "
#: mod/lostpass.php:161
msgid "Nickname or Email: "
msgstr "Bijnaam of e-mail:"
#: mod/contacts.php:611
msgid "Contact Information / Notes"
msgstr "Contactinformatie / aantekeningen"
#: mod/lostpass.php:162
msgid "Reset"
msgstr "Opnieuw"
#: mod/contacts.php:612
msgid "Edit contact notes"
msgstr "Wijzig aantekeningen over dit contact"
#: mod/wallmessage.php:42 mod/wallmessage.php:112
#: mod/contacts.php:617 mod/contacts.php:860 mod/viewcontacts.php:66
#: mod/nogroup.php:41
#, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgid "Visit %s's profile [%s]"
msgstr "Bekijk het profiel van %s [%s]"
#: mod/contacts.php:618
msgid "Block/Unblock contact"
msgstr "Blokkeer/deblokkeer contact"
#: mod/contacts.php:619
msgid "Ignore contact"
msgstr "Negeer contact"
#: mod/contacts.php:620
msgid "Repair URL settings"
msgstr "Repareer URL-instellingen"
#: mod/contacts.php:621
msgid "View conversations"
msgstr "Toon conversaties"
#: mod/contacts.php:623
msgid "Delete contact"
msgstr "Verwijder contact"
#: mod/contacts.php:627
msgid "Last update:"
msgstr "Laatste wijziging:"
#: mod/contacts.php:629
msgid "Update public posts"
msgstr "Openbare posts aanpassen"
#: mod/contacts.php:631 mod/admin.php:1650
msgid "Update now"
msgstr "Wijzig nu"
#: mod/contacts.php:633 mod/dirfind.php:190 mod/allfriends.php:67
#: mod/match.php:71 mod/suggest.php:82 include/contact_widgets.php:32
#: include/conversation.php:924
msgid "Connect/Follow"
msgstr "Verbind/Volg"
#: mod/contacts.php:640
msgid "Currently blocked"
msgstr "Op dit moment geblokkeerd"
#: mod/contacts.php:641
msgid "Currently ignored"
msgstr "Op dit moment genegeerd"
#: mod/contacts.php:642
msgid "Currently archived"
msgstr "Op dit moment gearchiveerd"
#: mod/contacts.php:643 mod/notifications.php:172 mod/notifications.php:251
msgid "Hide this contact from others"
msgstr "Verberg dit contact voor anderen"
#: mod/contacts.php:643
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> nog zichtbaar zijn"
#: mod/contacts.php:644
msgid "Notification for new posts"
msgstr "Meldingen voor nieuwe berichten"
#: mod/contacts.php:644
msgid "Send a notification of every new post of this contact"
msgstr ""
#: mod/wallmessage.php:56 mod/message.php:63
msgid "No recipient selected."
msgstr "Geen ontvanger geselecteerd."
#: mod/contacts.php:647
msgid "Blacklisted keywords"
msgstr ""
#: mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr "Niet in staat om je tijdlijn-locatie vast te stellen"
#: mod/wallmessage.php:62 mod/message.php:70
msgid "Message could not be sent."
msgstr "Bericht kon niet verzonden worden."
#: mod/wallmessage.php:65 mod/message.php:73
msgid "Message collection failure."
msgstr "Fout bij het verzamelen van berichten."
#: mod/wallmessage.php:68 mod/message.php:76
msgid "Message sent."
msgstr "Bericht verzonden."
#: mod/wallmessage.php:86 mod/wallmessage.php:95
msgid "No recipient."
msgstr "Geen ontvanger."
#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:283
#: mod/message.php:291 mod/message.php:466 mod/message.php:474
#: include/conversation.php:1001 include/conversation.php:1019
msgid "Please enter a link URL:"
msgstr "Vul een internetadres/URL in:"
#: mod/wallmessage.php:142 mod/message.php:319
msgid "Send Private Message"
msgstr "Verstuur privébericht"
#: mod/wallmessage.php:143
#, php-format
#: mod/contacts.php:647
msgid ""
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
msgstr "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
msgstr ""
#: mod/wallmessage.php:144 mod/message.php:320 mod/message.php:553
msgid "To:"
msgstr "Aan:"
#: mod/contacts.php:654 mod/follow.php:121 mod/notifications.php:255
msgid "Profile URL"
msgstr "Profiel url"
#: mod/wallmessage.php:145 mod/message.php:325 mod/message.php:555
msgid "Subject:"
msgstr "Onderwerp:"
#: mod/contacts.php:700
msgid "Suggestions"
msgstr "Voorstellen"
#: mod/wallmessage.php:151 mod/invite.php:134 mod/message.php:329
#: mod/message.php:558
msgid "Your message:"
msgstr "Jouw bericht:"
#: mod/contacts.php:703
msgid "Suggest potential friends"
msgstr "Stel vrienden voor"
#: mod/wallmessage.php:154 mod/message.php:332 mod/message.php:562
#: mod/editpost.php:110 include/conversation.php:1056
msgid "Upload photo"
msgstr "Foto uploaden"
#: mod/contacts.php:708 mod/group.php:192
msgid "All Contacts"
msgstr "Alle Contacten"
#: mod/wallmessage.php:155 mod/message.php:333 mod/message.php:563
#: mod/editpost.php:114 include/conversation.php:1060
msgid "Insert web link"
msgstr "Voeg een webadres in"
#: mod/contacts.php:711
msgid "Show all contacts"
msgstr "Toon alle contacten"
#: mod/contacts.php:716
msgid "Unblocked"
msgstr "Niet geblokkeerd"
#: mod/contacts.php:719
msgid "Only show unblocked contacts"
msgstr "Toon alleen niet-geblokkeerde contacten"
#: mod/contacts.php:725
msgid "Blocked"
msgstr "Geblokkeerd"
#: mod/contacts.php:728
msgid "Only show blocked contacts"
msgstr "Toon alleen geblokkeerde contacten"
#: mod/contacts.php:734
msgid "Ignored"
msgstr "Genegeerd"
#: mod/contacts.php:737
msgid "Only show ignored contacts"
msgstr "Toon alleen genegeerde contacten"
#: mod/contacts.php:743
msgid "Archived"
msgstr "Gearchiveerd"
#: mod/contacts.php:746
msgid "Only show archived contacts"
msgstr "Toon alleen gearchiveerde contacten"
#: mod/contacts.php:752
msgid "Hidden"
msgstr "Verborgen"
#: mod/contacts.php:755
msgid "Only show hidden contacts"
msgstr "Toon alleen verborgen contacten"
#: mod/contacts.php:807 include/text.php:1005 include/nav.php:123
#: include/nav.php:187 view/theme/diabook/theme.php:125
msgid "Contacts"
msgstr "Contacten"
#: mod/contacts.php:811
msgid "Search your contacts"
msgstr "Doorzoek je contacten"
#: mod/contacts.php:812
msgid "Finding: "
msgstr "Gevonden:"
#: mod/contacts.php:813 mod/directory.php:202 include/contact_widgets.php:34
msgid "Find"
msgstr "Zoek"
#: mod/contacts.php:819 mod/settings.php:146 mod/settings.php:674
msgid "Update"
msgstr "Wijzigen"
#: mod/contacts.php:823 mod/group.php:171 mod/admin.php:1112
#: mod/content.php:440 mod/content.php:743 mod/settings.php:711
#: mod/photos.php:1715 object/Item.php:134 include/conversation.php:635
msgid "Delete"
msgstr "Verwijder"
#: mod/contacts.php:836
msgid "Mutual Friendship"
msgstr "Wederzijdse vriendschap"
#: mod/contacts.php:840
msgid "is a fan of yours"
msgstr "Is een fan van jou"
#: mod/contacts.php:844
msgid "you are a fan of"
msgstr "Jij bent een fan van"
#: mod/contacts.php:861 mod/nogroup.php:42
msgid "Edit contact"
msgstr "Contact bewerken"
#: mod/hcard.php:10
msgid "No profile"
msgstr "Geen profiel"
#: mod/manage.php:120
msgid "Manage Identities and/or Pages"
msgstr "Beheer Identiteiten en/of Pagina's"
#: mod/manage.php:121
msgid ""
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."
#: mod/manage.php:122
msgid "Select an identity to manage: "
msgstr "Selecteer een identiteit om te beheren:"
#: mod/oexchange.php:25
msgid "Post successful."
msgstr "Bericht succesvol geplaatst."
#: mod/profperm.php:19 mod/group.php:72 index.php:381
msgid "Permission denied"
msgstr "Toegang geweigerd"
#: mod/profperm.php:25 mod/profperm.php:56
msgid "Invalid profile identifier."
msgstr "Ongeldige profiel-identificatie."
#: mod/profperm.php:102
msgid "Profile Visibility Editor"
msgstr ""
#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:530
#: include/identity.php:611 include/identity.php:641 include/nav.php:76
#: view/theme/diabook/theme.php:124
msgid "Profile"
msgstr "Profiel"
#: mod/profperm.php:106 mod/group.php:222
msgid "Click on a contact to add or remove."
msgstr "Klik op een contact om het toe te voegen of te verwijderen."
#: mod/profperm.php:115
msgid "Visible To"
msgstr "Zichtbaar voor"
#: mod/profperm.php:131
msgid "All Contacts (with secure profile access)"
msgstr "Alle contacten (met veilige profieltoegang)"
#: mod/display.php:82 mod/display.php:283 mod/display.php:500
#: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1157 mod/admin.php:1378
#: mod/notice.php:15 include/items.php:4894
msgid "Item not found."
msgstr "Item niet gevonden."
#: mod/display.php:211 mod/videos.php:189 mod/viewcontacts.php:19
#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93
#: mod/search.php:99 mod/directory.php:37 mod/photos.php:968
msgid "Public access denied."
msgstr "Niet vrij toegankelijk"
#: mod/display.php:331 mod/profile.php:155
msgid "Access to this profile has been restricted."
msgstr "Toegang tot dit profiel is beperkt."
#: mod/display.php:493
msgid "Item has been removed."
msgstr "Item is verwijderd."
#: mod/newmember.php:6
msgid "Welcome to Friendica"
@ -948,6 +567,12 @@ msgid ""
" join."
msgstr "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."
#: mod/newmember.php:22 mod/admin.php:1209 mod/admin.php:1454
#: mod/settings.php:99 include/nav.php:182 view/theme/diabook/theme.php:544
#: view/theme/diabook/theme.php:648
msgid "Settings"
msgstr "Instellingen"
#: mod/newmember.php:26
msgid "Go to Your Settings"
msgstr "Ga naar je instellingen"
@ -967,7 +592,7 @@ msgid ""
"potential friends know exactly how to find you."
msgstr "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden."
#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:695
#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:709
msgid "Upload Profile Photo"
msgstr "Profielfoto uploaden"
@ -1066,7 +691,7 @@ msgid ""
"hours."
msgstr "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden."
#: mod/newmember.php:66 include/group.php:270
#: mod/newmember.php:66 include/group.php:272
msgid "Groups"
msgstr "Groepen"
@ -1106,115 +731,867 @@ msgid ""
" features and resources."
msgstr "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."
#: mod/_search.php:21 mod/network.php:187 mod/search.php:21
msgid "Remove term"
msgstr "Verwijder zoekterm"
#: mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr "OpenID protocol fout. Geen ID Gevonden."
#: mod/_search.php:30 mod/network.php:196 mod/search.php:30
#: include/features.php:42
msgid "Saved Searches"
msgstr "Opgeslagen zoekopdrachten"
#: mod/openid.php:53
msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."
#: mod/_search.php:89 mod/viewcontacts.php:19 mod/community.php:18
#: mod/dfrn_request.php:777 mod/directory.php:35 mod/display.php:223
#: mod/photos.php:942 mod/search.php:89 mod/videos.php:187
msgid "Public access denied."
msgstr "Niet vrij toegankelijk"
#: mod/openid.php:93 include/auth.php:112 include/auth.php:175
msgid "Login failed."
msgstr "Login mislukt."
#: mod/_search.php:99 mod/search.php:99 include/nav.php:119
#: include/text.php:977
msgid "Search"
msgstr "Zoeken"
#: mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Afbeelding opgeladen, maar bijsnijden mislukt."
#: mod/_search.php:180 mod/_search.php:206 mod/community.php:62
#: mod/community.php:71 mod/search.php:174
msgid "No results."
msgstr "Geen resultaten."
#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
#: mod/profile_photo.php:204 mod/profile_photo.php:296
#: mod/profile_photo.php:305 mod/photos.php:70 mod/photos.php:184
#: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260
#: mod/photos.php:1854 include/user.php:343 include/user.php:350
#: include/user.php:357 view/theme/diabook/theme.php:500
msgid "Profile Photos"
msgstr "Profielfoto's"
#: mod/tagger.php:95 include/conversation.php:265
#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
#: mod/profile_photo.php:308
#, php-format
msgid "Image size reduction [%s] failed."
msgstr "Verkleining van de afbeelding [%s] mislukt."
#: mod/profile_photo.php:118
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen."
#: mod/profile_photo.php:128
msgid "Unable to process image"
msgstr "Ik kan de afbeelding niet verwerken"
#: mod/profile_photo.php:144 mod/wall_upload.php:151 mod/photos.php:803
#, php-format
msgid "Image exceeds size limit of %s"
msgstr ""
#: mod/profile_photo.php:153 mod/wall_upload.php:183 mod/photos.php:843
msgid "Unable to process image."
msgstr "Niet in staat om de afbeelding te verwerken"
#: mod/profile_photo.php:242
msgid "Upload File:"
msgstr "Upload bestand:"
#: mod/profile_photo.php:243
msgid "Select a profile:"
msgstr "Kies een profiel:"
#: mod/profile_photo.php:245
msgid "Upload"
msgstr "Uploaden"
#: mod/profile_photo.php:248
msgid "or"
msgstr "of"
#: mod/profile_photo.php:248
msgid "skip this step"
msgstr "Deze stap overslaan"
#: mod/profile_photo.php:248
msgid "select a photo from your photo albums"
msgstr "Kies een foto uit je fotoalbums"
#: mod/profile_photo.php:262
msgid "Crop Image"
msgstr "Afbeelding bijsnijden"
#: mod/profile_photo.php:263
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat."
#: mod/profile_photo.php:265
msgid "Done Editing"
msgstr "Wijzigingen compleet"
#: mod/profile_photo.php:299
msgid "Image uploaded successfully."
msgstr "Uploaden van afbeelding gelukt."
#: mod/profile_photo.php:301 mod/wall_upload.php:216 mod/photos.php:870
msgid "Image upload failed."
msgstr "Uploaden van afbeelding mislukt."
#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168
#: include/conversation.php:130 include/conversation.php:266
#: include/text.php:1988 include/diaspora.php:2140
#: view/theme/diabook/theme.php:471
msgid "photo"
msgstr "foto"
#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346
#: include/conversation.php:125 include/conversation.php:134
#: include/conversation.php:261 include/conversation.php:270
#: include/diaspora.php:2140 view/theme/diabook/theme.php:466
#: view/theme/diabook/theme.php:475
msgid "status"
msgstr "status"
#: mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr "%1$s volgt %3$s van %2$s"
#: mod/tagrm.php:41
msgid "Tag removed"
msgstr "Label verwijderd"
#: mod/tagrm.php:79
msgid "Remove Item Tag"
msgstr "Verwijder label van item"
#: mod/tagrm.php:81
msgid "Select a tag to remove: "
msgstr "Selecteer een label om te verwijderen: "
#: mod/tagrm.php:93 mod/delegate.php:139
msgid "Remove"
msgstr "Verwijderen"
#: mod/ostatus_subscribe.php:14
msgid "Subsribing to OStatus contacts"
msgstr ""
#: mod/ostatus_subscribe.php:25
msgid "No contact provided."
msgstr ""
#: mod/ostatus_subscribe.php:30
msgid "Couldn't fetch information for contact."
msgstr ""
#: mod/ostatus_subscribe.php:38
msgid "Couldn't fetch friends for contact."
msgstr ""
#: mod/ostatus_subscribe.php:51 mod/repair_ostatus.php:44
msgid "Done"
msgstr "Klaar"
#: mod/ostatus_subscribe.php:65
msgid "success"
msgstr "Succesvol"
#: mod/ostatus_subscribe.php:67
msgid "failed"
msgstr "Mislukt"
#: mod/ostatus_subscribe.php:69 object/Item.php:235
msgid "ignored"
msgstr "Verboden"
#: mod/ostatus_subscribe.php:73 mod/repair_ostatus.php:50
msgid "Keep this window open until done."
msgstr "Houd dit scherm open tot het klaar is"
#: mod/filer.php:30 include/conversation.php:1133
#: include/conversation.php:1151
msgid "Save to Folder:"
msgstr "Bewaren in map:"
#: mod/filer.php:30
msgid "- select -"
msgstr "- Kies -"
#: mod/filer.php:31 mod/editpost.php:108 mod/notes.php:61 include/text.php:997
msgid "Save"
msgstr "Bewaren"
#: mod/follow.php:18 mod/dfrn_request.php:861
msgid "Submit Request"
msgstr "Aanvraag indienen"
#: mod/follow.php:29
msgid "You already added this contact."
msgstr "Je hebt deze kontakt al toegevoegd"
#: mod/follow.php:38
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr ""
#: mod/follow.php:45
msgid "OStatus support is disabled. Contact can't be added."
msgstr ""
#: mod/follow.php:52
msgid "The network type couldn't be detected. Contact can't be added."
msgstr ""
#: mod/follow.php:104 mod/dfrn_request.php:847
msgid "Please answer the following:"
msgstr "Beantwoord het volgende:"
#: mod/follow.php:105 mod/dfrn_request.php:848
#, php-format
msgid "Does %s know you?"
msgstr "Kent %s jou?"
#: mod/follow.php:105 mod/settings.php:1091 mod/settings.php:1097
#: mod/settings.php:1105 mod/settings.php:1109 mod/settings.php:1114
#: mod/settings.php:1120 mod/settings.php:1126 mod/settings.php:1132
#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:848
#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662
#: mod/profiles.php:687 mod/api.php:106
msgid "No"
msgstr "Nee"
#: mod/follow.php:106 mod/dfrn_request.php:852
msgid "Add a personal note:"
msgstr "Voeg een persoonlijke opmerking toe:"
#: mod/follow.php:112 mod/dfrn_request.php:858
msgid "Your Identity Address:"
msgstr "Adres van uw identiteit:"
#: mod/follow.php:125 mod/notifications.php:244 mod/events.php:566
#: mod/directory.php:139 include/identity.php:268 include/bb2diaspora.php:170
#: include/event.php:36 include/event.php:60
msgid "Location:"
msgstr "Plaats:"
#: mod/follow.php:127 mod/notifications.php:246 mod/directory.php:147
#: include/identity.php:277 include/identity.php:582
msgid "About:"
msgstr "Over:"
#: mod/follow.php:129 mod/notifications.php:248 include/identity.php:576
msgid "Tags:"
msgstr "Labels:"
#: mod/follow.php:162
msgid "Contact added"
msgstr "Contact toegevoegd"
#: mod/item.php:114
msgid "Unable to locate original post."
msgstr "Ik kan de originele post niet meer vinden."
#: mod/item.php:322
msgid "Empty post discarded."
msgstr "Lege post weggegooid."
#: mod/item.php:461 mod/wall_upload.php:213 mod/wall_upload.php:227
#: mod/wall_upload.php:234 include/Photo.php:954 include/Photo.php:969
#: include/Photo.php:976 include/Photo.php:998 include/message.php:145
msgid "Wall Photos"
msgstr ""
#: mod/item.php:835
msgid "System error. Post not saved."
msgstr "Systeemfout. Post niet bewaard."
#: mod/item.php:964
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."
#: mod/item.php:966
#, php-format
msgid "You may visit them online at %s"
msgstr "Je kunt ze online bezoeken op %s"
#: mod/item.php:967
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen."
#: mod/item.php:971
#, php-format
msgid "%s posted an update."
msgstr "%s heeft een wijziging geplaatst."
#: mod/group.php:29
msgid "Group created."
msgstr "Groep aangemaakt."
#: mod/group.php:35
msgid "Could not create group."
msgstr "Kon de groep niet aanmaken."
#: mod/group.php:47 mod/group.php:140
msgid "Group not found."
msgstr "Groep niet gevonden."
#: mod/group.php:60
msgid "Group name changed."
msgstr "Groepsnaam gewijzigd."
#: mod/group.php:87
msgid "Save Group"
msgstr "Bewaar groep"
#: mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr "Maak een groep contacten/vrienden aan."
#: mod/group.php:94 mod/group.php:178 include/group.php:275
msgid "Group Name: "
msgstr "Groepsnaam:"
#: mod/group.php:113
msgid "Group removed."
msgstr "Groep verwijderd."
#: mod/group.php:115
msgid "Unable to remove group."
msgstr "Niet in staat om groep te verwijderen."
#: mod/group.php:177
msgid "Group Editor"
msgstr "Groepsbewerker"
#: mod/group.php:190
msgid "Members"
msgstr "Leden"
#: mod/apps.php:7 index.php:225
msgid "You must be logged in to use addons. "
msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "
#: mod/apps.php:11
msgid "Applications"
msgstr "Toepassingen"
#: mod/apps.php:14
msgid "No installed applications."
msgstr "Geen toepassingen geïnstalleerd"
#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133
#: mod/profiles.php:179 mod/profiles.php:627
msgid "Profile not found."
msgstr "Profiel niet gevonden"
#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92
#: mod/crepair.php:134
msgid "Contact not found."
msgstr "Contact niet gevonden"
#: mod/dfrn_confirm.php:121
msgid ""
"This may occasionally happen if contact was requested by both persons and it"
" has already been approved."
msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."
#: mod/dfrn_confirm.php:240
msgid "Response from remote site was not understood."
msgstr "Antwoord van de website op afstand werd niet begrepen."
#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
msgid "Unexpected response from remote site: "
msgstr "Onverwacht antwoord van website op afstand:"
#: mod/dfrn_confirm.php:263
msgid "Confirmation completed successfully."
msgstr "Bevestiging werd correct voltooid."
#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286
msgid "Remote site reported: "
msgstr "Website op afstand berichtte: "
#: mod/dfrn_confirm.php:277
msgid "Temporary failure. Please wait and try again."
msgstr "Tijdelijke fout. Wacht even en probeer opnieuw."
#: mod/dfrn_confirm.php:284
msgid "Introduction failed or was revoked."
msgstr "Verzoek mislukt of herroepen."
#: mod/dfrn_confirm.php:430
msgid "Unable to set contact photo."
msgstr "Ik kan geen contact foto instellen."
#: mod/dfrn_confirm.php:487 include/conversation.php:185
#: include/diaspora.php:636
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s is nu bevriend met %2$s"
#: mod/dfrn_confirm.php:572
#, php-format
msgid "No user record found for '%s' "
msgstr "Geen gebruiker gevonden voor '%s'"
#: mod/dfrn_confirm.php:582
msgid "Our site encryption key is apparently messed up."
msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."
#: mod/dfrn_confirm.php:593
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."
#: mod/dfrn_confirm.php:614
msgid "Contact record was not found for you on our site."
msgstr "We vonden op onze webstek geen contactrecord voor jou."
#: mod/dfrn_confirm.php:628
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."
#: mod/dfrn_confirm.php:648
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."
#: mod/dfrn_confirm.php:659
msgid "Unable to set your contact credentials on our system."
msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen."
#: mod/dfrn_confirm.php:726
msgid "Unable to update your contact profile details on our system"
msgstr ""
#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4313
msgid "[Name Withheld]"
msgstr "[Naam achtergehouden]"
#: mod/dfrn_confirm.php:798
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s is toegetreden tot %2$s"
#: mod/profile.php:21 include/identity.php:77
msgid "Requested profile is not available."
msgstr "Gevraagde profiel is niet beschikbaar."
#: mod/profile.php:179
msgid "Tips for New Members"
msgstr "Tips voor nieuwe leden"
#: mod/videos.php:115
msgid "Do you really want to delete this video?"
msgstr "Wil je deze video echt verwijderen?"
#: mod/videos.php:120
msgid "Delete Video"
msgstr "Verwijder video"
#: mod/videos.php:199
msgid "No videos selected"
msgstr "Geen video's geselecteerd"
#: mod/videos.php:300 mod/photos.php:1079
msgid "Access to this item is restricted."
msgstr "Toegang tot dit item is beperkt."
#: mod/videos.php:375 include/text.php:1458
msgid "View Video"
msgstr "Bekijk Video"
#: mod/videos.php:382 mod/photos.php:1882
msgid "View Album"
msgstr "Album bekijken"
#: mod/videos.php:391
msgid "Recent Videos"
msgstr "Recente video's"
#: mod/videos.php:393
msgid "Upload New Videos"
msgstr "Nieuwe video's uploaden"
#: mod/tagger.php:95 include/conversation.php:278
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s labelde %3$s van %2$s met %4$s"
#: mod/attach.php:8
msgid "Item not available."
msgstr "Item niet beschikbaar"
#: mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr "Vriendschapsvoorstel verzonden."
#: mod/attach.php:20
msgid "Item was not found."
msgstr "Item niet gevonden"
#: mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr "Stel vrienden voor"
#: mod/regmod.php:55
msgid "Account approved."
msgstr "Account goedgekeurd."
#: mod/regmod.php:92
#: mod/fsuggest.php:99
#, php-format
msgid "Registration revoked for %s"
msgstr "Registratie ingetrokken voor %s"
msgid "Suggest a friend for %s"
msgstr "Stel een vriend voor aan %s"
#: mod/regmod.php:104
msgid "Please login."
msgstr "Inloggen."
#: mod/uimport.php:50 mod/register.php:188
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."
#: mod/uimport.php:64 mod/register.php:283
msgid "Import"
msgstr "Importeren"
#: mod/uimport.php:66
msgid "Move account"
msgstr "Account verplaatsen"
#: mod/uimport.php:67
msgid "You can import an account from another Friendica server."
msgstr "Je kunt een account van een andere Friendica server importeren."
#: mod/uimport.php:68
msgid ""
"You need to export your account from the old server and upload it here. We "
"will recreate your old account here with all your contacts. We will try also"
" to inform your friends that you moved here."
msgstr "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent."
#: mod/uimport.php:69
msgid ""
"This feature is experimental. We can't import contacts from the OStatus "
"network (statusnet/identi.ca) or from Diaspora"
msgstr "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren."
#: mod/uimport.php:70
msgid "Account file"
msgstr "Account bestand"
#: mod/uimport.php:70
msgid ""
"To export your account, go to \"Settings->Export your personal data\" and "
"select \"Export account\""
#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17
#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1702
msgid "Invalid request."
msgstr ""
#: mod/lockview.php:31 mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr "Privacyinformatie op afstand niet beschikbaar."
#: mod/lostpass.php:19
msgid "No valid account found."
msgstr "Geen geldige account gevonden."
#: mod/lockview.php:48
msgid "Visible to:"
msgstr "Zichtbaar voor:"
#: mod/lostpass.php:35
msgid "Password reset request issued. Check your email."
msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."
#: mod/hcard.php:10
msgid "No profile"
msgstr "Geen profiel"
#: mod/lostpass.php:42
#, php-format
msgid ""
"\n"
"\t\tDear %1$s,\n"
"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
"\t\tpassword. In order to confirm this request, please select the verification link\n"
"\t\tbelow or paste it into your web browser address bar.\n"
"\n"
"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
"\t\tprovided and ignore and/or delete this email.\n"
"\n"
"\t\tYour password will not be changed unless we can verify that you\n"
"\t\tissued this request."
msgstr ""
#: mod/update_profile.php:41 mod/update_network.php:25
#: mod/update_display.php:22 mod/update_community.php:18
#: mod/update_notes.php:37
msgid "[Embedded content - reload page to view]"
msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]"
#: mod/lostpass.php:53
#, php-format
msgid ""
"\n"
"\t\tFollow this link to verify your identity:\n"
"\n"
"\t\t%1$s\n"
"\n"
"\t\tYou will then receive a follow-up message containing the new password.\n"
"\t\tYou may change that password from your account settings page after logging in.\n"
"\n"
"\t\tThe login details are as follows:\n"
"\n"
"\t\tSite Location:\t%2$s\n"
"\t\tLogin Name:\t%3$s"
msgstr ""
#: mod/lostpass.php:72
#, php-format
msgid "Password reset requested at %s"
msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"
#: mod/lostpass.php:92
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."
#: mod/lostpass.php:109 boot.php:1295
msgid "Password Reset"
msgstr "Wachtwoord opnieuw instellen"
#: mod/lostpass.php:110
msgid "Your password has been reset as requested."
msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd."
#: mod/lostpass.php:111
msgid "Your new password is"
msgstr "Je nieuwe wachtwoord is"
#: mod/lostpass.php:112
msgid "Save or copy your new password - and then"
msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan"
#: mod/lostpass.php:113
msgid "click here to login"
msgstr "klik hier om in te loggen"
#: mod/lostpass.php:114
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina."
#: mod/lostpass.php:125
#, php-format
msgid ""
"\n"
"\t\t\t\tDear %1$s,\n"
"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
"\t\t\t\tinformation for your records (or change your password immediately to\n"
"\t\t\t\tsomething that you will remember).\n"
"\t\t\t"
msgstr "\n\t\t\t\tBeste %1$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\n\t\t\t"
#: mod/lostpass.php:131
#, php-format
msgid ""
"\n"
"\t\t\t\tYour login details are as follows:\n"
"\n"
"\t\t\t\tSite Location:\t%1$s\n"
"\t\t\t\tLogin Name:\t%2$s\n"
"\t\t\t\tPassword:\t%3$s\n"
"\n"
"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
"\t\t\t"
msgstr ""
#: mod/lostpass.php:147
#, php-format
msgid "Your password has been changed at %s"
msgstr "Je wachtwoord is veranderd op %s"
#: mod/lostpass.php:159
msgid "Forgot your Password?"
msgstr "Wachtwoord vergeten?"
#: mod/lostpass.php:160
msgid ""
"Enter your email address and submit to have your password reset. Then check "
"your email for further instructions."
msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."
#: mod/lostpass.php:161
msgid "Nickname or Email: "
msgstr "Bijnaam of e-mail:"
#: mod/lostpass.php:162
msgid "Reset"
msgstr "Opnieuw"
#: mod/like.php:170 include/conversation.php:122 include/conversation.php:258
#: include/text.php:1986 view/theme/diabook/theme.php:463
msgid "event"
msgstr "gebeurtenis"
#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2156
#: view/theme/diabook/theme.php:480
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s vindt het %3$s van %2$s leuk"
#: mod/like.php:189 include/conversation.php:144
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s vindt het %3$s van %2$s niet leuk"
#: mod/like.php:191
#, php-format
msgid "%1$s is attending %2$s's %3$s"
msgstr ""
#: mod/like.php:193
#, php-format
msgid "%1$s is not attending %2$s's %3$s"
msgstr ""
#: mod/like.php:195
#, php-format
msgid "%1$s may attend %2$s's %3$s"
msgstr ""
#: mod/ping.php:257
msgid "{0} wants to be your friend"
msgstr "{0} wilt je vriend worden"
#: mod/ping.php:272
msgid "{0} sent you a message"
msgstr "{0} stuurde jou een bericht"
#: mod/ping.php:287
msgid "{0} requested registration"
msgstr "{0} vroeg om zich te registreren"
#: mod/viewcontacts.php:41
msgid "No contacts."
msgstr "Geen contacten."
#: mod/viewcontacts.php:83 include/text.php:917
msgid "View Contacts"
msgstr "Bekijk contacten"
#: mod/notifications.php:29
msgid "Invalid request identifier."
msgstr "Ongeldige <em>request identifier</em>."
#: mod/notifications.php:38 mod/notifications.php:180
#: mod/notifications.php:260
msgid "Discard"
msgstr "Verwerpen"
#: mod/notifications.php:81
msgid "System"
msgstr "Systeem"
#: mod/notifications.php:87 mod/admin.php:228 include/nav.php:154
msgid "Network"
msgstr "Netwerk"
#: mod/notifications.php:93 mod/network.php:385
msgid "Personal"
msgstr "Persoonlijk"
#: mod/notifications.php:99 include/nav.php:104 include/nav.php:157
#: view/theme/diabook/theme.php:123
msgid "Home"
msgstr "Tijdlijn"
#: mod/notifications.php:105 include/nav.php:162
msgid "Introductions"
msgstr "Verzoeken"
#: mod/notifications.php:130
msgid "Show Ignored Requests"
msgstr "Toon genegeerde verzoeken"
#: mod/notifications.php:130
msgid "Hide Ignored Requests"
msgstr "Verberg genegeerde verzoeken"
#: mod/notifications.php:164 mod/notifications.php:234
msgid "Notification type: "
msgstr "Notificatiesoort:"
#: mod/notifications.php:165
msgid "Friend Suggestion"
msgstr "Vriendschapsvoorstel"
#: mod/notifications.php:167
#, php-format
msgid "suggested by %s"
msgstr "Voorgesteld door %s"
#: mod/notifications.php:173 mod/notifications.php:252
msgid "Post a new friend activity"
msgstr "Bericht over een nieuwe vriend"
#: mod/notifications.php:173 mod/notifications.php:252
msgid "if applicable"
msgstr "Indien toepasbaar"
#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1110
msgid "Approve"
msgstr "Goedkeuren"
#: mod/notifications.php:196
msgid "Claims to be known to you: "
msgstr "Denkt dat u hem of haar kent:"
#: mod/notifications.php:196
msgid "yes"
msgstr "Ja"
#: mod/notifications.php:196
msgid "no"
msgstr "Nee"
#: mod/notifications.php:197
msgid ""
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
"you allow to read but you do not want to read theirs. Approve as: "
msgstr ""
#: mod/notifications.php:200
msgid ""
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
"allow to read and you subscribe to their posts. \"Sharer\" means that you "
"allow to read but you do not want to read theirs. Approve as: "
msgstr ""
#: mod/notifications.php:208
msgid "Friend"
msgstr "Vriend"
#: mod/notifications.php:209
msgid "Sharer"
msgstr "Deler"
#: mod/notifications.php:209
msgid "Fan/Admirer"
msgstr "Fan/Bewonderaar"
#: mod/notifications.php:235
msgid "Friend/Connect Request"
msgstr "Vriendschapsverzoek"
#: mod/notifications.php:235
msgid "New Follower"
msgstr "Nieuwe Volger"
#: mod/notifications.php:250 mod/directory.php:141 include/identity.php:270
#: include/identity.php:541
msgid "Gender:"
msgstr "Geslacht:"
#: mod/notifications.php:266
msgid "No introductions."
msgstr "Geen vriendschaps- of connectieverzoeken."
#: mod/notifications.php:269 include/nav.php:165
msgid "Notifications"
msgstr "Notificaties"
#: mod/notifications.php:307 mod/notifications.php:436
#: mod/notifications.php:527
#, php-format
msgid "%s liked %s's post"
msgstr "%s vond het bericht van %s leuk"
#: mod/notifications.php:317 mod/notifications.php:446
#: mod/notifications.php:537
#, php-format
msgid "%s disliked %s's post"
msgstr "%s vond het bericht van %s niet leuk"
#: mod/notifications.php:332 mod/notifications.php:461
#: mod/notifications.php:552
#, php-format
msgid "%s is now friends with %s"
msgstr "%s is nu bevriend met %s"
#: mod/notifications.php:339 mod/notifications.php:468
#, php-format
msgid "%s created a new post"
msgstr "%s schreef een nieuw bericht"
#: mod/notifications.php:340 mod/notifications.php:469
#: mod/notifications.php:562
#, php-format
msgid "%s commented on %s's post"
msgstr "%s gaf een reactie op het bericht van %s"
#: mod/notifications.php:355
msgid "No more network notifications."
msgstr "Geen netwerknotificaties meer"
#: mod/notifications.php:359
msgid "Network Notifications"
msgstr "Netwerknotificaties"
#: mod/notifications.php:385 mod/notify.php:72
msgid "No more system notifications."
msgstr "Geen systeemnotificaties meer."
#: mod/notifications.php:389 mod/notify.php:76
msgid "System Notifications"
msgstr "Systeemnotificaties"
#: mod/notifications.php:484
msgid "No more personal notifications."
msgstr "Geen persoonlijke notificaties meer"
#: mod/notifications.php:488
msgid "Personal Notifications"
msgstr "Persoonlijke notificaties"
#: mod/notifications.php:569
msgid "No more home notifications."
msgstr "Geen tijdlijn-notificaties meer"
#: mod/notifications.php:573
msgid "Home Notifications"
msgstr "Tijdlijn-notificaties"
#: mod/babel.php:17
msgid "Source (bbcode) text:"
@ -1264,16 +1641,4083 @@ msgstr "Bron ingave (Diaspora formaat):"
msgid "diaspora2bb: "
msgstr "diaspora2bb: "
#: mod/like.php:168 include/conversation.php:140
#: mod/navigation.php:19 include/nav.php:33
msgid "Nothing new here"
msgstr "Niets nieuw hier"
#: mod/navigation.php:23 include/nav.php:37
msgid "Clear notifications"
msgstr "Notificaties verwijderen"
#: mod/message.php:15 include/nav.php:174
msgid "New Message"
msgstr "Nieuw Bericht"
#: mod/message.php:70 mod/wallmessage.php:56
msgid "No recipient selected."
msgstr "Geen ontvanger geselecteerd."
#: mod/message.php:74
msgid "Unable to locate contact information."
msgstr "Ik kan geen contact informatie vinden."
#: mod/message.php:77 mod/wallmessage.php:62
msgid "Message could not be sent."
msgstr "Bericht kon niet verzonden worden."
#: mod/message.php:80 mod/wallmessage.php:65
msgid "Message collection failure."
msgstr "Fout bij het verzamelen van berichten."
#: mod/message.php:83 mod/wallmessage.php:68
msgid "Message sent."
msgstr "Bericht verzonden."
#: mod/message.php:189 include/nav.php:171
msgid "Messages"
msgstr "Privéberichten"
#: mod/message.php:214
msgid "Do you really want to delete this message?"
msgstr "Wil je echt dit bericht verwijderen?"
#: mod/message.php:234
msgid "Message deleted."
msgstr "Bericht verwijderd."
#: mod/message.php:265
msgid "Conversation removed."
msgstr "Gesprek verwijderd."
#: mod/message.php:290 mod/message.php:298 mod/message.php:427
#: mod/message.php:435 mod/wallmessage.php:127 mod/wallmessage.php:135
#: include/conversation.php:1129 include/conversation.php:1147
msgid "Please enter a link URL:"
msgstr "Vul een internetadres/URL in:"
#: mod/message.php:326 mod/wallmessage.php:142
msgid "Send Private Message"
msgstr "Verstuur privébericht"
#: mod/message.php:327 mod/message.php:514 mod/wallmessage.php:144
msgid "To:"
msgstr "Aan:"
#: mod/message.php:332 mod/message.php:516 mod/wallmessage.php:145
msgid "Subject:"
msgstr "Onderwerp:"
#: mod/message.php:336 mod/message.php:519 mod/wallmessage.php:151
#: mod/invite.php:134
msgid "Your message:"
msgstr "Jouw bericht:"
#: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154
#: mod/editpost.php:109 include/conversation.php:1184
msgid "Upload photo"
msgstr "Foto uploaden"
#: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155
#: mod/editpost.php:113 include/conversation.php:1188
msgid "Insert web link"
msgstr "Voeg een webadres in"
#: mod/message.php:341 mod/message.php:526 mod/content.php:501
#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:123
#: mod/photos.php:1602 object/Item.php:396 include/conversation.php:713
#: include/conversation.php:1202
msgid "Please wait"
msgstr "Even geduld"
#: mod/message.php:368
msgid "No messages."
msgstr "Geen berichten."
#: mod/message.php:411
msgid "Message not available."
msgstr "Bericht niet beschikbaar."
#: mod/message.php:481
msgid "Delete message"
msgstr "Verwijder bericht"
#: mod/message.php:507 mod/message.php:582
msgid "Delete conversation"
msgstr "Verwijder gesprek"
#: mod/message.php:509
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender."
#: mod/message.php:513
msgid "Send Reply"
msgstr "Verstuur Antwoord"
#: mod/message.php:555
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s vindt het %3$s van %2$s niet leuk"
msgid "Unknown sender - %s"
msgstr "Onbekende afzender - %s"
#: mod/oexchange.php:25
msgid "Post successful."
msgstr "Bericht succesvol geplaatst."
#: mod/message.php:558
#, php-format
msgid "You and %s"
msgstr "Jij en %s"
#: mod/localtime.php:12 include/bb2diaspora.php:139 include/event.php:13
#: mod/message.php:561
#, php-format
msgid "%s and You"
msgstr "%s en jij"
#: mod/message.php:585
msgid "D, d M Y - g:i A"
msgstr "D, d M Y - g:i A"
#: mod/message.php:588
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d bericht"
msgstr[1] "%d berichten"
#: mod/update_display.php:22 mod/update_community.php:18
#: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25
msgid "[Embedded content - reload page to view]"
msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]"
#: mod/crepair.php:107
msgid "Contact settings applied."
msgstr "Contactinstellingen toegepast."
#: mod/crepair.php:109
msgid "Contact update failed."
msgstr "Aanpassen van contact mislukt."
#: mod/crepair.php:140
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
" information your communications with this contact may stop working."
msgstr ""
#: mod/crepair.php:141
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."
#: mod/crepair.php:154 mod/crepair.php:156
msgid "No mirroring"
msgstr ""
#: mod/crepair.php:154
msgid "Mirror as forwarded posting"
msgstr ""
#: mod/crepair.php:154 mod/crepair.php:156
msgid "Mirror as my own posting"
msgstr ""
#: mod/crepair.php:162
msgid "Repair Contact Settings"
msgstr "Contactinstellingen herstellen"
#: mod/crepair.php:166
msgid "Return to contact editor"
msgstr "Ga terug naar contactbewerker"
#: mod/crepair.php:168
msgid "Refetch contact data"
msgstr ""
#: mod/crepair.php:169 mod/admin.php:1108 mod/admin.php:1120
#: mod/admin.php:1121 mod/admin.php:1134 mod/settings.php:650
#: mod/settings.php:676
msgid "Name"
msgstr "Naam"
#: mod/crepair.php:170
msgid "Account Nickname"
msgstr "Bijnaam account"
#: mod/crepair.php:171
msgid "@Tagname - overrides Name/Nickname"
msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam"
#: mod/crepair.php:172
msgid "Account URL"
msgstr "URL account"
#: mod/crepair.php:173
msgid "Friend Request URL"
msgstr "URL vriendschapsverzoek"
#: mod/crepair.php:174
msgid "Friend Confirm URL"
msgstr "URL vriendschapsbevestiging"
#: mod/crepair.php:175
msgid "Notification Endpoint URL"
msgstr ""
#: mod/crepair.php:176
msgid "Poll/Feed URL"
msgstr "URL poll/feed"
#: mod/crepair.php:177
msgid "New photo from this URL"
msgstr "Nieuwe foto van deze URL"
#: mod/crepair.php:178
msgid "Remote Self"
msgstr ""
#: mod/crepair.php:181
msgid "Mirror postings from this contact"
msgstr ""
#: mod/crepair.php:183
msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact."
msgstr ""
#: mod/bookmarklet.php:12 boot.php:1281 include/nav.php:91
msgid "Login"
msgstr "Login"
#: mod/bookmarklet.php:41
msgid "The post was created"
msgstr ""
#: mod/viewsrc.php:7
msgid "Access denied."
msgstr "Toegang geweigerd"
#: mod/dirfind.php:188 mod/allfriends.php:82 mod/match.php:84
#: mod/suggest.php:97 include/contact_widgets.php:10 include/identity.php:188
msgid "Connect"
msgstr "Verbinden"
#: mod/dirfind.php:189 mod/allfriends.php:66 mod/match.php:70
#: mod/directory.php:156 mod/suggest.php:81 include/Contact.php:335
#: include/conversation.php:912 include/conversation.php:926
msgid "View Profile"
msgstr "Bekijk profiel"
#: mod/dirfind.php:217
#, php-format
msgid "People Search - %s"
msgstr ""
#: mod/dirfind.php:224 mod/match.php:104
msgid "No matches"
msgstr "Geen resultaten"
#: mod/fbrowser.php:32 include/identity.php:649 include/nav.php:77
#: view/theme/diabook/theme.php:126
msgid "Photos"
msgstr "Foto's"
#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:54
#: mod/photos.php:184 mod/photos.php:1111 mod/photos.php:1237
#: mod/photos.php:1260 mod/photos.php:1830 mod/photos.php:1842
#: view/theme/diabook/theme.php:499
msgid "Contact Photos"
msgstr "Contactfoto's"
#: mod/fbrowser.php:125
msgid "Files"
msgstr "Bestanden"
#: mod/nogroup.php:63
msgid "Contacts who are not members of a group"
msgstr "Contacten die geen leden zijn van een groep"
#: mod/admin.php:80
msgid "Theme settings updated."
msgstr "Thema-instellingen aangepast."
#: mod/admin.php:127 mod/admin.php:709
msgid "Site"
msgstr "Website"
#: mod/admin.php:128 mod/admin.php:653 mod/admin.php:1103 mod/admin.php:1118
msgid "Users"
msgstr "Gebruiker"
#: mod/admin.php:129 mod/admin.php:1207 mod/admin.php:1267 mod/settings.php:66
msgid "Plugins"
msgstr "Plugins"
#: mod/admin.php:130 mod/admin.php:1452 mod/admin.php:1503
msgid "Themes"
msgstr "Thema's"
#: mod/admin.php:131
msgid "DB updates"
msgstr "DB aanpassingen"
#: mod/admin.php:132 mod/admin.php:223
msgid "Inspect Queue"
msgstr ""
#: mod/admin.php:147 mod/admin.php:156 mod/admin.php:1591
msgid "Logs"
msgstr "Logs"
#: mod/admin.php:148
msgid "probe address"
msgstr ""
#: mod/admin.php:149
msgid "check webfinger"
msgstr ""
#: mod/admin.php:154 include/nav.php:194
msgid "Admin"
msgstr "Beheer"
#: mod/admin.php:155
msgid "Plugin Features"
msgstr "Plugin Functies"
#: mod/admin.php:157
msgid "diagnostics"
msgstr ""
#: mod/admin.php:158
msgid "User registrations waiting for confirmation"
msgstr "Gebruikersregistraties wachten op bevestiging"
#: mod/admin.php:222 mod/admin.php:272 mod/admin.php:708 mod/admin.php:1102
#: mod/admin.php:1206 mod/admin.php:1266 mod/admin.php:1451 mod/admin.php:1502
#: mod/admin.php:1590
msgid "Administration"
msgstr "Beheer"
#: mod/admin.php:225
msgid "ID"
msgstr "ID"
#: mod/admin.php:226
msgid "Recipient Name"
msgstr ""
#: mod/admin.php:227
msgid "Recipient Profile"
msgstr ""
#: mod/admin.php:229
msgid "Created"
msgstr ""
#: mod/admin.php:230
msgid "Last Tried"
msgstr ""
#: mod/admin.php:231
msgid ""
"This page lists the content of the queue for outgoing postings. These are "
"postings the initial delivery failed for. They will be resend later and "
"eventually deleted if the delivery fails permanently."
msgstr ""
#: mod/admin.php:243 mod/admin.php:1056
msgid "Normal Account"
msgstr "Normaal account"
#: mod/admin.php:244 mod/admin.php:1057
msgid "Soapbox Account"
msgstr "Zeepkist-account"
#: mod/admin.php:245 mod/admin.php:1058
msgid "Community/Celebrity Account"
msgstr "Account voor een groep/forum of beroemdheid"
#: mod/admin.php:246 mod/admin.php:1059
msgid "Automatic Friend Account"
msgstr "Automatisch Vriendschapsaccount"
#: mod/admin.php:247
msgid "Blog Account"
msgstr "Blog Account"
#: mod/admin.php:248
msgid "Private Forum"
msgstr "Privéforum/-groep"
#: mod/admin.php:267
msgid "Message queues"
msgstr "Bericht-wachtrijen"
#: mod/admin.php:273
msgid "Summary"
msgstr "Samenvatting"
#: mod/admin.php:275
msgid "Registered users"
msgstr "Geregistreerde gebruikers"
#: mod/admin.php:277
msgid "Pending registrations"
msgstr "Registraties die in de wacht staan"
#: mod/admin.php:278
msgid "Version"
msgstr "Versie"
#: mod/admin.php:283
msgid "Active plugins"
msgstr "Actieve plug-ins"
#: mod/admin.php:306
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
msgstr ""
#: mod/admin.php:585
msgid "RINO2 needs mcrypt php extension to work."
msgstr ""
#: mod/admin.php:593
msgid "Site settings updated."
msgstr "Site instellingen gewijzigd."
#: mod/admin.php:617 mod/settings.php:901
msgid "No special theme for mobile devices"
msgstr "Geen speciaal thema voor mobiele apparaten"
#: mod/admin.php:636
msgid "No community page"
msgstr ""
#: mod/admin.php:637
msgid "Public postings from users of this site"
msgstr ""
#: mod/admin.php:638
msgid "Global community page"
msgstr ""
#: mod/admin.php:644
msgid "At post arrival"
msgstr ""
#: mod/admin.php:645 include/contact_selectors.php:56
msgid "Frequently"
msgstr "Frequent"
#: mod/admin.php:646 include/contact_selectors.php:57
msgid "Hourly"
msgstr "elk uur"
#: mod/admin.php:647 include/contact_selectors.php:58
msgid "Twice daily"
msgstr "Twee keer per dag"
#: mod/admin.php:648 include/contact_selectors.php:59
msgid "Daily"
msgstr "dagelijks"
#: mod/admin.php:654
msgid "Users, Global Contacts"
msgstr ""
#: mod/admin.php:655
msgid "Users, Global Contacts/fallback"
msgstr ""
#: mod/admin.php:659
msgid "One month"
msgstr ""
#: mod/admin.php:660
msgid "Three months"
msgstr ""
#: mod/admin.php:661
msgid "Half a year"
msgstr ""
#: mod/admin.php:662
msgid "One year"
msgstr ""
#: mod/admin.php:667
msgid "Multi user instance"
msgstr "Server voor meerdere gebruikers"
#: mod/admin.php:690
msgid "Closed"
msgstr "Gesloten"
#: mod/admin.php:691
msgid "Requires approval"
msgstr "Toestemming vereist"
#: mod/admin.php:692
msgid "Open"
msgstr "Open"
#: mod/admin.php:696
msgid "No SSL policy, links will track page SSL state"
msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen"
#: mod/admin.php:697
msgid "Force all links to use SSL"
msgstr "Verplicht alle links om SSL te gebruiken"
#: mod/admin.php:698
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)"
#: mod/admin.php:710 mod/admin.php:1268 mod/admin.php:1504 mod/admin.php:1592
#: mod/settings.php:648 mod/settings.php:758 mod/settings.php:802
#: mod/settings.php:871 mod/settings.php:957 mod/settings.php:1192
msgid "Save Settings"
msgstr "Instellingen opslaan"
#: mod/admin.php:711 mod/register.php:260
msgid "Registration"
msgstr "Registratie"
#: mod/admin.php:712
msgid "File upload"
msgstr "Uploaden bestand"
#: mod/admin.php:713
msgid "Policies"
msgstr "Beleid"
#: mod/admin.php:714
msgid "Advanced"
msgstr "Geavanceerd"
#: mod/admin.php:715
msgid "Auto Discovered Contact Directory"
msgstr ""
#: mod/admin.php:716
msgid "Performance"
msgstr "Performantie"
#: mod/admin.php:717
msgid ""
"Relocate - WARNING: advanced function. Could make this server unreachable."
msgstr ""
#: mod/admin.php:720
msgid "Site name"
msgstr "Site naam"
#: mod/admin.php:721
msgid "Host name"
msgstr ""
#: mod/admin.php:722
msgid "Sender Email"
msgstr ""
#: mod/admin.php:722
msgid ""
"The email address your server shall use to send notification emails from."
msgstr ""
#: mod/admin.php:723
msgid "Banner/Logo"
msgstr "Banner/Logo"
#: mod/admin.php:724
msgid "Shortcut icon"
msgstr ""
#: mod/admin.php:724
msgid "Link to an icon that will be used for browsers."
msgstr ""
#: mod/admin.php:725
msgid "Touch icon"
msgstr ""
#: mod/admin.php:725
msgid "Link to an icon that will be used for tablets and mobiles."
msgstr ""
#: mod/admin.php:726
msgid "Additional Info"
msgstr ""
#: mod/admin.php:726
#, php-format
msgid ""
"For public servers: you can add additional information here that will be "
"listed at %s/siteinfo."
msgstr ""
#: mod/admin.php:727
msgid "System language"
msgstr "Systeemtaal"
#: mod/admin.php:728
msgid "System theme"
msgstr "Systeem thema"
#: mod/admin.php:728
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - <a href='#' id='cnftheme'>verander thema instellingen</a>"
#: mod/admin.php:729
msgid "Mobile system theme"
msgstr "Mobiel systeem thema"
#: mod/admin.php:729
msgid "Theme for mobile devices"
msgstr "Thema voor mobiele apparaten"
#: mod/admin.php:730
msgid "SSL link policy"
msgstr "Beleid SSL-links"
#: mod/admin.php:730
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken"
#: mod/admin.php:731
msgid "Force SSL"
msgstr ""
#: mod/admin.php:731
msgid ""
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
" to endless loops."
msgstr ""
#: mod/admin.php:732
msgid "Old style 'Share'"
msgstr ""
#: mod/admin.php:732
msgid "Deactivates the bbcode element 'share' for repeating items."
msgstr ""
#: mod/admin.php:733
msgid "Hide help entry from navigation menu"
msgstr "Verberg de 'help' uit het navigatiemenu"
#: mod/admin.php:733
msgid ""
"Hides the menu entry for the Help pages from the navigation menu. You can "
"still access it calling /help directly."
msgstr "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven."
#: mod/admin.php:734
msgid "Single user instance"
msgstr "Server voor één gebruiker"
#: mod/admin.php:734
msgid "Make this instance multi-user or single-user for the named user"
msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker."
#: mod/admin.php:735
msgid "Maximum image size"
msgstr "Maximum afbeeldingsgrootte"
#: mod/admin.php:735
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking."
#: mod/admin.php:736
msgid "Maximum image length"
msgstr "Maximum afbeeldingslengte"
#: mod/admin.php:736
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen."
#: mod/admin.php:737
msgid "JPEG image quality"
msgstr "JPEG afbeeldingskwaliteit"
#: mod/admin.php:737
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit."
#: mod/admin.php:739
msgid "Register policy"
msgstr "Registratiebeleid"
#: mod/admin.php:740
msgid "Maximum Daily Registrations"
msgstr "Maximum aantal registraties per dag"
#: mod/admin.php:740
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect."
#: mod/admin.php:741
msgid "Register text"
msgstr "Registratietekst"
#: mod/admin.php:741
msgid "Will be displayed prominently on the registration page."
msgstr "Dit zal prominent op de registratiepagina getoond worden."
#: mod/admin.php:742
msgid "Accounts abandoned after x days"
msgstr "Verlaten accounts na x dagen"
#: mod/admin.php:742
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet."
#: mod/admin.php:743
msgid "Allowed friend domains"
msgstr "Toegelaten vriend domeinen"
#: mod/admin.php:743
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten."
#: mod/admin.php:744
msgid "Allowed email domains"
msgstr "Toegelaten e-mail domeinen"
#: mod/admin.php:744
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan."
#: mod/admin.php:745
msgid "Block public"
msgstr "Openbare toegang blokkeren"
#: mod/admin.php:745
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers."
#: mod/admin.php:746
msgid "Force publish"
msgstr "Dwing publiceren af"
#: mod/admin.php:746
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden."
#: mod/admin.php:747
msgid "Global directory URL"
msgstr ""
#: mod/admin.php:747
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr ""
#: mod/admin.php:748
msgid "Allow threaded items"
msgstr "Sta threads in conversaties toe"
#: mod/admin.php:748
msgid "Allow infinite level threading for items on this site."
msgstr "Sta oneindige niveaus threads in conversaties op deze website toe."
#: mod/admin.php:749
msgid "Private posts by default for new users"
msgstr "Privéberichten als standaard voor nieuwe gebruikers"
#: mod/admin.php:749
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar."
#: mod/admin.php:750
msgid "Don't include post content in email notifications"
msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties"
#: mod/admin.php:750
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy."
#: mod/admin.php:751
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
#: mod/admin.php:751
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr ""
#: mod/admin.php:752
msgid "Don't embed private images in posts"
msgstr ""
#: mod/admin.php:752
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
"photos will have to authenticate and load each image, which may take a "
"while."
msgstr ""
#: mod/admin.php:753
msgid "Allow Users to set remote_self"
msgstr ""
#: mod/admin.php:753
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr ""
#: mod/admin.php:754
msgid "Block multiple registrations"
msgstr "Blokkeer meerdere registraties"
#: mod/admin.php:754
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken."
#: mod/admin.php:755
msgid "OpenID support"
msgstr "OpenID ondersteuning"
#: mod/admin.php:755
msgid "OpenID support for registration and logins."
msgstr "OpenID ondersteuning voor registraties en logins."
#: mod/admin.php:756
msgid "Fullname check"
msgstr "Controleer volledige naam"
#: mod/admin.php:756
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel"
#: mod/admin.php:757
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 reguliere uitdrukkingen"
#: mod/admin.php:757
msgid "Use PHP UTF8 regular expressions"
msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen"
#: mod/admin.php:758
msgid "Community Page Style"
msgstr ""
#: mod/admin.php:758
msgid ""
"Type of community page to show. 'Global community' shows every public "
"posting from an open distributed network that arrived on this server."
msgstr ""
#: mod/admin.php:759
msgid "Posts per user on community page"
msgstr ""
#: mod/admin.php:759
msgid ""
"The maximum number of posts per user on the community page. (Not valid for "
"'Global Community')"
msgstr ""
#: mod/admin.php:760
msgid "Enable OStatus support"
msgstr "Activeer OStatus ondersteuning"
#: mod/admin.php:760
msgid ""
"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr ""
#: mod/admin.php:761
msgid "OStatus conversation completion interval"
msgstr ""
#: mod/admin.php:761
msgid ""
"How often shall the poller check for new entries in OStatus conversations? "
"This can be a very ressource task."
msgstr ""
#: mod/admin.php:762
msgid "OStatus support can only be enabled if threading is enabled."
msgstr ""
#: mod/admin.php:764
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr ""
#: mod/admin.php:765
msgid "Enable Diaspora support"
msgstr "Activeer Diaspora ondersteuning"
#: mod/admin.php:765
msgid "Provide built-in Diaspora network compatibility."
msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk."
#: mod/admin.php:766
msgid "Only allow Friendica contacts"
msgstr "Laat alleen Friendica contacten toe"
#: mod/admin.php:766
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld."
#: mod/admin.php:767
msgid "Verify SSL"
msgstr "Controleer SSL"
#: mod/admin.php:767
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken."
#: mod/admin.php:768
msgid "Proxy user"
msgstr "Proxy-gebruiker"
#: mod/admin.php:769
msgid "Proxy URL"
msgstr "Proxy-URL"
#: mod/admin.php:770
msgid "Network timeout"
msgstr "Netwerk timeout"
#: mod/admin.php:770
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)."
#: mod/admin.php:771
msgid "Delivery interval"
msgstr "Afleverinterval"
#: mod/admin.php:771
msgid ""
"Delay background delivery processes by this many seconds to reduce system "
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
"for large dedicated servers."
msgstr "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers."
#: mod/admin.php:772
msgid "Poll interval"
msgstr "Poll-interval"
#: mod/admin.php:772
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt."
#: mod/admin.php:773
msgid "Maximum Load Average"
msgstr "Maximum gemiddelde belasting"
#: mod/admin.php:773
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50."
#: mod/admin.php:774
msgid "Maximum Load Average (Frontend)"
msgstr ""
#: mod/admin.php:774
msgid "Maximum system load before the frontend quits service - default 50."
msgstr ""
#: mod/admin.php:776
msgid "Periodical check of global contacts"
msgstr ""
#: mod/admin.php:776
msgid ""
"If enabled, the global contacts are checked periodically for missing or "
"outdated data and the vitality of the contacts and servers."
msgstr ""
#: mod/admin.php:777
msgid "Days between requery"
msgstr ""
#: mod/admin.php:777
msgid "Number of days after which a server is requeried for his contacts."
msgstr ""
#: mod/admin.php:778
msgid "Discover contacts from other servers"
msgstr ""
#: mod/admin.php:778
msgid ""
"Periodically query other servers for contacts. You can choose between "
"'users': the users on the remote system, 'Global Contacts': active contacts "
"that are known on the system. The fallback is meant for Redmatrix servers "
"and older friendica servers, where global contacts weren't available. The "
"fallback increases the server load, so the recommened setting is 'Users, "
"Global Contacts'."
msgstr ""
#: mod/admin.php:779
msgid "Timeframe for fetching global contacts"
msgstr ""
#: mod/admin.php:779
msgid ""
"When the discovery is activated, this value defines the timeframe for the "
"activity of the global contacts that are fetched from other servers."
msgstr ""
#: mod/admin.php:780
msgid "Search the local directory"
msgstr ""
#: mod/admin.php:780
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr ""
#: mod/admin.php:782
msgid "Publish server information"
msgstr ""
#: mod/admin.php:782
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
"profiles, number of posts and the activated protocols and connectors. See <a"
" href='http://the-federation.info/'>the-federation.info</a> for details."
msgstr ""
#: mod/admin.php:784
msgid "Use MySQL full text engine"
msgstr "Gebruik de tekst-zoekfunctie van MySQL"
#: mod/admin.php:784
msgid ""
"Activates the full text engine. Speeds up search - but can only search for "
"four and more characters."
msgstr "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters."
#: mod/admin.php:785
msgid "Suppress Language"
msgstr ""
#: mod/admin.php:785
msgid "Suppress language information in meta information about a posting."
msgstr ""
#: mod/admin.php:786
msgid "Suppress Tags"
msgstr ""
#: mod/admin.php:786
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr ""
#: mod/admin.php:787
msgid "Path to item cache"
msgstr "Pad naar cache voor items"
#: mod/admin.php:787
msgid "The item caches buffers generated bbcode and external images."
msgstr ""
#: mod/admin.php:788
msgid "Cache duration in seconds"
msgstr "Cache tijdsduur in seconden"
#: mod/admin.php:788
msgid ""
"How long should the cache files be hold? Default value is 86400 seconds (One"
" day). To disable the item cache, set the value to -1."
msgstr ""
#: mod/admin.php:789
msgid "Maximum numbers of comments per post"
msgstr ""
#: mod/admin.php:789
msgid "How much comments should be shown for each post? Default value is 100."
msgstr ""
#: mod/admin.php:790
msgid "Path for lock file"
msgstr "Pad voor lock bestand"
#: mod/admin.php:790
msgid ""
"The lock file is used to avoid multiple pollers at one time. Only define a "
"folder here."
msgstr ""
#: mod/admin.php:791
msgid "Temp path"
msgstr "Tijdelijk pad"
#: mod/admin.php:791
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr ""
#: mod/admin.php:792
msgid "Base path to installation"
msgstr "Basispad voor installatie"
#: mod/admin.php:792
msgid ""
"If the system cannot detect the correct path to your installation, enter the"
" correct path here. This setting should only be set if you are using a "
"restricted system and symbolic links to your webroot."
msgstr ""
#: mod/admin.php:793
msgid "Disable picture proxy"
msgstr ""
#: mod/admin.php:793
msgid ""
"The picture proxy increases performance and privacy. It shouldn't be used on"
" systems with very low bandwith."
msgstr ""
#: mod/admin.php:794
msgid "Enable old style pager"
msgstr ""
#: mod/admin.php:794
msgid ""
"The old style pager has page numbers but slows down massively the page "
"speed."
msgstr ""
#: mod/admin.php:795
msgid "Only search in tags"
msgstr ""
#: mod/admin.php:795
msgid "On large systems the text search can slow down the system extremely."
msgstr ""
#: mod/admin.php:797
msgid "New base url"
msgstr ""
#: mod/admin.php:797
msgid ""
"Change base url for this server. Sends relocate message to all DFRN contacts"
" of all users."
msgstr ""
#: mod/admin.php:799
msgid "RINO Encryption"
msgstr ""
#: mod/admin.php:799
msgid "Encryption layer between nodes."
msgstr ""
#: mod/admin.php:800
msgid "Embedly API key"
msgstr ""
#: mod/admin.php:800
msgid ""
"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
"web pages. This is an optional parameter."
msgstr ""
#: mod/admin.php:818
msgid "Update has been marked successful"
msgstr "Wijziging succesvol gemarkeerd "
#: mod/admin.php:826
#, php-format
msgid "Database structure update %s was successfully applied."
msgstr ""
#: mod/admin.php:829
#, php-format
msgid "Executing of database structure update %s failed with error: %s"
msgstr ""
#: mod/admin.php:841
#, php-format
msgid "Executing %s failed with error: %s"
msgstr ""
#: mod/admin.php:844
#, php-format
msgid "Update %s was successfully applied."
msgstr "Wijziging %s geslaagd."
#: mod/admin.php:848
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is."
#: mod/admin.php:850
#, php-format
msgid "There was no additional update function %s that needed to be called."
msgstr ""
#: mod/admin.php:869
msgid "No failed updates."
msgstr "Geen misluke wijzigingen"
#: mod/admin.php:870
msgid "Check database structure"
msgstr ""
#: mod/admin.php:875
msgid "Failed Updates"
msgstr "Misluke wijzigingen"
#: mod/admin.php:876
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven."
#: mod/admin.php:877
msgid "Mark success (if update was manually applied)"
msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)"
#: mod/admin.php:878
msgid "Attempt to execute this update step automatically"
msgstr "Probeer deze stap automatisch uit te voeren"
#: mod/admin.php:910
#, php-format
msgid ""
"\n"
"\t\t\tDear %1$s,\n"
"\t\t\t\tthe administrator of %2$s has set up an account for you."
msgstr ""
#: mod/admin.php:913
#, php-format
msgid ""
"\n"
"\t\t\tThe login details are as follows:\n"
"\n"
"\t\t\tSite Location:\t%1$s\n"
"\t\t\tLogin Name:\t\t%2$s\n"
"\t\t\tPassword:\t\t%3$s\n"
"\n"
"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
"\t\t\tin.\n"
"\n"
"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
"\n"
"\t\t\tYou may also wish to add some basic information to your default profile\n"
"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
"\n"
"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
"\t\t\tthan that.\n"
"\n"
"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
"\t\t\tIf you are new and do not know anybody here, they may help\n"
"\t\t\tyou to make some new and interesting friends.\n"
"\n"
"\t\t\tThank you and welcome to %4$s."
msgstr ""
#: mod/admin.php:945 include/user.php:421
#, php-format
msgid "Registration details for %s"
msgstr "Registratie details voor %s"
#: mod/admin.php:957
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd"
msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd"
#: mod/admin.php:964
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s gebruiker verwijderd"
msgstr[1] "%s gebruikers verwijderd"
#: mod/admin.php:1003
#, php-format
msgid "User '%s' deleted"
msgstr "Gebruiker '%s' verwijderd"
#: mod/admin.php:1011
#, php-format
msgid "User '%s' unblocked"
msgstr "Gebruiker '%s' niet meer geblokkeerd"
#: mod/admin.php:1011
#, php-format
msgid "User '%s' blocked"
msgstr "Gebruiker '%s' geblokkeerd"
#: mod/admin.php:1104
msgid "Add User"
msgstr "Gebruiker toevoegen"
#: mod/admin.php:1105
msgid "select all"
msgstr "Alles selecteren"
#: mod/admin.php:1106
msgid "User registrations waiting for confirm"
msgstr "Gebruikersregistraties wachten op een bevestiging"
#: mod/admin.php:1107
msgid "User waiting for permanent deletion"
msgstr ""
#: mod/admin.php:1108
msgid "Request date"
msgstr "Registratiedatum"
#: mod/admin.php:1108 mod/admin.php:1120 mod/admin.php:1121 mod/admin.php:1136
#: include/contact_selectors.php:79 include/contact_selectors.php:86
msgid "Email"
msgstr "E-mail"
#: mod/admin.php:1109
msgid "No registrations."
msgstr "Geen registraties."
#: mod/admin.php:1111
msgid "Deny"
msgstr "Weiger"
#: mod/admin.php:1115
msgid "Site admin"
msgstr "Sitebeheerder"
#: mod/admin.php:1116
msgid "Account expired"
msgstr "Account verlopen"
#: mod/admin.php:1119
msgid "New User"
msgstr "Nieuwe gebruiker"
#: mod/admin.php:1120 mod/admin.php:1121
msgid "Register date"
msgstr "Registratiedatum"
#: mod/admin.php:1120 mod/admin.php:1121
msgid "Last login"
msgstr "Laatste login"
#: mod/admin.php:1120 mod/admin.php:1121
msgid "Last item"
msgstr "Laatste item"
#: mod/admin.php:1120
msgid "Deleted since"
msgstr "Verwijderd sinds"
#: mod/admin.php:1121 mod/settings.php:41
msgid "Account"
msgstr "Account"
#: mod/admin.php:1123
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
#: mod/admin.php:1124
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
#: mod/admin.php:1134
msgid "Name of the new user."
msgstr "Naam van nieuwe gebruiker"
#: mod/admin.php:1135
msgid "Nickname"
msgstr "Bijnaam"
#: mod/admin.php:1135
msgid "Nickname of the new user."
msgstr "Bijnaam van nieuwe gebruiker"
#: mod/admin.php:1136
msgid "Email address of the new user."
msgstr "E-mailadres van nieuwe gebruiker"
#: mod/admin.php:1169
#, php-format
msgid "Plugin %s disabled."
msgstr "Plugin %s uitgeschakeld."
#: mod/admin.php:1173
#, php-format
msgid "Plugin %s enabled."
msgstr "Plugin %s ingeschakeld."
#: mod/admin.php:1183 mod/admin.php:1407
msgid "Disable"
msgstr "Uitschakelen"
#: mod/admin.php:1185 mod/admin.php:1409
msgid "Enable"
msgstr "Inschakelen"
#: mod/admin.php:1208 mod/admin.php:1453
msgid "Toggle"
msgstr "Schakelaar"
#: mod/admin.php:1216 mod/admin.php:1463
msgid "Author: "
msgstr "Auteur:"
#: mod/admin.php:1217 mod/admin.php:1464
msgid "Maintainer: "
msgstr "Onderhoud:"
#: mod/admin.php:1269
msgid "Reload active plugins"
msgstr ""
#: mod/admin.php:1367
msgid "No themes found."
msgstr "Geen thema's gevonden."
#: mod/admin.php:1445
msgid "Screenshot"
msgstr "Schermafdruk"
#: mod/admin.php:1505
msgid "Reload active themes"
msgstr ""
#: mod/admin.php:1509
msgid "[Experimental]"
msgstr "[Experimenteel]"
#: mod/admin.php:1510
msgid "[Unsupported]"
msgstr "[Niet ondersteund]"
#: mod/admin.php:1537
msgid "Log settings updated."
msgstr "Log instellingen gewijzigd"
#: mod/admin.php:1593
msgid "Clear"
msgstr "Wis"
#: mod/admin.php:1599
msgid "Enable Debugging"
msgstr ""
#: mod/admin.php:1600
msgid "Log file"
msgstr "Logbestand"
#: mod/admin.php:1600
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie."
#: mod/admin.php:1601
msgid "Log level"
msgstr "Log niveau"
#: mod/admin.php:1651 include/acl_selectors.php:347
msgid "Close"
msgstr "Afsluiten"
#: mod/admin.php:1657
msgid "FTP Host"
msgstr "FTP Server"
#: mod/admin.php:1658
msgid "FTP Path"
msgstr "FTP Pad"
#: mod/admin.php:1659
msgid "FTP User"
msgstr "FTP Gebruiker"
#: mod/admin.php:1660
msgid "FTP Password"
msgstr "FTP wachtwoord"
#: mod/network.php:143
#, php-format
msgid "Search Results For: %s"
msgstr ""
#: mod/network.php:195 mod/search.php:25
msgid "Remove term"
msgstr "Verwijder zoekterm"
#: mod/network.php:204 mod/search.php:34 include/features.php:43
msgid "Saved Searches"
msgstr "Opgeslagen zoekopdrachten"
#: mod/network.php:205 include/group.php:279
msgid "add"
msgstr "toevoegen"
#: mod/network.php:366
msgid "Commented Order"
msgstr "Nieuwe reacties bovenaan"
#: mod/network.php:369
msgid "Sort by Comment Date"
msgstr "Berichten met nieuwe reacties bovenaan"
#: mod/network.php:374
msgid "Posted Order"
msgstr "Nieuwe berichten bovenaan"
#: mod/network.php:377
msgid "Sort by Post Date"
msgstr "Nieuwe berichten bovenaan"
#: mod/network.php:388
msgid "Posts that mention or involve you"
msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben"
#: mod/network.php:396
msgid "New"
msgstr "Nieuw"
#: mod/network.php:399
msgid "Activity Stream - by date"
msgstr "Activiteitenstroom - volgens datum"
#: mod/network.php:407
msgid "Shared Links"
msgstr "Gedeelde links"
#: mod/network.php:410
msgid "Interesting Links"
msgstr "Interessante links"
#: mod/network.php:418
msgid "Starred"
msgstr "Met ster"
#: mod/network.php:421
msgid "Favourite Posts"
msgstr "Favoriete berichten"
#: mod/network.php:480
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid_plural ""
"Warning: This group contains %s members from an insecure network."
msgstr[0] "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk."
msgstr[1] "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk."
#: mod/network.php:483
msgid "Private messages to this group are at risk of public disclosure."
msgstr "Privéberichten naar deze groep kunnen openbaar gemaakt worden."
#: mod/network.php:550 mod/content.php:119
msgid "No such group"
msgstr "Zo'n groep bestaat niet"
#: mod/network.php:567 mod/content.php:130
msgid "Group is empty"
msgstr "De groep is leeg"
#: mod/network.php:578 mod/content.php:135
#, php-format
msgid "Group: %s"
msgstr ""
#: mod/network.php:596
#, php-format
msgid "Contact: %s"
msgstr ""
#: mod/network.php:600
msgid "Private messages to this person are at risk of public disclosure."
msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."
#: mod/network.php:605
msgid "Invalid contact."
msgstr "Ongeldig contact."
#: mod/allfriends.php:45
msgid "No friends to display."
msgstr "Geen vrienden om te laten zien."
#: mod/allfriends.php:79 mod/common.php:122
msgid "Forum"
msgstr ""
#: mod/allfriends.php:92
#, php-format
msgid "Friends of %s"
msgstr "Vrienden van %s"
#: mod/events.php:71 mod/events.php:73
msgid "Event can not end before it has started."
msgstr ""
#: mod/events.php:80 mod/events.php:82
msgid "Event title and start time are required."
msgstr "Titel en begintijd van de gebeurtenis zijn vereist."
#: mod/events.php:201
msgid "Sun"
msgstr ""
#: mod/events.php:202
msgid "Mon"
msgstr ""
#: mod/events.php:203
msgid "Tue"
msgstr ""
#: mod/events.php:204
msgid "Wed"
msgstr ""
#: mod/events.php:205
msgid "Thu"
msgstr ""
#: mod/events.php:206
msgid "Fri"
msgstr ""
#: mod/events.php:207
msgid "Sat"
msgstr ""
#: mod/events.php:208 mod/settings.php:936 include/text.php:1267
msgid "Sunday"
msgstr "Zondag"
#: mod/events.php:209 mod/settings.php:936 include/text.php:1267
msgid "Monday"
msgstr "Maandag"
#: mod/events.php:210 include/text.php:1267
msgid "Tuesday"
msgstr "Dinsdag"
#: mod/events.php:211 include/text.php:1267
msgid "Wednesday"
msgstr "Woensdag"
#: mod/events.php:212 include/text.php:1267
msgid "Thursday"
msgstr "Donderdag"
#: mod/events.php:213 include/text.php:1267
msgid "Friday"
msgstr "Vrijdag"
#: mod/events.php:214 include/text.php:1267
msgid "Saturday"
msgstr "Zaterdag"
#: mod/events.php:215
msgid "Jan"
msgstr ""
#: mod/events.php:216
msgid "Feb"
msgstr ""
#: mod/events.php:217
msgid "Mar"
msgstr ""
#: mod/events.php:218
msgid "Apr"
msgstr ""
#: mod/events.php:219 mod/events.php:231 include/text.php:1271
msgid "May"
msgstr "Mei"
#: mod/events.php:220
msgid "Jun"
msgstr ""
#: mod/events.php:221
msgid "Jul"
msgstr ""
#: mod/events.php:222
msgid "Aug"
msgstr ""
#: mod/events.php:223
msgid "Sept"
msgstr ""
#: mod/events.php:224
msgid "Oct"
msgstr ""
#: mod/events.php:225
msgid "Nov"
msgstr ""
#: mod/events.php:226
msgid "Dec"
msgstr ""
#: mod/events.php:227 include/text.php:1271
msgid "January"
msgstr "Januari"
#: mod/events.php:228 include/text.php:1271
msgid "February"
msgstr "Februari"
#: mod/events.php:229 include/text.php:1271
msgid "March"
msgstr "Maart"
#: mod/events.php:230 include/text.php:1271
msgid "April"
msgstr "April"
#: mod/events.php:232 include/text.php:1271
msgid "June"
msgstr "Juni"
#: mod/events.php:233 include/text.php:1271
msgid "July"
msgstr "Juli"
#: mod/events.php:234 include/text.php:1271
msgid "August"
msgstr "Augustus"
#: mod/events.php:235 include/text.php:1271
msgid "September"
msgstr "September"
#: mod/events.php:236 include/text.php:1271
msgid "October"
msgstr "Oktober"
#: mod/events.php:237 include/text.php:1271
msgid "November"
msgstr "November"
#: mod/events.php:238 include/text.php:1271
msgid "December"
msgstr "December"
#: mod/events.php:239
msgid "today"
msgstr ""
#: mod/events.php:240 include/datetime.php:288
msgid "month"
msgstr "maand"
#: mod/events.php:241 include/datetime.php:289
msgid "week"
msgstr "week"
#: mod/events.php:242 include/datetime.php:290
msgid "day"
msgstr "dag"
#: mod/events.php:377
msgid "l, F j"
msgstr "l j F"
#: mod/events.php:399
msgid "Edit event"
msgstr "Gebeurtenis bewerken"
#: mod/events.php:421 include/text.php:1714 include/text.php:1721
msgid "link to source"
msgstr "Verwijzing naar bron"
#: mod/events.php:456 include/identity.php:669 include/nav.php:79
#: include/nav.php:140 view/theme/diabook/theme.php:127
msgid "Events"
msgstr "Gebeurtenissen"
#: mod/events.php:457
msgid "Create New Event"
msgstr "Maak een nieuwe gebeurtenis"
#: mod/events.php:458
msgid "Previous"
msgstr "Vorige"
#: mod/events.php:459 mod/install.php:212
msgid "Next"
msgstr "Volgende"
#: mod/events.php:554
msgid "Event details"
msgstr "Gebeurtenis details"
#: mod/events.php:555
msgid "Starting date and Title are required."
msgstr ""
#: mod/events.php:556
msgid "Event Starts:"
msgstr "Gebeurtenis begint:"
#: mod/events.php:556 mod/events.php:568
msgid "Required"
msgstr "Vereist"
#: mod/events.php:558
msgid "Finish date/time is not known or not relevant"
msgstr "Einddatum/tijd is niet gekend of niet relevant"
#: mod/events.php:560
msgid "Event Finishes:"
msgstr "Gebeurtenis eindigt:"
#: mod/events.php:562
msgid "Adjust for viewer timezone"
msgstr "Pas aan aan de tijdzone van de gebruiker"
#: mod/events.php:564
msgid "Description:"
msgstr "Beschrijving:"
#: mod/events.php:568
msgid "Title:"
msgstr "Titel:"
#: mod/events.php:570
msgid "Share this event"
msgstr "Deel deze gebeurtenis"
#: mod/events.php:572 mod/content.php:721 mod/editpost.php:144
#: mod/photos.php:1623 mod/photos.php:1671 mod/photos.php:1759
#: object/Item.php:719 include/conversation.php:1217
msgid "Preview"
msgstr "Voorvertoning"
#: mod/credits.php:16
msgid "Credits"
msgstr ""
#: mod/credits.php:17
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr ""
#: mod/content.php:439 mod/content.php:742 mod/photos.php:1714
#: object/Item.php:133 include/conversation.php:634
msgid "Select"
msgstr "Kies"
#: mod/content.php:473 mod/content.php:854 mod/content.php:855
#: object/Item.php:357 object/Item.php:358 include/conversation.php:675
#, php-format
msgid "View %s's profile @ %s"
msgstr "Bekijk het profiel van %s @ %s"
#: mod/content.php:483 mod/content.php:866 object/Item.php:371
#: include/conversation.php:695
#, php-format
msgid "%s from %s"
msgstr "%s van %s"
#: mod/content.php:499 include/conversation.php:711
msgid "View in context"
msgstr "In context bekijken"
#: mod/content.php:605 object/Item.php:419
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d reactie"
msgstr[1] "%d reacties"
#: mod/content.php:607 object/Item.php:421 object/Item.php:434
#: include/text.php:1992
msgid "comment"
msgid_plural "comments"
msgstr[0] "reactie"
msgstr[1] "reacties"
#: mod/content.php:608 boot.php:773 object/Item.php:422
#: include/contact_widgets.php:205 include/items.php:5214
msgid "show more"
msgstr "toon meer"
#: mod/content.php:622 mod/photos.php:1410 object/Item.php:117
msgid "Private Message"
msgstr "Privébericht"
#: mod/content.php:686 mod/photos.php:1599 object/Item.php:253
msgid "I like this (toggle)"
msgstr "Vind ik leuk"
#: mod/content.php:686 object/Item.php:253
msgid "like"
msgstr "leuk"
#: mod/content.php:687 mod/photos.php:1600 object/Item.php:254
msgid "I don't like this (toggle)"
msgstr "Vind ik niet leuk"
#: mod/content.php:687 object/Item.php:254
msgid "dislike"
msgstr "niet leuk"
#: mod/content.php:689 object/Item.php:256
msgid "Share this"
msgstr "Delen"
#: mod/content.php:689 object/Item.php:256
msgid "share"
msgstr "Delen"
#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1667
#: mod/photos.php:1755 object/Item.php:707
msgid "This is you"
msgstr "Dit ben jij"
#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1669
#: mod/photos.php:1757 boot.php:772 object/Item.php:393 object/Item.php:709
msgid "Comment"
msgstr "Reacties"
#: mod/content.php:713 object/Item.php:711
msgid "Bold"
msgstr "Vet"
#: mod/content.php:714 object/Item.php:712
msgid "Italic"
msgstr "Cursief"
#: mod/content.php:715 object/Item.php:713
msgid "Underline"
msgstr "Onderstrepen"
#: mod/content.php:716 object/Item.php:714
msgid "Quote"
msgstr "Citeren"
#: mod/content.php:717 object/Item.php:715
msgid "Code"
msgstr "Broncode"
#: mod/content.php:718 object/Item.php:716
msgid "Image"
msgstr "Afbeelding"
#: mod/content.php:719 object/Item.php:717
msgid "Link"
msgstr "Link"
#: mod/content.php:720 object/Item.php:718
msgid "Video"
msgstr "Video"
#: mod/content.php:730 mod/settings.php:710 object/Item.php:122
#: object/Item.php:124
msgid "Edit"
msgstr "Bewerken"
#: mod/content.php:755 object/Item.php:217
msgid "add star"
msgstr "ster toevoegen"
#: mod/content.php:756 object/Item.php:218
msgid "remove star"
msgstr "ster verwijderen"
#: mod/content.php:757 object/Item.php:219
msgid "toggle star status"
msgstr "ster toevoegen of verwijderen"
#: mod/content.php:760 object/Item.php:222
msgid "starred"
msgstr "met ster"
#: mod/content.php:761 object/Item.php:242
msgid "add tag"
msgstr "label toevoegen"
#: mod/content.php:765 object/Item.php:137
msgid "save to folder"
msgstr "Bewaren in map"
#: mod/content.php:856 object/Item.php:359
msgid "to"
msgstr "aan"
#: mod/content.php:857 object/Item.php:361
msgid "Wall-to-Wall"
msgstr "wall-to-wall"
#: mod/content.php:858 object/Item.php:362
msgid "via Wall-To-Wall:"
msgstr "via wall-to-wall"
#: mod/removeme.php:46 mod/removeme.php:49
msgid "Remove My Account"
msgstr "Verwijder mijn account"
#: mod/removeme.php:47
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."
#: mod/removeme.php:48
msgid "Please enter your password for verification:"
msgstr "Voer je wachtwoord in voor verificatie:"
#: mod/install.php:120
msgid "Friendica Communications Server - Setup"
msgstr ""
#: mod/install.php:126
msgid "Could not connect to database."
msgstr "Kon geen toegang krijgen tot de database."
#: mod/install.php:130
msgid "Could not create table."
msgstr "Kon tabel niet aanmaken."
#: mod/install.php:136
msgid "Your Friendica site database has been installed."
msgstr "De database van je Friendica-website is geïnstalleerd."
#: mod/install.php:141
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql."
#: mod/install.php:142 mod/install.php:211 mod/install.php:569
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Zie het bestand \"INSTALL.txt\"."
#: mod/install.php:154
msgid "Database already in use."
msgstr ""
#: mod/install.php:208
msgid "System check"
msgstr "Systeemcontrole"
#: mod/install.php:213
msgid "Check again"
msgstr "Controleer opnieuw"
#: mod/install.php:232
msgid "Database connection"
msgstr "Verbinding met database"
#: mod/install.php:233
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken."
#: mod/install.php:234
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. "
#: mod/install.php:235
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat."
#: mod/install.php:239
msgid "Database Server Name"
msgstr "Servernaam database"
#: mod/install.php:240
msgid "Database Login Name"
msgstr "Gebruikersnaam database"
#: mod/install.php:241
msgid "Database Login Password"
msgstr "Wachtwoord database"
#: mod/install.php:242
msgid "Database Name"
msgstr "Naam database"
#: mod/install.php:243 mod/install.php:282
msgid "Site administrator email address"
msgstr "E-mailadres van de websitebeheerder"
#: mod/install.php:243 mod/install.php:282
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."
#: mod/install.php:247 mod/install.php:285
msgid "Please select a default timezone for your website"
msgstr "Selecteer een standaard tijdzone voor uw website"
#: mod/install.php:272
msgid "Site settings"
msgstr "Website-instellingen"
#: mod/install.php:326
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver."
#: mod/install.php:327
msgid ""
"If you don't have a command line version of PHP installed on server, you "
"will not be able to run background polling via cron. See <a "
"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
"up-the-poller'>'Setup the poller'</a>"
msgstr ""
#: mod/install.php:331
msgid "PHP executable path"
msgstr "PATH van het PHP commando"
#: mod/install.php:331
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten."
#: mod/install.php:336
msgid "Command line PHP"
msgstr "PHP-opdrachtregel"
#: mod/install.php:345
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
msgstr ""
#: mod/install.php:346
msgid "Found PHP version: "
msgstr "Gevonden PHP versie:"
#: mod/install.php:348
msgid "PHP cli binary"
msgstr ""
#: mod/install.php:359
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd."
#: mod/install.php:360
msgid "This is required for message delivery to work."
msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken."
#: mod/install.php:362
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
#: mod/install.php:383
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr ""
#: mod/install.php:384
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait."
#: mod/install.php:386
msgid "Generate encryption keys"
msgstr ""
#: mod/install.php:393
msgid "libCurl PHP module"
msgstr "libCurl PHP module"
#: mod/install.php:394
msgid "GD graphics PHP module"
msgstr "GD graphics PHP module"
#: mod/install.php:395
msgid "OpenSSL PHP module"
msgstr "OpenSSL PHP module"
#: mod/install.php:396
msgid "mysqli PHP module"
msgstr "mysqli PHP module"
#: mod/install.php:397
msgid "mb_string PHP module"
msgstr "mb_string PHP module"
#: mod/install.php:398
msgid "mcrypt PHP module"
msgstr ""
#: mod/install.php:403 mod/install.php:405
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite module"
#: mod/install.php:403
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd."
#: mod/install.php:411
msgid "Error: libCURL PHP module required but not installed."
msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd."
#: mod/install.php:415
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd."
#: mod/install.php:419
msgid "Error: openssl PHP module required but not installed."
msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd."
#: mod/install.php:423
msgid "Error: mysqli PHP module required but not installed."
msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd."
#: mod/install.php:427
msgid "Error: mb_string PHP module required but not installed."
msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd."
#: mod/install.php:431
msgid "Error: mcrypt PHP module required but not installed."
msgstr ""
#: mod/install.php:443
msgid ""
"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
"encryption layer."
msgstr ""
#: mod/install.php:445
msgid "mcrypt_create_iv() function"
msgstr ""
#: mod/install.php:461
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen."
#: mod/install.php:462
msgid ""
"This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can."
msgstr "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel."
#: mod/install.php:463
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map."
#: mod/install.php:464
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies."
#: mod/install.php:467
msgid ".htconfig.php is writable"
msgstr ".htconfig.php is schrijfbaar"
#: mod/install.php:477
msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen."
#: mod/install.php:478
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/smarty3/ under the Friendica top level "
"folder."
msgstr "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie."
#: mod/install.php:479
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map."
#: mod/install.php:480
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/smarty3/ only--not the template files (.tpl) that it contains."
msgstr "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten."
#: mod/install.php:483
msgid "view/smarty3 is writable"
msgstr "view/smarty3 is schrijfbaar"
#: mod/install.php:499
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr ""
#: mod/install.php:501
msgid "Url rewrite is working"
msgstr ""
#: mod/install.php:518
msgid "ImageMagick PHP extension is installed"
msgstr ""
#: mod/install.php:520
msgid "ImageMagick supports GIF"
msgstr ""
#: mod/install.php:528
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver."
#: mod/install.php:567
msgid "<h1>What next</h1>"
msgstr "<h1>Wat nu</h1>"
#: mod/install.php:568
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller."
#: mod/wallmessage.php:42 mod/wallmessage.php:112
#, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr ""
#: mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr "Niet in staat om je tijdlijn-locatie vast te stellen"
#: mod/wallmessage.php:86 mod/wallmessage.php:95
msgid "No recipient."
msgstr "Geen ontvanger."
#: mod/wallmessage.php:143
#, php-format
msgid ""
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
msgstr "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."
#: mod/help.php:31
msgid "Help:"
msgstr "Help:"
#: mod/help.php:36 include/nav.php:113 view/theme/vier/theme.php:273
msgid "Help"
msgstr "Help"
#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269
msgid "Not Found"
msgstr "Niet gevonden"
#: mod/help.php:45 index.php:272
msgid "Page not found."
msgstr "Pagina niet gevonden"
#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536
#, php-format
msgid "%1$s welcomes %2$s"
msgstr "%1$s heet %2$s van harte welkom"
#: mod/home.php:35
#, php-format
msgid "Welcome to %s"
msgstr "Welkom op %s"
#: mod/wall_attach.php:94
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
msgstr ""
#: mod/wall_attach.php:94
msgid "Or - did you try to upload an empty file?"
msgstr ""
#: mod/wall_attach.php:105
#, php-format
msgid "File exceeds size limit of %s"
msgstr ""
#: mod/wall_attach.php:156 mod/wall_attach.php:172
msgid "File upload failed."
msgstr "Uploaden van bestand mislukt."
#: mod/match.php:33
msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."
#: mod/match.php:83
msgid "is interested in:"
msgstr "Is geïnteresseerd in:"
#: mod/match.php:97
msgid "Profile Match"
msgstr "Profielmatch"
#: mod/share.php:38
msgid "link"
msgstr "link"
#: mod/community.php:23
msgid "Not available."
msgstr "Niet beschikbaar"
#: mod/community.php:32 include/nav.php:136 include/nav.php:138
#: view/theme/diabook/theme.php:129
msgid "Community"
msgstr "Website"
#: mod/community.php:62 mod/community.php:71 mod/search.php:218
msgid "No results."
msgstr "Geen resultaten."
#: mod/settings.php:34 mod/photos.php:109
msgid "everybody"
msgstr "iedereen"
#: mod/settings.php:47
msgid "Additional features"
msgstr "Extra functies"
#: mod/settings.php:53
msgid "Display"
msgstr "Weergave"
#: mod/settings.php:60 mod/settings.php:853
msgid "Social Networks"
msgstr "Sociale netwerken"
#: mod/settings.php:72 include/nav.php:180
msgid "Delegations"
msgstr ""
#: mod/settings.php:78
msgid "Connected apps"
msgstr "Verbonden applicaties"
#: mod/settings.php:84 mod/uexport.php:85
msgid "Export personal data"
msgstr "Persoonlijke gegevens exporteren"
#: mod/settings.php:90
msgid "Remove account"
msgstr "Account verwijderen"
#: mod/settings.php:143
msgid "Missing some important data!"
msgstr "Een belangrijk gegeven ontbreekt!"
#: mod/settings.php:256
msgid "Failed to connect with email account using the settings provided."
msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen."
#: mod/settings.php:261
msgid "Email settings updated."
msgstr "E-mail instellingen bijgewerkt.."
#: mod/settings.php:276
msgid "Features updated"
msgstr "Functies bijgewerkt"
#: mod/settings.php:341
msgid "Relocate message has been send to your contacts"
msgstr ""
#: mod/settings.php:355 include/user.php:39
msgid "Passwords do not match. Password unchanged."
msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."
#: mod/settings.php:360
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd."
#: mod/settings.php:368
msgid "Wrong password."
msgstr "Verkeerd wachtwoord."
#: mod/settings.php:379
msgid "Password changed."
msgstr "Wachtwoord gewijzigd."
#: mod/settings.php:381
msgid "Password update failed. Please try again."
msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw."
#: mod/settings.php:450
msgid " Please use a shorter name."
msgstr "Gebruik een kortere naam."
#: mod/settings.php:452
msgid " Name too short."
msgstr "Naam te kort."
#: mod/settings.php:461
msgid "Wrong Password"
msgstr "Verkeerd wachtwoord"
#: mod/settings.php:466
msgid " Not valid email."
msgstr "Geen geldig e-mailadres."
#: mod/settings.php:472
msgid " Cannot change to that email."
msgstr "Kan niet veranderen naar die e-mail."
#: mod/settings.php:528
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt."
#: mod/settings.php:532
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep."
#: mod/settings.php:571
msgid "Settings updated."
msgstr "Instellingen bijgewerkt."
#: mod/settings.php:647 mod/settings.php:673 mod/settings.php:709
msgid "Add application"
msgstr "Toepassing toevoegen"
#: mod/settings.php:651 mod/settings.php:677
msgid "Consumer Key"
msgstr "Gebruikerssleutel"
#: mod/settings.php:652 mod/settings.php:678
msgid "Consumer Secret"
msgstr "Gebruikersgeheim"
#: mod/settings.php:653 mod/settings.php:679
msgid "Redirect"
msgstr "Doorverwijzing"
#: mod/settings.php:654 mod/settings.php:680
msgid "Icon url"
msgstr "URL pictogram"
#: mod/settings.php:665
msgid "You can't edit this application."
msgstr "Je kunt deze toepassing niet wijzigen."
#: mod/settings.php:708
msgid "Connected Apps"
msgstr "Verbonden applicaties"
#: mod/settings.php:712
msgid "Client key starts with"
msgstr ""
#: mod/settings.php:713
msgid "No name"
msgstr "Geen naam"
#: mod/settings.php:714
msgid "Remove authorization"
msgstr "Verwijder authorisatie"
#: mod/settings.php:726
msgid "No Plugin settings configured"
msgstr ""
#: mod/settings.php:734
msgid "Plugin Settings"
msgstr "Plugin Instellingen"
#: mod/settings.php:748
msgid "Off"
msgstr "Uit"
#: mod/settings.php:748
msgid "On"
msgstr "Aan"
#: mod/settings.php:756
msgid "Additional Features"
msgstr "Extra functies"
#: mod/settings.php:766 mod/settings.php:770
msgid "General Social Media Settings"
msgstr ""
#: mod/settings.php:776
msgid "Disable intelligent shortening"
msgstr ""
#: mod/settings.php:778
msgid ""
"Normally the system tries to find the best link to add to shortened posts. "
"If this option is enabled then every shortened post will always point to the"
" original friendica post."
msgstr ""
#: mod/settings.php:784
msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
msgstr ""
#: mod/settings.php:786
msgid ""
"If you receive a message from an unknown OStatus user, this option decides "
"what to do. If it is checked, a new contact will be created for every "
"unknown user."
msgstr ""
#: mod/settings.php:795
msgid "Your legacy GNU Social account"
msgstr ""
#: mod/settings.php:797
msgid ""
"If you enter your old GNU Social/Statusnet account name here (in the format "
"user@domain.tld), your contacts will be added automatically. The field will "
"be emptied when done."
msgstr ""
#: mod/settings.php:800
msgid "Repair OStatus subscriptions"
msgstr ""
#: mod/settings.php:809 mod/settings.php:810
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s"
#: mod/settings.php:809 mod/dfrn_request.php:856
#: include/contact_selectors.php:80
msgid "Diaspora"
msgstr "Diaspora"
#: mod/settings.php:809 mod/settings.php:810
msgid "enabled"
msgstr "ingeschakeld"
#: mod/settings.php:809 mod/settings.php:810
msgid "disabled"
msgstr "uitgeschakeld"
#: mod/settings.php:810
msgid "GNU Social (OStatus)"
msgstr ""
#: mod/settings.php:846
msgid "Email access is disabled on this site."
msgstr "E-mailtoegang is op deze website uitgeschakeld."
#: mod/settings.php:858
msgid "Email/Mailbox Setup"
msgstr "E-mail Instellen"
#: mod/settings.php:859
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken."
#: mod/settings.php:860
msgid "Last successful email check:"
msgstr "Laatste succesvolle e-mail controle:"
#: mod/settings.php:862
msgid "IMAP server name:"
msgstr "IMAP server naam:"
#: mod/settings.php:863
msgid "IMAP port:"
msgstr "IMAP poort:"
#: mod/settings.php:864
msgid "Security:"
msgstr "Beveiliging:"
#: mod/settings.php:864 mod/settings.php:869
msgid "None"
msgstr "Geen"
#: mod/settings.php:865
msgid "Email login name:"
msgstr "E-mail login naam:"
#: mod/settings.php:866
msgid "Email password:"
msgstr "E-mail wachtwoord:"
#: mod/settings.php:867
msgid "Reply-to address:"
msgstr "Antwoord adres:"
#: mod/settings.php:868
msgid "Send public posts to all email contacts:"
msgstr "Openbare posts naar alle e-mail contacten versturen:"
#: mod/settings.php:869
msgid "Action after import:"
msgstr "Actie na importeren:"
#: mod/settings.php:869
msgid "Mark as seen"
msgstr "Als 'gelezen' markeren"
#: mod/settings.php:869
msgid "Move to folder"
msgstr "Naar map verplaatsen"
#: mod/settings.php:870
msgid "Move to folder:"
msgstr "Verplaatsen naar map:"
#: mod/settings.php:955
msgid "Display Settings"
msgstr "Scherminstellingen"
#: mod/settings.php:961 mod/settings.php:979
msgid "Display Theme:"
msgstr "Schermthema:"
#: mod/settings.php:962
msgid "Mobile Theme:"
msgstr "Mobiel thema:"
#: mod/settings.php:963
msgid "Update browser every xx seconds"
msgstr "Browser elke xx seconden verversen"
#: mod/settings.php:963
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimum 10 seconden, geen maximum"
#: mod/settings.php:964
msgid "Number of items to display per page:"
msgstr "Aantal items te tonen per pagina:"
#: mod/settings.php:964 mod/settings.php:965
msgid "Maximum of 100 items"
msgstr "Maximum 100 items"
#: mod/settings.php:965
msgid "Number of items to display per page when viewed from mobile device:"
msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:"
#: mod/settings.php:966
msgid "Don't show emoticons"
msgstr "Emoticons niet tonen"
#: mod/settings.php:967
msgid "Calendar"
msgstr ""
#: mod/settings.php:968
msgid "Beginning of week:"
msgstr ""
#: mod/settings.php:969
msgid "Don't show notices"
msgstr ""
#: mod/settings.php:970
msgid "Infinite scroll"
msgstr "Oneindig scrollen"
#: mod/settings.php:971
msgid "Automatic updates only at the top of the network page"
msgstr ""
#: mod/settings.php:973 view/theme/cleanzero/config.php:82
#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66
#: view/theme/diabook/config.php:150 view/theme/vier/config.php:109
#: view/theme/duepuntozero/config.php:61
msgid "Theme settings"
msgstr "Thema-instellingen"
#: mod/settings.php:1050
msgid "User Types"
msgstr "Gebruikerstypes"
#: mod/settings.php:1051
msgid "Community Types"
msgstr "Forum/groepstypes"
#: mod/settings.php:1052
msgid "Normal Account Page"
msgstr "Normale accountpagina"
#: mod/settings.php:1053
msgid "This account is a normal personal profile"
msgstr "Deze account is een normaal persoonlijk profiel"
#: mod/settings.php:1056
msgid "Soapbox Page"
msgstr "Zeepkist-pagina"
#: mod/settings.php:1057
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen."
#: mod/settings.php:1060
msgid "Community Forum/Celebrity Account"
msgstr "Forum/groeps- of beroemdheid-account"
#: mod/settings.php:1061
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven."
#: mod/settings.php:1064
msgid "Automatic Friend Page"
msgstr "Automatisch Vriendschapspagina"
#: mod/settings.php:1065
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden."
#: mod/settings.php:1068
msgid "Private Forum [Experimental]"
msgstr "Privé-forum [experimenteel]"
#: mod/settings.php:1069
msgid "Private forum - approved members only"
msgstr "Privé-forum - enkel voor goedgekeurde leden"
#: mod/settings.php:1081
msgid "OpenID:"
msgstr "OpenID:"
#: mod/settings.php:1081
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."
#: mod/settings.php:1091
msgid "Publish your default profile in your local site directory?"
msgstr "Je standaardprofiel in je lokale gids publiceren?"
#: mod/settings.php:1097
msgid "Publish your default profile in the global social directory?"
msgstr "Je standaardprofiel in de globale sociale gids publiceren?"
#: mod/settings.php:1105
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"
#: mod/settings.php:1109 include/acl_selectors.php:330
msgid "Hide your profile details from unknown viewers?"
msgstr "Je profieldetails verbergen voor onbekende bezoekers?"
#: mod/settings.php:1109
msgid ""
"If enabled, posting public messages to Diaspora and other networks isn't "
"possible."
msgstr ""
#: mod/settings.php:1114
msgid "Allow friends to post to your profile page?"
msgstr "Vrienden toestaan om op jou profielpagina te posten?"
#: mod/settings.php:1120
msgid "Allow friends to tag your posts?"
msgstr "Sta vrienden toe om jouw berichten te labelen?"
#: mod/settings.php:1126
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?"
#: mod/settings.php:1132
msgid "Permit unknown people to send you private mail?"
msgstr "Mogen onbekende personen jou privé berichten sturen?"
#: mod/settings.php:1140
msgid "Profile is <strong>not published</strong>."
msgstr "Profiel is <strong>niet gepubliceerd</strong>."
#: mod/settings.php:1148
#, php-format
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
msgstr ""
#: mod/settings.php:1155
msgid "Automatically expire posts after this many days:"
msgstr "Laat berichten automatisch vervallen na zo veel dagen:"
#: mod/settings.php:1155
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."
#: mod/settings.php:1156
msgid "Advanced expiration settings"
msgstr "Geavanceerde instellingen voor vervallen"
#: mod/settings.php:1157
msgid "Advanced Expiration"
msgstr "Geavanceerd Verval:"
#: mod/settings.php:1158
msgid "Expire posts:"
msgstr "Laat berichten vervallen:"
#: mod/settings.php:1159
msgid "Expire personal notes:"
msgstr "Laat persoonlijke aantekeningen verlopen:"
#: mod/settings.php:1160
msgid "Expire starred posts:"
msgstr "Laat berichten met ster verlopen"
#: mod/settings.php:1161
msgid "Expire photos:"
msgstr "Laat foto's vervallen:"
#: mod/settings.php:1162
msgid "Only expire posts by others:"
msgstr "Laat alleen berichten door anderen vervallen:"
#: mod/settings.php:1190
msgid "Account Settings"
msgstr "Account Instellingen"
#: mod/settings.php:1198
msgid "Password Settings"
msgstr "Wachtwoord Instellingen"
#: mod/settings.php:1199 mod/register.php:271
msgid "New Password:"
msgstr "Nieuw Wachtwoord:"
#: mod/settings.php:1200 mod/register.php:272
msgid "Confirm:"
msgstr "Bevestig:"
#: mod/settings.php:1200
msgid "Leave password fields blank unless changing"
msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"
#: mod/settings.php:1201
msgid "Current Password:"
msgstr "Huidig wachtwoord:"
#: mod/settings.php:1201 mod/settings.php:1202
msgid "Your current password to confirm the changes"
msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen"
#: mod/settings.php:1202
msgid "Password:"
msgstr "Wachtwoord:"
#: mod/settings.php:1206
msgid "Basic Settings"
msgstr "Basis Instellingen"
#: mod/settings.php:1207 include/identity.php:539
msgid "Full Name:"
msgstr "Volledige Naam:"
#: mod/settings.php:1208
msgid "Email Address:"
msgstr "E-mailadres:"
#: mod/settings.php:1209
msgid "Your Timezone:"
msgstr "Je Tijdzone:"
#: mod/settings.php:1210
msgid "Your Language:"
msgstr ""
#: mod/settings.php:1210
msgid ""
"Set the language we use to show you friendica interface and to send you "
"emails"
msgstr ""
#: mod/settings.php:1211
msgid "Default Post Location:"
msgstr "Standaard locatie:"
#: mod/settings.php:1212
msgid "Use Browser Location:"
msgstr "Gebruik Webbrowser Locatie:"
#: mod/settings.php:1215
msgid "Security and Privacy Settings"
msgstr "Instellingen voor Beveiliging en Privacy"
#: mod/settings.php:1217
msgid "Maximum Friend Requests/Day:"
msgstr "Maximum aantal vriendschapsverzoeken per dag:"
#: mod/settings.php:1217 mod/settings.php:1247
msgid "(to prevent spam abuse)"
msgstr "(om spam misbruik te voorkomen)"
#: mod/settings.php:1218
msgid "Default Post Permissions"
msgstr "Standaard rechten voor nieuwe berichten"
#: mod/settings.php:1219
msgid "(click to open/close)"
msgstr "(klik om te openen/sluiten)"
#: mod/settings.php:1228 mod/photos.php:1191 mod/photos.php:1576
msgid "Show to Groups"
msgstr "Tonen aan groepen"
#: mod/settings.php:1229 mod/photos.php:1192 mod/photos.php:1577
msgid "Show to Contacts"
msgstr "Tonen aan contacten"
#: mod/settings.php:1230
msgid "Default Private Post"
msgstr "Standaard Privé Post"
#: mod/settings.php:1231
msgid "Default Public Post"
msgstr "Standaard Publieke Post"
#: mod/settings.php:1235
msgid "Default Permissions for New Posts"
msgstr "Standaard rechten voor nieuwe berichten"
#: mod/settings.php:1247
msgid "Maximum private messages per day from unknown people:"
msgstr "Maximum aantal privé-berichten per dag van onbekende personen:"
#: mod/settings.php:1250
msgid "Notification Settings"
msgstr "Notificatie Instellingen"
#: mod/settings.php:1251
msgid "By default post a status message when:"
msgstr "Post automatisch een bericht op je tijdlijn wanneer:"
#: mod/settings.php:1252
msgid "accepting a friend request"
msgstr "Een vriendschapsverzoek accepteren"
#: mod/settings.php:1253
msgid "joining a forum/community"
msgstr "Lid worden van een groep/forum"
#: mod/settings.php:1254
msgid "making an <em>interesting</em> profile change"
msgstr "Een <em>interessante</em> verandering aan je profiel"
#: mod/settings.php:1255
msgid "Send a notification email when:"
msgstr "Stuur een notificatie e-mail wanneer:"
#: mod/settings.php:1256
msgid "You receive an introduction"
msgstr "Je ontvangt een vriendschaps- of connectieverzoek"
#: mod/settings.php:1257
msgid "Your introductions are confirmed"
msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"
#: mod/settings.php:1258
msgid "Someone writes on your profile wall"
msgstr "Iemand iets op je tijdlijn schrijft"
#: mod/settings.php:1259
msgid "Someone writes a followup comment"
msgstr "Iemand een reactie schrijft"
#: mod/settings.php:1260
msgid "You receive a private message"
msgstr "Je een privé-bericht ontvangt"
#: mod/settings.php:1261
msgid "You receive a friend suggestion"
msgstr "Je een suggestie voor een vriendschap ontvangt"
#: mod/settings.php:1262
msgid "You are tagged in a post"
msgstr "Je expliciet in een bericht bent genoemd"
#: mod/settings.php:1263
msgid "You are poked/prodded/etc. in a post"
msgstr "Je in een bericht bent aangestoten/gepord/etc."
#: mod/settings.php:1265
msgid "Activate desktop notifications"
msgstr ""
#: mod/settings.php:1265
msgid "Show desktop popup on new notifications"
msgstr ""
#: mod/settings.php:1267
msgid "Text-only notification emails"
msgstr ""
#: mod/settings.php:1269
msgid "Send text only notification emails, without the html part"
msgstr ""
#: mod/settings.php:1271
msgid "Advanced Account/Page Type Settings"
msgstr ""
#: mod/settings.php:1272
msgid "Change the behaviour of this account for special situations"
msgstr ""
#: mod/settings.php:1275
msgid "Relocate"
msgstr ""
#: mod/settings.php:1276
msgid ""
"If you have moved this profile from another server, and some of your "
"contacts don't receive your updates, try pushing this button."
msgstr ""
#: mod/settings.php:1277
msgid "Resend relocate message to contacts"
msgstr ""
#: mod/dfrn_request.php:95
msgid "This introduction has already been accepted."
msgstr "Verzoek is al goedgekeurd"
#: mod/dfrn_request.php:120 mod/dfrn_request.php:518
msgid "Profile location is not valid or does not contain profile information."
msgstr "Profiel is ongeldig of bevat geen informatie"
#: mod/dfrn_request.php:125 mod/dfrn_request.php:523
msgid "Warning: profile location has no identifiable owner name."
msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."
#: mod/dfrn_request.php:127 mod/dfrn_request.php:525
msgid "Warning: profile location has no profile photo."
msgstr "Waarschuwing: Profieladres heeft geen profielfoto."
#: mod/dfrn_request.php:130 mod/dfrn_request.php:528
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "De %d vereiste parameter is niet op het gegeven adres gevonden"
msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden"
#: mod/dfrn_request.php:172
msgid "Introduction complete."
msgstr "Verzoek voltooid."
#: mod/dfrn_request.php:214
msgid "Unrecoverable protocol error."
msgstr "Onherstelbare protocolfout. "
#: mod/dfrn_request.php:242
msgid "Profile unavailable."
msgstr "Profiel onbeschikbaar"
#: mod/dfrn_request.php:267
#, php-format
msgid "%s has received too many connection requests today."
msgstr "%s heeft te veel verzoeken gehad vandaag."
#: mod/dfrn_request.php:268
msgid "Spam protection measures have been invoked."
msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden."
#: mod/dfrn_request.php:269
msgid "Friends are advised to please try again in 24 hours."
msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen."
#: mod/dfrn_request.php:331
msgid "Invalid locator"
msgstr "Ongeldige plaatsbepaler"
#: mod/dfrn_request.php:340
msgid "Invalid email address."
msgstr "Geen geldig e-mailadres"
#: mod/dfrn_request.php:367
msgid "This account has not been configured for email. Request failed."
msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail."
#: mod/dfrn_request.php:463
msgid "Unable to resolve your name at the provided location."
msgstr "Ik kan jouw naam op het opgegeven adres niet vinden."
#: mod/dfrn_request.php:476
msgid "You have already introduced yourself here."
msgstr "Je hebt jezelf hier al voorgesteld."
#: mod/dfrn_request.php:480
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Blijkbaar bent u al bevriend met %s."
#: mod/dfrn_request.php:501
msgid "Invalid profile URL."
msgstr "Ongeldig profiel adres."
#: mod/dfrn_request.php:507 include/follow.php:72
msgid "Disallowed profile URL."
msgstr "Niet toegelaten profiel adres."
#: mod/dfrn_request.php:597
msgid "Your introduction has been sent."
msgstr "Je verzoek is verzonden."
#: mod/dfrn_request.php:650
msgid "Please login to confirm introduction."
msgstr "Log in om je verzoek te bevestigen."
#: mod/dfrn_request.php:660
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Je huidige identiteit is niet de juiste. Log met <strong>dit</strong> profiel in."
#: mod/dfrn_request.php:674 mod/dfrn_request.php:691
msgid "Confirm"
msgstr "Bevestig"
#: mod/dfrn_request.php:686
msgid "Hide this contact"
msgstr "Verberg dit contact"
#: mod/dfrn_request.php:689
#, php-format
msgid "Welcome home %s."
msgstr "Welkom terug %s."
#: mod/dfrn_request.php:690
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s."
#: mod/dfrn_request.php:819
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"
#: mod/dfrn_request.php:840
#, php-format
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
"join us today</a>."
msgstr ""
#: mod/dfrn_request.php:845
msgid "Friend/Connection Request"
msgstr "Vriendschaps-/connectieverzoek"
#: mod/dfrn_request.php:846
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
#: mod/dfrn_request.php:854 include/contact_selectors.php:76
msgid "Friendica"
msgstr "Friendica"
#: mod/dfrn_request.php:855
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Gefedereerde Sociale Web"
#: mod/dfrn_request.php:857
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk."
#: mod/register.php:92
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."
#: mod/register.php:97
#, php-format
msgid ""
"Failed to send email message. Here your accout details:<br> login: %s<br> "
"password: %s<br><br>You can change your password after login."
msgstr ""
#: mod/register.php:107
msgid "Your registration can not be processed."
msgstr "Je registratie kan niet verwerkt worden."
#: mod/register.php:150
msgid "Your registration is pending approval by the site owner."
msgstr "Jouw registratie wacht op goedkeuring van de beheerder."
#: mod/register.php:188 mod/uimport.php:50
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."
#: mod/register.php:216
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."
#: mod/register.php:217
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."
#: mod/register.php:218
msgid "Your OpenID (optional): "
msgstr "Je OpenID (optioneel):"
#: mod/register.php:232
msgid "Include your profile in member directory?"
msgstr "Je profiel in de ledengids opnemen?"
#: mod/register.php:256
msgid "Membership on this site is by invitation only."
msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging."
#: mod/register.php:257
msgid "Your invitation ID: "
msgstr "Je uitnodigingsid:"
#: mod/register.php:268
msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
msgstr ""
#: mod/register.php:269
msgid "Your Email Address: "
msgstr "Je email adres:"
#: mod/register.php:271
msgid "Leave empty for an auto generated password."
msgstr ""
#: mod/register.php:273
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@$sitename</strong>' zijn."
#: mod/register.php:274
msgid "Choose a nickname: "
msgstr "Kies een bijnaam:"
#: mod/register.php:277 boot.php:1256 include/nav.php:108
msgid "Register"
msgstr "Registreer"
#: mod/register.php:283 mod/uimport.php:64
msgid "Import"
msgstr "Importeren"
#: mod/register.php:284
msgid "Import your profile to this friendica instance"
msgstr ""
#: mod/maintenance.php:5
msgid "System down for maintenance"
msgstr "Systeem onbeschikbaar wegens onderhoud"
#: mod/search.php:100
msgid "Only logged in users are permitted to perform a search."
msgstr ""
#: mod/search.php:115
msgid "Too Many Requests"
msgstr ""
#: mod/search.php:116
msgid "Only one search per minute is permitted for not logged in users."
msgstr ""
#: mod/search.php:126 include/text.php:996 include/nav.php:118
msgid "Search"
msgstr "Zoeken"
#: mod/search.php:224
#, php-format
msgid "Items tagged with: %s"
msgstr ""
#: mod/search.php:226
#, php-format
msgid "Search results for: %s"
msgstr ""
#: mod/directory.php:116 mod/profiles.php:760
msgid "Age: "
msgstr "Leeftijd:"
#: mod/directory.php:119
msgid "Gender: "
msgstr "Geslacht:"
#: mod/directory.php:143 include/identity.php:273 include/identity.php:561
msgid "Status:"
msgstr "Tijdlijn:"
#: mod/directory.php:145 include/identity.php:275 include/identity.php:572
msgid "Homepage:"
msgstr "Website:"
#: mod/directory.php:195 view/theme/diabook/theme.php:525
#: view/theme/vier/theme.php:191
msgid "Global Directory"
msgstr "Globale gids"
#: mod/directory.php:197
msgid "Find on this site"
msgstr "Op deze website zoeken"
#: mod/directory.php:199
msgid "Finding:"
msgstr ""
#: mod/directory.php:201
msgid "Site Directory"
msgstr "Websitegids"
#: mod/directory.php:208
msgid "No entries (some entries may be hidden)."
msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)."
#: mod/delegate.php:101
msgid "No potential page delegates located."
msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."
#: mod/delegate.php:130 include/nav.php:180
msgid "Delegate Page Management"
msgstr "Paginabeheer uitbesteden"
#: mod/delegate.php:132
msgid ""
"Delegates are able to manage all aspects of this account/page except for "
"basic account settings. Please do not delegate your personal account to "
"anybody that you do not trust completely."
msgstr "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."
#: mod/delegate.php:133
msgid "Existing Page Managers"
msgstr "Bestaande paginabeheerders"
#: mod/delegate.php:135
msgid "Existing Page Delegates"
msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed"
#: mod/delegate.php:137
msgid "Potential Delegates"
msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "
#: mod/delegate.php:140
msgid "Add"
msgstr "Toevoegen"
#: mod/delegate.php:141
msgid "No entries."
msgstr "Geen gegevens."
#: mod/common.php:85
msgid "No contacts in common."
msgstr "Geen gedeelde contacten."
#: mod/common.php:133
msgid "Common Friends"
msgstr "Gedeelde Vrienden"
#: mod/uexport.php:77
msgid "Export account"
msgstr "Account exporteren"
#: mod/uexport.php:77
msgid ""
"Export your account info and contacts. Use this to make a backup of your "
"account and/or to move it to another server."
msgstr "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."
#: mod/uexport.php:78
msgid "Export all"
msgstr "Alles exporteren"
#: mod/uexport.php:78
msgid ""
"Export your accout info, contacts and all your items as json. Could be a "
"very big file, and could take a lot of time. Use this to make a full backup "
"of your account (photos are not exported)"
msgstr "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"
#: mod/mood.php:62 include/conversation.php:239
#, php-format
msgid "%1$s is currently %2$s"
msgstr "%1$s is op dit moment %2$s"
#: mod/mood.php:133
msgid "Mood"
msgstr "Stemming"
#: mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr "Stel je huidige stemming in, en vertel het je vrienden"
#: mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr "Wil je echt dit voorstel verwijderen?"
#: mod/suggest.php:71
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."
#: mod/suggest.php:83 mod/suggest.php:100
msgid "Ignore/Hide"
msgstr "Negeren/Verbergen"
#: mod/suggest.php:110 include/contact_widgets.php:35
#: view/theme/diabook/theme.php:527 view/theme/vier/theme.php:193
msgid "Friend Suggestions"
msgstr "Vriendschapsvoorstellen"
#: mod/profiles.php:37
msgid "Profile deleted."
msgstr "Profiel verwijderd"
#: mod/profiles.php:55 mod/profiles.php:89
msgid "Profile-"
msgstr "Profiel-"
#: mod/profiles.php:74 mod/profiles.php:117
msgid "New profile created."
msgstr "Nieuw profiel aangemaakt."
#: mod/profiles.php:95
msgid "Profile unavailable to clone."
msgstr "Profiel niet beschikbaar om te klonen."
#: mod/profiles.php:189
msgid "Profile Name is required."
msgstr "Profielnaam is vereist."
#: mod/profiles.php:336
msgid "Marital Status"
msgstr "Echtelijke staat"
#: mod/profiles.php:340
msgid "Romantic Partner"
msgstr "Romantische Partner"
#: mod/profiles.php:344 mod/photos.php:1639 include/conversation.php:508
msgid "Likes"
msgstr "Houdt van"
#: mod/profiles.php:348 mod/photos.php:1639 include/conversation.php:508
msgid "Dislikes"
msgstr "Houdt niet van"
#: mod/profiles.php:352
msgid "Work/Employment"
msgstr "Werk"
#: mod/profiles.php:355
msgid "Religion"
msgstr "Godsdienst"
#: mod/profiles.php:359
msgid "Political Views"
msgstr "Politieke standpunten"
#: mod/profiles.php:363
msgid "Gender"
msgstr "Geslacht"
#: mod/profiles.php:367
msgid "Sexual Preference"
msgstr "Seksuele Voorkeur"
#: mod/profiles.php:371
msgid "Homepage"
msgstr "Tijdlijn"
#: mod/profiles.php:375 mod/profiles.php:708
msgid "Interests"
msgstr "Interesses"
#: mod/profiles.php:379
msgid "Address"
msgstr "Adres"
#: mod/profiles.php:386 mod/profiles.php:704
msgid "Location"
msgstr "Plaats"
#: mod/profiles.php:469
msgid "Profile updated."
msgstr "Profiel bijgewerkt."
#: mod/profiles.php:565
msgid " and "
msgstr "en"
#: mod/profiles.php:573
msgid "public profile"
msgstr "publiek profiel"
#: mod/profiles.php:576
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr "%1$s veranderde %2$s naar &ldquo;%3$s&rdquo;"
#: mod/profiles.php:577
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr " - Bezoek %2$s van %1$s"
#: mod/profiles.php:580
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd."
#: mod/profiles.php:655
msgid "Hide contacts and friends:"
msgstr ""
#: mod/profiles.php:660
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?"
#: mod/profiles.php:684
msgid "Show more profile fields:"
msgstr ""
#: mod/profiles.php:695
msgid "Edit Profile Details"
msgstr "Profieldetails bewerken"
#: mod/profiles.php:697
msgid "Change Profile Photo"
msgstr "Profielfoto wijzigen"
#: mod/profiles.php:698
msgid "View this profile"
msgstr "Dit profiel bekijken"
#: mod/profiles.php:699
msgid "Create a new profile using these settings"
msgstr "Nieuw profiel aanmaken met deze instellingen"
#: mod/profiles.php:700
msgid "Clone this profile"
msgstr "Dit profiel klonen"
#: mod/profiles.php:701
msgid "Delete this profile"
msgstr "Dit profiel verwijderen"
#: mod/profiles.php:702
msgid "Basic information"
msgstr ""
#: mod/profiles.php:703
msgid "Profile picture"
msgstr ""
#: mod/profiles.php:705
msgid "Preferences"
msgstr ""
#: mod/profiles.php:706
msgid "Status information"
msgstr ""
#: mod/profiles.php:707
msgid "Additional information"
msgstr ""
#: mod/profiles.php:710
msgid "Profile Name:"
msgstr "Profiel Naam:"
#: mod/profiles.php:711
msgid "Your Full Name:"
msgstr "Je volledige naam:"
#: mod/profiles.php:712
msgid "Title/Description:"
msgstr "Titel/Beschrijving:"
#: mod/profiles.php:713
msgid "Your Gender:"
msgstr "Je Geslacht:"
#: mod/profiles.php:714
msgid "Birthday :"
msgstr ""
#: mod/profiles.php:715
msgid "Street Address:"
msgstr "Postadres:"
#: mod/profiles.php:716
msgid "Locality/City:"
msgstr "Gemeente/Stad:"
#: mod/profiles.php:717
msgid "Postal/Zip Code:"
msgstr "Postcode:"
#: mod/profiles.php:718
msgid "Country:"
msgstr "Land:"
#: mod/profiles.php:719
msgid "Region/State:"
msgstr "Regio/Staat:"
#: mod/profiles.php:720
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Echtelijke Staat:"
#: mod/profiles.php:721
msgid "Who: (if applicable)"
msgstr "Wie: (indien toepasbaar)"
#: mod/profiles.php:722
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl"
#: mod/profiles.php:723
msgid "Since [date]:"
msgstr "Sinds [datum]:"
#: mod/profiles.php:724 include/identity.php:570
msgid "Sexual Preference:"
msgstr "Seksuele Voorkeur:"
#: mod/profiles.php:725
msgid "Homepage URL:"
msgstr "Adres tijdlijn:"
#: mod/profiles.php:726 include/identity.php:574
msgid "Hometown:"
msgstr "Woonplaats:"
#: mod/profiles.php:727 include/identity.php:578
msgid "Political Views:"
msgstr "Politieke standpunten:"
#: mod/profiles.php:728
msgid "Religious Views:"
msgstr "Geloof:"
#: mod/profiles.php:729
msgid "Public Keywords:"
msgstr "Publieke Sleutelwoorden:"
#: mod/profiles.php:730
msgid "Private Keywords:"
msgstr "Privé Sleutelwoorden:"
#: mod/profiles.php:731 include/identity.php:586
msgid "Likes:"
msgstr "Houdt van:"
#: mod/profiles.php:732 include/identity.php:588
msgid "Dislikes:"
msgstr "Houdt niet van:"
#: mod/profiles.php:733
msgid "Example: fishing photography software"
msgstr "Voorbeeld: vissen fotografie software"
#: mod/profiles.php:734
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)"
#: mod/profiles.php:735
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"
#: mod/profiles.php:736
msgid "Tell us about yourself..."
msgstr "Vertel iets over jezelf..."
#: mod/profiles.php:737
msgid "Hobbies/Interests"
msgstr "Hobby's/Interesses"
#: mod/profiles.php:738
msgid "Contact information and Social Networks"
msgstr "Contactinformatie en sociale netwerken"
#: mod/profiles.php:739
msgid "Musical interests"
msgstr "Muzikale interesses"
#: mod/profiles.php:740
msgid "Books, literature"
msgstr "Boeken, literatuur"
#: mod/profiles.php:741
msgid "Television"
msgstr "Televisie"
#: mod/profiles.php:742
msgid "Film/dance/culture/entertainment"
msgstr "Film/dans/cultuur/ontspanning"
#: mod/profiles.php:743
msgid "Love/romance"
msgstr "Liefde/romance"
#: mod/profiles.php:744
msgid "Work/employment"
msgstr "Werk"
#: mod/profiles.php:745
msgid "School/education"
msgstr "School/opleiding"
#: mod/profiles.php:750
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet."
#: mod/profiles.php:813
msgid "Edit/Manage Profiles"
msgstr "Wijzig/Beheer Profielen"
#: mod/profiles.php:814 include/identity.php:231 include/identity.php:257
msgid "Change profile photo"
msgstr "Profiel foto wijzigen"
#: mod/profiles.php:815 include/identity.php:232
msgid "Create New Profile"
msgstr "Maak nieuw profiel"
#: mod/profiles.php:826 include/identity.php:242
msgid "Profile Image"
msgstr "Profiel afbeelding"
#: mod/profiles.php:828 include/identity.php:245
msgid "visible to everybody"
msgstr "zichtbaar voor iedereen"
#: mod/profiles.php:829 include/identity.php:246
msgid "Edit visibility"
msgstr "Pas zichtbaarheid aan"
#: mod/editpost.php:17 mod/editpost.php:27
msgid "Item not found"
msgstr "Item niet gevonden"
#: mod/editpost.php:40
msgid "Edit post"
msgstr "Bericht bewerken"
#: mod/editpost.php:110 include/conversation.php:1185
msgid "upload photo"
msgstr "Foto uploaden"
#: mod/editpost.php:111 include/conversation.php:1186
msgid "Attach file"
msgstr "Bestand bijvoegen"
#: mod/editpost.php:112 include/conversation.php:1187
msgid "attach file"
msgstr "bestand bijvoegen"
#: mod/editpost.php:114 include/conversation.php:1189
msgid "web link"
msgstr "webadres"
#: mod/editpost.php:115 include/conversation.php:1190
msgid "Insert video link"
msgstr "Voeg video toe"
#: mod/editpost.php:116 include/conversation.php:1191
msgid "video link"
msgstr "video adres"
#: mod/editpost.php:117 include/conversation.php:1192
msgid "Insert audio link"
msgstr "Voeg audio adres toe"
#: mod/editpost.php:118 include/conversation.php:1193
msgid "audio link"
msgstr "audio adres"
#: mod/editpost.php:119 include/conversation.php:1194
msgid "Set your location"
msgstr "Stel uw locatie in"
#: mod/editpost.php:120 include/conversation.php:1195
msgid "set location"
msgstr "Stel uw locatie in"
#: mod/editpost.php:121 include/conversation.php:1196
msgid "Clear browser location"
msgstr "Verwijder locatie uit uw webbrowser"
#: mod/editpost.php:122 include/conversation.php:1197
msgid "clear location"
msgstr "Verwijder locatie uit uw webbrowser"
#: mod/editpost.php:124 include/conversation.php:1203
msgid "Permission settings"
msgstr "Instellingen van rechten"
#: mod/editpost.php:132 include/acl_selectors.php:343
msgid "CC: email addresses"
msgstr "CC: e-mailadressen"
#: mod/editpost.php:133 include/conversation.php:1212
msgid "Public post"
msgstr "Openbare post"
#: mod/editpost.php:136 include/conversation.php:1199
msgid "Set title"
msgstr "Titel plaatsen"
#: mod/editpost.php:138 include/conversation.php:1201
msgid "Categories (comma-separated list)"
msgstr "Categorieën (komma-gescheiden lijst)"
#: mod/editpost.php:139 include/acl_selectors.php:344
msgid "Example: bob@example.com, mary@example.com"
msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"
#: mod/friendica.php:59
msgid "This is Friendica, version"
msgstr "Dit is Friendica, versie"
#: mod/friendica.php:60
msgid "running at web location"
msgstr "draaiend op web-adres"
#: mod/friendica.php:62
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> om meer te leren over het Friendica project."
#: mod/friendica.php:64
msgid "Bug reports and issues: please visit"
msgstr "Bug rapporten en problemen: bezoek"
#: mod/friendica.php:64
msgid "the bugtracker at github"
msgstr ""
#: mod/friendica.php:65
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"
#: mod/friendica.php:79
msgid "Installed plugins/addons/apps:"
msgstr "Geïnstalleerde plugins/toepassingen:"
#: mod/friendica.php:92
msgid "No installed plugins/addons/apps"
msgstr "Geen plugins of toepassingen geïnstalleerd"
#: mod/api.php:76 mod/api.php:102
msgid "Authorize application connection"
msgstr ""
#: mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr ""
#: mod/api.php:89
msgid "Please login to continue."
msgstr "Log in om verder te gaan."
#: mod/api.php:104
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"
#: mod/lockview.php:31 mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr "Privacyinformatie op afstand niet beschikbaar."
#: mod/lockview.php:48
msgid "Visible to:"
msgstr "Zichtbaar voor:"
#: mod/notes.php:46 include/identity.php:677
msgid "Personal Notes"
msgstr "Persoonlijke Nota's"
#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13
msgid "l F d, Y \\@ g:i A"
msgstr "l F d, Y \\@ g:i A"
@ -1306,202 +5750,33 @@ msgstr "Omgerekende lokale tijd: %s"
msgid "Please select your timezone:"
msgstr "Selecteer je tijdzone:"
#: mod/filer.php:30 include/conversation.php:1005
#: include/conversation.php:1023
msgid "Save to Folder:"
msgstr "Bewaren in map:"
#: mod/filer.php:30
msgid "- select -"
msgstr "- Kies -"
#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:978
msgid "Save"
msgstr "Bewaren"
#: mod/poke.php:192
#: mod/poke.php:191
msgid "Poke/Prod"
msgstr "Aanstoten/porren"
#: mod/poke.php:193
#: mod/poke.php:192
msgid "poke, prod or do other things to somebody"
msgstr "aanstoten, porren of andere dingen met iemand doen"
#: mod/poke.php:194
#: mod/poke.php:193
msgid "Recipient"
msgstr "Ontvanger"
#: mod/poke.php:195
#: mod/poke.php:194
msgid "Choose what you wish to do to recipient"
msgstr "Kies wat je met de ontvanger wil doen"
#: mod/poke.php:198
#: mod/poke.php:197
msgid "Make this post private"
msgstr "Dit bericht privé maken"
#: mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr "%1$s volgt %3$s van %2$s"
#: mod/repair_ostatus.php:14
msgid "Resubsribing to OStatus contacts"
msgstr ""
#: mod/uexport.php:77
msgid "Export account"
msgstr "Account exporteren"
#: mod/uexport.php:77
msgid ""
"Export your account info and contacts. Use this to make a backup of your "
"account and/or to move it to another server."
msgstr "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."
#: mod/uexport.php:78
msgid "Export all"
msgstr "Alles exporteren"
#: mod/uexport.php:78
msgid ""
"Export your accout info, contacts and all your items as json. Could be a "
"very big file, and could take a lot of time. Use this to make a full backup "
"of your account (photos are not exported)"
msgstr "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"
#: mod/uexport.php:85 mod/settings.php:77
msgid "Export personal data"
msgstr "Persoonlijke gegevens exporteren"
#: mod/apps.php:7 index.php:225
msgid "You must be logged in to use addons. "
msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "
#: mod/apps.php:11
msgid "Applications"
msgstr "Toepassingen"
#: mod/apps.php:14
msgid "No installed applications."
msgstr "Geen toepassingen geïnstalleerd"
#: mod/navigation.php:20 include/nav.php:34
msgid "Nothing new here"
msgstr "Niets nieuw hier"
#: mod/navigation.php:24 include/nav.php:38
msgid "Clear notifications"
msgstr "Notificaties verwijderen"
#: mod/tagrm.php:11 mod/tagrm.php:94 mod/fbrowser.php:81 mod/fbrowser.php:116
#: mod/message.php:212 mod/contacts.php:416 mod/dfrn_request.php:859
#: mod/editpost.php:148 mod/follow.php:68 mod/photos.php:225
#: mod/photos.php:314 mod/suggest.php:32 mod/videos.php:121
#: mod/settings.php:622 mod/settings.php:648 include/conversation.php:1093
#: include/items.php:4857
msgid "Cancel"
msgstr "Annuleren"
#: mod/tagrm.php:41
msgid "Tag removed"
msgstr "Label verwijderd"
#: mod/tagrm.php:79
msgid "Remove Item Tag"
msgstr "Verwijder label van item"
#: mod/tagrm.php:81
msgid "Select a tag to remove: "
msgstr "Selecteer een label om te verwijderen: "
#: mod/tagrm.php:93 mod/delegate.php:139
msgid "Remove"
msgstr "Verwijderen"
#: mod/delegate.php:101
msgid "No potential page delegates located."
msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."
#: mod/delegate.php:130 include/nav.php:171
msgid "Delegate Page Management"
msgstr "Paginabeheer uitbesteden"
#: mod/delegate.php:132
msgid ""
"Delegates are able to manage all aspects of this account/page except for "
"basic account settings. Please do not delegate your personal account to "
"anybody that you do not trust completely."
msgstr "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."
#: mod/delegate.php:133
msgid "Existing Page Managers"
msgstr "Bestaande paginabeheerders"
#: mod/delegate.php:135
msgid "Existing Page Delegates"
msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed"
#: mod/delegate.php:137
msgid "Potential Delegates"
msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "
#: mod/delegate.php:140
msgid "Add"
msgstr "Toevoegen"
#: mod/delegate.php:141
msgid "No entries."
msgstr "Geen gegevens."
#: mod/nogroup.php:40 mod/viewcontacts.php:64 mod/contacts.php:573
#: mod/contacts.php:797
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Bekijk het profiel van %s [%s]"
#: mod/nogroup.php:41 mod/contacts.php:798
msgid "Edit contact"
msgstr "Contact bewerken"
#: mod/nogroup.php:59
msgid "Contacts who are not members of a group"
msgstr "Contacten die geen leden zijn van een groep"
#: mod/fbrowser.php:113
msgid "Files"
msgstr "Bestanden"
#: mod/maintenance.php:5
msgid "System down for maintenance"
msgstr "Systeem onbeschikbaar wegens onderhoud"
#: mod/removeme.php:46 mod/removeme.php:49
msgid "Remove My Account"
msgstr "Verwijder mijn account"
#: mod/removeme.php:47
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."
#: mod/removeme.php:48
msgid "Please enter your password for verification:"
msgstr "Voer je wachtwoord in voor verificatie:"
#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/crepair.php:134
#: mod/dfrn_confirm.php:120
msgid "Contact not found."
msgstr "Contact niet gevonden"
#: mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr "Vriendschapsvoorstel verzonden."
#: mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr "Stel vrienden voor"
#: mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
msgstr "Stel een vriend voor aan %s"
#: mod/repair_ostatus.php:30
msgid "Error"
msgstr ""
#: mod/invite.php:27
msgid "Total invitation limit exceeded."
@ -1595,4274 +5870,391 @@ msgid ""
"important, please visit http://friendica.com"
msgstr "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"
#: mod/manage.php:106
msgid "Manage Identities and/or Pages"
msgstr "Beheer Identiteiten en/of Pagina's"
#: mod/photos.php:91 include/identity.php:652
msgid "Photo Albums"
msgstr "Fotoalbums"
#: mod/manage.php:107
msgid ""
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."
#: mod/photos.php:92 mod/photos.php:1891
msgid "Recent Photos"
msgstr "Recente foto's"
#: mod/manage.php:108
msgid "Select an identity to manage: "
msgstr "Selecteer een identiteit om te beheren:"
#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1893
msgid "Upload New Photos"
msgstr "Nieuwe foto's uploaden"
#: mod/home.php:35
#: mod/photos.php:173
msgid "Contact information unavailable"
msgstr "Contactinformatie niet beschikbaar"
#: mod/photos.php:194
msgid "Album not found."
msgstr "Album niet gevonden"
#: mod/photos.php:224 mod/photos.php:236 mod/photos.php:1254
msgid "Delete Album"
msgstr "Verwijder album"
#: mod/photos.php:234
msgid "Do you really want to delete this photo album and all its photos?"
msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"
#: mod/photos.php:314 mod/photos.php:325 mod/photos.php:1572
msgid "Delete Photo"
msgstr "Verwijder foto"
#: mod/photos.php:323
msgid "Do you really want to delete this photo?"
msgstr "Wil je echt deze foto verwijderen?"
#: mod/photos.php:698
#, php-format
msgid "Welcome to %s"
msgstr "Welkom op %s"
msgid "%1$s was tagged in %2$s by %3$s"
msgstr "%1$s is gelabeld in %2$s door %3$s"
#: mod/message.php:9 include/nav.php:165
msgid "New Message"
msgstr "Nieuw Bericht"
#: mod/photos.php:698
msgid "a photo"
msgstr "een foto"
#: mod/message.php:67
msgid "Unable to locate contact information."
msgstr "Ik kan geen contact informatie vinden."
#: mod/photos.php:811
msgid "Image file is empty."
msgstr "Afbeeldingsbestand is leeg."
#: mod/message.php:182 include/nav.php:162
msgid "Messages"
msgstr "Privéberichten"
#: mod/photos.php:978
msgid "No photos selected"
msgstr "Geen foto's geselecteerd"
#: mod/message.php:207
msgid "Do you really want to delete this message?"
msgstr "Wil je echt dit bericht verwijderen?"
#: mod/message.php:227
msgid "Message deleted."
msgstr "Bericht verwijderd."
#: mod/message.php:258
msgid "Conversation removed."
msgstr "Gesprek verwijderd."
#: mod/message.php:371
msgid "No messages."
msgstr "Geen berichten."
#: mod/message.php:378
#: mod/photos.php:1139
#, php-format
msgid "Unknown sender - %s"
msgstr "Onbekende afzender - %s"
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."
#: mod/message.php:381
#, php-format
msgid "You and %s"
msgstr "Jij en %s"
#: mod/photos.php:1174
msgid "Upload Photos"
msgstr "Upload foto's"
#: mod/message.php:384
#, php-format
msgid "%s and You"
msgstr "%s en jij"
#: mod/photos.php:1178 mod/photos.php:1249
msgid "New album name: "
msgstr "Nieuwe albumnaam: "
#: mod/message.php:405 mod/message.php:546
msgid "Delete conversation"
msgstr "Verwijder gesprek"
#: mod/photos.php:1179
msgid "or existing album name: "
msgstr "of bestaande albumnaam: "
#: mod/message.php:408
msgid "D, d M Y - g:i A"
msgstr "D, d M Y - g:i A"
#: mod/photos.php:1180
msgid "Do not show a status post for this upload"
msgstr "Toon geen bericht op je tijdlijn van deze upload"
#: mod/message.php:411
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d bericht"
msgstr[1] "%d berichten"
#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:346
msgid "Permissions"
msgstr "Rechten"
#: mod/message.php:450
msgid "Message not available."
msgstr "Bericht niet beschikbaar."
#: mod/photos.php:1193
msgid "Private Photo"
msgstr "Privé foto"
#: mod/message.php:520
msgid "Delete message"
msgstr "Verwijder bericht"
#: mod/photos.php:1194
msgid "Public Photo"
msgstr "Publieke foto"
#: mod/message.php:548
#: mod/photos.php:1262
msgid "Edit Album"
msgstr "Album wijzigen"
#: mod/photos.php:1268
msgid "Show Newest First"
msgstr "Toon niewste eerst"
#: mod/photos.php:1270
msgid "Show Oldest First"
msgstr "Toon oudste eerst"
#: mod/photos.php:1298 mod/photos.php:1876
msgid "View Photo"
msgstr "Bekijk foto"
#: mod/photos.php:1345
msgid "Permission denied. Access to this item may be restricted."
msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."
#: mod/photos.php:1347
msgid "Photo not available"
msgstr "Foto is niet beschikbaar"
#: mod/photos.php:1403
msgid "View photo"
msgstr "Bekijk foto"
#: mod/photos.php:1403
msgid "Edit photo"
msgstr "Bewerk foto"
#: mod/photos.php:1404
msgid "Use as profile photo"
msgstr "Gebruik als profielfoto"
#: mod/photos.php:1429
msgid "View Full Size"
msgstr "Bekijk in volledig formaat"
#: mod/photos.php:1515
msgid "Tags: "
msgstr "Labels: "
#: mod/photos.php:1518
msgid "[Remove any tag]"
msgstr "[Alle labels verwijderen]"
#: mod/photos.php:1558
msgid "New album name"
msgstr "Nieuwe albumnaam"
#: mod/photos.php:1559
msgid "Caption"
msgstr "Onderschrift"
#: mod/photos.php:1560
msgid "Add a Tag"
msgstr "Een label toevoegen"
#: mod/photos.php:1560
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender."
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "
#: mod/message.php:552
msgid "Send Reply"
msgstr "Verstuur Antwoord"
#: mod/viewcontacts.php:41
msgid "No contacts."
msgstr "Geen contacten."
#: mod/viewcontacts.php:78 include/text.php:899
msgid "View Contacts"
msgstr "Bekijk contacten"
#: mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr "OpenID protocol fout. Geen ID Gevonden."
#: mod/openid.php:53
msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."
#: mod/openid.php:93 include/auth.php:112 include/auth.php:175
msgid "Login failed."
msgstr "Login mislukt."
#: mod/community.php:23
msgid "Not available."
msgstr "Niet beschikbaar"
#: mod/help.php:31
msgid "Help:"
msgstr "Help:"
#: mod/help.php:36 include/nav.php:114
msgid "Help"
msgstr "Help"
#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269
msgid "Not Found"
msgstr "Niet gevonden"
#: mod/help.php:45 index.php:272
msgid "Page not found."
msgstr "Pagina niet gevonden"
#: mod/notifications.php:26
msgid "Invalid request identifier."
msgstr "Ongeldige <em>request identifier</em>."
#: mod/notifications.php:35 mod/notifications.php:165
#: mod/notifications.php:215
msgid "Discard"
msgstr "Verwerpen"
#: mod/notifications.php:51 mod/notifications.php:164
#: mod/notifications.php:214 mod/contacts.php:527 mod/contacts.php:591
#: mod/contacts.php:758
msgid "Ignore"
msgstr "Negeren"
#: mod/notifications.php:78
msgid "System"
msgstr "Systeem"
#: mod/notifications.php:83 include/nav.php:145
msgid "Network"
msgstr "Netwerk"
#: mod/notifications.php:88 mod/network.php:373
msgid "Personal"
msgstr "Persoonlijk"
#: mod/notifications.php:98 include/nav.php:153
msgid "Introductions"
msgstr "Verzoeken"
#: mod/notifications.php:122
msgid "Show Ignored Requests"
msgstr "Toon genegeerde verzoeken"
#: mod/notifications.php:122
msgid "Hide Ignored Requests"
msgstr "Verberg genegeerde verzoeken"
#: mod/notifications.php:149 mod/notifications.php:199
msgid "Notification type: "
msgstr "Notificatiesoort:"
#: mod/notifications.php:150
msgid "Friend Suggestion"
msgstr "Vriendschapsvoorstel"
#: mod/notifications.php:152
#, php-format
msgid "suggested by %s"
msgstr "Voorgesteld door %s"
#: mod/notifications.php:157 mod/notifications.php:208 mod/contacts.php:597
msgid "Hide this contact from others"
msgstr "Verberg dit contact voor anderen"
#: mod/notifications.php:158 mod/notifications.php:209
msgid "Post a new friend activity"
msgstr "Bericht over een nieuwe vriend"
#: mod/notifications.php:158 mod/notifications.php:209
msgid "if applicable"
msgstr "Indien toepasbaar"
#: mod/notifications.php:161 mod/notifications.php:212 mod/admin.php:1015
msgid "Approve"
msgstr "Goedkeuren"
#: mod/notifications.php:181
msgid "Claims to be known to you: "
msgstr "Denkt dat u hem of haar kent:"
#: mod/notifications.php:181
msgid "yes"
msgstr "Ja"
#: mod/notifications.php:181
msgid "no"
msgstr "Nee"
#: mod/notifications.php:182
msgid ""
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
"you allow to read but you do not want to read theirs. Approve as: "
#: mod/photos.php:1561
msgid "Do not rotate"
msgstr ""
#: mod/notifications.php:185
msgid ""
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
"allow to read and you subscribe to their posts. \"Sharer\" means that you "
"allow to read but you do not want to read theirs. Approve as: "
msgstr ""
#: mod/notifications.php:193
msgid "Friend"
msgstr "Vriend"
#: mod/notifications.php:194
msgid "Sharer"
msgstr "Deler"
#: mod/notifications.php:194
msgid "Fan/Admirer"
msgstr "Fan/Bewonderaar"
#: mod/notifications.php:200
msgid "Friend/Connect Request"
msgstr "Vriendschapsverzoek"
#: mod/notifications.php:200
msgid "New Follower"
msgstr "Nieuwe Volger"
#: mod/notifications.php:221
msgid "No introductions."
msgstr "Geen vriendschaps- of connectieverzoeken."
#: mod/notifications.php:224 include/nav.php:156
msgid "Notifications"
msgstr "Notificaties"
#: mod/notifications.php:262 mod/notifications.php:391
#: mod/notifications.php:482
#, php-format
msgid "%s liked %s's post"
msgstr "%s vond het bericht van %s leuk"
#: mod/notifications.php:272 mod/notifications.php:401
#: mod/notifications.php:492
#, php-format
msgid "%s disliked %s's post"
msgstr "%s vond het bericht van %s niet leuk"
#: mod/notifications.php:287 mod/notifications.php:416
#: mod/notifications.php:507
#, php-format
msgid "%s is now friends with %s"
msgstr "%s is nu bevriend met %s"
#: mod/notifications.php:294 mod/notifications.php:423
#, php-format
msgid "%s created a new post"
msgstr "%s schreef een nieuw bericht"
#: mod/notifications.php:295 mod/notifications.php:424
#: mod/notifications.php:517
#, php-format
msgid "%s commented on %s's post"
msgstr "%s gaf een reactie op het bericht van %s"
#: mod/notifications.php:310
msgid "No more network notifications."
msgstr "Geen netwerknotificaties meer"
#: mod/notifications.php:314
msgid "Network Notifications"
msgstr "Netwerknotificaties"
#: mod/notifications.php:340 mod/notify.php:72
msgid "No more system notifications."
msgstr "Geen systeemnotificaties meer."
#: mod/notifications.php:344 mod/notify.php:76
msgid "System Notifications"
msgstr "Systeemnotificaties"
#: mod/notifications.php:439
msgid "No more personal notifications."
msgstr "Geen persoonlijke notificaties meer"
#: mod/notifications.php:443
msgid "Personal Notifications"
msgstr "Persoonlijke notificaties"
#: mod/notifications.php:524
msgid "No more home notifications."
msgstr "Geen tijdlijn-notificaties meer"
#: mod/notifications.php:528
msgid "Home Notifications"
msgstr "Tijdlijn-notificaties"
#: mod/admin.php:57
msgid "Theme settings updated."
msgstr "Thema-instellingen aangepast."
#: mod/admin.php:104 mod/admin.php:627
msgid "Site"
msgstr "Website"
#: mod/admin.php:105 mod/admin.php:1008 mod/admin.php:1023
msgid "Users"
msgstr "Gebruiker"
#: mod/admin.php:106 mod/admin.php:1112 mod/admin.php:1165 mod/settings.php:62
msgid "Plugins"
msgstr "Plugins"
#: mod/admin.php:107 mod/admin.php:1333 mod/admin.php:1367
msgid "Themes"
msgstr "Thema's"
#: mod/admin.php:108
msgid "DB updates"
msgstr "DB aanpassingen"
#: mod/admin.php:123 mod/admin.php:132 mod/admin.php:1454
msgid "Logs"
msgstr "Logs"
#: mod/admin.php:124
msgid "probe address"
msgstr ""
#: mod/admin.php:125
msgid "check webfinger"
msgstr ""
#: mod/admin.php:130 include/nav.php:185
msgid "Admin"
msgstr "Beheer"
#: mod/admin.php:131
msgid "Plugin Features"
msgstr "Plugin Functies"
#: mod/admin.php:133
msgid "diagnostics"
msgstr ""
#: mod/admin.php:134
msgid "User registrations waiting for confirmation"
msgstr "Gebruikersregistraties wachten op bevestiging"
#: mod/admin.php:193 mod/admin.php:961
msgid "Normal Account"
msgstr "Normaal account"
#: mod/admin.php:194 mod/admin.php:962
msgid "Soapbox Account"
msgstr "Zeepkist-account"
#: mod/admin.php:195 mod/admin.php:963
msgid "Community/Celebrity Account"
msgstr "Account voor een groep/forum of beroemdheid"
#: mod/admin.php:196 mod/admin.php:964
msgid "Automatic Friend Account"
msgstr "Automatisch Vriendschapsaccount"
#: mod/admin.php:197
msgid "Blog Account"
msgstr "Blog Account"
#: mod/admin.php:198
msgid "Private Forum"
msgstr "Privéforum/-groep"
#: mod/admin.php:217
msgid "Message queues"
msgstr "Bericht-wachtrijen"
#: mod/admin.php:222 mod/admin.php:626 mod/admin.php:1007 mod/admin.php:1111
#: mod/admin.php:1164 mod/admin.php:1332 mod/admin.php:1366 mod/admin.php:1453
msgid "Administration"
msgstr "Beheer"
#: mod/admin.php:223
msgid "Summary"
msgstr "Samenvatting"
#: mod/admin.php:225
msgid "Registered users"
msgstr "Geregistreerde gebruikers"
#: mod/admin.php:227
msgid "Pending registrations"
msgstr "Registraties die in de wacht staan"
#: mod/admin.php:228
msgid "Version"
msgstr "Versie"
#: mod/admin.php:232
msgid "Active plugins"
msgstr "Actieve plug-ins"
#: mod/admin.php:255
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
msgstr ""
#: mod/admin.php:524
msgid "Site settings updated."
msgstr "Site instellingen gewijzigd."
#: mod/admin.php:553 mod/settings.php:853
msgid "No special theme for mobile devices"
msgstr "Geen speciaal thema voor mobiele apparaten"
#: mod/admin.php:570
msgid "No community page"
msgstr ""
#: mod/admin.php:571
msgid "Public postings from users of this site"
msgstr ""
#: mod/admin.php:572
msgid "Global community page"
msgstr ""
#: mod/admin.php:577 mod/contacts.php:498
msgid "Never"
msgstr "Nooit"
#: mod/admin.php:578
msgid "At post arrival"
msgstr ""
#: mod/admin.php:579 include/contact_selectors.php:56
msgid "Frequently"
msgstr "Frequent"
#: mod/admin.php:580 include/contact_selectors.php:57
msgid "Hourly"
msgstr "elk uur"
#: mod/admin.php:581 include/contact_selectors.php:58
msgid "Twice daily"
msgstr "Twee keer per dag"
#: mod/admin.php:582 include/contact_selectors.php:59
msgid "Daily"
msgstr "dagelijks"
#: mod/admin.php:587
msgid "Multi user instance"
msgstr "Server voor meerdere gebruikers"
#: mod/admin.php:610
msgid "Closed"
msgstr "Gesloten"
#: mod/admin.php:611
msgid "Requires approval"
msgstr "Toestemming vereist"
#: mod/admin.php:612
msgid "Open"
msgstr "Open"
#: mod/admin.php:616
msgid "No SSL policy, links will track page SSL state"
msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen"
#: mod/admin.php:617
msgid "Force all links to use SSL"
msgstr "Verplicht alle links om SSL te gebruiken"
#: mod/admin.php:618
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)"
#: mod/admin.php:628 mod/admin.php:1166 mod/admin.php:1368 mod/admin.php:1455
#: mod/settings.php:621 mod/settings.php:731 mod/settings.php:754
#: mod/settings.php:823 mod/settings.php:905 mod/settings.php:1137
msgid "Save Settings"
msgstr "Instellingen opslaan"
#: mod/admin.php:629 mod/register.php:260
msgid "Registration"
msgstr "Registratie"
#: mod/admin.php:630
msgid "File upload"
msgstr "Uploaden bestand"
#: mod/admin.php:631
msgid "Policies"
msgstr "Beleid"
#: mod/admin.php:632
msgid "Advanced"
msgstr "Geavanceerd"
#: mod/admin.php:633
msgid "Performance"
msgstr "Performantie"
#: mod/admin.php:634
msgid ""
"Relocate - WARNING: advanced function. Could make this server unreachable."
msgstr ""
#: mod/admin.php:637
msgid "Site name"
msgstr "Site naam"
#: mod/admin.php:638
msgid "Host name"
msgstr ""
#: mod/admin.php:639
msgid "Sender Email"
msgstr ""
#: mod/admin.php:640
msgid "Banner/Logo"
msgstr "Banner/Logo"
#: mod/admin.php:641
msgid "Shortcut icon"
msgstr ""
#: mod/admin.php:642
msgid "Touch icon"
msgstr ""
#: mod/admin.php:643
msgid "Additional Info"
msgstr ""
#: mod/admin.php:643
msgid ""
"For public servers: you can add additional information here that will be "
"listed at dir.friendica.com/siteinfo."
msgstr ""
#: mod/admin.php:644
msgid "System language"
msgstr "Systeemtaal"
#: mod/admin.php:645
msgid "System theme"
msgstr "Systeem thema"
#: mod/admin.php:645
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - <a href='#' id='cnftheme'>verander thema instellingen</a>"
#: mod/admin.php:646
msgid "Mobile system theme"
msgstr "Mobiel systeem thema"
#: mod/admin.php:646
msgid "Theme for mobile devices"
msgstr "Thema voor mobiele apparaten"
#: mod/admin.php:647
msgid "SSL link policy"
msgstr "Beleid SSL-links"
#: mod/admin.php:647
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken"
#: mod/admin.php:648
msgid "Force SSL"
msgstr ""
#: mod/admin.php:648
msgid ""
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
" to endless loops."
msgstr ""
#: mod/admin.php:649
msgid "Old style 'Share'"
msgstr ""
#: mod/admin.php:649
msgid "Deactivates the bbcode element 'share' for repeating items."
msgstr ""
#: mod/admin.php:650
msgid "Hide help entry from navigation menu"
msgstr "Verberg de 'help' uit het navigatiemenu"
#: mod/admin.php:650
msgid ""
"Hides the menu entry for the Help pages from the navigation menu. You can "
"still access it calling /help directly."
msgstr "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven."
#: mod/admin.php:651
msgid "Single user instance"
msgstr "Server voor één gebruiker"
#: mod/admin.php:651
msgid "Make this instance multi-user or single-user for the named user"
msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker."
#: mod/admin.php:652
msgid "Maximum image size"
msgstr "Maximum afbeeldingsgrootte"
#: mod/admin.php:652
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking."
#: mod/admin.php:653
msgid "Maximum image length"
msgstr "Maximum afbeeldingslengte"
#: mod/admin.php:653
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen."
#: mod/admin.php:654
msgid "JPEG image quality"
msgstr "JPEG afbeeldingskwaliteit"
#: mod/admin.php:654
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit."
#: mod/admin.php:656
msgid "Register policy"
msgstr "Registratiebeleid"
#: mod/admin.php:657
msgid "Maximum Daily Registrations"
msgstr "Maximum aantal registraties per dag"
#: mod/admin.php:657
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect."
#: mod/admin.php:658
msgid "Register text"
msgstr "Registratietekst"
#: mod/admin.php:658
msgid "Will be displayed prominently on the registration page."
msgstr "Dit zal prominent op de registratiepagina getoond worden."
#: mod/admin.php:659
msgid "Accounts abandoned after x days"
msgstr "Verlaten accounts na x dagen"
#: mod/admin.php:659
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet."
#: mod/admin.php:660
msgid "Allowed friend domains"
msgstr "Toegelaten vriend domeinen"
#: mod/admin.php:660
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten."
#: mod/admin.php:661
msgid "Allowed email domains"
msgstr "Toegelaten e-mail domeinen"
#: mod/admin.php:661
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan."
#: mod/admin.php:662
msgid "Block public"
msgstr "Openbare toegang blokkeren"
#: mod/admin.php:662
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers."
#: mod/admin.php:663
msgid "Force publish"
msgstr "Dwing publiceren af"
#: mod/admin.php:663
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden."
#: mod/admin.php:664
msgid "Global directory update URL"
msgstr "Update-adres van de globale gids"
#: mod/admin.php:664
msgid ""
"URL to update the global directory. If this is not set, the global directory"
" is completely unavailable to the application."
msgstr "URL om de globale gids aan te passen. Als dit niet is ingevuld, is de globale gids volledig onbeschikbaar voor deze toepassing."
#: mod/admin.php:665
msgid "Allow threaded items"
msgstr "Sta threads in conversaties toe"
#: mod/admin.php:665
msgid "Allow infinite level threading for items on this site."
msgstr "Sta oneindige niveaus threads in conversaties op deze website toe."
#: mod/admin.php:666
msgid "Private posts by default for new users"
msgstr "Privéberichten als standaard voor nieuwe gebruikers"
#: mod/admin.php:666
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar."
#: mod/admin.php:667
msgid "Don't include post content in email notifications"
msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties"
#: mod/admin.php:667
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy."
#: mod/admin.php:668
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
#: mod/admin.php:668
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr ""
#: mod/admin.php:669
msgid "Don't embed private images in posts"
msgstr ""
#: mod/admin.php:669
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
"photos will have to authenticate and load each image, which may take a "
"while."
msgstr ""
#: mod/admin.php:670
msgid "Allow Users to set remote_self"
msgstr ""
#: mod/admin.php:670
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr ""
#: mod/admin.php:671
msgid "Block multiple registrations"
msgstr "Blokkeer meerdere registraties"
#: mod/admin.php:671
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken."
#: mod/admin.php:672
msgid "OpenID support"
msgstr "OpenID ondersteuning"
#: mod/admin.php:672
msgid "OpenID support for registration and logins."
msgstr "OpenID ondersteuning voor registraties en logins."
#: mod/admin.php:673
msgid "Fullname check"
msgstr "Controleer volledige naam"
#: mod/admin.php:673
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel"
#: mod/admin.php:674
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 reguliere uitdrukkingen"
#: mod/admin.php:674
msgid "Use PHP UTF8 regular expressions"
msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen"
#: mod/admin.php:675
msgid "Community Page Style"
msgstr ""
#: mod/admin.php:675
msgid ""
"Type of community page to show. 'Global community' shows every public "
"posting from an open distributed network that arrived on this server."
msgstr ""
#: mod/admin.php:676
msgid "Posts per user on community page"
msgstr ""
#: mod/admin.php:676
msgid ""
"The maximum number of posts per user on the community page. (Not valid for "
"'Global Community')"
msgstr ""
#: mod/admin.php:677
msgid "Enable OStatus support"
msgstr "Activeer OStatus ondersteuning"
#: mod/admin.php:677
msgid ""
"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr ""
#: mod/admin.php:678
msgid "OStatus conversation completion interval"
msgstr ""
#: mod/admin.php:678
msgid ""
"How often shall the poller check for new entries in OStatus conversations? "
"This can be a very ressource task."
msgstr ""
#: mod/admin.php:679
msgid "Enable Diaspora support"
msgstr "Activeer Diaspora ondersteuning"
#: mod/admin.php:679
msgid "Provide built-in Diaspora network compatibility."
msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk."
#: mod/admin.php:680
msgid "Only allow Friendica contacts"
msgstr "Laat alleen Friendica contacten toe"
#: mod/admin.php:680
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld."
#: mod/admin.php:681
msgid "Verify SSL"
msgstr "Controleer SSL"
#: mod/admin.php:681
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken."
#: mod/admin.php:682
msgid "Proxy user"
msgstr "Proxy-gebruiker"
#: mod/admin.php:683
msgid "Proxy URL"
msgstr "Proxy-URL"
#: mod/admin.php:684
msgid "Network timeout"
msgstr "Netwerk timeout"
#: mod/admin.php:684
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)."
#: mod/admin.php:685
msgid "Delivery interval"
msgstr "Afleverinterval"
#: mod/admin.php:685
msgid ""
"Delay background delivery processes by this many seconds to reduce system "
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
"for large dedicated servers."
msgstr "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers."
#: mod/admin.php:686
msgid "Poll interval"
msgstr "Poll-interval"
#: mod/admin.php:686
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt."
#: mod/admin.php:687
msgid "Maximum Load Average"
msgstr "Maximum gemiddelde belasting"
#: mod/admin.php:687
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50."
#: mod/admin.php:688
msgid "Maximum Load Average (Frontend)"
msgstr ""
#: mod/admin.php:688
msgid "Maximum system load before the frontend quits service - default 50."
msgstr ""
#: mod/admin.php:690
msgid "Use MySQL full text engine"
msgstr "Gebruik de tekst-zoekfunctie van MySQL"
#: mod/admin.php:690
msgid ""
"Activates the full text engine. Speeds up search - but can only search for "
"four and more characters."
msgstr "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters."
#: mod/admin.php:691
msgid "Suppress Language"
msgstr ""
#: mod/admin.php:691
msgid "Suppress language information in meta information about a posting."
msgstr ""
#: mod/admin.php:692
msgid "Suppress Tags"
msgstr ""
#: mod/admin.php:692
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr ""
#: mod/admin.php:693
msgid "Path to item cache"
msgstr "Pad naar cache voor items"
#: mod/admin.php:694
msgid "Cache duration in seconds"
msgstr "Cache tijdsduur in seconden"
#: mod/admin.php:694
msgid ""
"How long should the cache files be hold? Default value is 86400 seconds (One"
" day). To disable the item cache, set the value to -1."
msgstr ""
#: mod/admin.php:695
msgid "Maximum numbers of comments per post"
msgstr ""
#: mod/admin.php:695
msgid "How much comments should be shown for each post? Default value is 100."
msgstr ""
#: mod/admin.php:696
msgid "Path for lock file"
msgstr "Pad voor lock bestand"
#: mod/admin.php:697
msgid "Temp path"
msgstr "Tijdelijk pad"
#: mod/admin.php:698
msgid "Base path to installation"
msgstr "Basispad voor installatie"
#: mod/admin.php:699
msgid "Disable picture proxy"
msgstr ""
#: mod/admin.php:699
msgid ""
"The picture proxy increases performance and privacy. It shouldn't be used on"
" systems with very low bandwith."
msgstr ""
#: mod/admin.php:700
msgid "Enable old style pager"
msgstr ""
#: mod/admin.php:700
msgid ""
"The old style pager has page numbers but slows down massively the page "
"speed."
msgstr ""
#: mod/admin.php:701
msgid "Only search in tags"
msgstr ""
#: mod/admin.php:701
msgid "On large systems the text search can slow down the system extremely."
msgstr ""
#: mod/admin.php:703
msgid "New base url"
msgstr ""
#: mod/admin.php:705
msgid "RINO Encryption"
msgstr ""
#: mod/admin.php:705
msgid "Encryption layer between nodes."
msgstr ""
#: mod/admin.php:723
msgid "Update has been marked successful"
msgstr "Wijziging succesvol gemarkeerd "
#: mod/admin.php:731
#, php-format
msgid "Database structure update %s was successfully applied."
msgstr ""
#: mod/admin.php:734
#, php-format
msgid "Executing of database structure update %s failed with error: %s"
msgstr ""
#: mod/admin.php:746
#, php-format
msgid "Executing %s failed with error: %s"
msgstr ""
#: mod/admin.php:749
#, php-format
msgid "Update %s was successfully applied."
msgstr "Wijziging %s geslaagd."
#: mod/admin.php:753
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is."
#: mod/admin.php:755
#, php-format
msgid "There was no additional update function %s that needed to be called."
msgstr ""
#: mod/admin.php:774
msgid "No failed updates."
msgstr "Geen misluke wijzigingen"
#: mod/admin.php:775
msgid "Check database structure"
msgstr ""
#: mod/admin.php:780
msgid "Failed Updates"
msgstr "Misluke wijzigingen"
#: mod/admin.php:781
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven."
#: mod/admin.php:782
msgid "Mark success (if update was manually applied)"
msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)"
#: mod/admin.php:783
msgid "Attempt to execute this update step automatically"
msgstr "Probeer deze stap automatisch uit te voeren"
#: mod/admin.php:815
#, php-format
msgid ""
"\n"
"\t\t\tDear %1$s,\n"
"\t\t\t\tthe administrator of %2$s has set up an account for you."
msgstr ""
#: mod/admin.php:818
#, php-format
msgid ""
"\n"
"\t\t\tThe login details are as follows:\n"
"\n"
"\t\t\tSite Location:\t%1$s\n"
"\t\t\tLogin Name:\t\t%2$s\n"
"\t\t\tPassword:\t\t%3$s\n"
"\n"
"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
"\t\t\tin.\n"
"\n"
"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
"\n"
"\t\t\tYou may also wish to add some basic information to your default profile\n"
"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
"\n"
"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
"\t\t\tthan that.\n"
"\n"
"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
"\t\t\tIf you are new and do not know anybody here, they may help\n"
"\t\t\tyou to make some new and interesting friends.\n"
"\n"
"\t\t\tThank you and welcome to %4$s."
msgstr ""
#: mod/admin.php:850 include/user.php:421
#, php-format
msgid "Registration details for %s"
msgstr "Registratie details voor %s"
#: mod/admin.php:862
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd"
msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd"
#: mod/admin.php:869
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s gebruiker verwijderd"
msgstr[1] "%s gebruikers verwijderd"
#: mod/admin.php:908
#, php-format
msgid "User '%s' deleted"
msgstr "Gebruiker '%s' verwijderd"
#: mod/admin.php:916
#, php-format
msgid "User '%s' unblocked"
msgstr "Gebruiker '%s' niet meer geblokkeerd"
#: mod/admin.php:916
#, php-format
msgid "User '%s' blocked"
msgstr "Gebruiker '%s' geblokkeerd"
#: mod/admin.php:1009
msgid "Add User"
msgstr "Gebruiker toevoegen"
#: mod/admin.php:1010
msgid "select all"
msgstr "Alles selecteren"
#: mod/admin.php:1011
msgid "User registrations waiting for confirm"
msgstr "Gebruikersregistraties wachten op een bevestiging"
#: mod/admin.php:1012
msgid "User waiting for permanent deletion"
msgstr ""
#: mod/admin.php:1013
msgid "Request date"
msgstr "Registratiedatum"
#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1039
#: mod/crepair.php:170 mod/settings.php:623 mod/settings.php:649
msgid "Name"
msgstr "Naam"
#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1041
#: include/contact_selectors.php:79 include/contact_selectors.php:86
msgid "Email"
msgstr "E-mail"
#: mod/admin.php:1014
msgid "No registrations."
msgstr "Geen registraties."
#: mod/admin.php:1016
msgid "Deny"
msgstr "Weiger"
#: mod/admin.php:1018 mod/contacts.php:521 mod/contacts.php:590
#: mod/contacts.php:757
msgid "Block"
msgstr "Blokkeren"
#: mod/admin.php:1019 mod/contacts.php:521 mod/contacts.php:590
#: mod/contacts.php:757
msgid "Unblock"
msgstr "Blokkering opheffen"
#: mod/admin.php:1020
msgid "Site admin"
msgstr "Sitebeheerder"
#: mod/admin.php:1021
msgid "Account expired"
msgstr "Account verlopen"
#: mod/admin.php:1024
msgid "New User"
msgstr "Nieuwe gebruiker"
#: mod/admin.php:1025 mod/admin.php:1026
msgid "Register date"
msgstr "Registratiedatum"
#: mod/admin.php:1025 mod/admin.php:1026
msgid "Last login"
msgstr "Laatste login"
#: mod/admin.php:1025 mod/admin.php:1026
msgid "Last item"
msgstr "Laatste item"
#: mod/admin.php:1025
msgid "Deleted since"
msgstr "Verwijderd sinds"
#: mod/admin.php:1026 mod/settings.php:41
msgid "Account"
msgstr "Account"
#: mod/admin.php:1028
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
#: mod/admin.php:1029
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
#: mod/admin.php:1039
msgid "Name of the new user."
msgstr "Naam van nieuwe gebruiker"
#: mod/admin.php:1040
msgid "Nickname"
msgstr "Bijnaam"
#: mod/admin.php:1040
msgid "Nickname of the new user."
msgstr "Bijnaam van nieuwe gebruiker"
#: mod/admin.php:1041
msgid "Email address of the new user."
msgstr "E-mailadres van nieuwe gebruiker"
#: mod/admin.php:1074
#, php-format
msgid "Plugin %s disabled."
msgstr "Plugin %s uitgeschakeld."
#: mod/admin.php:1078
#, php-format
msgid "Plugin %s enabled."
msgstr "Plugin %s ingeschakeld."
#: mod/admin.php:1088 mod/admin.php:1304
msgid "Disable"
msgstr "Uitschakelen"
#: mod/admin.php:1090 mod/admin.php:1306
msgid "Enable"
msgstr "Inschakelen"
#: mod/admin.php:1113 mod/admin.php:1334
msgid "Toggle"
msgstr "Schakelaar"
#: mod/admin.php:1121 mod/admin.php:1344
msgid "Author: "
msgstr "Auteur:"
#: mod/admin.php:1122 mod/admin.php:1345
msgid "Maintainer: "
msgstr "Onderhoud:"
#: mod/admin.php:1264
msgid "No themes found."
msgstr "Geen thema's gevonden."
#: mod/admin.php:1326
msgid "Screenshot"
msgstr "Schermafdruk"
#: mod/admin.php:1372
msgid "[Experimental]"
msgstr "[Experimenteel]"
#: mod/admin.php:1373
msgid "[Unsupported]"
msgstr "[Niet ondersteund]"
#: mod/admin.php:1400
msgid "Log settings updated."
msgstr "Log instellingen gewijzigd"
#: mod/admin.php:1456
msgid "Clear"
msgstr "Wis"
#: mod/admin.php:1462
msgid "Enable Debugging"
msgstr ""
#: mod/admin.php:1463
msgid "Log file"
msgstr "Logbestand"
#: mod/admin.php:1463
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie."
#: mod/admin.php:1464
msgid "Log level"
msgstr "Log niveau"
#: mod/admin.php:1513 mod/contacts.php:587
msgid "Update now"
msgstr "Wijzig nu"
#: mod/admin.php:1514 include/acl_selectors.php:347
msgid "Close"
msgstr "Afsluiten"
#: mod/admin.php:1520
msgid "FTP Host"
msgstr "FTP Server"
#: mod/admin.php:1521
msgid "FTP Path"
msgstr "FTP Pad"
#: mod/admin.php:1522
msgid "FTP User"
msgstr "FTP Gebruiker"
#: mod/admin.php:1523
msgid "FTP Password"
msgstr "FTP wachtwoord"
#: mod/allfriends.php:37
#, php-format
msgid "Friends of %s"
msgstr "Vrienden van %s"
#: mod/allfriends.php:44
msgid "No friends to display."
msgstr "Geen vrienden om te laten zien."
#: mod/common.php:45
msgid "Common Friends"
msgstr "Gedeelde Vrienden"
#: mod/common.php:82
msgid "No contacts in common."
msgstr "Geen gedeelde contacten."
#: mod/contacts.php:114
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited"
#: mod/photos.php:1562
msgid "Rotate CW (right)"
msgstr "Roteren met de klok mee (rechts)"
#: mod/photos.php:1563
msgid "Rotate CCW (left)"
msgstr "Roteren tegen de klok in (links)"
#: mod/photos.php:1578
msgid "Private photo"
msgstr "Privé foto"
#: mod/photos.php:1579
msgid "Public photo"
msgstr "Publieke foto"
#: mod/photos.php:1601 include/conversation.php:1183
msgid "Share"
msgstr "Delen"
#: mod/photos.php:1640 include/conversation.php:509
#: include/conversation.php:1405
msgid "Attending"
msgid_plural "Attending"
msgstr[0] ""
msgstr[1] ""
#: mod/contacts.php:145 mod/contacts.php:340
msgid "Could not access contact record."
msgstr "Kon geen toegang krijgen tot de contactgegevens"
#: mod/contacts.php:159
msgid "Could not locate selected profile."
msgstr "Kon het geselecteerde profiel niet vinden."
#: mod/contacts.php:192
msgid "Contact updated."
msgstr "Contact bijgewerkt."
#: mod/contacts.php:194 mod/dfrn_request.php:576
msgid "Failed to update contact record."
msgstr "Ik kon de contactgegevens niet aanpassen."
#: mod/contacts.php:361
msgid "Contact has been blocked"
msgstr "Contact is geblokkeerd"
#: mod/contacts.php:361
msgid "Contact has been unblocked"
msgstr "Contact is gedeblokkeerd"
#: mod/contacts.php:372
msgid "Contact has been ignored"
msgstr "Contact wordt genegeerd"
#: mod/contacts.php:372
msgid "Contact has been unignored"
msgstr "Contact wordt niet meer genegeerd"
#: mod/contacts.php:384
msgid "Contact has been archived"
msgstr "Contact is gearchiveerd"
#: mod/contacts.php:384
msgid "Contact has been unarchived"
msgstr "Contact is niet meer gearchiveerd"
#: mod/contacts.php:411 mod/contacts.php:754
msgid "Do you really want to delete this contact?"
msgstr "Wil je echt dit contact verwijderen?"
#: mod/contacts.php:428
msgid "Contact has been removed."
msgstr "Contact is verwijderd."
#: mod/contacts.php:466
#, php-format
msgid "You are mutual friends with %s"
msgstr "Je bent wederzijds bevriend met %s"
#: mod/contacts.php:470
#, php-format
msgid "You are sharing with %s"
msgstr "Je deelt met %s"
#: mod/contacts.php:475
#, php-format
msgid "%s is sharing with you"
msgstr "%s deelt met jou"
#: mod/contacts.php:495
msgid "Private communications are not available for this contact."
msgstr "Privécommunicatie met dit contact is niet beschikbaar."
#: mod/contacts.php:502
msgid "(Update was successful)"
msgstr "(Wijziging is geslaagd)"
#: mod/contacts.php:502
msgid "(Update was not successful)"
msgstr "(Wijziging is niet geslaagd)"
#: mod/contacts.php:504
msgid "Suggest friends"
msgstr "Stel vrienden voor"
#: mod/contacts.php:508
#, php-format
msgid "Network type: %s"
msgstr "Netwerk type: %s"
#: mod/contacts.php:511 include/contact_widgets.php:200
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d gedeeld contact"
msgstr[1] "%d gedeelde contacten"
#: mod/contacts.php:516
msgid "View all contacts"
msgstr "Alle contacten zien"
#: mod/contacts.php:524
msgid "Toggle Blocked status"
msgstr "Schakel geblokkeerde status"
#: mod/contacts.php:527 mod/contacts.php:591 mod/contacts.php:758
msgid "Unignore"
msgstr "Negeer niet meer"
#: mod/contacts.php:530
msgid "Toggle Ignored status"
msgstr "Schakel negeerstatus"
#: mod/contacts.php:534 mod/contacts.php:759
msgid "Unarchive"
msgstr "Archiveer niet meer"
#: mod/contacts.php:534 mod/contacts.php:759
msgid "Archive"
msgstr "Archiveer"
#: mod/contacts.php:537
msgid "Toggle Archive status"
msgstr "Schakel archiveringsstatus"
#: mod/contacts.php:540
msgid "Repair"
msgstr "Herstellen"
#: mod/contacts.php:543
msgid "Advanced Contact Settings"
msgstr "Geavanceerde instellingen voor contacten"
#: mod/contacts.php:549
msgid "Communications lost with this contact!"
msgstr "Communicatie met dit contact is verbroken!"
#: mod/contacts.php:552
msgid "Fetch further information for feeds"
#: mod/photos.php:1640 include/conversation.php:509
msgid "Not attending"
msgstr ""
#: mod/contacts.php:553
msgid "Disabled"
#: mod/photos.php:1640 include/conversation.php:509
msgid "Might attend"
msgstr ""
#: mod/contacts.php:553
msgid "Fetch information"
#: mod/photos.php:1805
msgid "Map"
msgstr ""
#: mod/contacts.php:553
msgid "Fetch information and keywords"
msgstr ""
#: mod/contacts.php:562
msgid "Contact Editor"
msgstr "Contactbewerker"
#: mod/contacts.php:565
msgid "Profile Visibility"
msgstr "Zichtbaarheid profiel"
#: mod/contacts.php:566
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "
#: mod/contacts.php:567
msgid "Contact Information / Notes"
msgstr "Contactinformatie / aantekeningen"
#: mod/contacts.php:568
msgid "Edit contact notes"
msgstr "Wijzig aantekeningen over dit contact"
#: mod/contacts.php:574
msgid "Block/Unblock contact"
msgstr "Blokkeer/deblokkeer contact"
#: mod/contacts.php:575
msgid "Ignore contact"
msgstr "Negeer contact"
#: mod/contacts.php:576
msgid "Repair URL settings"
msgstr "Repareer URL-instellingen"
#: mod/contacts.php:577
msgid "View conversations"
msgstr "Toon conversaties"
#: mod/contacts.php:579
msgid "Delete contact"
msgstr "Verwijder contact"
#: mod/contacts.php:583
msgid "Last update:"
msgstr "Laatste wijziging:"
#: mod/contacts.php:585
msgid "Update public posts"
msgstr "Openbare posts aanpassen"
#: mod/contacts.php:594
msgid "Currently blocked"
msgstr "Op dit moment geblokkeerd"
#: mod/contacts.php:595
msgid "Currently ignored"
msgstr "Op dit moment genegeerd"
#: mod/contacts.php:596
msgid "Currently archived"
msgstr "Op dit moment gearchiveerd"
#: mod/contacts.php:597
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> nog zichtbaar zijn"
#: mod/contacts.php:598
msgid "Notification for new posts"
msgstr "Meldingen voor nieuwe berichten"
#: mod/contacts.php:598
msgid "Send a notification of every new post of this contact"
msgstr ""
#: mod/contacts.php:601
msgid "Blacklisted keywords"
msgstr ""
#: mod/contacts.php:601
msgid ""
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
msgstr ""
#: mod/contacts.php:652
msgid "Suggestions"
msgstr "Voorstellen"
#: mod/contacts.php:655
msgid "Suggest potential friends"
msgstr "Stel vrienden voor"
#: mod/contacts.php:658 mod/group.php:192
msgid "All Contacts"
msgstr "Alle Contacten"
#: mod/contacts.php:661
msgid "Show all contacts"
msgstr "Toon alle contacten"
#: mod/contacts.php:664
msgid "Unblocked"
msgstr "Niet geblokkeerd"
#: mod/contacts.php:667
msgid "Only show unblocked contacts"
msgstr "Toon alleen niet-geblokkeerde contacten"
#: mod/contacts.php:671
msgid "Blocked"
msgstr "Geblokkeerd"
#: mod/contacts.php:674
msgid "Only show blocked contacts"
msgstr "Toon alleen geblokkeerde contacten"
#: mod/contacts.php:678
msgid "Ignored"
msgstr "Genegeerd"
#: mod/contacts.php:681
msgid "Only show ignored contacts"
msgstr "Toon alleen genegeerde contacten"
#: mod/contacts.php:685
msgid "Archived"
msgstr "Gearchiveerd"
#: mod/contacts.php:688
msgid "Only show archived contacts"
msgstr "Toon alleen gearchiveerde contacten"
#: mod/contacts.php:692
msgid "Hidden"
msgstr "Verborgen"
#: mod/contacts.php:695
msgid "Only show hidden contacts"
msgstr "Toon alleen verborgen contacten"
#: mod/contacts.php:749
msgid "Search your contacts"
msgstr "Doorzoek je contacten"
#: mod/contacts.php:750 mod/directory.php:63
msgid "Finding: "
msgstr "Gevonden:"
#: mod/contacts.php:751 mod/directory.php:65 include/contact_widgets.php:34
msgid "Find"
msgstr "Zoek"
#: mod/contacts.php:756 mod/settings.php:137 mod/settings.php:647
msgid "Update"
msgstr "Wijzigen"
#: mod/contacts.php:773
msgid "Mutual Friendship"
msgstr "Wederzijdse vriendschap"
#: mod/contacts.php:777
msgid "is a fan of yours"
msgstr "Is een fan van jou"
#: mod/contacts.php:781
msgid "you are a fan of"
msgstr "Jij bent een fan van"
#: mod/content.php:119 mod/network.php:526
msgid "No such group"
msgstr "Zo'n groep bestaat niet"
#: mod/content.php:130 mod/network.php:543
msgid "Group is empty"
msgstr "De groep is leeg"
#: mod/content.php:135 mod/network.php:554
#, php-format
msgid "Group: %s"
msgstr ""
#: mod/content.php:499 include/conversation.php:689
msgid "View in context"
msgstr "In context bekijken"
#: mod/crepair.php:107
msgid "Contact settings applied."
msgstr "Contactinstellingen toegepast."
#: mod/crepair.php:109
msgid "Contact update failed."
msgstr "Aanpassen van contact mislukt."
#: mod/crepair.php:140
msgid "Repair Contact Settings"
msgstr "Contactinstellingen herstellen"
#: mod/crepair.php:142
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
" information your communications with this contact may stop working."
msgstr ""
#: mod/crepair.php:143
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."
#: mod/crepair.php:149
msgid "Return to contact editor"
msgstr "Ga terug naar contactbewerker"
#: mod/crepair.php:160 mod/crepair.php:162
msgid "No mirroring"
msgstr ""
#: mod/crepair.php:160
msgid "Mirror as forwarded posting"
msgstr ""
#: mod/crepair.php:160 mod/crepair.php:162
msgid "Mirror as my own posting"
msgstr ""
#: mod/crepair.php:169
msgid "Refetch contact data"
msgstr ""
#: mod/crepair.php:171
msgid "Account Nickname"
msgstr "Bijnaam account"
#: mod/crepair.php:172
msgid "@Tagname - overrides Name/Nickname"
msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam"
#: mod/crepair.php:173
msgid "Account URL"
msgstr "URL account"
#: mod/crepair.php:174
msgid "Friend Request URL"
msgstr "URL vriendschapsverzoek"
#: mod/crepair.php:175
msgid "Friend Confirm URL"
msgstr "URL vriendschapsbevestiging"
#: mod/crepair.php:176
msgid "Notification Endpoint URL"
msgstr ""
#: mod/crepair.php:177
msgid "Poll/Feed URL"
msgstr "URL poll/feed"
#: mod/crepair.php:178
msgid "New photo from this URL"
msgstr "Nieuwe foto van deze URL"
#: mod/crepair.php:179
msgid "Remote Self"
msgstr ""
#: mod/crepair.php:181
msgid "Mirror postings from this contact"
msgstr ""
#: mod/crepair.php:181
msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact."
msgstr ""
#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133
#: mod/profiles.php:179 mod/profiles.php:626
msgid "Profile not found."
msgstr "Profiel niet gevonden"
#: mod/dfrn_confirm.php:121
msgid ""
"This may occasionally happen if contact was requested by both persons and it"
" has already been approved."
msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."
#: mod/dfrn_confirm.php:240
msgid "Response from remote site was not understood."
msgstr "Antwoord van de website op afstand werd niet begrepen."
#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
msgid "Unexpected response from remote site: "
msgstr "Onverwacht antwoord van website op afstand:"
#: mod/dfrn_confirm.php:263
msgid "Confirmation completed successfully."
msgstr "Bevestiging werd correct voltooid."
#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286
msgid "Remote site reported: "
msgstr "Website op afstand berichtte: "
#: mod/dfrn_confirm.php:277
msgid "Temporary failure. Please wait and try again."
msgstr "Tijdelijke fout. Wacht even en probeer opnieuw."
#: mod/dfrn_confirm.php:284
msgid "Introduction failed or was revoked."
msgstr "Verzoek mislukt of herroepen."
#: mod/dfrn_confirm.php:430
msgid "Unable to set contact photo."
msgstr "Ik kan geen contact foto instellen."
#: mod/dfrn_confirm.php:487 include/conversation.php:172
#: include/diaspora.php:622
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s is nu bevriend met %2$s"
#: mod/dfrn_confirm.php:572
#, php-format
msgid "No user record found for '%s' "
msgstr "Geen gebruiker gevonden voor '%s'"
#: mod/dfrn_confirm.php:582
msgid "Our site encryption key is apparently messed up."
msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."
#: mod/dfrn_confirm.php:593
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."
#: mod/dfrn_confirm.php:614
msgid "Contact record was not found for you on our site."
msgstr "We vonden op onze webstek geen contactrecord voor jou."
#: mod/dfrn_confirm.php:628
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."
#: mod/dfrn_confirm.php:648
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."
#: mod/dfrn_confirm.php:659
msgid "Unable to set your contact credentials on our system."
msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen."
#: mod/dfrn_confirm.php:726
msgid "Unable to update your contact profile details on our system"
msgstr ""
#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4236
msgid "[Name Withheld]"
msgstr "[Naam achtergehouden]"
#: mod/dfrn_confirm.php:798
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s is toegetreden tot %2$s"
#: mod/dfrn_request.php:95
msgid "This introduction has already been accepted."
msgstr "Verzoek is al goedgekeurd"
#: mod/dfrn_request.php:120 mod/dfrn_request.php:518
msgid "Profile location is not valid or does not contain profile information."
msgstr "Profiel is ongeldig of bevat geen informatie"
#: mod/dfrn_request.php:125 mod/dfrn_request.php:523
msgid "Warning: profile location has no identifiable owner name."
msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."
#: mod/dfrn_request.php:127 mod/dfrn_request.php:525
msgid "Warning: profile location has no profile photo."
msgstr "Waarschuwing: Profieladres heeft geen profielfoto."
#: mod/dfrn_request.php:130 mod/dfrn_request.php:528
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "De %d vereiste parameter is niet op het gegeven adres gevonden"
msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden"
#: mod/dfrn_request.php:172
msgid "Introduction complete."
msgstr "Verzoek voltooid."
#: mod/dfrn_request.php:214
msgid "Unrecoverable protocol error."
msgstr "Onherstelbare protocolfout. "
#: mod/dfrn_request.php:242
msgid "Profile unavailable."
msgstr "Profiel onbeschikbaar"
#: mod/dfrn_request.php:267
#, php-format
msgid "%s has received too many connection requests today."
msgstr "%s heeft te veel verzoeken gehad vandaag."
#: mod/dfrn_request.php:268
msgid "Spam protection measures have been invoked."
msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden."
#: mod/dfrn_request.php:269
msgid "Friends are advised to please try again in 24 hours."
msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen."
#: mod/dfrn_request.php:331
msgid "Invalid locator"
msgstr "Ongeldige plaatsbepaler"
#: mod/dfrn_request.php:340
msgid "Invalid email address."
msgstr "Geen geldig e-mailadres"
#: mod/dfrn_request.php:367
msgid "This account has not been configured for email. Request failed."
msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail."
#: mod/dfrn_request.php:463
msgid "Unable to resolve your name at the provided location."
msgstr "Ik kan jouw naam op het opgegeven adres niet vinden."
#: mod/dfrn_request.php:476
msgid "You have already introduced yourself here."
msgstr "Je hebt jezelf hier al voorgesteld."
#: mod/dfrn_request.php:480
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Blijkbaar bent u al bevriend met %s."
#: mod/dfrn_request.php:501
msgid "Invalid profile URL."
msgstr "Ongeldig profiel adres."
#: mod/dfrn_request.php:507 include/follow.php:27
msgid "Disallowed profile URL."
msgstr "Niet toegelaten profiel adres."
#: mod/dfrn_request.php:597
msgid "Your introduction has been sent."
msgstr "Je verzoek is verzonden."
#: mod/dfrn_request.php:650
msgid "Please login to confirm introduction."
msgstr "Log in om je verzoek te bevestigen."
#: mod/dfrn_request.php:660
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Je huidige identiteit is niet de juiste. Log met <strong>dit</strong> profiel in."
#: mod/dfrn_request.php:674 mod/dfrn_request.php:691
msgid "Confirm"
msgstr "Bevestig"
#: mod/dfrn_request.php:686
msgid "Hide this contact"
msgstr "Verberg dit contact"
#: mod/dfrn_request.php:689
#, php-format
msgid "Welcome home %s."
msgstr "Welkom terug %s."
#: mod/dfrn_request.php:690
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s."
#: mod/dfrn_request.php:819
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"
#: mod/dfrn_request.php:839
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
" Friendica site and join us today</a>."
msgstr "Als je nog geen lid bent van het vrije sociale web, <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>."
#: mod/dfrn_request.php:842
msgid "Friend/Connection Request"
msgstr "Vriendschaps-/connectieverzoek"
#: mod/dfrn_request.php:843
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
#: mod/dfrn_request.php:844 mod/follow.php:56
msgid "Please answer the following:"
msgstr "Beantwoord het volgende:"
#: mod/dfrn_request.php:845 mod/follow.php:57
#, php-format
msgid "Does %s know you?"
msgstr "Kent %s jou?"
#: mod/dfrn_request.php:849 mod/follow.php:58
msgid "Add a personal note:"
msgstr "Voeg een persoonlijke opmerking toe:"
#: mod/dfrn_request.php:851 include/contact_selectors.php:76
msgid "Friendica"
msgstr "Friendica"
#: mod/dfrn_request.php:852
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Gefedereerde Sociale Web"
#: mod/dfrn_request.php:853 mod/settings.php:761
#: include/contact_selectors.php:80
msgid "Diaspora"
msgstr "Diaspora"
#: mod/dfrn_request.php:854
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk."
#: mod/dfrn_request.php:855 mod/follow.php:64
msgid "Your Identity Address:"
msgstr "Adres van uw identiteit:"
#: mod/dfrn_request.php:858 mod/follow.php:67
msgid "Submit Request"
msgstr "Aanvraag indienen"
#: mod/directory.php:61
msgid "Find on this site"
msgstr "Op deze website zoeken"
#: mod/directory.php:64
msgid "Site Directory"
msgstr "Websitegids"
#: mod/directory.php:129 mod/profiles.php:746
msgid "Age: "
msgstr "Leeftijd:"
#: mod/directory.php:132
msgid "Gender: "
msgstr "Geslacht:"
#: mod/directory.php:152 mod/events.php:503 include/bb2diaspora.php:161
#: include/event.php:42 include/identity.php:268
msgid "Location:"
msgstr "Plaats:"
#: mod/directory.php:154 include/identity.php:270 include/identity.php:540
msgid "Gender:"
msgstr "Geslacht:"
#: mod/directory.php:156 include/identity.php:273 include/identity.php:560
msgid "Status:"
msgstr "Tijdlijn:"
#: mod/directory.php:158 include/identity.php:275 include/identity.php:571
msgid "Homepage:"
msgstr "Website:"
#: mod/directory.php:160 include/identity.php:277 include/identity.php:581
msgid "About:"
msgstr "Over:"
#: mod/directory.php:205
msgid "No entries (some entries may be hidden)."
msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)."
#: mod/dirfind.php:27
#, php-format
msgid "People Search - %s"
msgstr ""
#: mod/dirfind.php:62 mod/match.php:73
msgid "No matches"
msgstr "Geen resultaten"
#: mod/display.php:343 mod/profile.php:155
msgid "Access to this profile has been restricted."
msgstr "Toegang tot dit profiel is beperkt."
#: mod/display.php:505
msgid "Item has been removed."
msgstr "Item is verwijderd."
#: mod/editpost.php:17 mod/editpost.php:27
msgid "Item not found"
msgstr "Item niet gevonden"
#: mod/editpost.php:40
msgid "Edit post"
msgstr "Bericht bewerken"
#: mod/editpost.php:111 include/conversation.php:1057
msgid "upload photo"
msgstr "Foto uploaden"
#: mod/editpost.php:112 include/conversation.php:1058
msgid "Attach file"
msgstr "Bestand bijvoegen"
#: mod/editpost.php:113 include/conversation.php:1059
msgid "attach file"
msgstr "bestand bijvoegen"
#: mod/editpost.php:115 include/conversation.php:1061
msgid "web link"
msgstr "webadres"
#: mod/editpost.php:116 include/conversation.php:1062
msgid "Insert video link"
msgstr "Voeg video toe"
#: mod/editpost.php:117 include/conversation.php:1063
msgid "video link"
msgstr "video adres"
#: mod/editpost.php:118 include/conversation.php:1064
msgid "Insert audio link"
msgstr "Voeg audio adres toe"
#: mod/editpost.php:119 include/conversation.php:1065
msgid "audio link"
msgstr "audio adres"
#: mod/editpost.php:120 include/conversation.php:1066
msgid "Set your location"
msgstr "Stel uw locatie in"
#: mod/editpost.php:121 include/conversation.php:1067
msgid "set location"
msgstr "Stel uw locatie in"
#: mod/editpost.php:122 include/conversation.php:1068
msgid "Clear browser location"
msgstr "Verwijder locatie uit uw webbrowser"
#: mod/editpost.php:123 include/conversation.php:1069
msgid "clear location"
msgstr "Verwijder locatie uit uw webbrowser"
#: mod/editpost.php:125 include/conversation.php:1075
msgid "Permission settings"
msgstr "Instellingen van rechten"
#: mod/editpost.php:133 include/acl_selectors.php:343
msgid "CC: email addresses"
msgstr "CC: e-mailadressen"
#: mod/editpost.php:134 include/conversation.php:1084
msgid "Public post"
msgstr "Openbare post"
#: mod/editpost.php:137 include/conversation.php:1071
msgid "Set title"
msgstr "Titel plaatsen"
#: mod/editpost.php:139 include/conversation.php:1073
msgid "Categories (comma-separated list)"
msgstr "Categorieën (komma-gescheiden lijst)"
#: mod/editpost.php:140 include/acl_selectors.php:344
msgid "Example: bob@example.com, mary@example.com"
msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"
#: mod/events.php:71 mod/events.php:73
msgid "Event can not end before it has started."
msgstr ""
#: mod/events.php:80 mod/events.php:82
msgid "Event title and start time are required."
msgstr "Titel en begintijd van de gebeurtenis zijn vereist."
#: mod/events.php:317
msgid "l, F j"
msgstr "l j F"
#: mod/events.php:339
msgid "Edit event"
msgstr "Gebeurtenis bewerken"
#: mod/events.php:361 include/text.php:1679 include/text.php:1689
msgid "link to source"
msgstr "Verwijzing naar bron"
#: mod/events.php:397
msgid "Create New Event"
msgstr "Maak een nieuwe gebeurtenis"
#: mod/events.php:398
msgid "Previous"
msgstr "Vorige"
#: mod/events.php:399 mod/install.php:209
msgid "Next"
msgstr "Volgende"
#: mod/events.php:491
msgid "Event details"
msgstr "Gebeurtenis details"
#: mod/events.php:492
msgid "Starting date and Title are required."
msgstr ""
#: mod/events.php:493
msgid "Event Starts:"
msgstr "Gebeurtenis begint:"
#: mod/events.php:493 mod/events.php:505
msgid "Required"
msgstr "Vereist"
#: mod/events.php:495
msgid "Finish date/time is not known or not relevant"
msgstr "Einddatum/tijd is niet gekend of niet relevant"
#: mod/events.php:497
msgid "Event Finishes:"
msgstr "Gebeurtenis eindigt:"
#: mod/events.php:499
msgid "Adjust for viewer timezone"
msgstr "Pas aan aan de tijdzone van de gebruiker"
#: mod/events.php:501
msgid "Description:"
msgstr "Beschrijving:"
#: mod/events.php:505
msgid "Title:"
msgstr "Titel:"
#: mod/events.php:507
msgid "Share this event"
msgstr "Deel deze gebeurtenis"
#: mod/follow.php:24
msgid "You already added this contact."
msgstr ""
#: mod/follow.php:106
msgid "Contact added"
msgstr "Contact toegevoegd"
#: mod/group.php:29
msgid "Group created."
msgstr "Groep aangemaakt."
#: mod/group.php:35
msgid "Could not create group."
msgstr "Kon de groep niet aanmaken."
#: mod/group.php:47 mod/group.php:140
msgid "Group not found."
msgstr "Groep niet gevonden."
#: mod/group.php:60
msgid "Group name changed."
msgstr "Groepsnaam gewijzigd."
#: mod/group.php:72 mod/profperm.php:19 index.php:381
msgid "Permission denied"
msgstr "Toegang geweigerd"
#: mod/group.php:87
msgid "Save Group"
msgstr ""
#: mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr "Maak een groep contacten/vrienden aan."
#: mod/group.php:94 mod/group.php:178 include/group.php:273
msgid "Group Name: "
msgstr "Groepsnaam:"
#: mod/group.php:113
msgid "Group removed."
msgstr "Groep verwijderd."
#: mod/group.php:115
msgid "Unable to remove group."
msgstr "Niet in staat om groep te verwijderen."
#: mod/group.php:177
msgid "Group Editor"
msgstr "Groepsbewerker"
#: mod/group.php:190
msgid "Members"
msgstr "Leden"
#: mod/group.php:222 mod/profperm.php:106
msgid "Click on a contact to add or remove."
msgstr "Klik op een contact om het toe te voegen of te verwijderen."
#: mod/install.php:119
msgid "Friendica Communications Server - Setup"
msgstr ""
#: mod/install.php:125
msgid "Could not connect to database."
msgstr "Kon geen toegang krijgen tot de database."
#: mod/install.php:129
msgid "Could not create table."
msgstr "Kon tabel niet aanmaken."
#: mod/install.php:135
msgid "Your Friendica site database has been installed."
msgstr "De database van je Friendica-website is geïnstalleerd."
#: mod/install.php:140
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql."
#: mod/install.php:141 mod/install.php:208 mod/install.php:530
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Zie het bestand \"INSTALL.txt\"."
#: mod/install.php:153
msgid "Database already in use."
msgstr ""
#: mod/install.php:205
msgid "System check"
msgstr "Systeemcontrole"
#: mod/install.php:210
msgid "Check again"
msgstr "Controleer opnieuw"
#: mod/install.php:229
msgid "Database connection"
msgstr "Verbinding met database"
#: mod/install.php:230
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken."
#: mod/install.php:231
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. "
#: mod/install.php:232
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat."
#: mod/install.php:236
msgid "Database Server Name"
msgstr "Servernaam database"
#: mod/install.php:237
msgid "Database Login Name"
msgstr "Gebruikersnaam database"
#: mod/install.php:238
msgid "Database Login Password"
msgstr "Wachtwoord database"
#: mod/install.php:239
msgid "Database Name"
msgstr "Naam database"
#: mod/install.php:240 mod/install.php:279
msgid "Site administrator email address"
msgstr "E-mailadres van de websitebeheerder"
#: mod/install.php:240 mod/install.php:279
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."
#: mod/install.php:244 mod/install.php:282
msgid "Please select a default timezone for your website"
msgstr "Selecteer een standaard tijdzone voor uw website"
#: mod/install.php:269
msgid "Site settings"
msgstr "Website-instellingen"
#: mod/install.php:323
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver."
#: mod/install.php:324
msgid ""
"If you don't have a command line version of PHP installed on server, you "
"will not be able to run background polling via cron. See <a "
"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
msgstr "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie <a href='http://friendica.com/node/27'>'Activeren van geplande taken'</a>"
#: mod/install.php:328
msgid "PHP executable path"
msgstr "PATH van het PHP commando"
#: mod/install.php:328
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten."
#: mod/install.php:333
msgid "Command line PHP"
msgstr "PHP-opdrachtregel"
#: mod/install.php:342
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
msgstr ""
#: mod/install.php:343
msgid "Found PHP version: "
msgstr "Gevonden PHP versie:"
#: mod/install.php:345
msgid "PHP cli binary"
msgstr ""
#: mod/install.php:356
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd."
#: mod/install.php:357
msgid "This is required for message delivery to work."
msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken."
#: mod/install.php:359
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
#: mod/install.php:380
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr ""
#: mod/install.php:381
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait."
#: mod/install.php:383
msgid "Generate encryption keys"
msgstr ""
#: mod/install.php:390
msgid "libCurl PHP module"
msgstr "libCurl PHP module"
#: mod/install.php:391
msgid "GD graphics PHP module"
msgstr "GD graphics PHP module"
#: mod/install.php:392
msgid "OpenSSL PHP module"
msgstr "OpenSSL PHP module"
#: mod/install.php:393
msgid "mysqli PHP module"
msgstr "mysqli PHP module"
#: mod/install.php:394
msgid "mb_string PHP module"
msgstr "mb_string PHP module"
#: mod/install.php:399 mod/install.php:401
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite module"
#: mod/install.php:399
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd."
#: mod/install.php:407
msgid "Error: libCURL PHP module required but not installed."
msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd."
#: mod/install.php:411
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd."
#: mod/install.php:415
msgid "Error: openssl PHP module required but not installed."
msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd."
#: mod/install.php:419
msgid "Error: mysqli PHP module required but not installed."
msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd."
#: mod/install.php:423
msgid "Error: mb_string PHP module required but not installed."
msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd."
#: mod/install.php:440
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen."
#: mod/install.php:441
msgid ""
"This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can."
msgstr "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel."
#: mod/install.php:442
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map."
#: mod/install.php:443
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies."
#: mod/install.php:446
msgid ".htconfig.php is writable"
msgstr ".htconfig.php is schrijfbaar"
#: mod/install.php:456
msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen."
#: mod/install.php:457
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/smarty3/ under the Friendica top level "
"folder."
msgstr "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie."
#: mod/install.php:458
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map."
#: mod/install.php:459
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/smarty3/ only--not the template files (.tpl) that it contains."
msgstr "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten."
#: mod/install.php:462
msgid "view/smarty3 is writable"
msgstr "view/smarty3 is schrijfbaar"
#: mod/install.php:478
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr ""
#: mod/install.php:480
msgid "Url rewrite is working"
msgstr ""
#: mod/install.php:489
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver."
#: mod/install.php:528
msgid "<h1>What next</h1>"
msgstr "<h1>Wat nu</h1>"
#: mod/install.php:529
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller."
#: mod/item.php:115
msgid "Unable to locate original post."
msgstr "Ik kan de originele post niet meer vinden."
#: mod/item.php:347
msgid "Empty post discarded."
msgstr "Lege post weggegooid."
#: mod/item.php:486 mod/wall_upload.php:169 mod/wall_upload.php:178
#: mod/wall_upload.php:185 include/message.php:144 include/Photo.php:951
#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995
msgid "Wall Photos"
msgstr ""
#: mod/item.php:860
msgid "System error. Post not saved."
msgstr "Systeemfout. Post niet bewaard."
#: mod/item.php:989
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."
#: mod/item.php:991
#, php-format
msgid "You may visit them online at %s"
msgstr "Je kunt ze online bezoeken op %s"
#: mod/item.php:992
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen."
#: mod/item.php:996
#, php-format
msgid "%s posted an update."
msgstr "%s heeft een wijziging geplaatst."
#: mod/match.php:13
msgid "Profile Match"
msgstr "Profielmatch"
#: mod/match.php:22
msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."
#: mod/match.php:64
msgid "is interested in:"
msgstr "Is geïnteresseerd in:"
#: mod/match.php:65 mod/suggest.php:92 include/contact_widgets.php:10
#: include/identity.php:188
msgid "Connect"
msgstr "Verbinden"
#: mod/network.php:143
#, php-format
msgid "Search Results For: %s"
msgstr ""
#: mod/network.php:197 include/group.php:277
msgid "add"
msgstr "toevoegen"
#: mod/network.php:358
msgid "Commented Order"
msgstr "Nieuwe reacties bovenaan"
#: mod/network.php:361
msgid "Sort by Comment Date"
msgstr "Berichten met nieuwe reacties bovenaan"
#: mod/network.php:364
msgid "Posted Order"
msgstr "Nieuwe berichten bovenaan"
#: mod/network.php:367
msgid "Sort by Post Date"
msgstr "Nieuwe berichten bovenaan"
#: mod/network.php:376
msgid "Posts that mention or involve you"
msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben"
#: mod/network.php:382
msgid "New"
msgstr "Nieuw"
#: mod/network.php:385
msgid "Activity Stream - by date"
msgstr "Activiteitenstroom - volgens datum"
#: mod/network.php:391
msgid "Shared Links"
msgstr "Gedeelde links"
#: mod/network.php:394
msgid "Interesting Links"
msgstr "Interessante links"
#: mod/network.php:400
msgid "Starred"
msgstr "Met ster"
#: mod/network.php:403
msgid "Favourite Posts"
msgstr "Favoriete berichten"
#: mod/network.php:460
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid_plural ""
"Warning: This group contains %s members from an insecure network."
msgstr[0] "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk."
msgstr[1] "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk."
#: mod/network.php:463
msgid "Private messages to this group are at risk of public disclosure."
msgstr "Privéberichten naar deze groep kunnen openbaar gemaakt worden."
#: mod/network.php:572
#, php-format
msgid "Contact: %s"
msgstr ""
#: mod/network.php:576
msgid "Private messages to this person are at risk of public disclosure."
msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."
#: mod/network.php:581
msgid "Invalid contact."
msgstr "Ongeldig contact."
#: mod/notes.php:44 include/identity.php:670
msgid "Personal Notes"
msgstr "Persoonlijke Nota's"
#: mod/p.php:9
msgid "Not Extended"
msgstr ""
#: mod/photos.php:84 include/identity.php:649
msgid "Photo Albums"
msgstr "Fotoalbums"
#: mod/regmod.php:55
msgid "Account approved."
msgstr "Account goedgekeurd."
#: mod/photos.php:85 mod/photos.php:1836
msgid "Recent Photos"
msgstr "Recente foto's"
#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838
msgid "Upload New Photos"
msgstr "Nieuwe foto's uploaden"
#: mod/photos.php:102 mod/settings.php:34
msgid "everybody"
msgstr "iedereen"
#: mod/photos.php:166
msgid "Contact information unavailable"
msgstr "Contactinformatie niet beschikbaar"
#: mod/photos.php:187
msgid "Album not found."
msgstr "Album niet gevonden"
#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224
msgid "Delete Album"
msgstr "Verwijder album"
#: mod/photos.php:220
msgid "Do you really want to delete this photo album and all its photos?"
msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"
#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534
msgid "Delete Photo"
msgstr "Verwijder foto"
#: mod/photos.php:309
msgid "Do you really want to delete this photo?"
msgstr "Wil je echt deze foto verwijderen?"
#: mod/photos.php:684
#: mod/regmod.php:92
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr "%1$s is gelabeld in %2$s door %3$s"
msgid "Registration revoked for %s"
msgstr "Registratie ingetrokken voor %s"
#: mod/photos.php:684
msgid "a photo"
msgstr "een foto"
#: mod/regmod.php:104
msgid "Please login."
msgstr "Inloggen."
#: mod/photos.php:789 mod/profile_photo.php:144 mod/wall_upload.php:122
#: mod/uimport.php:66
msgid "Move account"
msgstr "Account verplaatsen"
#: mod/uimport.php:67
msgid "You can import an account from another Friendica server."
msgstr "Je kunt een account van een andere Friendica server importeren."
#: mod/uimport.php:68
msgid ""
"You need to export your account from the old server and upload it here. We "
"will recreate your old account here with all your contacts. We will try also"
" to inform your friends that you moved here."
msgstr "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent."
#: mod/uimport.php:69
msgid ""
"This feature is experimental. We can't import contacts from the OStatus "
"network (GNU Social/Statusnet) or from Diaspora"
msgstr ""
#: mod/uimport.php:70
msgid "Account file"
msgstr "Account bestand"
#: mod/uimport.php:70
msgid ""
"To export your account, go to \"Settings->Export your personal data\" and "
"select \"Export account\""
msgstr ""
#: mod/attach.php:8
msgid "Item not available."
msgstr "Item niet beschikbaar"
#: mod/attach.php:20
msgid "Item was not found."
msgstr "Item niet gevonden"
#: boot.php:771
msgid "Delete this item?"
msgstr "Dit item verwijderen?"
#: boot.php:774
msgid "show fewer"
msgstr "Minder tonen"
#: boot.php:1148
#, php-format
msgid "Image exceeds size limit of %s"
msgstr ""
msgid "Update %s failed. See error logs."
msgstr "Wijziging %s mislukt. Lees de error logbestanden."
#: mod/photos.php:797
msgid "Image file is empty."
msgstr "Afbeeldingsbestand is leeg."
#: boot.php:1255
msgid "Create a New Account"
msgstr "Nieuwe account aanmaken"
#: mod/photos.php:829 mod/profile_photo.php:153 mod/wall_upload.php:144
msgid "Unable to process image."
msgstr "Niet in staat om de afbeelding te verwerken"
#: boot.php:1280 include/nav.php:72
msgid "Logout"
msgstr "Uitloggen"
#: mod/photos.php:856 mod/profile_photo.php:301 mod/wall_upload.php:172
msgid "Image upload failed."
msgstr "Uploaden van afbeelding mislukt."
#: boot.php:1283
msgid "Nickname or Email address: "
msgstr "Bijnaam of e-mailadres:"
#: mod/photos.php:952
msgid "No photos selected"
msgstr "Geen foto's geselecteerd"
#: mod/photos.php:1053 mod/videos.php:298
msgid "Access to this item is restricted."
msgstr "Toegang tot dit item is beperkt."
#: mod/photos.php:1114
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."
#: mod/photos.php:1149
msgid "Upload Photos"
msgstr "Upload foto's"
#: mod/photos.php:1153 mod/photos.php:1219
msgid "New album name: "
msgstr "Nieuwe albumnaam: "
#: mod/photos.php:1154
msgid "or existing album name: "
msgstr "of bestaande albumnaam: "
#: mod/photos.php:1155
msgid "Do not show a status post for this upload"
msgstr "Toon geen bericht op je tijdlijn van deze upload"
#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346
msgid "Permissions"
msgstr "Rechten"
#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1172
msgid "Show to Groups"
msgstr "Tonen aan groepen"
#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1173
msgid "Show to Contacts"
msgstr "Tonen aan contacten"
#: mod/photos.php:1168
msgid "Private Photo"
msgstr "Privé foto"
#: mod/photos.php:1169
msgid "Public Photo"
msgstr "Publieke foto"
#: mod/photos.php:1232
msgid "Edit Album"
msgstr "Album wijzigen"
#: mod/photos.php:1238
msgid "Show Newest First"
msgstr "Toon niewste eerst"
#: mod/photos.php:1240
msgid "Show Oldest First"
msgstr "Toon oudste eerst"
#: mod/photos.php:1268 mod/photos.php:1821
msgid "View Photo"
msgstr "Bekijk foto"
#: mod/photos.php:1314
msgid "Permission denied. Access to this item may be restricted."
msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."
#: mod/photos.php:1316
msgid "Photo not available"
msgstr "Foto is niet beschikbaar"
#: mod/photos.php:1372
msgid "View photo"
msgstr "Bekijk foto"
#: mod/photos.php:1372
msgid "Edit photo"
msgstr "Bewerk foto"
#: mod/photos.php:1373
msgid "Use as profile photo"
msgstr "Gebruik als profielfoto"
#: mod/photos.php:1398
msgid "View Full Size"
msgstr "Bekijk in volledig formaat"
#: mod/photos.php:1477
msgid "Tags: "
msgstr "Labels: "
#: mod/photos.php:1480
msgid "[Remove any tag]"
msgstr "[Alle labels verwijderen]"
#: mod/photos.php:1520
msgid "New album name"
msgstr "Nieuwe albumnaam"
#: mod/photos.php:1521
msgid "Caption"
msgstr "Onderschrift"
#: mod/photos.php:1522
msgid "Add a Tag"
msgstr "Een label toevoegen"
#: mod/photos.php:1522
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "
#: mod/photos.php:1523
msgid "Do not rotate"
msgstr ""
#: mod/photos.php:1524
msgid "Rotate CW (right)"
msgstr "Roteren met de klok mee (rechts)"
#: mod/photos.php:1525
msgid "Rotate CCW (left)"
msgstr "Roteren tegen de klok in (links)"
#: mod/photos.php:1540
msgid "Private photo"
msgstr "Privé foto"
#: mod/photos.php:1541
msgid "Public photo"
msgstr "Publieke foto"
#: mod/photos.php:1563 include/conversation.php:1055
msgid "Share"
msgstr "Delen"
#: mod/photos.php:1827 mod/videos.php:380
msgid "View Album"
msgstr "Album bekijken"
#: mod/ping.php:233
msgid "{0} wants to be your friend"
msgstr "{0} wilt je vriend worden"
#: mod/ping.php:248
msgid "{0} sent you a message"
msgstr "{0} stuurde jou een bericht"
#: mod/ping.php:263
msgid "{0} requested registration"
msgstr "{0} vroeg om zich te registreren"
#: mod/profile.php:21 include/identity.php:77
msgid "Requested profile is not available."
msgstr "Gevraagde profiel is niet beschikbaar."
#: mod/profile.php:179
msgid "Tips for New Members"
msgstr "Tips voor nieuwe leden"
#: mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Afbeelding opgeladen, maar bijsnijden mislukt."
#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
#: mod/profile_photo.php:308
#, php-format
msgid "Image size reduction [%s] failed."
msgstr "Verkleining van de afbeelding [%s] mislukt."
#: mod/profile_photo.php:118
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen."
#: mod/profile_photo.php:128
msgid "Unable to process image"
msgstr "Ik kan de afbeelding niet verwerken"
#: mod/profile_photo.php:242
msgid "Upload File:"
msgstr "Upload bestand:"
#: mod/profile_photo.php:243
msgid "Select a profile:"
msgstr "Kies een profiel:"
#: mod/profile_photo.php:245
msgid "Upload"
msgstr "Uploaden"
#: mod/profile_photo.php:248 mod/settings.php:1088
msgid "or"
msgstr "of"
#: mod/profile_photo.php:248
msgid "skip this step"
msgstr "Deze stap overslaan"
#: mod/profile_photo.php:248
msgid "select a photo from your photo albums"
msgstr "Kies een foto uit je fotoalbums"
#: mod/profile_photo.php:262
msgid "Crop Image"
msgstr "Afbeelding bijsnijden"
#: mod/profile_photo.php:263
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat."
#: mod/profile_photo.php:265
msgid "Done Editing"
msgstr "Wijzigingen compleet"
#: mod/profile_photo.php:299
msgid "Image uploaded successfully."
msgstr "Uploaden van afbeelding gelukt."
#: mod/profiles.php:37
msgid "Profile deleted."
msgstr "Profiel verwijderd"
#: mod/profiles.php:55 mod/profiles.php:89
msgid "Profile-"
msgstr "Profiel-"
#: mod/profiles.php:74 mod/profiles.php:117
msgid "New profile created."
msgstr "Nieuw profiel aangemaakt."
#: mod/profiles.php:95
msgid "Profile unavailable to clone."
msgstr "Profiel niet beschikbaar om te klonen."
#: mod/profiles.php:189
msgid "Profile Name is required."
msgstr "Profielnaam is vereist."
#: mod/profiles.php:336
msgid "Marital Status"
msgstr "Echtelijke staat"
#: mod/profiles.php:340
msgid "Romantic Partner"
msgstr "Romantische Partner"
#: mod/profiles.php:344
msgid "Likes"
msgstr "Houdt van"
#: mod/profiles.php:348
msgid "Dislikes"
msgstr "Houdt niet van"
#: mod/profiles.php:352
msgid "Work/Employment"
msgstr "Werk"
#: mod/profiles.php:355
msgid "Religion"
msgstr "Godsdienst"
#: mod/profiles.php:359
msgid "Political Views"
msgstr "Politieke standpunten"
#: mod/profiles.php:363
msgid "Gender"
msgstr "Geslacht"
#: mod/profiles.php:367
msgid "Sexual Preference"
msgstr "Seksuele Voorkeur"
#: mod/profiles.php:371
msgid "Homepage"
msgstr "Tijdlijn"
#: mod/profiles.php:375 mod/profiles.php:694
msgid "Interests"
msgstr "Interesses"
#: mod/profiles.php:379
msgid "Address"
msgstr "Adres"
#: mod/profiles.php:386 mod/profiles.php:690
msgid "Location"
msgstr "Plaats"
#: mod/profiles.php:469
msgid "Profile updated."
msgstr "Profiel bijgewerkt."
#: mod/profiles.php:564
msgid " and "
msgstr "en"
#: mod/profiles.php:572
msgid "public profile"
msgstr "publiek profiel"
#: mod/profiles.php:575
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr "%1$s veranderde %2$s naar &ldquo;%3$s&rdquo;"
#: mod/profiles.php:576
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr " - Bezoek %2$s van %1$s"
#: mod/profiles.php:579
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd."
#: mod/profiles.php:654
msgid "Hide contacts and friends:"
msgstr ""
#: mod/profiles.php:659
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?"
#: mod/profiles.php:681
msgid "Edit Profile Details"
msgstr "Profieldetails bewerken"
#: mod/profiles.php:683
msgid "Change Profile Photo"
msgstr "Profielfoto wijzigen"
#: mod/profiles.php:684
msgid "View this profile"
msgstr "Dit profiel bekijken"
#: mod/profiles.php:685
msgid "Create a new profile using these settings"
msgstr "Nieuw profiel aanmaken met deze instellingen"
#: mod/profiles.php:686
msgid "Clone this profile"
msgstr "Dit profiel klonen"
#: mod/profiles.php:687
msgid "Delete this profile"
msgstr "Dit profiel verwijderen"
#: mod/profiles.php:688
msgid "Basic information"
msgstr ""
#: mod/profiles.php:689
msgid "Profile picture"
msgstr ""
#: mod/profiles.php:691
msgid "Preferences"
msgstr ""
#: mod/profiles.php:692
msgid "Status information"
msgstr ""
#: mod/profiles.php:693
msgid "Additional information"
msgstr ""
#: mod/profiles.php:696
msgid "Profile Name:"
msgstr "Profiel Naam:"
#: mod/profiles.php:697
msgid "Your Full Name:"
msgstr "Je volledige naam:"
#: mod/profiles.php:698
msgid "Title/Description:"
msgstr "Titel/Beschrijving:"
#: mod/profiles.php:699
msgid "Your Gender:"
msgstr "Je Geslacht:"
#: mod/profiles.php:700
msgid "Birthday :"
msgstr ""
#: mod/profiles.php:701
msgid "Street Address:"
msgstr "Postadres:"
#: mod/profiles.php:702
msgid "Locality/City:"
msgstr "Gemeente/Stad:"
#: mod/profiles.php:703
msgid "Postal/Zip Code:"
msgstr "Postcode:"
#: mod/profiles.php:704
msgid "Country:"
msgstr "Land:"
#: mod/profiles.php:705
msgid "Region/State:"
msgstr "Regio/Staat:"
#: mod/profiles.php:706
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Echtelijke Staat:"
#: mod/profiles.php:707
msgid "Who: (if applicable)"
msgstr "Wie: (indien toepasbaar)"
#: mod/profiles.php:708
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl"
#: mod/profiles.php:709
msgid "Since [date]:"
msgstr "Sinds [datum]:"
#: mod/profiles.php:710 include/identity.php:569
msgid "Sexual Preference:"
msgstr "Seksuele Voorkeur:"
#: mod/profiles.php:711
msgid "Homepage URL:"
msgstr "Adres tijdlijn:"
#: mod/profiles.php:712 include/identity.php:573
msgid "Hometown:"
msgstr "Woonplaats:"
#: mod/profiles.php:713 include/identity.php:577
msgid "Political Views:"
msgstr "Politieke standpunten:"
#: mod/profiles.php:714
msgid "Religious Views:"
msgstr "Geloof:"
#: mod/profiles.php:715
msgid "Public Keywords:"
msgstr "Publieke Sleutelwoorden:"
#: mod/profiles.php:716
msgid "Private Keywords:"
msgstr "Privé Sleutelwoorden:"
#: mod/profiles.php:717 include/identity.php:585
msgid "Likes:"
msgstr "Houdt van:"
#: mod/profiles.php:718 include/identity.php:587
msgid "Dislikes:"
msgstr "Houdt niet van:"
#: mod/profiles.php:719
msgid "Example: fishing photography software"
msgstr "Voorbeeld: vissen fotografie software"
#: mod/profiles.php:720
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)"
#: mod/profiles.php:721
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"
#: mod/profiles.php:722
msgid "Tell us about yourself..."
msgstr "Vertel iets over jezelf..."
#: mod/profiles.php:723
msgid "Hobbies/Interests"
msgstr "Hobby's/Interesses"
#: mod/profiles.php:724
msgid "Contact information and Social Networks"
msgstr "Contactinformatie en sociale netwerken"
#: mod/profiles.php:725
msgid "Musical interests"
msgstr "Muzikale interesses"
#: mod/profiles.php:726
msgid "Books, literature"
msgstr "Boeken, literatuur"
#: mod/profiles.php:727
msgid "Television"
msgstr "Televisie"
#: mod/profiles.php:728
msgid "Film/dance/culture/entertainment"
msgstr "Film/dans/cultuur/ontspanning"
#: mod/profiles.php:729
msgid "Love/romance"
msgstr "Liefde/romance"
#: mod/profiles.php:730
msgid "Work/employment"
msgstr "Werk"
#: mod/profiles.php:731
msgid "School/education"
msgstr "School/opleiding"
#: mod/profiles.php:736
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet."
#: mod/profiles.php:799
msgid "Edit/Manage Profiles"
msgstr "Wijzig/Beheer Profielen"
#: mod/profiles.php:800 include/identity.php:231 include/identity.php:257
msgid "Change profile photo"
msgstr "Profiel foto wijzigen"
#: mod/profiles.php:801 include/identity.php:232
msgid "Create New Profile"
msgstr "Maak nieuw profiel"
#: mod/profiles.php:812 include/identity.php:242
msgid "Profile Image"
msgstr "Profiel afbeelding"
#: mod/profiles.php:814 include/identity.php:245
msgid "visible to everybody"
msgstr "zichtbaar voor iedereen"
#: mod/profiles.php:815 include/identity.php:246
msgid "Edit visibility"
msgstr "Pas zichtbaarheid aan"
#: mod/profperm.php:25 mod/profperm.php:56
msgid "Invalid profile identifier."
msgstr "Ongeldige profiel-identificatie."
#: mod/profperm.php:102
msgid "Profile Visibility Editor"
msgstr ""
#: mod/profperm.php:115
msgid "Visible To"
msgstr "Zichtbaar voor"
#: mod/profperm.php:131
msgid "All Contacts (with secure profile access)"
msgstr "Alle contacten (met veilige profieltoegang)"
#: mod/search.php:180
#, php-format
msgid "Items tagged with: %s"
msgstr ""
#: mod/search.php:182
#, php-format
msgid "Search results for: %s"
msgstr ""
#: mod/share.php:38
msgid "link"
msgstr "link"
#: mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr "Wil je echt dit voorstel verwijderen?"
#: mod/suggest.php:76
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."
#: mod/suggest.php:94
msgid "Ignore/Hide"
msgstr "Negeren/Verbergen"
#: mod/videos.php:113
msgid "Do you really want to delete this video?"
msgstr ""
#: mod/videos.php:118
msgid "Delete Video"
msgstr ""
#: mod/videos.php:197
msgid "No videos selected"
msgstr "Geen video's geselecteerd"
#: mod/videos.php:373 include/text.php:1429
msgid "View Video"
msgstr "Bekijk Video"
#: mod/videos.php:389
msgid "Recent Videos"
msgstr "Recente video's"
#: mod/videos.php:391
msgid "Upload New Videos"
msgstr "Nieuwe video's uploaden"
#: mod/wall_attach.php:75
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
msgstr ""
#: mod/wall_attach.php:75
msgid "Or - did you try to upload an empty file?"
msgstr ""
#: mod/wall_attach.php:81
#, php-format
msgid "File exceeds size limit of %s"
msgstr ""
#: mod/wall_attach.php:122 mod/wall_attach.php:133
msgid "File upload failed."
msgstr "Uploaden van bestand mislukt."
#: mod/register.php:92
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."
#: mod/register.php:97
#, php-format
msgid ""
"Failed to send email message. Here your accout details:<br> login: %s<br> "
"password: %s<br><br>You can change your password after login."
msgstr ""
#: mod/register.php:107
msgid "Your registration can not be processed."
msgstr "Je registratie kan niet verwerkt worden."
#: mod/register.php:150
msgid "Your registration is pending approval by the site owner."
msgstr "Jouw registratie wacht op goedkeuring van de beheerder."
#: mod/register.php:216
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."
#: mod/register.php:217
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."
#: mod/register.php:218
msgid "Your OpenID (optional): "
msgstr "Je OpenID (optioneel):"
#: mod/register.php:232
msgid "Include your profile in member directory?"
msgstr "Je profiel in de ledengids opnemen?"
#: mod/register.php:256
msgid "Membership on this site is by invitation only."
msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging."
#: mod/register.php:257
msgid "Your invitation ID: "
msgstr "Je uitnodigingsid:"
#: mod/register.php:268
msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Je volledige naam (bijv. Jan Jansens):"
#: mod/register.php:269
msgid "Your Email Address: "
msgstr "Je email adres:"
#: mod/register.php:271 mod/settings.php:1144
msgid "New Password:"
msgstr "Nieuw Wachtwoord:"
#: mod/register.php:271
msgid "Leave empty for an auto generated password."
msgstr ""
#: mod/register.php:272 mod/settings.php:1145
msgid "Confirm:"
msgstr "Bevestig:"
#: mod/register.php:273
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@$sitename</strong>' zijn."
#: mod/register.php:274
msgid "Choose a nickname: "
msgstr "Kies een bijnaam:"
#: mod/register.php:277 include/nav.php:109 boot.php:1238
msgid "Register"
msgstr "Registreer"
#: mod/register.php:284
msgid "Import your profile to this friendica instance"
msgstr ""
#: mod/settings.php:46
msgid "Additional features"
msgstr "Extra functies"
#: mod/settings.php:51
msgid "Display"
msgstr "Weergave"
#: mod/settings.php:57 mod/settings.php:805
msgid "Social Networks"
msgstr "Sociale netwerken"
#: mod/settings.php:67 include/nav.php:171
msgid "Delegations"
msgstr ""
#: mod/settings.php:72
msgid "Connected apps"
msgstr "Verbonden applicaties"
#: mod/settings.php:82
msgid "Remove account"
msgstr "Account verwijderen"
#: mod/settings.php:134
msgid "Missing some important data!"
msgstr "Een belangrijk gegeven ontbreekt!"
#: mod/settings.php:245
msgid "Failed to connect with email account using the settings provided."
msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen."
#: mod/settings.php:250
msgid "Email settings updated."
msgstr "E-mail instellingen bijgewerkt.."
#: mod/settings.php:265
msgid "Features updated"
msgstr "Functies bijgewerkt"
#: mod/settings.php:328
msgid "Relocate message has been send to your contacts"
msgstr ""
#: mod/settings.php:342 include/user.php:39
msgid "Passwords do not match. Password unchanged."
msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."
#: mod/settings.php:347
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd."
#: mod/settings.php:355
msgid "Wrong password."
msgstr "Verkeerd wachtwoord."
#: mod/settings.php:366
msgid "Password changed."
msgstr "Wachtwoord gewijzigd."
#: mod/settings.php:368
msgid "Password update failed. Please try again."
msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw."
#: mod/settings.php:435
msgid " Please use a shorter name."
msgstr "Gebruik een kortere naam."
#: mod/settings.php:437
msgid " Name too short."
msgstr "Naam te kort."
#: mod/settings.php:446
msgid "Wrong Password"
msgstr "Verkeerd wachtwoord"
#: mod/settings.php:451
msgid " Not valid email."
msgstr "Geen geldig e-mailadres."
#: mod/settings.php:457
msgid " Cannot change to that email."
msgstr "Kan niet veranderen naar die e-mail."
#: mod/settings.php:513
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt."
#: mod/settings.php:517
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep."
#: mod/settings.php:547
msgid "Settings updated."
msgstr "Instellingen bijgewerkt."
#: mod/settings.php:620 mod/settings.php:646 mod/settings.php:682
msgid "Add application"
msgstr "Toepassing toevoegen"
#: mod/settings.php:624 mod/settings.php:650
msgid "Consumer Key"
msgstr "Gebruikerssleutel"
#: mod/settings.php:625 mod/settings.php:651
msgid "Consumer Secret"
msgstr "Gebruikersgeheim"
#: mod/settings.php:626 mod/settings.php:652
msgid "Redirect"
msgstr "Doorverwijzing"
#: mod/settings.php:627 mod/settings.php:653
msgid "Icon url"
msgstr "URL pictogram"
#: mod/settings.php:638
msgid "You can't edit this application."
msgstr "Je kunt deze toepassing niet wijzigen."
#: mod/settings.php:681
msgid "Connected Apps"
msgstr "Verbonden applicaties"
#: mod/settings.php:685
msgid "Client key starts with"
msgstr ""
#: mod/settings.php:686
msgid "No name"
msgstr "Geen naam"
#: mod/settings.php:687
msgid "Remove authorization"
msgstr "Verwijder authorisatie"
#: mod/settings.php:699
msgid "No Plugin settings configured"
msgstr ""
#: mod/settings.php:707
msgid "Plugin Settings"
msgstr "Plugin Instellingen"
#: mod/settings.php:721
msgid "Off"
msgstr "Uit"
#: mod/settings.php:721
msgid "On"
msgstr "Aan"
#: mod/settings.php:729
msgid "Additional Features"
msgstr "Extra functies"
#: mod/settings.php:739 mod/settings.php:743
msgid "General Social Media Settings"
msgstr ""
#: mod/settings.php:749
msgid "Disable intelligent shortening"
msgstr ""
#: mod/settings.php:751
msgid ""
"Normally the system tries to find the best link to add to shortened posts. "
"If this option is enabled then every shortened post will always point to the"
" original friendica post."
msgstr ""
#: mod/settings.php:761 mod/settings.php:762
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s"
#: mod/settings.php:761 mod/settings.php:762
msgid "enabled"
msgstr "ingeschakeld"
#: mod/settings.php:761 mod/settings.php:762
msgid "disabled"
msgstr "uitgeschakeld"
#: mod/settings.php:762
msgid "StatusNet"
msgstr "StatusNet"
#: mod/settings.php:798
msgid "Email access is disabled on this site."
msgstr "E-mailtoegang is op deze website uitgeschakeld."
#: mod/settings.php:810
msgid "Email/Mailbox Setup"
msgstr "E-mail Instellen"
#: mod/settings.php:811
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken."
#: mod/settings.php:812
msgid "Last successful email check:"
msgstr "Laatste succesvolle e-mail controle:"
#: mod/settings.php:814
msgid "IMAP server name:"
msgstr "IMAP server naam:"
#: mod/settings.php:815
msgid "IMAP port:"
msgstr "IMAP poort:"
#: mod/settings.php:816
msgid "Security:"
msgstr "Beveiliging:"
#: mod/settings.php:816 mod/settings.php:821
msgid "None"
msgstr "Geen"
#: mod/settings.php:817
msgid "Email login name:"
msgstr "E-mail login naam:"
#: mod/settings.php:818
msgid "Email password:"
msgstr "E-mail wachtwoord:"
#: mod/settings.php:819
msgid "Reply-to address:"
msgstr "Antwoord adres:"
#: mod/settings.php:820
msgid "Send public posts to all email contacts:"
msgstr "Openbare posts naar alle e-mail contacten versturen:"
#: mod/settings.php:821
msgid "Action after import:"
msgstr "Actie na importeren:"
#: mod/settings.php:821
msgid "Mark as seen"
msgstr "Als 'gelezen' markeren"
#: mod/settings.php:821
msgid "Move to folder"
msgstr "Naar map verplaatsen"
#: mod/settings.php:822
msgid "Move to folder:"
msgstr "Verplaatsen naar map:"
#: mod/settings.php:903
msgid "Display Settings"
msgstr "Scherminstellingen"
#: mod/settings.php:909 mod/settings.php:925
msgid "Display Theme:"
msgstr "Schermthema:"
#: mod/settings.php:910
msgid "Mobile Theme:"
msgstr "Mobiel thema:"
#: mod/settings.php:911
msgid "Update browser every xx seconds"
msgstr "Browser elke xx seconden verversen"
#: mod/settings.php:911
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimum 10 seconden, geen maximum"
#: mod/settings.php:912
msgid "Number of items to display per page:"
msgstr "Aantal items te tonen per pagina:"
#: mod/settings.php:912 mod/settings.php:913
msgid "Maximum of 100 items"
msgstr "Maximum 100 items"
#: mod/settings.php:913
msgid "Number of items to display per page when viewed from mobile device:"
msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:"
#: mod/settings.php:914
msgid "Don't show emoticons"
msgstr "Emoticons niet tonen"
#: mod/settings.php:915
msgid "Don't show notices"
msgstr ""
#: mod/settings.php:916
msgid "Infinite scroll"
msgstr "Oneindig scrollen"
#: mod/settings.php:917
msgid "Automatic updates only at the top of the network page"
msgstr ""
#: mod/settings.php:995
msgid "User Types"
msgstr "Gebruikerstypes"
#: mod/settings.php:996
msgid "Community Types"
msgstr "Forum/groepstypes"
#: mod/settings.php:997
msgid "Normal Account Page"
msgstr "Normale accountpagina"
#: mod/settings.php:998
msgid "This account is a normal personal profile"
msgstr "Deze account is een normaal persoonlijk profiel"
#: mod/settings.php:1001
msgid "Soapbox Page"
msgstr "Zeepkist-pagina"
#: mod/settings.php:1002
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen."
#: mod/settings.php:1005
msgid "Community Forum/Celebrity Account"
msgstr "Forum/groeps- of beroemdheid-account"
#: mod/settings.php:1006
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven."
#: mod/settings.php:1009
msgid "Automatic Friend Page"
msgstr "Automatisch Vriendschapspagina"
#: mod/settings.php:1010
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden."
#: mod/settings.php:1013
msgid "Private Forum [Experimental]"
msgstr "Privé-forum [experimenteel]"
#: mod/settings.php:1014
msgid "Private forum - approved members only"
msgstr "Privé-forum - enkel voor goedgekeurde leden"
#: mod/settings.php:1026
msgid "OpenID:"
msgstr "OpenID:"
#: mod/settings.php:1026
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."
#: mod/settings.php:1036
msgid "Publish your default profile in your local site directory?"
msgstr "Je standaardprofiel in je lokale gids publiceren?"
#: mod/settings.php:1042
msgid "Publish your default profile in the global social directory?"
msgstr "Je standaardprofiel in de globale sociale gids publiceren?"
#: mod/settings.php:1050
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"
#: mod/settings.php:1054 include/acl_selectors.php:330
msgid "Hide your profile details from unknown viewers?"
msgstr "Je profieldetails verbergen voor onbekende bezoekers?"
#: mod/settings.php:1054
msgid ""
"If enabled, posting public messages to Diaspora and other networks isn't "
"possible."
msgstr ""
#: mod/settings.php:1059
msgid "Allow friends to post to your profile page?"
msgstr "Vrienden toestaan om op jou profielpagina te posten?"
#: mod/settings.php:1065
msgid "Allow friends to tag your posts?"
msgstr "Sta vrienden toe om jouw berichten te labelen?"
#: mod/settings.php:1071
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?"
#: mod/settings.php:1077
msgid "Permit unknown people to send you private mail?"
msgstr "Mogen onbekende personen jou privé berichten sturen?"
#: mod/settings.php:1085
msgid "Profile is <strong>not published</strong>."
msgstr "Profiel is <strong>niet gepubliceerd</strong>."
#: mod/settings.php:1093
msgid "Your Identity Address is"
msgstr "Jouw Identiteitsadres is"
#: mod/settings.php:1102
msgid "Automatically expire posts after this many days:"
msgstr "Laat berichten automatisch vervallen na zo veel dagen:"
#: mod/settings.php:1102
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."
#: mod/settings.php:1103
msgid "Advanced expiration settings"
msgstr "Geavanceerde instellingen voor vervallen"
#: mod/settings.php:1104
msgid "Advanced Expiration"
msgstr "Geavanceerd Verval:"
#: mod/settings.php:1105
msgid "Expire posts:"
msgstr "Laat berichten vervallen:"
#: mod/settings.php:1106
msgid "Expire personal notes:"
msgstr "Laat persoonlijke aantekeningen verlopen:"
#: mod/settings.php:1107
msgid "Expire starred posts:"
msgstr "Laat berichten met ster verlopen"
#: mod/settings.php:1108
msgid "Expire photos:"
msgstr "Laat foto's vervallen:"
#: mod/settings.php:1109
msgid "Only expire posts by others:"
msgstr "Laat alleen berichten door anderen vervallen:"
#: mod/settings.php:1135
msgid "Account Settings"
msgstr "Account Instellingen"
#: mod/settings.php:1143
msgid "Password Settings"
msgstr "Wachtwoord Instellingen"
#: mod/settings.php:1145
msgid "Leave password fields blank unless changing"
msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"
#: mod/settings.php:1146
msgid "Current Password:"
msgstr "Huidig wachtwoord:"
#: mod/settings.php:1146 mod/settings.php:1147
msgid "Your current password to confirm the changes"
msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen"
#: mod/settings.php:1147
msgid "Password:"
#: boot.php:1284
msgid "Password: "
msgstr "Wachtwoord:"
#: mod/settings.php:1151
msgid "Basic Settings"
msgstr "Basis Instellingen"
#: boot.php:1285
msgid "Remember me"
msgstr "Onthou me"
#: mod/settings.php:1152 include/identity.php:538
msgid "Full Name:"
msgstr "Volledige Naam:"
#: boot.php:1288
msgid "Or login using OpenID: "
msgstr "Of log in met OpenID:"
#: mod/settings.php:1153
msgid "Email Address:"
msgstr "E-mailadres:"
#: boot.php:1294
msgid "Forgot your password?"
msgstr "Wachtwoord vergeten?"
#: mod/settings.php:1154
msgid "Your Timezone:"
msgstr "Je Tijdzone:"
#: boot.php:1297
msgid "Website Terms of Service"
msgstr "Gebruikersvoorwaarden website"
#: mod/settings.php:1155
msgid "Default Post Location:"
msgstr "Standaard locatie:"
#: boot.php:1298
msgid "terms of service"
msgstr "servicevoorwaarden"
#: mod/settings.php:1156
msgid "Use Browser Location:"
msgstr "Gebruik Webbrowser Locatie:"
#: boot.php:1300
msgid "Website Privacy Policy"
msgstr "Privacybeleid website"
#: mod/settings.php:1159
msgid "Security and Privacy Settings"
msgstr "Instellingen voor Beveiliging en Privacy"
#: boot.php:1301
msgid "privacy policy"
msgstr "privacybeleid"
#: mod/settings.php:1161
msgid "Maximum Friend Requests/Day:"
msgstr "Maximum aantal vriendschapsverzoeken per dag:"
#: mod/settings.php:1161 mod/settings.php:1191
msgid "(to prevent spam abuse)"
msgstr "(om spam misbruik te voorkomen)"
#: mod/settings.php:1162
msgid "Default Post Permissions"
msgstr "Standaard rechten voor nieuwe berichten"
#: mod/settings.php:1163
msgid "(click to open/close)"
msgstr "(klik om te openen/sluiten)"
#: mod/settings.php:1174
msgid "Default Private Post"
msgstr "Standaard Privé Post"
#: mod/settings.php:1175
msgid "Default Public Post"
msgstr "Standaard Publieke Post"
#: mod/settings.php:1179
msgid "Default Permissions for New Posts"
msgstr "Standaard rechten voor nieuwe berichten"
#: mod/settings.php:1191
msgid "Maximum private messages per day from unknown people:"
msgstr "Maximum aantal privé-berichten per dag van onbekende personen:"
#: mod/settings.php:1194
msgid "Notification Settings"
msgstr "Notificatie Instellingen"
#: mod/settings.php:1195
msgid "By default post a status message when:"
msgstr "Post automatisch een bericht op je tijdlijn wanneer:"
#: mod/settings.php:1196
msgid "accepting a friend request"
msgstr "Een vriendschapsverzoek accepteren"
#: mod/settings.php:1197
msgid "joining a forum/community"
msgstr "Lid worden van een groep/forum"
#: mod/settings.php:1198
msgid "making an <em>interesting</em> profile change"
msgstr "Een <em>interessante</em> verandering aan je profiel"
#: mod/settings.php:1199
msgid "Send a notification email when:"
msgstr "Stuur een notificatie e-mail wanneer:"
#: mod/settings.php:1200
msgid "You receive an introduction"
msgstr "Je ontvangt een vriendschaps- of connectieverzoek"
#: mod/settings.php:1201
msgid "Your introductions are confirmed"
msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"
#: mod/settings.php:1202
msgid "Someone writes on your profile wall"
msgstr "Iemand iets op je tijdlijn schrijft"
#: mod/settings.php:1203
msgid "Someone writes a followup comment"
msgstr "Iemand een reactie schrijft"
#: mod/settings.php:1204
msgid "You receive a private message"
msgstr "Je een privé-bericht ontvangt"
#: mod/settings.php:1205
msgid "You receive a friend suggestion"
msgstr "Je een suggestie voor een vriendschap ontvangt"
#: mod/settings.php:1206
msgid "You are tagged in a post"
msgstr "Je expliciet in een bericht bent genoemd"
#: mod/settings.php:1207
msgid "You are poked/prodded/etc. in a post"
msgstr "Je in een bericht bent aangestoten/gepord/etc."
#: mod/settings.php:1209
msgid "Activate desktop notifications"
#: object/Item.php:95
msgid "This entry was edited"
msgstr ""
#: mod/settings.php:1209
msgid "Show desktop popup on new notifications"
#: object/Item.php:191
msgid "I will attend"
msgstr ""
#: mod/settings.php:1211
msgid "Text-only notification emails"
#: object/Item.php:191
msgid "I will not attend"
msgstr ""
#: mod/settings.php:1213
msgid "Send text only notification emails, without the html part"
#: object/Item.php:191
msgid "I might attend"
msgstr ""
#: mod/settings.php:1215
msgid "Advanced Account/Page Type Settings"
#: object/Item.php:230
msgid "ignore thread"
msgstr ""
#: mod/settings.php:1216
msgid "Change the behaviour of this account for special situations"
#: object/Item.php:231
msgid "unignore thread"
msgstr ""
#: mod/settings.php:1219
msgid "Relocate"
#: object/Item.php:232
msgid "toggle ignore status"
msgstr ""
#: mod/settings.php:1220
#: object/Item.php:345 include/conversation.php:687
msgid "Categories:"
msgstr "Categorieën:"
#: object/Item.php:346 include/conversation.php:688
msgid "Filed under:"
msgstr "Bewaard onder:"
#: object/Item.php:360
msgid "via"
msgstr "via"
#: include/dbstructure.php:26
#, php-format
msgid ""
"If you have moved this profile from another server, and some of your "
"contacts don't receive your updates, try pushing this button."
"\n"
"\t\t\tThe friendica developers released update %s recently,\n"
"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
msgstr ""
#: mod/settings.php:1221
msgid "Resend relocate message to contacts"
msgstr ""
#: mod/bookmarklet.php:12 include/nav.php:92 boot.php:1263
msgid "Login"
msgstr "Login"
#: mod/bookmarklet.php:41
msgid "The post was created"
msgstr ""
#: mod/friendica.php:59
msgid "This is Friendica, version"
msgstr "Dit is Friendica, versie"
#: mod/friendica.php:60
msgid "running at web location"
msgstr "draaiend op web-adres"
#: mod/friendica.php:62
#: include/dbstructure.php:31
#, php-format
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> om meer te leren over het Friendica project."
#: mod/friendica.php:64
msgid "Bug reports and issues: please visit"
msgstr "Bug rapporten en problemen: bezoek"
#: mod/friendica.php:64
msgid "the bugtracker at github"
"The error message is\n"
"[pre]%s[/pre]"
msgstr ""
#: mod/friendica.php:65
#: include/dbstructure.php:152
msgid "Errors encountered creating database tables."
msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."
#: include/dbstructure.php:210
msgid "Errors encountered performing database changes."
msgstr ""
#: include/auth.php:38
msgid "Logged out."
msgstr "Uitgelogd."
#: include/auth.php:128 include/user.php:75
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"
"We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID."
msgstr ""
#: mod/friendica.php:79
msgid "Installed plugins/addons/apps:"
msgstr "Geïnstalleerde plugins/toepassingen:"
#: mod/friendica.php:92
msgid "No installed plugins/addons/apps"
msgstr "Geen plugins of toepassingen geïnstalleerd"
#: include/auth.php:128 include/user.php:75
msgid "The error message was:"
msgstr "De foutboodschap was:"
#: include/contact_widgets.php:6
msgid "Add New Contact"
@ -5891,18 +6283,24 @@ msgstr "Zoek mensen"
msgid "Enter name or interest"
msgstr "Vul naam of interesse in"
#: include/contact_widgets.php:32
msgid "Connect/Follow"
msgstr "Verbind/Volg"
#: include/contact_widgets.php:33
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Voorbeelden: Jan Peeters, Vissen"
#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526
#: view/theme/vier/theme.php:192
msgid "Similar Interests"
msgstr "Dezelfde interesses"
#: include/contact_widgets.php:37
msgid "Random Profile"
msgstr "Willekeurig Profiel"
#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528
#: view/theme/vier/theme.php:194
msgid "Invite Friends"
msgstr "Vrienden uitnodigen"
#: include/contact_widgets.php:71
msgid "Networks"
msgstr "Netwerken"
@ -5911,7 +6309,7 @@ msgstr "Netwerken"
msgid "All Networks"
msgstr "Alle netwerken"
#: include/contact_widgets.php:104 include/features.php:60
#: include/contact_widgets.php:104 include/features.php:61
msgid "Saved Folders"
msgstr "Bewaarde Mappen"
@ -5923,77 +6321,1005 @@ msgstr "Alles"
msgid "Categories"
msgstr "Categorieën"
#: include/plugin.php:455 include/plugin.php:457
msgid "Click here to upgrade."
#: include/features.php:23
msgid "General Features"
msgstr "Algemene functies"
#: include/features.php:25
msgid "Multiple Profiles"
msgstr "Meerdere profielen"
#: include/features.php:25
msgid "Ability to create multiple profiles"
msgstr "Mogelijkheid om meerdere profielen aan te maken"
#: include/features.php:26
msgid "Photo Location"
msgstr ""
#: include/plugin.php:463
msgid "This action exceeds the limits set by your subscription plan."
#: include/features.php:26
msgid ""
"Photo metadata is normally stripped. This extracts the location (if present)"
" prior to stripping metadata and links it to a map."
msgstr ""
#: include/plugin.php:468
msgid "This action is not available under your subscription plan."
#: include/features.php:31
msgid "Post Composition Features"
msgstr "Functies voor het opstellen van berichten"
#: include/features.php:32
msgid "Richtext Editor"
msgstr "Tekstverwerker met opmaak"
#: include/features.php:32
msgid "Enable richtext editor"
msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"
#: include/features.php:33
msgid "Post Preview"
msgstr "Voorvertoning bericht"
#: include/features.php:33
msgid "Allow previewing posts and comments before publishing them"
msgstr ""
#: include/features.php:34
msgid "Auto-mention Forums"
msgstr ""
#: include/features.php:34
msgid ""
"Add/remove mention when a fourm page is selected/deselected in ACL window."
msgstr ""
#: include/features.php:39
msgid "Network Sidebar Widgets"
msgstr "Zijbalkwidgets op netwerkpagina"
#: include/features.php:40
msgid "Search by Date"
msgstr "Zoeken op datum"
#: include/features.php:40
msgid "Ability to select posts by date ranges"
msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik"
#: include/features.php:41
msgid "Group Filter"
msgstr "Groepsfilter"
#: include/features.php:41
msgid "Enable widget to display Network posts only from selected group"
msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen"
#: include/features.php:42
msgid "Network Filter"
msgstr "Netwerkfilter"
#: include/features.php:42
msgid "Enable widget to display Network posts only from selected network"
msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken"
#: include/features.php:43
msgid "Save search terms for re-use"
msgstr "Sla zoekopdrachten op voor hergebruik"
#: include/features.php:48
msgid "Network Tabs"
msgstr "Netwerktabs"
#: include/features.php:49
msgid "Network Personal Tab"
msgstr "Persoonlijke netwerktab"
#: include/features.php:49
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"
#: include/features.php:50
msgid "Network New Tab"
msgstr "Nieuwe netwerktab"
#: include/features.php:50
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)"
#: include/features.php:51
msgid "Network Shared Links Tab"
msgstr ""
#: include/features.php:51
msgid "Enable tab to display only Network posts with links in them"
msgstr ""
#: include/features.php:56
msgid "Post/Comment Tools"
msgstr "Bericht-/reactiehulpmiddelen"
#: include/features.php:57
msgid "Multiple Deletion"
msgstr "Meervoudige verwijdering"
#: include/features.php:57
msgid "Select and delete multiple posts/comments at once"
msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer"
#: include/features.php:58
msgid "Edit Sent Posts"
msgstr "Bewerk verzonden berichten"
#: include/features.php:58
msgid "Edit and correct posts and comments after sending"
msgstr "Bewerk en corrigeer berichten en reacties na verzending"
#: include/features.php:59
msgid "Tagging"
msgstr "Labelen"
#: include/features.php:59
msgid "Ability to tag existing posts"
msgstr "Mogelijkheid om bestaande berichten te labelen"
#: include/features.php:60
msgid "Post Categories"
msgstr "Categorieën berichten"
#: include/features.php:60
msgid "Add categories to your posts"
msgstr "Voeg categorieën toe aan je berichten"
#: include/features.php:61
msgid "Ability to file posts under folders"
msgstr "Mogelijkheid om berichten in mappen te bewaren"
#: include/features.php:62
msgid "Dislike Posts"
msgstr "Vind berichten niet leuk"
#: include/features.php:62
msgid "Ability to dislike posts/comments"
msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden"
#: include/features.php:63
msgid "Star Posts"
msgstr "Geef berichten een ster"
#: include/features.php:63
msgid "Ability to mark special posts with a star indicator"
msgstr ""
#: include/features.php:64
msgid "Mute Post Notifications"
msgstr ""
#: include/features.php:64
msgid "Ability to mute notifications for a thread"
msgstr ""
#: include/follow.php:77
msgid "Connect URL missing."
msgstr ""
#: include/follow.php:104
msgid ""
"This site is not configured to allow communications with other networks."
msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken."
#: include/follow.php:105 include/follow.php:125
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt."
#: include/follow.php:123
msgid "The profile address specified does not provide adequate information."
msgstr ""
#: include/follow.php:127
msgid "An author or name was not found."
msgstr ""
#: include/follow.php:129
msgid "No browser URL could be matched to this address."
msgstr ""
#: include/follow.php:131
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."
#: include/follow.php:132
msgid "Use mailto: in front of address to force email check."
msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."
#: include/follow.php:138
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr ""
#: include/follow.php:148
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr ""
#: include/follow.php:249
msgid "Unable to retrieve contact information."
msgstr ""
#: include/follow.php:302
msgid "following"
msgstr "volgend"
#: include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
msgstr "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "
#: include/group.php:209
msgid "Default privacy group for new contacts"
msgstr ""
#: include/group.php:228
msgid "Everybody"
msgstr "Iedereen"
#: include/group.php:251
msgid "edit"
msgstr "verander"
#: include/group.php:273
msgid "Edit group"
msgstr "Verander groep"
#: include/group.php:274
msgid "Create a new group"
msgstr "Maak nieuwe groep"
#: include/group.php:277
msgid "Contacts not in any group"
msgstr ""
#: include/datetime.php:43 include/datetime.php:45
msgid "Miscellaneous"
msgstr "Diversen"
#: include/datetime.php:141
msgid "YYYY-MM-DD or MM-DD"
msgstr ""
#: include/datetime.php:271
msgid "never"
msgstr "nooit"
#: include/datetime.php:277
msgid "less than a second ago"
msgstr "minder dan een seconde geleden"
#: include/datetime.php:287
msgid "year"
msgstr "jaar"
#: include/datetime.php:287
msgid "years"
msgstr "jaren"
#: include/datetime.php:288
msgid "months"
msgstr "maanden"
#: include/datetime.php:289
msgid "weeks"
msgstr "weken"
#: include/datetime.php:290
msgid "days"
msgstr "dagen"
#: include/datetime.php:291
msgid "hour"
msgstr "uur"
#: include/datetime.php:291
msgid "hours"
msgstr "uren"
#: include/datetime.php:292
msgid "minute"
msgstr "minuut"
#: include/datetime.php:292
msgid "minutes"
msgstr "minuten"
#: include/datetime.php:293
msgid "second"
msgstr "seconde"
#: include/datetime.php:293
msgid "seconds"
msgstr "secondes"
#: include/datetime.php:302
#, php-format
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s geleden"
#: include/datetime.php:474 include/items.php:2484
#, php-format
msgid "%s's birthday"
msgstr "%s's verjaardag"
#: include/datetime.php:475 include/items.php:2485
#, php-format
msgid "Happy Birthday %s"
msgstr "Gefeliciteerd %s"
#: include/identity.php:38
msgid "Requested account is not available."
msgstr "Gevraagde account is niet beschikbaar."
#: include/identity.php:121 include/identity.php:255 include/identity.php:608
msgid "Edit profile"
msgstr "Bewerk profiel"
#: include/identity.php:220
msgid "Message"
msgstr "Bericht"
#: include/identity.php:226 include/nav.php:185
msgid "Profiles"
msgstr "Profielen"
#: include/identity.php:226
msgid "Manage/edit profiles"
msgstr "Beheer/wijzig profielen"
#: include/identity.php:342
msgid "Network:"
msgstr ""
#: include/identity.php:374 include/identity.php:460
msgid "g A l F d"
msgstr "G l j F"
#: include/identity.php:375 include/identity.php:461
msgid "F d"
msgstr "d F"
#: include/identity.php:420 include/identity.php:507
msgid "[today]"
msgstr "[vandaag]"
#: include/identity.php:432
msgid "Birthday Reminders"
msgstr "Verjaardagsherinneringen"
#: include/identity.php:433
msgid "Birthdays this week:"
msgstr "Verjaardagen deze week:"
#: include/identity.php:494
msgid "[No description]"
msgstr "[Geen omschrijving]"
#: include/identity.php:518
msgid "Event Reminders"
msgstr "Gebeurtenisherinneringen"
#: include/identity.php:519
msgid "Events this week:"
msgstr "Gebeurtenissen deze week:"
#: include/identity.php:546
msgid "j F, Y"
msgstr "F j Y"
#: include/identity.php:547
msgid "j F"
msgstr "F j"
#: include/identity.php:554
msgid "Birthday:"
msgstr "Verjaardag:"
#: include/identity.php:558
msgid "Age:"
msgstr "Leeftijd:"
#: include/identity.php:567
#, php-format
msgid "for %1$d %2$s"
msgstr "voor %1$d %2$s"
#: include/identity.php:580
msgid "Religion:"
msgstr "Religie:"
#: include/identity.php:584
msgid "Hobbies/Interests:"
msgstr "Hobby:"
#: include/identity.php:591
msgid "Contact information and Social Networks:"
msgstr "Contactinformatie en sociale netwerken:"
#: include/identity.php:593
msgid "Musical interests:"
msgstr "Muzikale interesse "
#: include/identity.php:595
msgid "Books, literature:"
msgstr "Boeken, literatuur:"
#: include/identity.php:597
msgid "Television:"
msgstr "Televisie"
#: include/identity.php:599
msgid "Film/dance/culture/entertainment:"
msgstr "Film/dans/cultuur/ontspanning:"
#: include/identity.php:601
msgid "Love/Romance:"
msgstr "Liefde/romance:"
#: include/identity.php:603
msgid "Work/employment:"
msgstr "Werk/beroep:"
#: include/identity.php:605
msgid "School/education:"
msgstr "School/opleiding:"
#: include/identity.php:633 include/nav.php:75
msgid "Status"
msgstr "Tijdlijn"
#: include/identity.php:636
msgid "Status Messages and Posts"
msgstr "Berichten op jouw tijdlijn"
#: include/identity.php:644
msgid "Profile Details"
msgstr "Profieldetails"
#: include/identity.php:657 include/identity.php:660 include/nav.php:78
msgid "Videos"
msgstr "Video's"
#: include/identity.php:672 include/nav.php:140
msgid "Events and Calendar"
msgstr "Gebeurtenissen en kalender"
#: include/identity.php:680
msgid "Only You Can See This"
msgstr "Alleen jij kunt dit zien"
#: include/acl_selectors.php:324
msgid "Post to Email"
msgstr "Verzenden per e-mail"
#: include/acl_selectors.php:329
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgstr ""
#: include/acl_selectors.php:335
msgid "Visible to everybody"
msgstr "Zichtbaar voor iedereen"
#: include/acl_selectors.php:336 view/theme/diabook/config.php:142
#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103
msgid "show"
msgstr "tonen"
#: include/acl_selectors.php:337 view/theme/diabook/config.php:142
#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103
msgid "don't show"
msgstr "niet tonen"
#: include/message.php:15 include/message.php:173
msgid "[no subject]"
msgstr "[geen onderwerp]"
#: include/Contact.php:119
msgid "stopped following"
msgstr ""
#: include/Contact.php:334 include/conversation.php:911
msgid "View Status"
msgstr "Bekijk status"
#: include/Contact.php:336 include/conversation.php:913
msgid "View Photos"
msgstr "Bekijk foto's"
#: include/Contact.php:337 include/conversation.php:914
msgid "Network Posts"
msgstr "Netwerkberichten"
#: include/Contact.php:338 include/conversation.php:915
msgid "Edit Contact"
msgstr "Bewerk contact"
#: include/Contact.php:339
msgid "Drop Contact"
msgstr "Verwijder contact"
#: include/Contact.php:340 include/conversation.php:916
msgid "Send PM"
msgstr "Stuur een privébericht"
#: include/Contact.php:341 include/conversation.php:920
msgid "Poke"
msgstr "Aanstoten"
#: include/security.php:22
msgid "Welcome "
msgstr "Welkom"
#: include/security.php:23
msgid "Please upload a profile photo."
msgstr "Upload een profielfoto."
#: include/security.php:26
msgid "Welcome back "
msgstr "Welkom terug "
#: include/security.php:375
msgid ""
"The form security token was not correct. This probably happened because the "
"form has been opened for too long (>3 hours) before submitting it."
msgstr ""
#: include/conversation.php:147
#, php-format
msgid "%1$s attends %2$s's %3$s"
msgstr ""
#: include/conversation.php:150
#, php-format
msgid "%1$s doesn't attend %2$s's %3$s"
msgstr ""
#: include/conversation.php:153
#, php-format
msgid "%1$s attends maybe %2$s's %3$s"
msgstr ""
#: include/conversation.php:219
#, php-format
msgid "%1$s poked %2$s"
msgstr "%1$s stootte %2$s aan"
#: include/conversation.php:303
msgid "post/item"
msgstr "bericht/item"
#: include/conversation.php:304
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s markeerde %2$s's %3$s als favoriet"
#: include/conversation.php:792
msgid "remove"
msgstr "verwijder"
#: include/conversation.php:796
msgid "Delete Selected Items"
msgstr "Geselecteerde items verwijderen"
#: include/conversation.php:910
msgid "Follow Thread"
msgstr "Conversatie volgen"
#: include/conversation.php:1035
#, php-format
msgid "%s likes this."
msgstr "%s vindt dit leuk."
#: include/conversation.php:1038
#, php-format
msgid "%s doesn't like this."
msgstr "%s vindt dit niet leuk."
#: include/conversation.php:1041
#, php-format
msgid "%s attends."
msgstr ""
#: include/conversation.php:1044
#, php-format
msgid "%s doesn't attend."
msgstr ""
#: include/conversation.php:1047
#, php-format
msgid "%s attends maybe."
msgstr ""
#: include/conversation.php:1057
msgid "and"
msgstr "en"
#: include/conversation.php:1063
#, php-format
msgid ", and %d other people"
msgstr ", en %d andere mensen"
#: include/conversation.php:1072
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d mensen</span> vinden dit leuk"
#: include/conversation.php:1073
#, php-format
msgid "%s like this."
msgstr ""
#: include/conversation.php:1076
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d people</span> vinden dit niet leuk"
#: include/conversation.php:1077
#, php-format
msgid "%s don't like this."
msgstr ""
#: include/conversation.php:1080
#, php-format
msgid "<span %1$s>%2$d people</span> attend"
msgstr ""
#: include/conversation.php:1081
#, php-format
msgid "%s attend."
msgstr ""
#: include/conversation.php:1084
#, php-format
msgid "<span %1$s>%2$d people</span> don't attend"
msgstr ""
#: include/conversation.php:1085
#, php-format
msgid "%s don't attend."
msgstr ""
#: include/conversation.php:1088
#, php-format
msgid "<span %1$s>%2$d people</span> anttend maybe"
msgstr ""
#: include/conversation.php:1089
#, php-format
msgid "%s anttend maybe."
msgstr ""
#: include/conversation.php:1128 include/conversation.php:1146
msgid "Visible to <strong>everybody</strong>"
msgstr "Zichtbaar voor <strong>iedereen</strong>"
#: include/conversation.php:1130 include/conversation.php:1148
msgid "Please enter a video link/URL:"
msgstr "Vul een videolink/URL in:"
#: include/conversation.php:1131 include/conversation.php:1149
msgid "Please enter an audio link/URL:"
msgstr "Vul een audiolink/URL in:"
#: include/conversation.php:1132 include/conversation.php:1150
msgid "Tag term:"
msgstr "Label:"
#: include/conversation.php:1134 include/conversation.php:1152
msgid "Where are you right now?"
msgstr "Waar ben je nu?"
#: include/conversation.php:1135
msgid "Delete item(s)?"
msgstr "Item(s) verwijderen?"
#: include/conversation.php:1204
msgid "permissions"
msgstr "rechten"
#: include/conversation.php:1227
msgid "Post to Groups"
msgstr "Verzenden naar Groepen"
#: include/conversation.php:1228
msgid "Post to Contacts"
msgstr "Verzenden naar Contacten"
#: include/conversation.php:1229
msgid "Private post"
msgstr "Privé verzending"
#: include/conversation.php:1377
msgid "View all"
msgstr ""
#: include/conversation.php:1399
msgid "Like"
msgid_plural "Likes"
msgstr[0] ""
msgstr[1] ""
#: include/conversation.php:1402
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] ""
msgstr[1] ""
#: include/conversation.php:1408
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] ""
msgstr[1] ""
#: include/conversation.php:1411 include/profile_selectors.php:6
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] ""
msgstr[1] ""
#: include/network.php:967
msgid "view full size"
msgstr "Volledig formaat"
#: include/text.php:299
msgid "newer"
msgstr "nieuwere berichten"
#: include/text.php:301
msgid "older"
msgstr "oudere berichten"
#: include/text.php:306
msgid "prev"
msgstr "vorige"
#: include/text.php:308
msgid "first"
msgstr "eerste"
#: include/text.php:340
msgid "last"
msgstr "laatste"
#: include/text.php:343
msgid "next"
msgstr "volgende"
#: include/text.php:398
msgid "Loading more entries..."
msgstr ""
#: include/text.php:399
msgid "The end"
msgstr ""
#: include/text.php:890
msgid "No contacts"
msgstr "Geen contacten"
#: include/text.php:905
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] "%d contact"
msgstr[1] "%d contacten"
#: include/text.php:1003 include/nav.php:121
msgid "Full Text"
msgstr ""
#: include/text.php:1004 include/nav.php:122
msgid "Tags"
msgstr ""
#: include/text.php:1008 include/nav.php:126
msgid "Forums"
msgstr ""
#: include/text.php:1059
msgid "poke"
msgstr "aanstoten"
#: include/text.php:1059
msgid "poked"
msgstr "aangestoten"
#: include/text.php:1060
msgid "ping"
msgstr "ping"
#: include/text.php:1060
msgid "pinged"
msgstr "gepingd"
#: include/text.php:1061
msgid "prod"
msgstr "porren"
#: include/text.php:1061
msgid "prodded"
msgstr "gepord"
#: include/text.php:1062
msgid "slap"
msgstr "slaan"
#: include/text.php:1062
msgid "slapped"
msgstr "geslagen"
#: include/text.php:1063
msgid "finger"
msgstr "finger"
#: include/text.php:1063
msgid "fingered"
msgstr "gerfingerd"
#: include/text.php:1064
msgid "rebuff"
msgstr "afpoeieren"
#: include/text.php:1064
msgid "rebuffed"
msgstr "afgepoeierd"
#: include/text.php:1078
msgid "happy"
msgstr "Blij"
#: include/text.php:1079
msgid "sad"
msgstr "Verdrietig"
#: include/text.php:1080
msgid "mellow"
msgstr "mellow"
#: include/text.php:1081
msgid "tired"
msgstr "vermoeid"
#: include/text.php:1082
msgid "perky"
msgstr "parmantig"
#: include/text.php:1083
msgid "angry"
msgstr "boos"
#: include/text.php:1084
msgid "stupified"
msgstr "verbijsterd"
#: include/text.php:1085
msgid "puzzled"
msgstr "onzeker"
#: include/text.php:1086
msgid "interested"
msgstr "Geïnteresseerd"
#: include/text.php:1087
msgid "bitter"
msgstr "bitter"
#: include/text.php:1088
msgid "cheerful"
msgstr "vrolijk"
#: include/text.php:1089
msgid "alive"
msgstr "levend"
#: include/text.php:1090
msgid "annoyed"
msgstr "verveeld"
#: include/text.php:1091
msgid "anxious"
msgstr "bezorgd"
#: include/text.php:1092
msgid "cranky"
msgstr "humeurig "
#: include/text.php:1093
msgid "disturbed"
msgstr "verontrust"
#: include/text.php:1094
msgid "frustrated"
msgstr "gefrustreerd"
#: include/text.php:1095
msgid "motivated"
msgstr "gemotiveerd"
#: include/text.php:1096
msgid "relaxed"
msgstr "ontspannen"
#: include/text.php:1097
msgid "surprised"
msgstr "verbaasd"
#: include/text.php:1490
msgid "bytes"
msgstr "bytes"
#: include/text.php:1522 include/text.php:1534
msgid "Click to open/close"
msgstr "klik om te openen/sluiten"
#: include/text.php:1708
msgid "View on separate page"
msgstr ""
#: include/text.php:1709
msgid "view on separate page"
msgstr ""
#: include/text.php:1990
msgid "activity"
msgstr "activiteit"
#: include/text.php:1993
msgid "post"
msgstr "bericht"
#: include/text.php:2161
msgid "Item filed"
msgstr "Item bewaard"
#: include/bbcode.php:474 include/bbcode.php:1132 include/bbcode.php:1133
msgid "Image/photo"
msgstr "Afbeelding/foto"
#: include/bbcode.php:572
#, php-format
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr ""
#: include/bbcode.php:606
#, php-format
msgid ""
"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
"href=\"%s\" target=\"_blank\">post</a>"
msgstr ""
#: include/bbcode.php:1092 include/bbcode.php:1112
msgid "$1 wrote:"
msgstr "$1 schreef:"
#: include/bbcode.php:1141 include/bbcode.php:1142
msgid "Encrypted content"
msgstr "Versleutelde inhoud"
#: include/notifier.php:840 include/delivery.php:456
msgid "(no subject)"
msgstr "(geen onderwerp)"
#: include/notifier.php:850 include/delivery.php:467 include/enotify.php:37
msgid "noreply"
msgstr "geen reactie"
#: include/dba_pdo.php:72 include/dba.php:56
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr ""
#: include/auth.php:38
msgid "Logged out."
msgstr "Uitgelogd."
#: include/auth.php:128 include/user.php:75
msgid ""
"We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID."
msgstr ""
#: include/auth.php:128 include/user.php:75
msgid "The error message was:"
msgstr "De foutboodschap was:"
#: include/uimport.php:94
msgid "Error decoding account file"
msgstr ""
#: include/uimport.php:100
msgid "Error! No version data in file! This is not a Friendica account file?"
msgstr ""
#: include/uimport.php:116 include/uimport.php:127
msgid "Error! Cannot check nickname"
msgstr ""
#: include/uimport.php:120 include/uimport.php:131
#, php-format
msgid "User '%s' already exists on this server!"
msgstr "Gebruiker '%s' bestaat al op deze server!"
#: include/uimport.php:153
msgid "User creation error"
msgstr "Fout bij het aanmaken van de gebruiker"
#: include/uimport.php:171
msgid "User profile creation error"
msgstr "Fout bij het aanmaken van het gebruikersprofiel"
#: include/uimport.php:220
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] "%d contact werd niet geïmporteerd"
msgstr[1] "%d contacten werden niet geïmporteerd"
#: include/uimport.php:290
msgid "Done. You can now login with your username and password"
msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"
#: include/message.php:15 include/message.php:172
msgid "[no subject]"
msgstr "[geen onderwerp]"
#: include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr "Onbekend | Niet "
@ -6067,177 +7393,361 @@ msgid "Diaspora Connector"
msgstr "Diaspora-connector"
#: include/contact_selectors.php:91
msgid "Statusnet"
msgstr "Statusnet"
msgid "GNU Social"
msgstr ""
#: include/contact_selectors.php:92
msgid "App.net"
msgstr ""
#: include/features.php:23
msgid "General Features"
msgstr "Algemene functies"
#: include/features.php:25
msgid "Multiple Profiles"
msgstr "Meerdere profielen"
#: include/features.php:25
msgid "Ability to create multiple profiles"
msgstr "Mogelijkheid om meerdere profielen aan te maken"
#: include/features.php:30
msgid "Post Composition Features"
msgstr "Functies voor het opstellen van berichten"
#: include/features.php:31
msgid "Richtext Editor"
msgstr "Tekstverwerker met opmaak"
#: include/features.php:31
msgid "Enable richtext editor"
msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"
#: include/features.php:32
msgid "Post Preview"
msgstr "Voorvertoning bericht"
#: include/features.php:32
msgid "Allow previewing posts and comments before publishing them"
#: include/contact_selectors.php:103
msgid "Redmatrix"
msgstr ""
#: include/features.php:33
msgid "Auto-mention Forums"
#: include/Scrape.php:603
msgid " on Last.fm"
msgstr " op Last.fm"
#: include/bb2diaspora.php:154 include/event.php:30 include/event.php:48
msgid "Starts:"
msgstr "Begint:"
#: include/bb2diaspora.php:162 include/event.php:33 include/event.php:54
msgid "Finishes:"
msgstr "Eindigt:"
#: include/plugin.php:458 include/plugin.php:460
msgid "Click here to upgrade."
msgstr ""
#: include/features.php:33
#: include/plugin.php:466
msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
#: include/plugin.php:471
msgid "This action is not available under your subscription plan."
msgstr ""
#: include/nav.php:72
msgid "End this session"
msgstr "Deze sessie beëindigen"
#: include/nav.php:75 include/nav.php:157 view/theme/diabook/theme.php:123
msgid "Your posts and conversations"
msgstr "Jouw berichten en conversaties"
#: include/nav.php:76 view/theme/diabook/theme.php:124
msgid "Your profile page"
msgstr "Jouw profiel pagina"
#: include/nav.php:77 view/theme/diabook/theme.php:126
msgid "Your photos"
msgstr "Jouw foto's"
#: include/nav.php:78
msgid "Your videos"
msgstr ""
#: include/nav.php:79 view/theme/diabook/theme.php:127
msgid "Your events"
msgstr "Jouw gebeurtenissen"
#: include/nav.php:80 view/theme/diabook/theme.php:128
msgid "Personal notes"
msgstr "Persoonlijke nota's"
#: include/nav.php:80
msgid "Your personal notes"
msgstr ""
#: include/nav.php:91
msgid "Sign in"
msgstr "Inloggen"
#: include/nav.php:104
msgid "Home Page"
msgstr "Jouw tijdlijn"
#: include/nav.php:108
msgid "Create an account"
msgstr "Maak een accoount"
#: include/nav.php:113
msgid "Help and documentation"
msgstr "Hulp en documentatie"
#: include/nav.php:116
msgid "Apps"
msgstr "Apps"
#: include/nav.php:116
msgid "Addon applications, utilities, games"
msgstr "Extra toepassingen, hulpmiddelen of spelletjes"
#: include/nav.php:118
msgid "Search site content"
msgstr "Doorzoek de inhoud van de website"
#: include/nav.php:136
msgid "Conversations on this site"
msgstr "Conversaties op deze website"
#: include/nav.php:138
msgid "Conversations on the network"
msgstr ""
#: include/nav.php:142
msgid "Directory"
msgstr "Gids"
#: include/nav.php:142
msgid "People directory"
msgstr "Personengids"
#: include/nav.php:144
msgid "Information"
msgstr "Informatie"
#: include/nav.php:144
msgid "Information about this friendica instance"
msgstr ""
#: include/nav.php:154
msgid "Conversations from your friends"
msgstr "Conversaties van je vrienden"
#: include/nav.php:155
msgid "Network Reset"
msgstr "Netwerkpagina opnieuw instellen"
#: include/nav.php:155
msgid "Load Network page with no filters"
msgstr "Laad de netwerkpagina zonder filters"
#: include/nav.php:162
msgid "Friend Requests"
msgstr "Vriendschapsverzoeken"
#: include/nav.php:166
msgid "See all notifications"
msgstr "Toon alle notificaties"
#: include/nav.php:167
msgid "Mark all system notifications seen"
msgstr "Alle systeemnotificaties als gelezen markeren"
#: include/nav.php:171
msgid "Private mail"
msgstr "Privéberichten"
#: include/nav.php:172
msgid "Inbox"
msgstr "Inbox"
#: include/nav.php:173
msgid "Outbox"
msgstr "Verzonden berichten"
#: include/nav.php:177
msgid "Manage"
msgstr "Beheren"
#: include/nav.php:177
msgid "Manage other pages"
msgstr "Andere pagina's beheren"
#: include/nav.php:182
msgid "Account settings"
msgstr "Account instellingen"
#: include/nav.php:185
msgid "Manage/Edit Profiles"
msgstr "Beheer/Wijzig Profielen"
#: include/nav.php:187
msgid "Manage/edit friends and contacts"
msgstr "Beheer/Wijzig vrienden en contacten"
#: include/nav.php:194
msgid "Site setup and configuration"
msgstr "Website opzetten en configureren"
#: include/nav.php:198
msgid "Navigation"
msgstr "Navigatie"
#: include/nav.php:198
msgid "Site map"
msgstr "Sitemap"
#: include/api.php:321 include/api.php:332 include/api.php:441
#: include/api.php:1151 include/api.php:1153
msgid "User not found."
msgstr "Gebruiker niet gevonden"
#: include/api.php:799
#, php-format
msgid "Daily posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:818
#, php-format
msgid "Weekly posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:837
#, php-format
msgid "Monthly posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:1360
msgid "There is no status with this id."
msgstr "Er is geen status met dit kenmerk"
#: include/api.php:1434
msgid "There is no conversation with this id."
msgstr ""
#: include/api.php:1713
msgid "Invalid item."
msgstr ""
#: include/api.php:1723
msgid "Invalid action. "
msgstr ""
#: include/api.php:1731
msgid "DB error"
msgstr ""
#: include/user.php:48
msgid "An invitation is required."
msgstr "Een uitnodiging is vereist."
#: include/user.php:53
msgid "Invitation could not be verified."
msgstr "Uitnodiging kon niet geverifieerd worden."
#: include/user.php:61
msgid "Invalid OpenID url"
msgstr "Ongeldige OpenID url"
#: include/user.php:82
msgid "Please enter the required information."
msgstr "Vul de vereiste informatie in."
#: include/user.php:96
msgid "Please use a shorter name."
msgstr "gebruik een kortere naam"
#: include/user.php:98
msgid "Name too short."
msgstr "Naam te kort"
#: include/user.php:113
msgid "That doesn't appear to be your full (First Last) name."
msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."
#: include/user.php:118
msgid "Your email domain is not among those allowed on this site."
msgstr "Je e-maildomein is op deze website niet toegestaan."
#: include/user.php:121
msgid "Not a valid email address."
msgstr "Geen geldig e-mailadres."
#: include/user.php:134
msgid "Cannot use that email."
msgstr "Ik kan die e-mail niet gebruiken."
#: include/user.php:140
msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
msgstr ""
#: include/user.php:146 include/user.php:244
msgid "Nickname is already registered. Please choose another."
msgstr "Bijnaam is al geregistreerd. Kies een andere."
#: include/user.php:156
msgid ""
"Add/remove mention when a fourm page is selected/deselected in ACL window."
"Nickname was once registered here and may not be re-used. Please choose "
"another."
msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."
#: include/user.php:172
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."
#: include/user.php:230
msgid "An error occurred during registration. Please try again."
msgstr ""
#: include/features.php:38
msgid "Network Sidebar Widgets"
msgstr "Zijbalkwidgets op netwerkpagina"
#: include/user.php:255 view/theme/duepuntozero/config.php:44
msgid "default"
msgstr "standaard"
#: include/features.php:39
msgid "Search by Date"
msgstr "Zoeken op datum"
#: include/features.php:39
msgid "Ability to select posts by date ranges"
msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik"
#: include/features.php:40
msgid "Group Filter"
msgstr "Groepsfilter"
#: include/features.php:40
msgid "Enable widget to display Network posts only from selected group"
msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen"
#: include/features.php:41
msgid "Network Filter"
msgstr "Netwerkfilter"
#: include/features.php:41
msgid "Enable widget to display Network posts only from selected network"
msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken"
#: include/features.php:42
msgid "Save search terms for re-use"
msgstr "Sla zoekopdrachten op voor hergebruik"
#: include/features.php:47
msgid "Network Tabs"
msgstr "Netwerktabs"
#: include/features.php:48
msgid "Network Personal Tab"
msgstr "Persoonlijke netwerktab"
#: include/features.php:48
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"
#: include/features.php:49
msgid "Network New Tab"
msgstr "Nieuwe netwerktab"
#: include/features.php:49
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)"
#: include/features.php:50
msgid "Network Shared Links Tab"
#: include/user.php:265
msgid "An error occurred creating your default profile. Please try again."
msgstr ""
#: include/features.php:50
msgid "Enable tab to display only Network posts with links in them"
#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42
msgid "Friends"
msgstr "Vrienden"
#: include/user.php:385
#, php-format
msgid ""
"\n"
"\t\tDear %1$s,\n"
"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
"\t"
msgstr ""
#: include/features.php:55
msgid "Post/Comment Tools"
msgstr "Bericht-/reactiehulpmiddelen"
#: include/features.php:56
msgid "Multiple Deletion"
msgstr "Meervoudige verwijdering"
#: include/features.php:56
msgid "Select and delete multiple posts/comments at once"
msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer"
#: include/features.php:57
msgid "Edit Sent Posts"
msgstr "Bewerk verzonden berichten"
#: include/features.php:57
msgid "Edit and correct posts and comments after sending"
msgstr "Bewerk en corrigeer berichten en reacties na verzending"
#: include/features.php:58
msgid "Tagging"
msgstr "Labelen"
#: include/features.php:58
msgid "Ability to tag existing posts"
msgstr "Mogelijkheid om bestaande berichten te labelen"
#: include/features.php:59
msgid "Post Categories"
msgstr "Categorieën berichten"
#: include/features.php:59
msgid "Add categories to your posts"
msgstr "Voeg categorieën toe aan je berichten"
#: include/features.php:60
msgid "Ability to file posts under folders"
msgstr "Mogelijkheid om berichten in mappen te bewaren"
#: include/features.php:61
msgid "Dislike Posts"
msgstr "Vind berichten niet leuk"
#: include/features.php:61
msgid "Ability to dislike posts/comments"
msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden"
#: include/features.php:62
msgid "Star Posts"
msgstr "Geef berichten een ster"
#: include/features.php:62
msgid "Ability to mark special posts with a star indicator"
#: include/user.php:389
#, php-format
msgid ""
"\n"
"\t\tThe login details are as follows:\n"
"\t\t\tSite Location:\t%3$s\n"
"\t\t\tLogin Name:\t%1$s\n"
"\t\t\tPassword:\t%5$s\n"
"\n"
"\t\tYou may change your password from your account \"Settings\" page after logging\n"
"\t\tin.\n"
"\n"
"\t\tPlease take a few moments to review the other account settings on that page.\n"
"\n"
"\t\tYou may also wish to add some basic information to your default profile\n"
"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
"\n"
"\t\tWe recommend setting your full name, adding a profile photo,\n"
"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
"\t\tthan that.\n"
"\n"
"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
"\t\tIf you are new and do not know anybody here, they may help\n"
"\t\tyou to make some new and interesting friends.\n"
"\n"
"\n"
"\t\tThank you and welcome to %2$s."
msgstr ""
#: include/features.php:63
msgid "Mute Post Notifications"
#: include/diaspora.php:719
msgid "Sharing notification from Diaspora network"
msgstr ""
#: include/features.php:63
msgid "Ability to mute notifications for a thread"
msgstr ""
#: include/diaspora.php:2574
msgid "Attachments:"
msgstr "Bijlagen:"
#: include/items.php:4933
msgid "Do you really want to delete this item?"
msgstr "Wil je echt dit item verwijderen?"
#: include/items.php:5208
msgid "Archives"
msgstr "Archieven"
#: include/profile_selectors.php:6
msgid "Male"
@ -6291,10 +7801,6 @@ msgstr "Niet-specifiek"
msgid "Other"
msgstr "Anders"
#: include/profile_selectors.php:6
msgid "Undecided"
msgstr "Onbeslist"
#: include/profile_selectors.php:23
msgid "Males"
msgstr "Mannen"
@ -6383,10 +7889,6 @@ msgstr "Ontrouw"
msgid "Sex Addict"
msgstr "Seksverslaafd"
#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301
msgid "Friends"
msgstr "Vrienden"
#: include/profile_selectors.php:42
msgid "Friends/Benefits"
msgstr "Vriendschap plus"
@ -6471,371 +7973,6 @@ msgstr "Kan me niet schelen"
msgid "Ask me"
msgstr "Vraag me"
#: include/Contact.php:119
msgid "stopped following"
msgstr ""
#: include/Contact.php:232 include/conversation.php:881
msgid "Poke"
msgstr "Aanstoten"
#: include/Contact.php:233 include/conversation.php:875
msgid "View Status"
msgstr "Bekijk status"
#: include/Contact.php:234 include/conversation.php:876
msgid "View Profile"
msgstr "Bekijk profiel"
#: include/Contact.php:235 include/conversation.php:877
msgid "View Photos"
msgstr "Bekijk foto's"
#: include/Contact.php:236 include/Contact.php:259
#: include/conversation.php:878
msgid "Network Posts"
msgstr "Netwerkberichten"
#: include/Contact.php:237 include/Contact.php:259
#: include/conversation.php:879
msgid "Edit Contact"
msgstr "Bewerk contact"
#: include/Contact.php:238
msgid "Drop Contact"
msgstr "Verwijder contact"
#: include/Contact.php:239 include/Contact.php:259
#: include/conversation.php:880
msgid "Send PM"
msgstr "Stuur een privébericht"
#: include/Scrape.php:608
msgid " on Last.fm"
msgstr " op Last.fm"
#: include/acl_selectors.php:324
msgid "Post to Email"
msgstr "Verzenden per e-mail"
#: include/acl_selectors.php:329
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgstr ""
#: include/acl_selectors.php:335
msgid "Visible to everybody"
msgstr "Zichtbaar voor iedereen"
#: include/api.php:310 include/api.php:321 include/api.php:430
#: include/api.php:1133 include/api.php:1135
msgid "User not found."
msgstr "Gebruiker niet gevonden"
#: include/api.php:784
#, php-format
msgid "Daily posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:803
#, php-format
msgid "Weekly posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:822
#, php-format
msgid "Monthly posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:1342
msgid "There is no status with this id."
msgstr "Er is geen status met dit kenmerk"
#: include/api.php:1416
msgid "There is no conversation with this id."
msgstr ""
#: include/api.php:1686
msgid "Invalid request."
msgstr ""
#: include/api.php:1697
msgid "Invalid item."
msgstr ""
#: include/api.php:1707
msgid "Invalid action. "
msgstr ""
#: include/api.php:1715
msgid "DB error"
msgstr ""
#: include/bb2diaspora.php:145 include/event.php:22
msgid "Starts:"
msgstr "Begint:"
#: include/bb2diaspora.php:153 include/event.php:32
msgid "Finishes:"
msgstr "Eindigt:"
#: include/bbcode.php:451 include/bbcode.php:1101 include/bbcode.php:1102
msgid "Image/photo"
msgstr "Afbeelding/foto"
#: include/bbcode.php:549
#, php-format
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr ""
#: include/bbcode.php:583
#, php-format
msgid ""
"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
"href=\"%s\" target=\"_blank\">post</a>"
msgstr ""
#: include/bbcode.php:1065 include/bbcode.php:1085
msgid "$1 wrote:"
msgstr "$1 schreef:"
#: include/bbcode.php:1110 include/bbcode.php:1111
msgid "Encrypted content"
msgstr "Versleutelde inhoud"
#: include/conversation.php:206
#, php-format
msgid "%1$s poked %2$s"
msgstr "%1$s stootte %2$s aan"
#: include/conversation.php:290
msgid "post/item"
msgstr "bericht/item"
#: include/conversation.php:291
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s markeerde %2$s's %3$s als favoriet"
#: include/conversation.php:771
msgid "remove"
msgstr "verwijder"
#: include/conversation.php:775
msgid "Delete Selected Items"
msgstr "Geselecteerde items verwijderen"
#: include/conversation.php:874
msgid "Follow Thread"
msgstr "Conversatie volgen"
#: include/conversation.php:943
#, php-format
msgid "%s likes this."
msgstr "%s vindt dit leuk."
#: include/conversation.php:943
#, php-format
msgid "%s doesn't like this."
msgstr "%s vindt dit niet leuk."
#: include/conversation.php:948
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d mensen</span> vinden dit leuk"
#: include/conversation.php:951
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d people</span> vinden dit niet leuk"
#: include/conversation.php:965
msgid "and"
msgstr "en"
#: include/conversation.php:971
#, php-format
msgid ", and %d other people"
msgstr ", en %d andere mensen"
#: include/conversation.php:973
#, php-format
msgid "%s like this."
msgstr "%s vindt dit leuk."
#: include/conversation.php:973
#, php-format
msgid "%s don't like this."
msgstr "%s vindt dit niet leuk."
#: include/conversation.php:1000 include/conversation.php:1018
msgid "Visible to <strong>everybody</strong>"
msgstr "Zichtbaar voor <strong>iedereen</strong>"
#: include/conversation.php:1002 include/conversation.php:1020
msgid "Please enter a video link/URL:"
msgstr "Vul een videolink/URL in:"
#: include/conversation.php:1003 include/conversation.php:1021
msgid "Please enter an audio link/URL:"
msgstr "Vul een audiolink/URL in:"
#: include/conversation.php:1004 include/conversation.php:1022
msgid "Tag term:"
msgstr "Label:"
#: include/conversation.php:1006 include/conversation.php:1024
msgid "Where are you right now?"
msgstr "Waar ben je nu?"
#: include/conversation.php:1007
msgid "Delete item(s)?"
msgstr "Item(s) verwijderen?"
#: include/conversation.php:1076
msgid "permissions"
msgstr "rechten"
#: include/conversation.php:1099
msgid "Post to Groups"
msgstr "Verzenden naar Groepen"
#: include/conversation.php:1100
msgid "Post to Contacts"
msgstr "Verzenden naar Contacten"
#: include/conversation.php:1101
msgid "Private post"
msgstr "Privé verzending"
#: include/datetime.php:43 include/datetime.php:45
msgid "Miscellaneous"
msgstr "Diversen"
#: include/datetime.php:141
msgid "YYYY-MM-DD or MM-DD"
msgstr ""
#: include/datetime.php:256
msgid "never"
msgstr "nooit"
#: include/datetime.php:262
msgid "less than a second ago"
msgstr "minder dan een seconde geleden"
#: include/datetime.php:272
msgid "year"
msgstr "jaar"
#: include/datetime.php:272
msgid "years"
msgstr "jaren"
#: include/datetime.php:273
msgid "month"
msgstr "maand"
#: include/datetime.php:273
msgid "months"
msgstr "maanden"
#: include/datetime.php:274
msgid "week"
msgstr "week"
#: include/datetime.php:274
msgid "weeks"
msgstr "weken"
#: include/datetime.php:275
msgid "day"
msgstr "dag"
#: include/datetime.php:275
msgid "days"
msgstr "dagen"
#: include/datetime.php:276
msgid "hour"
msgstr "uur"
#: include/datetime.php:276
msgid "hours"
msgstr "uren"
#: include/datetime.php:277
msgid "minute"
msgstr "minuut"
#: include/datetime.php:277
msgid "minutes"
msgstr "minuten"
#: include/datetime.php:278
msgid "second"
msgstr "seconde"
#: include/datetime.php:278
msgid "seconds"
msgstr "secondes"
#: include/datetime.php:287
#, php-format
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s geleden"
#: include/datetime.php:459 include/items.php:2431
#, php-format
msgid "%s's birthday"
msgstr "%s's verjaardag"
#: include/datetime.php:460 include/items.php:2432
#, php-format
msgid "Happy Birthday %s"
msgstr "Gefeliciteerd %s"
#: include/dbstructure.php:26
#, php-format
msgid ""
"\n"
"\t\t\tThe friendica developers released update %s recently,\n"
"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
msgstr ""
#: include/dbstructure.php:31
#, php-format
msgid ""
"The error message is\n"
"[pre]%s[/pre]"
msgstr ""
#: include/dbstructure.php:152
msgid "Errors encountered creating database tables."
msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."
#: include/dbstructure.php:210
msgid "Errors encountered performing database changes."
msgstr ""
#: include/delivery.php:456 include/notifier.php:825
msgid "(no subject)"
msgstr "(geen onderwerp)"
#: include/delivery.php:467 include/enotify.php:33 include/notifier.php:835
msgid "noreply"
msgstr "geen reactie"
#: include/diaspora.php:705
msgid "Sharing notification from Diaspora network"
msgstr ""
#: include/diaspora.php:2539
msgid "Attachments:"
msgstr "Bijlagen:"
#: include/enotify.php:18
msgid "Friendica Notification"
msgstr "Friendica Notificatie"
@ -6844,242 +7981,247 @@ msgstr "Friendica Notificatie"
msgid "Thank You,"
msgstr "Bedankt"
#: include/enotify.php:23
#: include/enotify.php:24
#, php-format
msgid "%s Administrator"
msgstr "%s Beheerder"
#: include/enotify.php:64
#: include/enotify.php:26
#, php-format
msgid "%1$s, %2$s Administrator"
msgstr ""
#: include/enotify.php:68
#, php-format
msgid "%s <!item_type!>"
msgstr "%s <!item_type!>"
#: include/enotify.php:78
#: include/enotify.php:82
#, php-format
msgid "[Friendica:Notify] New mail received at %s"
msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s"
#: include/enotify.php:80
#: include/enotify.php:84
#, php-format
msgid "%1$s sent you a new private message at %2$s."
msgstr "%1$s sent you a new private message at %2$s."
#: include/enotify.php:81
#: include/enotify.php:85
#, php-format
msgid "%1$s sent you %2$s."
msgstr "%1$s stuurde jou %2$s."
#: include/enotify.php:81
#: include/enotify.php:85
msgid "a private message"
msgstr "een prive bericht"
#: include/enotify.php:82
#: include/enotify.php:86
#, php-format
msgid "Please visit %s to view and/or reply to your private messages."
msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden."
#: include/enotify.php:134
#: include/enotify.php:138
#, php-format
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]"
#: include/enotify.php:141
#: include/enotify.php:145
#, php-format
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]"
#: include/enotify.php:149
#: include/enotify.php:153
#, php-format
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]"
#: include/enotify.php:159
#: include/enotify.php:163
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
msgstr ""
#: include/enotify.php:160
#: include/enotify.php:164
#, php-format
msgid "%s commented on an item/conversation you have been following."
msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt."
#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191
#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235
#: include/enotify.php:167 include/enotify.php:182 include/enotify.php:195
#: include/enotify.php:208 include/enotify.php:226 include/enotify.php:239
#, php-format
msgid "Please visit %s to view and/or reply to the conversation."
msgstr "Bezoek %s om de conversatie te bekijken en/of te beantwoorden."
#: include/enotify.php:170
#: include/enotify.php:174
#, php-format
msgid "[Friendica:Notify] %s posted to your profile wall"
msgstr ""
#: include/enotify.php:172
#: include/enotify.php:176
#, php-format
msgid "%1$s posted to your profile wall at %2$s"
msgstr ""
#: include/enotify.php:174
#: include/enotify.php:178
#, php-format
msgid "%1$s posted to [url=%2$s]your wall[/url]"
msgstr ""
#: include/enotify.php:185
#: include/enotify.php:189
#, php-format
msgid "[Friendica:Notify] %s tagged you"
msgstr "[Friendica:Notificatie] %s heeft jou genoemd"
#: include/enotify.php:186
#: include/enotify.php:190
#, php-format
msgid "%1$s tagged you at %2$s"
msgstr "%1$s heeft jou in %2$s genoemd"
#: include/enotify.php:187
#: include/enotify.php:191
#, php-format
msgid "%1$s [url=%2$s]tagged you[/url]."
msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]."
#: include/enotify.php:198
#: include/enotify.php:202
#, php-format
msgid "[Friendica:Notify] %s shared a new post"
msgstr ""
#: include/enotify.php:199
#: include/enotify.php:203
#, php-format
msgid "%1$s shared a new post at %2$s"
msgstr ""
#: include/enotify.php:200
#: include/enotify.php:204
#, php-format
msgid "%1$s [url=%2$s]shared a post[/url]."
msgstr ""
#: include/enotify.php:212
#: include/enotify.php:216
#, php-format
msgid "[Friendica:Notify] %1$s poked you"
msgstr "[Friendica:Notify] %1$s heeft jou aangestoten"
#: include/enotify.php:213
#: include/enotify.php:217
#, php-format
msgid "%1$s poked you at %2$s"
msgstr "%1$s heeft jou aangestoten op %2$s"
#: include/enotify.php:214
#: include/enotify.php:218
#, php-format
msgid "%1$s [url=%2$s]poked you[/url]."
msgstr ""
#: include/enotify.php:229
#: include/enotify.php:233
#, php-format
msgid "[Friendica:Notify] %s tagged your post"
msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld"
#: include/enotify.php:230
#: include/enotify.php:234
#, php-format
msgid "%1$s tagged your post at %2$s"
msgstr "%1$s heeft jouw bericht gelabeld in %2$s"
#: include/enotify.php:231
#: include/enotify.php:235
#, php-format
msgid "%1$s tagged [url=%2$s]your post[/url]"
msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]"
#: include/enotify.php:242
#: include/enotify.php:246
msgid "[Friendica:Notify] Introduction received"
msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"
#: include/enotify.php:243
#: include/enotify.php:247
#, php-format
msgid "You've received an introduction from '%1$s' at %2$s"
msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s"
#: include/enotify.php:244
#: include/enotify.php:248
#, php-format
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s."
#: include/enotify.php:247 include/enotify.php:289
#: include/enotify.php:251 include/enotify.php:293
#, php-format
msgid "You may visit their profile at %s"
msgstr "U kunt hun profiel bezoeken op %s"
#: include/enotify.php:249
#: include/enotify.php:253
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr "Bezoek %s om het verzoek goed of af te keuren."
#: include/enotify.php:257
#: include/enotify.php:261
msgid "[Friendica:Notify] A new person is sharing with you"
msgstr ""
#: include/enotify.php:258 include/enotify.php:259
#: include/enotify.php:262 include/enotify.php:263
#, php-format
msgid "%1$s is sharing with you at %2$s"
msgstr ""
#: include/enotify.php:265
#: include/enotify.php:269
msgid "[Friendica:Notify] You have a new follower"
msgstr ""
#: include/enotify.php:266 include/enotify.php:267
#: include/enotify.php:270 include/enotify.php:271
#, php-format
msgid "You have a new follower at %2$s : %1$s"
msgstr ""
#: include/enotify.php:280
#: include/enotify.php:284
msgid "[Friendica:Notify] Friend suggestion received"
msgstr ""
#: include/enotify.php:281
#: include/enotify.php:285
#, php-format
msgid "You've received a friend suggestion from '%1$s' at %2$s"
msgstr ""
#: include/enotify.php:282
#: include/enotify.php:286
#, php-format
msgid ""
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
msgstr ""
#: include/enotify.php:287
#: include/enotify.php:291
msgid "Name:"
msgstr "Naam:"
#: include/enotify.php:288
#: include/enotify.php:292
msgid "Photo:"
msgstr "Foto: "
#: include/enotify.php:291
#: include/enotify.php:295
#, php-format
msgid "Please visit %s to approve or reject the suggestion."
msgstr ""
#: include/enotify.php:299 include/enotify.php:312
#: include/enotify.php:303 include/enotify.php:316
msgid "[Friendica:Notify] Connection accepted"
msgstr ""
#: include/enotify.php:300 include/enotify.php:313
#: include/enotify.php:304 include/enotify.php:317
#, php-format
msgid "'%1$s' has accepted your connection request at %2$s"
msgstr ""
#: include/enotify.php:301 include/enotify.php:314
#: include/enotify.php:305 include/enotify.php:318
#, php-format
msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
msgstr ""
#: include/enotify.php:304
#: include/enotify.php:308
msgid ""
"You are now mutual friends and may exchange status updates, photos, and email\n"
"\twithout restriction."
msgstr ""
#: include/enotify.php:307 include/enotify.php:321
#: include/enotify.php:311 include/enotify.php:325
#, php-format
msgid "Please visit %s if you wish to make any changes to this relationship."
msgstr ""
#: include/enotify.php:317
#: include/enotify.php:321
#, php-format
msgid ""
"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
@ -7088,873 +8230,260 @@ msgid ""
"automatically."
msgstr ""
#: include/enotify.php:319
#: include/enotify.php:323
#, php-format
msgid ""
"'%1$s' may choose to extend this into a two-way or more permissive "
"relationship in the future. "
msgstr ""
#: include/enotify.php:332
#: include/enotify.php:336
msgid "[Friendica System:Notify] registration request"
msgstr ""
#: include/enotify.php:333
#, php-format
msgid "You've received a registration request from '%1$s' at %2$s"
msgstr ""
#: include/enotify.php:334
#, php-format
msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
msgstr ""
#: include/enotify.php:337
#, php-format
msgid "You've received a registration request from '%1$s' at %2$s"
msgstr ""
#: include/enotify.php:338
#, php-format
msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
msgstr ""
#: include/enotify.php:341
#, php-format
msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
msgstr ""
#: include/enotify.php:340
#: include/enotify.php:344
#, php-format
msgid "Please visit %s to approve or reject the request."
msgstr ""
#: include/follow.php:32
msgid "Connect URL missing."
msgstr ""
#: include/follow.php:59
msgid ""
"This site is not configured to allow communications with other networks."
msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken."
#: include/follow.php:60 include/follow.php:80
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt."
#: include/follow.php:78
msgid "The profile address specified does not provide adequate information."
msgstr ""
#: include/follow.php:82
msgid "An author or name was not found."
msgstr ""
#: include/follow.php:84
msgid "No browser URL could be matched to this address."
msgstr ""
#: include/follow.php:86
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."
#: include/follow.php:87
msgid "Use mailto: in front of address to force email check."
msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."
#: include/follow.php:93
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr ""
#: include/follow.php:103
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr ""
#: include/follow.php:205
msgid "Unable to retrieve contact information."
msgstr ""
#: include/follow.php:258
msgid "following"
msgstr "volgend"
#: include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
msgstr "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "
#: include/group.php:207
msgid "Default privacy group for new contacts"
msgstr ""
#: include/group.php:226
msgid "Everybody"
msgstr "Iedereen"
#: include/group.php:249
msgid "edit"
msgstr "verander"
#: include/group.php:271
msgid "Edit group"
msgstr "Verander groep"
#: include/group.php:272
msgid "Create a new group"
msgstr "Maak nieuwe groep"
#: include/group.php:275
msgid "Contacts not in any group"
msgstr ""
#: include/identity.php:38
msgid "Requested account is not available."
msgstr "Gevraagde account is niet beschikbaar."
#: include/identity.php:121 include/identity.php:255 include/identity.php:607
msgid "Edit profile"
msgstr "Bewerk profiel"
#: include/identity.php:220
msgid "Message"
msgstr "Bericht"
#: include/identity.php:226 include/nav.php:176
msgid "Profiles"
msgstr "Profielen"
#: include/identity.php:226
msgid "Manage/edit profiles"
msgstr "Beheer/wijzig profielen"
#: include/identity.php:341
msgid "Network:"
msgstr ""
#: include/identity.php:373 include/identity.php:459
msgid "g A l F d"
msgstr "G l j F"
#: include/identity.php:374 include/identity.php:460
msgid "F d"
msgstr "d F"
#: include/identity.php:419 include/identity.php:506
msgid "[today]"
msgstr "[vandaag]"
#: include/identity.php:431
msgid "Birthday Reminders"
msgstr "Verjaardagsherinneringen"
#: include/identity.php:432
msgid "Birthdays this week:"
msgstr "Verjaardagen deze week:"
#: include/identity.php:493
msgid "[No description]"
msgstr "[Geen omschrijving]"
#: include/identity.php:517
msgid "Event Reminders"
msgstr "Gebeurtenisherinneringen"
#: include/identity.php:518
msgid "Events this week:"
msgstr "Gebeurtenissen deze week:"
#: include/identity.php:545
msgid "j F, Y"
msgstr "F j Y"
#: include/identity.php:546
msgid "j F"
msgstr "F j"
#: include/identity.php:553
msgid "Birthday:"
msgstr "Verjaardag:"
#: include/identity.php:557
msgid "Age:"
msgstr "Leeftijd:"
#: include/identity.php:566
#, php-format
msgid "for %1$d %2$s"
msgstr "voor %1$d %2$s"
#: include/identity.php:575
msgid "Tags:"
msgstr "Labels:"
#: include/identity.php:579
msgid "Religion:"
msgstr "Religie:"
#: include/identity.php:583
msgid "Hobbies/Interests:"
msgstr "Hobby:"
#: include/identity.php:590
msgid "Contact information and Social Networks:"
msgstr "Contactinformatie en sociale netwerken:"
#: include/identity.php:592
msgid "Musical interests:"
msgstr "Muzikale interesse "
#: include/identity.php:594
msgid "Books, literature:"
msgstr "Boeken, literatuur:"
#: include/identity.php:596
msgid "Television:"
msgstr "Televisie"
#: include/identity.php:598
msgid "Film/dance/culture/entertainment:"
msgstr "Film/dans/cultuur/ontspanning:"
#: include/identity.php:600
msgid "Love/Romance:"
msgstr "Liefde/romance:"
#: include/identity.php:602
msgid "Work/employment:"
msgstr "Werk/beroep:"
#: include/identity.php:604
msgid "School/education:"
msgstr "School/opleiding:"
#: include/identity.php:632 include/nav.php:76
msgid "Status"
msgstr "Tijdlijn"
#: include/identity.php:635
msgid "Status Messages and Posts"
msgstr "Berichten op jouw tijdlijn"
#: include/identity.php:642
msgid "Profile Details"
msgstr "Profieldetails"
#: include/identity.php:653 include/identity.php:656 include/nav.php:79
msgid "Videos"
msgstr "Video's"
#: include/identity.php:666
msgid "Events and Calendar"
msgstr "Gebeurtenissen en kalender"
#: include/identity.php:673
msgid "Only You Can See This"
msgstr "Alleen jij kunt dit zien"
#: include/items.php:4852
msgid "Do you really want to delete this item?"
msgstr "Wil je echt dit item verwijderen?"
#: include/items.php:5127
msgid "Archives"
msgstr "Archieven"
#: include/nav.php:73 boot.php:1262
msgid "Logout"
msgstr "Uitloggen"
#: include/nav.php:73
msgid "End this session"
msgstr "Deze sessie beëindigen"
#: include/nav.php:79
msgid "Your videos"
msgstr ""
#: include/nav.php:81
msgid "Your personal notes"
msgstr ""
#: include/nav.php:92
msgid "Sign in"
msgstr "Inloggen"
#: include/nav.php:105
msgid "Home Page"
msgstr "Jouw tijdlijn"
#: include/nav.php:109
msgid "Create an account"
msgstr "Maak een accoount"
#: include/nav.php:114
msgid "Help and documentation"
msgstr "Hulp en documentatie"
#: include/nav.php:117
msgid "Apps"
msgstr "Apps"
#: include/nav.php:117
msgid "Addon applications, utilities, games"
msgstr "Extra toepassingen, hulpmiddelen of spelletjes"
#: include/nav.php:119
msgid "Search site content"
msgstr "Doorzoek de inhoud van de website"
#: include/nav.php:129
msgid "Conversations on this site"
msgstr "Conversaties op deze website"
#: include/nav.php:131
msgid "Conversations on the network"
msgstr ""
#: include/nav.php:133
msgid "Directory"
msgstr "Gids"
#: include/nav.php:133
msgid "People directory"
msgstr "Personengids"
#: include/nav.php:135
msgid "Information"
msgstr "Informatie"
#: include/nav.php:135
msgid "Information about this friendica instance"
msgstr ""
#: include/nav.php:145
msgid "Conversations from your friends"
msgstr "Conversaties van je vrienden"
#: include/nav.php:146
msgid "Network Reset"
msgstr "Netwerkpagina opnieuw instellen"
#: include/nav.php:146
msgid "Load Network page with no filters"
msgstr "Laad de netwerkpagina zonder filters"
#: include/nav.php:153
msgid "Friend Requests"
msgstr "Vriendschapsverzoeken"
#: include/nav.php:157
msgid "See all notifications"
msgstr "Toon alle notificaties"
#: include/nav.php:158
msgid "Mark all system notifications seen"
msgstr "Alle systeemnotificaties als gelezen markeren"
#: include/nav.php:162
msgid "Private mail"
msgstr "Privéberichten"
#: include/nav.php:163
msgid "Inbox"
msgstr "Inbox"
#: include/nav.php:164
msgid "Outbox"
msgstr "Verzonden berichten"
#: include/nav.php:168
msgid "Manage"
msgstr "Beheren"
#: include/nav.php:168
msgid "Manage other pages"
msgstr "Andere pagina's beheren"
#: include/nav.php:173
msgid "Account settings"
msgstr "Account instellingen"
#: include/nav.php:176
msgid "Manage/Edit Profiles"
msgstr "Beheer/Wijzig Profielen"
#: include/nav.php:178
msgid "Manage/edit friends and contacts"
msgstr "Beheer/Wijzig vrienden en contacten"
#: include/nav.php:185
msgid "Site setup and configuration"
msgstr "Website opzetten en configureren"
#: include/nav.php:189
msgid "Navigation"
msgstr "Navigatie"
#: include/nav.php:189
msgid "Site map"
msgstr "Sitemap"
#: include/network.php:959
msgid "view full size"
msgstr "Volledig formaat"
#: include/oembed.php:224
#: include/oembed.php:220
msgid "Embedded content"
msgstr "Ingebedde inhoud"
#: include/oembed.php:233
#: include/oembed.php:229
msgid "Embedding disabled"
msgstr "Inbedden uitgeschakeld"
#: include/security.php:22
msgid "Welcome "
msgstr "Welkom"
#: include/security.php:23
msgid "Please upload a profile photo."
msgstr "Upload een profielfoto."
#: include/security.php:26
msgid "Welcome back "
msgstr "Welkom terug "
#: include/security.php:375
msgid ""
"The form security token was not correct. This probably happened because the "
"form has been opened for too long (>3 hours) before submitting it."
#: include/uimport.php:94
msgid "Error decoding account file"
msgstr ""
#: include/text.php:299
msgid "newer"
msgstr "nieuwere berichten"
#: include/text.php:301
msgid "older"
msgstr "oudere berichten"
#: include/text.php:306
msgid "prev"
msgstr "vorige"
#: include/text.php:308
msgid "first"
msgstr "eerste"
#: include/text.php:340
msgid "last"
msgstr "laatste"
#: include/text.php:343
msgid "next"
msgstr "volgende"
#: include/text.php:398
msgid "Loading more entries..."
#: include/uimport.php:100
msgid "Error! No version data in file! This is not a Friendica account file?"
msgstr ""
#: include/text.php:399
msgid "The end"
#: include/uimport.php:116 include/uimport.php:127
msgid "Error! Cannot check nickname"
msgstr ""
#: include/text.php:878
msgid "No contacts"
msgstr "Geen contacten"
#: include/text.php:887
#: include/uimport.php:120 include/uimport.php:131
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] "%d contact"
msgstr[1] "%d contacten"
msgid "User '%s' already exists on this server!"
msgstr "Gebruiker '%s' bestaat al op deze server!"
#: include/text.php:1027
msgid "poke"
msgstr "aanstoten"
#: include/uimport.php:153
msgid "User creation error"
msgstr "Fout bij het aanmaken van de gebruiker"
#: include/text.php:1027
msgid "poked"
msgstr "aangestoten"
#: include/uimport.php:173
msgid "User profile creation error"
msgstr "Fout bij het aanmaken van het gebruikersprofiel"
#: include/text.php:1028
msgid "ping"
msgstr "ping"
#: include/text.php:1028
msgid "pinged"
msgstr "gepingd"
#: include/text.php:1029
msgid "prod"
msgstr "porren"
#: include/text.php:1029
msgid "prodded"
msgstr "gepord"
#: include/text.php:1030
msgid "slap"
msgstr "slaan"
#: include/text.php:1030
msgid "slapped"
msgstr "geslagen"
#: include/text.php:1031
msgid "finger"
msgstr "finger"
#: include/text.php:1031
msgid "fingered"
msgstr "gerfingerd"
#: include/text.php:1032
msgid "rebuff"
msgstr "afpoeieren"
#: include/text.php:1032
msgid "rebuffed"
msgstr "afgepoeierd"
#: include/text.php:1046
msgid "happy"
msgstr "Blij"
#: include/text.php:1047
msgid "sad"
msgstr "Verdrietig"
#: include/text.php:1048
msgid "mellow"
msgstr "mellow"
#: include/text.php:1049
msgid "tired"
msgstr "vermoeid"
#: include/text.php:1050
msgid "perky"
msgstr "parmantig"
#: include/text.php:1051
msgid "angry"
msgstr "boos"
#: include/text.php:1052
msgid "stupified"
msgstr "verbijsterd"
#: include/text.php:1053
msgid "puzzled"
msgstr "onzeker"
#: include/text.php:1054
msgid "interested"
msgstr "Geïnteresseerd"
#: include/text.php:1055
msgid "bitter"
msgstr "bitter"
#: include/text.php:1056
msgid "cheerful"
msgstr "vrolijk"
#: include/text.php:1057
msgid "alive"
msgstr "levend"
#: include/text.php:1058
msgid "annoyed"
msgstr "verveeld"
#: include/text.php:1059
msgid "anxious"
msgstr "bezorgd"
#: include/text.php:1060
msgid "cranky"
msgstr "humeurig "
#: include/text.php:1061
msgid "disturbed"
msgstr "verontrust"
#: include/text.php:1062
msgid "frustrated"
msgstr "gefrustreerd"
#: include/text.php:1063
msgid "motivated"
msgstr "gemotiveerd"
#: include/text.php:1064
msgid "relaxed"
msgstr "ontspannen"
#: include/text.php:1065
msgid "surprised"
msgstr "verbaasd"
#: include/text.php:1235
msgid "Monday"
msgstr "Maandag"
#: include/text.php:1235
msgid "Tuesday"
msgstr "Dinsdag"
#: include/text.php:1235
msgid "Wednesday"
msgstr "Woensdag"
#: include/text.php:1235
msgid "Thursday"
msgstr "Donderdag"
#: include/text.php:1235
msgid "Friday"
msgstr "Vrijdag"
#: include/text.php:1235
msgid "Saturday"
msgstr "Zaterdag"
#: include/text.php:1235
msgid "Sunday"
msgstr "Zondag"
#: include/text.php:1239
msgid "January"
msgstr "Januari"
#: include/text.php:1239
msgid "February"
msgstr "Februari"
#: include/text.php:1239
msgid "March"
msgstr "Maart"
#: include/text.php:1239
msgid "April"
msgstr "April"
#: include/text.php:1239
msgid "May"
msgstr "Mei"
#: include/text.php:1239
msgid "June"
msgstr "Juni"
#: include/text.php:1239
msgid "July"
msgstr "Juli"
#: include/text.php:1239
msgid "August"
msgstr "Augustus"
#: include/text.php:1239
msgid "September"
msgstr "September"
#: include/text.php:1239
msgid "October"
msgstr "Oktober"
#: include/text.php:1239
msgid "November"
msgstr "November"
#: include/text.php:1239
msgid "December"
msgstr "December"
#: include/text.php:1461
msgid "bytes"
msgstr "bytes"
#: include/text.php:1493 include/text.php:1505
msgid "Click to open/close"
msgstr "klik om te openen/sluiten"
#: include/text.php:1746
msgid "Select an alternate language"
msgstr "Kies een andere taal"
#: include/text.php:2002
msgid "activity"
msgstr "activiteit"
#: include/text.php:2005
msgid "post"
msgstr "bericht"
#: include/text.php:2173
msgid "Item filed"
msgstr "Item bewaard"
#: include/user.php:48
msgid "An invitation is required."
msgstr "Een uitnodiging is vereist."
#: include/user.php:53
msgid "Invitation could not be verified."
msgstr "Uitnodiging kon niet geverifieerd worden."
#: include/user.php:61
msgid "Invalid OpenID url"
msgstr "Ongeldige OpenID url"
#: include/user.php:82
msgid "Please enter the required information."
msgstr "Vul de vereiste informatie in."
#: include/user.php:96
msgid "Please use a shorter name."
msgstr "gebruik een kortere naam"
#: include/user.php:98
msgid "Name too short."
msgstr "Naam te kort"
#: include/user.php:113
msgid "That doesn't appear to be your full (First Last) name."
msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."
#: include/user.php:118
msgid "Your email domain is not among those allowed on this site."
msgstr "Je e-maildomein is op deze website niet toegestaan."
#: include/user.php:121
msgid "Not a valid email address."
msgstr "Geen geldig e-mailadres."
#: include/user.php:134
msgid "Cannot use that email."
msgstr "Ik kan die e-mail niet gebruiken."
#: include/user.php:140
msgid ""
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
"must also begin with a letter."
msgstr "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen."
#: include/user.php:146 include/user.php:244
msgid "Nickname is already registered. Please choose another."
msgstr "Bijnaam is al geregistreerd. Kies een andere."
#: include/user.php:156
msgid ""
"Nickname was once registered here and may not be re-used. Please choose "
"another."
msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."
#: include/user.php:172
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."
#: include/user.php:230
msgid "An error occurred during registration. Please try again."
msgstr ""
#: include/user.php:265
msgid "An error occurred creating your default profile. Please try again."
msgstr ""
#: include/user.php:385
#: include/uimport.php:222
#, php-format
msgid ""
"\n"
"\t\tDear %1$s,\n"
"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
"\t"
msgstr ""
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] "%d contact werd niet geïmporteerd"
msgstr[1] "%d contacten werden niet geïmporteerd"
#: include/user.php:389
#, php-format
msgid ""
"\n"
"\t\tThe login details are as follows:\n"
"\t\t\tSite Location:\t%3$s\n"
"\t\t\tLogin Name:\t%1$s\n"
"\t\t\tPassword:\t%5$s\n"
"\n"
"\t\tYou may change your password from your account \"Settings\" page after logging\n"
"\t\tin.\n"
"\n"
"\t\tPlease take a few moments to review the other account settings on that page.\n"
"\n"
"\t\tYou may also wish to add some basic information to your default profile\n"
"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
"\n"
"\t\tWe recommend setting your full name, adding a profile photo,\n"
"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
"\t\tthan that.\n"
"\n"
"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
"\t\tIf you are new and do not know anybody here, they may help\n"
"\t\tyou to make some new and interesting friends.\n"
"\n"
"\n"
"\t\tThank you and welcome to %2$s."
msgstr ""
#: include/uimport.php:292
msgid "Done. You can now login with your username and password"
msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"
#: index.php:441
msgid "toggle mobile"
msgstr "mobiel thema omwisselen"
#: boot.php:753
msgid "Delete this item?"
msgstr "Dit item verwijderen?"
#: view/theme/cleanzero/config.php:83
msgid "Set resize level for images in posts and comments (width and height)"
msgstr ""
#: boot.php:756
msgid "show fewer"
msgstr "Minder tonen"
#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73
#: view/theme/diabook/config.php:151
msgid "Set font-size for posts and comments"
msgstr "Stel lettergrootte voor berichten en reacties in"
#: boot.php:1130
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Wijziging %s mislukt. Lees de error logbestanden."
#: view/theme/cleanzero/config.php:85
msgid "Set theme width"
msgstr "Stel breedte van het thema in"
#: boot.php:1237
msgid "Create a New Account"
msgstr "Nieuwe account aanmaken"
#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68
msgid "Color scheme"
msgstr "Kleurschema"
#: boot.php:1265
msgid "Nickname or Email address: "
msgstr "Bijnaam of e-mailadres:"
#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152
msgid "Set line-height for posts and comments"
msgstr "Stel lijnhoogte voor berichten en reacties in"
#: boot.php:1266
msgid "Password: "
msgstr "Wachtwoord:"
#: view/theme/dispy/config.php:75
msgid "Set colour scheme"
msgstr "Stel kleurschema in"
#: boot.php:1267
msgid "Remember me"
msgstr "Onthou me"
#: view/theme/quattro/config.php:67
msgid "Alignment"
msgstr "Uitlijning"
#: boot.php:1270
msgid "Or login using OpenID: "
msgstr "Of log in met OpenID:"
#: view/theme/quattro/config.php:67
msgid "Left"
msgstr "Links"
#: boot.php:1276
msgid "Forgot your password?"
msgstr "Wachtwoord vergeten?"
#: view/theme/quattro/config.php:67
msgid "Center"
msgstr "Gecentreerd"
#: boot.php:1279
msgid "Website Terms of Service"
msgstr "Gebruikersvoorwaarden website"
#: view/theme/quattro/config.php:69
msgid "Posts font size"
msgstr "Lettergrootte berichten"
#: boot.php:1280
msgid "terms of service"
msgstr "servicevoorwaarden"
#: view/theme/quattro/config.php:70
msgid "Textareas font size"
msgstr "Lettergrootte tekstgebieden"
#: boot.php:1282
msgid "Website Privacy Policy"
msgstr "Privacybeleid website"
#: view/theme/diabook/config.php:153
msgid "Set resolution for middle column"
msgstr "Stel resolutie in voor de middelste kolom. "
#: boot.php:1283
msgid "privacy policy"
msgstr "privacybeleid"
#: view/theme/diabook/config.php:154
msgid "Set color scheme"
msgstr "Stel kleurenschema in"
#: view/theme/diabook/config.php:155
msgid "Set zoomfactor for Earth Layer"
msgstr ""
#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585
msgid "Set longitude (X) for Earth Layers"
msgstr ""
#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586
msgid "Set latitude (Y) for Earth Layers"
msgstr ""
#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130
#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624
#: view/theme/vier/config.php:111 view/theme/vier/theme.php:230
msgid "Community Pages"
msgstr "Forum/groepspagina's"
#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579
#: view/theme/diabook/theme.php:625
msgid "Earth Layers"
msgstr "Earth Layers"
#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391
#: view/theme/diabook/theme.php:626 view/theme/vier/config.php:112
#: view/theme/vier/theme.php:142
msgid "Community Profiles"
msgstr "Forum/groepsprofielen"
#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599
#: view/theme/diabook/theme.php:627 view/theme/vier/config.php:113
msgid "Help or @NewHere ?"
msgstr ""
#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606
#: view/theme/diabook/theme.php:628 view/theme/vier/config.php:114
#: view/theme/vier/theme.php:348
msgid "Connect Services"
msgstr "Diensten verbinden"
#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523
#: view/theme/diabook/theme.php:629 view/theme/vier/config.php:115
#: view/theme/vier/theme.php:189
msgid "Find Friends"
msgstr "Zoek vrienden"
#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412
#: view/theme/diabook/theme.php:630 view/theme/vier/config.php:116
#: view/theme/vier/theme.php:171
msgid "Last users"
msgstr "Laatste gebruikers"
#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486
#: view/theme/diabook/theme.php:631
msgid "Last photos"
msgstr "Laatste foto's"
#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441
#: view/theme/diabook/theme.php:632
msgid "Last likes"
msgstr "Recent leuk gevonden"
#: view/theme/diabook/theme.php:125
msgid "Your contacts"
msgstr "Jouw contacten"
#: view/theme/diabook/theme.php:128
msgid "Your personal photos"
msgstr "Jouw persoonlijke foto's"
#: view/theme/diabook/theme.php:524 view/theme/vier/theme.php:190
msgid "Local Directory"
msgstr "Lokale gids"
#: view/theme/diabook/theme.php:584
msgid "Set zoomfactor for Earth Layers"
msgstr ""
#: view/theme/diabook/theme.php:622
msgid "Show/hide boxes at right-hand column:"
msgstr ""
#: view/theme/vier/config.php:64
msgid "Comma separated list of helper forums"
msgstr ""
#: view/theme/vier/config.php:110
msgid "Set style"
msgstr ""
#: view/theme/vier/theme.php:234
msgid "External link to forum"
msgstr ""
#: view/theme/vier/theme.php:266
msgid "Quick Start"
msgstr ""
#: view/theme/duepuntozero/config.php:45
msgid "greenzero"
msgstr ""
#: view/theme/duepuntozero/config.php:46
msgid "purplezero"
msgstr ""
#: view/theme/duepuntozero/config.php:47
msgid "easterbunny"
msgstr ""
#: view/theme/duepuntozero/config.php:48
msgid "darkzero"
msgstr ""
#: view/theme/duepuntozero/config.php:49
msgid "comix"
msgstr ""
#: view/theme/duepuntozero/config.php:50
msgid "slackr"
msgstr ""
#: view/theme/duepuntozero/config.php:62
msgid "Variations"
msgstr ""

View file

@ -5,193 +5,128 @@ function string_plural_select_nl($n){
return ($n != 1);;
}}
;
$a->strings["This entry was edited"] = "";
$a->strings["Private Message"] = "Privébericht";
$a->strings["Edit"] = "Bewerken";
$a->strings["Select"] = "Kies";
$a->strings["Delete"] = "Verwijder";
$a->strings["save to folder"] = "Bewaren in map";
$a->strings["add star"] = "ster toevoegen";
$a->strings["remove star"] = "ster verwijderen";
$a->strings["toggle star status"] = "ster toevoegen of verwijderen";
$a->strings["starred"] = "met ster";
$a->strings["ignore thread"] = "";
$a->strings["unignore thread"] = "";
$a->strings["toggle ignore status"] = "";
$a->strings["ignored"] = "";
$a->strings["add tag"] = "label toevoegen";
$a->strings["I like this (toggle)"] = "Vind ik leuk";
$a->strings["like"] = "leuk";
$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk";
$a->strings["dislike"] = "niet leuk";
$a->strings["Share this"] = "Delen";
$a->strings["share"] = "Delen";
$a->strings["Categories:"] = "Categorieën:";
$a->strings["Filed under:"] = "Bewaard onder:";
$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s";
$a->strings["to"] = "aan";
$a->strings["via"] = "via";
$a->strings["Wall-to-Wall"] = "wall-to-wall";
$a->strings["via Wall-To-Wall:"] = "via wall-to-wall";
$a->strings["%s from %s"] = "%s van %s";
$a->strings["Comment"] = "Reacties";
$a->strings["Please wait"] = "Even geduld";
$a->strings["%d comment"] = array(
0 => "%d reactie",
1 => "%d reacties",
$a->strings["%d contact edited."] = array(
0 => "",
1 => "",
);
$a->strings["comment"] = array(
0 => "reactie",
1 => "reacties",
);
$a->strings["show more"] = "toon meer";
$a->strings["This is you"] = "Dit ben jij";
$a->strings["Submit"] = "Opslaan";
$a->strings["Bold"] = "Vet";
$a->strings["Italic"] = "Cursief";
$a->strings["Underline"] = "Onderstrepen";
$a->strings["Quote"] = "Citeren";
$a->strings["Code"] = "Broncode";
$a->strings["Image"] = "Afbeelding";
$a->strings["Link"] = "Link";
$a->strings["Video"] = "Video";
$a->strings["Preview"] = "Voorvertoning";
$a->strings["Clone this project:"] = "";
$a->strings["Click here to download"] = "";
$a->strings["This project is empty!"] = "";
$a->strings["Projects"] = "";
$a->strings["add new"] = "";
$a->strings["delete"] = "";
$a->strings["Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone."] = "";
$a->strings["Home"] = "Tijdlijn";
$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties";
$a->strings["Profile"] = "Profiel";
$a->strings["Your profile page"] = "Jouw profiel pagina";
$a->strings["Photos"] = "Foto's";
$a->strings["Your photos"] = "Jouw foto's";
$a->strings["Events"] = "Gebeurtenissen";
$a->strings["Your events"] = "Jouw gebeurtenissen";
$a->strings["Personal notes"] = "Persoonlijke nota's";
$a->strings["Your personal photos"] = "Jouw persoonlijke foto's";
$a->strings["Community"] = "Website";
$a->strings["don't show"] = "niet tonen";
$a->strings["show"] = "tonen";
$a->strings["Theme settings"] = "Thema-instellingen";
$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in";
$a->strings["Set line-height for posts and comments"] = "Stel lijnhoogte voor berichten en reacties in";
$a->strings["Set resolution for middle column"] = "Stel resolutie in voor de middelste kolom. ";
$a->strings["Set color scheme"] = "Stel kleurenschema in";
$a->strings["Set zoomfactor for Earth Layer"] = "";
$a->strings["Set longitude (X) for Earth Layers"] = "";
$a->strings["Set latitude (Y) for Earth Layers"] = "";
$a->strings["Community Pages"] = "Forum/groepspagina's";
$a->strings["Earth Layers"] = "Earth Layers";
$a->strings["Community Profiles"] = "Forum/groepsprofielen";
$a->strings["Help or @NewHere ?"] = "";
$a->strings["Connect Services"] = "Diensten verbinden";
$a->strings["Find Friends"] = "Zoek vrienden";
$a->strings["Last users"] = "Laatste gebruikers";
$a->strings["Last photos"] = "Laatste foto's";
$a->strings["Last likes"] = "Recent leuk gevonden";
$a->strings["Contacts"] = "Contacten";
$a->strings["Your contacts"] = "Jouw contacten";
$a->strings["event"] = "gebeurtenis";
$a->strings["status"] = "status";
$a->strings["photo"] = "foto";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s leuk";
$a->strings["Contact Photos"] = "Contactfoto's";
$a->strings["Profile Photos"] = "Profielfoto's";
$a->strings["Local Directory"] = "Lokale gids";
$a->strings["Global Directory"] = "Globale gids";
$a->strings["Similar Interests"] = "Dezelfde interesses";
$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen";
$a->strings["Invite Friends"] = "Vrienden uitnodigen";
$a->strings["Settings"] = "Instellingen";
$a->strings["Set zoomfactor for Earth Layers"] = "";
$a->strings["Show/hide boxes at right-hand column:"] = "";
$a->strings["Alignment"] = "Uitlijning";
$a->strings["Left"] = "Links";
$a->strings["Center"] = "Gecentreerd";
$a->strings["Color scheme"] = "Kleurschema";
$a->strings["Posts font size"] = "Lettergrootte berichten";
$a->strings["Textareas font size"] = "Lettergrootte tekstgebieden";
$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
$a->strings["Set theme width"] = "Stel breedte van het thema in";
$a->strings["Set colour scheme"] = "Stel kleurschema in";
$a->strings["default"] = "standaard";
$a->strings["Midnight"] = "";
$a->strings["Zenburn"] = "";
$a->strings["Bootstrap"] = "";
$a->strings["Shades of Pink"] = "";
$a->strings["Lime and Orange"] = "";
$a->strings["GeoCities Retro"] = "";
$a->strings["Background Image"] = "";
$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "";
$a->strings["Background Color"] = "achtergrondkleur";
$a->strings["HEX value for the background color. Don't include the #"] = "";
$a->strings["font size"] = "";
$a->strings["base font size for your interface"] = "";
$a->strings["greenzero"] = "";
$a->strings["purplezero"] = "";
$a->strings["easterbunny"] = "";
$a->strings["darkzero"] = "";
$a->strings["comix"] = "";
$a->strings["slackr"] = "";
$a->strings["Variations"] = "";
$a->strings["Set style"] = "";
$a->strings["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s";
$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de contactgegevens";
$a->strings["Could not locate selected profile."] = "Kon het geselecteerde profiel niet vinden.";
$a->strings["Contact updated."] = "Contact bijgewerkt.";
$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen.";
$a->strings["Permission denied."] = "Toegang geweigerd";
$a->strings["Mood"] = "Stemming";
$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden";
$a->strings["Access denied."] = "Toegang geweigerd";
$a->strings["Item not found."] = "Item niet gevonden.";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom";
$a->strings["Authorize application connection"] = "";
$a->strings["Return to your app and insert this Securty Code:"] = "";
$a->strings["Please login to continue."] = "Log in om verder te gaan.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?";
$a->strings["Contact has been blocked"] = "Contact is geblokkeerd";
$a->strings["Contact has been unblocked"] = "Contact is gedeblokkeerd";
$a->strings["Contact has been ignored"] = "Contact wordt genegeerd";
$a->strings["Contact has been unignored"] = "Contact wordt niet meer genegeerd";
$a->strings["Contact has been archived"] = "Contact is gearchiveerd";
$a->strings["Contact has been unarchived"] = "Contact is niet meer gearchiveerd";
$a->strings["Do you really want to delete this contact?"] = "Wil je echt dit contact verwijderen?";
$a->strings["Yes"] = "Ja";
$a->strings["No"] = "Nee";
$a->strings["No valid account found."] = "Geen geldige account gevonden.";
$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na.";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
$a->strings["Password reset requested at %s"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld.";
$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen";
$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd.";
$a->strings["Your new password is"] = "Je nieuwe wachtwoord is";
$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan";
$a->strings["click here to login"] = "klik hier om in te loggen";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina.";
$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tBeste %1\$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\n\t\t\t";
$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "";
$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s";
$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies.";
$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:";
$a->strings["Reset"] = "Opnieuw";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
$a->strings["No recipient selected."] = "Geen ontvanger geselecteerd.";
$a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen";
$a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden.";
$a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten.";
$a->strings["Message sent."] = "Bericht verzonden.";
$a->strings["No recipient."] = "Geen ontvanger.";
$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:";
$a->strings["Send Private Message"] = "Verstuur privébericht";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat.";
$a->strings["To:"] = "Aan:";
$a->strings["Subject:"] = "Onderwerp:";
$a->strings["Your message:"] = "Jouw bericht:";
$a->strings["Upload photo"] = "Foto uploaden";
$a->strings["Insert web link"] = "Voeg een webadres in";
$a->strings["Cancel"] = "Annuleren";
$a->strings["Contact has been removed."] = "Contact is verwijderd.";
$a->strings["You are mutual friends with %s"] = "Je bent wederzijds bevriend met %s";
$a->strings["You are sharing with %s"] = "Je deelt met %s";
$a->strings["%s is sharing with you"] = "%s deelt met jou";
$a->strings["Private communications are not available for this contact."] = "Privécommunicatie met dit contact is niet beschikbaar.";
$a->strings["Never"] = "Nooit";
$a->strings["(Update was successful)"] = "(Wijziging is geslaagd)";
$a->strings["(Update was not successful)"] = "(Wijziging is niet geslaagd)";
$a->strings["Suggest friends"] = "Stel vrienden voor";
$a->strings["Network type: %s"] = "Netwerk type: %s";
$a->strings["%d contact in common"] = array(
0 => "%d gedeeld contact",
1 => "%d gedeelde contacten",
);
$a->strings["View all contacts"] = "Alle contacten zien";
$a->strings["Unblock"] = "Blokkering opheffen";
$a->strings["Block"] = "Blokkeren";
$a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status";
$a->strings["Unignore"] = "Negeer niet meer";
$a->strings["Ignore"] = "Negeren";
$a->strings["Toggle Ignored status"] = "Schakel negeerstatus";
$a->strings["Unarchive"] = "Archiveer niet meer";
$a->strings["Archive"] = "Archiveer";
$a->strings["Toggle Archive status"] = "Schakel archiveringsstatus";
$a->strings["Repair"] = "Herstellen";
$a->strings["Advanced Contact Settings"] = "Geavanceerde instellingen voor contacten";
$a->strings["Communications lost with this contact!"] = "Communicatie met dit contact is verbroken!";
$a->strings["Fetch further information for feeds"] = "";
$a->strings["Disabled"] = "Uitgeschakeld";
$a->strings["Fetch information"] = "";
$a->strings["Fetch information and keywords"] = "";
$a->strings["Contact Editor"] = "Contactbewerker";
$a->strings["Submit"] = "Opslaan";
$a->strings["Profile Visibility"] = "Zichtbaarheid profiel";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. ";
$a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen";
$a->strings["Edit contact notes"] = "Wijzig aantekeningen over dit contact";
$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]";
$a->strings["Block/Unblock contact"] = "Blokkeer/deblokkeer contact";
$a->strings["Ignore contact"] = "Negeer contact";
$a->strings["Repair URL settings"] = "Repareer URL-instellingen";
$a->strings["View conversations"] = "Toon conversaties";
$a->strings["Delete contact"] = "Verwijder contact";
$a->strings["Last update:"] = "Laatste wijziging:";
$a->strings["Update public posts"] = "Openbare posts aanpassen";
$a->strings["Update now"] = "Wijzig nu";
$a->strings["Connect/Follow"] = "Verbind/Volg";
$a->strings["Currently blocked"] = "Op dit moment geblokkeerd";
$a->strings["Currently ignored"] = "Op dit moment genegeerd";
$a->strings["Currently archived"] = "Op dit moment gearchiveerd";
$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> nog zichtbaar zijn";
$a->strings["Notification for new posts"] = "Meldingen voor nieuwe berichten";
$a->strings["Send a notification of every new post of this contact"] = "";
$a->strings["Blacklisted keywords"] = "";
$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "";
$a->strings["Profile URL"] = "Profiel url";
$a->strings["Suggestions"] = "Voorstellen";
$a->strings["Suggest potential friends"] = "Stel vrienden voor";
$a->strings["All Contacts"] = "Alle Contacten";
$a->strings["Show all contacts"] = "Toon alle contacten";
$a->strings["Unblocked"] = "Niet geblokkeerd";
$a->strings["Only show unblocked contacts"] = "Toon alleen niet-geblokkeerde contacten";
$a->strings["Blocked"] = "Geblokkeerd";
$a->strings["Only show blocked contacts"] = "Toon alleen geblokkeerde contacten";
$a->strings["Ignored"] = "Genegeerd";
$a->strings["Only show ignored contacts"] = "Toon alleen genegeerde contacten";
$a->strings["Archived"] = "Gearchiveerd";
$a->strings["Only show archived contacts"] = "Toon alleen gearchiveerde contacten";
$a->strings["Hidden"] = "Verborgen";
$a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten";
$a->strings["Contacts"] = "Contacten";
$a->strings["Search your contacts"] = "Doorzoek je contacten";
$a->strings["Finding: "] = "Gevonden:";
$a->strings["Find"] = "Zoek";
$a->strings["Update"] = "Wijzigen";
$a->strings["Delete"] = "Verwijder";
$a->strings["Mutual Friendship"] = "Wederzijdse vriendschap";
$a->strings["is a fan of yours"] = "Is een fan van jou";
$a->strings["you are a fan of"] = "Jij bent een fan van";
$a->strings["Edit contact"] = "Contact bewerken";
$a->strings["No profile"] = "Geen profiel";
$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen.";
$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:";
$a->strings["Post successful."] = "Bericht succesvol geplaatst.";
$a->strings["Permission denied"] = "Toegang geweigerd";
$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie.";
$a->strings["Profile Visibility Editor"] = "";
$a->strings["Profile"] = "Profiel";
$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen.";
$a->strings["Visible To"] = "Zichtbaar voor";
$a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)";
$a->strings["Item not found."] = "Item niet gevonden.";
$a->strings["Public access denied."] = "Niet vrij toegankelijk";
$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt.";
$a->strings["Item has been removed."] = "Item is verwijderd.";
$a->strings["Welcome to Friendica"] = "Welkom bij Friendica";
$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen.";
$a->strings["Getting Started"] = "Aan de slag";
$a->strings["Friendica Walk-Through"] = "Doorloop Friendica";
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden.";
$a->strings["Settings"] = "Instellingen";
$a->strings["Go to Your Settings"] = "Ga naar je instellingen";
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web.";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden.";
@ -221,161 +156,160 @@ $a->strings["Friendica respects your privacy. By default, your posts will only s
$a->strings["Getting Help"] = "Hulp krijgen";
$a->strings["Go to the Help Section"] = "Ga naar de help";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma.";
$a->strings["Remove term"] = "Verwijder zoekterm";
$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten";
$a->strings["Public access denied."] = "Niet vrij toegankelijk";
$a->strings["Search"] = "Zoeken";
$a->strings["No results."] = "Geen resultaten.";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s";
$a->strings["Item not available."] = "Item niet beschikbaar";
$a->strings["Item was not found."] = "Item niet gevonden";
$a->strings["Account approved."] = "Account goedgekeurd.";
$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s";
$a->strings["Please login."] = "Inloggen.";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw.";
$a->strings["Import"] = "Importeren";
$a->strings["Move account"] = "Account verplaatsen";
$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren.";
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent.";
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren.";
$a->strings["Account file"] = "Account bestand";
$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "";
$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar.";
$a->strings["Visible to:"] = "Zichtbaar voor:";
$a->strings["No profile"] = "Geen profiel";
$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]";
$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:";
$a->strings["Source input: "] = "Bron ingave:";
$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe HTML):";
$a->strings["bb2html: "] = "bb2html:";
$a->strings["bb2html2bb: "] = "bb2html2bb: ";
$a->strings["bb2md: "] = "bb2md: ";
$a->strings["bb2md2html: "] = "bb2md2html: ";
$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
$a->strings["Source input (Diaspora format): "] = "Bron ingave (Diaspora formaat):";
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s niet leuk";
$a->strings["Post successful."] = "Bericht succesvol geplaatst.";
$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
$a->strings["Time Conversion"] = "Tijdsconversie";
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones.";
$a->strings["UTC time: %s"] = "UTC tijd: %s";
$a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s";
$a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s";
$a->strings["Please select your timezone:"] = "Selecteer je tijdzone:";
$a->strings["Save to Folder:"] = "Bewaren in map:";
$a->strings["- select -"] = "- Kies -";
$a->strings["Save"] = "Bewaren";
$a->strings["Poke/Prod"] = "Aanstoten/porren";
$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen";
$a->strings["Recipient"] = "Ontvanger";
$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen";
$a->strings["Make this post private"] = "Dit bericht privé maken";
$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website.";
$a->strings["Login failed."] = "Login mislukt.";
$a->strings["Image uploaded but image cropping failed."] = "Afbeelding opgeladen, maar bijsnijden mislukt.";
$a->strings["Profile Photos"] = "Profielfoto's";
$a->strings["Image size reduction [%s] failed."] = "Verkleining van de afbeelding [%s] mislukt.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen.";
$a->strings["Unable to process image"] = "Ik kan de afbeelding niet verwerken";
$a->strings["Image exceeds size limit of %s"] = "";
$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken";
$a->strings["Upload File:"] = "Upload bestand:";
$a->strings["Select a profile:"] = "Kies een profiel:";
$a->strings["Upload"] = "Uploaden";
$a->strings["or"] = "of";
$a->strings["skip this step"] = "Deze stap overslaan";
$a->strings["select a photo from your photo albums"] = "Kies een foto uit je fotoalbums";
$a->strings["Crop Image"] = "Afbeelding bijsnijden";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Pas het afsnijden van de afbeelding aan voor het beste resultaat.";
$a->strings["Done Editing"] = "Wijzigingen compleet";
$a->strings["Image uploaded successfully."] = "Uploaden van afbeelding gelukt.";
$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt.";
$a->strings["photo"] = "foto";
$a->strings["status"] = "status";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s";
$a->strings["Export account"] = "Account exporteren";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server.";
$a->strings["Export all"] = "Alles exporteren";
$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)";
$a->strings["Export personal data"] = "Persoonlijke gegevens exporteren";
$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. ";
$a->strings["Applications"] = "Toepassingen";
$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd";
$a->strings["Nothing new here"] = "Niets nieuw hier";
$a->strings["Clear notifications"] = "Notificaties verwijderen";
$a->strings["Cancel"] = "Annuleren";
$a->strings["Tag removed"] = "Label verwijderd";
$a->strings["Remove Item Tag"] = "Verwijder label van item";
$a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: ";
$a->strings["Remove"] = "Verwijderen";
$a->strings["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden.";
$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd.";
$a->strings["Existing Page Managers"] = "Bestaande paginabeheerders";
$a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed";
$a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed ";
$a->strings["Add"] = "Toevoegen";
$a->strings["No entries."] = "Geen gegevens.";
$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]";
$a->strings["Edit contact"] = "Contact bewerken";
$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep";
$a->strings["Files"] = "Bestanden";
$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud";
$a->strings["Remove My Account"] = "Verwijder mijn account";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is.";
$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:";
$a->strings["Subsribing to OStatus contacts"] = "";
$a->strings["No contact provided."] = "";
$a->strings["Couldn't fetch information for contact."] = "";
$a->strings["Couldn't fetch friends for contact."] = "";
$a->strings["Done"] = "Klaar";
$a->strings["success"] = "Succesvol";
$a->strings["failed"] = "Mislukt";
$a->strings["ignored"] = "Verboden";
$a->strings["Keep this window open until done."] = "Houd dit scherm open tot het klaar is";
$a->strings["Save to Folder:"] = "Bewaren in map:";
$a->strings["- select -"] = "- Kies -";
$a->strings["Save"] = "Bewaren";
$a->strings["Submit Request"] = "Aanvraag indienen";
$a->strings["You already added this contact."] = "Je hebt deze kontakt al toegevoegd";
$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "";
$a->strings["OStatus support is disabled. Contact can't be added."] = "";
$a->strings["The network type couldn't be detected. Contact can't be added."] = "";
$a->strings["Please answer the following:"] = "Beantwoord het volgende:";
$a->strings["Does %s know you?"] = "Kent %s jou?";
$a->strings["No"] = "Nee";
$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:";
$a->strings["Your Identity Address:"] = "Adres van uw identiteit:";
$a->strings["Location:"] = "Plaats:";
$a->strings["About:"] = "Over:";
$a->strings["Tags:"] = "Labels:";
$a->strings["Contact added"] = "Contact toegevoegd";
$a->strings["Unable to locate original post."] = "Ik kan de originele post niet meer vinden.";
$a->strings["Empty post discarded."] = "Lege post weggegooid.";
$a->strings["Wall Photos"] = "";
$a->strings["System error. Post not saved."] = "Systeemfout. Post niet bewaard.";
$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk.";
$a->strings["You may visit them online at %s"] = "Je kunt ze online bezoeken op %s";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen.";
$a->strings["%s posted an update."] = "%s heeft een wijziging geplaatst.";
$a->strings["Group created."] = "Groep aangemaakt.";
$a->strings["Could not create group."] = "Kon de groep niet aanmaken.";
$a->strings["Group not found."] = "Groep niet gevonden.";
$a->strings["Group name changed."] = "Groepsnaam gewijzigd.";
$a->strings["Save Group"] = "Bewaar groep";
$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan.";
$a->strings["Group Name: "] = "Groepsnaam:";
$a->strings["Group removed."] = "Groep verwijderd.";
$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen.";
$a->strings["Group Editor"] = "Groepsbewerker";
$a->strings["Members"] = "Leden";
$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. ";
$a->strings["Applications"] = "Toepassingen";
$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd";
$a->strings["Profile not found."] = "Profiel niet gevonden";
$a->strings["Contact not found."] = "Contact niet gevonden";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd.";
$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen.";
$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:";
$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid.";
$a->strings["Remote site reported: "] = "Website op afstand berichtte: ";
$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw.";
$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen.";
$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen.";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s";
$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'";
$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons.";
$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou.";
$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s.";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken.";
$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen.";
$a->strings["Unable to update your contact profile details on our system"] = "";
$a->strings["[Name Withheld]"] = "[Naam achtergehouden]";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s";
$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar.";
$a->strings["Tips for New Members"] = "Tips voor nieuwe leden";
$a->strings["Do you really want to delete this video?"] = "Wil je deze video echt verwijderen?";
$a->strings["Delete Video"] = "Verwijder video";
$a->strings["No videos selected"] = "Geen video's geselecteerd";
$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt.";
$a->strings["View Video"] = "Bekijk Video";
$a->strings["View Album"] = "Album bekijken";
$a->strings["Recent Videos"] = "Recente video's";
$a->strings["Upload New Videos"] = "Nieuwe video's uploaden";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s";
$a->strings["Friend suggestion sent."] = "Vriendschapsvoorstel verzonden.";
$a->strings["Suggest Friends"] = "Stel vrienden voor";
$a->strings["Suggest a friend for %s"] = "Stel een vriend voor aan %s";
$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden.";
$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres.";
$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website.";
$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt.";
$a->strings["%d message sent."] = array(
0 => "%d bericht verzonden.",
1 => "%d berichten verzonden.",
);
$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen";
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken.";
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website.";
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten.";
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen.";
$a->strings["Send invitations"] = "Verstuur uitnodigingen";
$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:";
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen.";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code";
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:";
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken";
$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen.";
$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:";
$a->strings["Welcome to %s"] = "Welkom op %s";
$a->strings["New Message"] = "Nieuw Bericht";
$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden.";
$a->strings["Messages"] = "Privéberichten";
$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?";
$a->strings["Message deleted."] = "Bericht verwijderd.";
$a->strings["Conversation removed."] = "Gesprek verwijderd.";
$a->strings["No messages."] = "Geen berichten.";
$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s";
$a->strings["You and %s"] = "Jij en %s";
$a->strings["%s and You"] = "%s en jij";
$a->strings["Delete conversation"] = "Verwijder gesprek";
$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
$a->strings["%d message"] = array(
0 => "%d bericht",
1 => "%d berichten",
);
$a->strings["Message not available."] = "Bericht niet beschikbaar.";
$a->strings["Delete message"] = "Verwijder bericht";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender.";
$a->strings["Send Reply"] = "Verstuur Antwoord";
$a->strings["Invalid request."] = "";
$a->strings["No valid account found."] = "Geen geldige account gevonden.";
$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na.";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
$a->strings["Password reset requested at %s"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld.";
$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen";
$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd.";
$a->strings["Your new password is"] = "Je nieuwe wachtwoord is";
$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan";
$a->strings["click here to login"] = "klik hier om in te loggen";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina.";
$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tBeste %1\$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\n\t\t\t";
$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "";
$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s";
$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies.";
$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:";
$a->strings["Reset"] = "Opnieuw";
$a->strings["event"] = "gebeurtenis";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s leuk";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s niet leuk";
$a->strings["%1\$s is attending %2\$s's %3\$s"] = "";
$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "";
$a->strings["%1\$s may attend %2\$s's %3\$s"] = "";
$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden";
$a->strings["{0} sent you a message"] = "{0} stuurde jou een bericht";
$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren";
$a->strings["No contacts."] = "Geen contacten.";
$a->strings["View Contacts"] = "Bekijk contacten";
$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website.";
$a->strings["Login failed."] = "Login mislukt.";
$a->strings["Not available."] = "Niet beschikbaar";
$a->strings["Help:"] = "Help:";
$a->strings["Help"] = "Help";
$a->strings["Not Found"] = "Niet gevonden";
$a->strings["Page not found."] = "Pagina niet gevonden";
$a->strings["Invalid request identifier."] = "Ongeldige <em>request identifier</em>.";
$a->strings["Discard"] = "Verwerpen";
$a->strings["Ignore"] = "Negeren";
$a->strings["System"] = "Systeem";
$a->strings["Network"] = "Netwerk";
$a->strings["Personal"] = "Persoonlijk";
$a->strings["Home"] = "Tijdlijn";
$a->strings["Introductions"] = "Verzoeken";
$a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken";
$a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken";
$a->strings["Notification type: "] = "Notificatiesoort:";
$a->strings["Friend Suggestion"] = "Vriendschapsvoorstel";
$a->strings["suggested by %s"] = "Voorgesteld door %s";
$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen";
$a->strings["Post a new friend activity"] = "Bericht over een nieuwe vriend";
$a->strings["if applicable"] = "Indien toepasbaar";
$a->strings["Approve"] = "Goedkeuren";
@ -389,6 +323,7 @@ $a->strings["Sharer"] = "Deler";
$a->strings["Fan/Admirer"] = "Fan/Bewonderaar";
$a->strings["Friend/Connect Request"] = "Vriendschapsverzoek";
$a->strings["New Follower"] = "Nieuwe Volger";
$a->strings["Gender:"] = "Geslacht:";
$a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken.";
$a->strings["Notifications"] = "Notificaties";
$a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk";
@ -404,12 +339,93 @@ $a->strings["No more personal notifications."] = "Geen persoonlijke notificaties
$a->strings["Personal Notifications"] = "Persoonlijke notificaties";
$a->strings["No more home notifications."] = "Geen tijdlijn-notificaties meer";
$a->strings["Home Notifications"] = "Tijdlijn-notificaties";
$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:";
$a->strings["Source input: "] = "Bron ingave:";
$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe HTML):";
$a->strings["bb2html: "] = "bb2html:";
$a->strings["bb2html2bb: "] = "bb2html2bb: ";
$a->strings["bb2md: "] = "bb2md: ";
$a->strings["bb2md2html: "] = "bb2md2html: ";
$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
$a->strings["Source input (Diaspora format): "] = "Bron ingave (Diaspora formaat):";
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
$a->strings["Nothing new here"] = "Niets nieuw hier";
$a->strings["Clear notifications"] = "Notificaties verwijderen";
$a->strings["New Message"] = "Nieuw Bericht";
$a->strings["No recipient selected."] = "Geen ontvanger geselecteerd.";
$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden.";
$a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden.";
$a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten.";
$a->strings["Message sent."] = "Bericht verzonden.";
$a->strings["Messages"] = "Privéberichten";
$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?";
$a->strings["Message deleted."] = "Bericht verwijderd.";
$a->strings["Conversation removed."] = "Gesprek verwijderd.";
$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:";
$a->strings["Send Private Message"] = "Verstuur privébericht";
$a->strings["To:"] = "Aan:";
$a->strings["Subject:"] = "Onderwerp:";
$a->strings["Your message:"] = "Jouw bericht:";
$a->strings["Upload photo"] = "Foto uploaden";
$a->strings["Insert web link"] = "Voeg een webadres in";
$a->strings["Please wait"] = "Even geduld";
$a->strings["No messages."] = "Geen berichten.";
$a->strings["Message not available."] = "Bericht niet beschikbaar.";
$a->strings["Delete message"] = "Verwijder bericht";
$a->strings["Delete conversation"] = "Verwijder gesprek";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender.";
$a->strings["Send Reply"] = "Verstuur Antwoord";
$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s";
$a->strings["You and %s"] = "Jij en %s";
$a->strings["%s and You"] = "%s en jij";
$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
$a->strings["%d message"] = array(
0 => "%d bericht",
1 => "%d berichten",
);
$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]";
$a->strings["Contact settings applied."] = "Contactinstellingen toegepast.";
$a->strings["Contact update failed."] = "Aanpassen van contact mislukt.";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen.";
$a->strings["No mirroring"] = "";
$a->strings["Mirror as forwarded posting"] = "";
$a->strings["Mirror as my own posting"] = "";
$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen";
$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker";
$a->strings["Refetch contact data"] = "";
$a->strings["Name"] = "Naam";
$a->strings["Account Nickname"] = "Bijnaam account";
$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam";
$a->strings["Account URL"] = "URL account";
$a->strings["Friend Request URL"] = "URL vriendschapsverzoek";
$a->strings["Friend Confirm URL"] = "URL vriendschapsbevestiging";
$a->strings["Notification Endpoint URL"] = "";
$a->strings["Poll/Feed URL"] = "URL poll/feed";
$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL";
$a->strings["Remote Self"] = "";
$a->strings["Mirror postings from this contact"] = "";
$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
$a->strings["Login"] = "Login";
$a->strings["The post was created"] = "";
$a->strings["Access denied."] = "Toegang geweigerd";
$a->strings["Connect"] = "Verbinden";
$a->strings["View Profile"] = "Bekijk profiel";
$a->strings["People Search - %s"] = "";
$a->strings["No matches"] = "Geen resultaten";
$a->strings["Photos"] = "Foto's";
$a->strings["Contact Photos"] = "Contactfoto's";
$a->strings["Files"] = "Bestanden";
$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep";
$a->strings["Theme settings updated."] = "Thema-instellingen aangepast.";
$a->strings["Site"] = "Website";
$a->strings["Users"] = "Gebruiker";
$a->strings["Plugins"] = "Plugins";
$a->strings["Themes"] = "Thema's";
$a->strings["DB updates"] = "DB aanpassingen";
$a->strings["Inspect Queue"] = "";
$a->strings["Logs"] = "Logs";
$a->strings["probe address"] = "";
$a->strings["check webfinger"] = "";
@ -417,6 +433,13 @@ $a->strings["Admin"] = "Beheer";
$a->strings["Plugin Features"] = "Plugin Functies";
$a->strings["diagnostics"] = "";
$a->strings["User registrations waiting for confirmation"] = "Gebruikersregistraties wachten op bevestiging";
$a->strings["Administration"] = "Beheer";
$a->strings["ID"] = "ID";
$a->strings["Recipient Name"] = "";
$a->strings["Recipient Profile"] = "";
$a->strings["Created"] = "";
$a->strings["Last Tried"] = "";
$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "";
$a->strings["Normal Account"] = "Normaal account";
$a->strings["Soapbox Account"] = "Zeepkist-account";
$a->strings["Community/Celebrity Account"] = "Account voor een groep/forum of beroemdheid";
@ -424,24 +447,29 @@ $a->strings["Automatic Friend Account"] = "Automatisch Vriendschapsaccount";
$a->strings["Blog Account"] = "Blog Account";
$a->strings["Private Forum"] = "Privéforum/-groep";
$a->strings["Message queues"] = "Bericht-wachtrijen";
$a->strings["Administration"] = "Beheer";
$a->strings["Summary"] = "Samenvatting";
$a->strings["Registered users"] = "Geregistreerde gebruikers";
$a->strings["Pending registrations"] = "Registraties die in de wacht staan";
$a->strings["Version"] = "Versie";
$a->strings["Active plugins"] = "Actieve plug-ins";
$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "";
$a->strings["RINO2 needs mcrypt php extension to work."] = "";
$a->strings["Site settings updated."] = "Site instellingen gewijzigd.";
$a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten";
$a->strings["No community page"] = "";
$a->strings["Public postings from users of this site"] = "";
$a->strings["Global community page"] = "";
$a->strings["Never"] = "Nooit";
$a->strings["At post arrival"] = "";
$a->strings["Frequently"] = "Frequent";
$a->strings["Hourly"] = "elk uur";
$a->strings["Twice daily"] = "Twee keer per dag";
$a->strings["Daily"] = "dagelijks";
$a->strings["Users, Global Contacts"] = "";
$a->strings["Users, Global Contacts/fallback"] = "";
$a->strings["One month"] = "";
$a->strings["Three months"] = "";
$a->strings["Half a year"] = "";
$a->strings["One year"] = "";
$a->strings["Multi user instance"] = "Server voor meerdere gebruikers";
$a->strings["Closed"] = "Gesloten";
$a->strings["Requires approval"] = "Toestemming vereist";
@ -454,16 +482,20 @@ $a->strings["Registration"] = "Registratie";
$a->strings["File upload"] = "Uploaden bestand";
$a->strings["Policies"] = "Beleid";
$a->strings["Advanced"] = "Geavanceerd";
$a->strings["Auto Discovered Contact Directory"] = "";
$a->strings["Performance"] = "Performantie";
$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "";
$a->strings["Site name"] = "Site naam";
$a->strings["Host name"] = "";
$a->strings["Sender Email"] = "";
$a->strings["The email address your server shall use to send notification emails from."] = "";
$a->strings["Banner/Logo"] = "Banner/Logo";
$a->strings["Shortcut icon"] = "";
$a->strings["Link to an icon that will be used for browsers."] = "";
$a->strings["Touch icon"] = "";
$a->strings["Link to an icon that will be used for tablets and mobiles."] = "";
$a->strings["Additional Info"] = "";
$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "";
$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "";
$a->strings["System language"] = "Systeemtaal";
$a->strings["System theme"] = "Systeem thema";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - <a href='#' id='cnftheme'>verander thema instellingen</a>";
@ -500,8 +532,8 @@ $a->strings["Block public"] = "Openbare toegang blokkeren";
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers.";
$a->strings["Force publish"] = "Dwing publiceren af";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden.";
$a->strings["Global directory update URL"] = "Update-adres van de globale gids";
$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL om de globale gids aan te passen. Als dit niet is ingevuld, is de globale gids volledig onbeschikbaar voor deze toepassing.";
$a->strings["Global directory URL"] = "";
$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
$a->strings["Allow threaded items"] = "Sta threads in conversaties toe";
$a->strings["Allow infinite level threading for items on this site."] = "Sta oneindige niveaus threads in conversaties op deze website toe.";
$a->strings["Private posts by default for new users"] = "Privéberichten als standaard voor nieuwe gebruikers";
@ -530,6 +562,8 @@ $a->strings["Enable OStatus support"] = "Activeer OStatus ondersteuning";
$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
$a->strings["OStatus conversation completion interval"] = "";
$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "";
$a->strings["OStatus support can only be enabled if threading is enabled."] = "";
$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "";
$a->strings["Enable Diaspora support"] = "Activeer Diaspora ondersteuning";
$a->strings["Provide built-in Diaspora network compatibility."] = "Bied ingebouwde ondersteuning voor het Diaspora netwerk.";
$a->strings["Only allow Friendica contacts"] = "Laat alleen Friendica contacten toe";
@ -548,6 +582,18 @@ $a->strings["Maximum Load Average"] = "Maximum gemiddelde belasting";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50.";
$a->strings["Maximum Load Average (Frontend)"] = "";
$a->strings["Maximum system load before the frontend quits service - default 50."] = "";
$a->strings["Periodical check of global contacts"] = "";
$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "";
$a->strings["Days between requery"] = "";
$a->strings["Number of days after which a server is requeried for his contacts."] = "";
$a->strings["Discover contacts from other servers"] = "";
$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "";
$a->strings["Timeframe for fetching global contacts"] = "";
$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "";
$a->strings["Search the local directory"] = "";
$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "";
$a->strings["Publish server information"] = "";
$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See <a href='http://the-federation.info/'>the-federation.info</a> for details."] = "";
$a->strings["Use MySQL full text engine"] = "Gebruik de tekst-zoekfunctie van MySQL";
$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters.";
$a->strings["Suppress Language"] = "";
@ -555,13 +601,17 @@ $a->strings["Suppress language information in meta information about a posting."
$a->strings["Suppress Tags"] = "";
$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "";
$a->strings["Path to item cache"] = "Pad naar cache voor items";
$a->strings["The item caches buffers generated bbcode and external images."] = "";
$a->strings["Cache duration in seconds"] = "Cache tijdsduur in seconden";
$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "";
$a->strings["Maximum numbers of comments per post"] = "";
$a->strings["How much comments should be shown for each post? Default value is 100."] = "";
$a->strings["Path for lock file"] = "Pad voor lock bestand";
$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = "";
$a->strings["Temp path"] = "Tijdelijk pad";
$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "";
$a->strings["Base path to installation"] = "Basispad voor installatie";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
$a->strings["Disable picture proxy"] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
$a->strings["Enable old style pager"] = "";
@ -569,8 +619,11 @@ $a->strings["The old style pager has page numbers but slows down massively the p
$a->strings["Only search in tags"] = "";
$a->strings["On large systems the text search can slow down the system extremely."] = "";
$a->strings["New base url"] = "";
$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "";
$a->strings["RINO Encryption"] = "";
$a->strings["Encryption layer between nodes."] = "";
$a->strings["Embedly API key"] = "";
$a->strings["<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for web pages. This is an optional parameter."] = "";
$a->strings["Update has been marked successful"] = "Wijziging succesvol gemarkeerd ";
$a->strings["Database structure update %s was successfully applied."] = "";
$a->strings["Executing of database structure update %s failed with error: %s"] = "";
@ -603,12 +656,9 @@ $a->strings["select all"] = "Alles selecteren";
$a->strings["User registrations waiting for confirm"] = "Gebruikersregistraties wachten op een bevestiging";
$a->strings["User waiting for permanent deletion"] = "";
$a->strings["Request date"] = "Registratiedatum";
$a->strings["Name"] = "Naam";
$a->strings["Email"] = "E-mail";
$a->strings["No registrations."] = "Geen registraties.";
$a->strings["Deny"] = "Weiger";
$a->strings["Block"] = "Blokkeren";
$a->strings["Unblock"] = "Blokkering opheffen";
$a->strings["Site admin"] = "Sitebeheerder";
$a->strings["Account expired"] = "Account verlopen";
$a->strings["New User"] = "Nieuwe gebruiker";
@ -630,8 +680,10 @@ $a->strings["Enable"] = "Inschakelen";
$a->strings["Toggle"] = "Schakelaar";
$a->strings["Author: "] = "Auteur:";
$a->strings["Maintainer: "] = "Onderhoud:";
$a->strings["Reload active plugins"] = "";
$a->strings["No themes found."] = "Geen thema's gevonden.";
$a->strings["Screenshot"] = "Schermafdruk";
$a->strings["Reload active themes"] = "";
$a->strings["[Experimental]"] = "[Experimenteel]";
$a->strings["[Unsupported]"] = "[Niet ondersteund]";
$a->strings["Log settings updated."] = "Log instellingen gewijzigd";
@ -640,144 +692,404 @@ $a->strings["Enable Debugging"] = "";
$a->strings["Log file"] = "Logbestand";
$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie.";
$a->strings["Log level"] = "Log niveau";
$a->strings["Update now"] = "Wijzig nu";
$a->strings["Close"] = "Afsluiten";
$a->strings["FTP Host"] = "FTP Server";
$a->strings["FTP Path"] = "FTP Pad";
$a->strings["FTP User"] = "FTP Gebruiker";
$a->strings["FTP Password"] = "FTP wachtwoord";
$a->strings["Friends of %s"] = "Vrienden van %s";
$a->strings["No friends to display."] = "Geen vrienden om te laten zien.";
$a->strings["Common Friends"] = "Gedeelde Vrienden";
$a->strings["No contacts in common."] = "Geen gedeelde contacten.";
$a->strings["%d contact edited."] = array(
0 => "",
1 => "",
$a->strings["Search Results For: %s"] = "";
$a->strings["Remove term"] = "Verwijder zoekterm";
$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten";
$a->strings["add"] = "toevoegen";
$a->strings["Commented Order"] = "Nieuwe reacties bovenaan";
$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan";
$a->strings["Posted Order"] = "Nieuwe berichten bovenaan";
$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan";
$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben";
$a->strings["New"] = "Nieuw";
$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum";
$a->strings["Shared Links"] = "Gedeelde links";
$a->strings["Interesting Links"] = "Interessante links";
$a->strings["Starred"] = "Met ster";
$a->strings["Favourite Posts"] = "Favoriete berichten";
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
0 => "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk.",
1 => "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk.",
);
$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de contactgegevens";
$a->strings["Could not locate selected profile."] = "Kon het geselecteerde profiel niet vinden.";
$a->strings["Contact updated."] = "Contact bijgewerkt.";
$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen.";
$a->strings["Contact has been blocked"] = "Contact is geblokkeerd";
$a->strings["Contact has been unblocked"] = "Contact is gedeblokkeerd";
$a->strings["Contact has been ignored"] = "Contact wordt genegeerd";
$a->strings["Contact has been unignored"] = "Contact wordt niet meer genegeerd";
$a->strings["Contact has been archived"] = "Contact is gearchiveerd";
$a->strings["Contact has been unarchived"] = "Contact is niet meer gearchiveerd";
$a->strings["Do you really want to delete this contact?"] = "Wil je echt dit contact verwijderen?";
$a->strings["Contact has been removed."] = "Contact is verwijderd.";
$a->strings["You are mutual friends with %s"] = "Je bent wederzijds bevriend met %s";
$a->strings["You are sharing with %s"] = "Je deelt met %s";
$a->strings["%s is sharing with you"] = "%s deelt met jou";
$a->strings["Private communications are not available for this contact."] = "Privécommunicatie met dit contact is niet beschikbaar.";
$a->strings["(Update was successful)"] = "(Wijziging is geslaagd)";
$a->strings["(Update was not successful)"] = "(Wijziging is niet geslaagd)";
$a->strings["Suggest friends"] = "Stel vrienden voor";
$a->strings["Network type: %s"] = "Netwerk type: %s";
$a->strings["%d contact in common"] = array(
0 => "%d gedeeld contact",
1 => "%d gedeelde contacten",
);
$a->strings["View all contacts"] = "Alle contacten zien";
$a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status";
$a->strings["Unignore"] = "Negeer niet meer";
$a->strings["Toggle Ignored status"] = "Schakel negeerstatus";
$a->strings["Unarchive"] = "Archiveer niet meer";
$a->strings["Archive"] = "Archiveer";
$a->strings["Toggle Archive status"] = "Schakel archiveringsstatus";
$a->strings["Repair"] = "Herstellen";
$a->strings["Advanced Contact Settings"] = "Geavanceerde instellingen voor contacten";
$a->strings["Communications lost with this contact!"] = "Communicatie met dit contact is verbroken!";
$a->strings["Fetch further information for feeds"] = "";
$a->strings["Disabled"] = "";
$a->strings["Fetch information"] = "";
$a->strings["Fetch information and keywords"] = "";
$a->strings["Contact Editor"] = "Contactbewerker";
$a->strings["Profile Visibility"] = "Zichtbaarheid profiel";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. ";
$a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen";
$a->strings["Edit contact notes"] = "Wijzig aantekeningen over dit contact";
$a->strings["Block/Unblock contact"] = "Blokkeer/deblokkeer contact";
$a->strings["Ignore contact"] = "Negeer contact";
$a->strings["Repair URL settings"] = "Repareer URL-instellingen";
$a->strings["View conversations"] = "Toon conversaties";
$a->strings["Delete contact"] = "Verwijder contact";
$a->strings["Last update:"] = "Laatste wijziging:";
$a->strings["Update public posts"] = "Openbare posts aanpassen";
$a->strings["Currently blocked"] = "Op dit moment geblokkeerd";
$a->strings["Currently ignored"] = "Op dit moment genegeerd";
$a->strings["Currently archived"] = "Op dit moment gearchiveerd";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> nog zichtbaar zijn";
$a->strings["Notification for new posts"] = "Meldingen voor nieuwe berichten";
$a->strings["Send a notification of every new post of this contact"] = "";
$a->strings["Blacklisted keywords"] = "";
$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "";
$a->strings["Suggestions"] = "Voorstellen";
$a->strings["Suggest potential friends"] = "Stel vrienden voor";
$a->strings["All Contacts"] = "Alle Contacten";
$a->strings["Show all contacts"] = "Toon alle contacten";
$a->strings["Unblocked"] = "Niet geblokkeerd";
$a->strings["Only show unblocked contacts"] = "Toon alleen niet-geblokkeerde contacten";
$a->strings["Blocked"] = "Geblokkeerd";
$a->strings["Only show blocked contacts"] = "Toon alleen geblokkeerde contacten";
$a->strings["Ignored"] = "Genegeerd";
$a->strings["Only show ignored contacts"] = "Toon alleen genegeerde contacten";
$a->strings["Archived"] = "Gearchiveerd";
$a->strings["Only show archived contacts"] = "Toon alleen gearchiveerde contacten";
$a->strings["Hidden"] = "Verborgen";
$a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten";
$a->strings["Search your contacts"] = "Doorzoek je contacten";
$a->strings["Finding: "] = "Gevonden:";
$a->strings["Find"] = "Zoek";
$a->strings["Update"] = "Wijzigen";
$a->strings["Mutual Friendship"] = "Wederzijdse vriendschap";
$a->strings["is a fan of yours"] = "Is een fan van jou";
$a->strings["you are a fan of"] = "Jij bent een fan van";
$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden.";
$a->strings["No such group"] = "Zo'n groep bestaat niet";
$a->strings["Group is empty"] = "De groep is leeg";
$a->strings["Group: %s"] = "";
$a->strings["Contact: %s"] = "";
$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden.";
$a->strings["Invalid contact."] = "Ongeldig contact.";
$a->strings["No friends to display."] = "Geen vrienden om te laten zien.";
$a->strings["Forum"] = "";
$a->strings["Friends of %s"] = "Vrienden van %s";
$a->strings["Event can not end before it has started."] = "";
$a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist.";
$a->strings["Sun"] = "";
$a->strings["Mon"] = "";
$a->strings["Tue"] = "";
$a->strings["Wed"] = "";
$a->strings["Thu"] = "";
$a->strings["Fri"] = "";
$a->strings["Sat"] = "";
$a->strings["Sunday"] = "Zondag";
$a->strings["Monday"] = "Maandag";
$a->strings["Tuesday"] = "Dinsdag";
$a->strings["Wednesday"] = "Woensdag";
$a->strings["Thursday"] = "Donderdag";
$a->strings["Friday"] = "Vrijdag";
$a->strings["Saturday"] = "Zaterdag";
$a->strings["Jan"] = "";
$a->strings["Feb"] = "";
$a->strings["Mar"] = "";
$a->strings["Apr"] = "";
$a->strings["May"] = "Mei";
$a->strings["Jun"] = "";
$a->strings["Jul"] = "";
$a->strings["Aug"] = "";
$a->strings["Sept"] = "";
$a->strings["Oct"] = "";
$a->strings["Nov"] = "";
$a->strings["Dec"] = "";
$a->strings["January"] = "Januari";
$a->strings["February"] = "Februari";
$a->strings["March"] = "Maart";
$a->strings["April"] = "April";
$a->strings["June"] = "Juni";
$a->strings["July"] = "Juli";
$a->strings["August"] = "Augustus";
$a->strings["September"] = "September";
$a->strings["October"] = "Oktober";
$a->strings["November"] = "November";
$a->strings["December"] = "December";
$a->strings["today"] = "";
$a->strings["month"] = "maand";
$a->strings["week"] = "week";
$a->strings["day"] = "dag";
$a->strings["l, F j"] = "l j F";
$a->strings["Edit event"] = "Gebeurtenis bewerken";
$a->strings["link to source"] = "Verwijzing naar bron";
$a->strings["Events"] = "Gebeurtenissen";
$a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis";
$a->strings["Previous"] = "Vorige";
$a->strings["Next"] = "Volgende";
$a->strings["Event details"] = "Gebeurtenis details";
$a->strings["Starting date and Title are required."] = "";
$a->strings["Event Starts:"] = "Gebeurtenis begint:";
$a->strings["Required"] = "Vereist";
$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd is niet gekend of niet relevant";
$a->strings["Event Finishes:"] = "Gebeurtenis eindigt:";
$a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebruiker";
$a->strings["Description:"] = "Beschrijving:";
$a->strings["Title:"] = "Titel:";
$a->strings["Share this event"] = "Deel deze gebeurtenis";
$a->strings["Preview"] = "Voorvertoning";
$a->strings["Credits"] = "";
$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "";
$a->strings["Select"] = "Kies";
$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s";
$a->strings["%s from %s"] = "%s van %s";
$a->strings["View in context"] = "In context bekijken";
$a->strings["Contact settings applied."] = "Contactinstellingen toegepast.";
$a->strings["Contact update failed."] = "Aanpassen van contact mislukt.";
$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen.";
$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker";
$a->strings["No mirroring"] = "";
$a->strings["Mirror as forwarded posting"] = "";
$a->strings["Mirror as my own posting"] = "";
$a->strings["Refetch contact data"] = "";
$a->strings["Account Nickname"] = "Bijnaam account";
$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam";
$a->strings["Account URL"] = "URL account";
$a->strings["Friend Request URL"] = "URL vriendschapsverzoek";
$a->strings["Friend Confirm URL"] = "URL vriendschapsbevestiging";
$a->strings["Notification Endpoint URL"] = "";
$a->strings["Poll/Feed URL"] = "URL poll/feed";
$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL";
$a->strings["Remote Self"] = "";
$a->strings["Mirror postings from this contact"] = "";
$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
$a->strings["Profile not found."] = "Profiel niet gevonden";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd.";
$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen.";
$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:";
$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid.";
$a->strings["Remote site reported: "] = "Website op afstand berichtte: ";
$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw.";
$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen.";
$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen.";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s";
$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'";
$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons.";
$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou.";
$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s.";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken.";
$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen.";
$a->strings["Unable to update your contact profile details on our system"] = "";
$a->strings["[Name Withheld]"] = "[Naam achtergehouden]";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s";
$a->strings["%d comment"] = array(
0 => "%d reactie",
1 => "%d reacties",
);
$a->strings["comment"] = array(
0 => "reactie",
1 => "reacties",
);
$a->strings["show more"] = "toon meer";
$a->strings["Private Message"] = "Privébericht";
$a->strings["I like this (toggle)"] = "Vind ik leuk";
$a->strings["like"] = "leuk";
$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk";
$a->strings["dislike"] = "niet leuk";
$a->strings["Share this"] = "Delen";
$a->strings["share"] = "Delen";
$a->strings["This is you"] = "Dit ben jij";
$a->strings["Comment"] = "Reacties";
$a->strings["Bold"] = "Vet";
$a->strings["Italic"] = "Cursief";
$a->strings["Underline"] = "Onderstrepen";
$a->strings["Quote"] = "Citeren";
$a->strings["Code"] = "Broncode";
$a->strings["Image"] = "Afbeelding";
$a->strings["Link"] = "Link";
$a->strings["Video"] = "Video";
$a->strings["Edit"] = "Bewerken";
$a->strings["add star"] = "ster toevoegen";
$a->strings["remove star"] = "ster verwijderen";
$a->strings["toggle star status"] = "ster toevoegen of verwijderen";
$a->strings["starred"] = "met ster";
$a->strings["add tag"] = "label toevoegen";
$a->strings["save to folder"] = "Bewaren in map";
$a->strings["to"] = "aan";
$a->strings["Wall-to-Wall"] = "wall-to-wall";
$a->strings["via Wall-To-Wall:"] = "via wall-to-wall";
$a->strings["Remove My Account"] = "Verwijder mijn account";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is.";
$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:";
$a->strings["Friendica Communications Server - Setup"] = "";
$a->strings["Could not connect to database."] = "Kon geen toegang krijgen tot de database.";
$a->strings["Could not create table."] = "Kon tabel niet aanmaken.";
$a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd.";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql.";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Zie het bestand \"INSTALL.txt\".";
$a->strings["Database already in use."] = "";
$a->strings["System check"] = "Systeemcontrole";
$a->strings["Check again"] = "Controleer opnieuw";
$a->strings["Database connection"] = "Verbinding met database";
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken.";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. ";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat.";
$a->strings["Database Server Name"] = "Servernaam database";
$a->strings["Database Login Name"] = "Gebruikersnaam database";
$a->strings["Database Login Password"] = "Wachtwoord database";
$a->strings["Database Name"] = "Naam database";
$a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken.";
$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website";
$a->strings["Site settings"] = "Website-instellingen";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver.";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "";
$a->strings["PHP executable path"] = "PATH van het PHP commando";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten.";
$a->strings["Command line PHP"] = "PHP-opdrachtregel";
$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
$a->strings["Found PHP version: "] = "Gevonden PHP versie:";
$a->strings["PHP cli binary"] = "";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd.";
$a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken.";
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait.";
$a->strings["Generate encryption keys"] = "";
$a->strings["libCurl PHP module"] = "libCurl PHP module";
$a->strings["GD graphics PHP module"] = "GD graphics PHP module";
$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module";
$a->strings["mysqli PHP module"] = "mysqli PHP module";
$a->strings["mb_string PHP module"] = "mb_string PHP module";
$a->strings["mcrypt PHP module"] = "";
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd.";
$a->strings["Error: openssl PHP module required but not installed."] = "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd.";
$a->strings["Error: mcrypt PHP module required but not installed."] = "";
$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "";
$a->strings["mcrypt_create_iv() function"] = "";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel.";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies.";
$a->strings[".htconfig.php is writable"] = ".htconfig.php is schrijfbaar";
$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen.";
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie.";
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map.";
$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten.";
$a->strings["view/smarty3 is writable"] = "view/smarty3 is schrijfbaar";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
$a->strings["Url rewrite is working"] = "";
$a->strings["ImageMagick PHP extension is installed"] = "";
$a->strings["ImageMagick supports GIF"] = "";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver.";
$a->strings["<h1>What next</h1>"] = "<h1>Wat nu</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller.";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
$a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen";
$a->strings["No recipient."] = "Geen ontvanger.";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat.";
$a->strings["Help:"] = "Help:";
$a->strings["Help"] = "Help";
$a->strings["Not Found"] = "Niet gevonden";
$a->strings["Page not found."] = "Pagina niet gevonden";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom";
$a->strings["Welcome to %s"] = "Welkom op %s";
$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "";
$a->strings["Or - did you try to upload an empty file?"] = "";
$a->strings["File exceeds size limit of %s"] = "";
$a->strings["File upload failed."] = "Uploaden van bestand mislukt.";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel.";
$a->strings["is interested in:"] = "Is geïnteresseerd in:";
$a->strings["Profile Match"] = "Profielmatch";
$a->strings["link"] = "link";
$a->strings["Not available."] = "Niet beschikbaar";
$a->strings["Community"] = "Website";
$a->strings["No results."] = "Geen resultaten.";
$a->strings["everybody"] = "iedereen";
$a->strings["Additional features"] = "Extra functies";
$a->strings["Display"] = "Weergave";
$a->strings["Social Networks"] = "Sociale netwerken";
$a->strings["Delegations"] = "";
$a->strings["Connected apps"] = "Verbonden applicaties";
$a->strings["Export personal data"] = "Persoonlijke gegevens exporteren";
$a->strings["Remove account"] = "Account verwijderen";
$a->strings["Missing some important data!"] = "Een belangrijk gegeven ontbreekt!";
$a->strings["Failed to connect with email account using the settings provided."] = "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen.";
$a->strings["Email settings updated."] = "E-mail instellingen bijgewerkt..";
$a->strings["Features updated"] = "Functies bijgewerkt";
$a->strings["Relocate message has been send to your contacts"] = "";
$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd.";
$a->strings["Wrong password."] = "Verkeerd wachtwoord.";
$a->strings["Password changed."] = "Wachtwoord gewijzigd.";
$a->strings["Password update failed. Please try again."] = "Wachtwoord-)wijziging mislukt. Probeer opnieuw.";
$a->strings[" Please use a shorter name."] = "Gebruik een kortere naam.";
$a->strings[" Name too short."] = "Naam te kort.";
$a->strings["Wrong Password"] = "Verkeerd wachtwoord";
$a->strings[" Not valid email."] = "Geen geldig e-mailadres.";
$a->strings[" Cannot change to that email."] = "Kan niet veranderen naar die e-mail.";
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt.";
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep.";
$a->strings["Settings updated."] = "Instellingen bijgewerkt.";
$a->strings["Add application"] = "Toepassing toevoegen";
$a->strings["Consumer Key"] = "Gebruikerssleutel";
$a->strings["Consumer Secret"] = "Gebruikersgeheim";
$a->strings["Redirect"] = "Doorverwijzing";
$a->strings["Icon url"] = "URL pictogram";
$a->strings["You can't edit this application."] = "Je kunt deze toepassing niet wijzigen.";
$a->strings["Connected Apps"] = "Verbonden applicaties";
$a->strings["Client key starts with"] = "";
$a->strings["No name"] = "Geen naam";
$a->strings["Remove authorization"] = "Verwijder authorisatie";
$a->strings["No Plugin settings configured"] = "";
$a->strings["Plugin Settings"] = "Plugin Instellingen";
$a->strings["Off"] = "Uit";
$a->strings["On"] = "Aan";
$a->strings["Additional Features"] = "Extra functies";
$a->strings["General Social Media Settings"] = "";
$a->strings["Disable intelligent shortening"] = "";
$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "";
$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "";
$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "";
$a->strings["Your legacy GNU Social account"] = "";
$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "";
$a->strings["Repair OStatus subscriptions"] = "";
$a->strings["Built-in support for %s connectivity is %s"] = "Ingebouwde ondersteuning voor connectiviteit met %s is %s";
$a->strings["Diaspora"] = "Diaspora";
$a->strings["enabled"] = "ingeschakeld";
$a->strings["disabled"] = "uitgeschakeld";
$a->strings["GNU Social (OStatus)"] = "";
$a->strings["Email access is disabled on this site."] = "E-mailtoegang is op deze website uitgeschakeld.";
$a->strings["Email/Mailbox Setup"] = "E-mail Instellen";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken.";
$a->strings["Last successful email check:"] = "Laatste succesvolle e-mail controle:";
$a->strings["IMAP server name:"] = "IMAP server naam:";
$a->strings["IMAP port:"] = "IMAP poort:";
$a->strings["Security:"] = "Beveiliging:";
$a->strings["None"] = "Geen";
$a->strings["Email login name:"] = "E-mail login naam:";
$a->strings["Email password:"] = "E-mail wachtwoord:";
$a->strings["Reply-to address:"] = "Antwoord adres:";
$a->strings["Send public posts to all email contacts:"] = "Openbare posts naar alle e-mail contacten versturen:";
$a->strings["Action after import:"] = "Actie na importeren:";
$a->strings["Mark as seen"] = "Als 'gelezen' markeren";
$a->strings["Move to folder"] = "Naar map verplaatsen";
$a->strings["Move to folder:"] = "Verplaatsen naar map:";
$a->strings["Display Settings"] = "Scherminstellingen";
$a->strings["Display Theme:"] = "Schermthema:";
$a->strings["Mobile Theme:"] = "Mobiel thema:";
$a->strings["Update browser every xx seconds"] = "Browser elke xx seconden verversen";
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 seconden, geen maximum";
$a->strings["Number of items to display per page:"] = "Aantal items te tonen per pagina:";
$a->strings["Maximum of 100 items"] = "Maximum 100 items";
$a->strings["Number of items to display per page when viewed from mobile device:"] = "Aantal items per pagina als je een mobiel toestel gebruikt:";
$a->strings["Don't show emoticons"] = "Emoticons niet tonen";
$a->strings["Calendar"] = "";
$a->strings["Beginning of week:"] = "";
$a->strings["Don't show notices"] = "";
$a->strings["Infinite scroll"] = "Oneindig scrollen";
$a->strings["Automatic updates only at the top of the network page"] = "";
$a->strings["Theme settings"] = "Thema-instellingen";
$a->strings["User Types"] = "Gebruikerstypes";
$a->strings["Community Types"] = "Forum/groepstypes";
$a->strings["Normal Account Page"] = "Normale accountpagina";
$a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel";
$a->strings["Soapbox Page"] = "Zeepkist-pagina";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen.";
$a->strings["Community Forum/Celebrity Account"] = "Forum/groeps- of beroemdheid-account";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven.";
$a->strings["Automatic Friend Page"] = "Automatisch Vriendschapspagina";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden.";
$a->strings["Private Forum [Experimental]"] = "Privé-forum [experimenteel]";
$a->strings["Private forum - approved members only"] = "Privé-forum - enkel voor goedgekeurde leden";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optioneel) Laat dit OpenID toe om in te loggen op deze account.";
$a->strings["Publish your default profile in your local site directory?"] = "Je standaardprofiel in je lokale gids publiceren?";
$a->strings["Publish your default profile in the global social directory?"] = "Je standaardprofiel in de globale sociale gids publiceren?";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?";
$a->strings["Hide your profile details from unknown viewers?"] = "Je profieldetails verbergen voor onbekende bezoekers?";
$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "";
$a->strings["Allow friends to post to your profile page?"] = "Vrienden toestaan om op jou profielpagina te posten?";
$a->strings["Allow friends to tag your posts?"] = "Sta vrienden toe om jouw berichten te labelen?";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?";
$a->strings["Permit unknown people to send you private mail?"] = "Mogen onbekende personen jou privé berichten sturen?";
$a->strings["Profile is <strong>not published</strong>."] = "Profiel is <strong>niet gepubliceerd</strong>.";
$a->strings["Your Identity Address is <strong>'%s'</strong> or '%s'."] = "";
$a->strings["Automatically expire posts after this many days:"] = "Laat berichten automatisch vervallen na zo veel dagen:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd.";
$a->strings["Advanced expiration settings"] = "Geavanceerde instellingen voor vervallen";
$a->strings["Advanced Expiration"] = "Geavanceerd Verval:";
$a->strings["Expire posts:"] = "Laat berichten vervallen:";
$a->strings["Expire personal notes:"] = "Laat persoonlijke aantekeningen verlopen:";
$a->strings["Expire starred posts:"] = "Laat berichten met ster verlopen";
$a->strings["Expire photos:"] = "Laat foto's vervallen:";
$a->strings["Only expire posts by others:"] = "Laat alleen berichten door anderen vervallen:";
$a->strings["Account Settings"] = "Account Instellingen";
$a->strings["Password Settings"] = "Wachtwoord Instellingen";
$a->strings["New Password:"] = "Nieuw Wachtwoord:";
$a->strings["Confirm:"] = "Bevestig:";
$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen";
$a->strings["Current Password:"] = "Huidig wachtwoord:";
$a->strings["Your current password to confirm the changes"] = "Je huidig wachtwoord om de wijzigingen te bevestigen";
$a->strings["Password:"] = "Wachtwoord:";
$a->strings["Basic Settings"] = "Basis Instellingen";
$a->strings["Full Name:"] = "Volledige Naam:";
$a->strings["Email Address:"] = "E-mailadres:";
$a->strings["Your Timezone:"] = "Je Tijdzone:";
$a->strings["Your Language:"] = "";
$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "";
$a->strings["Default Post Location:"] = "Standaard locatie:";
$a->strings["Use Browser Location:"] = "Gebruik Webbrowser Locatie:";
$a->strings["Security and Privacy Settings"] = "Instellingen voor Beveiliging en Privacy";
$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal vriendschapsverzoeken per dag:";
$a->strings["(to prevent spam abuse)"] = "(om spam misbruik te voorkomen)";
$a->strings["Default Post Permissions"] = "Standaard rechten voor nieuwe berichten";
$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)";
$a->strings["Show to Groups"] = "Tonen aan groepen";
$a->strings["Show to Contacts"] = "Tonen aan contacten";
$a->strings["Default Private Post"] = "Standaard Privé Post";
$a->strings["Default Public Post"] = "Standaard Publieke Post";
$a->strings["Default Permissions for New Posts"] = "Standaard rechten voor nieuwe berichten";
$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:";
$a->strings["Notification Settings"] = "Notificatie Instellingen";
$a->strings["By default post a status message when:"] = "Post automatisch een bericht op je tijdlijn wanneer:";
$a->strings["accepting a friend request"] = "Een vriendschapsverzoek accepteren";
$a->strings["joining a forum/community"] = "Lid worden van een groep/forum";
$a->strings["making an <em>interesting</em> profile change"] = "Een <em>interessante</em> verandering aan je profiel";
$a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:";
$a->strings["You receive an introduction"] = "Je ontvangt een vriendschaps- of connectieverzoek";
$a->strings["Your introductions are confirmed"] = "Jouw vriendschaps- of connectieverzoeken zijn bevestigd";
$a->strings["Someone writes on your profile wall"] = "Iemand iets op je tijdlijn schrijft";
$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft";
$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt";
$a->strings["You receive a friend suggestion"] = "Je een suggestie voor een vriendschap ontvangt";
$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd";
$a->strings["You are poked/prodded/etc. in a post"] = "Je in een bericht bent aangestoten/gepord/etc.";
$a->strings["Activate desktop notifications"] = "";
$a->strings["Show desktop popup on new notifications"] = "";
$a->strings["Text-only notification emails"] = "";
$a->strings["Send text only notification emails, without the html part"] = "";
$a->strings["Advanced Account/Page Type Settings"] = "";
$a->strings["Change the behaviour of this account for special situations"] = "";
$a->strings["Relocate"] = "";
$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "";
$a->strings["Resend relocate message to contacts"] = "";
$a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd";
$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie";
$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar.";
@ -808,252 +1120,68 @@ $a->strings["Hide this contact"] = "Verberg dit contact";
$a->strings["Welcome home %s."] = "Welkom terug %s.";
$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s.";
$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:";
$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Als je nog geen lid bent van het vrije sociale web, <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>.";
$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "";
$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek";
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
$a->strings["Please answer the following:"] = "Beantwoord het volgende:";
$a->strings["Does %s know you?"] = "Kent %s jou?";
$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:";
$a->strings["Friendica"] = "Friendica";
$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web";
$a->strings["Diaspora"] = "Diaspora";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk.";
$a->strings["Your Identity Address:"] = "Adres van uw identiteit:";
$a->strings["Submit Request"] = "Aanvraag indienen";
$a->strings["Find on this site"] = "Op deze website zoeken";
$a->strings["Site Directory"] = "Websitegids";
$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies.";
$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "";
$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden.";
$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder.";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw.";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken.";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in.";
$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):";
$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?";
$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging.";
$a->strings["Your invitation ID: "] = "Je uitnodigingsid:";
$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "";
$a->strings["Your Email Address: "] = "Je email adres:";
$a->strings["Leave empty for an auto generated password."] = "";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@\$sitename</strong>' zijn.";
$a->strings["Choose a nickname: "] = "Kies een bijnaam:";
$a->strings["Register"] = "Registreer";
$a->strings["Import"] = "Importeren";
$a->strings["Import your profile to this friendica instance"] = "";
$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud";
$a->strings["Only logged in users are permitted to perform a search."] = "";
$a->strings["Too Many Requests"] = "";
$a->strings["Only one search per minute is permitted for not logged in users."] = "";
$a->strings["Search"] = "Zoeken";
$a->strings["Items tagged with: %s"] = "";
$a->strings["Search results for: %s"] = "";
$a->strings["Age: "] = "Leeftijd:";
$a->strings["Gender: "] = "Geslacht:";
$a->strings["Location:"] = "Plaats:";
$a->strings["Gender:"] = "Geslacht:";
$a->strings["Status:"] = "Tijdlijn:";
$a->strings["Homepage:"] = "Website:";
$a->strings["About:"] = "Over:";
$a->strings["Global Directory"] = "Globale gids";
$a->strings["Find on this site"] = "Op deze website zoeken";
$a->strings["Finding:"] = "";
$a->strings["Site Directory"] = "Websitegids";
$a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn).";
$a->strings["People Search - %s"] = "";
$a->strings["No matches"] = "Geen resultaten";
$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt.";
$a->strings["Item has been removed."] = "Item is verwijderd.";
$a->strings["Item not found"] = "Item niet gevonden";
$a->strings["Edit post"] = "Bericht bewerken";
$a->strings["upload photo"] = "Foto uploaden";
$a->strings["Attach file"] = "Bestand bijvoegen";
$a->strings["attach file"] = "bestand bijvoegen";
$a->strings["web link"] = "webadres";
$a->strings["Insert video link"] = "Voeg video toe";
$a->strings["video link"] = "video adres";
$a->strings["Insert audio link"] = "Voeg audio adres toe";
$a->strings["audio link"] = "audio adres";
$a->strings["Set your location"] = "Stel uw locatie in";
$a->strings["set location"] = "Stel uw locatie in";
$a->strings["Clear browser location"] = "Verwijder locatie uit uw webbrowser";
$a->strings["clear location"] = "Verwijder locatie uit uw webbrowser";
$a->strings["Permission settings"] = "Instellingen van rechten";
$a->strings["CC: email addresses"] = "CC: e-mailadressen";
$a->strings["Public post"] = "Openbare post";
$a->strings["Set title"] = "Titel plaatsen";
$a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)";
$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be";
$a->strings["Event can not end before it has started."] = "";
$a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist.";
$a->strings["l, F j"] = "l j F";
$a->strings["Edit event"] = "Gebeurtenis bewerken";
$a->strings["link to source"] = "Verwijzing naar bron";
$a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis";
$a->strings["Previous"] = "Vorige";
$a->strings["Next"] = "Volgende";
$a->strings["Event details"] = "Gebeurtenis details";
$a->strings["Starting date and Title are required."] = "";
$a->strings["Event Starts:"] = "Gebeurtenis begint:";
$a->strings["Required"] = "Vereist";
$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd is niet gekend of niet relevant";
$a->strings["Event Finishes:"] = "Gebeurtenis eindigt:";
$a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebruiker";
$a->strings["Description:"] = "Beschrijving:";
$a->strings["Title:"] = "Titel:";
$a->strings["Share this event"] = "Deel deze gebeurtenis";
$a->strings["You already added this contact."] = "";
$a->strings["Contact added"] = "Contact toegevoegd";
$a->strings["Group created."] = "Groep aangemaakt.";
$a->strings["Could not create group."] = "Kon de groep niet aanmaken.";
$a->strings["Group not found."] = "Groep niet gevonden.";
$a->strings["Group name changed."] = "Groepsnaam gewijzigd.";
$a->strings["Permission denied"] = "Toegang geweigerd";
$a->strings["Save Group"] = "";
$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan.";
$a->strings["Group Name: "] = "Groepsnaam:";
$a->strings["Group removed."] = "Groep verwijderd.";
$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen.";
$a->strings["Group Editor"] = "Groepsbewerker";
$a->strings["Members"] = "Leden";
$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen.";
$a->strings["Friendica Communications Server - Setup"] = "";
$a->strings["Could not connect to database."] = "Kon geen toegang krijgen tot de database.";
$a->strings["Could not create table."] = "Kon tabel niet aanmaken.";
$a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd.";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql.";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Zie het bestand \"INSTALL.txt\".";
$a->strings["Database already in use."] = "";
$a->strings["System check"] = "Systeemcontrole";
$a->strings["Check again"] = "Controleer opnieuw";
$a->strings["Database connection"] = "Verbinding met database";
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken.";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. ";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat.";
$a->strings["Database Server Name"] = "Servernaam database";
$a->strings["Database Login Name"] = "Gebruikersnaam database";
$a->strings["Database Login Password"] = "Wachtwoord database";
$a->strings["Database Name"] = "Naam database";
$a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken.";
$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website";
$a->strings["Site settings"] = "Website-instellingen";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver.";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie <a href='http://friendica.com/node/27'>'Activeren van geplande taken'</a>";
$a->strings["PHP executable path"] = "PATH van het PHP commando";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten.";
$a->strings["Command line PHP"] = "PHP-opdrachtregel";
$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
$a->strings["Found PHP version: "] = "Gevonden PHP versie:";
$a->strings["PHP cli binary"] = "";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd.";
$a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken.";
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait.";
$a->strings["Generate encryption keys"] = "";
$a->strings["libCurl PHP module"] = "libCurl PHP module";
$a->strings["GD graphics PHP module"] = "GD graphics PHP module";
$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module";
$a->strings["mysqli PHP module"] = "mysqli PHP module";
$a->strings["mb_string PHP module"] = "mb_string PHP module";
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd.";
$a->strings["Error: openssl PHP module required but not installed."] = "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd.";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel.";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies.";
$a->strings[".htconfig.php is writable"] = ".htconfig.php is schrijfbaar";
$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen.";
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie.";
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map.";
$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten.";
$a->strings["view/smarty3 is writable"] = "view/smarty3 is schrijfbaar";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
$a->strings["Url rewrite is working"] = "";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver.";
$a->strings["<h1>What next</h1>"] = "<h1>Wat nu</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller.";
$a->strings["Unable to locate original post."] = "Ik kan de originele post niet meer vinden.";
$a->strings["Empty post discarded."] = "Lege post weggegooid.";
$a->strings["Wall Photos"] = "";
$a->strings["System error. Post not saved."] = "Systeemfout. Post niet bewaard.";
$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk.";
$a->strings["You may visit them online at %s"] = "Je kunt ze online bezoeken op %s";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen.";
$a->strings["%s posted an update."] = "%s heeft een wijziging geplaatst.";
$a->strings["Profile Match"] = "Profielmatch";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel.";
$a->strings["is interested in:"] = "Is geïnteresseerd in:";
$a->strings["Connect"] = "Verbinden";
$a->strings["Search Results For: %s"] = "";
$a->strings["add"] = "toevoegen";
$a->strings["Commented Order"] = "Nieuwe reacties bovenaan";
$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan";
$a->strings["Posted Order"] = "Nieuwe berichten bovenaan";
$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan";
$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben";
$a->strings["New"] = "Nieuw";
$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum";
$a->strings["Shared Links"] = "Gedeelde links";
$a->strings["Interesting Links"] = "Interessante links";
$a->strings["Starred"] = "Met ster";
$a->strings["Favourite Posts"] = "Favoriete berichten";
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
0 => "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk.",
1 => "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk.",
);
$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden.";
$a->strings["Contact: %s"] = "";
$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden.";
$a->strings["Invalid contact."] = "Ongeldig contact.";
$a->strings["Personal Notes"] = "Persoonlijke Nota's";
$a->strings["Not Extended"] = "";
$a->strings["Photo Albums"] = "Fotoalbums";
$a->strings["Recent Photos"] = "Recente foto's";
$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden";
$a->strings["everybody"] = "iedereen";
$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar";
$a->strings["Album not found."] = "Album niet gevonden";
$a->strings["Delete Album"] = "Verwijder album";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?";
$a->strings["Delete Photo"] = "Verwijder foto";
$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s";
$a->strings["a photo"] = "een foto";
$a->strings["Image exceeds size limit of %s"] = "";
$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg.";
$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken";
$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt.";
$a->strings["No photos selected"] = "Geen foto's geselecteerd";
$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt.";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt.";
$a->strings["Upload Photos"] = "Upload foto's";
$a->strings["New album name: "] = "Nieuwe albumnaam: ";
$a->strings["or existing album name: "] = "of bestaande albumnaam: ";
$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload";
$a->strings["Permissions"] = "Rechten";
$a->strings["Show to Groups"] = "Tonen aan groepen";
$a->strings["Show to Contacts"] = "Tonen aan contacten";
$a->strings["Private Photo"] = "Privé foto";
$a->strings["Public Photo"] = "Publieke foto";
$a->strings["Edit Album"] = "Album wijzigen";
$a->strings["Show Newest First"] = "Toon niewste eerst";
$a->strings["Show Oldest First"] = "Toon oudste eerst";
$a->strings["View Photo"] = "Bekijk foto";
$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt.";
$a->strings["Photo not available"] = "Foto is niet beschikbaar";
$a->strings["View photo"] = "Bekijk foto";
$a->strings["Edit photo"] = "Bewerk foto";
$a->strings["Use as profile photo"] = "Gebruik als profielfoto";
$a->strings["View Full Size"] = "Bekijk in volledig formaat";
$a->strings["Tags: "] = "Labels: ";
$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]";
$a->strings["New album name"] = "Nieuwe albumnaam";
$a->strings["Caption"] = "Onderschrift";
$a->strings["Add a Tag"] = "Een label toevoegen";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping ";
$a->strings["Do not rotate"] = "";
$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)";
$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)";
$a->strings["Private photo"] = "Privé foto";
$a->strings["Public photo"] = "Publieke foto";
$a->strings["Share"] = "Delen";
$a->strings["View Album"] = "Album bekijken";
$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden";
$a->strings["{0} sent you a message"] = "{0} stuurde jou een bericht";
$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren";
$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar.";
$a->strings["Tips for New Members"] = "Tips voor nieuwe leden";
$a->strings["Image uploaded but image cropping failed."] = "Afbeelding opgeladen, maar bijsnijden mislukt.";
$a->strings["Image size reduction [%s] failed."] = "Verkleining van de afbeelding [%s] mislukt.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen.";
$a->strings["Unable to process image"] = "Ik kan de afbeelding niet verwerken";
$a->strings["Upload File:"] = "Upload bestand:";
$a->strings["Select a profile:"] = "Kies een profiel:";
$a->strings["Upload"] = "Uploaden";
$a->strings["or"] = "of";
$a->strings["skip this step"] = "Deze stap overslaan";
$a->strings["select a photo from your photo albums"] = "Kies een foto uit je fotoalbums";
$a->strings["Crop Image"] = "Afbeelding bijsnijden";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Pas het afsnijden van de afbeelding aan voor het beste resultaat.";
$a->strings["Done Editing"] = "Wijzigingen compleet";
$a->strings["Image uploaded successfully."] = "Uploaden van afbeelding gelukt.";
$a->strings["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden.";
$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd.";
$a->strings["Existing Page Managers"] = "Bestaande paginabeheerders";
$a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed";
$a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed ";
$a->strings["Add"] = "Toevoegen";
$a->strings["No entries."] = "Geen gegevens.";
$a->strings["No contacts in common."] = "Geen gedeelde contacten.";
$a->strings["Common Friends"] = "Gedeelde Vrienden";
$a->strings["Export account"] = "Account exporteren";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server.";
$a->strings["Export all"] = "Alles exporteren";
$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)";
$a->strings["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s";
$a->strings["Mood"] = "Stemming";
$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden";
$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen.";
$a->strings["Ignore/Hide"] = "Negeren/Verbergen";
$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen";
$a->strings["Profile deleted."] = "Profiel verwijderd";
$a->strings["Profile-"] = "Profiel-";
$a->strings["New profile created."] = "Nieuw profiel aangemaakt.";
@ -1080,6 +1208,7 @@ $a->strings[" - Visit %1\$s's %2\$s"] = " - Bezoek %2\$s van %1\$s";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepast %2\$s, %3\$s veranderd.";
$a->strings["Hide contacts and friends:"] = "";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Je vrienden/contacten verbergen voor bezoekers van dit profiel?";
$a->strings["Show more profile fields:"] = "";
$a->strings["Edit Profile Details"] = "Profieldetails bewerken";
$a->strings["Change Profile Photo"] = "Profielfoto wijzigen";
$a->strings["View this profile"] = "Dit profiel bekijken";
@ -1134,199 +1263,26 @@ $a->strings["Create New Profile"] = "Maak nieuw profiel";
$a->strings["Profile Image"] = "Profiel afbeelding";
$a->strings["visible to everybody"] = "zichtbaar voor iedereen";
$a->strings["Edit visibility"] = "Pas zichtbaarheid aan";
$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie.";
$a->strings["Profile Visibility Editor"] = "";
$a->strings["Visible To"] = "Zichtbaar voor";
$a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)";
$a->strings["Items tagged with: %s"] = "";
$a->strings["Search results for: %s"] = "";
$a->strings["link"] = "link";
$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen.";
$a->strings["Ignore/Hide"] = "Negeren/Verbergen";
$a->strings["Do you really want to delete this video?"] = "";
$a->strings["Delete Video"] = "";
$a->strings["No videos selected"] = "Geen video's geselecteerd";
$a->strings["View Video"] = "Bekijk Video";
$a->strings["Recent Videos"] = "Recente video's";
$a->strings["Upload New Videos"] = "Nieuwe video's uploaden";
$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "";
$a->strings["Or - did you try to upload an empty file?"] = "";
$a->strings["File exceeds size limit of %s"] = "";
$a->strings["File upload failed."] = "Uploaden van bestand mislukt.";
$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies.";
$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "";
$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden.";
$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder.";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken.";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in.";
$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):";
$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?";
$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging.";
$a->strings["Your invitation ID: "] = "Je uitnodigingsid:";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "Je volledige naam (bijv. Jan Jansens):";
$a->strings["Your Email Address: "] = "Je email adres:";
$a->strings["New Password:"] = "Nieuw Wachtwoord:";
$a->strings["Leave empty for an auto generated password."] = "";
$a->strings["Confirm:"] = "Bevestig:";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@\$sitename</strong>' zijn.";
$a->strings["Choose a nickname: "] = "Kies een bijnaam:";
$a->strings["Register"] = "Registreer";
$a->strings["Import your profile to this friendica instance"] = "";
$a->strings["Additional features"] = "Extra functies";
$a->strings["Display"] = "Weergave";
$a->strings["Social Networks"] = "Sociale netwerken";
$a->strings["Delegations"] = "";
$a->strings["Connected apps"] = "Verbonden applicaties";
$a->strings["Remove account"] = "Account verwijderen";
$a->strings["Missing some important data!"] = "Een belangrijk gegeven ontbreekt!";
$a->strings["Failed to connect with email account using the settings provided."] = "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen.";
$a->strings["Email settings updated."] = "E-mail instellingen bijgewerkt..";
$a->strings["Features updated"] = "Functies bijgewerkt";
$a->strings["Relocate message has been send to your contacts"] = "";
$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd.";
$a->strings["Wrong password."] = "Verkeerd wachtwoord.";
$a->strings["Password changed."] = "Wachtwoord gewijzigd.";
$a->strings["Password update failed. Please try again."] = "Wachtwoord-)wijziging mislukt. Probeer opnieuw.";
$a->strings[" Please use a shorter name."] = "Gebruik een kortere naam.";
$a->strings[" Name too short."] = "Naam te kort.";
$a->strings["Wrong Password"] = "Verkeerd wachtwoord";
$a->strings[" Not valid email."] = "Geen geldig e-mailadres.";
$a->strings[" Cannot change to that email."] = "Kan niet veranderen naar die e-mail.";
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt.";
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep.";
$a->strings["Settings updated."] = "Instellingen bijgewerkt.";
$a->strings["Add application"] = "Toepassing toevoegen";
$a->strings["Consumer Key"] = "Gebruikerssleutel";
$a->strings["Consumer Secret"] = "Gebruikersgeheim";
$a->strings["Redirect"] = "Doorverwijzing";
$a->strings["Icon url"] = "URL pictogram";
$a->strings["You can't edit this application."] = "Je kunt deze toepassing niet wijzigen.";
$a->strings["Connected Apps"] = "Verbonden applicaties";
$a->strings["Client key starts with"] = "";
$a->strings["No name"] = "Geen naam";
$a->strings["Remove authorization"] = "Verwijder authorisatie";
$a->strings["No Plugin settings configured"] = "";
$a->strings["Plugin Settings"] = "Plugin Instellingen";
$a->strings["Off"] = "Uit";
$a->strings["On"] = "Aan";
$a->strings["Additional Features"] = "Extra functies";
$a->strings["General Social Media Settings"] = "";
$a->strings["Disable intelligent shortening"] = "";
$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "";
$a->strings["Built-in support for %s connectivity is %s"] = "Ingebouwde ondersteuning voor connectiviteit met %s is %s";
$a->strings["enabled"] = "ingeschakeld";
$a->strings["disabled"] = "uitgeschakeld";
$a->strings["StatusNet"] = "StatusNet";
$a->strings["Email access is disabled on this site."] = "E-mailtoegang is op deze website uitgeschakeld.";
$a->strings["Email/Mailbox Setup"] = "E-mail Instellen";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken.";
$a->strings["Last successful email check:"] = "Laatste succesvolle e-mail controle:";
$a->strings["IMAP server name:"] = "IMAP server naam:";
$a->strings["IMAP port:"] = "IMAP poort:";
$a->strings["Security:"] = "Beveiliging:";
$a->strings["None"] = "Geen";
$a->strings["Email login name:"] = "E-mail login naam:";
$a->strings["Email password:"] = "E-mail wachtwoord:";
$a->strings["Reply-to address:"] = "Antwoord adres:";
$a->strings["Send public posts to all email contacts:"] = "Openbare posts naar alle e-mail contacten versturen:";
$a->strings["Action after import:"] = "Actie na importeren:";
$a->strings["Mark as seen"] = "Als 'gelezen' markeren";
$a->strings["Move to folder"] = "Naar map verplaatsen";
$a->strings["Move to folder:"] = "Verplaatsen naar map:";
$a->strings["Display Settings"] = "Scherminstellingen";
$a->strings["Display Theme:"] = "Schermthema:";
$a->strings["Mobile Theme:"] = "Mobiel thema:";
$a->strings["Update browser every xx seconds"] = "Browser elke xx seconden verversen";
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 seconden, geen maximum";
$a->strings["Number of items to display per page:"] = "Aantal items te tonen per pagina:";
$a->strings["Maximum of 100 items"] = "Maximum 100 items";
$a->strings["Number of items to display per page when viewed from mobile device:"] = "Aantal items per pagina als je een mobiel toestel gebruikt:";
$a->strings["Don't show emoticons"] = "Emoticons niet tonen";
$a->strings["Don't show notices"] = "";
$a->strings["Infinite scroll"] = "Oneindig scrollen";
$a->strings["Automatic updates only at the top of the network page"] = "";
$a->strings["User Types"] = "Gebruikerstypes";
$a->strings["Community Types"] = "Forum/groepstypes";
$a->strings["Normal Account Page"] = "Normale accountpagina";
$a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel";
$a->strings["Soapbox Page"] = "Zeepkist-pagina";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen.";
$a->strings["Community Forum/Celebrity Account"] = "Forum/groeps- of beroemdheid-account";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven.";
$a->strings["Automatic Friend Page"] = "Automatisch Vriendschapspagina";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden.";
$a->strings["Private Forum [Experimental]"] = "Privé-forum [experimenteel]";
$a->strings["Private forum - approved members only"] = "Privé-forum - enkel voor goedgekeurde leden";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optioneel) Laat dit OpenID toe om in te loggen op deze account.";
$a->strings["Publish your default profile in your local site directory?"] = "Je standaardprofiel in je lokale gids publiceren?";
$a->strings["Publish your default profile in the global social directory?"] = "Je standaardprofiel in de globale sociale gids publiceren?";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?";
$a->strings["Hide your profile details from unknown viewers?"] = "Je profieldetails verbergen voor onbekende bezoekers?";
$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "";
$a->strings["Allow friends to post to your profile page?"] = "Vrienden toestaan om op jou profielpagina te posten?";
$a->strings["Allow friends to tag your posts?"] = "Sta vrienden toe om jouw berichten te labelen?";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?";
$a->strings["Permit unknown people to send you private mail?"] = "Mogen onbekende personen jou privé berichten sturen?";
$a->strings["Profile is <strong>not published</strong>."] = "Profiel is <strong>niet gepubliceerd</strong>.";
$a->strings["Your Identity Address is"] = "Jouw Identiteitsadres is";
$a->strings["Automatically expire posts after this many days:"] = "Laat berichten automatisch vervallen na zo veel dagen:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd.";
$a->strings["Advanced expiration settings"] = "Geavanceerde instellingen voor vervallen";
$a->strings["Advanced Expiration"] = "Geavanceerd Verval:";
$a->strings["Expire posts:"] = "Laat berichten vervallen:";
$a->strings["Expire personal notes:"] = "Laat persoonlijke aantekeningen verlopen:";
$a->strings["Expire starred posts:"] = "Laat berichten met ster verlopen";
$a->strings["Expire photos:"] = "Laat foto's vervallen:";
$a->strings["Only expire posts by others:"] = "Laat alleen berichten door anderen vervallen:";
$a->strings["Account Settings"] = "Account Instellingen";
$a->strings["Password Settings"] = "Wachtwoord Instellingen";
$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen";
$a->strings["Current Password:"] = "Huidig wachtwoord:";
$a->strings["Your current password to confirm the changes"] = "Je huidig wachtwoord om de wijzigingen te bevestigen";
$a->strings["Password:"] = "Wachtwoord:";
$a->strings["Basic Settings"] = "Basis Instellingen";
$a->strings["Full Name:"] = "Volledige Naam:";
$a->strings["Email Address:"] = "E-mailadres:";
$a->strings["Your Timezone:"] = "Je Tijdzone:";
$a->strings["Default Post Location:"] = "Standaard locatie:";
$a->strings["Use Browser Location:"] = "Gebruik Webbrowser Locatie:";
$a->strings["Security and Privacy Settings"] = "Instellingen voor Beveiliging en Privacy";
$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal vriendschapsverzoeken per dag:";
$a->strings["(to prevent spam abuse)"] = "(om spam misbruik te voorkomen)";
$a->strings["Default Post Permissions"] = "Standaard rechten voor nieuwe berichten";
$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)";
$a->strings["Default Private Post"] = "Standaard Privé Post";
$a->strings["Default Public Post"] = "Standaard Publieke Post";
$a->strings["Default Permissions for New Posts"] = "Standaard rechten voor nieuwe berichten";
$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:";
$a->strings["Notification Settings"] = "Notificatie Instellingen";
$a->strings["By default post a status message when:"] = "Post automatisch een bericht op je tijdlijn wanneer:";
$a->strings["accepting a friend request"] = "Een vriendschapsverzoek accepteren";
$a->strings["joining a forum/community"] = "Lid worden van een groep/forum";
$a->strings["making an <em>interesting</em> profile change"] = "Een <em>interessante</em> verandering aan je profiel";
$a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:";
$a->strings["You receive an introduction"] = "Je ontvangt een vriendschaps- of connectieverzoek";
$a->strings["Your introductions are confirmed"] = "Jouw vriendschaps- of connectieverzoeken zijn bevestigd";
$a->strings["Someone writes on your profile wall"] = "Iemand iets op je tijdlijn schrijft";
$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft";
$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt";
$a->strings["You receive a friend suggestion"] = "Je een suggestie voor een vriendschap ontvangt";
$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd";
$a->strings["You are poked/prodded/etc. in a post"] = "Je in een bericht bent aangestoten/gepord/etc.";
$a->strings["Activate desktop notifications"] = "";
$a->strings["Show desktop popup on new notifications"] = "";
$a->strings["Text-only notification emails"] = "";
$a->strings["Send text only notification emails, without the html part"] = "";
$a->strings["Advanced Account/Page Type Settings"] = "";
$a->strings["Change the behaviour of this account for special situations"] = "";
$a->strings["Relocate"] = "";
$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "";
$a->strings["Resend relocate message to contacts"] = "";
$a->strings["Login"] = "Login";
$a->strings["The post was created"] = "";
$a->strings["Item not found"] = "Item niet gevonden";
$a->strings["Edit post"] = "Bericht bewerken";
$a->strings["upload photo"] = "Foto uploaden";
$a->strings["Attach file"] = "Bestand bijvoegen";
$a->strings["attach file"] = "bestand bijvoegen";
$a->strings["web link"] = "webadres";
$a->strings["Insert video link"] = "Voeg video toe";
$a->strings["video link"] = "video adres";
$a->strings["Insert audio link"] = "Voeg audio adres toe";
$a->strings["audio link"] = "audio adres";
$a->strings["Set your location"] = "Stel uw locatie in";
$a->strings["set location"] = "Stel uw locatie in";
$a->strings["Clear browser location"] = "Verwijder locatie uit uw webbrowser";
$a->strings["clear location"] = "Verwijder locatie uit uw webbrowser";
$a->strings["Permission settings"] = "Instellingen van rechten";
$a->strings["CC: email addresses"] = "CC: e-mailadressen";
$a->strings["Public post"] = "Openbare post";
$a->strings["Set title"] = "Titel plaatsen";
$a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)";
$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be";
$a->strings["This is Friendica, version"] = "Dit is Friendica, versie";
$a->strings["running at web location"] = "draaiend op web-adres";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> om meer te leren over het Friendica project.";
@ -1335,6 +1291,140 @@ $a->strings["the bugtracker at github"] = "";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com";
$a->strings["Installed plugins/addons/apps:"] = "Geïnstalleerde plugins/toepassingen:";
$a->strings["No installed plugins/addons/apps"] = "Geen plugins of toepassingen geïnstalleerd";
$a->strings["Authorize application connection"] = "";
$a->strings["Return to your app and insert this Securty Code:"] = "";
$a->strings["Please login to continue."] = "Log in om verder te gaan.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?";
$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar.";
$a->strings["Visible to:"] = "Zichtbaar voor:";
$a->strings["Personal Notes"] = "Persoonlijke Nota's";
$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
$a->strings["Time Conversion"] = "Tijdsconversie";
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones.";
$a->strings["UTC time: %s"] = "UTC tijd: %s";
$a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s";
$a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s";
$a->strings["Please select your timezone:"] = "Selecteer je tijdzone:";
$a->strings["Poke/Prod"] = "Aanstoten/porren";
$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen";
$a->strings["Recipient"] = "Ontvanger";
$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen";
$a->strings["Make this post private"] = "Dit bericht privé maken";
$a->strings["Resubsribing to OStatus contacts"] = "";
$a->strings["Error"] = "";
$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden.";
$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres.";
$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website.";
$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt.";
$a->strings["%d message sent."] = array(
0 => "%d bericht verzonden.",
1 => "%d berichten verzonden.",
);
$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen";
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken.";
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website.";
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten.";
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen.";
$a->strings["Send invitations"] = "Verstuur uitnodigingen";
$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:";
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen.";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code";
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:";
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken";
$a->strings["Photo Albums"] = "Fotoalbums";
$a->strings["Recent Photos"] = "Recente foto's";
$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden";
$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar";
$a->strings["Album not found."] = "Album niet gevonden";
$a->strings["Delete Album"] = "Verwijder album";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?";
$a->strings["Delete Photo"] = "Verwijder foto";
$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s";
$a->strings["a photo"] = "een foto";
$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg.";
$a->strings["No photos selected"] = "Geen foto's geselecteerd";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt.";
$a->strings["Upload Photos"] = "Upload foto's";
$a->strings["New album name: "] = "Nieuwe albumnaam: ";
$a->strings["or existing album name: "] = "of bestaande albumnaam: ";
$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload";
$a->strings["Permissions"] = "Rechten";
$a->strings["Private Photo"] = "Privé foto";
$a->strings["Public Photo"] = "Publieke foto";
$a->strings["Edit Album"] = "Album wijzigen";
$a->strings["Show Newest First"] = "Toon niewste eerst";
$a->strings["Show Oldest First"] = "Toon oudste eerst";
$a->strings["View Photo"] = "Bekijk foto";
$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt.";
$a->strings["Photo not available"] = "Foto is niet beschikbaar";
$a->strings["View photo"] = "Bekijk foto";
$a->strings["Edit photo"] = "Bewerk foto";
$a->strings["Use as profile photo"] = "Gebruik als profielfoto";
$a->strings["View Full Size"] = "Bekijk in volledig formaat";
$a->strings["Tags: "] = "Labels: ";
$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]";
$a->strings["New album name"] = "Nieuwe albumnaam";
$a->strings["Caption"] = "Onderschrift";
$a->strings["Add a Tag"] = "Een label toevoegen";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping ";
$a->strings["Do not rotate"] = "";
$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)";
$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)";
$a->strings["Private photo"] = "Privé foto";
$a->strings["Public photo"] = "Publieke foto";
$a->strings["Share"] = "Delen";
$a->strings["Attending"] = array(
0 => "",
1 => "",
);
$a->strings["Not attending"] = "";
$a->strings["Might attend"] = "";
$a->strings["Map"] = "";
$a->strings["Not Extended"] = "";
$a->strings["Account approved."] = "Account goedgekeurd.";
$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s";
$a->strings["Please login."] = "Inloggen.";
$a->strings["Move account"] = "Account verplaatsen";
$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren.";
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent.";
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "";
$a->strings["Account file"] = "Account bestand";
$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "";
$a->strings["Item not available."] = "Item niet beschikbaar";
$a->strings["Item was not found."] = "Item niet gevonden";
$a->strings["Delete this item?"] = "Dit item verwijderen?";
$a->strings["show fewer"] = "Minder tonen";
$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden.";
$a->strings["Create a New Account"] = "Nieuwe account aanmaken";
$a->strings["Logout"] = "Uitloggen";
$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:";
$a->strings["Password: "] = "Wachtwoord:";
$a->strings["Remember me"] = "Onthou me";
$a->strings["Or login using OpenID: "] = "Of log in met OpenID:";
$a->strings["Forgot your password?"] = "Wachtwoord vergeten?";
$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website";
$a->strings["terms of service"] = "servicevoorwaarden";
$a->strings["Website Privacy Policy"] = "Privacybeleid website";
$a->strings["privacy policy"] = "privacybeleid";
$a->strings["This entry was edited"] = "";
$a->strings["I will attend"] = "";
$a->strings["I will not attend"] = "";
$a->strings["I might attend"] = "";
$a->strings["ignore thread"] = "";
$a->strings["unignore thread"] = "";
$a->strings["toggle ignore status"] = "";
$a->strings["Categories:"] = "Categorieën:";
$a->strings["Filed under:"] = "Bewaard onder:";
$a->strings["via"] = "via";
$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
$a->strings["The error message is\n[pre]%s[/pre]"] = "";
$a->strings["Errors encountered creating database tables."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld.";
$a->strings["Errors encountered performing database changes."] = "";
$a->strings["Logged out."] = "Uitgelogd.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
$a->strings["The error message was:"] = "De foutboodschap was:";
$a->strings["Add New Contact"] = "Nieuw Contact toevoegen";
$a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara";
@ -1344,56 +1434,20 @@ $a->strings["%d invitation available"] = array(
);
$a->strings["Find People"] = "Zoek mensen";
$a->strings["Enter name or interest"] = "Vul naam of interesse in";
$a->strings["Connect/Follow"] = "Verbind/Volg";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen";
$a->strings["Similar Interests"] = "Dezelfde interesses";
$a->strings["Random Profile"] = "Willekeurig Profiel";
$a->strings["Invite Friends"] = "Vrienden uitnodigen";
$a->strings["Networks"] = "Netwerken";
$a->strings["All Networks"] = "Alle netwerken";
$a->strings["Saved Folders"] = "Bewaarde Mappen";
$a->strings["Everything"] = "Alles";
$a->strings["Categories"] = "Categorieën";
$a->strings["Click here to upgrade."] = "";
$a->strings["This action exceeds the limits set by your subscription plan."] = "";
$a->strings["This action is not available under your subscription plan."] = "";
$a->strings["Cannot locate DNS info for database server '%s'"] = "";
$a->strings["Logged out."] = "Uitgelogd.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
$a->strings["The error message was:"] = "De foutboodschap was:";
$a->strings["Error decoding account file"] = "";
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
$a->strings["Error! Cannot check nickname"] = "";
$a->strings["User '%s' already exists on this server!"] = "Gebruiker '%s' bestaat al op deze server!";
$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker";
$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel";
$a->strings["%d contact not imported"] = array(
0 => "%d contact werd niet geïmporteerd",
1 => "%d contacten werden niet geïmporteerd",
);
$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord";
$a->strings["[no subject]"] = "[geen onderwerp]";
$a->strings["Unknown | Not categorised"] = "Onbekend | Niet ";
$a->strings["Block immediately"] = "Onmiddellijk blokkeren";
$a->strings["Shady, spammer, self-marketer"] = "Onbetrouwbaar, spammer, zelfpromotor";
$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening";
$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk";
$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen";
$a->strings["Weekly"] = "wekelijks";
$a->strings["Monthly"] = "maandelijks";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "Linkedln";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "Myspace";
$a->strings["Google+"] = "Google+";
$a->strings["pump.io"] = "pump.io";
$a->strings["Twitter"] = "Twitter";
$a->strings["Diaspora Connector"] = "Diaspora-connector";
$a->strings["Statusnet"] = "Statusnet";
$a->strings["App.net"] = "";
$a->strings["General Features"] = "Algemene functies";
$a->strings["Multiple Profiles"] = "Meerdere profielen";
$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken";
$a->strings["Photo Location"] = "";
$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "";
$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten";
$a->strings["Richtext Editor"] = "Tekstverwerker met opmaak";
$a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties";
@ -1432,6 +1486,311 @@ $a->strings["Star Posts"] = "Geef berichten een ster";
$a->strings["Ability to mark special posts with a star indicator"] = "";
$a->strings["Mute Post Notifications"] = "";
$a->strings["Ability to mute notifications for a thread"] = "";
$a->strings["Connect URL missing."] = "";
$a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt.";
$a->strings["The profile address specified does not provide adequate information."] = "";
$a->strings["An author or name was not found."] = "";
$a->strings["No browser URL could be matched to this address."] = "";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact.";
$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
$a->strings["Unable to retrieve contact information."] = "";
$a->strings["following"] = "volgend";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. ";
$a->strings["Default privacy group for new contacts"] = "";
$a->strings["Everybody"] = "Iedereen";
$a->strings["edit"] = "verander";
$a->strings["Edit group"] = "Verander groep";
$a->strings["Create a new group"] = "Maak nieuwe groep";
$a->strings["Contacts not in any group"] = "";
$a->strings["Miscellaneous"] = "Diversen";
$a->strings["YYYY-MM-DD or MM-DD"] = "";
$a->strings["never"] = "nooit";
$a->strings["less than a second ago"] = "minder dan een seconde geleden";
$a->strings["year"] = "jaar";
$a->strings["years"] = "jaren";
$a->strings["months"] = "maanden";
$a->strings["weeks"] = "weken";
$a->strings["days"] = "dagen";
$a->strings["hour"] = "uur";
$a->strings["hours"] = "uren";
$a->strings["minute"] = "minuut";
$a->strings["minutes"] = "minuten";
$a->strings["second"] = "seconde";
$a->strings["seconds"] = "secondes";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden";
$a->strings["%s's birthday"] = "%s's verjaardag";
$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s";
$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar.";
$a->strings["Edit profile"] = "Bewerk profiel";
$a->strings["Message"] = "Bericht";
$a->strings["Profiles"] = "Profielen";
$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen";
$a->strings["Network:"] = "";
$a->strings["g A l F d"] = "G l j F";
$a->strings["F d"] = "d F";
$a->strings["[today]"] = "[vandaag]";
$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen";
$a->strings["Birthdays this week:"] = "Verjaardagen deze week:";
$a->strings["[No description]"] = "[Geen omschrijving]";
$a->strings["Event Reminders"] = "Gebeurtenisherinneringen";
$a->strings["Events this week:"] = "Gebeurtenissen deze week:";
$a->strings["j F, Y"] = "F j Y";
$a->strings["j F"] = "F j";
$a->strings["Birthday:"] = "Verjaardag:";
$a->strings["Age:"] = "Leeftijd:";
$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s";
$a->strings["Religion:"] = "Religie:";
$a->strings["Hobbies/Interests:"] = "Hobby:";
$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:";
$a->strings["Musical interests:"] = "Muzikale interesse ";
$a->strings["Books, literature:"] = "Boeken, literatuur:";
$a->strings["Television:"] = "Televisie";
$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:";
$a->strings["Love/Romance:"] = "Liefde/romance:";
$a->strings["Work/employment:"] = "Werk/beroep:";
$a->strings["School/education:"] = "School/opleiding:";
$a->strings["Status"] = "Tijdlijn";
$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn";
$a->strings["Profile Details"] = "Profieldetails";
$a->strings["Videos"] = "Video's";
$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender";
$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien";
$a->strings["Post to Email"] = "Verzenden per e-mail";
$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen";
$a->strings["show"] = "tonen";
$a->strings["don't show"] = "niet tonen";
$a->strings["[no subject]"] = "[geen onderwerp]";
$a->strings["stopped following"] = "";
$a->strings["View Status"] = "Bekijk status";
$a->strings["View Photos"] = "Bekijk foto's";
$a->strings["Network Posts"] = "Netwerkberichten";
$a->strings["Edit Contact"] = "Bewerk contact";
$a->strings["Drop Contact"] = "Verwijder contact";
$a->strings["Send PM"] = "Stuur een privébericht";
$a->strings["Poke"] = "Aanstoten";
$a->strings["Welcome "] = "Welkom";
$a->strings["Please upload a profile photo."] = "Upload een profielfoto.";
$a->strings["Welcome back "] = "Welkom terug ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
$a->strings["%1\$s attends %2\$s's %3\$s"] = "";
$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "";
$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "";
$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan";
$a->strings["post/item"] = "bericht/item";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet";
$a->strings["remove"] = "verwijder";
$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen";
$a->strings["Follow Thread"] = "Conversatie volgen";
$a->strings["%s likes this."] = "%s vindt dit leuk.";
$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk.";
$a->strings["%s attends."] = "";
$a->strings["%s doesn't attend."] = "";
$a->strings["%s attends maybe."] = "";
$a->strings["and"] = "en";
$a->strings[", and %d other people"] = ", en %d andere mensen";
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d mensen</span> vinden dit leuk";
$a->strings["%s like this."] = "";
$a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d people</span> vinden dit niet leuk";
$a->strings["%s don't like this."] = "";
$a->strings["<span %1\$s>%2\$d people</span> attend"] = "";
$a->strings["%s attend."] = "";
$a->strings["<span %1\$s>%2\$d people</span> don't attend"] = "";
$a->strings["%s don't attend."] = "";
$a->strings["<span %1\$s>%2\$d people</span> anttend maybe"] = "";
$a->strings["%s anttend maybe."] = "";
$a->strings["Visible to <strong>everybody</strong>"] = "Zichtbaar voor <strong>iedereen</strong>";
$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:";
$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:";
$a->strings["Tag term:"] = "Label:";
$a->strings["Where are you right now?"] = "Waar ben je nu?";
$a->strings["Delete item(s)?"] = "Item(s) verwijderen?";
$a->strings["permissions"] = "rechten";
$a->strings["Post to Groups"] = "Verzenden naar Groepen";
$a->strings["Post to Contacts"] = "Verzenden naar Contacten";
$a->strings["Private post"] = "Privé verzending";
$a->strings["View all"] = "";
$a->strings["Like"] = array(
0 => "",
1 => "",
);
$a->strings["Dislike"] = array(
0 => "",
1 => "",
);
$a->strings["Not Attending"] = array(
0 => "",
1 => "",
);
$a->strings["Undecided"] = array(
0 => "",
1 => "",
);
$a->strings["view full size"] = "Volledig formaat";
$a->strings["newer"] = "nieuwere berichten";
$a->strings["older"] = "oudere berichten";
$a->strings["prev"] = "vorige";
$a->strings["first"] = "eerste";
$a->strings["last"] = "laatste";
$a->strings["next"] = "volgende";
$a->strings["Loading more entries..."] = "";
$a->strings["The end"] = "";
$a->strings["No contacts"] = "Geen contacten";
$a->strings["%d Contact"] = array(
0 => "%d contact",
1 => "%d contacten",
);
$a->strings["Full Text"] = "";
$a->strings["Tags"] = "";
$a->strings["Forums"] = "";
$a->strings["poke"] = "aanstoten";
$a->strings["poked"] = "aangestoten";
$a->strings["ping"] = "ping";
$a->strings["pinged"] = "gepingd";
$a->strings["prod"] = "porren";
$a->strings["prodded"] = "gepord";
$a->strings["slap"] = "slaan";
$a->strings["slapped"] = "geslagen";
$a->strings["finger"] = "finger";
$a->strings["fingered"] = "gerfingerd";
$a->strings["rebuff"] = "afpoeieren";
$a->strings["rebuffed"] = "afgepoeierd";
$a->strings["happy"] = "Blij";
$a->strings["sad"] = "Verdrietig";
$a->strings["mellow"] = "mellow";
$a->strings["tired"] = "vermoeid";
$a->strings["perky"] = "parmantig";
$a->strings["angry"] = "boos";
$a->strings["stupified"] = "verbijsterd";
$a->strings["puzzled"] = "onzeker";
$a->strings["interested"] = "Geïnteresseerd";
$a->strings["bitter"] = "bitter";
$a->strings["cheerful"] = "vrolijk";
$a->strings["alive"] = "levend";
$a->strings["annoyed"] = "verveeld";
$a->strings["anxious"] = "bezorgd";
$a->strings["cranky"] = "humeurig ";
$a->strings["disturbed"] = "verontrust";
$a->strings["frustrated"] = "gefrustreerd";
$a->strings["motivated"] = "gemotiveerd";
$a->strings["relaxed"] = "ontspannen";
$a->strings["surprised"] = "verbaasd";
$a->strings["bytes"] = "bytes";
$a->strings["Click to open/close"] = "klik om te openen/sluiten";
$a->strings["View on separate page"] = "";
$a->strings["view on separate page"] = "";
$a->strings["activity"] = "activiteit";
$a->strings["post"] = "bericht";
$a->strings["Item filed"] = "Item bewaard";
$a->strings["Image/photo"] = "Afbeelding/foto";
$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "";
$a->strings["$1 wrote:"] = "$1 schreef:";
$a->strings["Encrypted content"] = "Versleutelde inhoud";
$a->strings["(no subject)"] = "(geen onderwerp)";
$a->strings["noreply"] = "geen reactie";
$a->strings["Cannot locate DNS info for database server '%s'"] = "";
$a->strings["Unknown | Not categorised"] = "Onbekend | Niet ";
$a->strings["Block immediately"] = "Onmiddellijk blokkeren";
$a->strings["Shady, spammer, self-marketer"] = "Onbetrouwbaar, spammer, zelfpromotor";
$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening";
$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk";
$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen";
$a->strings["Weekly"] = "wekelijks";
$a->strings["Monthly"] = "maandelijks";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "Linkedln";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "Myspace";
$a->strings["Google+"] = "Google+";
$a->strings["pump.io"] = "pump.io";
$a->strings["Twitter"] = "Twitter";
$a->strings["Diaspora Connector"] = "Diaspora-connector";
$a->strings["GNU Social"] = "";
$a->strings["App.net"] = "";
$a->strings["Redmatrix"] = "";
$a->strings[" on Last.fm"] = " op Last.fm";
$a->strings["Starts:"] = "Begint:";
$a->strings["Finishes:"] = "Eindigt:";
$a->strings["Click here to upgrade."] = "";
$a->strings["This action exceeds the limits set by your subscription plan."] = "";
$a->strings["This action is not available under your subscription plan."] = "";
$a->strings["End this session"] = "Deze sessie beëindigen";
$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties";
$a->strings["Your profile page"] = "Jouw profiel pagina";
$a->strings["Your photos"] = "Jouw foto's";
$a->strings["Your videos"] = "";
$a->strings["Your events"] = "Jouw gebeurtenissen";
$a->strings["Personal notes"] = "Persoonlijke nota's";
$a->strings["Your personal notes"] = "";
$a->strings["Sign in"] = "Inloggen";
$a->strings["Home Page"] = "Jouw tijdlijn";
$a->strings["Create an account"] = "Maak een accoount";
$a->strings["Help and documentation"] = "Hulp en documentatie";
$a->strings["Apps"] = "Apps";
$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes";
$a->strings["Search site content"] = "Doorzoek de inhoud van de website";
$a->strings["Conversations on this site"] = "Conversaties op deze website";
$a->strings["Conversations on the network"] = "";
$a->strings["Directory"] = "Gids";
$a->strings["People directory"] = "Personengids";
$a->strings["Information"] = "Informatie";
$a->strings["Information about this friendica instance"] = "";
$a->strings["Conversations from your friends"] = "Conversaties van je vrienden";
$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen";
$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters";
$a->strings["Friend Requests"] = "Vriendschapsverzoeken";
$a->strings["See all notifications"] = "Toon alle notificaties";
$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren";
$a->strings["Private mail"] = "Privéberichten";
$a->strings["Inbox"] = "Inbox";
$a->strings["Outbox"] = "Verzonden berichten";
$a->strings["Manage"] = "Beheren";
$a->strings["Manage other pages"] = "Andere pagina's beheren";
$a->strings["Account settings"] = "Account instellingen";
$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen";
$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten";
$a->strings["Site setup and configuration"] = "Website opzetten en configureren";
$a->strings["Navigation"] = "Navigatie";
$a->strings["Site map"] = "Sitemap";
$a->strings["User not found."] = "Gebruiker niet gevonden";
$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "";
$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "";
$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "";
$a->strings["There is no status with this id."] = "Er is geen status met dit kenmerk";
$a->strings["There is no conversation with this id."] = "";
$a->strings["Invalid item."] = "";
$a->strings["Invalid action. "] = "";
$a->strings["DB error"] = "";
$a->strings["An invitation is required."] = "Een uitnodiging is vereist.";
$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden.";
$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url";
$a->strings["Please enter the required information."] = "Vul de vereiste informatie in.";
$a->strings["Please use a shorter name."] = "gebruik een kortere naam";
$a->strings["Name too short."] = "Naam te kort";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn.";
$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan.";
$a->strings["Not a valid email address."] = "Geen geldig e-mailadres.";
$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "";
$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere.";
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere.";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt.";
$a->strings["An error occurred during registration. Please try again."] = "";
$a->strings["default"] = "standaard";
$a->strings["An error occurred creating your default profile. Please try again."] = "";
$a->strings["Friends"] = "Vrienden";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "";
$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "";
$a->strings["Sharing notification from Diaspora network"] = "";
$a->strings["Attachments:"] = "Bijlagen:";
$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?";
$a->strings["Archives"] = "Archieven";
$a->strings["Male"] = "Man";
$a->strings["Female"] = "Vrouw";
$a->strings["Currently Male"] = "Momenteel mannelijk";
@ -1445,7 +1804,6 @@ $a->strings["Hermaphrodite"] = "Hermafrodiet";
$a->strings["Neuter"] = "Genderneutraal";
$a->strings["Non-specific"] = "Niet-specifiek";
$a->strings["Other"] = "Anders";
$a->strings["Undecided"] = "Onbeslist";
$a->strings["Males"] = "Mannen";
$a->strings["Females"] = "Vrouwen";
$a->strings["Gay"] = "Homo";
@ -1468,7 +1826,6 @@ $a->strings["Infatuated"] = "Smoorverliefd";
$a->strings["Dating"] = "Aan het daten";
$a->strings["Unfaithful"] = "Ontrouw";
$a->strings["Sex Addict"] = "Seksverslaafd";
$a->strings["Friends"] = "Vrienden";
$a->strings["Friends/Benefits"] = "Vriendschap plus";
$a->strings["Casual"] = "Ongebonden/vluchtig";
$a->strings["Engaged"] = "Verloofd";
@ -1490,92 +1847,10 @@ $a->strings["Uncertain"] = "Onzeker";
$a->strings["It's complicated"] = "Het is gecompliceerd";
$a->strings["Don't care"] = "Kan me niet schelen";
$a->strings["Ask me"] = "Vraag me";
$a->strings["stopped following"] = "";
$a->strings["Poke"] = "Aanstoten";
$a->strings["View Status"] = "Bekijk status";
$a->strings["View Profile"] = "Bekijk profiel";
$a->strings["View Photos"] = "Bekijk foto's";
$a->strings["Network Posts"] = "Netwerkberichten";
$a->strings["Edit Contact"] = "Bewerk contact";
$a->strings["Drop Contact"] = "Verwijder contact";
$a->strings["Send PM"] = "Stuur een privébericht";
$a->strings[" on Last.fm"] = " op Last.fm";
$a->strings["Post to Email"] = "Verzenden per e-mail";
$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen";
$a->strings["User not found."] = "Gebruiker niet gevonden";
$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "";
$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "";
$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "";
$a->strings["There is no status with this id."] = "Er is geen status met dit kenmerk";
$a->strings["There is no conversation with this id."] = "";
$a->strings["Invalid request."] = "";
$a->strings["Invalid item."] = "";
$a->strings["Invalid action. "] = "";
$a->strings["DB error"] = "";
$a->strings["Starts:"] = "Begint:";
$a->strings["Finishes:"] = "Eindigt:";
$a->strings["Image/photo"] = "Afbeelding/foto";
$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "";
$a->strings["$1 wrote:"] = "$1 schreef:";
$a->strings["Encrypted content"] = "Versleutelde inhoud";
$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan";
$a->strings["post/item"] = "bericht/item";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet";
$a->strings["remove"] = "verwijder";
$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen";
$a->strings["Follow Thread"] = "Conversatie volgen";
$a->strings["%s likes this."] = "%s vindt dit leuk.";
$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk.";
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d mensen</span> vinden dit leuk";
$a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d people</span> vinden dit niet leuk";
$a->strings["and"] = "en";
$a->strings[", and %d other people"] = ", en %d andere mensen";
$a->strings["%s like this."] = "%s vindt dit leuk.";
$a->strings["%s don't like this."] = "%s vindt dit niet leuk.";
$a->strings["Visible to <strong>everybody</strong>"] = "Zichtbaar voor <strong>iedereen</strong>";
$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:";
$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:";
$a->strings["Tag term:"] = "Label:";
$a->strings["Where are you right now?"] = "Waar ben je nu?";
$a->strings["Delete item(s)?"] = "Item(s) verwijderen?";
$a->strings["permissions"] = "rechten";
$a->strings["Post to Groups"] = "Verzenden naar Groepen";
$a->strings["Post to Contacts"] = "Verzenden naar Contacten";
$a->strings["Private post"] = "Privé verzending";
$a->strings["Miscellaneous"] = "Diversen";
$a->strings["YYYY-MM-DD or MM-DD"] = "";
$a->strings["never"] = "nooit";
$a->strings["less than a second ago"] = "minder dan een seconde geleden";
$a->strings["year"] = "jaar";
$a->strings["years"] = "jaren";
$a->strings["month"] = "maand";
$a->strings["months"] = "maanden";
$a->strings["week"] = "week";
$a->strings["weeks"] = "weken";
$a->strings["day"] = "dag";
$a->strings["days"] = "dagen";
$a->strings["hour"] = "uur";
$a->strings["hours"] = "uren";
$a->strings["minute"] = "minuut";
$a->strings["minutes"] = "minuten";
$a->strings["second"] = "seconde";
$a->strings["seconds"] = "secondes";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden";
$a->strings["%s's birthday"] = "%s's verjaardag";
$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s";
$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
$a->strings["The error message is\n[pre]%s[/pre]"] = "";
$a->strings["Errors encountered creating database tables."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld.";
$a->strings["Errors encountered performing database changes."] = "";
$a->strings["(no subject)"] = "(geen onderwerp)";
$a->strings["noreply"] = "geen reactie";
$a->strings["Sharing notification from Diaspora network"] = "";
$a->strings["Attachments:"] = "Bijlagen:";
$a->strings["Friendica Notification"] = "Friendica Notificatie";
$a->strings["Thank You,"] = "Bedankt";
$a->strings["%s Administrator"] = "%s Beheerder";
$a->strings["%1\$s, %2\$s Administrator"] = "";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificatie] Nieuw bericht ontvangen op %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s.";
@ -1630,203 +1905,58 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""
$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "";
$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "";
$a->strings["Please visit %s to approve or reject the request."] = "";
$a->strings["Connect URL missing."] = "";
$a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt.";
$a->strings["The profile address specified does not provide adequate information."] = "";
$a->strings["An author or name was not found."] = "";
$a->strings["No browser URL could be matched to this address."] = "";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact.";
$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
$a->strings["Unable to retrieve contact information."] = "";
$a->strings["following"] = "volgend";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. ";
$a->strings["Default privacy group for new contacts"] = "";
$a->strings["Everybody"] = "Iedereen";
$a->strings["edit"] = "verander";
$a->strings["Edit group"] = "Verander groep";
$a->strings["Create a new group"] = "Maak nieuwe groep";
$a->strings["Contacts not in any group"] = "";
$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar.";
$a->strings["Edit profile"] = "Bewerk profiel";
$a->strings["Message"] = "Bericht";
$a->strings["Profiles"] = "Profielen";
$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen";
$a->strings["Network:"] = "";
$a->strings["g A l F d"] = "G l j F";
$a->strings["F d"] = "d F";
$a->strings["[today]"] = "[vandaag]";
$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen";
$a->strings["Birthdays this week:"] = "Verjaardagen deze week:";
$a->strings["[No description]"] = "[Geen omschrijving]";
$a->strings["Event Reminders"] = "Gebeurtenisherinneringen";
$a->strings["Events this week:"] = "Gebeurtenissen deze week:";
$a->strings["j F, Y"] = "F j Y";
$a->strings["j F"] = "F j";
$a->strings["Birthday:"] = "Verjaardag:";
$a->strings["Age:"] = "Leeftijd:";
$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s";
$a->strings["Tags:"] = "Labels:";
$a->strings["Religion:"] = "Religie:";
$a->strings["Hobbies/Interests:"] = "Hobby:";
$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:";
$a->strings["Musical interests:"] = "Muzikale interesse ";
$a->strings["Books, literature:"] = "Boeken, literatuur:";
$a->strings["Television:"] = "Televisie";
$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:";
$a->strings["Love/Romance:"] = "Liefde/romance:";
$a->strings["Work/employment:"] = "Werk/beroep:";
$a->strings["School/education:"] = "School/opleiding:";
$a->strings["Status"] = "Tijdlijn";
$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn";
$a->strings["Profile Details"] = "Profieldetails";
$a->strings["Videos"] = "Video's";
$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender";
$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien";
$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?";
$a->strings["Archives"] = "Archieven";
$a->strings["Logout"] = "Uitloggen";
$a->strings["End this session"] = "Deze sessie beëindigen";
$a->strings["Your videos"] = "";
$a->strings["Your personal notes"] = "";
$a->strings["Sign in"] = "Inloggen";
$a->strings["Home Page"] = "Jouw tijdlijn";
$a->strings["Create an account"] = "Maak een accoount";
$a->strings["Help and documentation"] = "Hulp en documentatie";
$a->strings["Apps"] = "Apps";
$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes";
$a->strings["Search site content"] = "Doorzoek de inhoud van de website";
$a->strings["Conversations on this site"] = "Conversaties op deze website";
$a->strings["Conversations on the network"] = "";
$a->strings["Directory"] = "Gids";
$a->strings["People directory"] = "Personengids";
$a->strings["Information"] = "Informatie";
$a->strings["Information about this friendica instance"] = "";
$a->strings["Conversations from your friends"] = "Conversaties van je vrienden";
$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen";
$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters";
$a->strings["Friend Requests"] = "Vriendschapsverzoeken";
$a->strings["See all notifications"] = "Toon alle notificaties";
$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren";
$a->strings["Private mail"] = "Privéberichten";
$a->strings["Inbox"] = "Inbox";
$a->strings["Outbox"] = "Verzonden berichten";
$a->strings["Manage"] = "Beheren";
$a->strings["Manage other pages"] = "Andere pagina's beheren";
$a->strings["Account settings"] = "Account instellingen";
$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen";
$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten";
$a->strings["Site setup and configuration"] = "Website opzetten en configureren";
$a->strings["Navigation"] = "Navigatie";
$a->strings["Site map"] = "Sitemap";
$a->strings["view full size"] = "Volledig formaat";
$a->strings["Embedded content"] = "Ingebedde inhoud";
$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld";
$a->strings["Welcome "] = "Welkom";
$a->strings["Please upload a profile photo."] = "Upload een profielfoto.";
$a->strings["Welcome back "] = "Welkom terug ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
$a->strings["newer"] = "nieuwere berichten";
$a->strings["older"] = "oudere berichten";
$a->strings["prev"] = "vorige";
$a->strings["first"] = "eerste";
$a->strings["last"] = "laatste";
$a->strings["next"] = "volgende";
$a->strings["Loading more entries..."] = "";
$a->strings["The end"] = "";
$a->strings["No contacts"] = "Geen contacten";
$a->strings["%d Contact"] = array(
0 => "%d contact",
1 => "%d contacten",
$a->strings["Error decoding account file"] = "";
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
$a->strings["Error! Cannot check nickname"] = "";
$a->strings["User '%s' already exists on this server!"] = "Gebruiker '%s' bestaat al op deze server!";
$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker";
$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel";
$a->strings["%d contact not imported"] = array(
0 => "%d contact werd niet geïmporteerd",
1 => "%d contacten werden niet geïmporteerd",
);
$a->strings["poke"] = "aanstoten";
$a->strings["poked"] = "aangestoten";
$a->strings["ping"] = "ping";
$a->strings["pinged"] = "gepingd";
$a->strings["prod"] = "porren";
$a->strings["prodded"] = "gepord";
$a->strings["slap"] = "slaan";
$a->strings["slapped"] = "geslagen";
$a->strings["finger"] = "finger";
$a->strings["fingered"] = "gerfingerd";
$a->strings["rebuff"] = "afpoeieren";
$a->strings["rebuffed"] = "afgepoeierd";
$a->strings["happy"] = "Blij";
$a->strings["sad"] = "Verdrietig";
$a->strings["mellow"] = "mellow";
$a->strings["tired"] = "vermoeid";
$a->strings["perky"] = "parmantig";
$a->strings["angry"] = "boos";
$a->strings["stupified"] = "verbijsterd";
$a->strings["puzzled"] = "onzeker";
$a->strings["interested"] = "Geïnteresseerd";
$a->strings["bitter"] = "bitter";
$a->strings["cheerful"] = "vrolijk";
$a->strings["alive"] = "levend";
$a->strings["annoyed"] = "verveeld";
$a->strings["anxious"] = "bezorgd";
$a->strings["cranky"] = "humeurig ";
$a->strings["disturbed"] = "verontrust";
$a->strings["frustrated"] = "gefrustreerd";
$a->strings["motivated"] = "gemotiveerd";
$a->strings["relaxed"] = "ontspannen";
$a->strings["surprised"] = "verbaasd";
$a->strings["Monday"] = "Maandag";
$a->strings["Tuesday"] = "Dinsdag";
$a->strings["Wednesday"] = "Woensdag";
$a->strings["Thursday"] = "Donderdag";
$a->strings["Friday"] = "Vrijdag";
$a->strings["Saturday"] = "Zaterdag";
$a->strings["Sunday"] = "Zondag";
$a->strings["January"] = "Januari";
$a->strings["February"] = "Februari";
$a->strings["March"] = "Maart";
$a->strings["April"] = "April";
$a->strings["May"] = "Mei";
$a->strings["June"] = "Juni";
$a->strings["July"] = "Juli";
$a->strings["August"] = "Augustus";
$a->strings["September"] = "September";
$a->strings["October"] = "Oktober";
$a->strings["November"] = "November";
$a->strings["December"] = "December";
$a->strings["bytes"] = "bytes";
$a->strings["Click to open/close"] = "klik om te openen/sluiten";
$a->strings["Select an alternate language"] = "Kies een andere taal";
$a->strings["activity"] = "activiteit";
$a->strings["post"] = "bericht";
$a->strings["Item filed"] = "Item bewaard";
$a->strings["An invitation is required."] = "Een uitnodiging is vereist.";
$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden.";
$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url";
$a->strings["Please enter the required information."] = "Vul de vereiste informatie in.";
$a->strings["Please use a shorter name."] = "gebruik een kortere naam";
$a->strings["Name too short."] = "Naam te kort";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn.";
$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan.";
$a->strings["Not a valid email address."] = "Geen geldig e-mailadres.";
$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen.";
$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere.";
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere.";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt.";
$a->strings["An error occurred during registration. Please try again."] = "";
$a->strings["An error occurred creating your default profile. Please try again."] = "";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "";
$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "";
$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord";
$a->strings["toggle mobile"] = "mobiel thema omwisselen";
$a->strings["Delete this item?"] = "Dit item verwijderen?";
$a->strings["show fewer"] = "Minder tonen";
$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden.";
$a->strings["Create a New Account"] = "Nieuwe account aanmaken";
$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:";
$a->strings["Password: "] = "Wachtwoord:";
$a->strings["Remember me"] = "Onthou me";
$a->strings["Or login using OpenID: "] = "Of log in met OpenID:";
$a->strings["Forgot your password?"] = "Wachtwoord vergeten?";
$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website";
$a->strings["terms of service"] = "servicevoorwaarden";
$a->strings["Website Privacy Policy"] = "Privacybeleid website";
$a->strings["privacy policy"] = "privacybeleid";
$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in";
$a->strings["Set theme width"] = "Stel breedte van het thema in";
$a->strings["Color scheme"] = "Kleurschema";
$a->strings["Set line-height for posts and comments"] = "Stel lijnhoogte voor berichten en reacties in";
$a->strings["Set colour scheme"] = "Stel kleurschema in";
$a->strings["Alignment"] = "Uitlijning";
$a->strings["Left"] = "Links";
$a->strings["Center"] = "Gecentreerd";
$a->strings["Posts font size"] = "Lettergrootte berichten";
$a->strings["Textareas font size"] = "Lettergrootte tekstgebieden";
$a->strings["Set resolution for middle column"] = "Stel resolutie in voor de middelste kolom. ";
$a->strings["Set color scheme"] = "Stel kleurenschema in";
$a->strings["Set zoomfactor for Earth Layer"] = "";
$a->strings["Set longitude (X) for Earth Layers"] = "";
$a->strings["Set latitude (Y) for Earth Layers"] = "";
$a->strings["Community Pages"] = "Forum/groepspagina's";
$a->strings["Earth Layers"] = "Earth Layers";
$a->strings["Community Profiles"] = "Forum/groepsprofielen";
$a->strings["Help or @NewHere ?"] = "";
$a->strings["Connect Services"] = "Diensten verbinden";
$a->strings["Find Friends"] = "Zoek vrienden";
$a->strings["Last users"] = "Laatste gebruikers";
$a->strings["Last photos"] = "Laatste foto's";
$a->strings["Last likes"] = "Recent leuk gevonden";
$a->strings["Your contacts"] = "Jouw contacten";
$a->strings["Your personal photos"] = "Jouw persoonlijke foto's";
$a->strings["Local Directory"] = "Lokale gids";
$a->strings["Set zoomfactor for Earth Layers"] = "";
$a->strings["Show/hide boxes at right-hand column:"] = "";
$a->strings["Comma separated list of helper forums"] = "";
$a->strings["Set style"] = "";
$a->strings["External link to forum"] = "";
$a->strings["Quick Start"] = "";
$a->strings["greenzero"] = "";
$a->strings["purplezero"] = "";
$a->strings["easterbunny"] = "";
$a->strings["darkzero"] = "";
$a->strings["comix"] = "";
$a->strings["slackr"] = "";
$a->strings["Variations"] = "";

View file

@ -1,6 +1,6 @@
<h1>{{$title}}</h1>
<h1><img src="{{$baseurl}}/images/friendica-32.png"> {{$title}}</h1>
<h2>{{$pass}}</h2>

View file

@ -1,12 +1,22 @@
<h1>{{$title}}</h1>
<h1><img src="{{$baseurl}}/images/friendica-32.png"> {{$title}}</h1>
<h2>{{$pass}}</h2>
<form action="{{$baseurl}}/index.php?q=install" method="post">
<table>
{{foreach $checks as $check}}
<tr><td>{{$check.title}} </td><td><span class="icon s22 {{if $check.status}}on{{else}}{{if $check.required}}off{{else}}yellow{{/if}}{{/if}}"></td><td>{{if $check.required}}(required){{/if}}</td></tr>
<tr><td>{{$check.title}} </td><td>
{{if $check.status}}
<img src="{{$baseurl}}/view/install/green.png" alt="Ok">
{{else}}
{{if $check.required}}
<img src="{{$baseurl}}/view/install/red.png" alt="Requirement not satisfied">
{{else}}
<img src="{{$baseurl}}/view/install/yellow.png" alt="Optional requirement not satisfied">
{{/if}}
{{/if}}
</td><td>{{if $check.required}}(required){{/if}}</td></tr>
{{if $check.help}}
<tr><td colspan="3"><blockquote>{{$check.help}}</blockquote></td></tr>
<tr><td class="help" colspan="3"><blockquote>{{$check.help}}</blockquote></td></tr>
{{/if}}
{{/foreach}}
</table>

View file

@ -1,6 +1,6 @@
<h1>{{$title}}</h1>
<h1><img src="{{$baseurl}}/images/friendica-32.png"> {{$title}}</h1>
<h2>{{$pass}}</h2>

View file

@ -1,6 +1,6 @@
<h1>{{$title}}</h1>
<h1><img src="{{$baseurl}}/images/friendica-32.png"> {{$title}}</h1>
<h2>{{$pass}}</h2>

View file

@ -167,5 +167,11 @@
{{/if}}
{{if $profile.forumlist}}
<dl id="aprofile-forumlist" class="aprofile">
<dt>{{$profile.forumlist.0}}</dt>
<dd>{{$profile.forumlist.1}}</dd>
</dl>
{{/if}}

View file

@ -0,0 +1,45 @@
<script>
function showHideForumlist() {
if( $("div[id^='forum-widget-entry-extended-']").is(':visible')) {
$("div[id^='forum-widget-entry-extended-']").hide();
$('#forum-widget-collapse').html(window.showMore);
}
else {
$("div[id^='forum-widget-entry-extended-']").show();
$('#forum-widget-collapse').html(window.showFewer);
}
}
</script>
<div id="forumlist-sidebar" class="widget">
<h3 id="forumlist">{{$title}}</h3>
{{foreach $forums as $forum}}
{{if $forum.id <= $visible_forums}}
<div class="forum-widget-entry" id="forum-widget-entry-{{$forum.id}}" role="menuitem">
<a href="{{$forum.external_url}}" title="{{$forum.link_desc}}" class="label sparkle" target="_blank">
<img class="forumlist-img" src="{{$forum.micro}}" alt="{{$forum.link_desc}}" />
</a>
<a class="forum-widget-link" id="forum-widget-link-{{$forum.id}}" href="{{$forum.url}}" >{{$forum.name}}</a>
</div>
{{/if}}
{{if $forum.id > $visible_forums}}
<div class="forum-widget-entry" id="forum-widget-entry-extended-{{$forum.id}}" role="menuitem" style="display: none;">
<a href="{{$forum.external_url}}" title="{{$forum.link_desc}}" class="label sparkle" target="_blank">
<img class="forumlist-img" src="{{$forum.micro}}" alt="{{$forum.link_desc}}" />
</a>
<a class="forum-widget-link" id="forum-widget-link-{{$forum.id}}" href="{{$forum.url}}" >{{$forum.name}}</a>
</div>
{{/if}}
{{/foreach}}
{{if $total > $visible_forums }}
<div id="forum-widget-showmore" class="forum-widget-entry" role="menuitem">
<a onclick="showHideForumlist(); return false;" id="forum-widget-collapse" class="forum-widget-link">{{$showmore}}</a>
</div>
{{/if}}
</div>

View file

@ -401,7 +401,7 @@ code {
}
.sidebar-group-li:hover, #sidebar-new-group:hover, #hide-forum-list:hover,
#sidebar-ungrouped:hover, .side-link:hover, .nets-ul li:hover, #forum-list div:hover, #forum-list-right div:hover,
#sidebar-ungrouped:hover, .side-link:hover, .nets-ul li:hover, #forumlist-sidebar div:hover, #forum-list-right div:hover,
.nets-all:hover, .saved-search-li:hover, li.tool:hover, .admin.link:hover, aside h4 a:hover, right_aside h4 a:hover, #message-new:hover {
/* background-color: #ddd; */
/* background-color: #e5e5e5; */
@ -420,7 +420,7 @@ code {
font-weight: bold;
}
#sidebar-new-group, #hide-forum-list, #forum-list, #forum-list-right, #sidebar-ungrouped,
#forum-widget-showmore, #sidebar-new-group, #hide-forum-list, #forum-list-right, #sidebar-ungrouped,
.side-link, #peoplefind-desc, #connect-desc, .nets-all, .admin.link, #message-new {
padding-left: 10px;
padding-top: 3px;
@ -429,6 +429,17 @@ code {
display: block;
}
#forumlist-sidebar {
padding-top: 3px;
padding-bottom: 3px;
display: block;
}
.forum-widget-entry {
padding-left: 10px;
padding-right: 5px;
}
a.nets-link, .side-link a, #sidebar-new-group a, a.savedsearchterm, a.fileas-link, aside h4 a, right_aside h4 a {
display: block;
color: #737373;
@ -456,11 +467,11 @@ a.sidebar-group-element {
color: black;
}
#forum-list a, #forum-list-right a, .tool a, .admin.link a {
#forumlist-sidebar a, #forum-list-right a, .tool a, .admin.link a {
color: #737373;
}
#forum-list, #forum-list-right {
#forumlist-sidebar, #forum-list-right {
margin-top: 2px;
}

View file

@ -9,9 +9,9 @@
* Description: "Vier" is a very compact and modern theme. It uses the font awesome font library: http://fortawesome.github.com/Font-Awesome/
*/
require_once("mod/nodeinfo.php");
require_once("mod/proxy.php");
require_once("include/plugin.php");
require_once("include/socgraph.php");
require_once("mod/proxy.php");
function vier_init(&$a) {
@ -33,7 +33,8 @@ function vier_init(&$a) {
$a->page['htmlhead'] .= '<meta name=viewport content="width=device-width, initial-scale=1">'."\n";
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="view/theme/vier/mobile.css" media="screen"/>'."\n";
}
#$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="view/theme/vier/mobile.css" media="screen and (max-width: 1000px)"/>'."\n";
// deactivated since it doesn't work with desktop browsers at the moment (To-Do)
//$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="view/theme/vier/mobile.css" media="screen and (max-width: 1000px)"/>'."\n";
$a->page['htmlhead'] .= <<< EOT
<link rel='stylesheet' type='text/css' href='view/theme/vier/narrow.css' media='screen and (max-width: 1100px)' />
@ -305,49 +306,49 @@ function vier_community_info() {
$r = array();
if (nodeinfo_plugin_enabled("appnet"))
if (plugin_enabled("appnet"))
$r[] = array("photo" => "images/appnet.png", "name" => "App.net");
if (nodeinfo_plugin_enabled("buffer"))
if (plugin_enabled("buffer"))
$r[] = array("photo" => "images/buffer.png", "name" => "Buffer");
if (nodeinfo_plugin_enabled("blogger"))
if (plugin_enabled("blogger"))
$r[] = array("photo" => "images/blogger.png", "name" => "Blogger");
if (nodeinfo_plugin_enabled("dwpost"))
if (plugin_enabled("dwpost"))
$r[] = array("photo" => "images/dreamwidth.png", "name" => "Dreamwidth");
if (nodeinfo_plugin_enabled("fbpost"))
if (plugin_enabled("fbpost"))
$r[] = array("photo" => "images/facebook.png", "name" => "Facebook");
if (nodeinfo_plugin_enabled("ifttt"))
if (plugin_enabled("ifttt"))
$r[] = array("photo" => "addon/ifttt/ifttt.png", "name" => "IFTTT");
if (nodeinfo_plugin_enabled("statusnet"))
if (plugin_enabled("statusnet"))
$r[] = array("photo" => "images/gnusocial.png", "name" => "GNU Social");
if (nodeinfo_plugin_enabled("gpluspost"))
if (plugin_enabled("gpluspost"))
$r[] = array("photo" => "images/googleplus.png", "name" => "Google+");
//if (nodeinfo_plugin_enabled("ijpost"))
//if (plugin_enabled("ijpost"))
// $r[] = array("photo" => "images/", "name" => "");
if (nodeinfo_plugin_enabled("libertree"))
if (plugin_enabled("libertree"))
$r[] = array("photo" => "images/libertree.png", "name" => "Libertree");
//if (nodeinfo_plugin_enabled("ljpost"))
//if (plugin_enabled("ljpost"))
// $r[] = array("photo" => "images/", "name" => "");
if (nodeinfo_plugin_enabled("pumpio"))
if (plugin_enabled("pumpio"))
$r[] = array("photo" => "images/pumpio.png", "name" => "pump.io");
if (nodeinfo_plugin_enabled("tumblr"))
if (plugin_enabled("tumblr"))
$r[] = array("photo" => "images/tumblr.png", "name" => "Tumblr");
if (nodeinfo_plugin_enabled("twitter"))
if (plugin_enabled("twitter"))
$r[] = array("photo" => "images/twitter.png", "name" => "Twitter");
if (nodeinfo_plugin_enabled("wppost"))
if (plugin_enabled("wppost"))
$r[] = array("photo" => "images/wordpress", "name" => "Wordpress");
if(function_exists("imap_open") AND !get_config("system","imap_disabled") AND !get_config("system","dfrn_only"))