diff --git a/boot.php b/boot.php index 96dee2c46..74e77caa1 100755 --- a/boot.php +++ b/boot.php @@ -49,7 +49,7 @@ define ( 'RED_PLATFORM', 'redmatrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1135 ); +define ( 'DB_UPDATE_VERSION', 1136 ); /** * Constant with a HTML line break. @@ -2194,6 +2194,26 @@ function get_directory_realm() { return DIRECTORY_REALM; } +/** + * @brief Return the primary directory server. + * + * @return string + */ +function get_directory_primary() { + + $dirmode = intval(get_config('system','directory_mode')); + + if($dirmode == DIRECTORY_MODE_STANDALONE || $dirmode == DIRECTORY_MODE_PRIMARY) { + return z_root(); + } + + if($x = get_config('system', 'directory_primary')) + return $x; + + return DIRECTORY_FALLBACK_MASTER; +} + + /** * @brief return relative date of last completed poller execution diff --git a/include/attach.php b/include/attach.php index 155ddbc96..a300e34b0 100644 --- a/include/attach.php +++ b/include/attach.php @@ -970,6 +970,33 @@ function file_activity($channel_id, $object, $allow_cid, $allow_gid, $deny_cid, $poster = get_app()->get_observer(); + //if we got no object something went wrong + if(!$object) + return; + + $is_dir = (($object['flags'] & ATTACH_FLAG_DIR) ? true : false); + + //do not send activity for folders for now + if($is_dir) + return; + +/* + //check for recursive perms if we are in a folder + if($object['folder']) { + + $folder_hash = $object['folder']; + + $r_perms = check_recursive_perms($allow_cid, $allow_gid, $deny_cid, $deny_gid, $folder_hash); + + $allow_cid = perms2str($r_perms['allow_cid']); + $allow_gid = perms2str($r_perms['allow_gid']); + $deny_cid = perms2str($r_perms['deny_cid']); + $deny_gid = perms2str($r_perms['deny_gid']); + + } +*/ + + $mid = item_message_id(); $objtype = ACTIVITY_OBJ_FILE; @@ -1124,3 +1151,83 @@ function get_file_activity_object($channel_id, $hash, $cloudpath) { return $object; } + +function check_recursive_perms($allow_cid, $allow_gid, $deny_cid, $deny_gid, $folder_hash) { + + $arr_allow_cid = expand_acl($allow_cid); + $arr_allow_gid = expand_acl($allow_gid); + $arr_deny_cid = expand_acl($deny_cid); + $arr_deny_gid = expand_acl($deny_gid); + + $count = 0; + while($folder_hash) { + $x = q("SELECT allow_cid, allow_gid, deny_cid, deny_gid, folder FROM attach WHERE hash = '%s' LIMIT 1", + dbesc($folder_hash) + ); + + //only process private folders + if($x[0]['allow_cid'] || $x[0]['allow_gid'] || $x[0]['deny_cid'] || $x[0]['deny_gid']) { + + $parent_arr['allow_cid'][] = expand_acl($x[0]['allow_cid']); + $parent_arr['allow_gid'][] = expand_acl($x[0]['allow_gid']); + $parent_arr['deny_cid'][] = expand_acl($x[0]['deny_cid']); + $parent_arr['deny_gid'][] = expand_acl($x[0]['deny_gid']); + + $parents_arr = $parent_arr; + + $count++; + + } + + $folder_hash = $x[0]['folder']; + + } + + //if there are no perms on the file we get them from the first parent folder + if(!$arr_allow_cid && !$arr_allow_gid && !$arr_deny_cid && !$arr_deny_gid) { + $arr_allow_cid = $parent_arr['allow_cid'][0]; + $arr_allow_gid = $parent_arr['allow_gid'][0]; + $arr_deny_cid = $parent_arr['deny_cid'][0]; + $arr_deny_gid = $parent_arr['deny_gid'][0]; + } + + //allow_cid + foreach ($parents_arr['allow_cid'] as $folder_arr_allow_cid) { + foreach ($folder_arr_allow_cid as $ac_hash) { + $count_values[$ac_hash]++; + } + } + foreach ($arr_allow_cid as $fac_hash) { + if(($count_values[$fac_hash]) && ($count_values[$fac_hash] == $count)) + $r_arr_allow_cid[] = $fac_hash; + } + + + //allow_gid + foreach ($parents_arr['allow_gid'] as $folder_arr_allow_gid) { + foreach ($folder_arr_allow_gid as $ag_hash) { + $count_values[$ag_hash]++; + } + } + foreach ($arr_allow_gid as $fag_hash) { + if(($count_values[$fag_hash]) && ($count_values[$fag_hash] == $count)) + $r_arr_allow_gid[] = $fag_hash; + } + + //deny_gid + foreach($parents_arr['deny_gid'] as $folder_arr_deny_gid) { + $arr_deny_gid = array_merge($arr_deny_gid, $folder_arr_deny_gid); + } + + //deny_cid + foreach($parents_arr['deny_cid'] as $folder_arr_deny_cid) { + $arr_deny_cid = array_merge($arr_deny_cid, $folder_arr_deny_cid); + } + + $ret['allow_gid'] = $r_arr_allow_gid; + $ret['allow_cid'] = $r_arr_allow_cid; + $ret['deny_gid'] = array_unique($r_arr_deny_gid); + $ret['deny_cid'] = array_unique($r_arr_deny_cid); + + return $ret; +} diff --git a/include/conversation.php b/include/conversation.php index 9429af754..952d7d322 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -619,10 +619,6 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ $profile_link = zid($profile_link); $normalised = normalise_link((strlen($item['author-link'])) ? $item['author-link'] : $item['url']); - if(x($a->contacts,$normalised)) - $profile_avatar = $a->contacts[$normalised]['thumb']; - else - $profile_avatar = ((strlen($item['author-avatar'])) ? $a->get_cached_avatar_image($item['author-avatar']) : $item['thumb']); $profile_name = $item['author']['xchan_name']; $profile_link = $item['author']['xchan_url']; diff --git a/include/diaspora.php b/include/diaspora.php index 8f2f93209..8047d0e64 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -35,11 +35,16 @@ function diaspora_dispatch_public($msg) { logger('diaspora_public: delivering to: ' . $rr['channel_name'] . ' (' . $rr['channel_address'] . ') '); diaspora_dispatch($rr,$msg); } - if($sys) - diaspora_dispatch($sys,$msg); } - else - logger('diaspora_public: no subscribers'); + else { + if(! $sys) + logger('diaspora_public: no subscribers'); + } + + if($sys) { + logger('diaspora_public: delivering to sys.'); + diaspora_dispatch($sys,$msg); + } } @@ -688,7 +693,7 @@ function diaspora_request($importer,$xml) { $default_perms = $x['perms_accept']; } if(! $default_perms) - $default_perms = intval(get_pconfig($channel['channel_id'],'system','autoperms')); + $default_perms = intval(get_pconfig($importer['channel_id'],'system','autoperms')); $their_perms = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_PHOTOS|PERMS_R_ABOOK|PERMS_W_STREAM|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT|PERMS_R_STORAGE|PERMS_R_PAGES; diff --git a/include/dir_fns.php b/include/dir_fns.php index 6d06fddd1..8c0161ff1 100644 --- a/include/dir_fns.php +++ b/include/dir_fns.php @@ -216,6 +216,49 @@ function sync_directories($dirmode) { ); } } + if(count($j['ratings'])) { + foreach($j['ratings'] as $rr) { + $x = q("select * from xlink where xlink_xchan = '%s' and xlink_link = '%s' and xlink_static = 1", + dbesc($rr['channel']), + dbesc($rr['target']) + ); + if($x && $x[0]['xlink_updated'] >= $rr['edited']) + continue; + $y = q("select xchan_pubkey from xchan where xchan_hash = '%s' limit 1", + dbesc($rr['channel']) + ); + if(! $y) { + logger('key unavailable on this site for ' . $rr['channel']); + continue; + } + if(! rsa_verify($rr['target'] . '.' . $rr['rating'] . '.' . $rr['rating_text'], base64url_decode($rr['signature']),$y[0]['xchan_pubkey'])) { + logger('failed to verify rating'); + continue; + } + + if($x) { + $z = q("update xlink set xlink_rating = %d, xlink_rating_text = '%s', xlink_sig = '%s', xlink_updated = '%s' where xlink_id = %d", + intval($rr['rating']), + dbesc($rr['rating_text']), + dbesc($rr['signature']), + dbesc(datetime_convert()), + intval($x[0]['xlink_id']) + ); + logger('rating updated'); + } + else { + $z = q("insert into xlink ( xlink_xchan, xlink_link, xlink_rating, xlink_rating_text, xlink_sig, xlink_updated, xlink_static ) values( '%s', '%s', %d, '%s', '%s', 1 ) ", + dbesc($rr['channel']), + dbesc($rr['target']), + intval($rr['rating']), + dbesc($rr['rating_text']), + dbesc($rr['signature']), + dbesc(datetime_convert()) + ); + logger('rating created'); + } + } + } } } diff --git a/include/identity.php b/include/identity.php index 2fc183368..415e85f2f 100644 --- a/include/identity.php +++ b/include/identity.php @@ -943,6 +943,9 @@ logger('online: ' . $profile['online']); $tpl = get_markup_template('profile_vcard.tpl'); + require_once('include/widgets.php'); + $z = widget_rating(array('target' => $profile['channel_hash'])); + $o .= replace_macros($tpl, array( '$profile' => $profile, '$connect' => $connect, @@ -954,6 +957,7 @@ logger('online: ' . $profile['online']); '$homepage' => $homepage, '$chanmenu' => $channel_menu, '$diaspora' => $diaspora, + '$rating' => $z, '$contact_block' => $contact_block, )); diff --git a/include/items.php b/include/items.php index c34e694ac..0b2106572 100755 --- a/include/items.php +++ b/include/items.php @@ -4751,6 +4751,7 @@ function item_remove_cid($xchan_hash,$mid,$uid) { // Set item permissions based on results obtained from linkify_tags() function set_linkified_perms($linkified, &$str_contact_allow, &$str_group_allow, $profile_uid, $parent_item = false) { $first_access_tag = true; + foreach($linkified as $x) { $access_tag = $x['access_tag']; if(($access_tag) && (! $parent_item)) { diff --git a/include/js_strings.php b/include/js_strings.php index f4c0a631d..56ffa9536 100644 --- a/include/js_strings.php +++ b/include/js_strings.php @@ -16,6 +16,10 @@ function js_strings() { '$permschange' => t('Notice: Permissions have changed but have not yet been submitted.'), '$closeAll' => t('close all'), '$nothingnew' => t('Nothing new here'), + '$rating_desc' => t('Rate This Channel (this is public)'), + '$rating_val' => t('Rating'), + '$rating_text' => t('Describe (optional)'), + '$submit' => t('Submit'), '$t01' => ((t('timeago.prefixAgo') != 'timeago.prefixAgo') ? t('timeago.prefixAgo') : ''), '$t02' => ((t('timeago.prefixFromNow') != 'timeago.prefixFromNow') ? t('timeago.prefixFromNow') : ''), diff --git a/include/notifier.php b/include/notifier.php index edb2f1946..fe6ac33c0 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -297,15 +297,6 @@ function notifier_run($argv, $argc){ $private = false; $packet_type = 'purge'; } - elseif($cmd === 'rating') { - $r = q("select * from xlink where xlink_id = %d and xlink_static = 1 limit 1", - intval($item_id) - ); - if($r) { - logger('rating message: ' . print_r($r[0],true)); - return; - } - } else { // Normal items @@ -483,11 +474,6 @@ function notifier_run($argv, $argc){ // Now we have collected recipients (except for external mentions, FIXME) // Let's reduce this to a set of hubs. - - // for public posts always include our own hub -// this shouldn't be needed any more. collect_recipients should take care of it. -// $sql_extra = (($private) ? "" : " or hubloc_url = '" . dbesc(z_root()) . "' "); - logger('notifier: hub choice: ' . intval($relay_to_owner) . ' ' . intval($private) . ' ' . $cmd, LOGGER_DEBUG); if($relay_to_owner && (! $private) && ($cmd !== 'relay')) { diff --git a/include/poller.php b/include/poller.php index dc310fe16..fd78ce087 100644 --- a/include/poller.php +++ b/include/poller.php @@ -164,6 +164,10 @@ function poller_run($argv, $argc){ db_utcnow(), db_quoteinterval('14 DAY') ); + $dirmode = intval(get_config('system','directory_mode')); + if($dirmode == DIRECTORY_MODE_SECONDARY) { + logger('regdir: ' . print_r(z_fetch_url(get_directory_primary() . '/regdir?f=&url=' . z_root() . '&realm=' . get_directory_realm()),true)); + } /** * End Cron Weekly diff --git a/include/ratenotif.php b/include/ratenotif.php new file mode 100644 index 000000000..4fa0077a6 --- /dev/null +++ b/include/ratenotif.php @@ -0,0 +1,124 @@ + 'rating', + 'encoding' => 'zot', + 'target' => $r[0]['xlink_link'], + 'rating' => intval($r[0]['xlink_rating']), + 'rating_text' => $r[0]['xlink_rating_text'], + 'signature' => $r[0]['xlink_sig'], + 'edited' => $r[0]['xlink_updated'] + ); + } + + $channel = channelx_by_hash($r[0]['xlink_xchan']); + if(! $channel) { + logger('no channel'); + return; + } + + + $primary = get_directory_primary(); + + if(! $primary) + return; + + + $interval = ((get_config('system','delivery_interval') !== false) + ? intval(get_config('system','delivery_interval')) : 2 ); + + $deliveries_per_process = intval(get_config('system','delivery_batch_count')); + + if($deliveries_per_process <= 0) + $deliveries_per_process = 1; + + $deliver = array(); + + $x = z_fetch_url($primary . '/regdir'); + if($x['success']) { + $j = json_decode($x['body'],true); + if($j && $j['success'] && is_array($j['directories'])) { + + foreach($j['directories'] as $h) { +// if($h == z_root()) +// continue; + + $hash = random_string(); + $n = zot_build_packet($channel,'notify',null,null,$hash); + + q("insert into outq ( outq_hash, outq_account, outq_channel, outq_driver, outq_posturl, outq_async, outq_created, outq_updated, outq_notify, outq_msg ) values ( '%s', %d, %d, '%s', '%s', %d, '%s', '%s', '%s', '%s' )", + dbesc($hash), + intval($channel['channel_account_id']), + intval($channel['channel_id']), + dbesc('zot'), + dbesc($h . '/post'), + intval(1), + dbesc(datetime_convert()), + dbesc(datetime_convert()), + dbesc($n), + dbesc(json_encode($encoded_item)) + ); + } + $deliver[] = $hash; + + if(count($deliver) >= $deliveries_per_process) { + proc_run('php','include/deliver.php',$deliver); + $deliver = array(); + if($interval) + @time_sleep_until(microtime(true) + (float) $interval); + } + + + // catch any stragglers + + if(count($deliver)) { + proc_run('php','include/deliver.php',$deliver); + } + } + } + + logger('ratenotif: complete.'); + return; + +} + +if (array_search(__file__,get_included_files())===0){ + ratenotif_run($argv,$argc); + killme(); +} diff --git a/include/text.php b/include/text.php index 5c8242e79..ef2fc2371 100644 --- a/include/text.php +++ b/include/text.php @@ -1946,9 +1946,9 @@ function find_xchan_in_array($xchan,$arr) { } function get_rel_link($j,$rel) { - if(count($j)) + if(is_array($j) && ($j)) foreach($j as $l) - if($l['rel'] === $rel) + if(array_key_exists('rel',$j) && $l['rel'] === $rel && array_key_exists('href',$l)) return $l['href']; return ''; @@ -2297,6 +2297,7 @@ function handle_tag($a, &$body, &$access_tag, &$str_tags, $profile_uid, $tag) { } } else { + // check for a group/collection exclusion tag // note that we aren't setting $replaced even though we're replacing text. @@ -2357,6 +2358,8 @@ function linkify_tags($a, &$body, $uid) { $tags = get_tags($body); if(count($tags)) { foreach($tags as $tag) { + $access_tag = ''; + // If we already tagged 'Robert Johnson', don't try and tag 'Robert'. // Robert Johnson should be first in the $tags array @@ -2388,6 +2391,7 @@ function getIconFromType($type) { $iconMap = array( //Folder t('Collection') => 'icon-folder-close', + 'multipart/mixed' => 'icon-folder-close', //dirs in attach use this mime type //Common file 'application/octet-stream' => 'icon-file-alt', //Text diff --git a/include/widgets.php b/include/widgets.php index 523318850..d457db07d 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -903,3 +903,63 @@ function widget_random_block($arr) { return $o; } + + +function widget_rating($arr) { + $a = get_app(); + + $poco_rating = get_config('system','poco_rating_enable'); + if((! $poco_rating) && ($poco_rating !== false)) { + return; + } + + if($arr['target']) + $hash = $arr['target']; + else + $hash = $a->poi['xchan_hash']; + + if(! $hash) + return; + + $url = ''; + $remote = false; + + if(remote_channel() && ! local_channel()) { + $ob = $a->get_observer(); + if($ob && $ob['xchan_url']) { + $p = parse_url($ob['xchan_url']); + if($p) { + $url = $p['scheme'] . '://' . $p['host'] . (($p['port']) ? ':' . $p['port'] : ''); + $url .= '/rate?f=&target=' . urlencode($hash); + } + $remote = true; + } + } + + $self = false; + + if(local_channel()) { + $channel = $a->get_channel(); + + if($hash == $channel['channel_hash']) + $self = true; + + head_add_js('ratings.js'); + + } + + if((($remote) || (local_channel())) && (! $self)) { + $o = '
'; + if($remote) + $o .= ' ' . t('Rate Me') . ''; + else + $o .= ''; + $o .= '
'; + } + + $o .= '
' . t('View Ratings') . ''; + $o .= '
'; + + return $o; + +} \ No newline at end of file diff --git a/include/zot.php b/include/zot.php index 5faabd5ec..7e9a6ee54 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1084,6 +1084,11 @@ function zot_import($arr, $sender_url) { if(is_array($incoming)) { foreach($incoming as $i) { + if(! is_array($i)) { + logger('incoming is not an array'); + continue; + } + $result = null; if(array_key_exists('iv',$i['notify'])) { @@ -1108,7 +1113,8 @@ function zot_import($arr, $sender_url) { if(array_key_exists('message',$i) && array_key_exists('type',$i['message']) && $i['message']['type'] === 'rating') { // rating messages are processed only by directory servers logger('Rating received: ' . print_r($arr,true), LOGGER_DATA); - $result = process_rating_delivery($i['notify']['sender'],$arr); + $result = process_rating_delivery($i['notify']['sender'],$i['message']); + continue; } if(array_key_exists('recipients',$i['notify']) && count($i['notify']['recipients'])) { @@ -1813,34 +1819,52 @@ function process_mail_delivery($sender,$arr,$deliveries) { function process_rating_delivery($sender,$arr) { - $dirmode = intval(get_config('system','directory_mode')); - if($dirmode == DIRECTORY_MODE_NORMAL) - return; + logger('process_rating_delivery: ' . print_r($arr,true)); if(! $arr['target']) return; - $r = q("select * from xlink where xlink_xchan = '%s' and xlink_target = '%s' limit 1", + $z = q("select xchan_pubkey from xchan where xchan_hash = '%s' limit 1", + dbesc($sender['hash']) + ); + + + if((! $z) || (! rsa_verify($arr['target'] . '.' . $arr['rating'] . '.' . $arr['rating_text'], base64url_decode($arr['signature']),$z[0]['xchan_pubkey']))) { + logger('failed to verify rating'); + return; + } + + $r = q("select * from xlink where xlink_xchan = '%s' and xlink_link = '%s' and xlink_static = 1 limit 1", dbesc($sender['hash']), dbesc($arr['target']) - ); + ); + if($r) { - $x = q("update xlink set xlink_rating = %d, xlink_rating_text = '%s', xlink_updated = '%s' where xlink_id = %d", + if($r[0]['xlink_updated'] >= $arr['edited']) { + logger('rating message duplicate'); + return; + } + + $x = q("update xlink set xlink_rating = %d, xlink_rating_text = '%s', xlink_sig = '%s', xlink_updated = '%s' where xlink_id = %d", intval($arr['rating']), - intval($arr['rating_text']), + dbesc($arr['rating_text']), + dbesc($arr['signature']), dbesc(datetime_convert()), intval($r[0]['xlink_id']) ); + logger('rating updated'); } else { - $x = q("insert into xlink ( xlink_xchan, xlink_link, xlink_rating, xlink_rating_text, xlink_updated, xlink_static ) + $x = q("insert into xlink ( xlink_xchan, xlink_link, xlink_rating, xlink_rating_text, xlink_sig, xlink_updated, xlink_static ) values( '%s', '%s', %d, '%s', '%s', 1 ) ", dbesc($sender['hash']), dbesc($arr['target']), intval($arr['rating']), - intval($arr['rating_text']), + dbesc($arr['rating_text']), + dbesc($arr['signature']), dbesc(datetime_convert()) ); + logger('rating created'); } return; } diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index ba41073f8..8addc0af9 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -1533,6 +1533,7 @@ CREATE TABLE IF NOT EXISTS `xlink` ( `xlink_rating_text` TEXT NOT NULL DEFAULT '', `xlink_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `xlink_static` tinyint(1) NOT NULL DEFAULT '0', + `xlink_sig` text NOT NULL DEFAULT '', PRIMARY KEY (`xlink_id`), KEY `xlink_xchan` (`xlink_xchan`), KEY `xlink_link` (`xlink_link`), diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 2fcc7f9ba..b68a7cb97 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -1146,6 +1146,7 @@ CREATE TABLE "xlink" ( "xlink_rating_text" TEXT NOT NULL DEFAULT '', "xlink_updated" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "xlink_static" numeric(1) NOT NULL DEFAULT '0', + "xlink_sig" text NOT NULL DEFAULT '', PRIMARY KEY ("xlink_id") ); create index "xlink_xchan" on xlink ("xlink_xchan"); diff --git a/install/update.php b/install/update.php index 2ea64bc37..8ce50926a 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ 10) $rating = 10; - $rating_text = escape_tags($_REQUEST['rating_text']); + $rating_text = trim(escape_tags($_REQUEST['rating_text'])); $abook_my_perms = 0; @@ -131,26 +131,35 @@ function connedit_post(&$a) { $new_friend = false; if(! $is_self) { - $z = q("select * from xlink where xlink_xchan = '%s' and xlink_xlink = '%s' and xlink_static = 1 limit 1", + + $signed = $orig_record[0]['abook_xchan'] . '.' . $rating . '.' . $rating_text; + + $sig = base64url_encode(rsa_sign($signed,$channel['channel_prvkey'])); + + $z = q("select * from xlink where xlink_xchan = '%s' and xlink_link = '%s' and xlink_static = 1 limit 1", dbesc($channel['channel_hash']), dbesc($orig_record[0]['abook_xchan']) ); + + if($z) { $record = $z[0]['xlink_id']; - $w = q("update xlink set xlink_rating = '%d', xlink_rating_text = '%s', xlink_updated = '%s' + $w = q("update xlink set xlink_rating = '%d', xlink_rating_text = '%s', xlink_sig = '%s', xlink_updated = '%s' where xlink_id = %d", intval($rating), dbesc($rating_text), + dbesc($sig), dbesc(datetime_convert()), intval($record) ); } else { - $w = q("insert into xlink ( xlink_xchan, xlink_link, xlink_rating, xlink_rating_text, xlink_updated, xlink_static ) values ( '%s', '%s', %d, '%s', '%s', 1 ) ", + $w = q("insert into xlink ( xlink_xchan, xlink_link, xlink_rating, xlink_rating_text, xlink_sig, xlink_updated, xlink_static ) values ( '%s', '%s', %d, '%s', '%s', '%s', 1 ) ", dbesc($channel['channel_hash']), dbesc($orig_record[0]['abook_xchan']), intval($rating), dbesc($rating_text), + dbesc($sig), dbesc(datetime_convert()) ); $z = q("select * from xlink where xlink_xchan = '%s' and xlink_link = '%s' and xlink_static = 1 limit 1", @@ -161,7 +170,7 @@ function connedit_post(&$a) { $record = $z[0]['xlink_id']; } if($record) { - proc_run('php','include/notifier.php','rating',$record); + proc_run('php','include/ratenotif.php','rating',$record); } } @@ -171,13 +180,11 @@ function connedit_post(&$a) { } - $r = q("UPDATE abook SET abook_profile = '%s', abook_my_perms = %d , abook_closeness = %d, abook_rating = %d, abook_rating_text = '%s', abook_flags = %d + $r = q("UPDATE abook SET abook_profile = '%s', abook_my_perms = %d , abook_closeness = %d, abook_flags = %d where abook_id = %d AND abook_channel = %d", dbesc($profile_id), intval($abook_my_perms), intval($closeness), - intval($rating), - dbesc($rating_text), intval($abook_flags), intval($contact_id), intval(local_channel()) @@ -315,6 +322,7 @@ function connedit_content(&$a) { return login(); } + $channel = $a->get_channel(); $my_perms = get_channel_default_perms(local_channel()); $role = get_pconfig(local_channel(),'system','permissions_role'); if($role) { @@ -563,8 +571,22 @@ function connedit_content(&$a) { )); } + $rating_val = 0; + $rating_text = ''; + + $xl = q("select * from xlink where xlink_xchan = '%s' and xlink_link = '%s' and xlink_static = 1", + dbesc($channel['channel_hash']), + dbesc($contact['xchan_hash']) + ); + + if($xl) { + $rating_val = intval($xl[0]['xlink_rating']); + $rating_text = $xl[0]['xlink_rating_text']; + } + + $poco_rating = get_config('system','poco_rating_enable'); - $poco_rating = 0; + // if unset default to enabled if($poco_rating === false) $poco_rating = true; @@ -572,7 +594,7 @@ function connedit_content(&$a) { if($poco_rating) { $rating = replace_macros(get_markup_template('rating_slider.tpl'),array( '$min' => -10, - '$val' => (($contact['abook_rating']) ? $contact['abook_rating'] : 0), + '$val' => $rating_val )); } else { @@ -612,11 +634,11 @@ function connedit_content(&$a) { '$viewprof' => t('View Profile'), '$clickme' => t('Click to open/close'), '$lbl_slider' => t('Slide to adjust your degree of friendship'), - '$lbl_rating' => t('Rating (this information may be public)'), - '$lbl_rating_txt' => t('Optionally explain your rating (this information may be public)'), - '$rating_txt' => $contact['abook_rating_text'], + '$lbl_rating' => t('Rating (this information is public)'), + '$lbl_rating_txt' => t('Optionally explain your rating (this information is public)'), + '$rating_txt' => $rating_text, '$rating' => $rating, - '$rating_val' => $contact['abook_rating'], + '$rating_val' => $rating_val, '$slide' => $slide, '$tabs' => $t, '$tab_str' => $tab_str, diff --git a/mod/directory.php b/mod/directory.php index 21940d57b..329e255cf 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -190,6 +190,11 @@ function directory_content(&$a) { $page_type = ''; + if($rr['total_ratings']) + $total_ratings = sprintf( tt("%d rating", "%d ratings", $rr['total_ratings']), $rr['total_ratings']); + else + $total_ratings = ''; + $profile = $rr; if ((x($profile,'locale') == 1) @@ -247,7 +252,7 @@ function directory_content(&$a) { 'public_forum' => $rr['public_forum'], 'photo' => $rr['photo'], 'hash' => $rr['hash'], - 'alttext' => $rr['name'] . ' ' . $rr['address'], + 'alttext' => $rr['name'] . ((local_channel() || remote_channel()) ? ' ' . $rr['address'] : ''), 'name' => $rr['name'], 'details' => $pdesc . $details, 'profile' => $profile, @@ -255,6 +260,9 @@ function directory_content(&$a) { 'nickname' => substr($rr['address'],0,strpos($rr['address'],'@')), 'location' => $location, 'gender' => $gender, + 'total_ratings' => $total_ratings, + 'viewrate' => true, + 'canrate' => ((local_channel()) ? true : false), 'pdesc' => $pdesc, 'marital' => $marital, 'homepage' => $homepage, @@ -269,6 +277,7 @@ function directory_content(&$a) { 'keywords' => $out, 'ignlink' => $suggest ? $a->get_baseurl() . '/directory?ignore=' . $rr['hash'] : '', 'ignore_label' => "Don't suggest", + 'safe' => $safe_mode ); $arr = array('contact' => $rr, 'entry' => $entry); diff --git a/mod/dirsearch.php b/mod/dirsearch.php index 52a3d02cf..5a0a7cee8 100644 --- a/mod/dirsearch.php +++ b/mod/dirsearch.php @@ -12,7 +12,6 @@ function dirsearch_content(&$a) { $ret = array('success' => false); - // If you've got a public directory server, you probably shouldn't block public access $dirmode = intval(get_config('system','directory_mode')); @@ -210,6 +209,24 @@ function dirsearch_content(&$a) { ); } } + $r = q("select * from xlink where xlink_static = 1 and xlink_updated >= '%s' ", + dbesc($sync) + ); + if($r) { + $spkt['ratings'] = array(); + foreach($r as $rr) { + $spkt['ratings'][] = array( + 'type' => 'rating', + 'encoding' => 'zot', + 'channel' => $rr['xlink_xchan'], + 'target' => $rr['xlink_link'], + 'rating' => intval($rr['xlink_rating']), + 'rating_text' => $rr['xlink_rating_text'], + 'signature' => $rr['xlink_sig'], + 'edited' => $rr['xlink_updated'] + ); + } + } json_return_and_die($spkt); } else { diff --git a/mod/prate.php b/mod/prate.php index 28703d414..b89d16f42 100644 --- a/mod/prate.php +++ b/mod/prate.php @@ -1,13 +1,35 @@ get_channel(); - $target = $_REQUEST['target']; + $target = argv(1); + if(! $target) + return; + + $r = q("select * from xlink where xlink_xchan = '%s' and xlink_link = '%s' and xlink_static = 1", + dbesc($channel['channel_hash']), + dbesc($target) + ); + if($r) + json_return_and_die(array('rating' => $r[0]['xlink_rating'],'rating_text' => $r[0]['xlink_rating_text'])); + killme(); +} + +function prate_post(&$a) { + + if(! local_channel()) + return; + + $channel = $a->get_channel(); + + $target = trim($_REQUEST['target']); if(! $target) return; @@ -20,28 +42,35 @@ function prate_post(&$a) { if($rating > 10) $rating = 10; - $rating_text = escape_tags($_REQUEST['rating_text']); + $rating_text = trim(escape_tags($_REQUEST['rating_text'])); - $z = q("select * from xlink where xlink_xchan = '%s' and xlink_xlink = '%s' and xlink_static = 1 limit 1", + $signed = $target . '.' . $rating . '.' . $rating_text; + + $sig = base64url_encode(rsa_sign($signed,$channel['channel_prvkey'])); + + + $z = q("select * from xlink where xlink_xchan = '%s' and xlink_link = '%s' and xlink_static = 1 limit 1", dbesc($channel['channel_hash']), dbesc($target) ); if($z) { $record = $z[0]['xlink_id']; - $w = q("update xlink set xlink_rating = '%d', xlink_rating_text = '%s', xlink_updated = '%s' + $w = q("update xlink set xlink_rating = '%d', xlink_rating_text = '%s', xlink_sig = '%s', xlink_updated = '%s' where xlink_id = %d", intval($rating), dbesc($rating_text), + dbesc($sig), dbesc(datetime_convert()), intval($record) ); } else { - $w = q("insert into xlink ( xlink_xchan, xlink_link, xlink_rating, xlink_rating_text, xlink_updated, xlink_static ) values ( '%s', '%s', %d, '%s', '%s', 1 ) ", + $w = q("insert into xlink ( xlink_xchan, xlink_link, xlink_rating, xlink_rating_text, xlink_sig, xlink_updated, xlink_static ) values ( '%s', '%s', %d, '%s', '%s', '%s', 1 ) ", dbesc($channel['channel_hash']), dbesc($target), intval($rating), dbesc($rating_text), + dbesc($sig), dbesc(datetime_convert()) ); $z = q("select * from xlink where xlink_xchan = '%s' and xlink_link = '%s' and xlink_static = 1 limit 1", @@ -52,32 +81,10 @@ function prate_post(&$a) { $record = $z[0]['xlink_id']; } if($record) { - proc_run('php','include/notifier.php','rating',$record); + proc_run('php','include/ratenotif.php','rating',$record); } - $x = q("select abook_id from abook where abook_xchan = '%s' and abook_channel = %d limit 1", - dbesc($target), - intval($local_channel()) - ); - if($x) { - $w = q("update abook set abook_rating = %d, abook_rating_text = '%s' where abook_xchan = '%s' and abook_channel = %d", - intval($rating), - dbesc($rating_text), - dbesc($target), - intval(local_channel()) - ); - $x = q("select * from abook where abook_xchan = '%s' and abook_channel = %d limit 1", - dbesc($target), - intval($local_channel()) - ); - if($x) { - unset($x[0]['abook_id']); - unset($x[0]['abook_account']); - unset($x[0]['abook_channel']); - build_sync_packet(0, array('abook' => array($x[0]))); - } - } - return; + json_return_and_die(array('result' => true));; } @@ -89,3 +96,4 @@ function prate_post(&$a) { + diff --git a/mod/prep.php b/mod/prep.php deleted file mode 100644 index 896717826..000000000 --- a/mod/prep.php +++ /dev/null @@ -1,75 +0,0 @@ - 1) - $hash = argv(1); - - if(! $hash) { - notice('Must supply a channel identififier.'); - return; - } - - if(strpos($hash,'@')) { - $r = q("select * from hubloc where hubloc_addr = '%s' limit 1", - dbesc($hash) - ); - if($r) - $hash = $r[0]['hubloc_hash']; - } - - $p = q("select * from xchan where xchan_hash like '%s'", - dbesc($hash . '%') - ); - - if($p) - $a->poi = $p[0]; - -} - - - - - -function prep_content(&$a) { - - - $poco_rating = get_config('system','poco_rating_enable'); - // if unset default to enabled - if($poco_rating === false) - $poco_rating = true; - - if(! $poco_rating) - return; - - if(! $a->poi) - return; - - $r = q("select * from xlink left join xchan on xlink_xchan = xchan_hash where xlink_link like '%s' and xlink_rating != 0", - dbesc($a->poi['xchan_hash']) - ); - - if(! $r) - notice( t('No ratings available') . EOL); - - - $o = replace_macros(get_markup_template('prep.tpl'),array( - '$header' => t('Ratings'), - '$rating_lbl' => t('Rating: ' ), - '$rating_text_lbl' => t('Description: '), - '$raters' => $r - )); - - return $o; -} - - \ No newline at end of file diff --git a/mod/rate.php b/mod/rate.php new file mode 100644 index 000000000..694b88ddd --- /dev/null +++ b/mod/rate.php @@ -0,0 +1,158 @@ +get_channel(); + + $target = $_REQUEST['target']; + if(! $target) + return; + + $a->data['target'] = $target; + + if($target) { + $r = q("SELECT * FROM xchan where xchan_hash like '%s' LIMIT 1", + dbesc($target) + ); + if($r) { + $a->poi = $r[0]; + } + } + + + return; + +} + + +function rate_post(&$a) { + + if(! local_channel()) + return; + + if(! $a->data['target']) + return; + + if(! $_REQUEST['execute']) + return; + + $channel = $a->get_channel(); + + $rating = intval($_POST['rating']); + if($rating < (-10)) + $rating = (-10); + if($rating > 10) + $rating = 10; + + $rating_text = trim(escape_tags($_REQUEST['rating_text'])); + + $signed = $a->data['target'] . '.' . $rating . '.' . $rating_text; + + $sig = base64url_encode(rsa_sign($signed,$channel['channel_prvkey'])); + + $z = q("select * from xlink where xlink_xchan = '%s' and xlink_link = '%s' and xlink_static = 1 limit 1", + dbesc($channel['channel_hash']), + dbesc($a->data['target']) + ); + + if($z) { + $record = $z[0]['xlink_id']; + $w = q("update xlink set xlink_rating = '%d', xlink_rating_text = '%s', xlink_sig = '%s', xlink_updated = '%s' + where xlink_id = %d", + intval($rating), + dbesc($rating_text), + dbesc($sig), + dbesc(datetime_convert()), + intval($record) + ); + } + else { + $w = q("insert into xlink ( xlink_xchan, xlink_link, xlink_rating, xlink_rating_text, xlink_sig, xlink_updated, xlink_static ) values ( '%s', '%s', %d, '%s', '%s', '%s', 1 ) ", + dbesc($channel['channel_hash']), + dbesc($a->data['target']), + intval($rating), + dbesc($rating_text), + dbesc($sig), + dbesc(datetime_convert()) + ); + $z = q("select * from xlink where xlink_xchan = '%s' and xlink_link = '%s' and xlink_static = 1 limit 1", + dbesc($channel['channel_hash']), + dbesc($a->data['target']) + ); + if($z) + $record = $z[0]['xlink_id']; + } + + if($record) { + proc_run('php','include/ratenotif.php','rating',$record); + } + +} + + + +function rate_content(&$a) { + + if(! local_channel()) { + notice( t('Permission denied.') . EOL); + return; + } + +// if(! $a->data['target']) { +// notice( t('No recipients.') . EOL); +// return; +// } + + $poco_rating = get_config('system','poco_rating_enable'); + if((! $poco_rating) && ($poco_rating !== false)) { + notice('Ratings are disabled on this site.'); + return; + } + + $channel = $a->get_channel(); + + $r = q("select * from xlink where xlink_xchan = '%s' and xlink_link = '%s' and xlink_static = 1", + dbesc($channel['channel_hash']), + dbesc($a->data['target']) + ); + if($r) + $a->data['xlink'] = $r[0]; + + $rating_val = $r[0]['xlink_rating']; + $rating_text = $r[0]['xlink_rating_text']; + + + // if unset default to enabled + if($poco_rating === false) + $poco_rating = true; + + if($poco_rating) { + $rating = replace_macros(get_markup_template('rating_slider.tpl'),array( + '$min' => -10, + '$val' => $rating_val + )); + } + else { + $rating = false; + } + + $o = replace_macros(get_markup_template('rating_form.tpl'),array( + '$header' => t('Rating'), + 'target' => $a->data['target'], + '$tgt_name' => (($a->poi && $a->poi['xchan_name']) ? $a->poi['xchan_name'] : sprintf( t('Remote Channel [%s] (not yet known on this site)'), substr($a->data['target'],0,16))), + '$lbl_rating' => t('Rating (this information is public)'), + '$lbl_rating_txt' => t('Optionally explain your rating (this information is public)'), + '$rating_txt' => $rating_text, + '$rating' => $rating, + '$rating_val' => $rating_val, + '$slide' => $slide, + '$submit' => t('Submit') + )); + + return $o; + +} \ No newline at end of file diff --git a/mod/ratings.php b/mod/ratings.php new file mode 100644 index 000000000..fe7865778 --- /dev/null +++ b/mod/ratings.php @@ -0,0 +1,103 @@ + 1) + $hash = argv(1); + + if(! $hash) { + notice('Must supply a channel identififier.'); + return; + } + + $results = false; + + $x = z_fetch_url($url . '/ratingsearch/' . $hash); + + + if($x['success']) + $results = json_decode($x['body'],true); + + + if((! $results) || (! $results['success'])) { + + notice('No results.'); + return; + } + + $a->poi = $results['target']; + + $friends = array(); + $others = array(); + + if($results['ratings']) { + foreach($results['ratings'] as $n) { + if(is_array($a->contacts) && array_key_exists($n['xchan_hash'],$a->contacts)) + $friends[] = $n; + else + $others[] = $n; + } + } + + $a->data = array_merge($friends,$others); + + if(! $a->data) { + notice( t('No ratings') . EOL); + } + + return; +} + + + + + +function ratings_content(&$a) { + + if((get_config('system','block_public')) && (! local_channel()) && (! remote_channel())) { + notice( t('Public access denied.') . EOL); + return; + } + + $poco_rating = get_config('system','poco_rating_enable'); + // if unset default to enabled + if($poco_rating === false) + $poco_rating = true; + + if(! $poco_rating) + return; + + $o = replace_macros(get_markup_template('prep.tpl'),array( + '$header' => t('Ratings'), + '$rating_lbl' => t('Rating: ' ), + '$rating_text_lbl' => t('Description: '), + '$raters' => $a->data + )); + + return $o; +} + + \ No newline at end of file diff --git a/mod/ratingsearch.php b/mod/ratingsearch.php new file mode 100644 index 000000000..ec2db570b --- /dev/null +++ b/mod/ratingsearch.php @@ -0,0 +1,58 @@ + false); + + $dirmode = intval(get_config('system','directory_mode')); + + if($dirmode == DIRECTORY_MODE_NORMAL) { + $ret['message'] = 'This site is not a directory server.'; + json_return_and_die($ret); + } + + if(argc() > 1) + $hash = argv(1); + + if(! $hash) { + $ret['message'] = 'No channel identifier'; + json_return_and_die($ret); + } + + if(strpos($hash,'@')) { + $r = q("select * from hubloc where hubloc_addr = '%s' limit 1", + dbesc($hash) + ); + if($r) + $hash = $r[0]['hubloc_hash']; + } + + $p = q("select * from xchan where xchan_hash like '%s'", + dbesc($hash . '%') + ); + + if($p) + $ret['target'] = $p[0]; + else { + $ret['message'] = 'channel not found'; + json_return_and_die($ret); + } + + $ret['success'] = true; + + $r = q("select * from xlink left join xchan on xlink_xchan = xchan_hash + where xlink_link = '%s' and xlink_rating != 0 and xlink_static = 1 order by xchan_name asc", + dbesc($p[0]['xchan_hash']) + ); + + if($r) { + $ret['ratings'] = $r; + } + else + $ret['ratings'] = array(); + + json_return_and_die($ret); + +} + diff --git a/mod/regdir.php b/mod/regdir.php new file mode 100644 index 000000000..eecc99ca5 --- /dev/null +++ b/mod/regdir.php @@ -0,0 +1,69 @@ + false); + + $url = $_REQUEST['url']; + + + // we probably don't need the realm as we will find out in the probe. + // What we may want to die is throw an error if you're trying to register in a different realm + // so this configuration issue can be discovered. + + $realm = $_REQUEST['realm']; + if(! $realm) + $realm = DIRECTORY_REALM; + + $dirmode = intval(get_config('system','directory_mode')); + + if($dirmode == DIRECTORY_MODE_NORMAL) { + $ret['message'] = t('This site is not a directory server'); + json_return_and_die($ret); + } + + $m = null; + if($url) { + $m = parse_url($url); + + if((! $m) || (! @dns_get_record($m['host'], DNS_A + DNS_CNAME + DNS_PTR)) || (! filter_var($m['host'], FILTER_VALIDATE_IP) )) { + $result['message'] = 'unparseable url'; + json_return_and_die($result); + } + + $f = zot_finger('sys@' . $m['host']); + if($f['success']) { + $j = json_decode($f['body'],true); + if($j['success'] && $j['guid']) { + $x = import_xchan($j); + if($x['success']) { + $result['success'] = true; + json_return_and_die($result); + } + } + } + + json_return_and_die($result); + } + else { + if($dirmode == DIRECTORY_MODE_STANDALONE) { + $r = array(array('site_url' => z_root())); + } + else { + $r = q("select site_url from site where site_flags in ( 1, 2 ) and site_realm = '%s'", + dbesc(get_directory_realm()) + ); + } + if($r) { + $result['success'] = true; + $result['directories'] = array(); + foreach($r as $rr) + $result['directories'][] = $rr['site_url']; + json_return_and_die($result); + } + } + json_return_and_die($result); + + +} \ No newline at end of file diff --git a/mod/zfinger.php b/mod/zfinger.php index 6f4febc6f..f4b7efd96 100644 --- a/mod/zfinger.php +++ b/mod/zfinger.php @@ -99,13 +99,14 @@ function zfinger_init(&$a) { $id = $e['channel_id']; + $sys_channel = (($e['channel_pageflags'] & PAGE_SYSTEM) ? true : false); $special_channel = (($e['channel_pageflags'] & PAGE_PREMIUM) ? true : false); $adult_channel = (($e['channel_pageflags'] & PAGE_ADULT) ? true : false); $censored = (($e['channel_pageflags'] & PAGE_CENSORED) ? true : false); $searchable = (($e['channel_pageflags'] & PAGE_HIDDEN) ? false : true); $deleted = (($e['xchan_flags'] & XCHAN_FLAGS_DELETED) ? true : false); - if($deleted || $censored) + if($deleted || $censored || $sys_channel) $searchable = false; $public_forum = false; @@ -237,6 +238,12 @@ function zfinger_init(&$a) { $dirmode = get_config('system','directory_mode'); if(($dirmode === false) || ($dirmode == DIRECTORY_MODE_NORMAL)) $ret['site']['directory_mode'] = 'normal'; + + // downgrade mis-configured primaries + + if($dirmode == DIRECTORY_MODE_PRIMARY && z_root() != get_directory_primary()) + $dirmode = DIRECTORY_MODE_SECONDARY; + if($dirmode == DIRECTORY_MODE_PRIMARY) $ret['site']['directory_mode'] = 'primary'; elseif($dirmode == DIRECTORY_MODE_SECONDARY) diff --git a/version.inc b/version.inc index ff47debf0..8d8816a23 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-01-30.932 +2015-02-04.935 diff --git a/view/css/mod_directory.css b/view/css/mod_directory.css index 20facbaf8..7b149d744 100644 --- a/view/css/mod_directory.css +++ b/view/css/mod_directory.css @@ -3,8 +3,10 @@ clear: both; } .directory-name { - text-align: center; + float: left; + width: 250px; } + .directory-photo { margin-left: 25px; } diff --git a/view/css/mod_events.css b/view/css/mod_events.css index 0aef13aa6..ba4ec9b61 100644 --- a/view/css/mod_events.css +++ b/view/css/mod_events.css @@ -10,8 +10,3 @@ margin-top: 15px; width: 400px; } - -.required { - color: #ff0000; - font-size: 1.2rem; -} \ No newline at end of file diff --git a/view/css/mod_rate.css b/view/css/mod_rate.css new file mode 100644 index 000000000..58e87b9b4 --- /dev/null +++ b/view/css/mod_rate.css @@ -0,0 +1,8 @@ +#rating-slider { + width: 600px !important; +} + +#rating-text { + width: 400px; + height: 60px; +} diff --git a/view/css/mod_prep.css b/view/css/mod_ratings.css similarity index 75% rename from view/css/mod_prep.css rename to view/css/mod_ratings.css index bb29086da..86d6f5ed3 100644 --- a/view/css/mod_prep.css +++ b/view/css/mod_ratings.css @@ -9,4 +9,8 @@ .directory-item { margin: 10px; +} + +.rating-value { + margin-top: 10px; } \ No newline at end of file diff --git a/view/css/widgets.css b/view/css/widgets.css index 4db87e633..43d132276 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -104,3 +104,27 @@ li:hover .group-edit-icon { .chatroomlist td { padding: 0 5px 0; } + +/* ratings */ + +.directory-rating { + float: right; + margin-right: 5px; +} + +.slider-container { + padding: 15px; +} + +.rating-text-label { + margin-top: 30px; +} + +.directory-rating-text { + width: 90%; + margin-left: 5%; +} + +.directory-rating-submit { + margin-top: 15px; +} diff --git a/view/js/mod_directory.js b/view/js/mod_directory.js index 74c8b414d..87e4f92b5 100644 --- a/view/js/mod_directory.js +++ b/view/js/mod_directory.js @@ -3,7 +3,40 @@ function dirdetails(hash) { $.get('dirprofile' + '?f=&hash=' + hash, function( data ) { $.colorbox({ maxWidth: "50%", maxHeight: "75%", html: data }); }); +} + +var ratingVal = 0; +var ratingText = ''; +var currentHash = ''; + +function fetchRatings(hash) { + $.get('prate/'+hash, function(data) { + if(typeof(data.rating) !== 'undefined') { + ratingVal = data.rating; + ratingText = data.rating_text; + } + buildRatingForm(hash); + }); +} + + +function doRatings(hash) { + fetchRatings(hash); +} + +function buildRatingForm(hash) { + var html = '
'+aStr['rating_desc']+'
'+aStr['rating_text']+'
'; + + $.colorbox({maxwidth: "50%", maxHeight: "50%", html: html, close: 'X' }); + currentHash = hash; +} + +function postRatings() { + $.post('prate',$('#ratings_form').serialize(),function(data) { + $.colorbox.remove(); + $('#edited-'+currentHash).show(); + },'json'); } $(document).ready(function() { diff --git a/view/js/ratings.js b/view/js/ratings.js new file mode 100644 index 000000000..3d48ecca5 --- /dev/null +++ b/view/js/ratings.js @@ -0,0 +1,34 @@ + +var ratingVal = 0; +var ratingText = ''; +var currentHash = ''; + +function fetchRatings(hash) { + $.get('prate/'+hash, function(data) { + if(typeof(data.rating) !== 'undefined') { + ratingVal = data.rating; + ratingText = data.rating_text; + } + buildRatingForm(hash); + }); +} + + +function doRatings(hash) { + fetchRatings(hash); +} + +function buildRatingForm(hash) { + var html = '
'+aStr['rating_desc']+'
'+aStr['rating_text']+'
'; + + $.colorbox({maxwidth: "50%", maxHeight: "50%", html: html, close: 'X' }); + currentHash = hash; +} + +function postRatings() { + $.post('prate',$('#ratings_form').serialize(),function(data) { + $.colorbox.remove(); + $('#edited-'+currentHash).show(); + },'json'); +} + diff --git a/view/nl/messages.po b/view/nl/messages.po index e18f7b719..2edb4ea58 100644 --- a/view/nl/messages.po +++ b/view/nl/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-01-02 00:04-0800\n" -"PO-Revision-Date: 2015-01-03 15:35+0000\n" +"POT-Creation-Date: 2015-01-30 00:04-0800\n" +"PO-Revision-Date: 2015-02-03 16:43+0000\n" "Last-Translator: jeroenpraat \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" @@ -25,155 +25,221 @@ msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" #: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 -#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:423 ../../mod/photos.php:91 -#: ../../mod/photos.php:654 +#: ../../mod/photos.php:91 ../../mod/photos.php:625 +#: ../../mod/profile_photo.php:143 ../../mod/profile_photo.php:302 +#: ../../mod/profile_photo.php:424 msgid "Profile Photos" msgstr "Profielfoto's" -#: ../../include/items.php:382 ../../mod/group.php:68 -#: ../../mod/subthread.php:49 ../../mod/profperm.php:23 ../../mod/like.php:246 -#: ../../index.php:389 -msgid "Permission denied" -msgstr "Toegang geweigerd" +#: ../../include/widgets.php:35 ../../include/taxonomy.php:250 +#: ../../include/contact_widgets.php:92 +msgid "Categories" +msgstr "Categorieën" -#: ../../include/items.php:969 ../../include/items.php:1014 -msgid "(Unknown)" -msgstr "(Onbekend)" +#: ../../include/widgets.php:91 ../../include/nav.php:163 +#: ../../mod/apps.php:34 +msgid "Apps" +msgstr "Apps" -#: ../../include/items.php:1171 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." +#: ../../include/widgets.php:92 +msgid "System" +msgstr "Systeem" -#: ../../include/items.php:1173 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." +#: ../../include/widgets.php:94 ../../include/conversation.php:1472 +msgid "Personal" +msgstr "Persoonlijk" -#: ../../include/items.php:1175 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Persoonlijke app maken" -#: ../../include/items.php:1177 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Persoonlijke app bewerken" -#: ../../include/items.php:1179 +#: ../../include/widgets.php:136 ../../include/widgets.php:175 +#: ../../include/Contact.php:107 ../../include/conversation.php:946 +#: ../../include/identity.php:840 ../../mod/suggest.php:51 +#: ../../mod/match.php:62 ../../mod/directory.php:264 +msgid "Connect" +msgstr "Verbinden" + +#: ../../include/widgets.php:138 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" + +#: ../../include/widgets.php:143 ../../mod/connections.php:268 +msgid "Suggestions" +msgstr "Voorgestelde kanalen" + +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Meer..." + +#: ../../include/widgets.php:166 #, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." -#: ../../include/items.php:1181 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "Nieuwe connectie toevoegen" -#: ../../include/items.php:1183 -msgid "Visible to approved connections." -msgstr "Voor alle goedgekeurde connecties zichtbaar." +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "Vul het adres van het nieuwe kanaal in" -#: ../../include/items.php:1185 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Voorbeeld: bob@example.com, http://example.com/barbara" -#: ../../include/items.php:3952 ../../mod/display.php:32 -#: ../../mod/thing.php:76 ../../mod/filestorage.php:26 ../../mod/admin.php:168 -#: ../../mod/admin.php:896 ../../mod/admin.php:1099 ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "Item niet gevonden." +#: ../../include/widgets.php:190 +msgid "Notes" +msgstr "Aantekeningen" -#: ../../include/items.php:4019 ../../include/photos.php:15 -#: ../../include/attach.php:116 ../../include/attach.php:163 -#: ../../include/attach.php:226 ../../include/attach.php:240 -#: ../../include/attach.php:280 ../../include/attach.php:294 -#: ../../include/attach.php:318 ../../include/attach.php:511 -#: ../../include/attach.php:585 ../../include/chat.php:116 -#: ../../mod/mood.php:112 ../../mod/register.php:72 ../../mod/mitem.php:106 -#: ../../mod/achievements.php:30 ../../mod/group.php:9 ../../mod/poke.php:128 -#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:559 ../../mod/authtest.php:13 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/block.php:22 -#: ../../mod/block.php:72 ../../mod/delegate.php:6 ../../mod/sources.php:66 -#: ../../mod/events.php:195 ../../mod/channel.php:90 ../../mod/channel.php:201 -#: ../../mod/channel.php:244 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/regmod.php:17 ../../mod/editpost.php:13 ../../mod/common.php:35 -#: ../../mod/settings.php:554 ../../mod/connections.php:169 -#: ../../mod/manage.php:6 ../../mod/connedit.php:266 ../../mod/mail.php:111 -#: ../../mod/webpages.php:67 ../../mod/bookmarks.php:46 -#: ../../mod/blocks.php:67 ../../mod/blocks.php:75 ../../mod/editblock.php:65 -#: ../../mod/pdledit.php:21 ../../mod/editlayout.php:64 -#: ../../mod/editlayout.php:89 ../../mod/editwebpage.php:64 -#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/like.php:154 ../../mod/thing.php:247 ../../mod/thing.php:264 -#: ../../mod/thing.php:299 ../../mod/fsuggest.php:78 -#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:67 -#: ../../mod/filestorage.php:82 ../../mod/filestorage.php:109 -#: ../../mod/locs.php:71 ../../mod/item.php:191 ../../mod/item.php:199 -#: ../../mod/item.php:975 ../../mod/suggest.php:26 ../../mod/layouts.php:67 -#: ../../mod/layouts.php:74 ../../mod/layouts.php:85 ../../mod/setup.php:207 -#: ../../mod/menu.php:61 ../../mod/invite.php:13 ../../mod/invite.php:104 -#: ../../mod/network.php:12 ../../mod/notifications.php:66 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/viewsrc.php:14 ../../mod/message.php:16 -#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 -#: ../../mod/photos.php:68 ../../mod/page.php:28 ../../mod/page.php:78 -#: ../../mod/appman.php:66 ../../mod/service_limits.php:7 ../../index.php:190 -#: ../../index.php:390 -msgid "Permission denied." -msgstr "Toegang geweigerd" +#: ../../include/widgets.php:192 ../../include/text.php:837 +#: ../../include/text.php:849 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 +#: ../../mod/filer.php:50 ../../mod/admin.php:1344 ../../mod/admin.php:1365 +msgid "Save" +msgstr "Opslaan" -#: ../../include/items.php:4410 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Collectie niet gevonden." +#: ../../include/widgets.php:264 +msgid "Remove term" +msgstr "Verwijder zoekterm" -#: ../../include/items.php:4425 -msgid "Collection is empty." -msgstr "Collectie is leeg" +#: ../../include/widgets.php:272 ../../include/features.php:71 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" -#: ../../include/items.php:4432 -#, php-format -msgid "Collection: %s" -msgstr "Collectie: %s" +#: ../../include/widgets.php:273 ../../include/group.php:303 +msgid "add" +msgstr "toevoegen" -#: ../../include/items.php:4443 -#, php-format -msgid "Connection: %s" -msgstr "Connectie: %s" +#: ../../include/widgets.php:302 ../../include/features.php:83 +#: ../../include/contact_widgets.php:57 +msgid "Saved Folders" +msgstr "Bewaarde mappen" -#: ../../include/items.php:4446 -msgid "Connection not found." -msgstr "Connectie niet gevonden." +#: ../../include/widgets.php:305 ../../include/contact_widgets.php:60 +#: ../../include/contact_widgets.php:95 +msgid "Everything" +msgstr "Alles" -#: ../../include/menu.php:42 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:263 -#: ../../include/ItemObject.php:100 ../../include/apps.php:254 -#: ../../mod/editpost.php:112 ../../mod/settings.php:639 -#: ../../mod/connections.php:381 ../../mod/connections.php:394 -#: ../../mod/connections.php:413 ../../mod/webpages.php:162 -#: ../../mod/blocks.php:132 ../../mod/editblock.php:143 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 -#: ../../mod/thing.php:233 ../../mod/layouts.php:167 ../../mod/menu.php:78 -msgid "Edit" -msgstr "Bewerken" +#: ../../include/widgets.php:347 +msgid "Archives" +msgstr "Archieven" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Geen ontvanger opgegeven." +#: ../../include/widgets.php:425 +msgid "Refresh" +msgstr "Vernieuwen" -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[geen onderwerp]" +#: ../../include/widgets.php:426 ../../mod/connedit.php:555 +msgid "Me" +msgstr "Ik" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Afzender kan niet bepaald worden." +#: ../../include/widgets.php:427 ../../mod/connedit.php:558 +msgid "Best Friends" +msgstr "Goede vrienden" -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Opgeslagen bericht kon niet worden geverifieerd." +#: ../../include/widgets.php:428 ../../include/identity.php:387 +#: ../../include/identity.php:388 ../../include/identity.php:395 +#: ../../include/profile_selectors.php:80 ../../mod/settings.php:329 +#: ../../mod/settings.php:333 ../../mod/settings.php:334 +#: ../../mod/settings.php:337 ../../mod/settings.php:348 +#: ../../mod/connedit.php:559 +msgid "Friends" +msgstr "Vrienden" -#: ../../include/network.php:590 -msgid "view full size" -msgstr "volledige grootte tonen" +#: ../../include/widgets.php:429 +msgid "Co-workers" +msgstr "Collega's" + +#: ../../include/widgets.php:430 ../../mod/connedit.php:560 +msgid "Former Friends" +msgstr "Oude vrienden" + +#: ../../include/widgets.php:431 ../../mod/connedit.php:561 +msgid "Acquaintances" +msgstr "Kennissen" + +#: ../../include/widgets.php:432 +msgid "Everybody" +msgstr "Iedereen" + +#: ../../include/widgets.php:466 +msgid "Account settings" +msgstr "Account" + +#: ../../include/widgets.php:472 +msgid "Channel settings" +msgstr "Kanaal" + +#: ../../include/widgets.php:478 +msgid "Additional features" +msgstr "Extra functies" + +#: ../../include/widgets.php:484 +msgid "Feature/Addon settings" +msgstr "Plugin-instellingen" + +#: ../../include/widgets.php:490 +msgid "Display settings" +msgstr "Weergave" + +#: ../../include/widgets.php:496 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: ../../include/widgets.php:502 +msgid "Export channel" +msgstr "Kanaal exporteren" + +#: ../../include/widgets.php:511 ../../mod/connedit.php:605 +msgid "Connection Default Permissions" +msgstr "Standaard permissies voor connecties" + +#: ../../include/widgets.php:519 +msgid "Premium Channel Settings" +msgstr "Instellingen premiumkanaal" + +#: ../../include/widgets.php:527 ../../include/features.php:61 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanaalbronnen" + +#: ../../include/widgets.php:535 ../../include/apps.php:134 +#: ../../include/nav.php:210 ../../mod/admin.php:956 ../../mod/admin.php:1161 +msgid "Settings" +msgstr "Instellingen" + +#: ../../include/widgets.php:548 ../../mod/mail.php:128 +#: ../../mod/message.php:31 +msgid "Messages" +msgstr "Berichten" + +#: ../../include/widgets.php:551 +msgid "Check Mail" +msgstr "Controleer op nieuwe berichten" + +#: ../../include/widgets.php:556 ../../include/nav.php:201 +msgid "New Message" +msgstr "Nieuw bericht" + +#: ../../include/widgets.php:634 +msgid "Chat Rooms" +msgstr "Chatkanalen" + +#: ../../include/widgets.php:654 +msgid "Bookmarked Chatrooms" +msgstr "Bladwijzers van chatkanalen" + +#: ../../include/widgets.php:674 +msgid "Suggested Chatrooms" +msgstr "Voorgestelde chatkanalen" + +#: ../../include/widgets.php:801 ../../include/widgets.php:859 +msgid "photo/image" +msgstr "foto/afbeelding" #: ../../include/permissions.php:26 msgid "Can view my normal stream and posts" @@ -326,11 +392,6 @@ msgstr "gaf een reactie op een bericht van %s" msgid "Tags" msgstr "Tags" -#: ../../include/taxonomy.php:250 ../../include/contact_widgets.php:92 -#: ../../include/widgets.php:35 -msgid "Categories" -msgstr "Categorieën" - #: ../../include/taxonomy.php:269 msgid "Keywords" msgstr "Trefwoorden" @@ -367,26 +428,81 @@ msgstr "vind dit niet leuk" msgid "dislikes" msgstr "vindt dit niet leuk" -#: ../../include/taxonomy.php:380 ../../include/identity.php:1151 -#: ../../include/ItemObject.php:146 ../../mod/photos.php:1024 +#: ../../include/taxonomy.php:380 ../../include/ItemObject.php:146 +#: ../../include/identity.php:1151 ../../mod/photos.php:995 msgctxt "noun" msgid "Like" msgid_plural "Likes" msgstr[0] "vindt dit leuk" msgstr[1] "vinden dit leuk" +#: ../../include/bbcode.php:115 ../../include/bbcode.php:688 +#: ../../include/bbcode.php:691 ../../include/bbcode.php:696 +#: ../../include/bbcode.php:699 ../../include/bbcode.php:702 +#: ../../include/bbcode.php:705 ../../include/bbcode.php:710 +#: ../../include/bbcode.php:713 ../../include/bbcode.php:718 +#: ../../include/bbcode.php:721 ../../include/bbcode.php:724 +#: ../../include/bbcode.php:727 +msgid "Image/photo" +msgstr "Afbeelding/foto" + +#: ../../include/bbcode.php:150 ../../include/bbcode.php:738 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: ../../include/bbcode.php:168 +msgid "Install design element: " +msgstr "Installeer ontwerp-onderdeel" + +#: ../../include/bbcode.php:174 +msgid "QR code" +msgstr "QR-code" + +#: ../../include/bbcode.php:223 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schreef het volgende %2$s %3$s" + +#: ../../include/bbcode.php:225 +msgid "post" +msgstr "bericht" + +#: ../../include/bbcode.php:447 +msgid "Different viewers will see this text differently" +msgstr "Deze tekst wordt per persoon anders weergeven." + +#: ../../include/bbcode.php:656 +msgid "$1 spoiler" +msgstr "$1 spoiler" + +#: ../../include/bbcode.php:676 +msgid "$1 wrote:" +msgstr "$1 schreef:" + #: ../../include/page_widgets.php:6 msgid "New Page" msgstr "Nieuwe pagina" -#: ../../include/page_widgets.php:39 ../../mod/webpages.php:165 -#: ../../mod/blocks.php:135 ../../mod/layouts.php:171 +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/apps.php:254 +#: ../../include/menu.php:42 ../../include/ItemObject.php:100 +#: ../../mod/blocks.php:132 ../../mod/webpages.php:162 +#: ../../mod/connections.php:382 ../../mod/connections.php:395 +#: ../../mod/connections.php:414 ../../mod/editblock.php:143 +#: ../../mod/settings.php:639 ../../mod/editpost.php:112 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 +#: ../../mod/thing.php:233 ../../mod/layouts.php:167 ../../mod/menu.php:78 +msgid "Edit" +msgstr "Bewerken" + +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 +#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 msgid "View" msgstr "Weergeven" -#: ../../include/page_widgets.php:40 ../../include/conversation.php:1102 -#: ../../include/ItemObject.php:638 ../../mod/webpages.php:166 -#: ../../mod/photos.php:995 +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:638 +#: ../../include/conversation.php:1136 ../../mod/webpages.php:166 +#: ../../mod/photos.php:966 msgid "Preview" msgstr "Voorvertoning" @@ -418,6 +534,47 @@ msgstr "Ingesloten inhoud" msgid "Embedding disabled" msgstr "Insluiten uitgeschakeld" +#: ../../include/photos.php:15 ../../include/attach.php:137 +#: ../../include/attach.php:184 ../../include/attach.php:247 +#: ../../include/attach.php:261 ../../include/attach.php:301 +#: ../../include/attach.php:315 ../../include/attach.php:339 +#: ../../include/attach.php:532 ../../include/attach.php:606 +#: ../../include/items.php:4063 ../../include/chat.php:116 +#: ../../mod/setup.php:207 ../../mod/register.php:72 ../../mod/network.php:12 +#: ../../mod/achievements.php:30 ../../mod/authtest.php:13 +#: ../../mod/suggest.php:26 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/events.php:199 ../../mod/blocks.php:67 ../../mod/blocks.php:75 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/block.php:22 +#: ../../mod/block.php:72 ../../mod/webpages.php:67 ../../mod/mitem.php:106 +#: ../../mod/delegate.php:6 ../../mod/channel.php:90 ../../mod/channel.php:201 +#: ../../mod/channel.php:244 ../../mod/regmod.php:17 ../../mod/chat.php:90 +#: ../../mod/chat.php:95 ../../mod/common.php:35 ../../mod/item.php:195 +#: ../../mod/item.php:203 ../../mod/item.php:931 ../../mod/connections.php:169 +#: ../../mod/editblock.php:65 ../../mod/settings.php:554 +#: ../../mod/photos.php:68 ../../mod/poke.php:128 ../../mod/manage.php:6 +#: ../../mod/bookmarks.php:46 ../../mod/editpost.php:13 ../../mod/group.php:9 +#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 +#: ../../mod/sources.php:66 ../../mod/pdledit.php:21 +#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 +#: ../../mod/editwebpage.php:118 ../../mod/profile_photo.php:264 +#: ../../mod/profile_photo.php:277 ../../mod/fsuggest.php:78 +#: ../../mod/like.php:166 ../../mod/viewsrc.php:14 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 +#: ../../mod/filestorage.php:114 ../../mod/locs.php:77 ../../mod/thing.php:247 +#: ../../mod/thing.php:264 ../../mod/thing.php:299 ../../mod/layouts.php:67 +#: ../../mod/layouts.php:74 ../../mod/layouts.php:85 ../../mod/menu.php:61 +#: ../../mod/notifications.php:66 ../../mod/appman.php:66 +#: ../../mod/mood.php:112 ../../mod/mail.php:114 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/connedit.php:314 ../../mod/message.php:16 +#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 +#: ../../mod/page.php:28 ../../mod/page.php:78 ../../mod/profiles.php:188 +#: ../../mod/profiles.php:576 ../../mod/service_limits.php:7 +#: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:390 +msgid "Permission denied." +msgstr "Toegang geweigerd" + #: ../../include/photos.php:105 #, php-format msgid "Image exceeds website size limit of %lu bytes" @@ -427,7 +584,7 @@ msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" msgid "Image file is empty." msgstr "Afbeeldingsbestand is leeg" -#: ../../include/photos.php:141 ../../mod/profile_photo.php:216 +#: ../../include/photos.php:141 ../../mod/profile_photo.php:217 msgid "Unable to process image" msgstr "Afbeelding kan niet verwerkt worden" @@ -435,36 +592,17 @@ msgstr "Afbeelding kan niet verwerkt worden" msgid "Photo storage failed." msgstr "Foto kan niet worden opgeslagen" -#: ../../include/photos.php:341 ../../include/conversation.php:1533 +#: ../../include/photos.php:355 ../../include/conversation.php:1567 msgid "Photo Albums" msgstr "Fotoalbums" -#: ../../include/photos.php:345 +#: ../../include/photos.php:359 msgid "Upload New Photos" msgstr "Nieuwe foto's uploaden" -#: ../../include/activities.php:39 -msgid " and " -msgstr " en " - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "openbaar profiel" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Bezoek het %2$s van %1$s" - -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." +#: ../../include/api.php:1084 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" #: ../../include/bb2diaspora.php:366 msgid "Attachments:" @@ -486,319 +624,602 @@ msgstr "Start:" msgid "Finishes:" msgstr "Einde:" -#: ../../include/bb2diaspora.php:467 ../../include/identity.php:894 -#: ../../include/event.php:40 ../../mod/events.php:590 +#: ../../include/bb2diaspora.php:467 ../../include/event.php:40 +#: ../../include/identity.php:894 ../../mod/events.php:594 #: ../../mod/directory.php:199 msgid "Location:" msgstr "Plaats:" -#: ../../include/attach.php:221 ../../include/attach.php:275 -msgid "Item was not found." -msgstr "Item niet gevonden" +#: ../../include/security.php:357 +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 "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " -#: ../../include/attach.php:331 -msgid "No source file." -msgstr "Geen bronbestand." +#: ../../include/text.php:320 +msgid "prev" +msgstr "vorige" -#: ../../include/attach.php:348 -msgid "Cannot locate file to replace" -msgstr "Kan het te vervangen bestand niet vinden" +#: ../../include/text.php:322 +msgid "first" +msgstr "eerste" -#: ../../include/attach.php:366 -msgid "Cannot locate file to revise/update" -msgstr "Kan het bestand wat aangepast moet worden niet vinden" +#: ../../include/text.php:351 +msgid "last" +msgstr "laatste" -#: ../../include/attach.php:377 +#: ../../include/text.php:354 +msgid "next" +msgstr "volgende" + +#: ../../include/text.php:366 +msgid "older" +msgstr "ouder" + +#: ../../include/text.php:368 +msgid "newer" +msgstr "nieuwer" + +#: ../../include/text.php:750 +msgid "No connections" +msgstr "Geen connecties" + +#: ../../include/text.php:766 #, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d connectie" +msgstr[1] "%d connecties" -#: ../../include/attach.php:389 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." +#: ../../include/text.php:779 ../../mod/viewconnections.php:86 +msgid "View Connections" +msgstr "Connecties weergeven" -#: ../../include/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." +#: ../../include/text.php:836 ../../include/text.php:848 +#: ../../include/apps.php:147 ../../include/nav.php:165 +#: ../../mod/search.php:34 +msgid "Search" +msgstr "Zoeken" -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." -msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." +#: ../../include/text.php:915 +msgid "poke" +msgstr "aanstoten" -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." -msgstr "Pad niet beschikbaar." +#: ../../include/text.php:915 ../../include/conversation.php:243 +msgid "poked" +msgstr "aangestoten" -#: ../../include/attach.php:590 -msgid "Empty pathname" -msgstr "Padnaam leeg" +#: ../../include/text.php:916 +msgid "ping" +msgstr "ping" -#: ../../include/attach.php:606 -msgid "duplicate filename or path" -msgstr "dubbele bestandsnaam of pad" +#: ../../include/text.php:916 +msgid "pinged" +msgstr "gepingd" -#: ../../include/attach.php:630 -msgid "Path not found." -msgstr "Pad niet gevonden" +#: ../../include/text.php:917 +msgid "prod" +msgstr "por" -#: ../../include/attach.php:681 -msgid "mkdir failed." -msgstr "directory aanmaken (mkdir) mislukt." +#: ../../include/text.php:917 +msgid "prodded" +msgstr "gepord" -#: ../../include/attach.php:685 -msgid "database storage failed." -msgstr "opslag in database mislukt." +#: ../../include/text.php:918 +msgid "slap" +msgstr "slaan" -#: ../../include/features.php:23 +#: ../../include/text.php:918 +msgid "slapped" +msgstr "sloeg" + +#: ../../include/text.php:919 +msgid "finger" +msgstr "finger" + +#: ../../include/text.php:919 +msgid "fingered" +msgstr "gefingerd" + +#: ../../include/text.php:920 +msgid "rebuff" +msgstr "afpoeieren" + +#: ../../include/text.php:920 +msgid "rebuffed" +msgstr "afgepoeierd" + +#: ../../include/text.php:930 +msgid "happy" +msgstr "gelukkig" + +#: ../../include/text.php:931 +msgid "sad" +msgstr "bedroefd" + +#: ../../include/text.php:932 +msgid "mellow" +msgstr "mellow" + +#: ../../include/text.php:933 +msgid "tired" +msgstr "moe" + +#: ../../include/text.php:934 +msgid "perky" +msgstr "parmantig" + +#: ../../include/text.php:935 +msgid "angry" +msgstr "boos" + +#: ../../include/text.php:936 +msgid "stupified" +msgstr "beteuterd" + +#: ../../include/text.php:937 +msgid "puzzled" +msgstr "verward" + +#: ../../include/text.php:938 +msgid "interested" +msgstr "geïnteresseerd" + +#: ../../include/text.php:939 +msgid "bitter" +msgstr "verbitterd" + +#: ../../include/text.php:940 +msgid "cheerful" +msgstr "vrolijk" + +#: ../../include/text.php:941 +msgid "alive" +msgstr "levendig" + +#: ../../include/text.php:942 +msgid "annoyed" +msgstr "geërgerd" + +#: ../../include/text.php:943 +msgid "anxious" +msgstr "bezorgd" + +#: ../../include/text.php:944 +msgid "cranky" +msgstr "humeurig" + +#: ../../include/text.php:945 +msgid "disturbed" +msgstr "verontrust" + +#: ../../include/text.php:946 +msgid "frustrated" +msgstr "gefrustreerd " + +#: ../../include/text.php:947 +msgid "depressed" +msgstr "gedeprimeerd" + +#: ../../include/text.php:948 +msgid "motivated" +msgstr "gemotiveerd" + +#: ../../include/text.php:949 +msgid "relaxed" +msgstr "ontspannen" + +#: ../../include/text.php:950 +msgid "surprised" +msgstr "verrast" + +#: ../../include/text.php:1116 +msgid "Monday" +msgstr "maandag" + +#: ../../include/text.php:1116 +msgid "Tuesday" +msgstr "dinsdag" + +#: ../../include/text.php:1116 +msgid "Wednesday" +msgstr "woensdag" + +#: ../../include/text.php:1116 +msgid "Thursday" +msgstr "donderdag" + +#: ../../include/text.php:1116 +msgid "Friday" +msgstr "vrijdag" + +#: ../../include/text.php:1116 +msgid "Saturday" +msgstr "zaterdag" + +#: ../../include/text.php:1116 +msgid "Sunday" +msgstr "zondag" + +#: ../../include/text.php:1120 +msgid "January" +msgstr "januari" + +#: ../../include/text.php:1120 +msgid "February" +msgstr "februari" + +#: ../../include/text.php:1120 +msgid "March" +msgstr "maart" + +#: ../../include/text.php:1120 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1120 +msgid "May" +msgstr "mei" + +#: ../../include/text.php:1120 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1120 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1120 +msgid "August" +msgstr "augustus" + +#: ../../include/text.php:1120 +msgid "September" +msgstr "september" + +#: ../../include/text.php:1120 +msgid "October" +msgstr "oktober" + +#: ../../include/text.php:1120 +msgid "November" +msgstr "november" + +#: ../../include/text.php:1120 +msgid "December" +msgstr "december" + +#: ../../include/text.php:1198 +msgid "unknown.???" +msgstr "onbekend.???" + +#: ../../include/text.php:1199 +msgid "bytes" +msgstr "bytes" + +#: ../../include/text.php:1235 +msgid "remove category" +msgstr "categorie verwijderen" + +#: ../../include/text.php:1304 +msgid "remove from file" +msgstr "uit map verwijderen" + +#: ../../include/text.php:1380 ../../include/text.php:1391 +#: ../../mod/connedit.php:613 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" + +#: ../../include/text.php:1539 ../../mod/events.php:418 +msgid "Link to Source" +msgstr "Originele locatie" + +#: ../../include/text.php:1558 +msgid "Select a page layout: " +msgstr "Kies een paginalay-out: " + +#: ../../include/text.php:1561 ../../include/text.php:1621 +msgid "default" +msgstr "standaard" + +#: ../../include/text.php:1594 +msgid "Page content type: " +msgstr "Opmaakcode pagina" + +#: ../../include/text.php:1633 +msgid "Select an alternate language" +msgstr "Kies een andere taal" + +#: ../../include/text.php:1752 ../../include/conversation.php:120 +#: ../../include/diaspora.php:1936 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/like.php:302 ../../mod/tagger.php:43 +msgid "photo" +msgstr "foto" + +#: ../../include/text.php:1755 ../../include/conversation.php:123 +#: ../../mod/tagger.php:47 +msgid "event" +msgstr "gebeurtenis" + +#: ../../include/text.php:1758 ../../include/conversation.php:148 +#: ../../include/diaspora.php:1936 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/like.php:302 ../../mod/tagger.php:51 +msgid "status" +msgstr "bericht" + +#: ../../include/text.php:1760 ../../include/conversation.php:150 +#: ../../mod/tagger.php:53 +msgid "comment" +msgstr "reactie" + +#: ../../include/text.php:1765 +msgid "activity" +msgstr "activiteit" + +#: ../../include/text.php:2052 +msgid "Design" +msgstr "Ontwerp" + +#: ../../include/text.php:2055 +msgid "Blocks" +msgstr "Blokken" + +#: ../../include/text.php:2056 +msgid "Menus" +msgstr "Menu's" + +#: ../../include/text.php:2057 +msgid "Layouts" +msgstr "Lay-outs" + +#: ../../include/text.php:2058 +msgid "Pages" +msgstr "Pagina's" + +#: ../../include/text.php:2390 ../../include/RedDAV/RedBrowser.php:130 +msgid "Collection" +msgstr "map" + +#: ../../include/features.php:38 msgid "General Features" msgstr "Algemene functies" -#: ../../include/features.php:25 +#: ../../include/features.php:40 msgid "Content Expiration" msgstr "Inhoud laten verlopen" -#: ../../include/features.php:25 +#: ../../include/features.php:40 msgid "Remove posts/comments and/or private messages at a future time" msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" -#: ../../include/features.php:26 +#: ../../include/features.php:41 msgid "Multiple Profiles" msgstr "Meerdere profielen" -#: ../../include/features.php:26 +#: ../../include/features.php:41 msgid "Ability to create multiple profiles" msgstr "Mogelijkheid om meerdere profielen aan te maken" -#: ../../include/features.php:27 +#: ../../include/features.php:42 msgid "Advanced Profiles" msgstr "Geavanceerde profielen" -#: ../../include/features.php:27 +#: ../../include/features.php:42 msgid "Additional profile sections and selections" msgstr "Extra onderdelen en keuzes voor je profiel" -#: ../../include/features.php:28 +#: ../../include/features.php:43 msgid "Profile Import/Export" msgstr "Profiel importen/exporteren" -#: ../../include/features.php:28 +#: ../../include/features.php:43 msgid "Save and load profile details across sites/channels" msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." -#: ../../include/features.php:29 +#: ../../include/features.php:44 msgid "Web Pages" msgstr "Webpagina's" -#: ../../include/features.php:29 +#: ../../include/features.php:44 msgid "Provide managed web pages on your channel" msgstr "Sta beheerde webpagina's op jouw kanaal toe" -#: ../../include/features.php:30 +#: ../../include/features.php:45 msgid "Private Notes" msgstr "Privé-aantekeningen" -#: ../../include/features.php:30 +#: ../../include/features.php:45 msgid "Enables a tool to store notes and reminders" msgstr "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan" -#: ../../include/features.php:34 +#: ../../include/features.php:46 msgid "Navigation Channel Select" msgstr "Kanaal kiezen in navigatiemenu" -#: ../../include/features.php:34 +#: ../../include/features.php:46 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" -#: ../../include/features.php:38 +#: ../../include/features.php:50 msgid "Extended Identity Sharing" msgstr "Uitgebreid identiteit delen" -#: ../../include/features.php:38 +#: ../../include/features.php:50 msgid "" "Share your identity with all websites on the internet. When disabled, " "identity is only shared with sites in the matrix." msgstr "Deel jouw RedMatrix-identiteit met alle websites op het internet. Wanneer dit is uitgeschakeld wordt je identiteit alleen binnen het RedMatrix-netwerk gedeeld. Schakel dit alleen als je weet wat je doet." -#: ../../include/features.php:39 +#: ../../include/features.php:51 msgid "Expert Mode" msgstr "Expertmodus" -#: ../../include/features.php:39 +#: ../../include/features.php:51 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Schakel de expertmodus in voor geavanceerde instellingen" -#: ../../include/features.php:40 +#: ../../include/features.php:52 msgid "Premium Channel" msgstr "Premiumkanaal" -#: ../../include/features.php:40 +#: ../../include/features.php:52 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" -#: ../../include/features.php:45 +#: ../../include/features.php:57 msgid "Post Composition Features" msgstr "Functies voor het opstellen van berichten" -#: ../../include/features.php:47 +#: ../../include/features.php:59 msgid "Use Markdown" msgstr "Markdown gebruiken" -#: ../../include/features.php:47 +#: ../../include/features.php:59 msgid "Allow use of \"Markdown\" to format posts" msgstr "Sta het gebruik van \"markdown\" toe om berichten mee op te maken." -#: ../../include/features.php:49 ../../include/widgets.php:527 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanaalbronnen" +#: ../../include/features.php:60 +msgid "Large Photos" +msgstr "Grote foto's" -#: ../../include/features.php:49 +#: ../../include/features.php:60 +msgid "" +"Include large (640px) photo thumbnails in posts. If not enabled, use small " +"(320px) photo thumbnails" +msgstr "Toon grote (640px) voorbeeldfoto's in berichten. Standaard worden kleine voorbeeldfoto's (320px) getoond. " + +#: ../../include/features.php:61 msgid "Automatically import channel content from other channels or feeds" msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." -#: ../../include/features.php:50 +#: ../../include/features.php:62 msgid "Even More Encryption" msgstr "Extra encryptie" -#: ../../include/features.php:50 +#: ../../include/features.php:62 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." -#: ../../include/features.php:51 +#: ../../include/features.php:63 msgid "Flag Adult Photos" msgstr "Markeer foto's als voor volwassenen" -#: ../../include/features.php:51 +#: ../../include/features.php:63 msgid "Provide photo edit option to hide adult photos from default album view" msgstr "Zorgt voor een optie om foto's met inhoud voor volwassenen in de standaard albumweergave te verbergen" -#: ../../include/features.php:56 +#: ../../include/features.php:68 msgid "Network and Stream Filtering" msgstr "Netwerk- en streamfilter" -#: ../../include/features.php:57 +#: ../../include/features.php:69 msgid "Search by Date" msgstr "Zoek op datum" -#: ../../include/features.php:57 +#: ../../include/features.php:69 msgid "Ability to select posts by date ranges" msgstr "Mogelijkheid om berichten op datum te filteren " -#: ../../include/features.php:58 +#: ../../include/features.php:70 msgid "Collections Filter" msgstr "Filter op collecties" -#: ../../include/features.php:58 +#: ../../include/features.php:70 msgid "Enable widget to display Network posts only from selected collections" msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties" -#: ../../include/features.php:59 ../../include/widgets.php:272 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" - -#: ../../include/features.php:59 +#: ../../include/features.php:71 msgid "Save search terms for re-use" msgstr "Sla zoekopdrachten op voor hergebruik" -#: ../../include/features.php:60 +#: ../../include/features.php:72 msgid "Network Personal Tab" msgstr "Persoonlijke netwerktab" -#: ../../include/features.php:60 +#: ../../include/features.php:72 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:61 +#: ../../include/features.php:73 msgid "Network New Tab" msgstr "Nieuwe netwerktab" -#: ../../include/features.php:61 +#: ../../include/features.php:73 msgid "Enable tab to display all new Network activity" msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" -#: ../../include/features.php:62 +#: ../../include/features.php:74 msgid "Affinity Tool" msgstr "Verwantschapsfilter" -#: ../../include/features.php:62 +#: ../../include/features.php:74 msgid "Filter stream activity by depth of relationships" msgstr "Filter wat je in de Matrix ziet op hoe goed je iemand kent of mag" -#: ../../include/features.php:63 +#: ../../include/features.php:75 msgid "Suggest Channels" msgstr "Kanalen voorstellen" -#: ../../include/features.php:63 +#: ../../include/features.php:75 msgid "Show channel suggestions" msgstr "Voor jou mogelijk interessante kanalen voorstellen" -#: ../../include/features.php:68 +#: ../../include/features.php:80 msgid "Post/Comment Tools" msgstr "Bericht- en reactiehulpmiddelen" -#: ../../include/features.php:71 +#: ../../include/features.php:81 msgid "Tagging" msgstr "Taggen" -#: ../../include/features.php:71 +#: ../../include/features.php:81 msgid "Ability to tag existing posts" msgstr "Mogelijkheid om bestaande berichten te taggen" -#: ../../include/features.php:72 +#: ../../include/features.php:82 msgid "Post Categories" msgstr "Categorieën berichten" -#: ../../include/features.php:72 +#: ../../include/features.php:82 msgid "Add categories to your posts" msgstr "Voeg categorieën toe aan je berichten" -#: ../../include/features.php:73 ../../include/contact_widgets.php:57 -#: ../../include/widgets.php:302 -msgid "Saved Folders" -msgstr "Bewaarde mappen" - -#: ../../include/features.php:73 +#: ../../include/features.php:83 msgid "Ability to file posts under folders" msgstr "Mogelijkheid om berichten in mappen op te slaan" -#: ../../include/features.php:74 +#: ../../include/features.php:84 msgid "Dislike Posts" msgstr "Vind berichten niet leuk" -#: ../../include/features.php:74 +#: ../../include/features.php:84 msgid "Ability to dislike posts/comments" msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" -#: ../../include/features.php:75 +#: ../../include/features.php:85 msgid "Star Posts" msgstr "Geef berichten een ster" -#: ../../include/features.php:75 +#: ../../include/features.php:85 msgid "Ability to mark special posts with a star indicator" msgstr "Mogelijkheid om speciale berichten met een ster te markeren" -#: ../../include/features.php:76 +#: ../../include/features.php:86 msgid "Tag Cloud" msgstr "Tagwolk" -#: ../../include/features.php:76 +#: ../../include/features.php:86 msgid "Provide a personal tag cloud on your channel page" msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" #: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:262 +#: ../../include/RedDAV/RedBrowser.php:266 msgid "parent" msgstr "omhoog" -#: ../../include/RedDAV/RedBrowser.php:130 -#: ../../include/RedDAV/RedBrowser.php:339 -msgid "Collection" -msgstr "map" - #: ../../include/RedDAV/RedBrowser.php:133 msgid "Principal" msgstr "principal" @@ -819,10 +1240,10 @@ msgstr "Planning-postvak IN" msgid "Schedule Outbox" msgstr "Planning-postvak UIT" -#: ../../include/RedDAV/RedBrowser.php:163 ../../include/conversation.php:992 -#: ../../include/apps.php:336 ../../include/apps.php:387 -#: ../../mod/connedit.php:513 ../../mod/photos.php:710 -#: ../../mod/photos.php:1129 +#: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:336 +#: ../../include/apps.php:387 ../../include/conversation.php:1026 +#: ../../mod/photos.php:681 ../../mod/photos.php:1100 +#: ../../mod/connedit.php:562 msgid "Unknown" msgstr "Onbekend" @@ -836,8 +1257,8 @@ msgstr "%1$s gebruikt" msgid "%1$s used of %2$s (%3$s%)" msgstr "%1$s van %2$s gebruikt (%3$s%)" -#: ../../include/RedDAV/RedBrowser.php:249 ../../include/conversation.php:1539 -#: ../../include/apps.php:135 ../../include/nav.php:106 +#: ../../include/RedDAV/RedBrowser.php:249 ../../include/apps.php:135 +#: ../../include/conversation.php:1573 ../../include/nav.php:98 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "Bestanden" @@ -846,98 +1267,113 @@ msgstr "Bestanden" msgid "Total" msgstr "Totaal" -#: ../../include/RedDAV/RedBrowser.php:258 ../../mod/settings.php:579 -#: ../../mod/settings.php:605 ../../mod/admin.php:866 -msgid "Name" -msgstr "Naam" +#: ../../include/RedDAV/RedBrowser.php:253 +msgid "Shared" +msgstr "Gedeeld" -#: ../../include/RedDAV/RedBrowser.php:259 -msgid "Type" -msgstr "Type" - -#: ../../include/RedDAV/RedBrowser.php:260 -msgid "Size" -msgstr "Grootte" - -#: ../../include/RedDAV/RedBrowser.php:261 -msgid "Last Modified" -msgstr "Laatst gewijzigd" - -#: ../../include/RedDAV/RedBrowser.php:264 ../../include/conversation.php:639 -#: ../../include/ItemObject.php:120 ../../include/apps.php:255 -#: ../../mod/group.php:176 ../../mod/settings.php:640 -#: ../../mod/connedit.php:476 ../../mod/thing.php:234 ../../mod/admin.php:730 -#: ../../mod/admin.php:861 ../../mod/photos.php:1067 -msgid "Delete" -msgstr "Verwijderen" - -#: ../../include/RedDAV/RedBrowser.php:312 -msgid "Create new folder" -msgstr "Nieuwe map aanmaken" - -#: ../../include/RedDAV/RedBrowser.php:313 ../../mod/mitem.php:169 +#: ../../include/RedDAV/RedBrowser.php:254 +#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/mitem.php:169 #: ../../mod/menu.php:100 ../../mod/new_channel.php:121 msgid "Create" msgstr "Aanmaken" -#: ../../include/RedDAV/RedBrowser.php:314 -msgid "Upload file" -msgstr "Bestand uploaden" - -#: ../../include/RedDAV/RedBrowser.php:315 ../../mod/profile_photo.php:361 -#: ../../mod/photos.php:735 ../../mod/photos.php:1243 +#: ../../include/RedDAV/RedBrowser.php:255 +#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:706 +#: ../../mod/photos.php:1214 ../../mod/profile_photo.php:362 msgid "Upload" msgstr "Uploaden" +#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/settings.php:579 +#: ../../mod/settings.php:605 ../../mod/admin.php:871 +#: ../../mod/sharedwithme.php:100 +msgid "Name" +msgstr "Naam" + +#: ../../include/RedDAV/RedBrowser.php:263 +msgid "Type" +msgstr "Type" + +#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:101 +msgid "Size" +msgstr "Grootte" + +#: ../../include/RedDAV/RedBrowser.php:265 ../../mod/sharedwithme.php:102 +msgid "Last Modified" +msgstr "Laatst gewijzigd" + +#: ../../include/RedDAV/RedBrowser.php:268 ../../include/apps.php:255 +#: ../../include/ItemObject.php:120 ../../include/conversation.php:644 +#: ../../mod/settings.php:640 ../../mod/photos.php:1038 +#: ../../mod/group.php:176 ../../mod/thing.php:234 ../../mod/admin.php:735 +#: ../../mod/admin.php:866 ../../mod/connedit.php:525 +msgid "Delete" +msgstr "Verwijderen" + +#: ../../include/RedDAV/RedBrowser.php:302 +msgid "Create new folder" +msgstr "Nieuwe map aanmaken" + +#: ../../include/RedDAV/RedBrowser.php:304 +msgid "Upload file" +msgstr "Bestand uploaden" + #: ../../include/bookmarks.php:35 #, php-format msgid "%1$s's bookmarks" msgstr "Bladwijzers van %1$s" -#: ../../include/dir_fns.php:68 +#: ../../include/dir_fns.php:88 msgid "Directory Options" msgstr "Opties kanalengids" -#: ../../include/dir_fns.php:69 +#: ../../include/dir_fns.php:89 msgid "Alphabetic" msgstr "Alfabetisch" -#: ../../include/dir_fns.php:70 +#: ../../include/dir_fns.php:90 msgid "Reverse Alphabetic" msgstr "Omgekeerd alfabetisch" -#: ../../include/dir_fns.php:71 +#: ../../include/dir_fns.php:91 msgid "Newest to Oldest" msgstr "Nieuw naar oud" -#: ../../include/dir_fns.php:72 +#: ../../include/dir_fns.php:92 msgid "Oldest to Newest" msgstr "Oud naar nieuw" -#: ../../include/dir_fns.php:73 +#: ../../include/dir_fns.php:93 msgid "Public Forums Only" msgstr "Alleen openbare forums" -#: ../../include/dir_fns.php:75 +#: ../../include/dir_fns.php:95 msgid "Sort" msgstr "Sorteren" -#: ../../include/dir_fns.php:91 +#: ../../include/dir_fns.php:111 msgid "Enable Safe Search" msgstr "Veilig zoeken inschakelen" -#: ../../include/dir_fns.php:93 +#: ../../include/dir_fns.php:113 msgid "Disable Safe Search" msgstr "Veilig zoeken uitschakelen" -#: ../../include/dir_fns.php:95 +#: ../../include/dir_fns.php:115 msgid "Safe Mode" msgstr "Veilig zoeken" -#: ../../include/comanche.php:35 ../../mod/admin.php:353 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standaard" +#: ../../include/Contact.php:124 +msgid "New window" +msgstr "Nieuw venster" + +#: ../../include/Contact.php:125 +msgid "Open the selected location in a different window or browser tab" +msgstr "Open de geselecteerde locatie in een ander venster of tab" + +#: ../../include/Contact.php:215 ../../mod/admin.php:651 +#, php-format +msgid "User '%s' deleted" +msgstr "Account '%s' verwijderd" #: ../../include/contact_selectors.php:56 msgid "Frequently" @@ -975,8 +1411,8 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:726 -#: ../../mod/admin.php:735 ../../boot.php:1544 +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:731 +#: ../../mod/admin.php:740 ../../boot.php:1552 msgid "Email" msgstr "E-mail" @@ -1004,1808 +1440,67 @@ msgstr "XMPP/IM" msgid "MySpace" msgstr "MySpace" -#: ../../include/auth.php:130 -msgid "Logged out." -msgstr "Uitgelogd." - -#: ../../include/auth.php:271 -msgid "Failed authentication" -msgstr "Mislukte authenticatie" - -#: ../../include/auth.php:285 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Inloggen mislukt." - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Tonen" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Niet tonen" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:596 -#: ../../mod/chat.php:209 ../../mod/filestorage.php:141 -#: ../../mod/photos.php:588 ../../mod/photos.php:947 -msgid "Permissions" -msgstr "Permissies" - -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:320 -#: ../../mod/photos.php:1146 -msgid "Close" -msgstr "Sluiten" - -#: ../../include/identity.php:31 ../../mod/item.php:1115 -msgid "Unable to obtain identity information from database" -msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" - -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Ontbrekende naam" - -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Naam te lang" - -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Geen account-identificator" - -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "Bijnaam is verplicht" - -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "Deze naam is gereserveerd. Kies een andere." - -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." - -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "Niet in staat om aangemaakte identiteit te vinden" - -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "Standaardprofiel" - -#: ../../include/identity.php:387 ../../include/identity.php:388 -#: ../../include/identity.php:395 ../../include/widgets.php:428 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:329 -#: ../../mod/settings.php:333 ../../mod/settings.php:334 -#: ../../mod/settings.php:337 ../../mod/settings.php:348 -#: ../../mod/connedit.php:510 -msgid "Friends" -msgstr "Vrienden" - -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "Opgevraagd kanaal is niet beschikbaar." - -#: ../../include/identity.php:691 ../../mod/achievements.php:11 -#: ../../mod/profile.php:16 ../../mod/webpages.php:29 ../../mod/blocks.php:29 -#: ../../mod/editblock.php:29 ../../mod/editlayout.php:28 -#: ../../mod/editwebpage.php:28 ../../mod/filestorage.php:48 -#: ../../mod/connect.php:13 ../../mod/layouts.php:29 ../../mod/hcard.php:8 -msgid "Requested profile is not available." -msgstr "Opgevraagd profiel is niet beschikbaar" - -#: ../../include/identity.php:840 ../../include/conversation.php:937 -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../mod/suggest.php:51 -#: ../../mod/match.php:62 ../../mod/directory.php:264 -msgid "Connect" -msgstr "Verbinden" - -#: ../../include/identity.php:854 ../../mod/profiles.php:757 -msgid "Change profile photo" -msgstr "Profielfoto veranderen" - -#: ../../include/identity.php:861 -msgid "Profiles" -msgstr "Profielen" - -#: ../../include/identity.php:861 -msgid "Manage/edit profiles" -msgstr "Profielen beheren/bewerken" - -#: ../../include/identity.php:862 ../../mod/profiles.php:758 -msgid "Create New Profile" -msgstr "Nieuw profiel aanmaken" - -#: ../../include/identity.php:865 ../../include/nav.php:103 -msgid "Edit Profile" -msgstr "Profiel bewerken" - -#: ../../include/identity.php:878 ../../mod/profiles.php:769 -msgid "Profile Image" -msgstr "Profielfoto" - -#: ../../include/identity.php:881 -msgid "visible to everybody" -msgstr "Voor iedereen zichtbaar" - -#: ../../include/identity.php:882 ../../mod/profiles.php:652 -#: ../../mod/profiles.php:773 -msgid "Edit visibility" -msgstr "Zichtbaarheid bewerken" - -#: ../../include/identity.php:898 ../../include/identity.php:1135 -msgid "Gender:" -msgstr "Geslacht:" - -#: ../../include/identity.php:899 ../../include/identity.php:1179 -msgid "Status:" -msgstr "Status:" - -#: ../../include/identity.php:900 ../../include/identity.php:1190 -msgid "Homepage:" -msgstr "Homepagina:" - -#: ../../include/identity.php:901 -msgid "Online Now" -msgstr "Nu online" - -#: ../../include/identity.php:979 ../../include/identity.php:1059 -#: ../../mod/ping.php:329 -msgid "g A l F d" -msgstr "G:i, l d F" - -#: ../../include/identity.php:980 ../../include/identity.php:1060 -msgid "F d" -msgstr "d F" - -#: ../../include/identity.php:1025 ../../include/identity.php:1100 -#: ../../mod/ping.php:351 -msgid "[today]" -msgstr "[vandaag]" - -#: ../../include/identity.php:1037 -msgid "Birthday Reminders" -msgstr "Verjaardagsherinneringen" - -#: ../../include/identity.php:1038 -msgid "Birthdays this week:" -msgstr "Verjaardagen deze week:" - -#: ../../include/identity.php:1093 -msgid "[No description]" -msgstr "[Geen omschrijving]" - -#: ../../include/identity.php:1111 -msgid "Event Reminders" -msgstr "Herinneringen" - -#: ../../include/identity.php:1112 -msgid "Events this week:" -msgstr "Gebeurtenissen deze week:" - -#: ../../include/identity.php:1125 ../../include/identity.php:1254 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profiel" - -#: ../../include/identity.php:1133 ../../mod/settings.php:1022 -msgid "Full Name:" -msgstr "Volledige naam:" - -#: ../../include/identity.php:1140 -msgid "Like this channel" -msgstr "Vind dit kanaal leuk" - -#: ../../include/identity.php:1164 -msgid "j F, Y" -msgstr "F j Y" - -#: ../../include/identity.php:1165 -msgid "j F" -msgstr "F j" - -#: ../../include/identity.php:1172 -msgid "Birthday:" -msgstr "Geboortedatum:" - -#: ../../include/identity.php:1176 -msgid "Age:" -msgstr "Leeftijd:" - -#: ../../include/identity.php:1185 -#, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" - -#: ../../include/identity.php:1188 ../../mod/profiles.php:674 -msgid "Sexual Preference:" -msgstr "Seksuele voorkeur:" - -#: ../../include/identity.php:1192 ../../mod/profiles.php:676 -msgid "Hometown:" -msgstr "Oorspronkelijk uit:" - -#: ../../include/identity.php:1194 -msgid "Tags:" -msgstr "Tags:" - -#: ../../include/identity.php:1196 ../../mod/profiles.php:677 -msgid "Political Views:" -msgstr "Politieke overtuigingen:" - -#: ../../include/identity.php:1198 -msgid "Religion:" -msgstr "Religie:" - -#: ../../include/identity.php:1200 -msgid "About:" -msgstr "Over:" - -#: ../../include/identity.php:1202 -msgid "Hobbies/Interests:" -msgstr "Hobby's/interesses:" - -#: ../../include/identity.php:1204 ../../mod/profiles.php:680 -msgid "Likes:" -msgstr "Houdt van:" - -#: ../../include/identity.php:1206 ../../mod/profiles.php:681 -msgid "Dislikes:" -msgstr "Houdt niet van:" - -#: ../../include/identity.php:1209 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" - -#: ../../include/identity.php:1221 -msgid "My other channels:" -msgstr "Mijn andere kanalen" - -#: ../../include/identity.php:1224 -msgid "Musical interests:" -msgstr "Muzikale interesses:" - -#: ../../include/identity.php:1226 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" - -#: ../../include/identity.php:1228 -msgid "Television:" -msgstr "Televisie:" - -#: ../../include/identity.php:1230 -msgid "Film/dance/culture/entertainment:" -msgstr "Films/dansen/cultuur/vermaak:" - -#: ../../include/identity.php:1232 -msgid "Love/Romance:" -msgstr "Liefde/romantiek:" - -#: ../../include/identity.php:1234 -msgid "Work/employment:" -msgstr "Werk/beroep:" - -#: ../../include/identity.php:1236 -msgid "School/education:" -msgstr "School/opleiding:" - -#: ../../include/identity.php:1256 -msgid "Like this thing" -msgstr "Vind dit ding leuk" - -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 -msgid "Advanced" -msgstr "Geavanceerd" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Kanalen vinden" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Verbinden/volgen" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeeld: Robert Morgenstein, vissen" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 -#: ../../mod/directory.php:317 ../../mod/directory.php:322 -msgid "Find" -msgstr "Vinden" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -#: ../../mod/directory.php:321 -msgid "Channel Suggestions" -msgstr "Voorgestelde kanalen" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Willekeurig profiel" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" - -#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:305 -msgid "Everything" -msgstr "Alles" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeenschappelijke connectie" -msgstr[1] "%d gemeenschappelijke connecties" - -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "meer connecties weergeven" - -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." - -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may 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 collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." - -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Standaard privacy-collectie voor nieuwe kanalen" - -#: ../../include/group.php:254 ../../mod/admin.php:735 -msgid "All Channels" -msgstr "Alle kanalen" - -#: ../../include/group.php:276 -msgid "edit" -msgstr "bewerken" - -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Collecties" - -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Collectie bewerken" - -#: ../../include/group.php:300 -msgid "Create a new collection" -msgstr "Nieuwe collectie aanmaken" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanalen die zich in geen enkele collectie bevinden" - -#: ../../include/group.php:303 ../../include/widgets.php:273 -msgid "add" -msgstr "toevoegen" - -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres" - -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan" - -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd." - -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist" - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden" - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Account-informatie kon niet opgeslagen worden." - -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Beheerder" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "jouw registratiewachtwoord" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Registratiegegevens voor %s" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Account goedgekeurd" - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Account is geverifieerd. Je kan inloggen." - -#: ../../include/account.php:648 ../../include/account.php:650 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." - -#: ../../include/account.php:656 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." - -#: ../../include/account.php:661 -msgid "This action is not available under your subscription plan." -msgstr "Deze handeling is niet mogelijk met jouw abonnement." - -#: ../../include/text.php:320 -msgid "prev" -msgstr "vorige" - -#: ../../include/text.php:322 -msgid "first" -msgstr "eerste" - -#: ../../include/text.php:351 -msgid "last" -msgstr "laatste" - -#: ../../include/text.php:354 -msgid "next" -msgstr "volgende" - -#: ../../include/text.php:366 -msgid "older" -msgstr "ouder" - -#: ../../include/text.php:368 -msgid "newer" -msgstr "nieuwer" - -#: ../../include/text.php:756 -msgid "No connections" -msgstr "Geen connecties" - -#: ../../include/text.php:772 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d connectie" -msgstr[1] "%d connecties" - -#: ../../include/text.php:785 -msgid "View Connections" -msgstr "Connecties weergeven" - -#: ../../include/text.php:842 ../../include/text.php:854 -#: ../../include/apps.php:147 ../../include/nav.php:173 -#: ../../mod/search.php:30 -msgid "Search" -msgstr "Zoeken" - -#: ../../include/text.php:843 ../../include/text.php:855 -#: ../../include/widgets.php:192 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 ../../mod/admin.php:1339 -#: ../../mod/admin.php:1360 -msgid "Save" -msgstr "Opslaan" - -#: ../../include/text.php:920 -msgid "poke" -msgstr "aanstoten" - -#: ../../include/text.php:920 ../../include/conversation.php:243 -msgid "poked" -msgstr "aangestoten" - -#: ../../include/text.php:921 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:921 -msgid "pinged" -msgstr "gepingd" - -#: ../../include/text.php:922 -msgid "prod" -msgstr "por" - -#: ../../include/text.php:922 -msgid "prodded" -msgstr "gepord" - -#: ../../include/text.php:923 -msgid "slap" -msgstr "slaan" - -#: ../../include/text.php:923 -msgid "slapped" -msgstr "sloeg" - -#: ../../include/text.php:924 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:924 -msgid "fingered" -msgstr "gefingerd" - -#: ../../include/text.php:925 -msgid "rebuff" -msgstr "afpoeieren" - -#: ../../include/text.php:925 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: ../../include/text.php:935 -msgid "happy" -msgstr "gelukkig" - -#: ../../include/text.php:936 -msgid "sad" -msgstr "bedroefd" - -#: ../../include/text.php:937 -msgid "mellow" -msgstr "mellow" - -#: ../../include/text.php:938 -msgid "tired" -msgstr "moe" - -#: ../../include/text.php:939 -msgid "perky" -msgstr "parmantig" - -#: ../../include/text.php:940 -msgid "angry" -msgstr "boos" - -#: ../../include/text.php:941 -msgid "stupified" -msgstr "beteuterd" - -#: ../../include/text.php:942 -msgid "puzzled" -msgstr "verward" - -#: ../../include/text.php:943 -msgid "interested" -msgstr "geïnteresseerd" - -#: ../../include/text.php:944 -msgid "bitter" -msgstr "verbitterd" - -#: ../../include/text.php:945 -msgid "cheerful" -msgstr "vrolijk" - -#: ../../include/text.php:946 -msgid "alive" -msgstr "levendig" - -#: ../../include/text.php:947 -msgid "annoyed" -msgstr "geërgerd" - -#: ../../include/text.php:948 -msgid "anxious" -msgstr "bezorgd" - -#: ../../include/text.php:949 -msgid "cranky" -msgstr "humeurig" - -#: ../../include/text.php:950 -msgid "disturbed" -msgstr "verontrust" - -#: ../../include/text.php:951 -msgid "frustrated" -msgstr "gefrustreerd " - -#: ../../include/text.php:952 -msgid "depressed" -msgstr "gedeprimeerd" - -#: ../../include/text.php:953 -msgid "motivated" -msgstr "gemotiveerd" - -#: ../../include/text.php:954 -msgid "relaxed" -msgstr "ontspannen" - -#: ../../include/text.php:955 -msgid "surprised" -msgstr "verrast" - -#: ../../include/text.php:1121 -msgid "Monday" -msgstr "maandag" - -#: ../../include/text.php:1121 -msgid "Tuesday" -msgstr "dinsdag" - -#: ../../include/text.php:1121 -msgid "Wednesday" -msgstr "woensdag" - -#: ../../include/text.php:1121 -msgid "Thursday" -msgstr "donderdag" - -#: ../../include/text.php:1121 -msgid "Friday" -msgstr "vrijdag" - -#: ../../include/text.php:1121 -msgid "Saturday" -msgstr "zaterdag" - -#: ../../include/text.php:1121 -msgid "Sunday" -msgstr "zondag" - -#: ../../include/text.php:1125 -msgid "January" -msgstr "januari" - -#: ../../include/text.php:1125 -msgid "February" -msgstr "februari" - -#: ../../include/text.php:1125 -msgid "March" -msgstr "maart" - -#: ../../include/text.php:1125 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1125 -msgid "May" -msgstr "mei" - -#: ../../include/text.php:1125 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1125 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1125 -msgid "August" -msgstr "augustus" - -#: ../../include/text.php:1125 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1125 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1125 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1125 -msgid "December" -msgstr "december" - -#: ../../include/text.php:1203 -msgid "unknown.???" -msgstr "onbekend.???" - -#: ../../include/text.php:1204 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1240 -msgid "remove category" -msgstr "categorie verwijderen" - -#: ../../include/text.php:1309 -msgid "remove from file" -msgstr "uit map verwijderen" - -#: ../../include/text.php:1385 ../../include/text.php:1396 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" - -#: ../../include/text.php:1544 ../../mod/events.php:414 -msgid "Link to Source" -msgstr "Originele locatie" - -#: ../../include/text.php:1563 -msgid "Select a page layout: " -msgstr "Kies een paginalay-out: " - -#: ../../include/text.php:1566 ../../include/text.php:1626 -msgid "default" -msgstr "standaard" - -#: ../../include/text.php:1599 -msgid "Page content type: " -msgstr "Opmaakcode pagina" - -#: ../../include/text.php:1638 -msgid "Select an alternate language" -msgstr "Kies een andere taal" - -#: ../../include/text.php:1757 ../../include/conversation.php:120 -#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:45 -msgid "photo" -msgstr "foto" - -#: ../../include/text.php:1760 ../../include/conversation.php:123 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "gebeurtenis" - -#: ../../include/text.php:1763 ../../include/conversation.php:148 -#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:53 -msgid "status" -msgstr "bericht" - -#: ../../include/text.php:1765 ../../include/conversation.php:150 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "reactie" - -#: ../../include/text.php:1770 -msgid "activity" -msgstr "activiteit" - -#: ../../include/text.php:2057 -msgid "Design" -msgstr "Ontwerp" - -#: ../../include/text.php:2060 -msgid "Blocks" -msgstr "Blokken" - -#: ../../include/text.php:2061 -msgid "Menus" -msgstr "Menu's" - -#: ../../include/text.php:2062 -msgid "Layouts" -msgstr "Lay-outs" - -#: ../../include/text.php:2063 -msgid "Pages" -msgstr "Pagina's" - -#: ../../include/api.php:1084 -msgid "Public Timeline" -msgstr "Openbare tijdlijn" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Naam chatkanaal ontbreekt" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Naam chatkanaal bestaat al" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ongeldige omschrijving chatkanaal" - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Chatkanaal niet gevonden" - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Chatkanaal is vol" - -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." - -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." - -#: ../../include/follow.php:82 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." - -#: ../../include/follow.php:99 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." - -#: ../../include/follow.php:135 ../../include/follow.php:202 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." - -#: ../../include/follow.php:176 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." - -#: ../../include/follow.php:192 -msgid "local account not found." -msgstr "lokale account niet gevonden." - -#: ../../include/follow.php:220 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" - -#: ../../include/conversation.php:126 ../../mod/like.php:89 -msgid "channel" -msgstr "kanaal" - -#: ../../include/conversation.php:164 ../../include/diaspora.php:1957 -#: ../../mod/like.php:336 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s leuk" - -#: ../../include/conversation.php:167 ../../mod/like.php:338 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s niet leuk" - -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s is nu met %2$s verbonden" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s heeft %2$s aangestoten" - -#: ../../include/conversation.php:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s is %2$s" - -#: ../../include/conversation.php:638 ../../include/ItemObject.php:126 -msgid "Select" -msgstr "Kies" - -#: ../../include/conversation.php:646 ../../include/ItemObject.php:89 -msgid "Private Message" -msgstr "Privébericht" - -#: ../../include/conversation.php:653 ../../include/ItemObject.php:194 -msgid "Message signature validated" -msgstr "Berichtkenmerk gevalideerd" - -#: ../../include/conversation.php:654 ../../include/ItemObject.php:195 -msgid "Message signature incorrect" -msgstr "Berichtkenmerk onjuist" - -#: ../../include/conversation.php:674 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Bekijk het profiel van %s @ %s" - -#: ../../include/conversation.php:689 -msgid "Categories:" -msgstr "Categorieën:" - -#: ../../include/conversation.php:690 -msgid "Filed under:" -msgstr "Bewaard onder:" - -#: ../../include/conversation.php:698 ../../include/ItemObject.php:274 -#, php-format -msgid " from %s" -msgstr " van %s" - -#: ../../include/conversation.php:701 ../../include/ItemObject.php:277 -#, php-format -msgid "last edited: %s" -msgstr "laatst bewerkt: %s" - -#: ../../include/conversation.php:702 ../../include/ItemObject.php:278 -#, php-format -msgid "Expires: %s" -msgstr "Verloopt: %s" - -#: ../../include/conversation.php:717 -msgid "View in context" -msgstr "In context bekijken" - -#: ../../include/conversation.php:719 ../../include/conversation.php:1142 -#: ../../include/ItemObject.php:325 ../../mod/editpost.php:121 -#: ../../mod/mail.php:238 ../../mod/mail.php:353 ../../mod/editblock.php:152 -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:183 -#: ../../mod/photos.php:975 -msgid "Please wait" -msgstr "Even wachten" - -#: ../../include/conversation.php:835 -msgid "remove" -msgstr "verwijderen" - -#: ../../include/conversation.php:839 ../../include/nav.php:257 -msgid "Loading..." -msgstr "Aan het laden..." - -#: ../../include/conversation.php:840 -msgid "Delete Selected Items" -msgstr "Verwijder de geselecteerde items" - -#: ../../include/conversation.php:931 -msgid "View Source" -msgstr "Bron weergeven" - -#: ../../include/conversation.php:932 -msgid "Follow Thread" -msgstr "Conversatie volgen" - -#: ../../include/conversation.php:933 -msgid "View Status" -msgstr "Status weergeven" - -#: ../../include/conversation.php:934 ../../include/nav.php:99 -#: ../../mod/connedit.php:429 ../../mod/connedit.php:545 -msgid "View Profile" -msgstr "Profiel weergeven" - -#: ../../include/conversation.php:935 -msgid "View Photos" -msgstr "Foto's weergeven" - -#: ../../include/conversation.php:936 -msgid "Matrix Activity" -msgstr "Activiteit in de RedMatrix" - -#: ../../include/conversation.php:938 -msgid "Edit Contact" -msgstr "Contact bewerken" - -#: ../../include/conversation.php:939 -msgid "Send PM" -msgstr "Privébericht verzenden" - -#: ../../include/conversation.php:940 ../../include/apps.php:145 -msgid "Poke" -msgstr "Aanstoten" - -#: ../../include/conversation.php:1013 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." - -#: ../../include/conversation.php:1013 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." - -#: ../../include/conversation.php:1017 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d persoon vindt dit leuk." -msgstr[1] "%2$d personen vinden dit leuk." - -#: ../../include/conversation.php:1019 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d persoon vindt dit niet leuk." -msgstr[1] "%2$d personen vinden dit niet leuk." - -#: ../../include/conversation.php:1025 -msgid "and" -msgstr "en" - -#: ../../include/conversation.php:1028 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", en %d ander persoon" -msgstr[1] ", en %d andere personen" - -#: ../../include/conversation.php:1029 -#, php-format -msgid "%s like this." -msgstr "%s vinden dit leuk." - -#: ../../include/conversation.php:1029 -#, php-format -msgid "%s don't like this." -msgstr "%s vinden dit niet leuk." - -#: ../../include/conversation.php:1086 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" - -#: ../../include/conversation.php:1087 ../../mod/mail.php:171 -#: ../../mod/mail.php:286 -msgid "Please enter a link URL:" -msgstr "Vul een internetadres/URL in:" - -#: ../../include/conversation.php:1088 -msgid "Please enter a video link/URL:" -msgstr "Vul een videolink/URL in:" - -#: ../../include/conversation.php:1089 -msgid "Please enter an audio link/URL:" -msgstr "Vul een audiolink/URL in:" - -#: ../../include/conversation.php:1090 -msgid "Tag term:" -msgstr "Tag:" - -#: ../../include/conversation.php:1091 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Bewaar in map: " - -#: ../../include/conversation.php:1092 -msgid "Where are you right now?" -msgstr "Waar bevind je je op dit moment?" - -#: ../../include/conversation.php:1093 ../../mod/editpost.php:52 -#: ../../mod/mail.php:172 ../../mod/mail.php:287 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verloopt op DD-MM-YYYY om HH:MM" - -#: ../../include/conversation.php:1117 ../../mod/editblock.php:198 -#: ../../mod/editlayout.php:193 ../../mod/editwebpage.php:230 -#: ../../mod/layouts.php:168 ../../mod/photos.php:974 -msgid "Share" -msgstr "Delen" - -#: ../../include/conversation.php:1119 ../../mod/editwebpage.php:170 -msgid "Page link title" -msgstr "Titel van paginalink" - -#: ../../include/conversation.php:1122 -msgid "Post as" -msgstr "Bericht plaatsen als" - -#: ../../include/conversation.php:1123 ../../mod/editpost.php:113 -#: ../../mod/mail.php:235 ../../mod/mail.php:349 ../../mod/editblock.php:144 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:175 -msgid "Upload photo" -msgstr "Foto uploaden" - -#: ../../include/conversation.php:1124 -msgid "upload photo" -msgstr "foto uploaden" - -#: ../../include/conversation.php:1125 ../../mod/editpost.php:114 -#: ../../mod/mail.php:236 ../../mod/mail.php:350 ../../mod/editblock.php:145 -#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:176 -msgid "Attach file" -msgstr "Bestand toevoegen" - -#: ../../include/conversation.php:1126 -msgid "attach file" -msgstr "bestand toevoegen" - -#: ../../include/conversation.php:1127 ../../mod/editpost.php:115 -#: ../../mod/mail.php:237 ../../mod/mail.php:351 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:177 -msgid "Insert web link" -msgstr "Weblink invoegen" - -#: ../../include/conversation.php:1128 -msgid "web link" -msgstr "Weblink" - -#: ../../include/conversation.php:1129 -msgid "Insert video link" -msgstr "Videolink invoegen" - -#: ../../include/conversation.php:1130 -msgid "video link" -msgstr "videolink" - -#: ../../include/conversation.php:1131 -msgid "Insert audio link" -msgstr "Audiolink invoegen" - -#: ../../include/conversation.php:1132 -msgid "audio link" -msgstr "audiolink" - -#: ../../include/conversation.php:1133 ../../mod/editpost.php:119 -#: ../../mod/editblock.php:150 ../../mod/editlayout.php:146 -#: ../../mod/editwebpage.php:181 -msgid "Set your location" -msgstr "Locatie instellen" - -#: ../../include/conversation.php:1134 -msgid "set location" -msgstr "locatie instellen" - -#: ../../include/conversation.php:1135 ../../mod/editpost.php:120 -#: ../../mod/editblock.php:151 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:182 -msgid "Clear browser location" -msgstr "Locatie van webbrowser wissen" - -#: ../../include/conversation.php:1136 -msgid "clear location" -msgstr "locatie wissen" - -#: ../../include/conversation.php:1138 ../../mod/editpost.php:132 -#: ../../mod/editblock.php:164 ../../mod/editlayout.php:159 -#: ../../mod/editwebpage.php:198 -msgid "Title (optional)" -msgstr "Titel (optioneel)" - -#: ../../include/conversation.php:1141 ../../mod/editpost.php:134 -#: ../../mod/editblock.php:167 ../../mod/editlayout.php:162 -#: ../../mod/editwebpage.php:200 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" - -#: ../../include/conversation.php:1143 ../../mod/editpost.php:122 -#: ../../mod/editblock.php:153 ../../mod/editlayout.php:149 -#: ../../mod/editwebpage.php:184 -msgid "Permission settings" -msgstr "Permissies" - -#: ../../include/conversation.php:1144 -msgid "permissions" -msgstr "permissies" - -#: ../../include/conversation.php:1151 ../../mod/editpost.php:129 -#: ../../mod/editblock.php:161 ../../mod/editlayout.php:156 -#: ../../mod/editwebpage.php:193 -msgid "Public post" -msgstr "Openbaar bericht" - -#: ../../include/conversation.php:1153 ../../mod/editpost.php:135 -#: ../../mod/editblock.php:168 ../../mod/editlayout.php:163 -#: ../../mod/editwebpage.php:201 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" - -#: ../../include/conversation.php:1166 ../../mod/editpost.php:146 -#: ../../mod/mail.php:242 ../../mod/mail.php:356 ../../mod/editblock.php:178 -#: ../../mod/editlayout.php:173 ../../mod/editwebpage.php:210 -msgid "Set expiration date" -msgstr "Verloopdatum instellen" - -#: ../../include/conversation.php:1168 ../../include/ItemObject.php:641 -#: ../../mod/editpost.php:148 ../../mod/mail.php:244 ../../mod/mail.php:358 -msgid "Encrypt text" -msgstr "Tekst versleutelen" - -#: ../../include/conversation.php:1170 ../../mod/events.php:580 -#: ../../mod/editpost.php:150 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1171 ../../mod/events.php:579 -#: ../../mod/editpost.php:151 ../../mod/settings.php:578 -#: ../../mod/settings.php:604 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" -msgstr "Annuleren" - -#: ../../include/conversation.php:1415 -msgid "Discover" -msgstr "Ontdekken" - -#: ../../include/conversation.php:1418 -msgid "Imported public streams" -msgstr "Openbare streams importeren" - -#: ../../include/conversation.php:1423 -msgid "Commented Order" -msgstr "Nieuwe reacties bovenaan" - -#: ../../include/conversation.php:1426 -msgid "Sort by Comment Date" -msgstr "Berichten met nieuwe reacties bovenaan" - -#: ../../include/conversation.php:1430 -msgid "Posted Order" -msgstr "Nieuwe berichten bovenaan" - -#: ../../include/conversation.php:1433 -msgid "Sort by Post Date" -msgstr "Nieuwe berichten bovenaan" - -#: ../../include/conversation.php:1438 ../../include/widgets.php:94 -msgid "Personal" -msgstr "Persoonlijk" - -#: ../../include/conversation.php:1441 -msgid "Posts that mention or involve you" -msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" - -#: ../../include/conversation.php:1447 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:80 -msgid "New" -msgstr "Nieuw" - -#: ../../include/conversation.php:1450 -msgid "Activity Stream - by date" -msgstr "Activiteitenstroom - volgens datum" - -#: ../../include/conversation.php:1456 -msgid "Starred" -msgstr "Met ster" - -#: ../../include/conversation.php:1459 -msgid "Favourite Posts" -msgstr "Favoriete berichten" - -#: ../../include/conversation.php:1466 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1469 -msgid "Posts flagged as SPAM" -msgstr "Berichten gemarkeerd als SPAM" - -#: ../../include/conversation.php:1509 ../../mod/admin.php:865 -msgid "Channel" -msgstr "Kanaal" - -#: ../../include/conversation.php:1512 -msgid "Status Messages and Posts" -msgstr "Berichten in dit kanaal" - -#: ../../include/conversation.php:1521 -msgid "About" -msgstr "Over" - -#: ../../include/conversation.php:1524 -msgid "Profile Details" -msgstr "Profiel" - -#: ../../include/conversation.php:1530 ../../include/apps.php:139 -#: ../../include/nav.php:105 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto's" - -#: ../../include/conversation.php:1542 -msgid "Files and Storage" -msgstr "Bestanden en opslagruimte" - -#: ../../include/conversation.php:1552 ../../include/conversation.php:1555 -msgid "Chatrooms" -msgstr "Chatkanalen" - -#: ../../include/conversation.php:1565 ../../include/apps.php:129 -#: ../../include/nav.php:117 -msgid "Bookmarks" -msgstr "Bladwijzers" - -#: ../../include/conversation.php:1568 -msgid "Saved Bookmarks" -msgstr "Opgeslagen bladwijzers" - -#: ../../include/conversation.php:1576 ../../include/apps.php:136 -#: ../../include/nav.php:121 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Webpagina's" - -#: ../../include/conversation.php:1579 -msgid "Manage Webpages" -msgstr "Webpagina's beheren" - -#: ../../include/widgets.php:91 ../../include/nav.php:171 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Apps" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "Systeem" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Persoonlijke app maken" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Persoonlijke app bewerken" - -#: ../../include/widgets.php:138 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" - -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" -msgstr "Voorgestelde kanalen" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Meer..." - -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." - -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Nieuwe connectie toevoegen" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Vul het adres van het nieuwe kanaal in" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Voorbeeld: bob@example.com, http://example.com/barbara" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Aantekeningen" - -#: ../../include/widgets.php:264 -msgid "Remove term" -msgstr "Verwijder zoekterm" - -#: ../../include/widgets.php:347 -msgid "Archives" -msgstr "Archieven" - -#: ../../include/widgets.php:425 -msgid "Refresh" -msgstr "Vernieuwen" - -#: ../../include/widgets.php:426 ../../mod/connedit.php:506 -msgid "Me" -msgstr "Ik" - -#: ../../include/widgets.php:427 ../../mod/connedit.php:509 -msgid "Best Friends" -msgstr "Goede vrienden" - -#: ../../include/widgets.php:429 -msgid "Co-workers" -msgstr "Collega's" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:511 -msgid "Former Friends" -msgstr "Oude vrienden" - -#: ../../include/widgets.php:431 ../../mod/connedit.php:512 -msgid "Acquaintances" -msgstr "Kennissen" - -#: ../../include/widgets.php:432 -msgid "Everybody" -msgstr "Iedereen" - -#: ../../include/widgets.php:466 -msgid "Account settings" -msgstr "Account" - -#: ../../include/widgets.php:472 -msgid "Channel settings" -msgstr "Kanaal" - -#: ../../include/widgets.php:478 -msgid "Additional features" -msgstr "Extra functies" - -#: ../../include/widgets.php:484 -msgid "Feature settings" -msgstr "Plug-ins" - -#: ../../include/widgets.php:490 -msgid "Display settings" -msgstr "Weergave" - -#: ../../include/widgets.php:496 -msgid "Connected apps" -msgstr "Verbonden applicaties" - -#: ../../include/widgets.php:502 -msgid "Export channel" -msgstr "Kanaal exporteren" - -#: ../../include/widgets.php:511 ../../mod/connedit.php:539 -msgid "Connection Default Permissions" -msgstr "Standaard permissies voor connecties" - -#: ../../include/widgets.php:519 -msgid "Premium Channel Settings" -msgstr "Instellingen premiumkanaal" - -#: ../../include/widgets.php:535 ../../include/apps.php:134 -#: ../../include/nav.php:218 ../../mod/admin.php:951 ../../mod/admin.php:1156 -msgid "Settings" -msgstr "Instellingen" - -#: ../../include/widgets.php:548 ../../mod/mail.php:125 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "Berichten" - -#: ../../include/widgets.php:551 -msgid "Check Mail" -msgstr "Controleer op nieuwe berichten" - -#: ../../include/widgets.php:556 ../../include/nav.php:209 -msgid "New Message" -msgstr "Nieuw bericht" - -#: ../../include/widgets.php:634 -msgid "Chat Rooms" -msgstr "Chatkanalen" - -#: ../../include/widgets.php:654 -msgid "Bookmarked Chatrooms" -msgstr "Bladwijzers van chatkanalen" - -#: ../../include/widgets.php:674 -msgid "Suggested Chatrooms" -msgstr "Voorgestelde chatkanalen" - -#: ../../include/widgets.php:801 ../../include/widgets.php:859 -msgid "photo/image" -msgstr "foto/afbeelding" - -#: ../../include/zot.php:664 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" - -#: ../../include/zot.php:680 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " - -#: ../../include/zot.php:1829 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "In map opslaan" - -#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:1020 ../../mod/photos.php:1032 -msgid "View all" -msgstr "Toon alles" - -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1029 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "vindt dit niet leuk" -msgstr[1] "vinden dit niet leuk" - -#: ../../include/ItemObject.php:179 -msgid "Add Star" -msgstr "Ster toevoegen" - -#: ../../include/ItemObject.php:180 -msgid "Remove Star" -msgstr "Ster verwijderen" - -#: ../../include/ItemObject.php:181 -msgid "Toggle Star Status" -msgstr "Ster toevoegen of verwijderen" - -#: ../../include/ItemObject.php:185 -msgid "starred" -msgstr "met ster" - -#: ../../include/ItemObject.php:203 -msgid "Add Tag" -msgstr "Tag toevoegen" - -#: ../../include/ItemObject.php:221 ../../mod/photos.php:972 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" - -#: ../../include/ItemObject.php:222 ../../mod/photos.php:973 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" - -#: ../../include/ItemObject.php:226 -msgid "Share This" -msgstr "Delen" - -#: ../../include/ItemObject.php:226 -msgid "share" -msgstr "delen" - -#: ../../include/ItemObject.php:243 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties weergeven" - -#: ../../include/ItemObject.php:256 ../../include/ItemObject.php:257 -#, php-format -msgid "View %s's profile - %s" -msgstr "Profiel van %s bekijken - %s" - -#: ../../include/ItemObject.php:260 -msgid "to" -msgstr "aan" - -#: ../../include/ItemObject.php:261 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:262 -msgid "Wall-to-Wall" -msgstr "Kanaal-naar-kanaal" - -#: ../../include/ItemObject.php:263 -msgid "via Wall-To-Wall:" -msgstr "via kanaal-naar-kanaal" - -#: ../../include/ItemObject.php:299 -msgid "Save Bookmarks" -msgstr "Bladwijzers opslaan" - -#: ../../include/ItemObject.php:300 -msgid "Add to Calendar" -msgstr "Aan agenda toevoegen" - -#: ../../include/ItemObject.php:309 -msgid "Mark all seen" -msgstr "Markeer alles als bekeken" - -#: ../../include/ItemObject.php:314 ../../mod/photos.php:1140 -msgctxt "noun" -msgid "Likes" -msgstr "vinden dit leuk" - -#: ../../include/ItemObject.php:315 ../../mod/photos.php:1141 -msgctxt "noun" -msgid "Dislikes" -msgstr "vinden dit niet leuk" - -#: ../../include/ItemObject.php:345 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] alle" - -#: ../../include/ItemObject.php:626 ../../mod/photos.php:991 -#: ../../mod/photos.php:1101 -msgid "This is you" -msgstr "Dit ben jij" - -#: ../../include/ItemObject.php:628 ../../include/js_strings.php:6 -#: ../../mod/photos.php:993 ../../mod/photos.php:1103 -msgid "Comment" -msgstr "Reactie" - -#: ../../include/ItemObject.php:629 ../../mod/mood.php:135 -#: ../../mod/group.php:81 ../../mod/poke.php:166 ../../mod/profiles.php:650 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/events.php:598 ../../mod/chat.php:177 ../../mod/chat.php:211 -#: ../../mod/settings.php:577 ../../mod/settings.php:689 -#: ../../mod/settings.php:718 ../../mod/settings.php:741 -#: ../../mod/settings.php:823 ../../mod/settings.php:1016 -#: ../../mod/connedit.php:556 ../../mod/mail.php:352 ../../mod/pdledit.php:58 -#: ../../mod/thing.php:284 ../../mod/thing.php:327 ../../mod/fsuggest.php:108 -#: ../../mod/filestorage.php:150 ../../mod/connect.php:93 -#: ../../mod/locs.php:99 ../../mod/import.php:504 ../../mod/setup.php:313 -#: ../../mod/setup.php:358 ../../mod/admin.php:412 ../../mod/admin.php:723 -#: ../../mod/admin.php:859 ../../mod/admin.php:992 ../../mod/admin.php:1191 -#: ../../mod/admin.php:1278 ../../mod/invite.php:142 ../../mod/xchan.php:11 -#: ../../mod/photos.php:594 ../../mod/photos.php:671 ../../mod/photos.php:954 -#: ../../mod/photos.php:994 ../../mod/photos.php:1104 ../../mod/appman.php:99 -#: ../../mod/poll.php:68 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Opslaan" - -#: ../../include/ItemObject.php:630 -msgid "Bold" -msgstr "Vet" - -#: ../../include/ItemObject.php:631 -msgid "Italic" -msgstr "Cursief" - -#: ../../include/ItemObject.php:632 -msgid "Underline" -msgstr "Onderstrepen" - -#: ../../include/ItemObject.php:633 -msgid "Quote" -msgstr "Citeren" - -#: ../../include/ItemObject.php:634 -msgid "Code" -msgstr "Broncode" - -#: ../../include/ItemObject.php:635 -msgid "Image" -msgstr "Afbeelding" - -#: ../../include/ItemObject.php:636 -msgid "Link" -msgstr "Link" - -#: ../../include/ItemObject.php:637 -msgid "Video" -msgstr "Video" - -#: ../../include/datetime.php:35 -msgid "Miscellaneous" -msgstr "Diversen" - -#: ../../include/datetime.php:113 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-DD of MM-DD" - -#: ../../include/datetime.php:230 -msgid "never" -msgstr "nooit" - -#: ../../include/datetime.php:236 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: ../../include/datetime.php:239 -msgid "year" -msgstr "jaar" - -#: ../../include/datetime.php:239 -msgid "years" -msgstr "jaren" - -#: ../../include/datetime.php:240 -msgid "month" -msgstr "maand" - -#: ../../include/datetime.php:240 -msgid "months" -msgstr "maanden" - -#: ../../include/datetime.php:241 -msgid "week" -msgstr "week" - -#: ../../include/datetime.php:241 -msgid "weeks" -msgstr "weken" - -#: ../../include/datetime.php:242 -msgid "day" -msgstr "dag" - -#: ../../include/datetime.php:242 -msgid "days" -msgstr "dagen" - -#: ../../include/datetime.php:243 -msgid "hour" -msgstr "uur" - -#: ../../include/datetime.php:243 -msgid "hours" -msgstr "uren" - -#: ../../include/datetime.php:244 -msgid "minute" -msgstr "minuut" - -#: ../../include/datetime.php:244 -msgid "minutes" -msgstr "minuten" - -#: ../../include/datetime.php:245 -msgid "second" -msgstr "seconde" - -#: ../../include/datetime.php:245 -msgid "seconds" -msgstr "seconden" - -#: ../../include/datetime.php:254 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" - -#: ../../include/datetime.php:462 -#, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" - -#: ../../include/datetime.php:463 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gefeliciteerd met je verjaardag %1$s" - #: ../../include/apps.php:128 msgid "Site Admin" msgstr "Hubbeheerder" +#: ../../include/apps.php:129 ../../include/conversation.php:1599 +#: ../../include/nav.php:109 +msgid "Bookmarks" +msgstr "Bladwijzers" + #: ../../include/apps.php:130 msgid "Address Book" msgstr "Connecties" -#: ../../include/apps.php:131 ../../include/nav.php:125 ../../boot.php:1542 +#: ../../include/apps.php:131 ../../include/nav.php:117 ../../boot.php:1550 msgid "Login" msgstr "Inloggen" -#: ../../include/apps.php:132 ../../include/nav.php:216 +#: ../../include/apps.php:132 ../../include/nav.php:208 #: ../../mod/manage.php:150 msgid "Channel Manager" msgstr "Kanaalbeheer" -#: ../../include/apps.php:133 ../../include/nav.php:190 +#: ../../include/apps.php:133 ../../include/nav.php:182 msgid "Matrix" msgstr "Matrix" -#: ../../include/apps.php:137 ../../include/nav.php:193 +#: ../../include/apps.php:136 ../../include/conversation.php:1610 +#: ../../include/nav.php:113 ../../mod/webpages.php:160 +msgid "Webpages" +msgstr "Webpagina's" + +#: ../../include/apps.php:137 ../../include/nav.php:185 msgid "Channel Home" msgstr "Tijdlijn kanaal" -#: ../../include/apps.php:140 ../../include/nav.php:212 -#: ../../mod/events.php:442 +#: ../../include/apps.php:138 ../../include/identity.php:1125 +#: ../../include/identity.php:1242 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profiel" + +#: ../../include/apps.php:139 ../../include/conversation.php:1564 +#: ../../include/nav.php:97 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto's" + +#: ../../include/apps.php:140 ../../include/nav.php:204 +#: ../../mod/events.php:446 msgid "Events" msgstr "Agenda" -#: ../../include/apps.php:141 ../../include/nav.php:176 -#: ../../mod/directory.php:321 +#: ../../include/apps.php:141 ../../include/nav.php:168 +#: ../../mod/directory.php:325 msgid "Directory" msgstr "Kanalengids" -#: ../../include/apps.php:142 ../../include/nav.php:168 ../../mod/help.php:58 -#: ../../mod/help.php:63 +#: ../../include/apps.php:142 ../../include/nav.php:160 ../../mod/help.php:67 +#: ../../mod/help.php:72 msgid "Help" msgstr "Hulp" -#: ../../include/apps.php:143 ../../include/nav.php:204 +#: ../../include/apps.php:143 ../../include/nav.php:196 msgid "Mail" msgstr "Privéberichten" @@ -2813,7 +1508,11 @@ msgstr "Privéberichten" msgid "Mood" msgstr "Stemming" -#: ../../include/apps.php:146 ../../include/nav.php:111 +#: ../../include/apps.php:145 ../../include/conversation.php:949 +msgid "Poke" +msgstr "Aanstoten" + +#: ../../include/apps.php:146 ../../include/nav.php:103 msgid "Chat" msgstr "Chatten" @@ -2862,57 +1561,361 @@ msgstr "Installeren" msgid "Purchase" msgstr "Aanschaffen" -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Nieuw venster" +#: ../../include/attach.php:242 ../../include/attach.php:296 +msgid "Item was not found." +msgstr "Item niet gevonden" -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" -msgstr "Open de geselecteerde locatie in een ander venster of tab" +#: ../../include/attach.php:352 +msgid "No source file." +msgstr "Geen bronbestand." -#: ../../include/Contact.php:214 ../../mod/admin.php:646 +#: ../../include/attach.php:369 +msgid "Cannot locate file to replace" +msgstr "Kan het te vervangen bestand niet vinden" + +#: ../../include/attach.php:387 +msgid "Cannot locate file to revise/update" +msgstr "Kan het bestand wat aangepast moet worden niet vinden" + +#: ../../include/attach.php:398 #, php-format -msgid "User '%s' deleted" -msgstr "Account '%s' verwijderd" +msgid "File exceeds size limit of %d" +msgstr "Bestand is groter dan de toegelaten %d" -#: ../../include/bbcode.php:112 ../../include/bbcode.php:677 -#: ../../include/bbcode.php:680 ../../include/bbcode.php:685 -#: ../../include/bbcode.php:688 ../../include/bbcode.php:691 -#: ../../include/bbcode.php:694 ../../include/bbcode.php:699 -#: ../../include/bbcode.php:702 ../../include/bbcode.php:707 -#: ../../include/bbcode.php:710 ../../include/bbcode.php:713 -#: ../../include/bbcode.php:716 -msgid "Image/photo" -msgstr "Afbeelding/foto" - -#: ../../include/bbcode.php:147 ../../include/bbcode.php:727 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: ../../include/bbcode.php:165 -msgid "Install design element: " -msgstr "Installeer ontwerp-onderdeel" - -#: ../../include/bbcode.php:171 -msgid "QR code" -msgstr "QR-code" - -#: ../../include/bbcode.php:220 +#: ../../include/attach.php:410 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schreef het volgende %2$s %3$s" +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." -#: ../../include/bbcode.php:222 -msgid "post" -msgstr "bericht" +#: ../../include/attach.php:493 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." -#: ../../include/bbcode.php:645 -msgid "$1 spoiler" -msgstr "$1 spoiler" +#: ../../include/attach.php:505 +msgid "Stored file could not be verified. Upload failed." +msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." -#: ../../include/bbcode.php:665 -msgid "$1 wrote:" -msgstr "$1 schreef:" +#: ../../include/attach.php:547 ../../include/attach.php:564 +msgid "Path not available." +msgstr "Pad niet beschikbaar." + +#: ../../include/attach.php:611 +msgid "Empty pathname" +msgstr "Padnaam leeg" + +#: ../../include/attach.php:627 +msgid "duplicate filename or path" +msgstr "dubbele bestandsnaam of pad" + +#: ../../include/attach.php:651 +msgid "Path not found." +msgstr "Pad niet gevonden" + +#: ../../include/attach.php:702 +msgid "mkdir failed." +msgstr "directory aanmaken (mkdir) mislukt." + +#: ../../include/attach.php:706 +msgid "database storage failed." +msgstr "opslag in database mislukt." + +#: ../../include/comanche.php:35 ../../mod/admin.php:357 +#: ../../view/theme/apw/php/config.php:185 +msgid "Default" +msgstr "Standaard" + +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" + +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "Tonen" + +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "Niet tonen" + +#: ../../include/acl_selectors.php:248 ../../mod/events.php:600 +#: ../../mod/chat.php:209 ../../mod/photos.php:559 ../../mod/photos.php:918 +#: ../../mod/filestorage.php:146 +msgid "Permissions" +msgstr "Permissies" + +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:320 +#: ../../mod/photos.php:1117 +msgid "Close" +msgstr "Sluiten" + +#: ../../include/activities.php:39 +msgid " and " +msgstr " en " + +#: ../../include/activities.php:47 +msgid "public profile" +msgstr "openbaar profiel" + +#: ../../include/activities.php:56 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" + +#: ../../include/activities.php:57 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Bezoek het %2$s van %1$s" + +#: ../../include/activities.php:60 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." + +#: ../../include/ItemObject.php:89 ../../include/conversation.php:651 +msgid "Private Message" +msgstr "Privébericht" + +#: ../../include/ItemObject.php:126 ../../include/conversation.php:643 +msgid "Select" +msgstr "Kies" + +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "In map opslaan" + +#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 +#: ../../mod/photos.php:991 ../../mod/photos.php:1003 +msgid "View all" +msgstr "Toon alles" + +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1000 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "vindt dit niet leuk" +msgstr[1] "vinden dit niet leuk" + +#: ../../include/ItemObject.php:179 +msgid "Add Star" +msgstr "Ster toevoegen" + +#: ../../include/ItemObject.php:180 +msgid "Remove Star" +msgstr "Ster verwijderen" + +#: ../../include/ItemObject.php:181 +msgid "Toggle Star Status" +msgstr "Ster toevoegen of verwijderen" + +#: ../../include/ItemObject.php:185 +msgid "starred" +msgstr "met ster" + +#: ../../include/ItemObject.php:194 ../../include/conversation.php:658 +msgid "Message signature validated" +msgstr "Berichtkenmerk gevalideerd" + +#: ../../include/ItemObject.php:195 ../../include/conversation.php:659 +msgid "Message signature incorrect" +msgstr "Berichtkenmerk onjuist" + +#: ../../include/ItemObject.php:203 +msgid "Add Tag" +msgstr "Tag toevoegen" + +#: ../../include/ItemObject.php:221 ../../mod/photos.php:943 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" + +#: ../../include/ItemObject.php:222 ../../mod/photos.php:944 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: ../../include/ItemObject.php:226 +msgid "Share This" +msgstr "Delen" + +#: ../../include/ItemObject.php:226 +msgid "share" +msgstr "delen" + +#: ../../include/ItemObject.php:243 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties weergeven" + +#: ../../include/ItemObject.php:256 ../../include/ItemObject.php:257 +#, php-format +msgid "View %s's profile - %s" +msgstr "Profiel van %s bekijken - %s" + +#: ../../include/ItemObject.php:260 +msgid "to" +msgstr "aan" + +#: ../../include/ItemObject.php:261 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:262 +msgid "Wall-to-Wall" +msgstr "Kanaal-naar-kanaal" + +#: ../../include/ItemObject.php:263 +msgid "via Wall-To-Wall:" +msgstr "via kanaal-naar-kanaal" + +#: ../../include/ItemObject.php:274 ../../include/conversation.php:703 +#, php-format +msgid " from %s" +msgstr " van %s" + +#: ../../include/ItemObject.php:277 ../../include/conversation.php:706 +#, php-format +msgid "last edited: %s" +msgstr "laatst bewerkt: %s" + +#: ../../include/ItemObject.php:278 ../../include/conversation.php:707 +#, php-format +msgid "Expires: %s" +msgstr "Verloopt: %s" + +#: ../../include/ItemObject.php:299 +msgid "Save Bookmarks" +msgstr "Bladwijzers opslaan" + +#: ../../include/ItemObject.php:300 +msgid "Add to Calendar" +msgstr "Aan agenda toevoegen" + +#: ../../include/ItemObject.php:309 +msgid "Mark all seen" +msgstr "Markeer alles als bekeken" + +#: ../../include/ItemObject.php:314 ../../mod/photos.php:1111 +msgctxt "noun" +msgid "Likes" +msgstr "vinden dit leuk" + +#: ../../include/ItemObject.php:315 ../../mod/photos.php:1112 +msgctxt "noun" +msgid "Dislikes" +msgstr "vinden dit niet leuk" + +#: ../../include/ItemObject.php:325 ../../include/conversation.php:724 +#: ../../include/conversation.php:1176 ../../mod/editblock.php:152 +#: ../../mod/photos.php:946 ../../mod/editpost.php:121 +#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:183 +#: ../../mod/mail.php:241 ../../mod/mail.php:356 +msgid "Please wait" +msgstr "Even wachten" + +#: ../../include/ItemObject.php:345 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "[+] alle" + +#: ../../include/ItemObject.php:626 ../../mod/photos.php:962 +#: ../../mod/photos.php:1072 +msgid "This is you" +msgstr "Dit ben jij" + +#: ../../include/ItemObject.php:628 ../../include/js_strings.php:6 +#: ../../mod/photos.php:964 ../../mod/photos.php:1074 +msgid "Comment" +msgstr "Reactie" + +#: ../../include/ItemObject.php:629 ../../mod/setup.php:313 +#: ../../mod/setup.php:358 ../../mod/events.php:602 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/settings.php:577 +#: ../../mod/settings.php:689 ../../mod/settings.php:718 +#: ../../mod/settings.php:741 ../../mod/settings.php:823 +#: ../../mod/settings.php:1019 ../../mod/photos.php:565 +#: ../../mod/photos.php:642 ../../mod/photos.php:925 ../../mod/photos.php:965 +#: ../../mod/photos.php:1075 ../../mod/poke.php:166 ../../mod/group.php:81 +#: ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/pdledit.php:58 ../../mod/fsuggest.php:108 +#: ../../mod/invite.php:142 ../../mod/filestorage.php:155 +#: ../../mod/import.php:504 ../../mod/locs.php:105 ../../mod/thing.php:284 +#: ../../mod/thing.php:327 ../../mod/admin.php:416 ../../mod/admin.php:728 +#: ../../mod/admin.php:864 ../../mod/admin.php:997 ../../mod/admin.php:1196 +#: ../../mod/admin.php:1283 ../../mod/connect.php:93 ../../mod/appman.php:99 +#: ../../mod/mood.php:135 ../../mod/mail.php:355 ../../mod/connedit.php:631 +#: ../../mod/xchan.php:11 ../../mod/profiles.php:667 ../../mod/poll.php:68 +#: ../../view/theme/apw/php/config.php:256 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Opslaan" + +#: ../../include/ItemObject.php:630 +msgid "Bold" +msgstr "Vet" + +#: ../../include/ItemObject.php:631 +msgid "Italic" +msgstr "Cursief" + +#: ../../include/ItemObject.php:632 +msgid "Underline" +msgstr "Onderstrepen" + +#: ../../include/ItemObject.php:633 +msgid "Quote" +msgstr "Citeren" + +#: ../../include/ItemObject.php:634 +msgid "Code" +msgstr "Broncode" + +#: ../../include/ItemObject.php:635 +msgid "Image" +msgstr "Afbeelding" + +#: ../../include/ItemObject.php:636 +msgid "Link" +msgstr "Link" + +#: ../../include/ItemObject.php:637 +msgid "Video" +msgstr "Video" + +#: ../../include/ItemObject.php:641 ../../include/conversation.php:1202 +#: ../../mod/editpost.php:148 ../../mod/mail.php:247 ../../mod/mail.php:361 +msgid "Encrypt text" +msgstr "Tekst versleutelen" + +#: ../../include/event.php:376 +msgid "This event has been added to your calendar." +msgstr "Dit evenement is aan jouw agenda toegevoegd." + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Geen ontvanger opgegeven." + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[geen onderwerp]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." + +#: ../../include/message.php:200 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." + +#: ../../include/zot.php:664 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" + +#: ../../include/zot.php:680 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " + +#: ../../include/zot.php:1900 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" #: ../../include/enotify.php:41 msgid "Red Matrix Notification" @@ -3106,10 +2109,1225 @@ msgstr "Foto:" msgid "Please visit %s to approve or reject the suggestion." msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." -#: ../../include/enotify.php:490 +#: ../../include/enotify.php:499 msgid "[Red:Notify]" msgstr "[Red:Notificatie]" +#: ../../include/auth.php:130 +msgid "Logged out." +msgstr "Uitgelogd." + +#: ../../include/auth.php:271 +msgid "Failed authentication" +msgstr "Mislukte authenticatie" + +#: ../../include/auth.php:285 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Inloggen mislukt." + +#: ../../include/network.php:613 +msgid "view full size" +msgstr "volledige grootte tonen" + +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d uitnodiging beschikbaar" +msgstr[1] "%d uitnodigingen beschikbaar" + +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:420 +msgid "Advanced" +msgstr "Geavanceerd" + +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Kanalen vinden" + +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" + +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Verbinden/volgen" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeeld: Robert Morgenstein, vissen" + +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 +#: ../../mod/directory.php:321 ../../mod/directory.php:326 +msgid "Find" +msgstr "Vinden" + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +#: ../../mod/directory.php:325 +msgid "Channel Suggestions" +msgstr "Voorgestelde kanalen" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Willekeurig profiel" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" + +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" + +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeenschappelijke connectie" +msgstr[1] "%d gemeenschappelijke connecties" + +#: ../../include/contact_widgets.php:130 +msgid "show more" +msgstr "meer connecties weergeven" + +#: ../../include/conversation.php:126 ../../mod/like.php:101 +msgid "channel" +msgstr "kanaal" + +#: ../../include/conversation.php:164 ../../include/diaspora.php:1965 +#: ../../mod/like.php:348 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s leuk" + +#: ../../include/conversation.php:167 ../../mod/like.php:350 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s niet leuk" + +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s is nu met %2$s verbonden" + +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s heeft %2$s aangestoten" + +#: ../../include/conversation.php:261 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s is %2$s" + +#: ../../include/conversation.php:679 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Bekijk het profiel van %s @ %s" + +#: ../../include/conversation.php:694 +msgid "Categories:" +msgstr "Categorieën:" + +#: ../../include/conversation.php:695 +msgid "Filed under:" +msgstr "Bewaard onder:" + +#: ../../include/conversation.php:722 +msgid "View in context" +msgstr "In context bekijken" + +#: ../../include/conversation.php:844 +msgid "remove" +msgstr "verwijderen" + +#: ../../include/conversation.php:848 ../../include/nav.php:249 +msgid "Loading..." +msgstr "Aan het laden..." + +#: ../../include/conversation.php:849 +msgid "Delete Selected Items" +msgstr "Verwijder de geselecteerde items" + +#: ../../include/conversation.php:940 +msgid "View Source" +msgstr "Bron weergeven" + +#: ../../include/conversation.php:941 +msgid "Follow Thread" +msgstr "Conversatie volgen" + +#: ../../include/conversation.php:942 +msgid "View Status" +msgstr "Status weergeven" + +#: ../../include/conversation.php:943 ../../include/nav.php:91 +#: ../../mod/connedit.php:476 ../../mod/connedit.php:612 +msgid "View Profile" +msgstr "Profiel weergeven" + +#: ../../include/conversation.php:944 +msgid "View Photos" +msgstr "Foto's weergeven" + +#: ../../include/conversation.php:945 +msgid "Matrix Activity" +msgstr "Activiteit in de RedMatrix" + +#: ../../include/conversation.php:947 +msgid "Edit Contact" +msgstr "Contact bewerken" + +#: ../../include/conversation.php:948 +msgid "Send PM" +msgstr "Privébericht verzenden" + +#: ../../include/conversation.php:1047 +#, php-format +msgid "%s likes this." +msgstr "%s vindt dit leuk." + +#: ../../include/conversation.php:1047 +#, php-format +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." + +#: ../../include/conversation.php:1051 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d persoon vindt dit leuk." +msgstr[1] "%2$d personen vinden dit leuk." + +#: ../../include/conversation.php:1053 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d persoon vindt dit niet leuk." +msgstr[1] "%2$d personen vinden dit niet leuk." + +#: ../../include/conversation.php:1059 +msgid "and" +msgstr "en" + +#: ../../include/conversation.php:1062 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", en %d ander persoon" +msgstr[1] ", en %d andere personen" + +#: ../../include/conversation.php:1063 +#, php-format +msgid "%s like this." +msgstr "%s vinden dit leuk." + +#: ../../include/conversation.php:1063 +#, php-format +msgid "%s don't like this." +msgstr "%s vinden dit niet leuk." + +#: ../../include/conversation.php:1120 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" + +#: ../../include/conversation.php:1121 ../../mod/mail.php:174 +#: ../../mod/mail.php:289 +msgid "Please enter a link URL:" +msgstr "Vul een internetadres/URL in:" + +#: ../../include/conversation.php:1122 +msgid "Please enter a video link/URL:" +msgstr "Vul een videolink/URL in:" + +#: ../../include/conversation.php:1123 +msgid "Please enter an audio link/URL:" +msgstr "Vul een audiolink/URL in:" + +#: ../../include/conversation.php:1124 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1125 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Bewaar in map: " + +#: ../../include/conversation.php:1126 +msgid "Where are you right now?" +msgstr "Waar bevind je je op dit moment?" + +#: ../../include/conversation.php:1127 ../../mod/editpost.php:52 +#: ../../mod/mail.php:175 ../../mod/mail.php:290 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verloopt op DD-MM-YYYY om HH:MM" + +#: ../../include/conversation.php:1151 ../../mod/editblock.php:198 +#: ../../mod/photos.php:945 ../../mod/editlayout.php:193 +#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 +msgid "Share" +msgstr "Delen" + +#: ../../include/conversation.php:1153 ../../mod/editwebpage.php:170 +msgid "Page link title" +msgstr "Titel van paginalink" + +#: ../../include/conversation.php:1156 +msgid "Post as" +msgstr "Bericht plaatsen als" + +#: ../../include/conversation.php:1157 ../../mod/editblock.php:144 +#: ../../mod/editpost.php:113 ../../mod/editlayout.php:140 +#: ../../mod/editwebpage.php:175 ../../mod/mail.php:238 ../../mod/mail.php:352 +msgid "Upload photo" +msgstr "Foto uploaden" + +#: ../../include/conversation.php:1158 +msgid "upload photo" +msgstr "foto uploaden" + +#: ../../include/conversation.php:1159 ../../mod/editblock.php:145 +#: ../../mod/editpost.php:114 ../../mod/editlayout.php:141 +#: ../../mod/editwebpage.php:176 ../../mod/mail.php:239 ../../mod/mail.php:353 +msgid "Attach file" +msgstr "Bestand toevoegen" + +#: ../../include/conversation.php:1160 +msgid "attach file" +msgstr "bestand toevoegen" + +#: ../../include/conversation.php:1161 ../../mod/editblock.php:146 +#: ../../mod/editpost.php:115 ../../mod/editlayout.php:142 +#: ../../mod/editwebpage.php:177 ../../mod/mail.php:240 ../../mod/mail.php:354 +msgid "Insert web link" +msgstr "Weblink invoegen" + +#: ../../include/conversation.php:1162 +msgid "web link" +msgstr "Weblink" + +#: ../../include/conversation.php:1163 +msgid "Insert video link" +msgstr "Videolink invoegen" + +#: ../../include/conversation.php:1164 +msgid "video link" +msgstr "videolink" + +#: ../../include/conversation.php:1165 +msgid "Insert audio link" +msgstr "Audiolink invoegen" + +#: ../../include/conversation.php:1166 +msgid "audio link" +msgstr "audiolink" + +#: ../../include/conversation.php:1167 ../../mod/editblock.php:150 +#: ../../mod/editpost.php:119 ../../mod/editlayout.php:146 +#: ../../mod/editwebpage.php:181 +msgid "Set your location" +msgstr "Locatie instellen" + +#: ../../include/conversation.php:1168 +msgid "set location" +msgstr "locatie instellen" + +#: ../../include/conversation.php:1169 ../../mod/editblock.php:151 +#: ../../mod/editpost.php:120 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:182 +msgid "Clear browser location" +msgstr "Locatie van webbrowser wissen" + +#: ../../include/conversation.php:1170 +msgid "clear location" +msgstr "locatie wissen" + +#: ../../include/conversation.php:1172 ../../mod/editblock.php:164 +#: ../../mod/editpost.php:132 ../../mod/editlayout.php:159 +#: ../../mod/editwebpage.php:198 +msgid "Title (optional)" +msgstr "Titel (optioneel)" + +#: ../../include/conversation.php:1175 ../../mod/editblock.php:167 +#: ../../mod/editpost.php:134 ../../mod/editlayout.php:162 +#: ../../mod/editwebpage.php:200 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" + +#: ../../include/conversation.php:1177 ../../mod/editblock.php:153 +#: ../../mod/editpost.php:122 ../../mod/editlayout.php:149 +#: ../../mod/editwebpage.php:184 +msgid "Permission settings" +msgstr "Permissies" + +#: ../../include/conversation.php:1178 +msgid "permissions" +msgstr "permissies" + +#: ../../include/conversation.php:1185 ../../mod/editblock.php:161 +#: ../../mod/editpost.php:129 ../../mod/editlayout.php:156 +#: ../../mod/editwebpage.php:193 +msgid "Public post" +msgstr "Openbaar bericht" + +#: ../../include/conversation.php:1187 ../../mod/editblock.php:168 +#: ../../mod/editpost.php:135 ../../mod/editlayout.php:163 +#: ../../mod/editwebpage.php:201 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" + +#: ../../include/conversation.php:1200 ../../mod/editblock.php:178 +#: ../../mod/editpost.php:146 ../../mod/editlayout.php:173 +#: ../../mod/editwebpage.php:210 ../../mod/mail.php:245 ../../mod/mail.php:359 +msgid "Set expiration date" +msgstr "Verloopdatum instellen" + +#: ../../include/conversation.php:1204 ../../mod/events.php:584 +#: ../../mod/editpost.php:150 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1205 ../../mod/events.php:583 +#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 +#: ../../mod/settings.php:578 ../../mod/settings.php:604 +#: ../../mod/editpost.php:151 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +msgid "Cancel" +msgstr "Annuleren" + +#: ../../include/conversation.php:1449 +msgid "Discover" +msgstr "Ontdekken" + +#: ../../include/conversation.php:1452 +msgid "Imported public streams" +msgstr "Openbare streams importeren" + +#: ../../include/conversation.php:1457 +msgid "Commented Order" +msgstr "Nieuwe reacties bovenaan" + +#: ../../include/conversation.php:1460 +msgid "Sort by Comment Date" +msgstr "Berichten met nieuwe reacties bovenaan" + +#: ../../include/conversation.php:1464 +msgid "Posted Order" +msgstr "Nieuwe berichten bovenaan" + +#: ../../include/conversation.php:1467 +msgid "Sort by Post Date" +msgstr "Nieuwe berichten bovenaan" + +#: ../../include/conversation.php:1475 +msgid "Posts that mention or involve you" +msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" + +#: ../../include/conversation.php:1481 ../../mod/connections.php:212 +#: ../../mod/connections.php:225 ../../mod/menu.php:80 +msgid "New" +msgstr "Nieuw" + +#: ../../include/conversation.php:1484 +msgid "Activity Stream - by date" +msgstr "Activiteitenstroom - volgens datum" + +#: ../../include/conversation.php:1490 +msgid "Starred" +msgstr "Met ster" + +#: ../../include/conversation.php:1493 +msgid "Favourite Posts" +msgstr "Favoriete berichten" + +#: ../../include/conversation.php:1500 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1503 +msgid "Posts flagged as SPAM" +msgstr "Berichten gemarkeerd als SPAM" + +#: ../../include/conversation.php:1543 ../../mod/admin.php:870 +msgid "Channel" +msgstr "Kanaal" + +#: ../../include/conversation.php:1546 +msgid "Status Messages and Posts" +msgstr "Berichten in dit kanaal" + +#: ../../include/conversation.php:1555 +msgid "About" +msgstr "Over" + +#: ../../include/conversation.php:1558 +msgid "Profile Details" +msgstr "Profiel" + +#: ../../include/conversation.php:1576 +msgid "Files and Storage" +msgstr "Bestanden en opslagruimte" + +#: ../../include/conversation.php:1586 ../../include/conversation.php:1589 +msgid "Chatrooms" +msgstr "Chatkanalen" + +#: ../../include/conversation.php:1602 +msgid "Saved Bookmarks" +msgstr "Opgeslagen bladwijzers" + +#: ../../include/conversation.php:1613 +msgid "Manage Webpages" +msgstr "Webpagina's beheren" + +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may 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 collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." + +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" +msgstr "Standaard privacy-collectie voor nieuwe kanalen" + +#: ../../include/group.php:254 ../../mod/admin.php:740 +msgid "All Channels" +msgstr "Alle kanalen" + +#: ../../include/group.php:276 +msgid "edit" +msgstr "bewerken" + +#: ../../include/group.php:298 +msgid "Collections" +msgstr "Collecties" + +#: ../../include/group.php:299 +msgid "Edit collection" +msgstr "Collectie bewerken" + +#: ../../include/group.php:300 +msgid "Create a new collection" +msgstr "Nieuwe collectie aanmaken" + +#: ../../include/group.php:301 +msgid "Channels not in any collection" +msgstr "Kanalen die zich in geen enkele collectie bevinden" + +#: ../../include/items.php:382 ../../mod/subthread.php:49 +#: ../../mod/group.php:68 ../../mod/like.php:258 ../../mod/profperm.php:23 +#: ../../index.php:389 +msgid "Permission denied" +msgstr "Toegang geweigerd" + +#: ../../include/items.php:979 ../../include/items.php:1024 +msgid "(Unknown)" +msgstr "(Onbekend)" + +#: ../../include/items.php:1181 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." + +#: ../../include/items.php:1183 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." + +#: ../../include/items.php:1185 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." + +#: ../../include/items.php:1187 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." + +#: ../../include/items.php:1189 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." + +#: ../../include/items.php:1191 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." + +#: ../../include/items.php:1193 +msgid "Visible to approved connections." +msgstr "Voor alle goedgekeurde connecties zichtbaar." + +#: ../../include/items.php:1195 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." + +#: ../../include/items.php:3993 ../../mod/display.php:32 +#: ../../mod/viewsrc.php:20 ../../mod/filestorage.php:27 +#: ../../mod/thing.php:76 ../../mod/admin.php:168 ../../mod/admin.php:901 +#: ../../mod/admin.php:1104 +msgid "Item not found." +msgstr "Item niet gevonden." + +#: ../../include/items.php:4446 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Collectie niet gevonden." + +#: ../../include/items.php:4461 +msgid "Collection is empty." +msgstr "Collectie is leeg" + +#: ../../include/items.php:4468 +#, php-format +msgid "Collection: %s" +msgstr "Collectie: %s" + +#: ../../include/items.php:4479 +#, php-format +msgid "Connection: %s" +msgstr "Connectie: %s" + +#: ../../include/items.php:4482 +msgid "Connection not found." +msgstr "Connectie niet gevonden." + +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres" + +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan" + +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd." + +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist" + +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden" + +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." + +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "Account-informatie kon niet opgeslagen worden." + +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registratiebevestiging voor %s" + +#: ../../include/account.php:313 +#, php-format +msgid "Registration request at %s" +msgstr "Registratiebevestiging voor %s" + +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" +msgstr "Beheerder" + +#: ../../include/account.php:337 +msgid "your registration password" +msgstr "jouw registratiewachtwoord" + +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" +msgstr "Registratiegegevens voor %s" + +#: ../../include/account.php:406 +msgid "Account approved." +msgstr "Account goedgekeurd" + +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" + +#: ../../include/account.php:486 +msgid "Account verified. Please login." +msgstr "Account is geverifieerd. Je kan inloggen." + +#: ../../include/account.php:674 ../../include/account.php:676 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." + +#: ../../include/account.php:682 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." + +#: ../../include/account.php:687 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." + +#: ../../include/datetime.php:35 +msgid "Miscellaneous" +msgstr "Diversen" + +#: ../../include/datetime.php:113 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-DD of MM-DD" + +#: ../../include/datetime.php:230 +msgid "never" +msgstr "nooit" + +#: ../../include/datetime.php:236 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" + +#: ../../include/datetime.php:239 +msgid "year" +msgstr "jaar" + +#: ../../include/datetime.php:239 +msgid "years" +msgstr "jaren" + +#: ../../include/datetime.php:240 +msgid "month" +msgstr "maand" + +#: ../../include/datetime.php:240 +msgid "months" +msgstr "maanden" + +#: ../../include/datetime.php:241 +msgid "week" +msgstr "week" + +#: ../../include/datetime.php:241 +msgid "weeks" +msgstr "weken" + +#: ../../include/datetime.php:242 +msgid "day" +msgstr "dag" + +#: ../../include/datetime.php:242 +msgid "days" +msgstr "dagen" + +#: ../../include/datetime.php:243 +msgid "hour" +msgstr "uur" + +#: ../../include/datetime.php:243 +msgid "hours" +msgstr "uren" + +#: ../../include/datetime.php:244 +msgid "minute" +msgstr "minuut" + +#: ../../include/datetime.php:244 +msgid "minutes" +msgstr "minuten" + +#: ../../include/datetime.php:245 +msgid "second" +msgstr "seconde" + +#: ../../include/datetime.php:245 +msgid "seconds" +msgstr "seconden" + +#: ../../include/datetime.php:254 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" + +#: ../../include/datetime.php:462 +#, php-format +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" + +#: ../../include/datetime.php:463 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" + +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Naam chatkanaal ontbreekt" + +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Naam chatkanaal bestaat al" + +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Ongeldige omschrijving chatkanaal" + +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Chatkanaal niet gevonden" + +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "Chatkanaal is vol" + +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." + +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." + +#: ../../include/follow.php:83 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." + +#: ../../include/follow.php:100 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." + +#: ../../include/follow.php:135 ../../include/follow.php:197 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." + +#: ../../include/follow.php:170 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." + +#: ../../include/follow.php:186 +msgid "local account not found." +msgstr "lokale account niet gevonden." + +#: ../../include/follow.php:215 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" + +#: ../../include/identity.php:31 ../../mod/item.php:1071 +msgid "Unable to obtain identity information from database" +msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" + +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Ontbrekende naam" + +#: ../../include/identity.php:68 +msgid "Name too long" +msgstr "Naam te lang" + +#: ../../include/identity.php:169 +msgid "No account identifier" +msgstr "Geen account-identificator" + +#: ../../include/identity.php:182 +msgid "Nickname is required." +msgstr "Bijnaam is verplicht" + +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." +msgstr "Deze naam is gereserveerd. Kies een andere." + +#: ../../include/identity.php:201 ../../include/dimport.php:34 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." + +#: ../../include/identity.php:283 +msgid "Unable to retrieve created identity" +msgstr "Niet in staat om aangemaakte identiteit te vinden" + +#: ../../include/identity.php:343 +msgid "Default Profile" +msgstr "Standaardprofiel" + +#: ../../include/identity.php:643 +msgid "Requested channel is not available." +msgstr "Opgevraagd kanaal is niet beschikbaar." + +#: ../../include/identity.php:691 ../../mod/achievements.php:11 +#: ../../mod/blocks.php:29 ../../mod/profile.php:16 ../../mod/webpages.php:29 +#: ../../mod/editblock.php:29 ../../mod/editlayout.php:28 +#: ../../mod/editwebpage.php:28 ../../mod/hcard.php:8 +#: ../../mod/filestorage.php:53 ../../mod/layouts.php:29 +#: ../../mod/connect.php:13 +msgid "Requested profile is not available." +msgstr "Opgevraagd profiel is niet beschikbaar" + +#: ../../include/identity.php:854 ../../mod/profiles.php:774 +msgid "Change profile photo" +msgstr "Profielfoto veranderen" + +#: ../../include/identity.php:861 +msgid "Profiles" +msgstr "Profielen" + +#: ../../include/identity.php:861 +msgid "Manage/edit profiles" +msgstr "Profielen beheren/bewerken" + +#: ../../include/identity.php:862 ../../mod/profiles.php:775 +msgid "Create New Profile" +msgstr "Nieuw profiel aanmaken" + +#: ../../include/identity.php:865 ../../include/nav.php:95 +msgid "Edit Profile" +msgstr "Profiel bewerken" + +#: ../../include/identity.php:878 ../../mod/profiles.php:786 +msgid "Profile Image" +msgstr "Profielfoto" + +#: ../../include/identity.php:881 +msgid "visible to everybody" +msgstr "Voor iedereen zichtbaar" + +#: ../../include/identity.php:882 ../../mod/profiles.php:669 +#: ../../mod/profiles.php:790 +msgid "Edit visibility" +msgstr "Zichtbaarheid bewerken" + +#: ../../include/identity.php:898 ../../include/identity.php:1135 +msgid "Gender:" +msgstr "Geslacht:" + +#: ../../include/identity.php:899 ../../include/identity.php:1179 +msgid "Status:" +msgstr "Status:" + +#: ../../include/identity.php:900 ../../include/identity.php:1190 +msgid "Homepage:" +msgstr "Homepagina:" + +#: ../../include/identity.php:901 +msgid "Online Now" +msgstr "Nu online" + +#: ../../include/identity.php:979 ../../include/identity.php:1059 +#: ../../mod/ping.php:329 +msgid "g A l F d" +msgstr "G:i, l d F" + +#: ../../include/identity.php:980 ../../include/identity.php:1060 +msgid "F d" +msgstr "d F" + +#: ../../include/identity.php:1025 ../../include/identity.php:1100 +#: ../../mod/ping.php:351 +msgid "[today]" +msgstr "[vandaag]" + +#: ../../include/identity.php:1037 +msgid "Birthday Reminders" +msgstr "Verjaardagsherinneringen" + +#: ../../include/identity.php:1038 +msgid "Birthdays this week:" +msgstr "Verjaardagen deze week:" + +#: ../../include/identity.php:1093 +msgid "[No description]" +msgstr "[Geen omschrijving]" + +#: ../../include/identity.php:1111 +msgid "Event Reminders" +msgstr "Herinneringen" + +#: ../../include/identity.php:1112 +msgid "Events this week:" +msgstr "Gebeurtenissen deze week:" + +#: ../../include/identity.php:1133 ../../mod/settings.php:1025 +msgid "Full Name:" +msgstr "Volledige naam:" + +#: ../../include/identity.php:1140 +msgid "Like this channel" +msgstr "Vind dit kanaal leuk" + +#: ../../include/identity.php:1164 +msgid "j F, Y" +msgstr "F j Y" + +#: ../../include/identity.php:1165 +msgid "j F" +msgstr "F j" + +#: ../../include/identity.php:1172 +msgid "Birthday:" +msgstr "Geboortedatum:" + +#: ../../include/identity.php:1176 +msgid "Age:" +msgstr "Leeftijd:" + +#: ../../include/identity.php:1185 +#, php-format +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" + +#: ../../include/identity.php:1188 ../../mod/profiles.php:691 +msgid "Sexual Preference:" +msgstr "Seksuele voorkeur:" + +#: ../../include/identity.php:1192 ../../mod/profiles.php:693 +msgid "Hometown:" +msgstr "Oorspronkelijk uit:" + +#: ../../include/identity.php:1194 +msgid "Tags:" +msgstr "Tags:" + +#: ../../include/identity.php:1196 ../../mod/profiles.php:694 +msgid "Political Views:" +msgstr "Politieke overtuigingen:" + +#: ../../include/identity.php:1198 +msgid "Religion:" +msgstr "Religie:" + +#: ../../include/identity.php:1200 +msgid "About:" +msgstr "Over:" + +#: ../../include/identity.php:1202 +msgid "Hobbies/Interests:" +msgstr "Hobby's/interesses:" + +#: ../../include/identity.php:1204 ../../mod/profiles.php:697 +msgid "Likes:" +msgstr "Houdt van:" + +#: ../../include/identity.php:1206 ../../mod/profiles.php:698 +msgid "Dislikes:" +msgstr "Houdt niet van:" + +#: ../../include/identity.php:1208 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" + +#: ../../include/identity.php:1210 +msgid "My other channels:" +msgstr "Mijn andere kanalen" + +#: ../../include/identity.php:1212 +msgid "Musical interests:" +msgstr "Muzikale interesses:" + +#: ../../include/identity.php:1214 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" + +#: ../../include/identity.php:1216 +msgid "Television:" +msgstr "Televisie:" + +#: ../../include/identity.php:1218 +msgid "Film/dance/culture/entertainment:" +msgstr "Films/dansen/cultuur/vermaak:" + +#: ../../include/identity.php:1220 +msgid "Love/Romance:" +msgstr "Liefde/romantiek:" + +#: ../../include/identity.php:1222 +msgid "Work/employment:" +msgstr "Werk/beroep:" + +#: ../../include/identity.php:1224 +msgid "School/education:" +msgstr "School/opleiding:" + +#: ../../include/identity.php:1244 +msgid "Like this thing" +msgstr "Vind dit ding leuk" + +#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1549 +msgid "Logout" +msgstr "Uitloggen" + +#: ../../include/nav.php:87 ../../include/nav.php:120 +msgid "End this session" +msgstr "Beëindig deze sessie" + +#: ../../include/nav.php:90 ../../include/nav.php:151 +msgid "Home" +msgstr "Home" + +#: ../../include/nav.php:90 +msgid "Your posts and conversations" +msgstr "Jouw berichten en conversaties" + +#: ../../include/nav.php:91 +msgid "Your profile page" +msgstr "Jouw profielpagina" + +#: ../../include/nav.php:93 +msgid "Edit Profiles" +msgstr "Bewerk profielen" + +#: ../../include/nav.php:93 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" + +#: ../../include/nav.php:95 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" + +#: ../../include/nav.php:97 +msgid "Your photos" +msgstr "Jouw foto's" + +#: ../../include/nav.php:98 +msgid "Your files" +msgstr "Jouw bestanden" + +#: ../../include/nav.php:103 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" + +#: ../../include/nav.php:109 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" + +#: ../../include/nav.php:113 +msgid "Your webpages" +msgstr "Jouw webpagina's" + +#: ../../include/nav.php:117 +msgid "Sign in" +msgstr "Inloggen" + +#: ../../include/nav.php:134 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" + +#: ../../include/nav.php:137 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" + +#: ../../include/nav.php:137 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub" + +#: ../../include/nav.php:151 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1526 +msgid "Register" +msgstr "Registreren" + +#: ../../include/nav.php:155 +msgid "Create an account" +msgstr "Maak een account aan" + +#: ../../include/nav.php:160 +msgid "Help and documentation" +msgstr "Hulp en documentatie" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Apps" + +#: ../../include/nav.php:165 +msgid "Search site content" +msgstr "Inhoud van deze RedMatrix-hub doorzoeken" + +#: ../../include/nav.php:168 +msgid "Channel Directory" +msgstr "Kanalengids" + +#: ../../include/nav.php:182 +msgid "Your matrix" +msgstr "Jouw matrix" + +#: ../../include/nav.php:183 +msgid "Mark all matrix notifications seen" +msgstr "Markeer alle matrixnotificaties als bekeken" + +#: ../../include/nav.php:185 +msgid "Channel home" +msgstr "Tijdlijn kanaal" + +#: ../../include/nav.php:186 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" + +#: ../../include/nav.php:189 ../../mod/connections.php:407 +msgid "Connections" +msgstr "Connecties" + +#: ../../include/nav.php:192 +msgid "Notices" +msgstr "Notificaties" + +#: ../../include/nav.php:192 +msgid "Notifications" +msgstr "Notificaties" + +#: ../../include/nav.php:193 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" + +#: ../../include/nav.php:194 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" + +#: ../../include/nav.php:196 +msgid "Private mail" +msgstr "Privéberichten" + +#: ../../include/nav.php:197 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" + +#: ../../include/nav.php:198 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" + +#: ../../include/nav.php:199 +msgid "Inbox" +msgstr "Postvak IN" + +#: ../../include/nav.php:200 +msgid "Outbox" +msgstr "Postvak UIT" + +#: ../../include/nav.php:204 +msgid "Event Calendar" +msgstr "Agenda" + +#: ../../include/nav.php:205 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" + +#: ../../include/nav.php:206 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" + +#: ../../include/nav.php:208 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" + +#: ../../include/nav.php:210 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" + +#: ../../include/nav.php:218 ../../mod/admin.php:123 +msgid "Admin" +msgstr "Beheer" + +#: ../../include/nav.php:218 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" + +#: ../../include/nav.php:254 +msgid "@name, #tag, content" +msgstr "@kanaal, #label, inhoud" + +#: ../../include/nav.php:255 +msgid "Please wait..." +msgstr "Wachten aub..." + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Dit item verwijderen?" @@ -3467,2991 +3685,6 @@ msgstr "Maakt mij niks uit" msgid "Ask me" msgstr "Vraag het me" -#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1541 -msgid "Logout" -msgstr "Uitloggen" - -#: ../../include/nav.php:95 ../../include/nav.php:128 -msgid "End this session" -msgstr "Beëindig deze sessie" - -#: ../../include/nav.php:98 ../../include/nav.php:159 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:98 -msgid "Your posts and conversations" -msgstr "Jouw berichten en conversaties" - -#: ../../include/nav.php:99 -msgid "Your profile page" -msgstr "Jouw profielpagina" - -#: ../../include/nav.php:101 -msgid "Edit Profiles" -msgstr "Bewerk profielen" - -#: ../../include/nav.php:101 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" - -#: ../../include/nav.php:103 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" - -#: ../../include/nav.php:105 -msgid "Your photos" -msgstr "Jouw foto's" - -#: ../../include/nav.php:106 -msgid "Your files" -msgstr "Jouw bestanden" - -#: ../../include/nav.php:111 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" - -#: ../../include/nav.php:117 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" - -#: ../../include/nav.php:121 -msgid "Your webpages" -msgstr "Jouw webpagina's" - -#: ../../include/nav.php:125 -msgid "Sign in" -msgstr "Inloggen" - -#: ../../include/nav.php:142 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" - -#: ../../include/nav.php:145 -msgid "Remote authentication" -msgstr "Authenticatie op afstand" - -#: ../../include/nav.php:145 -msgid "Click to authenticate to your home hub" -msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub" - -#: ../../include/nav.php:159 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1518 -msgid "Register" -msgstr "Registreren" - -#: ../../include/nav.php:163 -msgid "Create an account" -msgstr "Maak een account aan" - -#: ../../include/nav.php:168 -msgid "Help and documentation" -msgstr "Hulp en documentatie" - -#: ../../include/nav.php:171 -msgid "Applications, utilities, links, games" -msgstr "Apps" - -#: ../../include/nav.php:173 -msgid "Search site content" -msgstr "Inhoud van deze RedMatrix-hub doorzoeken" - -#: ../../include/nav.php:176 -msgid "Channel Directory" -msgstr "Kanalengids" - -#: ../../include/nav.php:190 -msgid "Your matrix" -msgstr "Jouw matrix" - -#: ../../include/nav.php:191 -msgid "Mark all matrix notifications seen" -msgstr "Markeer alle matrixnotificaties als bekeken" - -#: ../../include/nav.php:193 -msgid "Channel home" -msgstr "Tijdlijn kanaal" - -#: ../../include/nav.php:194 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" - -#: ../../include/nav.php:197 ../../mod/connections.php:406 -msgid "Connections" -msgstr "Connecties" - -#: ../../include/nav.php:200 -msgid "Notices" -msgstr "Notificaties" - -#: ../../include/nav.php:200 -msgid "Notifications" -msgstr "Notificaties" - -#: ../../include/nav.php:201 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" - -#: ../../include/nav.php:202 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" - -#: ../../include/nav.php:204 -msgid "Private mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:205 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" - -#: ../../include/nav.php:206 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" - -#: ../../include/nav.php:207 -msgid "Inbox" -msgstr "Postvak IN" - -#: ../../include/nav.php:208 -msgid "Outbox" -msgstr "Postvak UIT" - -#: ../../include/nav.php:212 -msgid "Event Calendar" -msgstr "Agenda" - -#: ../../include/nav.php:213 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" - -#: ../../include/nav.php:214 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" - -#: ../../include/nav.php:216 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" - -#: ../../include/nav.php:218 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" - -#: ../../include/nav.php:226 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Beheer" - -#: ../../include/nav.php:226 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" - -#: ../../include/nav.php:262 -msgid "@name, #tag, content" -msgstr "@kanaal, #label, inhoud" - -#: ../../include/nav.php:263 -msgid "Please wait..." -msgstr "Wachten aub..." - -#: ../../include/security.php:357 -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 "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " - -#: ../../mod/mood.php:132 -msgid "Set your current mood and tell your friends" -msgstr "Noteer je huidige stemming en toon het aan je connecties" - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximum toegestane dagelijkse registraties op deze RedMatrix-hub bereikt. Probeer het morgen (UTC) nogmaals." - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Wachtwoorden komen niet met elkaar overeen." - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Jouw registratie kan niet verwerkt worden." - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd." - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registreer op een andere RedMatrix-hub" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Deze RedMatrix-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Gebruiksvoorwaarden" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ik accepteer de %s van deze RedMatrix-hub" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ik accepteer de %s van deze RedMatrix-hub" - -#: ../../mod/register.php:207 ../../mod/admin.php:413 -msgid "Registration" -msgstr "Registratie" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Registreren op deze RedMatrix-hub kan alleen op uitnodiging." - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Vul jouw uitnodigingscode in" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Jouw e-mailadres" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Geef een wachtwoord op" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Geef het wachtwoord opnieuw op" - -#: ../../mod/mitem.php:24 ../../mod/menu.php:108 -msgid "Menu not found." -msgstr "Menu niet gevonden." - -#: ../../mod/mitem.php:67 -msgid "Menu element updated." -msgstr "Menu-onderdeel geüpdatet." - -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." -msgstr "Menu-onderdeel kan niet worden geüpdatet." - -#: ../../mod/mitem.php:77 -msgid "Menu element added." -msgstr "Menu-onderdeel toegevoegd" - -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." -msgstr "Menu-onderdeel kan niet worden toegevoegd." - -#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37 -msgid "Not found." -msgstr "Niet gevonden." - -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" -msgstr "Menu-onderdelen beheren" - -#: ../../mod/mitem.php:130 -msgid "Edit menu" -msgstr "Menu bewerken" - -#: ../../mod/mitem.php:133 -msgid "Edit element" -msgstr "Onderdeel bewerken" - -#: ../../mod/mitem.php:134 -msgid "Drop element" -msgstr "Onderdeel verwijderen" - -#: ../../mod/mitem.php:135 -msgid "New element" -msgstr "Nieuw element" - -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" -msgstr "Deze menu-container bewerken" - -#: ../../mod/mitem.php:137 -msgid "Add menu element" -msgstr "Menu-element toevoegen" - -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" -msgstr "Dit menu-item verwijderen" - -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" -msgstr "Dit menu-item bewerken" - -#: ../../mod/mitem.php:158 -msgid "New Menu Element" -msgstr "Nieuw menu-element" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" -msgstr "Permissies menu-item" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1049 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" - -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" -msgstr "Linktekst" - -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" -msgstr "URL of link" - -#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 -msgid "Use RedMatrix magic-auth if available" -msgstr "Gebruik RedMatrix' magic-auth wanneer beschikbaar" - -#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" -msgstr "Open link in nieuw venster" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" -msgstr "Volgorde in lijst" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Hogere nummers komen onderaan de lijst terecht" - -#: ../../mod/mitem.php:181 -msgid "Menu item not found." -msgstr "Menu-item niet gevonden." - -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." -msgstr "Menu-item verwijderd." - -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." -msgstr "Menu-item kon niet worden verwijderd." - -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" -msgstr "Menu-element bewerken" - -#: ../../mod/mitem.php:213 ../../mod/menu.php:130 -msgid "Modify" -msgstr "Wijzigen" - -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook onze apps, waar je vrijwel alles van de RedMatrix kan vinden. Voor hulp met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het supportkanaal (liefst in het Engels)." - -#: ../../mod/ping.php:266 -msgid "sent you a private message" -msgstr "stuurde jou een privébericht" - -#: ../../mod/ping.php:319 -msgid "added your channel" -msgstr "voegde jouw kanaal toe" - -#: ../../mod/ping.php:360 -msgid "posted an event" -msgstr "plaatste een gebeurtenis" - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Collectie aangemaakt" - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Collectie kon niet aangemaakt worden" - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Collectie bijgewerkt." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Kanaalcollectie aanmaken" - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Naam collectie:" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Kanalen in deze collectie zijn zichtbaar voor andere kanalen" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Collectie verwijderd" - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Verwijderen collectie mislukt" - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Collectiebewerker" - -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Kanalen" - -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Alle kanaalconnecties" - -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." - -#: ../../mod/search.php:13 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 ../../mod/photos.php:458 -#: ../../mod/directory.php:22 -msgid "Public access denied." -msgstr "Openbare toegang geweigerd." - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s volgt het %3$s van %2$s" - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "aanstoten, porren of andere dingen met iemand doen" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Ontvanger" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Maak dit bericht privé" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Geef toestemming voor applicatiekoppeling" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Inloggen om verder te kunnen 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 applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" - -#: ../../mod/api.php:105 ../../mod/settings.php:955 ../../mod/settings.php:960 -#: ../../mod/settings.php:1042 ../../mod/admin.php:392 -msgid "Yes" -msgstr "Ja" - -#: ../../mod/api.php:106 ../../mod/settings.php:955 ../../mod/settings.php:960 -#: ../../mod/settings.php:1042 ../../mod/admin.php:390 -msgid "No" -msgstr "Nee" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:583 -msgid "Profile not found." -msgstr "Profiel niet gevonden." - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profiel verwijderd." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profiel-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen" - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Geen profiel beschikbaar om te exporteren" - -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist" - -#: ../../mod/profiles.php:387 -msgid "Marital Status" -msgstr "Huwelijke status" - -#: ../../mod/profiles.php:391 -msgid "Romantic Partner" -msgstr "Romantische partner" - -#: ../../mod/profiles.php:395 -msgid "Likes" -msgstr "Houdt van" - -#: ../../mod/profiles.php:399 -msgid "Dislikes" -msgstr "Houdt niet van" - -#: ../../mod/profiles.php:403 -msgid "Work/Employment" -msgstr "Werk/arbeid" - -#: ../../mod/profiles.php:406 -msgid "Religion" -msgstr "Religie" - -#: ../../mod/profiles.php:410 -msgid "Political Views" -msgstr "Politieke overtuigingen" - -#: ../../mod/profiles.php:414 -msgid "Gender" -msgstr "Geslacht" - -#: ../../mod/profiles.php:418 -msgid "Sexual Preference" -msgstr "Seksuele voorkeur" - -#: ../../mod/profiles.php:422 -msgid "Homepage" -msgstr "Homepage" - -#: ../../mod/profiles.php:426 -msgid "Interests" -msgstr "Interesses" - -#: ../../mod/profiles.php:430 ../../mod/admin.php:866 -msgid "Address" -msgstr "Kanaaladres" - -#: ../../mod/profiles.php:437 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "Locatie" - -#: ../../mod/profiles.php:520 -msgid "Profile updated." -msgstr "Profiel bijgewerkt" - -#: ../../mod/profiles.php:609 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." - -#: ../../mod/profiles.php:649 -msgid "Edit Profile Details" -msgstr "Profiel bewerken" - -#: ../../mod/profiles.php:651 -msgid "View this profile" -msgstr "Profiel weergeven" - -#: ../../mod/profiles.php:653 -msgid "Change Profile Photo" -msgstr "Profielfoto wijzigen" - -#: ../../mod/profiles.php:654 -msgid "Create a new profile using these settings" -msgstr "Een nieuw profiel aanmaken met dit profiel als basis" - -#: ../../mod/profiles.php:655 -msgid "Clone this profile" -msgstr "Dit profiel klonen" - -#: ../../mod/profiles.php:656 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" - -#: ../../mod/profiles.php:658 -msgid "Import profile from file" -msgstr "Profiel vanuit bestand importeren" - -#: ../../mod/profiles.php:659 -msgid "Export profile to file" -msgstr "Profiel naar bestand exporteren" - -#: ../../mod/profiles.php:660 -msgid "Profile Name:" -msgstr "Profielnaam:" - -#: ../../mod/profiles.php:661 -msgid "Your Full Name:" -msgstr "Jouw volledige naam:" - -#: ../../mod/profiles.php:662 -msgid "Title/Description:" -msgstr "Titel/omschrijving:" - -#: ../../mod/profiles.php:663 -msgid "Your Gender:" -msgstr "Jouw geslacht" - -#: ../../mod/profiles.php:664 -msgid "Birthday :" -msgstr "Verjaardag: " - -#: ../../mod/profiles.php:665 -msgid "Street Address:" -msgstr "Straat en huisnummer:" - -#: ../../mod/profiles.php:666 -msgid "Locality/City:" -msgstr "Woonplaats:" - -#: ../../mod/profiles.php:667 -msgid "Postal/Zip Code:" -msgstr "Postcode:" - -#: ../../mod/profiles.php:668 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:669 -msgid "Region/State:" -msgstr "Provincie/gewest/deelstaat:" - -#: ../../mod/profiles.php:670 -msgid " Marital Status:" -msgstr " Huwelijkse staat:" - -#: ../../mod/profiles.php:671 -msgid "Who: (if applicable)" -msgstr "Wie (wanneer toepasselijk):" - -#: ../../mod/profiles.php:672 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl" - -#: ../../mod/profiles.php:673 -msgid "Since [date]:" -msgstr "Sinds [datum]:" - -#: ../../mod/profiles.php:675 -msgid "Homepage URL:" -msgstr "Adres homepage:" - -#: ../../mod/profiles.php:678 -msgid "Religious Views:" -msgstr "Religieuze overtuigingen" - -#: ../../mod/profiles.php:679 -msgid "Keywords:" -msgstr "Trefwoorden" - -#: ../../mod/profiles.php:682 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: muziek, fotografie, software" - -#: ../../mod/profiles.php:683 -msgid "Used in directory listings" -msgstr "Wordt in de kanalengids gebruikt" - -#: ../../mod/profiles.php:684 -msgid "Tell us about yourself..." -msgstr "Vertel ons iets over jezelf..." - -#: ../../mod/profiles.php:685 -msgid "Hobbies/Interests" -msgstr "Hobby's/interesses" - -#: ../../mod/profiles.php:686 -msgid "Contact information and Social Networks" -msgstr "Contactinformatie en sociale netwerken" - -#: ../../mod/profiles.php:687 -msgid "My other channels" -msgstr "Mijn andere kanalen" - -#: ../../mod/profiles.php:688 -msgid "Musical interests" -msgstr "Muzikale interesses" - -#: ../../mod/profiles.php:689 -msgid "Books, literature" -msgstr "Boeken/literatuur" - -#: ../../mod/profiles.php:690 -msgid "Television" -msgstr "Televisie" - -#: ../../mod/profiles.php:691 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultuur/entertainment" - -#: ../../mod/profiles.php:692 -msgid "Love/romance" -msgstr "Liefde/romantiek" - -#: ../../mod/profiles.php:693 -msgid "Work/employment" -msgstr "Werk/arbeid" - -#: ../../mod/profiles.php:694 -msgid "School/education" -msgstr "School/onderwijs" - -#: ../../mod/profiles.php:700 -msgid "This is your default profile." -msgstr "Dit is jouw standaardprofiel" - -#: ../../mod/profiles.php:711 ../../mod/directory.php:188 -msgid "Age: " -msgstr "Leeftijd:" - -#: ../../mod/profiles.php:754 -msgid "Edit/Manage Profiles" -msgstr "Profielen bewerken/beheren" - -#: ../../mod/profiles.php:755 -msgid "Add profile things" -msgstr "Dingen aan je profiel toevoegen" - -#: ../../mod/profiles.php:756 -msgid "Include desirable objects in your profile" -msgstr "Voeg door jou gewenste dingen aan jouw profiel toe" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Item is niet aanwezig." - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Ophalen URL gaf een foutmelding terug: %1$s" - -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Ongeldig item." - -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Kanaal niet gevonden." - -#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." -msgstr "Pagina niet gevonden." - -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 -msgid "Export Channel" -msgstr "Kanaal exporteren" - -#: ../../mod/uexport.php:35 -msgid "" -"Export your basic channel information to a small file. This acts as a " -"backup of your connections, permissions, profile and basic data, which can " -"be used to import your data to a new hub, but\tdoes not contain your " -"content." -msgstr "Exporteer de basisinformatie van jouw kanaal naar een klein bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." - -#: ../../mod/uexport.php:36 -msgid "Export Content" -msgstr "Inhoud exporteren" - -#: ../../mod/uexport.php:37 -msgid "" -"Export your channel information and all the content to a JSON backup. This " -"backs up all of your connections, permissions, profile data and all of your " -"content, but is generally not suitable for importing a channel to a new hub " -"as this file may be VERY large. Please be patient - it may take several " -"minutes for this download to begin." -msgstr "Exporteer informatie en alle inhoud van jouw kanaal naar een JSON-back-up. Dit slaat al jouw connecties, permissies, profielgegevens en de volledige inhoud van jouw kanaal op, maar is in het algemeen niet geschikt om op een nieuwe hub te importeren, omdat dit bestand ZEER groot kan worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed." - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Accountbeheer uitbesteden" - -#: ../../mod/delegate.php:123 -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 "Gevolmachtigde personen zijn in staat om alle aspecten van dit account te beheren, behalve enkele basisinstellingen. Besteed het beheer van je persoonlijke account niet aan iemand uit die je niet volledig vertrouwd." - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Bestaande accountbeheerders" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Bestaande gevolmachtigde accountbeheerders" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed." - -#: ../../mod/delegate.php:130 ../../mod/tagrm.php:133 ../../mod/photos.php:902 -msgid "Remove" -msgstr "Verwijderen" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Toevoegen" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Geen" - -#: ../../mod/siteinfo.php:93 -#, php-format -msgid "Version %s" -msgstr "Versie %s" - -#: ../../mod/siteinfo.php:114 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plug-ins/add-ons/apps:" - -#: ../../mod/siteinfo.php:127 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plug-ins/add-ons/apps" - -#: ../../mod/siteinfo.php:135 -msgid "Red" -msgstr "Red" - -#: ../../mod/siteinfo.php:136 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy." - -#: ../../mod/siteinfo.php:138 -msgid "Tag: " -msgstr "Tag: " - -#: ../../mod/siteinfo.php:140 -msgid "Last background fetch: " -msgstr "Meest recente achtergrond-fetch:" - -#: ../../mod/siteinfo.php:143 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" - -#: ../../mod/siteinfo.php:144 -msgid "" -"Please visit RedMatrix.me to learn more" -" about the Red Matrix." -msgstr "Bezoek RedMatrix.me om meer te leren over de RedMatrix." - -#: ../../mod/siteinfo.php:145 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" - -#: ../../mod/siteinfo.php:148 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" - -#: ../../mod/siteinfo.php:150 -msgid "Site Administrators" -msgstr "Hubbeheerders: " - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Bron aangemaakt." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Bron aangemaakt." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nieuwe bron" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importeer alleen inhoud met deze woorden (één per regel)" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Laat leeg om alle openbare inhoud te importeren" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Kanaalnaam" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Bron niet gevonden" - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Bron bewerken" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Bron verwijderen" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Bron verwijderd" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Verwijderen bron mislukt." - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificator" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Zichtbaarheid profiel " - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Zichtbaar voor" - -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" -msgstr "Alle connecties" - -#: ../../mod/events.php:81 -msgid "Event can not end before it has started." -msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" - -#: ../../mod/events.php:86 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van gebeurtenis zijn vereist." - -#: ../../mod/events.php:100 -msgid "Event not found." -msgstr "Gebeurtenis niet gevonden" - -#: ../../mod/events.php:369 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:391 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" - -#: ../../mod/events.php:443 -msgid "Create New Event" -msgstr "Nieuwe gebeurtenis aanmaken" - -#: ../../mod/events.php:444 ../../mod/photos.php:856 -msgid "Previous" -msgstr "Vorige" - -#: ../../mod/events.php:445 ../../mod/setup.php:265 ../../mod/photos.php:865 -msgid "Next" -msgstr "Volgende" - -#: ../../mod/events.php:446 -msgid "Export" -msgstr "Exporteren" - -#: ../../mod/events.php:571 -msgid "Event details" -msgstr "Details van gebeurtenis" - -#: ../../mod/events.php:572 -msgid "Starting date and Title are required." -msgstr "Begintijd en titel zijn vereist." - -#: ../../mod/events.php:574 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (door komma's gescheiden lijst)" - -#: ../../mod/events.php:576 -msgid "Event Starts:" -msgstr "Begin gebeurtenis:" - -#: ../../mod/events.php:576 ../../mod/events.php:592 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 -msgid "Required" -msgstr "Vereist" - -#: ../../mod/events.php:582 -msgid "Finish date/time is not known or not relevant" -msgstr "Einddatum/-tijd is niet bekend of niet relevant" - -#: ../../mod/events.php:584 -msgid "Event Finishes:" -msgstr "Einde gebeurtenis:" - -#: ../../mod/events.php:586 -msgid "Adjust for viewer timezone" -msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" - -#: ../../mod/events.php:588 -msgid "Description:" -msgstr "Omschrijving:" - -#: ../../mod/events.php:592 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:594 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Openbare hubs" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "URL hub" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Toegangstype" - -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "Registratiebeleid" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." - -#: ../../mod/channel.php:87 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Kies een bladwijzermap" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Bladwijzer opslaan" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL van bladwijzer" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Omschrijving" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Of geef de naam op van een nieuwe bladwijzermap" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Chatkanaal niet gevonden" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Chatkanaal verlaten" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Chatkanaal verwijderen" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Ik ben momenteel afwezig" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Ik ben online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Chatkanaal aan bladwijzers toevoegen" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nieuw chatkanaal" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Naam chatkanaal" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Chatkanalen van %1$s" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Afwezig" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Inloggen." - -#: ../../mod/editpost.php:20 ../../mod/editblock.php:79 -#: ../../mod/editblock.php:95 ../../mod/editlayout.php:78 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" -msgstr "Item niet gevonden" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Item is niet te bewerken" - -#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 -msgid "Edit post" -msgstr "Bericht bewerken" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Item verwijderen?" - -#: ../../mod/editpost.php:116 ../../mod/editblock.php:147 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 -msgid "Insert YouTube video" -msgstr "YouTube-video invoegen" - -#: ../../mod/editpost.php:117 ../../mod/editblock.php:148 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 -msgid "Insert Vorbis [.ogg] video" -msgstr "Vorbis-video [.ogg] invoegen" - -#: ../../mod/editpost.php:118 ../../mod/editblock.php:149 -#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Vorbis-audio [.ogg] invoegen" - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Verwijder dit kanaal" - -#: ../../mod/removeme.php:58 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden." - -#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 -msgid "Please enter your password for verification:" -msgstr "Vul je wachtwoord in ter verificatie:" - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen" - -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd." - -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanaal verwijderen" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Geen kanaal." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Veel voorkomende connecties" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Geen gemeenschappelijke connecties." - -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Het foutbericht was:" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Authenticatie mislukt." - -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Authenticatie op afstand" - -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" - -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Authenticeren" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." - -#: ../../mod/lostpass.php:85 ../../boot.php:1550 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Kopieer of sla je nieuwe wachtwoord op - en" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" - -#: ../../mod/lostpass.php:123 -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 deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "E-mailadres" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Opnieuw instellen" - -#: ../../mod/settings.php:73 -msgid "Name is required" -msgstr "Naam is vereist" - -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" -msgstr "Key en secret zijn vereist" - -#: ../../mod/settings.php:222 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." - -#: ../../mod/settings.php:226 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." - -#: ../../mod/settings.php:240 -msgid "Password changed." -msgstr "Wachtwoord veranderd." - -#: ../../mod/settings.php:242 -msgid "Password update failed. Please try again." -msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." - -#: ../../mod/settings.php:256 -msgid "Not valid email." -msgstr "Geen geldig e-mailadres." - -#: ../../mod/settings.php:259 -msgid "Protected email address. Cannot change to that email." -msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." - -#: ../../mod/settings.php:268 -msgid "System failure storing new email. Please try again." -msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." - -#: ../../mod/settings.php:507 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." - -#: ../../mod/settings.php:576 ../../mod/settings.php:602 -#: ../../mod/settings.php:638 -msgid "Add application" -msgstr "Applicatie toevoegen" - -#: ../../mod/settings.php:579 -msgid "Name of application" -msgstr "Naam van applicatie" - -#: ../../mod/settings.php:580 ../../mod/settings.php:606 -msgid "Consumer Key" -msgstr "Consumer key" - -#: ../../mod/settings.php:580 ../../mod/settings.php:581 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" - -#: ../../mod/settings.php:581 ../../mod/settings.php:607 -msgid "Consumer Secret" -msgstr "Consumer secret" - -#: ../../mod/settings.php:582 ../../mod/settings.php:608 -msgid "Redirect" -msgstr "Redirect/doorverwijzing" - -#: ../../mod/settings.php:582 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" - -#: ../../mod/settings.php:583 ../../mod/settings.php:609 -msgid "Icon url" -msgstr "URL van pictogram" - -#: ../../mod/settings.php:583 -msgid "Optional" -msgstr "Optioneel" - -#: ../../mod/settings.php:594 -msgid "You can't edit this application." -msgstr "Je kan deze applicatie niet bewerken" - -#: ../../mod/settings.php:637 -msgid "Connected Apps" -msgstr "Verbonden applicaties" - -#: ../../mod/settings.php:641 -msgid "Client key starts with" -msgstr "Client key begint met" - -#: ../../mod/settings.php:642 -msgid "No name" -msgstr "Geen naam" - -#: ../../mod/settings.php:643 -msgid "Remove authorization" -msgstr "Autorisatie verwijderen" - -#: ../../mod/settings.php:654 -msgid "No feature settings configured" -msgstr "Geen plugin-instellingen ingesteld" - -#: ../../mod/settings.php:662 -msgid "Feature Settings" -msgstr "Plugin-instellingen" - -#: ../../mod/settings.php:685 -msgid "Account Settings" -msgstr "Account-instellingen" - -#: ../../mod/settings.php:686 -msgid "Password Settings" -msgstr "Wachtwoord-instellingen" - -#: ../../mod/settings.php:687 -msgid "New Password:" -msgstr "Nieuw wachtwoord:" - -#: ../../mod/settings.php:688 -msgid "Confirm:" -msgstr "Bevestigen:" - -#: ../../mod/settings.php:688 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" - -#: ../../mod/settings.php:690 ../../mod/settings.php:1023 -msgid "Email Address:" -msgstr "E-mailadres:" - -#: ../../mod/settings.php:691 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Account verwijderen" - -#: ../../mod/settings.php:692 -msgid "Remove this account from this server including all its channels" -msgstr "Dit account en al zijn kanalen van deze RedMatrix-hub verwijderen" - -#: ../../mod/settings.php:693 ../../mod/settings.php:1104 -msgid "Warning: This action is permanent and cannot be reversed." -msgstr "Waarschuwing: Deze handeling is van permanente aard en kan niet meer worden teruggedraaid." - -#: ../../mod/settings.php:709 -msgid "Off" -msgstr "Uit" - -#: ../../mod/settings.php:709 -msgid "On" -msgstr "Aan" - -#: ../../mod/settings.php:716 -msgid "Additional Features" -msgstr "Extra functies" - -#: ../../mod/settings.php:740 -msgid "Connector Settings" -msgstr "Instellingen externe koppelingen" - -#: ../../mod/settings.php:779 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" - -#: ../../mod/settings.php:782 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (experimenteel)" - -#: ../../mod/settings.php:785 ../../mod/admin.php:363 -msgid "mobile" -msgstr "mobiel" - -#: ../../mod/settings.php:821 -msgid "Display Settings" -msgstr "Weergave-instellingen" - -#: ../../mod/settings.php:827 -msgid "Display Theme:" -msgstr "Gebruik thema:" - -#: ../../mod/settings.php:828 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" - -#: ../../mod/settings.php:829 -msgid "Enable user zoom on mobile devices" -msgstr "Inzoomen op smartphones en tablets toestaan" - -#: ../../mod/settings.php:830 -msgid "Update browser every xx seconds" -msgstr "Ververs de webbrowser om de zoveel seconde" - -#: ../../mod/settings.php:830 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimaal 10 seconde, geen maximum" - -#: ../../mod/settings.php:831 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximaal aantal conversaties die per keer geladen worden:" - -#: ../../mod/settings.php:831 -msgid "Maximum of 100 items" -msgstr "Maximaal 100 conversaties" - -#: ../../mod/settings.php:832 -msgid "Don't show emoticons" -msgstr "Geen emoticons weergeven" - -#: ../../mod/settings.php:833 -msgid "Link post titles to source" -msgstr "Berichtkoppen naar originele locatie linken" - -#: ../../mod/settings.php:834 -msgid "System Page Layout Editor - (advanced)" -msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" - -#: ../../mod/settings.php:837 -msgid "Use blog/list mode on channel page" -msgstr "Gebruik blog/lijst-modus op kanaalpagina" - -#: ../../mod/settings.php:837 ../../mod/settings.php:838 -msgid "(comments displayed separately)" -msgstr "(reacties worden afzonderlijk weergeven)" - -#: ../../mod/settings.php:838 -msgid "Use blog/list mode on matrix page" -msgstr "Gebruik blog/lijst-modus op matrixpagina" - -#: ../../mod/settings.php:839 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" - -#: ../../mod/settings.php:839 ../../mod/settings.php:840 -msgid "click to expand content exceeding this height" -msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" - -#: ../../mod/settings.php:840 -msgid "Matrix page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op matrixpagina (in pixels)" - -#: ../../mod/settings.php:874 -msgid "Nobody except yourself" -msgstr "Niemand, behalve jezelf" - -#: ../../mod/settings.php:875 -msgid "Only those you specifically allow" -msgstr "Alleen connecties met uitdrukkelijke toestemming" - -#: ../../mod/settings.php:876 -msgid "Approved connections" -msgstr "Geaccepteerde connecties" - -#: ../../mod/settings.php:877 -msgid "Any connections" -msgstr "Alle connecties" - -#: ../../mod/settings.php:878 -msgid "Anybody on this website" -msgstr "Iedereen op deze hub" - -#: ../../mod/settings.php:879 -msgid "Anybody in this network" -msgstr "Iedereen in dit netwerk" - -#: ../../mod/settings.php:880 -msgid "Anybody authenticated" -msgstr "Geauthenticeerd" - -#: ../../mod/settings.php:881 -msgid "Anybody on the internet" -msgstr "Iedereen op het internet" - -#: ../../mod/settings.php:955 -msgid "Publish your default profile in the network directory" -msgstr "Publiceer je standaardprofiel in de kanalengids" - -#: ../../mod/settings.php:960 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" - -#: ../../mod/settings.php:964 ../../mod/profile_photo.php:365 -msgid "or" -msgstr "of" - -#: ../../mod/settings.php:969 -msgid "Your channel address is" -msgstr "Jouw kanaaladres is" - -#: ../../mod/settings.php:1014 -msgid "Channel Settings" -msgstr "Kanaal-instellingen" - -#: ../../mod/settings.php:1021 -msgid "Basic Settings" -msgstr "Basis-instellingen" - -#: ../../mod/settings.php:1024 -msgid "Your Timezone:" -msgstr "Jouw tijdzone:" - -#: ../../mod/settings.php:1025 -msgid "Default Post Location:" -msgstr "Standaardlocatie bericht:" - -#: ../../mod/settings.php:1025 -msgid "Geographical location to display on your posts" -msgstr "Geografische locatie die bij het bericht moet worden vermeld" - -#: ../../mod/settings.php:1026 -msgid "Use Browser Location:" -msgstr "Locatie van webbrowser gebruiken:" - -#: ../../mod/settings.php:1028 -msgid "Adult Content" -msgstr "Inhoud voor volwassenen" - -#: ../../mod/settings.php:1028 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" - -#: ../../mod/settings.php:1030 -msgid "Security and Privacy Settings" -msgstr "Veiligheids- en privacy-instellingen" - -#: ../../mod/settings.php:1032 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." - -#: ../../mod/settings.php:1034 -msgid "Hide my online presence" -msgstr "Verberg mijn aanwezigheid" - -#: ../../mod/settings.php:1034 -msgid "Prevents displaying in your profile that you are online" -msgstr "Voorkomt dat op je kanaal te zien valt dat je momenteel op de RedMatrix aanwezig bent" - -#: ../../mod/settings.php:1036 -msgid "Simple Privacy Settings:" -msgstr "Eenvoudige privacy-instellingen:" - -#: ../../mod/settings.php:1037 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" - -#: ../../mod/settings.php:1038 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" - -#: ../../mod/settings.php:1039 -msgid "Private - default private, never open or public" -msgstr "Privé (standaard privé en nooit openbaar)" - -#: ../../mod/settings.php:1040 -msgid "Blocked - default blocked to/from everybody" -msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" - -#: ../../mod/settings.php:1042 -msgid "Allow others to tag your posts" -msgstr "Anderen toestaan om je berichten te taggen" - -#: ../../mod/settings.php:1042 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" - -#: ../../mod/settings.php:1044 -msgid "Advanced Privacy Settings" -msgstr "Geavanceerde privacy-instellingen" - -#: ../../mod/settings.php:1046 -msgid "Expire other channel content after this many days" -msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" - -#: ../../mod/settings.php:1046 -msgid "0 or blank prevents expiration" -msgstr "0 of leeg voorkomt het verlopen" - -#: ../../mod/settings.php:1047 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal connectieverzoeken per dag:" - -#: ../../mod/settings.php:1047 -msgid "May reduce spam activity" -msgstr "Kan eventuele spam verminderen" - -#: ../../mod/settings.php:1048 -msgid "Default Post Permissions" -msgstr "Standaard permissies voor nieuwe berichten" - -#: ../../mod/settings.php:1053 -msgid "Channel permissions category:" -msgstr "Kanaaltype en -permissies:" - -#: ../../mod/settings.php:1059 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" - -#: ../../mod/settings.php:1059 -msgid "Useful to reduce spamming" -msgstr "Kan eventuele spam verminderen" - -#: ../../mod/settings.php:1062 -msgid "Notification Settings" -msgstr "Notificatie-instellingen" - -#: ../../mod/settings.php:1063 -msgid "By default post a status message when:" -msgstr "Plaats automatisch een statusbericht wanneer:" - -#: ../../mod/settings.php:1064 -msgid "accepting a friend request" -msgstr "Een connectieverzoek wordt geaccepteerd" - -#: ../../mod/settings.php:1065 -msgid "joining a forum/community" -msgstr "Je lid wordt van een forum/groep" - -#: ../../mod/settings.php:1066 -msgid "making an interesting profile change" -msgstr "Er sprake is van een interessante profielwijziging" - -#: ../../mod/settings.php:1067 -msgid "Send a notification email when:" -msgstr "Verzend een notificatie per e-mail wanneer:" - -#: ../../mod/settings.php:1068 -msgid "You receive a connection request" -msgstr "Je een connectieverzoek ontvangt" - -#: ../../mod/settings.php:1069 -msgid "Your connections are confirmed" -msgstr "Jouw connecties zijn bevestigd" - -#: ../../mod/settings.php:1070 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op jouw kanaal heeft geschreven" - -#: ../../mod/settings.php:1071 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" - -#: ../../mod/settings.php:1072 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" - -#: ../../mod/settings.php:1073 -msgid "You receive a friend suggestion" -msgstr "Je een kanaalvoorstel ontvangt" - -#: ../../mod/settings.php:1074 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" - -#: ../../mod/settings.php:1075 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je bent in een bericht aangestoten/gepord/etc." - -#: ../../mod/settings.php:1078 -msgid "Show visual notifications including:" -msgstr "Toon de volgende zichtbare notificaties:" - -#: ../../mod/settings.php:1080 -msgid "Unseen matrix activity" -msgstr "Niet bekeken matrix-activiteit" - -#: ../../mod/settings.php:1081 -msgid "Unseen channel activity" -msgstr "Niet bekeken kanaal-activiteit" - -#: ../../mod/settings.php:1082 -msgid "Unseen private messages" -msgstr "Niet bekeken privéberichten" - -#: ../../mod/settings.php:1082 ../../mod/settings.php:1087 -#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 -msgid "Recommended" -msgstr "Aanbevolen" - -#: ../../mod/settings.php:1083 -msgid "Upcoming events" -msgstr "Aankomende gebeurtenissen" - -#: ../../mod/settings.php:1084 -msgid "Events today" -msgstr "Gebeurtissen van vandaag" - -#: ../../mod/settings.php:1085 -msgid "Upcoming birthdays" -msgstr "Aankomende verjaardagen" - -#: ../../mod/settings.php:1085 -msgid "Not available in all themes" -msgstr "Niet in alle thema's beschikbaar" - -#: ../../mod/settings.php:1086 -msgid "System (personal) notifications" -msgstr "(Persoonlijke) systeemnotificaties" - -#: ../../mod/settings.php:1087 -msgid "System info messages" -msgstr "Systeemmededelingen" - -#: ../../mod/settings.php:1088 -msgid "System critical alerts" -msgstr "Kritische systeemwaarschuwingen" - -#: ../../mod/settings.php:1089 -msgid "New connections" -msgstr "Nieuwe connecties" - -#: ../../mod/settings.php:1090 -msgid "System Registrations" -msgstr "Nieuwe accountregistraties op deze hub" - -#: ../../mod/settings.php:1091 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" - -#: ../../mod/settings.php:1093 -msgid "Notify me of events this many days in advance" -msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" - -#: ../../mod/settings.php:1093 -msgid "Must be greater than 0" -msgstr "Moet hoger dan 0 zijn" - -#: ../../mod/settings.php:1095 -msgid "Advanced Account/Page Type Settings" -msgstr "Instellingen geavanceerd account/paginatype" - -#: ../../mod/settings.php:1096 -msgid "Change the behaviour of this account for special situations" -msgstr "Verander het gedrag van dit account voor speciale situaties" - -#: ../../mod/settings.php:1099 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" - -#: ../../mod/settings.php:1100 -msgid "Miscellaneous Settings" -msgstr "Diverse instellingen" - -#: ../../mod/settings.php:1102 -msgid "Personal menu to display in your channel pages" -msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" - -#: ../../mod/settings.php:1103 -msgid "Remove this channel" -msgstr "Verwijder dit kanaal" - -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de connectie-gegevens." - -#: ../../mod/connections.php:51 ../../mod/connedit.php:86 -msgid "Could not locate selected profile." -msgstr "Kon het gekozen profiel niet vinden." - -#: ../../mod/connections.php:94 ../../mod/connedit.php:140 -msgid "Connection updated." -msgstr "Connectie bijgewerkt." - -#: ../../mod/connections.php:96 ../../mod/connedit.php:142 -msgid "Failed to update connection record." -msgstr "Bijwerken van connectie-gegevens mislukt." - -#: ../../mod/connections.php:191 ../../mod/connections.php:292 -msgid "Blocked" -msgstr "Geblokkeerd" - -#: ../../mod/connections.php:196 ../../mod/connections.php:299 -msgid "Ignored" -msgstr "Genegeerd" - -#: ../../mod/connections.php:201 ../../mod/connections.php:313 -msgid "Hidden" -msgstr "Verborgen" - -#: ../../mod/connections.php:206 ../../mod/connections.php:306 -msgid "Archived" -msgstr "Gearchiveerd" - -#: ../../mod/connections.php:230 ../../mod/connections.php:245 -msgid "All" -msgstr "Alles" - -#: ../../mod/connections.php:270 -msgid "Suggest new connections" -msgstr "Nieuwe kanalen voorstellen" - -#: ../../mod/connections.php:273 -msgid "New Connections" -msgstr "Nieuwe connecties" - -#: ../../mod/connections.php:276 -msgid "Show pending (new) connections" -msgstr "Nog te accepteren (nieuwe) connecties weergeven" - -#: ../../mod/connections.php:282 -msgid "Show all connections" -msgstr "Toon alle connecties" - -#: ../../mod/connections.php:285 -msgid "Unblocked" -msgstr "Niet geblokkeerd" - -#: ../../mod/connections.php:288 -msgid "Only show unblocked connections" -msgstr "Toon alleen niet geblokkeerde connecties" - -#: ../../mod/connections.php:295 -msgid "Only show blocked connections" -msgstr "Toon alleen geblokkeerde connecties" - -#: ../../mod/connections.php:302 -msgid "Only show ignored connections" -msgstr "Toon alleen genegeerde connecties" - -#: ../../mod/connections.php:309 -msgid "Only show archived connections" -msgstr "Toon alleen gearchiveerde connecties" - -#: ../../mod/connections.php:316 -msgid "Only show hidden connections" -msgstr "Toon alleen verborgen connecties" - -#: ../../mod/connections.php:371 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:372 -msgid "Edit connection" -msgstr "Connectie bewerken" - -#: ../../mod/connections.php:410 -msgid "Search your connections" -msgstr "Doorzoek jouw connecties" - -#: ../../mod/connections.php:411 -msgid "Finding: " -msgstr "Zoeken naar: " - -#: ../../mod/manage.php:138 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." - -#: ../../mod/manage.php:146 -msgid "Create a new channel" -msgstr "Nieuw kanaal aanmaken" - -#: ../../mod/manage.php:151 -msgid "Current Channel" -msgstr "Huidig kanaal" - -#: ../../mod/manage.php:153 -msgid "Switch to one of your channels by selecting it." -msgstr "Activeer een van jouw andere kanalen door er op te klikken." - -#: ../../mod/manage.php:154 -msgid "Default Channel" -msgstr "Standaardkanaal" - -#: ../../mod/manage.php:155 -msgid "Make Default" -msgstr "Als standaard instellen" - -#: ../../mod/manage.php:158 -#, php-format -msgid "%d new messages" -msgstr "%d nieuwe berichten" - -#: ../../mod/manage.php:159 -#, php-format -msgid "%d new introductions" -msgstr "%d nieuwe connectieverzoeken" - -#: ../../mod/connedit.php:189 -msgid "is now connected to" -msgstr "is nu verbonden met" - -#: ../../mod/connedit.php:310 -msgid "Could not access address book record." -msgstr "Kon geen toegang krijgen tot de record van de connectie." - -#: ../../mod/connedit.php:324 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" - -#: ../../mod/connedit.php:331 -msgid "Channel has been unblocked" -msgstr "Kanaal is gedeblokkeerd" - -#: ../../mod/connedit.php:332 -msgid "Channel has been blocked" -msgstr "Kanaal is geblokkeerd" - -#: ../../mod/connedit.php:336 ../../mod/connedit.php:348 -#: ../../mod/connedit.php:360 ../../mod/connedit.php:372 -#: ../../mod/connedit.php:388 -msgid "Unable to set address book parameters." -msgstr "Niet in staat om de parameters van connecties in te stellen." - -#: ../../mod/connedit.php:343 -msgid "Channel has been unignored" -msgstr "Kanaal wordt niet meer genegeerd" - -#: ../../mod/connedit.php:344 -msgid "Channel has been ignored" -msgstr "Kanaal wordt genegeerd" - -#: ../../mod/connedit.php:355 -msgid "Channel has been unarchived" -msgstr "Kanaal is niet meer gearchiveerd" - -#: ../../mod/connedit.php:356 -msgid "Channel has been archived" -msgstr "Kanaal is gearchiveerd" - -#: ../../mod/connedit.php:367 -msgid "Channel has been unhidden" -msgstr "Kanaal is niet meer verborgen" - -#: ../../mod/connedit.php:368 -msgid "Channel has been hidden" -msgstr "Kanaal is verborgen" - -#: ../../mod/connedit.php:383 -msgid "Channel has been approved" -msgstr "Connectie/kanaal is geaccepteerd" - -#: ../../mod/connedit.php:384 -msgid "Channel has been unapproved" -msgstr "Connectie/kanaal is afgewezen" - -#: ../../mod/connedit.php:412 -msgid "Connection has been removed." -msgstr "Connectie is verwijderd" - -#: ../../mod/connedit.php:432 -#, php-format -msgid "View %s's profile" -msgstr "Profiel van %s weergeven" - -#: ../../mod/connedit.php:436 -msgid "Refresh Permissions" -msgstr "Permissies vernieuwen" - -#: ../../mod/connedit.php:439 -msgid "Fetch updated permissions" -msgstr "Aangepaste permissies ophalen" - -#: ../../mod/connedit.php:443 -msgid "Recent Activity" -msgstr "Recente activiteit" - -#: ../../mod/connedit.php:446 -msgid "View recent posts and comments" -msgstr "Recente berichten en reacties weergeven" - -#: ../../mod/connedit.php:450 ../../mod/connedit.php:595 -#: ../../mod/admin.php:732 -msgid "Unblock" -msgstr "Deblokkeren" - -#: ../../mod/connedit.php:450 ../../mod/connedit.php:595 -#: ../../mod/admin.php:731 -msgid "Block" -msgstr "Blokkeren" - -#: ../../mod/connedit.php:453 -msgid "Block or Unblock this connection" -msgstr "Deze connectie blokkeren of deblokkeren" - -#: ../../mod/connedit.php:457 ../../mod/connedit.php:596 -msgid "Unignore" -msgstr "Niet meer negeren" - -#: ../../mod/connedit.php:457 ../../mod/connedit.php:596 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Negeren" - -#: ../../mod/connedit.php:460 -msgid "Ignore or Unignore this connection" -msgstr "Deze connectie negeren of niet meer negeren" - -#: ../../mod/connedit.php:463 -msgid "Unarchive" -msgstr "Niet meer archiveren" - -#: ../../mod/connedit.php:463 -msgid "Archive" -msgstr "Archiveren" - -#: ../../mod/connedit.php:466 -msgid "Archive or Unarchive this connection" -msgstr "Deze connectie archiveren of niet meer archiveren" - -#: ../../mod/connedit.php:469 -msgid "Unhide" -msgstr "Niet meer verbergen" - -#: ../../mod/connedit.php:469 -msgid "Hide" -msgstr "Verbergen" - -#: ../../mod/connedit.php:472 -msgid "Hide or Unhide this connection" -msgstr "Deze connectie verbergen of niet meer verbergen" - -#: ../../mod/connedit.php:479 -msgid "Delete this connection" -msgstr "Deze connectie verwijderen" - -#: ../../mod/connedit.php:523 ../../mod/connedit.php:553 -msgid "Approve this connection" -msgstr "Deze connectie accepteren" - -#: ../../mod/connedit.php:523 -msgid "Accept connection to allow communication" -msgstr "Keur deze connectie goed om communicatie toe te staan" - -#: ../../mod/connedit.php:539 -#, php-format -msgid "Connections: settings for %s" -msgstr "Connecties: instellingen voor %s" - -#: ../../mod/connedit.php:540 -msgid "Apply these permissions automatically" -msgstr "Deze permissies automatisch toepassen" - -#: ../../mod/connedit.php:544 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen." - -#: ../../mod/connedit.php:546 -msgid "Slide to adjust your degree of friendship" -msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" - -#: ../../mod/connedit.php:552 -msgid "inherited" -msgstr "geërfd" - -#: ../../mod/connedit.php:554 -msgid "Connection has no individual permissions!" -msgstr "Connectie heeft geen individuele permissies!" - -#: ../../mod/connedit.php:555 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan." - -#: ../../mod/connedit.php:557 -msgid "Profile Visibility" -msgstr "Zichtbaarheid profiel" - -#: ../../mod/connedit.php:558 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." - -#: ../../mod/connedit.php:559 -msgid "Contact Information / Notes" -msgstr "Informatie/aantekeningen over connectie" - -#: ../../mod/connedit.php:560 -msgid "Edit contact notes" -msgstr "Bewerk aantekeningen over contact" - -#: ../../mod/connedit.php:562 -msgid "Their Settings" -msgstr "Hun instellingen" - -#: ../../mod/connedit.php:563 -msgid "My Settings" -msgstr "Mijn instellingen" - -#: ../../mod/connedit.php:565 -msgid "Clear/Disable Automatic Permissions" -msgstr "Verwijderen/uitschakelen automatische permissies" - -#: ../../mod/connedit.php:566 -msgid "Forum Members" -msgstr "Forumleden" - -#: ../../mod/connedit.php:567 -msgid "Soapbox" -msgstr "Zeepkist" - -#: ../../mod/connedit.php:568 -msgid "Full Sharing (typical social network permissions)" -msgstr "Voluit delen (vergelijkbaar met die van sociale netwerken)" - -#: ../../mod/connedit.php:569 -msgid "Cautious Sharing " -msgstr "Voorzichtig delen" - -#: ../../mod/connedit.php:570 -msgid "Follow Only" -msgstr "Alleen volgen" - -#: ../../mod/connedit.php:571 -msgid "Individual Permissions" -msgstr "Individuele permissies" - -#: ../../mod/connedit.php:572 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect." - -#: ../../mod/connedit.php:573 -msgid "Advanced Permissions" -msgstr "Geavanceerde permissies" - -#: ../../mod/connedit.php:574 -msgid "Simple Permissions (select one and submit)" -msgstr "Eenvoudige permissies (selecteer er één en opslaan)" - -#: ../../mod/connedit.php:578 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "Profiel van %s bezoeken - %s" - -#: ../../mod/connedit.php:579 -msgid "Block/Unblock contact" -msgstr "Connectie blokkeren/deblokkeren" - -#: ../../mod/connedit.php:580 -msgid "Ignore contact" -msgstr "Connectie negeren" - -#: ../../mod/connedit.php:581 -msgid "Repair URL settings" -msgstr "URL-instellingen repareren" - -#: ../../mod/connedit.php:582 -msgid "View conversations" -msgstr "Conversaties weergeven" - -#: ../../mod/connedit.php:584 -msgid "Delete contact" -msgstr "Connectie verwijderen" - -#: ../../mod/connedit.php:587 -msgid "Last update:" -msgstr "Laatste wijziging:" - -#: ../../mod/connedit.php:589 -msgid "Update public posts" -msgstr "Openbare berichten updaten" - -#: ../../mod/connedit.php:591 -msgid "Update now" -msgstr "Nu updaten" - -#: ../../mod/connedit.php:597 -msgid "Currently blocked" -msgstr "Momenteel geblokkeerd" - -#: ../../mod/connedit.php:598 -msgid "Currently ignored" -msgstr "Momenteel genegeerd" - -#: ../../mod/connedit.php:599 -msgid "Currently archived" -msgstr "Momenteel gearchiveerd" - -#: ../../mod/connedit.php:600 -msgid "Currently pending" -msgstr "Moeten nog geaccepteerd of afgewezen worden" - -#: ../../mod/connedit.php:601 -msgid "Hide this contact from others" -msgstr "Verberg deze connectie voor anderen" - -#: ../../mod/connedit.php:601 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Reacties/vind-ik-leuks op jouw openbare berichten kunnen zichtbaar blijven" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Niet in staat om ontvanger op te zoeken." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Kan opgevraagd kanaal niet verifieren" - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." - -#: ../../mod/mail.php:136 -msgid "Message deleted." -msgstr "Bericht verwijderd." - -#: ../../mod/mail.php:153 -msgid "Message recalled." -msgstr "Bericht ingetrokken." - -#: ../../mod/mail.php:222 -msgid "Send Private Message" -msgstr "Privébericht versturen" - -#: ../../mod/mail.php:223 ../../mod/mail.php:340 -msgid "To:" -msgstr "Aan:" - -#: ../../mod/mail.php:228 ../../mod/mail.php:342 -msgid "Subject:" -msgstr "Onderwerp:" - -#: ../../mod/mail.php:232 ../../mod/mail.php:345 ../../mod/invite.php:131 -msgid "Your message:" -msgstr "Jouw bericht:" - -#: ../../mod/mail.php:239 -msgid "Send" -msgstr "Verzenden" - -#: ../../mod/mail.php:266 -msgid "Message not found." -msgstr "Bericht niet gevonden" - -#: ../../mod/mail.php:309 -msgid "Delete message" -msgstr "Bericht verwijderen" - -#: ../../mod/mail.php:310 -msgid "Recall message" -msgstr "Bericht intrekken" - -#: ../../mod/mail.php:312 -msgid "Message has been recalled." -msgstr "Bericht is ingetrokken." - -#: ../../mod/mail.php:329 -msgid "Private Conversation" -msgstr "Privéconversatie" - -#: ../../mod/mail.php:333 ../../mod/message.php:72 -msgid "Delete conversation" -msgstr "Verwijder conversatie" - -#: ../../mod/mail.php:335 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." - -#: ../../mod/mail.php:339 -msgid "Send Reply" -msgstr "Antwoord versturen" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Bladwijzer toegevoegd" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Mijn bladwijzers" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Bladwijzers van mijn connecties" - -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Deze hub is geen kanalengidshub (directoryserver)" - -#: ../../mod/cloud.php:130 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++" - -#: ../../mod/acl.php:245 -msgid "network" -msgstr "netwerk" - -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "Bloknaam" - -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Blok bewerken" - -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Blok verwijderen" - -#: ../../mod/editblock.php:183 -msgid "Delete Block" -msgstr "Blok verwijderen" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Lay-out bijgewerkt." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Systeempagina's bewerken" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Lay-out niet gevonden." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulenaam:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 -msgid "Layout Help" -msgstr "Lay-out-hulp" - -#: ../../mod/editlayout.php:108 -msgid "Edit Layout" -msgstr "Lay-out bewerken" - -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" -msgstr "Lay-out verwijderen?" - -#: ../../mod/editlayout.php:178 -msgid "Delete Layout" -msgstr "Lay-out verwijderen" - -#: ../../mod/home.php:48 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix - "The Network"" - -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" - -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" -msgstr "Webpagina bewerken" - -#: ../../mod/editwebpage.php:150 -msgid "Delete webpage?" -msgstr "Webpagina verwijderen?" - -#: ../../mod/editwebpage.php:215 -msgid "Delete Webpage" -msgstr "Webpagina verwijderen" - -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "Webpagina" - -#: ../../mod/impel.php:38 -msgid "block" -msgstr "blok" - -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "lay-out" - -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "%s onderdeel geïnstalleerd" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " - -#: ../../mod/profile_photo.php:161 -msgid "Image resize failed." -msgstr "Afbeelding kon niet van grootte veranderd worden." - -#: ../../mod/profile_photo.php:205 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." - -#: ../../mod/profile_photo.php:232 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Afbeeldingsgrootte overschrijdt het limiet van %d" - -#: ../../mod/profile_photo.php:241 -msgid "Unable to process image." -msgstr "Niet in staat om afbeelding te verwerken." - -#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 -msgid "Photo not available." -msgstr "Foto niet beschikbaar." - -#: ../../mod/profile_photo.php:358 -msgid "Upload File:" -msgstr "Bestand uploaden:" - -#: ../../mod/profile_photo.php:359 -msgid "Select a profile:" -msgstr "Kies een profiel:" - -#: ../../mod/profile_photo.php:360 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" - -#: ../../mod/profile_photo.php:365 -msgid "skip this step" -msgstr "sla deze stap over" - -#: ../../mod/profile_photo.php:365 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit jouw fotoalbums" - -#: ../../mod/profile_photo.php:381 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" - -#: ../../mod/profile_photo.php:382 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." - -#: ../../mod/profile_photo.php:384 -msgid "Done Editing" -msgstr "Klaar met bewerken" - -#: ../../mod/profile_photo.php:427 -msgid "Image uploaded successfully." -msgstr "Uploaden afbeelding geslaagd" - -#: ../../mod/profile_photo.php:429 -msgid "Image upload failed." -msgstr "Uploaden afbeelding mislukt" - -#: ../../mod/profile_photo.php:438 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleinen [%s] van afbeelding mislukt." - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Leuk/niet leuk" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd." - -#: ../../mod/like.php:21 -msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan." - -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "Ongeldig verzoek" - -#: ../../mod/like.php:119 -msgid "thing" -msgstr "ding" - -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "Kanaal niet beschikbaar." - -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "Vorige actie omgedraaid" - -#: ../../mod/like.php:422 -msgid "Action completed." -msgstr "Actie voltooid" - -#: ../../mod/like.php:423 -msgid "Thank you." -msgstr "Bedankt" - -#: ../../mod/help.php:41 ../../mod/help.php:47 ../../mod/help.php:53 -msgid "Help:" -msgstr "Hulp:" - -#: ../../mod/help.php:67 ../../index.php:238 -msgid "Not Found" -msgstr "Niet gevonden" - -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "Ding bijgewerkt" - -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Opslaan van ding mislukt" - -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Ding toegevoegd" - -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Ding weergeven" - -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "Item niet gevonden" - -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Ding bewerken" - -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Kies een profiel" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Plaats een bericht" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." - -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Naam van ding" - -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL van ding (optioneel)" - -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL van foto van ding (optioneel)" - -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Ding aan je profiel toevoegen" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contact niet gevonden" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Kanaalvoorstel verzonden." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kanalen voorstellen" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Stel een kanaal voor aan %s" - -#: ../../mod/filestorage.php:76 -msgid "Permission Denied." -msgstr "Toegang geweigerd" - -#: ../../mod/filestorage.php:92 -msgid "File not found." -msgstr "Bestand niet gevonden." - -#: ../../mod/filestorage.php:135 -msgid "Edit file permissions" -msgstr "Bestandsrechten bewerken" - -#: ../../mod/filestorage.php:144 -msgid "Set/edit permissions" -msgstr "Rechten instellen/bewerken" - -#: ../../mod/filestorage.php:145 -msgid "Include all files and sub folders" -msgstr "Toepassen op alle bestanden en submappen" - -#: ../../mod/filestorage.php:146 -msgid "Return to file list" -msgstr "Terugkeren naar bestandlijst " - -#: ../../mod/filestorage.php:148 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" - -#: ../../mod/filestorage.php:149 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Ga verder" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" - -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." - -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" - -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" - -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- kies map -" - -#: ../../mod/locs.php:19 ../../mod/locs.php:46 -msgid "Location not found." -msgstr "Locatie niet gevonden." - -#: ../../mod/locs.php:50 -msgid "Primary location cannot be removed." -msgstr "Primaire locatie kan niet worden verwijderd." - -#: ../../mod/locs.php:82 -msgid "No locations found." -msgstr "Geen locaties gevonden." - -#: ../../mod/locs.php:95 -msgid "Manage Channel Locations" -msgstr "Kanaallocaties beheren" - -#: ../../mod/locs.php:96 -msgid "Location (address)" -msgstr "Locatie (adres)" - -#: ../../mod/locs.php:97 -msgid "Primary Location" -msgstr "Primaire locatie" - -#: ../../mod/locs.php:98 -msgid "Drop location" -msgstr "Locatie verwijderen" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanaal toegevoegd." - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Jouw abonnement staat maar %d kanalen toe." - -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Niets gevonden om te importeren" - -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Niet in staat om gegevens van de oude hub te downloaden" - -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Geïmporteerde bestand is leeg" - -#: ../../mod/import.php:106 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." - -#: ../../mod/import.php:127 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." - -#: ../../mod/import.php:147 -msgid "Channel clone failed. Import failed." -msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." - -#: ../../mod/import.php:157 -msgid "Cloned channel not found. Import failed." -msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." - -#: ../../mod/import.php:475 -msgid "Import completed." -msgstr "Import voltooid." - -#: ../../mod/import.php:487 -msgid "You must be logged in to use this feature." -msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." - -#: ../../mod/import.php:492 -msgid "Import Channel" -msgstr "Kanaal importeren" - -#: ../../mod/import.php:493 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken. Alleen de identiteit en de connecties zullen geïmporteerd worden. Het importeren van inhoud is nog niet beschikbaar." - -#: ../../mod/import.php:494 -msgid "File to Upload" -msgstr "Bestand om te uploaden" - -#: ../../mod/import.php:495 -msgid "Or provide the old server/hub details" -msgstr "Of vul de gegevens van de oude hub in" - -#: ../../mod/import.php:496 -msgid "Your old identity address (xyz@example.com)" -msgstr "Jouw oude kanaaladres (xyz@example.com)" - -#: ../../mod/import.php:497 -msgid "Your old login email address" -msgstr "Het e-mailadres van je oude account" - -#: ../../mod/import.php:498 -msgid "Your old login password" -msgstr "Wachtwoord van jouw oude account" - -#: ../../mod/import.php:499 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." - -#: ../../mod/import.php:500 -msgid "Make this hub my primary location" -msgstr "Stel deze hub als mijn primaire locatie in" - -#: ../../mod/import.php:501 -msgid "Import existing posts if possible" -msgstr "Importeer bestaande berichten (wanneer mogelijk)" - -#: ../../mod/item.php:159 -msgid "Unable to locate original post." -msgstr "Niet in staat om de originele locatie van het bericht te vinden. " - -#: ../../mod/item.php:418 -msgid "Empty post discarded." -msgstr "Leeg bericht geannuleerd" - -#: ../../mod/item.php:460 -msgid "Executable content type not permitted to this channel." -msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." - -#: ../../mod/item.php:902 -msgid "System error. Post not saved." -msgstr "Systeemfout. Bericht niet opgeslagen." - -#: ../../mod/item.php:1120 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." - -#: ../../mod/item.php:1126 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." - -#: ../../mod/layouts.php:110 -msgid "Help with this feature" -msgstr "Hulp voor dit onderdeel" - -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "Naam lay-out" - -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" - #: ../../mod/setup.php:166 msgid "Red Matrix Server - Setup" msgstr "RedMatrix Server - Setup" @@ -6480,7 +3713,7 @@ msgid "" "database client." msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:663 +#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Please see the file \"install/INSTALL.txt\"." @@ -6488,6 +3721,10 @@ msgstr "Please see the file \"install/INSTALL.txt\"." msgid "System check" msgstr "System check" +#: ../../mod/setup.php:265 ../../mod/events.php:449 ../../mod/photos.php:836 +msgid "Next" +msgstr "Volgende" + #: ../../mod/setup.php:266 msgid "Check again" msgstr "Check again" @@ -6823,20 +4060,2395 @@ msgid "" "server root." msgstr "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." -#: ../../mod/setup.php:626 +#: ../../mod/setup.php:625 msgid "Errors encountered creating database tables." msgstr "Errors encountered creating database tables." -#: ../../mod/setup.php:661 +#: ../../mod/setup.php:660 msgid "

What next

" msgstr "

Wat nu

" -#: ../../mod/setup.php:662 +#: ../../mod/setup.php:661 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximum toegestane dagelijkse registraties op deze RedMatrix-hub bereikt. Probeer het morgen (UTC) nogmaals." + +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." + +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Wachtwoorden komen niet met elkaar overeen." + +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." + +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub." + +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "Jouw registratie kan niet verwerkt worden." + +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd." + +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Registreer op een andere RedMatrix-hub" + +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze RedMatrix-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." + +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "Gebruiksvoorwaarden" + +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ik accepteer de %s van deze RedMatrix-hub" + +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ik accepteer de %s van deze RedMatrix-hub" + +#: ../../mod/register.php:207 ../../mod/admin.php:417 +msgid "Registration" +msgstr "Registratie" + +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "Registreren op deze RedMatrix-hub kan alleen op uitnodiging." + +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "Vul jouw uitnodigingscode in" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Jouw e-mailadres" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "Geef een wachtwoord op" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Geef het wachtwoord opnieuw op" + +#: ../../mod/network.php:84 +msgid "No such group" +msgstr "Collectie niet gevonden" + +#: ../../mod/network.php:122 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" + +#: ../../mod/network.php:176 +msgid "Collection is empty" +msgstr "Collectie is leeg" + +#: ../../mod/network.php:184 +msgid "Collection: " +msgstr "Collectie: " + +#: ../../mod/network.php:197 +msgid "Connection: " +msgstr "Connectie: " + +#: ../../mod/network.php:200 +msgid "Invalid connection." +msgstr "Ongeldige connectie." + +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" +msgstr "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook onze apps, waar je vrijwel alles van de RedMatrix kan vinden. Voor hulp met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het supportkanaal (liefst in het Engels)." + +#: ../../mod/home.php:48 +msgid "Red Matrix - "The Network"" +msgstr "RedMatrix - "The Network"" + +#: ../../mod/home.php:101 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" + +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." + +#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 +msgid "Export Channel" +msgstr "Kanaal exporteren" + +#: ../../mod/uexport.php:35 +msgid "" +"Export your basic channel information to a small file. This acts as a " +"backup of your connections, permissions, profile and basic data, which can " +"be used to import your data to a new hub, but\tdoes not contain your " +"content." +msgstr "Exporteer de basisinformatie van jouw kanaal naar een klein bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." + +#: ../../mod/uexport.php:36 +msgid "Export Content" +msgstr "Inhoud exporteren" + +#: ../../mod/uexport.php:37 +msgid "" +"Export your channel information and all the content to a JSON backup. This " +"backs up all of your connections, permissions, profile data and all of your " +"content, but is generally not suitable for importing a channel to a new hub " +"as this file may be VERY large. Please be patient - it may take several " +"minutes for this download to begin." +msgstr "Exporteer informatie en alle inhoud van jouw kanaal naar een JSON-back-up. Dit slaat al jouw connecties, permissies, profielgegevens en de volledige inhoud van jouw kanaal op, maar is in het algemeen niet geschikt om op een nieuwe hub te importeren, omdat dit bestand ZEER groot kan worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." + +#: ../../mod/post.php:229 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen." + +#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Welkom %s. Authenticatie op afstand geslaagd." + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Geef toestemming voor applicatiekoppeling" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Inloggen om verder te kunnen 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 applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" + +#: ../../mod/api.php:105 ../../mod/settings.php:955 ../../mod/settings.php:960 +#: ../../mod/settings.php:1045 ../../mod/admin.php:396 +msgid "Yes" +msgstr "Ja" + +#: ../../mod/api.php:106 ../../mod/settings.php:955 ../../mod/settings.php:960 +#: ../../mod/settings.php:1045 ../../mod/admin.php:394 +msgid "No" +msgstr "Nee" + +#: ../../mod/events.php:85 +msgid "Event can not end before it has started." +msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" + +#: ../../mod/events.php:90 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van gebeurtenis zijn vereist." + +#: ../../mod/events.php:104 +msgid "Event not found." +msgstr "Gebeurtenis niet gevonden" + +#: ../../mod/events.php:373 +msgid "l, F j" +msgstr "l j F" + +#: ../../mod/events.php:395 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" + +#: ../../mod/events.php:447 +msgid "Create New Event" +msgstr "Nieuwe gebeurtenis aanmaken" + +#: ../../mod/events.php:448 ../../mod/photos.php:827 +msgid "Previous" +msgstr "Vorige" + +#: ../../mod/events.php:450 +msgid "Export" +msgstr "Exporteren" + +#: ../../mod/events.php:575 +msgid "Event details" +msgstr "Details van gebeurtenis" + +#: ../../mod/events.php:576 +msgid "Starting date and Title are required." +msgstr "Begintijd en titel zijn vereist." + +#: ../../mod/events.php:578 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (door komma's gescheiden lijst)" + +#: ../../mod/events.php:580 +msgid "Event Starts:" +msgstr "Begin gebeurtenis:" + +#: ../../mod/events.php:580 ../../mod/events.php:596 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 +msgid "Required" +msgstr "Vereist" + +#: ../../mod/events.php:586 +msgid "Finish date/time is not known or not relevant" +msgstr "Einddatum/-tijd is niet bekend of niet relevant" + +#: ../../mod/events.php:588 +msgid "Event Finishes:" +msgstr "Einde gebeurtenis:" + +#: ../../mod/events.php:590 +msgid "Adjust for viewer timezone" +msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" + +#: ../../mod/events.php:592 +msgid "Description:" +msgstr "Omschrijving:" + +#: ../../mod/events.php:596 +msgid "Title:" +msgstr "Titel:" + +#: ../../mod/events.php:598 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Item is niet aanwezig." + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Ophalen URL gaf een foutmelding terug: %1$s" + +#: ../../mod/blocks.php:99 +msgid "Block Name" +msgstr "Bloknaam" + +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." +msgstr "Ongeldig item." + +#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 +msgid "Channel not found." +msgstr "Kanaal niet gevonden." + +#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:79 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." +msgstr "Pagina niet gevonden." + +#: ../../mod/mitem.php:24 ../../mod/menu.php:108 +msgid "Menu not found." +msgstr "Menu niet gevonden." + +#: ../../mod/mitem.php:67 +msgid "Menu element updated." +msgstr "Menu-onderdeel geüpdatet." + +#: ../../mod/mitem.php:71 +msgid "Unable to update menu element." +msgstr "Menu-onderdeel kan niet worden geüpdatet." + +#: ../../mod/mitem.php:77 +msgid "Menu element added." +msgstr "Menu-onderdeel toegevoegd" + +#: ../../mod/mitem.php:81 +msgid "Unable to add menu element." +msgstr "Menu-onderdeel kan niet worden toegevoegd." + +#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37 +msgid "Not found." +msgstr "Niet gevonden." + +#: ../../mod/mitem.php:127 +msgid "Manage Menu Elements" +msgstr "Menu-onderdelen beheren" + +#: ../../mod/mitem.php:130 +msgid "Edit menu" +msgstr "Menu bewerken" + +#: ../../mod/mitem.php:133 +msgid "Edit element" +msgstr "Onderdeel bewerken" + +#: ../../mod/mitem.php:134 +msgid "Drop element" +msgstr "Onderdeel verwijderen" + +#: ../../mod/mitem.php:135 +msgid "New element" +msgstr "Nieuw element" + +#: ../../mod/mitem.php:136 +msgid "Edit this menu container" +msgstr "Deze menu-container bewerken" + +#: ../../mod/mitem.php:137 +msgid "Add menu element" +msgstr "Menu-element toevoegen" + +#: ../../mod/mitem.php:138 +msgid "Delete this menu item" +msgstr "Dit menu-item verwijderen" + +#: ../../mod/mitem.php:139 +msgid "Edit this menu item" +msgstr "Dit menu-item bewerken" + +#: ../../mod/mitem.php:158 +msgid "New Menu Element" +msgstr "Nieuw menu-element" + +#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 +msgid "Menu Item Permissions" +msgstr "Permissies menu-item" + +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1052 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + +#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 +msgid "Link text" +msgstr "Linktekst" + +#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 +msgid "URL of link" +msgstr "URL of link" + +#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 +msgid "Use RedMatrix magic-auth if available" +msgstr "Gebruik RedMatrix' magic-auth wanneer beschikbaar" + +#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 +msgid "Open link in new window" +msgstr "Open link in nieuw venster" + +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Order in list" +msgstr "Volgorde in lijst" + +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Hogere nummers komen onderaan de lijst terecht" + +#: ../../mod/mitem.php:181 +msgid "Menu item not found." +msgstr "Menu-item niet gevonden." + +#: ../../mod/mitem.php:190 +msgid "Menu item deleted." +msgstr "Menu-item verwijderd." + +#: ../../mod/mitem.php:192 +msgid "Menu item could not be deleted." +msgstr "Menu-item kon niet worden verwijderd." + +#: ../../mod/mitem.php:201 +msgid "Edit Menu Element" +msgstr "Menu-element bewerken" + +#: ../../mod/mitem.php:213 ../../mod/menu.php:130 +msgid "Modify" +msgstr "Wijzigen" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s volgt het %3$s van %2$s" + +#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 +msgid "Edit post" +msgstr "Bericht bewerken" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed." + +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Accountbeheer uitbesteden" + +#: ../../mod/delegate.php:123 +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 "Gevolmachtigde personen zijn in staat om alle aspecten van dit account te beheren, behalve enkele basisinstellingen. Besteed het beheer van je persoonlijke account niet aan iemand uit die je niet volledig vertrouwd." + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Bestaande accountbeheerders" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Bestaande gevolmachtigde accountbeheerders" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed." + +#: ../../mod/delegate.php:130 ../../mod/photos.php:873 ../../mod/tagrm.php:133 +msgid "Remove" +msgstr "Verwijderen" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Toevoegen" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Geen" + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Kies een bladwijzermap" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Bladwijzer opslaan" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL van bladwijzer" + +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "Omschrijving" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Of geef de naam op van een nieuwe bladwijzermap" + +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Openbare hubs" + +#: ../../mod/pubsites.php:19 +msgid "" +"The listed sites allow public registration into the Red Matrix. All sites in" +" the matrix are interlinked so membership on any of them conveys membership " +"in the matrix as a whole. Some sites may require subscription or provide " +"tiered service plans. The provider links may provide " +"additional details." +msgstr "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." + +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "URL hub" + +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "Toegangstype" + +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "Registratiebeleid" + +#: ../../mod/pubsites.php:25 ../../mod/profiles.php:454 +msgid "Location" +msgstr "Locatie" + +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." +msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." + +#: ../../mod/channel.php:87 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." + +#: ../../mod/cloud.php:120 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +msgstr "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++" + +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Inloggen." + +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Chatkanaal niet gevonden" + +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Chatkanaal verlaten" + +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Chatkanaal verwijderen" + +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Ik ben momenteel afwezig" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Ik ben online" + +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Chatkanaal aan bladwijzers toevoegen" + +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Nieuw chatkanaal" + +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Naam chatkanaal" + +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Chatkanalen van %1$s" + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Afwezig" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" + +#: ../../mod/rmagic.php:38 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." + +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "Het foutbericht was:" + +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "Authenticatie mislukt." + +#: ../../mod/rmagic.php:82 +msgid "Remote Authentication" +msgstr "Authenticatie op afstand" + +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" + +#: ../../mod/rmagic.php:84 +msgid "Authenticate" +msgstr "Authenticeren" + +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." + +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Verwijder dit kanaal" + +#: ../../mod/removeme.php:58 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden." + +#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Vul je wachtwoord in ter verificatie:" + +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen" + +#: ../../mod/removeme.php:60 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd." + +#: ../../mod/removeme.php:61 +msgid "Remove Channel" +msgstr "Kanaal verwijderen" + +#: ../../mod/search.php:13 ../../mod/photos.php:429 ../../mod/display.php:9 +#: ../../mod/viewconnections.php:17 ../../mod/directory.php:22 +msgid "Public access denied." +msgstr "Openbare toegang geweigerd." + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Geen kanaal." + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Veel voorkomende connecties" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Geen gemeenschappelijke connecties." + +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." + +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." + +#: ../../mod/lostpass.php:85 ../../boot.php:1558 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" + +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." + +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" + +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Kopieer of sla je nieuwe wachtwoord op - en" + +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" + +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" + +#: ../../mod/lostpass.php:123 +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 deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." + +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "E-mailadres" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Opnieuw instellen" + +#: ../../mod/item.php:163 +msgid "Unable to locate original post." +msgstr "Niet in staat om de originele locatie van het bericht te vinden. " + +#: ../../mod/item.php:422 +msgid "Empty post discarded." +msgstr "Leeg bericht geannuleerd" + +#: ../../mod/item.php:464 +msgid "Executable content type not permitted to this channel." +msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." + +#: ../../mod/item.php:858 +msgid "System error. Post not saved." +msgstr "Systeemfout. Bericht niet opgeslagen." + +#: ../../mod/item.php:1076 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." + +#: ../../mod/item.php:1082 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." + +#: ../../mod/connections.php:37 ../../mod/connedit.php:75 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de connectie-gegevens." + +#: ../../mod/connections.php:51 ../../mod/connedit.php:99 +msgid "Could not locate selected profile." +msgstr "Kon het gekozen profiel niet vinden." + +#: ../../mod/connections.php:94 ../../mod/connedit.php:197 +msgid "Connection updated." +msgstr "Connectie bijgewerkt." + +#: ../../mod/connections.php:96 ../../mod/connedit.php:199 +msgid "Failed to update connection record." +msgstr "Bijwerken van connectie-gegevens mislukt." + +#: ../../mod/connections.php:192 ../../mod/connections.php:293 +msgid "Blocked" +msgstr "Geblokkeerd" + +#: ../../mod/connections.php:197 ../../mod/connections.php:300 +msgid "Ignored" +msgstr "Genegeerd" + +#: ../../mod/connections.php:202 ../../mod/connections.php:314 +msgid "Hidden" +msgstr "Verborgen" + +#: ../../mod/connections.php:207 ../../mod/connections.php:307 +msgid "Archived" +msgstr "Gearchiveerd" + +#: ../../mod/connections.php:231 ../../mod/connections.php:246 +msgid "All" +msgstr "Alles" + +#: ../../mod/connections.php:271 +msgid "Suggest new connections" +msgstr "Nieuwe kanalen voorstellen" + +#: ../../mod/connections.php:274 +msgid "New Connections" +msgstr "Nieuwe connecties" + +#: ../../mod/connections.php:277 +msgid "Show pending (new) connections" +msgstr "Nog te accepteren (nieuwe) connecties weergeven" + +#: ../../mod/connections.php:280 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Alle connecties" + +#: ../../mod/connections.php:283 +msgid "Show all connections" +msgstr "Toon alle connecties" + +#: ../../mod/connections.php:286 +msgid "Unblocked" +msgstr "Niet geblokkeerd" + +#: ../../mod/connections.php:289 +msgid "Only show unblocked connections" +msgstr "Toon alleen niet geblokkeerde connecties" + +#: ../../mod/connections.php:296 +msgid "Only show blocked connections" +msgstr "Toon alleen geblokkeerde connecties" + +#: ../../mod/connections.php:303 +msgid "Only show ignored connections" +msgstr "Toon alleen genegeerde connecties" + +#: ../../mod/connections.php:310 +msgid "Only show archived connections" +msgstr "Toon alleen gearchiveerde connecties" + +#: ../../mod/connections.php:317 +msgid "Only show hidden connections" +msgstr "Toon alleen verborgen connecties" + +#: ../../mod/connections.php:372 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:373 +msgid "Edit connection" +msgstr "Connectie bewerken" + +#: ../../mod/connections.php:411 +msgid "Search your connections" +msgstr "Doorzoek jouw connecties" + +#: ../../mod/connections.php:412 +msgid "Finding: " +msgstr "Zoeken naar: " + +#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 +#: ../../mod/editpost.php:20 ../../mod/editlayout.php:78 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" +msgstr "Item niet gevonden" + +#: ../../mod/editblock.php:115 +msgid "Edit Block" +msgstr "Blok bewerken" + +#: ../../mod/editblock.php:125 +msgid "Delete block?" +msgstr "Blok verwijderen" + +#: ../../mod/editblock.php:147 ../../mod/editpost.php:116 +#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 +msgid "Insert YouTube video" +msgstr "YouTube-video invoegen" + +#: ../../mod/editblock.php:148 ../../mod/editpost.php:117 +#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 +msgid "Insert Vorbis [.ogg] video" +msgstr "Vorbis-video [.ogg] invoegen" + +#: ../../mod/editblock.php:149 ../../mod/editpost.php:118 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Vorbis-audio [.ogg] invoegen" + +#: ../../mod/editblock.php:183 +msgid "Delete Block" +msgstr "Blok verwijderen" + +#: ../../mod/settings.php:73 +msgid "Name is required" +msgstr "Naam is vereist" + +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" +msgstr "Key en secret zijn vereist" + +#: ../../mod/settings.php:222 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." + +#: ../../mod/settings.php:226 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." + +#: ../../mod/settings.php:240 +msgid "Password changed." +msgstr "Wachtwoord veranderd." + +#: ../../mod/settings.php:242 +msgid "Password update failed. Please try again." +msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." + +#: ../../mod/settings.php:256 +msgid "Not valid email." +msgstr "Geen geldig e-mailadres." + +#: ../../mod/settings.php:259 +msgid "Protected email address. Cannot change to that email." +msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." + +#: ../../mod/settings.php:268 +msgid "System failure storing new email. Please try again." +msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." + +#: ../../mod/settings.php:507 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." + +#: ../../mod/settings.php:576 ../../mod/settings.php:602 +#: ../../mod/settings.php:638 +msgid "Add application" +msgstr "Applicatie toevoegen" + +#: ../../mod/settings.php:579 +msgid "Name of application" +msgstr "Naam van applicatie" + +#: ../../mod/settings.php:580 ../../mod/settings.php:606 +msgid "Consumer Key" +msgstr "Consumer key" + +#: ../../mod/settings.php:580 ../../mod/settings.php:581 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" + +#: ../../mod/settings.php:581 ../../mod/settings.php:607 +msgid "Consumer Secret" +msgstr "Consumer secret" + +#: ../../mod/settings.php:582 ../../mod/settings.php:608 +msgid "Redirect" +msgstr "Redirect/doorverwijzing" + +#: ../../mod/settings.php:582 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" + +#: ../../mod/settings.php:583 ../../mod/settings.php:609 +msgid "Icon url" +msgstr "URL van pictogram" + +#: ../../mod/settings.php:583 +msgid "Optional" +msgstr "Optioneel" + +#: ../../mod/settings.php:594 +msgid "You can't edit this application." +msgstr "Je kan deze applicatie niet bewerken" + +#: ../../mod/settings.php:637 +msgid "Connected Apps" +msgstr "Verbonden applicaties" + +#: ../../mod/settings.php:641 +msgid "Client key starts with" +msgstr "Client key begint met" + +#: ../../mod/settings.php:642 +msgid "No name" +msgstr "Geen naam" + +#: ../../mod/settings.php:643 +msgid "Remove authorization" +msgstr "Autorisatie verwijderen" + +#: ../../mod/settings.php:654 +msgid "No feature settings configured" +msgstr "Geen plugin-instellingen ingesteld" + +#: ../../mod/settings.php:662 +msgid "Feature Settings" +msgstr "Plugin-instellingen" + +#: ../../mod/settings.php:685 +msgid "Account Settings" +msgstr "Account-instellingen" + +#: ../../mod/settings.php:686 +msgid "Password Settings" +msgstr "Wachtwoord-instellingen" + +#: ../../mod/settings.php:687 +msgid "New Password:" +msgstr "Nieuw wachtwoord:" + +#: ../../mod/settings.php:688 +msgid "Confirm:" +msgstr "Bevestigen:" + +#: ../../mod/settings.php:688 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" + +#: ../../mod/settings.php:690 ../../mod/settings.php:1026 +msgid "Email Address:" +msgstr "E-mailadres:" + +#: ../../mod/settings.php:691 ../../mod/removeaccount.php:61 +msgid "Remove Account" +msgstr "Account verwijderen" + +#: ../../mod/settings.php:692 +msgid "Remove this account from this server including all its channels" +msgstr "Dit account en al zijn kanalen van deze RedMatrix-hub verwijderen" + +#: ../../mod/settings.php:693 ../../mod/settings.php:1107 +msgid "Warning: This action is permanent and cannot be reversed." +msgstr "Waarschuwing: Deze handeling is van permanente aard en kan niet meer worden teruggedraaid." + +#: ../../mod/settings.php:709 +msgid "Off" +msgstr "Uit" + +#: ../../mod/settings.php:709 +msgid "On" +msgstr "Aan" + +#: ../../mod/settings.php:716 +msgid "Additional Features" +msgstr "Extra functies" + +#: ../../mod/settings.php:740 +msgid "Connector Settings" +msgstr "Instellingen externe koppelingen" + +#: ../../mod/settings.php:779 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" + +#: ../../mod/settings.php:782 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (experimenteel)" + +#: ../../mod/settings.php:785 ../../mod/admin.php:367 +msgid "mobile" +msgstr "mobiel" + +#: ../../mod/settings.php:821 +msgid "Display Settings" +msgstr "Weergave-instellingen" + +#: ../../mod/settings.php:827 +msgid "Display Theme:" +msgstr "Gebruik thema:" + +#: ../../mod/settings.php:828 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" + +#: ../../mod/settings.php:829 +msgid "Enable user zoom on mobile devices" +msgstr "Inzoomen op smartphones en tablets toestaan" + +#: ../../mod/settings.php:830 +msgid "Update browser every xx seconds" +msgstr "Ververs de webbrowser om de zoveel seconde" + +#: ../../mod/settings.php:830 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimaal 10 seconde, geen maximum" + +#: ../../mod/settings.php:831 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximaal aantal conversaties die per keer geladen worden:" + +#: ../../mod/settings.php:831 +msgid "Maximum of 100 items" +msgstr "Maximaal 100 conversaties" + +#: ../../mod/settings.php:832 +msgid "Don't show emoticons" +msgstr "Geen emoticons weergeven" + +#: ../../mod/settings.php:833 +msgid "Link post titles to source" +msgstr "Berichtkoppen naar originele locatie linken" + +#: ../../mod/settings.php:834 +msgid "System Page Layout Editor - (advanced)" +msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" + +#: ../../mod/settings.php:837 +msgid "Use blog/list mode on channel page" +msgstr "Gebruik blog/lijst-modus op kanaalpagina" + +#: ../../mod/settings.php:837 ../../mod/settings.php:838 +msgid "(comments displayed separately)" +msgstr "(reacties worden afzonderlijk weergeven)" + +#: ../../mod/settings.php:838 +msgid "Use blog/list mode on matrix page" +msgstr "Gebruik blog/lijst-modus op matrixpagina" + +#: ../../mod/settings.php:839 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" + +#: ../../mod/settings.php:839 ../../mod/settings.php:840 +msgid "click to expand content exceeding this height" +msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" + +#: ../../mod/settings.php:840 +msgid "Matrix page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op matrixpagina (in pixels)" + +#: ../../mod/settings.php:874 +msgid "Nobody except yourself" +msgstr "Niemand, behalve jezelf" + +#: ../../mod/settings.php:875 +msgid "Only those you specifically allow" +msgstr "Alleen connecties met uitdrukkelijke toestemming" + +#: ../../mod/settings.php:876 +msgid "Approved connections" +msgstr "Geaccepteerde connecties" + +#: ../../mod/settings.php:877 +msgid "Any connections" +msgstr "Alle connecties" + +#: ../../mod/settings.php:878 +msgid "Anybody on this website" +msgstr "Iedereen op deze hub" + +#: ../../mod/settings.php:879 +msgid "Anybody in this network" +msgstr "Iedereen in dit netwerk" + +#: ../../mod/settings.php:880 +msgid "Anybody authenticated" +msgstr "Geauthenticeerd" + +#: ../../mod/settings.php:881 +msgid "Anybody on the internet" +msgstr "Iedereen op het internet" + +#: ../../mod/settings.php:955 +msgid "Publish your default profile in the network directory" +msgstr "Publiceer je standaardprofiel in de kanalengids" + +#: ../../mod/settings.php:960 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" + +#: ../../mod/settings.php:964 ../../mod/profile_photo.php:366 +msgid "or" +msgstr "of" + +#: ../../mod/settings.php:969 +msgid "Your channel address is" +msgstr "Jouw kanaaladres is" + +#: ../../mod/settings.php:1017 +msgid "Channel Settings" +msgstr "Kanaal-instellingen" + +#: ../../mod/settings.php:1024 +msgid "Basic Settings" +msgstr "Basis-instellingen" + +#: ../../mod/settings.php:1027 +msgid "Your Timezone:" +msgstr "Jouw tijdzone:" + +#: ../../mod/settings.php:1028 +msgid "Default Post Location:" +msgstr "Standaardlocatie bericht:" + +#: ../../mod/settings.php:1028 +msgid "Geographical location to display on your posts" +msgstr "Geografische locatie die bij het bericht moet worden vermeld" + +#: ../../mod/settings.php:1029 +msgid "Use Browser Location:" +msgstr "Locatie van webbrowser gebruiken:" + +#: ../../mod/settings.php:1031 +msgid "Adult Content" +msgstr "Inhoud voor volwassenen" + +#: ../../mod/settings.php:1031 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" + +#: ../../mod/settings.php:1033 +msgid "Security and Privacy Settings" +msgstr "Veiligheids- en privacy-instellingen" + +#: ../../mod/settings.php:1035 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." + +#: ../../mod/settings.php:1037 +msgid "Hide my online presence" +msgstr "Verberg mijn aanwezigheid" + +#: ../../mod/settings.php:1037 +msgid "Prevents displaying in your profile that you are online" +msgstr "Voorkomt dat op je kanaal te zien valt dat je momenteel op de RedMatrix aanwezig bent" + +#: ../../mod/settings.php:1039 +msgid "Simple Privacy Settings:" +msgstr "Eenvoudige privacy-instellingen:" + +#: ../../mod/settings.php:1040 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" + +#: ../../mod/settings.php:1041 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" + +#: ../../mod/settings.php:1042 +msgid "Private - default private, never open or public" +msgstr "Privé (standaard privé en nooit openbaar)" + +#: ../../mod/settings.php:1043 +msgid "Blocked - default blocked to/from everybody" +msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" + +#: ../../mod/settings.php:1045 +msgid "Allow others to tag your posts" +msgstr "Anderen toestaan om je berichten te taggen" + +#: ../../mod/settings.php:1045 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" + +#: ../../mod/settings.php:1047 +msgid "Advanced Privacy Settings" +msgstr "Geavanceerde privacy-instellingen" + +#: ../../mod/settings.php:1049 +msgid "Expire other channel content after this many days" +msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" + +#: ../../mod/settings.php:1049 +msgid "0 or blank prevents expiration" +msgstr "0 of leeg voorkomt het verlopen" + +#: ../../mod/settings.php:1050 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal connectieverzoeken per dag:" + +#: ../../mod/settings.php:1050 +msgid "May reduce spam activity" +msgstr "Kan eventuele spam verminderen" + +#: ../../mod/settings.php:1051 +msgid "Default Post Permissions" +msgstr "Standaard permissies voor nieuwe berichten" + +#: ../../mod/settings.php:1056 +msgid "Channel permissions category:" +msgstr "Kanaaltype en -permissies:" + +#: ../../mod/settings.php:1062 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" + +#: ../../mod/settings.php:1062 +msgid "Useful to reduce spamming" +msgstr "Kan eventuele spam verminderen" + +#: ../../mod/settings.php:1065 +msgid "Notification Settings" +msgstr "Notificatie-instellingen" + +#: ../../mod/settings.php:1066 +msgid "By default post a status message when:" +msgstr "Plaats automatisch een statusbericht wanneer:" + +#: ../../mod/settings.php:1067 +msgid "accepting a friend request" +msgstr "Een connectieverzoek wordt geaccepteerd" + +#: ../../mod/settings.php:1068 +msgid "joining a forum/community" +msgstr "Je lid wordt van een forum/groep" + +#: ../../mod/settings.php:1069 +msgid "making an interesting profile change" +msgstr "Er sprake is van een interessante profielwijziging" + +#: ../../mod/settings.php:1070 +msgid "Send a notification email when:" +msgstr "Verzend een notificatie per e-mail wanneer:" + +#: ../../mod/settings.php:1071 +msgid "You receive a connection request" +msgstr "Je een connectieverzoek ontvangt" + +#: ../../mod/settings.php:1072 +msgid "Your connections are confirmed" +msgstr "Jouw connecties zijn bevestigd" + +#: ../../mod/settings.php:1073 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op jouw kanaal heeft geschreven" + +#: ../../mod/settings.php:1074 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" + +#: ../../mod/settings.php:1075 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" + +#: ../../mod/settings.php:1076 +msgid "You receive a friend suggestion" +msgstr "Je een kanaalvoorstel ontvangt" + +#: ../../mod/settings.php:1077 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" + +#: ../../mod/settings.php:1078 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je bent in een bericht aangestoten/gepord/etc." + +#: ../../mod/settings.php:1081 +msgid "Show visual notifications including:" +msgstr "Toon de volgende zichtbare notificaties:" + +#: ../../mod/settings.php:1083 +msgid "Unseen matrix activity" +msgstr "Niet bekeken matrix-activiteit" + +#: ../../mod/settings.php:1084 +msgid "Unseen channel activity" +msgstr "Niet bekeken kanaal-activiteit" + +#: ../../mod/settings.php:1085 +msgid "Unseen private messages" +msgstr "Niet bekeken privéberichten" + +#: ../../mod/settings.php:1085 ../../mod/settings.php:1090 +#: ../../mod/settings.php:1091 ../../mod/settings.php:1092 +msgid "Recommended" +msgstr "Aanbevolen" + +#: ../../mod/settings.php:1086 +msgid "Upcoming events" +msgstr "Aankomende gebeurtenissen" + +#: ../../mod/settings.php:1087 +msgid "Events today" +msgstr "Gebeurtissen van vandaag" + +#: ../../mod/settings.php:1088 +msgid "Upcoming birthdays" +msgstr "Aankomende verjaardagen" + +#: ../../mod/settings.php:1088 +msgid "Not available in all themes" +msgstr "Niet in alle thema's beschikbaar" + +#: ../../mod/settings.php:1089 +msgid "System (personal) notifications" +msgstr "(Persoonlijke) systeemnotificaties" + +#: ../../mod/settings.php:1090 +msgid "System info messages" +msgstr "Systeemmededelingen" + +#: ../../mod/settings.php:1091 +msgid "System critical alerts" +msgstr "Kritische systeemwaarschuwingen" + +#: ../../mod/settings.php:1092 +msgid "New connections" +msgstr "Nieuwe connecties" + +#: ../../mod/settings.php:1093 +msgid "System Registrations" +msgstr "Nieuwe accountregistraties op deze hub" + +#: ../../mod/settings.php:1094 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" + +#: ../../mod/settings.php:1096 +msgid "Notify me of events this many days in advance" +msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" + +#: ../../mod/settings.php:1096 +msgid "Must be greater than 0" +msgstr "Moet hoger dan 0 zijn" + +#: ../../mod/settings.php:1098 +msgid "Advanced Account/Page Type Settings" +msgstr "Instellingen geavanceerd account/paginatype" + +#: ../../mod/settings.php:1099 +msgid "Change the behaviour of this account for special situations" +msgstr "Verander het gedrag van dit account voor speciale situaties" + +#: ../../mod/settings.php:1102 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" + +#: ../../mod/settings.php:1103 +msgid "Miscellaneous Settings" +msgstr "Diverse instellingen" + +#: ../../mod/settings.php:1105 +msgid "Personal menu to display in your channel pages" +msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" + +#: ../../mod/settings.php:1106 +msgid "Remove this channel" +msgstr "Verwijder dit kanaal" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "- kies map -" + +#: ../../mod/siteinfo.php:93 +#, php-format +msgid "Version %s" +msgstr "Versie %s" + +#: ../../mod/siteinfo.php:114 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plug-ins/add-ons/apps:" + +#: ../../mod/siteinfo.php:127 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plug-ins/add-ons/apps" + +#: ../../mod/siteinfo.php:136 +msgid "Red" +msgstr "Red" + +#: ../../mod/siteinfo.php:137 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy." + +#: ../../mod/siteinfo.php:139 +msgid "Tag: " +msgstr "Tag: " + +#: ../../mod/siteinfo.php:141 +msgid "Last background fetch: " +msgstr "Meest recente achtergrond-fetch:" + +#: ../../mod/siteinfo.php:144 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" + +#: ../../mod/siteinfo.php:145 +msgid "" +"Please visit RedMatrix.me to learn more" +" about the Red Matrix." +msgstr "Bezoek RedMatrix.me om meer te leren over de RedMatrix." + +#: ../../mod/siteinfo.php:146 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" + +#: ../../mod/siteinfo.php:149 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" + +#: ../../mod/siteinfo.php:151 +msgid "Site Administrators" +msgstr "Hubbeheerders: " + +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." +msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." + +#: ../../mod/photos.php:97 +msgid "Album not found." +msgstr "Album niet gevonden." + +#: ../../mod/photos.php:119 ../../mod/photos.php:643 +msgid "Delete Album" +msgstr "Verwijder album" + +#: ../../mod/photos.php:159 ../../mod/photos.php:926 +msgid "Delete Photo" +msgstr "Verwijder foto" + +#: ../../mod/photos.php:440 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" + +#: ../../mod/photos.php:484 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." + +#: ../../mod/photos.php:523 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." + +#: ../../mod/photos.php:526 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB aan foto-opslag gebruikt." + +#: ../../mod/photos.php:550 +msgid "Upload Photos" +msgstr "Foto's uploaden" + +#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:911 +msgid "Enter a new album name" +msgstr "Vul een nieuwe albumnaam in" + +#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:912 +msgid "or select an existing one (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" + +#: ../../mod/photos.php:556 +msgid "Do not show a status post for this upload" +msgstr "Plaats geen bericht voor deze upload." + +#: ../../mod/photos.php:584 +msgid "Album name could not be decoded" +msgstr "Albumnaam kon niet gedecodeerd worden" + +#: ../../mod/photos.php:625 ../../mod/photos.php:1135 +#: ../../mod/photos.php:1151 +msgid "Contact Photos" +msgstr "Connectiefoto's" + +#: ../../mod/photos.php:649 +msgid "Show Newest First" +msgstr "Nieuwste eerst weergeven" + +#: ../../mod/photos.php:651 +msgid "Show Oldest First" +msgstr "Oudste eerst weergeven" + +#: ../../mod/photos.php:675 ../../mod/photos.php:1183 +msgid "View Photo" +msgstr "Foto weergeven" + +#: ../../mod/photos.php:704 +msgid "Edit Album" +msgstr "Album bewerken" + +#: ../../mod/photos.php:749 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." + +#: ../../mod/photos.php:751 +msgid "Photo not available" +msgstr "Foto niet aanwezig" + +#: ../../mod/photos.php:809 +msgid "Use as profile photo" +msgstr "Als profielfoto gebruiken" + +#: ../../mod/photos.php:816 +msgid "Private Photo" +msgstr "Privéfoto" + +#: ../../mod/photos.php:831 +msgid "View Full Size" +msgstr "Volledige grootte weergeven" + +#: ../../mod/photos.php:905 +msgid "Edit photo" +msgstr "Foto bewerken" + +#: ../../mod/photos.php:907 +msgid "Rotate CW (right)" +msgstr "Draai met de klok mee (naar rechts)" + +#: ../../mod/photos.php:908 +msgid "Rotate CCW (left)" +msgstr "Draai tegen de klok in (naar links)" + +#: ../../mod/photos.php:915 +msgid "Caption" +msgstr "Bijschrift" + +#: ../../mod/photos.php:917 +msgid "Add a Tag" +msgstr "Tag toevoegen" + +#: ../../mod/photos.php:921 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" + +#: ../../mod/photos.php:924 +msgid "Flag as adult in album view" +msgstr "Markeer als voor volwassenen in albumweergave" + +#: ../../mod/photos.php:1101 +msgid "In This Photo:" +msgstr "Op deze foto:" + +#: ../../mod/photos.php:1189 +msgid "View Album" +msgstr "Album weergeven" + +#: ../../mod/photos.php:1212 +msgid "Recent Photos" +msgstr "Recente foto's" + +#: ../../mod/acl.php:228 +msgid "network" +msgstr "netwerk" + +#: ../../mod/acl.php:238 +msgid "RSS" +msgstr "RSS" + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "aanstoten, porren of andere dingen met iemand doen" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Ontvanger" + +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" + +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "Maak dit bericht privé" + +#: ../../mod/manage.php:138 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." + +#: ../../mod/manage.php:146 +msgid "Create a new channel" +msgstr "Nieuw kanaal aanmaken" + +#: ../../mod/manage.php:151 +msgid "Current Channel" +msgstr "Huidig kanaal" + +#: ../../mod/manage.php:153 +msgid "Switch to one of your channels by selecting it." +msgstr "Activeer een van jouw andere kanalen door er op te klikken." + +#: ../../mod/manage.php:154 +msgid "Default Channel" +msgstr "Standaardkanaal" + +#: ../../mod/manage.php:155 +msgid "Make Default" +msgstr "Als standaard instellen" + +#: ../../mod/manage.php:158 +#, php-format +msgid "%d new messages" +msgstr "%d nieuwe berichten" + +#: ../../mod/manage.php:159 +#, php-format +msgid "%d new introductions" +msgstr "%d nieuwe connectieverzoeken" + +#: ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Deze hub is geen kanalengidshub (directoryserver)" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Bladwijzer toegevoegd" + +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "Mijn bladwijzers" + +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "Bladwijzers van mijn connecties" + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Item is niet te bewerken" + +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "Item verwijderen?" + +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "Collectie aangemaakt" + +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Collectie kon niet aangemaakt worden" + +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Collectie bijgewerkt." + +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Kanaalcollectie aanmaken" + +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Naam collectie:" + +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" +msgstr "Kanalen in deze collectie zijn zichtbaar voor andere kanalen" + +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Collectie verwijderd" + +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Verwijderen collectie mislukt" + +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Collectiebewerker" + +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Kanalen" + +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Alle kanaalconnecties" + +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." +msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." + +#: ../../mod/ping.php:266 +msgid "sent you a private message" +msgstr "stuurde jou een privébericht" + +#: ../../mod/ping.php:319 +msgid "added your channel" +msgstr "voegde jouw kanaal toe" + +#: ../../mod/ping.php:360 +msgid "posted an event" +msgstr "plaatste een gebeurtenis" + +#: ../../mod/editlayout.php:108 +msgid "Edit Layout" +msgstr "Lay-out bewerken" + +#: ../../mod/editlayout.php:117 +msgid "Delete layout?" +msgstr "Lay-out verwijderen?" + +#: ../../mod/editlayout.php:178 +msgid "Delete Layout" +msgstr "Lay-out verwijderen" + +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." + +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Bron aangemaakt." + +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Bron aangemaakt." + +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" + +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Nieuwe bron" + +#: ../../mod/sources.php:101 ../../mod/sources.php:133 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "Importeer alleen inhoud met deze woorden (één per regel)" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "Laat leeg om alle openbare inhoud te importeren" + +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" +msgstr "Kanaalnaam" + +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Bron niet gevonden" + +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Bron bewerken" + +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Bron verwijderen" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Bron verwijderd" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Verwijderen bron mislukt." + +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanaal toegevoegd." + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Lay-out bijgewerkt." + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Systeempagina's bewerken" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Lay-out niet gevonden." + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Modulenaam:" + +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 +msgid "Layout Help" +msgstr "Lay-out-hulp" + +#: ../../mod/editwebpage.php:140 +msgid "Edit Webpage" +msgstr "Webpagina bewerken" + +#: ../../mod/editwebpage.php:150 +msgid "Delete webpage?" +msgstr "Webpagina verwijderen?" + +#: ../../mod/editwebpage.php:215 +msgid "Delete Webpage" +msgstr "Webpagina verwijderen" + +#: ../../mod/impel.php:33 +msgid "webpage" +msgstr "Webpagina" + +#: ../../mod/impel.php:38 +msgid "block" +msgstr "blok" + +#: ../../mod/impel.php:43 +msgid "layout" +msgstr "lay-out" + +#: ../../mod/impel.php:117 +#, php-format +msgid "%s element installed" +msgstr "%s onderdeel geïnstalleerd" + +#: ../../mod/profile_photo.php:108 +msgid "Image uploaded but image cropping failed." +msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " + +#: ../../mod/profile_photo.php:162 +msgid "Image resize failed." +msgstr "Afbeelding kon niet van grootte veranderd worden." + +#: ../../mod/profile_photo.php:206 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." + +#: ../../mod/profile_photo.php:233 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Afbeeldingsgrootte overschrijdt het limiet van %d" + +#: ../../mod/profile_photo.php:242 +msgid "Unable to process image." +msgstr "Niet in staat om afbeelding te verwerken." + +#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 +msgid "Photo not available." +msgstr "Foto niet beschikbaar." + +#: ../../mod/profile_photo.php:359 +msgid "Upload File:" +msgstr "Bestand uploaden:" + +#: ../../mod/profile_photo.php:360 +msgid "Select a profile:" +msgstr "Kies een profiel:" + +#: ../../mod/profile_photo.php:361 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" + +#: ../../mod/profile_photo.php:366 +msgid "skip this step" +msgstr "sla deze stap over" + +#: ../../mod/profile_photo.php:366 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit jouw fotoalbums" + +#: ../../mod/profile_photo.php:382 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" + +#: ../../mod/profile_photo.php:383 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." + +#: ../../mod/profile_photo.php:385 +msgid "Done Editing" +msgstr "Klaar met bewerken" + +#: ../../mod/profile_photo.php:428 +msgid "Image uploaded successfully." +msgstr "Uploaden afbeelding geslaagd" + +#: ../../mod/profile_photo.php:430 +msgid "Image upload failed." +msgstr "Uploaden afbeelding mislukt" + +#: ../../mod/profile_photo.php:439 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Verkleinen [%s] van afbeelding mislukt." + +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Contact niet gevonden" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Kanaalvoorstel verzonden." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kanalen voorstellen" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Stel een kanaal voor aan %s" + +#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 +msgid "Help:" +msgstr "Hulp:" + +#: ../../mod/help.php:76 ../../index.php:238 +msgid "Not Found" +msgstr "Niet gevonden" + +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Leuk/niet leuk" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd." + +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +msgstr "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan." + +#: ../../mod/like.php:89 ../../mod/like.php:116 ../../mod/like.php:154 +msgid "Invalid request." +msgstr "Ongeldig verzoek" + +#: ../../mod/like.php:131 +msgid "thing" +msgstr "ding" + +#: ../../mod/like.php:177 +msgid "Channel unavailable." +msgstr "Kanaal niet beschikbaar." + +#: ../../mod/like.php:216 +msgid "Previous action reversed." +msgstr "Vorige actie omgedraaid" + +#: ../../mod/like.php:352 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s is het eens met %2$s's %3$s" + +#: ../../mod/like.php:354 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s is het niet eens met %2$s's %3$s" + +#: ../../mod/like.php:356 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" + +#: ../../mod/like.php:442 +msgid "Action completed." +msgstr "Actie voltooid" + +#: ../../mod/like.php:443 +msgid "Thank you." +msgstr "Bedankt" + +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Limiet voor aantal uitnodigingen overschreden." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Geen geldig e-mailadres." + +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "Uitnodiging voor de RedMatrix" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Aflevering bericht mislukt." + +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." + +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Je hebt geen uitnodigingen meer beschikbaar" + +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Uitnodigingen verzenden" + +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Voer e-mailadressen in, één per regel:" + +#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 +msgid "Your message:" +msgstr "Jouw bericht:" + +#: ../../mod/invite.php:132 +msgid "Please join my community on RedMatrix." +msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me." + +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " +msgstr "Je moet deze uitnodigingscode opgeven:" + +#: ../../mod/invite.php:135 +msgid "1. Register at any RedMatrix location (they are all inter-connected)" +msgstr "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):" + +#: ../../mod/invite.php:137 +msgid "2. Enter my RedMatrix network address into the site searchbar." +msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:" + +#: ../../mod/invite.php:138 +msgid "or visit " +msgstr "of bezoek " + +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Klik op [+ Verbinden]" + +#: ../../mod/filestorage.php:81 +msgid "Permission Denied." +msgstr "Toegang geweigerd" + +#: ../../mod/filestorage.php:97 +msgid "File not found." +msgstr "Bestand niet gevonden." + +#: ../../mod/filestorage.php:140 +msgid "Edit file permissions" +msgstr "Bestandsrechten bewerken" + +#: ../../mod/filestorage.php:149 +msgid "Set/edit permissions" +msgstr "Rechten instellen/bewerken" + +#: ../../mod/filestorage.php:150 +msgid "Include all files and sub folders" +msgstr "Toepassen op alle bestanden en submappen" + +#: ../../mod/filestorage.php:151 +msgid "Return to file list" +msgstr "Terugkeren naar bestandlijst " + +#: ../../mod/filestorage.php:153 +msgid "Copy/paste this code to attach file to a post" +msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" + +#: ../../mod/filestorage.php:154 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" + +#: ../../mod/filestorage.php:156 +msgid "Attach this file to a new post" +msgstr "Dit bestand als bijlage aan nieuw bericht toevoegen" + +#: ../../mod/filestorage.php:157 +msgid "Show URL to this file" +msgstr "Toon URL van dit bestand" + +#: ../../mod/filestorage.php:158 +msgid "Do not show in shared with me folder of your connections" +msgstr "Toon niet in de map 'gedeeld' van jouw connecties" + +#: ../../mod/dav.php:121 +msgid "RedMatrix channel" +msgstr "RedMatrix-kanaal" + +#: ../../mod/lockview.php:31 +msgid "Remote privacy information not available." +msgstr "Privacy-informatie op afstand niet beschikbaar." + +#: ../../mod/lockview.php:52 +msgid "Visible to:" +msgstr "Zichtbaar voor:" + +#: ../../mod/import.php:25 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Jouw abonnement staat maar %d kanalen toe." + +#: ../../mod/import.php:51 +msgid "Nothing to import." +msgstr "Niets gevonden om te importeren" + +#: ../../mod/import.php:75 +msgid "Unable to download data from old server" +msgstr "Niet in staat om gegevens van de oude hub te downloaden" + +#: ../../mod/import.php:81 +msgid "Imported file is empty." +msgstr "Geïmporteerde bestand is leeg" + +#: ../../mod/import.php:106 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." + +#: ../../mod/import.php:127 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." + +#: ../../mod/import.php:147 +msgid "Channel clone failed. Import failed." +msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." + +#: ../../mod/import.php:157 +msgid "Cloned channel not found. Import failed." +msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." + +#: ../../mod/import.php:475 +msgid "Import completed." +msgstr "Import voltooid." + +#: ../../mod/import.php:487 +msgid "You must be logged in to use this feature." +msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." + +#: ../../mod/import.php:492 +msgid "Import Channel" +msgstr "Kanaal importeren" + +#: ../../mod/import.php:493 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file. Only identity and connections/relationships will " +"be imported. Importation of content is not yet available." +msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken. Alleen de identiteit en de connecties zullen geïmporteerd worden. Het importeren van inhoud is nog niet beschikbaar." + +#: ../../mod/import.php:494 +msgid "File to Upload" +msgstr "Bestand om te uploaden" + +#: ../../mod/import.php:495 +msgid "Or provide the old server/hub details" +msgstr "Of vul de gegevens van de oude hub in" + +#: ../../mod/import.php:496 +msgid "Your old identity address (xyz@example.com)" +msgstr "Jouw oude kanaaladres (xyz@example.com)" + +#: ../../mod/import.php:497 +msgid "Your old login email address" +msgstr "Het e-mailadres van je oude account" + +#: ../../mod/import.php:498 +msgid "Your old login password" +msgstr "Wachtwoord van jouw oude account" + +#: ../../mod/import.php:499 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." + +#: ../../mod/import.php:500 +msgid "Make this hub my primary location" +msgstr "Stel deze hub als mijn primaire locatie in" + +#: ../../mod/import.php:501 +msgid "Import existing posts if possible" +msgstr "Importeer bestaande berichten (wanneer mogelijk)" + +#: ../../mod/locs.php:21 ../../mod/locs.php:52 +msgid "Location not found." +msgstr "Locatie niet gevonden." + +#: ../../mod/locs.php:56 +msgid "Primary location cannot be removed." +msgstr "Primaire locatie kan niet worden verwijderd." + +#: ../../mod/locs.php:88 +msgid "No locations found." +msgstr "Geen locaties gevonden." + +#: ../../mod/locs.php:101 +msgid "Manage Channel Locations" +msgstr "Kanaallocaties beheren" + +#: ../../mod/locs.php:102 +msgid "Location (address)" +msgstr "Locatie (adres)" + +#: ../../mod/locs.php:103 +msgid "Primary Location" +msgstr "Primaire locatie" + +#: ../../mod/locs.php:104 +msgid "Drop location" +msgstr "Locatie verwijderen" + +#: ../../mod/thing.php:96 +msgid "Thing updated" +msgstr "Ding bijgewerkt" + +#: ../../mod/thing.php:156 +msgid "Object store: failed" +msgstr "Opslaan van ding mislukt" + +#: ../../mod/thing.php:160 +msgid "Thing added" +msgstr "Ding toegevoegd" + +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../mod/thing.php:232 +msgid "Show Thing" +msgstr "Ding weergeven" + +#: ../../mod/thing.php:239 +msgid "item not found." +msgstr "Item niet gevonden" + +#: ../../mod/thing.php:270 +msgid "Edit Thing" +msgstr "Ding bewerken" + +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" +msgstr "Kies een profiel" + +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" +msgstr "Plaats een bericht" + +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Only sends to viewers of the applicable profile" +msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." + +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" +msgstr "Naam van ding" + +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" +msgstr "URL van ding (optioneel)" + +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" +msgstr "URL van foto van ding (optioneel)" + +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" +msgstr "Ding aan je profiel toevoegen" + +#: ../../mod/layouts.php:110 +msgid "Help with this feature" +msgstr "Hulp voor dit onderdeel" + +#: ../../mod/layouts.php:130 +msgid "Layout Name" +msgstr "Naam lay-out" + +#: ../../mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" + +#: ../../mod/prep.php:62 +msgid "No ratings available" +msgstr "Geen waardering beschikbaar" + +#: ../../mod/prep.php:66 +msgid "Ratings" +msgstr "Waarderingen" + +#: ../../mod/prep.php:67 +msgid "Rating: " +msgstr "Waardering: " + +#: ../../mod/prep.php:68 +msgid "Description: " +msgstr "Omschrijving: " + #: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 msgid "Tag removed" msgstr "Tag verwijderd" @@ -6853,7 +6465,7 @@ msgstr "Kies een tag om te verwijderen" msgid "Theme settings updated." msgstr "Thema-instellingen bijgewerkt." -#: ../../mod/admin.php:97 ../../mod/admin.php:411 +#: ../../mod/admin.php:97 ../../mod/admin.php:415 msgid "Site" msgstr "Hub-instellingen" @@ -6861,19 +6473,19 @@ msgstr "Hub-instellingen" msgid "Accounts" msgstr "Accounts" -#: ../../mod/admin.php:99 ../../mod/admin.php:858 +#: ../../mod/admin.php:99 ../../mod/admin.php:863 msgid "Channels" msgstr "Kanalen" -#: ../../mod/admin.php:100 ../../mod/admin.php:949 ../../mod/admin.php:991 +#: ../../mod/admin.php:100 ../../mod/admin.php:954 ../../mod/admin.php:996 msgid "Plugins" msgstr "Plug-ins" -#: ../../mod/admin.php:101 ../../mod/admin.php:1154 ../../mod/admin.php:1190 +#: ../../mod/admin.php:101 ../../mod/admin.php:1159 ../../mod/admin.php:1195 msgid "Themes" msgstr "Thema's" -#: ../../mod/admin.php:102 ../../mod/admin.php:512 +#: ../../mod/admin.php:102 ../../mod/admin.php:517 msgid "Server" msgstr "Hubbeheer" @@ -6885,7 +6497,7 @@ msgstr "Profielconfiguratie" msgid "DB updates" msgstr "Database-updates" -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1277 +#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1282 msgid "Logs" msgstr "Logboeken" @@ -6901,10 +6513,10 @@ msgstr "Accounts die op goedkeuring wachten" msgid "Message queues" msgstr "Berichtenwachtrij" -#: ../../mod/admin.php:211 ../../mod/admin.php:410 ../../mod/admin.php:511 -#: ../../mod/admin.php:721 ../../mod/admin.php:857 ../../mod/admin.php:948 -#: ../../mod/admin.php:990 ../../mod/admin.php:1153 ../../mod/admin.php:1189 -#: ../../mod/admin.php:1276 +#: ../../mod/admin.php:211 ../../mod/admin.php:414 ../../mod/admin.php:516 +#: ../../mod/admin.php:726 ../../mod/admin.php:862 ../../mod/admin.php:953 +#: ../../mod/admin.php:995 ../../mod/admin.php:1158 ../../mod/admin.php:1194 +#: ../../mod/admin.php:1281 msgid "Administration" msgstr "Beheer" @@ -6916,7 +6528,7 @@ msgstr "Samenvatting" msgid "Registered users" msgstr "Geregistreerde accounts" -#: ../../mod/admin.php:216 ../../mod/admin.php:515 +#: ../../mod/admin.php:216 ../../mod/admin.php:520 msgid "Pending registrations" msgstr "Accounts die op goedkeuring wachten" @@ -6924,568 +6536,593 @@ msgstr "Accounts die op goedkeuring wachten" msgid "Version" msgstr "Versie" -#: ../../mod/admin.php:219 ../../mod/admin.php:516 +#: ../../mod/admin.php:219 ../../mod/admin.php:521 msgid "Active plugins" msgstr "Ingeschakelde plug-ins" -#: ../../mod/admin.php:326 +#: ../../mod/admin.php:330 msgid "Site settings updated." msgstr "Hub-instellingen bijgewerkt." -#: ../../mod/admin.php:365 +#: ../../mod/admin.php:369 msgid "experimental" msgstr "experimenteel" -#: ../../mod/admin.php:367 +#: ../../mod/admin.php:371 msgid "unsupported" msgstr "Niet ondersteund" -#: ../../mod/admin.php:391 +#: ../../mod/admin.php:395 msgid "Yes - with approval" msgstr "Ja - met goedkeuring" -#: ../../mod/admin.php:397 +#: ../../mod/admin.php:401 msgid "My site is not a public server" msgstr "Mijn RedMatrix-hub is niet openbaar" -#: ../../mod/admin.php:398 +#: ../../mod/admin.php:402 msgid "My site has paid access only" msgstr "Mijn RedMatrix-hub kent alleen betaalde toegang" -#: ../../mod/admin.php:399 +#: ../../mod/admin.php:403 msgid "My site has free access only" msgstr "Mijn RedMatrix-hub kent alleen gratis toegang" -#: ../../mod/admin.php:400 +#: ../../mod/admin.php:404 msgid "My site offers free accounts with optional paid upgrades" msgstr "Mijn RedMatrix-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" -#: ../../mod/admin.php:414 +#: ../../mod/admin.php:418 msgid "File upload" msgstr "Bestand uploaden" -#: ../../mod/admin.php:415 +#: ../../mod/admin.php:419 msgid "Policies" msgstr "Beleid" -#: ../../mod/admin.php:420 +#: ../../mod/admin.php:424 msgid "Site name" msgstr "Naam van deze RedMatrix-hub" -#: ../../mod/admin.php:421 +#: ../../mod/admin.php:425 msgid "Banner/Logo" msgstr "Banner/logo" -#: ../../mod/admin.php:422 +#: ../../mod/admin.php:426 msgid "Administrator Information" msgstr "Informatie over de beheerder van deze hub" -#: ../../mod/admin.php:422 +#: ../../mod/admin.php:426 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden." -#: ../../mod/admin.php:423 +#: ../../mod/admin.php:427 msgid "System language" msgstr "Standaardtaal" -#: ../../mod/admin.php:424 +#: ../../mod/admin.php:428 msgid "System theme" msgstr "Standaardthema" -#: ../../mod/admin.php:424 +#: ../../mod/admin.php:428 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Standaardthema voor RedMatrix-hub (kan door lid veranderd worden) - verander thema-instellingen" -#: ../../mod/admin.php:425 +#: ../../mod/admin.php:429 msgid "Mobile system theme" msgstr "Standaardthema voor mobiel" -#: ../../mod/admin.php:425 +#: ../../mod/admin.php:429 msgid "Theme for mobile devices" msgstr "Thema voor mobiele apparaten" -#: ../../mod/admin.php:427 +#: ../../mod/admin.php:431 msgid "Enable Diaspora Protocol" msgstr "Diaspora-protocol inschakelen" -#: ../../mod/admin.php:427 +#: ../../mod/admin.php:431 msgid "Communicate with Diaspora and Friendica - experimental" msgstr "Communiceer met Diaspora en Friendica (experimenteel)" -#: ../../mod/admin.php:428 +#: ../../mod/admin.php:432 msgid "Allow Feeds as Connections" msgstr "Sta feeds toe als connecties" -#: ../../mod/admin.php:428 +#: ../../mod/admin.php:432 msgid "(Heavy system resource usage)" msgstr "(sterk negatieve invloed op systeembronnen hub)" -#: ../../mod/admin.php:429 +#: ../../mod/admin.php:433 msgid "Maximum image size" msgstr "Maximale grootte van afbeeldingen" -#: ../../mod/admin.php:429 +#: ../../mod/admin.php:433 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend." -#: ../../mod/admin.php:430 +#: ../../mod/admin.php:434 msgid "Does this site allow new member registration?" msgstr "Staat deze hub nieuwe accounts toe?" -#: ../../mod/admin.php:431 +#: ../../mod/admin.php:435 msgid "Which best describes the types of account offered by this hub?" msgstr "Wat voor soort accounts biedt deze RedMatrix-hub aan? Kies wat het meest in de buurt komt." -#: ../../mod/admin.php:432 +#: ../../mod/admin.php:436 msgid "Register text" msgstr "Tekst tijdens registratie" -#: ../../mod/admin.php:432 +#: ../../mod/admin.php:436 msgid "Will be displayed prominently on the registration page." msgstr "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond." -#: ../../mod/admin.php:433 +#: ../../mod/admin.php:437 msgid "Accounts abandoned after x days" msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" -#: ../../mod/admin.php:433 +#: ../../mod/admin.php:437 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet." -#: ../../mod/admin.php:434 +#: ../../mod/admin.php:438 msgid "Allowed friend domains" msgstr "Toegestane domeinen" -#: ../../mod/admin.php:434 +#: ../../mod/admin.php:438 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 waarvan kanalen connecties kunnen aangaan met kanalen op deze RedMatrix-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." -#: ../../mod/admin.php:435 +#: ../../mod/admin.php:439 msgid "Allowed email domains" msgstr "Toegestane e-maildomeinen" -#: ../../mod/admin.php:435 +#: ../../mod/admin.php:439 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 hub mogen registeren. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." +msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten." -#: ../../mod/admin.php:436 +#: ../../mod/admin.php:440 +msgid "Not allowed email domains" +msgstr "Niet toegestane e-maildomeinen" + +#: ../../mod/admin.php:440 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. " + +#: ../../mod/admin.php:441 msgid "Block public" msgstr "Openbare toegang blokkeren" -#: ../../mod/admin.php:436 +#: ../../mod/admin.php:441 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor ingelogde leden." -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:442 msgid "Verify Email Addresses" msgstr "E-mailadres verifieren" -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:442 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)." -#: ../../mod/admin.php:438 +#: ../../mod/admin.php:443 msgid "Force publish" msgstr "Dwing kanaalvermelding af" -#: ../../mod/admin.php:438 +#: ../../mod/admin.php:443 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld." -#: ../../mod/admin.php:439 +#: ../../mod/admin.php:444 msgid "Disable discovery tab" msgstr "Ontdekkingstab" -#: ../../mod/admin.php:439 +#: ../../mod/admin.php:444 msgid "" "Remove the tab in the network view with public content pulled from sources " "chosen for this site." msgstr "Verwijder de tab in de matrix-weergave waarin zich een selectie aan openbare berichten bevindt, die automatisch voor deze hub zijn uitgekozen." -#: ../../mod/admin.php:440 +#: ../../mod/admin.php:445 msgid "No login on Homepage" msgstr "Geen inlogformulier op de homepage" -#: ../../mod/admin.php:440 +#: ../../mod/admin.php:445 msgid "" "Check to hide the login form from your sites homepage when visitors arrive " "who are not logged in (e.g. when you put the content of the homepage in via " "the site channel)." msgstr "Vink dit aan om het inlogformulier op de homepage van deze hub, die niet-ingelogde bezoekers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze RedMatrix-hub als homepage gebruikt)" -#: ../../mod/admin.php:442 +#: ../../mod/admin.php:447 msgid "Proxy user" msgstr "Gebruikersnaam proxy" -#: ../../mod/admin.php:443 +#: ../../mod/admin.php:448 msgid "Proxy URL" msgstr "URL proxy" -#: ../../mod/admin.php:444 +#: ../../mod/admin.php:449 msgid "Network timeout" msgstr "Netwerktimeout" -#: ../../mod/admin.php:444 +#: ../../mod/admin.php:449 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:445 +#: ../../mod/admin.php:450 msgid "Delivery interval" msgstr "Afleveringsinterval" -#: ../../mod/admin.php:445 +#: ../../mod/admin.php:450 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 "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers." -#: ../../mod/admin.php:446 +#: ../../mod/admin.php:451 msgid "Poll interval" msgstr "Poll-interval" -#: ../../mod/admin.php:446 +#: ../../mod/admin.php:451 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken." -#: ../../mod/admin.php:447 +#: ../../mod/admin.php:452 msgid "Maximum Load Average" msgstr "Maximaal gemiddelde systeembelasting" -#: ../../mod/admin.php:447 +#: ../../mod/admin.php:452 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50." -#: ../../mod/admin.php:503 +#: ../../mod/admin.php:508 msgid "No server found" msgstr "Geen hub gevonden" -#: ../../mod/admin.php:510 ../../mod/admin.php:735 +#: ../../mod/admin.php:515 ../../mod/admin.php:740 msgid "ID" msgstr "ID" -#: ../../mod/admin.php:510 +#: ../../mod/admin.php:515 msgid "for channel" msgstr "voor kanaal" -#: ../../mod/admin.php:510 +#: ../../mod/admin.php:515 msgid "on server" msgstr "op hub" -#: ../../mod/admin.php:510 +#: ../../mod/admin.php:515 msgid "Status" msgstr "Status" -#: ../../mod/admin.php:531 +#: ../../mod/admin.php:536 msgid "Update has been marked successful" msgstr "Update is als succesvol gemarkeerd" -#: ../../mod/admin.php:541 +#: ../../mod/admin.php:546 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." -#: ../../mod/admin.php:544 +#: ../../mod/admin.php:549 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s was geslaagd." -#: ../../mod/admin.php:548 +#: ../../mod/admin.php:553 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is." -#: ../../mod/admin.php:551 +#: ../../mod/admin.php:556 #, php-format msgid "Update function %s could not be found." msgstr "Update-functie %s kon niet gevonden worden." -#: ../../mod/admin.php:566 +#: ../../mod/admin.php:571 msgid "No failed updates." msgstr "Geen mislukte updates." -#: ../../mod/admin.php:570 +#: ../../mod/admin.php:575 msgid "Failed Updates" msgstr "Mislukte updates" -#: ../../mod/admin.php:572 +#: ../../mod/admin.php:577 msgid "Mark success (if update was manually applied)" msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" -#: ../../mod/admin.php:573 +#: ../../mod/admin.php:578 msgid "Attempt to execute this update step automatically" msgstr "Poging om deze stap van de update automatisch uit te voeren." -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:604 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s account geblokkeerd/gedeblokkeerd" msgstr[1] "%s accounts geblokkeerd/gedeblokkeerd" -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:611 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s account verwijderd" msgstr[1] "%s accounts verwijderd" -#: ../../mod/admin.php:635 +#: ../../mod/admin.php:640 msgid "Account not found" msgstr "Account niet gevonden" -#: ../../mod/admin.php:655 +#: ../../mod/admin.php:660 #, php-format msgid "User '%s' unblocked" msgstr "Account '%s' gedeblokkeerd" -#: ../../mod/admin.php:655 +#: ../../mod/admin.php:660 #, php-format msgid "User '%s' blocked" msgstr "Lid '%s' geblokkeerd" -#: ../../mod/admin.php:722 ../../mod/admin.php:734 +#: ../../mod/admin.php:727 ../../mod/admin.php:739 msgid "Users" msgstr "Accounts" -#: ../../mod/admin.php:724 ../../mod/admin.php:860 +#: ../../mod/admin.php:729 ../../mod/admin.php:865 msgid "select all" msgstr "alles selecteren" -#: ../../mod/admin.php:725 +#: ../../mod/admin.php:730 msgid "User registrations waiting for confirm" msgstr "Accounts die op goedkeuring wachten" -#: ../../mod/admin.php:726 +#: ../../mod/admin.php:731 msgid "Request date" msgstr "Tijd/datum verzoek" -#: ../../mod/admin.php:727 +#: ../../mod/admin.php:732 msgid "No registrations." msgstr "Geen verzoeken." -#: ../../mod/admin.php:728 +#: ../../mod/admin.php:733 msgid "Approve" msgstr "Goedkeuren" -#: ../../mod/admin.php:729 +#: ../../mod/admin.php:734 msgid "Deny" msgstr "Afkeuren" -#: ../../mod/admin.php:735 +#: ../../mod/admin.php:736 ../../mod/connedit.php:499 +#: ../../mod/connedit.php:672 +msgid "Block" +msgstr "Blokkeren" + +#: ../../mod/admin.php:737 ../../mod/connedit.php:499 +#: ../../mod/connedit.php:672 +msgid "Unblock" +msgstr "Deblokkeren" + +#: ../../mod/admin.php:740 msgid "Register date" msgstr "Geregistreerd" -#: ../../mod/admin.php:735 +#: ../../mod/admin.php:740 msgid "Last login" msgstr "Laatste keer ingelogd" -#: ../../mod/admin.php:735 +#: ../../mod/admin.php:740 msgid "Expires" msgstr "Verloopt" -#: ../../mod/admin.php:735 +#: ../../mod/admin.php:740 msgid "Service Class" msgstr "Abonnementen" -#: ../../mod/admin.php:737 +#: ../../mod/admin.php:742 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 accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?" -#: ../../mod/admin.php:738 +#: ../../mod/admin.php:743 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 "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../mod/admin.php:771 +#: ../../mod/admin.php:776 #, php-format msgid "%s channel censored/uncensored" msgid_plural "%s channels censored/uncensored" msgstr[0] "%s kanaal gecensureerd/ongecensureerd" msgstr[1] "%s kanalen gecensureerd/ongecensureerd" -#: ../../mod/admin.php:778 +#: ../../mod/admin.php:783 #, php-format msgid "%s channel deleted" msgid_plural "%s channels deleted" msgstr[0] "%s kanaal verwijderd" msgstr[1] "%s kanalen verwijderd" -#: ../../mod/admin.php:797 +#: ../../mod/admin.php:802 msgid "Channel not found" msgstr "Kanaal niet gevonden" -#: ../../mod/admin.php:808 +#: ../../mod/admin.php:813 #, php-format msgid "Channel '%s' deleted" msgstr "Kanaal '%s' verwijderd" -#: ../../mod/admin.php:819 +#: ../../mod/admin.php:824 #, php-format msgid "Channel '%s' uncensored" msgstr "Kanaal '%s' ongecensureerd" -#: ../../mod/admin.php:819 +#: ../../mod/admin.php:824 #, php-format msgid "Channel '%s' censored" msgstr "Kanaal '%s' gecensureerd" -#: ../../mod/admin.php:862 +#: ../../mod/admin.php:867 msgid "Censor" msgstr "Censureren" -#: ../../mod/admin.php:863 +#: ../../mod/admin.php:868 msgid "Uncensor" msgstr "Niet censureren" -#: ../../mod/admin.php:866 +#: ../../mod/admin.php:871 msgid "UID" msgstr "UID" -#: ../../mod/admin.php:868 +#: ../../mod/admin.php:871 ../../mod/profiles.php:447 +msgid "Address" +msgstr "Kanaaladres" + +#: ../../mod/admin.php:873 msgid "" "Selected channels will be deleted!\\n\\nEverything that was posted in these " "channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../mod/admin.php:869 +#: ../../mod/admin.php:874 msgid "" "The channel {0} will be deleted!\\n\\nEverything that was posted in this " "channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../mod/admin.php:908 +#: ../../mod/admin.php:913 #, php-format msgid "Plugin %s disabled." msgstr "Plug-in %s uitgeschakeld." -#: ../../mod/admin.php:912 +#: ../../mod/admin.php:917 #, php-format msgid "Plugin %s enabled." msgstr "Plug-in %s ingeschakeld" -#: ../../mod/admin.php:922 ../../mod/admin.php:1124 +#: ../../mod/admin.php:927 ../../mod/admin.php:1129 msgid "Disable" msgstr "Uitschakelen" -#: ../../mod/admin.php:924 ../../mod/admin.php:1126 +#: ../../mod/admin.php:929 ../../mod/admin.php:1131 msgid "Enable" msgstr "Inschakelen" -#: ../../mod/admin.php:950 ../../mod/admin.php:1155 +#: ../../mod/admin.php:955 ../../mod/admin.php:1160 msgid "Toggle" msgstr "Omschakelen" -#: ../../mod/admin.php:958 ../../mod/admin.php:1165 +#: ../../mod/admin.php:963 ../../mod/admin.php:1170 msgid "Author: " msgstr "Auteur: " -#: ../../mod/admin.php:959 ../../mod/admin.php:1166 +#: ../../mod/admin.php:964 ../../mod/admin.php:1171 msgid "Maintainer: " msgstr "Beheerder: " -#: ../../mod/admin.php:1088 +#: ../../mod/admin.php:1093 msgid "No themes found." msgstr "Geen thema's gevonden" -#: ../../mod/admin.php:1147 +#: ../../mod/admin.php:1152 msgid "Screenshot" msgstr "Schermafdruk" -#: ../../mod/admin.php:1195 +#: ../../mod/admin.php:1200 msgid "[Experimental]" msgstr "[Experimenteel]" -#: ../../mod/admin.php:1196 +#: ../../mod/admin.php:1201 msgid "[Unsupported]" msgstr "[Niet ondersteund]" -#: ../../mod/admin.php:1223 +#: ../../mod/admin.php:1228 msgid "Log settings updated." msgstr "Logboek-instellingen bijgewerkt." -#: ../../mod/admin.php:1279 +#: ../../mod/admin.php:1284 msgid "Clear" msgstr "Leegmaken" -#: ../../mod/admin.php:1285 +#: ../../mod/admin.php:1290 msgid "Debugging" msgstr "Debuggen" -#: ../../mod/admin.php:1286 +#: ../../mod/admin.php:1291 msgid "Log file" msgstr "Logbestand" -#: ../../mod/admin.php:1286 +#: ../../mod/admin.php:1291 msgid "" "Must be writable by web server. Relative to your Red top-level directory." msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je RedMatrix-installatie." -#: ../../mod/admin.php:1287 +#: ../../mod/admin.php:1292 msgid "Log level" msgstr "Logniveau" -#: ../../mod/admin.php:1334 +#: ../../mod/admin.php:1339 msgid "New Profile Field" msgstr "Nieuw profielveld" -#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 msgid "Field nickname" msgstr "Bijnaam voor veld" -#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 msgid "System name of field" msgstr "Systeemnaam voor veld" -#: ../../mod/admin.php:1336 ../../mod/admin.php:1357 +#: ../../mod/admin.php:1341 ../../mod/admin.php:1362 msgid "Input type" msgstr "Invoertype" -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 msgid "Field Name" msgstr "Veldnaam" -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 msgid "Label on profile pages" msgstr "Tekstlabel voor op profielpagina's" -#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 msgid "Help text" msgstr "Helptekst" -#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 msgid "Additional info (optional)" msgstr "Extra informatie (optioneel)" -#: ../../mod/admin.php:1349 +#: ../../mod/admin.php:1354 msgid "Field definition not found" msgstr "Velddefinitie niet gevonden" -#: ../../mod/admin.php:1355 +#: ../../mod/admin.php:1360 msgid "Edit Profile Field" msgstr "Profielveld bewerken" @@ -7577,94 +7214,21 @@ msgstr "Menu bewerken" msgid "Add or remove entries to this menu" msgstr "Items aan dit menu toevoegen of verwijder" -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Limiet voor aantal uitnodigingen overschreden." +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "Profielovereenkomst" -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Geen geldig e-mailadres." +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Uitnodiging voor de RedMatrix" +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "is geïnteresseerd in:" -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Aflevering bericht mislukt." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d bericht verzonden." -msgstr[1] "%d berichten verzonden." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Je hebt geen uitnodigingen meer beschikbaar" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Uitnodigingen verzenden" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Voer e-mailadressen in, één per regel:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me." - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Je moet deze uitnodigingscode opgeven:" - -#: ../../mod/invite.php:135 -msgid "1. Register at any RedMatrix location (they are all inter-connected)" -msgstr "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):" - -#: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:" - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "of bezoek " - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klik op [+ Verbinden]" - -#: ../../mod/network.php:84 -msgid "No such group" -msgstr "Collectie niet gevonden" - -#: ../../mod/network.php:122 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" - -#: ../../mod/network.php:176 -msgid "Collection is empty" -msgstr "Collectie is leeg" - -#: ../../mod/network.php:184 -msgid "Collection: " -msgstr "Collectie: " - -#: ../../mod/network.php:197 -msgid "Connection: " -msgstr "Connectie: " - -#: ../../mod/network.php:200 -msgid "Invalid connection." -msgstr "Ongeldige connectie." +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "Geen overeenkomsten" #: ../../mod/notifications.php:26 msgid "Invalid request identifier." @@ -7674,6 +7238,11 @@ msgstr "Ongeldige verzoek identificator (request identifier)" msgid "Discard" msgstr "Annuleren" +#: ../../mod/notifications.php:51 ../../mod/connedit.php:506 +#: ../../mod/connedit.php:673 +msgid "Ignore" +msgstr "Negeren" + #: ../../mod/notifications.php:94 ../../mod/notify.php:53 msgid "No more system notifications." msgstr "Geen systeemnotificaties meer." @@ -7688,13 +7257,174 @@ msgstr "Systeemnotificaties" msgid "[Embedded content - reload page to view]" msgstr "[Ingesloten inhoud - ververs pagina om te bekijken] " -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Privacy-informatie op afstand niet beschikbaar." +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "Ga verder" -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Zichtbaar voor:" +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " + +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" + +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." + +#: ../../mod/connect.php:90 ../../mod/connect.php:110 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" + +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" + +#: ../../mod/connect.php:92 ../../mod/connect.php:113 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." + +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " + +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" + +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App geïnstalleerd" + +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "Misvormde app." + +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Insluitcode" + +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "App bewerken" + +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "App maken" + +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Naam van app" + +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Locatie (URL) van app" + +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "URL van pictogram" + +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels (optioneel)" + +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versie-ID" + +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Prijs van de app" + +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Locatie (URL) om de app aan te schaffen" + +#: ../../mod/mood.php:132 +msgid "Set your current mood and tell your friends" +msgstr "Noteer je huidige stemming en toon het aan je connecties" + +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Niet in staat om ontvanger op te zoeken." + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Kan opgevraagd kanaal niet verifieren" + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." + +#: ../../mod/mail.php:139 +msgid "Message deleted." +msgstr "Bericht verwijderd." + +#: ../../mod/mail.php:156 +msgid "Message recalled." +msgstr "Bericht ingetrokken." + +#: ../../mod/mail.php:225 +msgid "Send Private Message" +msgstr "Privébericht versturen" + +#: ../../mod/mail.php:226 ../../mod/mail.php:343 +msgid "To:" +msgstr "Aan:" + +#: ../../mod/mail.php:231 ../../mod/mail.php:345 +msgid "Subject:" +msgstr "Onderwerp:" + +#: ../../mod/mail.php:242 +msgid "Send" +msgstr "Verzenden" + +#: ../../mod/mail.php:269 +msgid "Message not found." +msgstr "Bericht niet gevonden" + +#: ../../mod/mail.php:312 +msgid "Delete message" +msgstr "Bericht verwijderen" + +#: ../../mod/mail.php:313 +msgid "Recall message" +msgstr "Bericht intrekken" + +#: ../../mod/mail.php:315 +msgid "Message has been recalled." +msgstr "Bericht is ingetrokken." + +#: ../../mod/mail.php:332 +msgid "Private Conversation" +msgstr "Privéconversatie" + +#: ../../mod/mail.php:336 ../../mod/message.php:72 +msgid "Delete conversation" +msgstr "Verwijder conversatie" + +#: ../../mod/mail.php:338 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." + +#: ../../mod/mail.php:342 +msgid "Send Reply" +msgstr "Antwoord versturen" #: ../../mod/viewconnections.php:58 msgid "No connections." @@ -7705,10 +7435,6 @@ msgstr "Geen connecties." msgid "Visit %s's profile [%s]" msgstr "Bezoek het profiel van %s [%s]" -#: ../../mod/viewconnections.php:86 -msgid "View Connnections" -msgstr "Connecties weergeven" - #: ../../mod/magic.php:70 msgid "Hub not found." msgstr "Hub niet gevonden." @@ -7725,30 +7451,321 @@ msgstr "Gemiddelde waardering" msgid "OpenID protocol error. No ID returned." msgstr "OpenID-protocolfout. Geen ID terugontvangen." -#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:261 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Welkom %s. Authenticatie op afstand geslaagd." - #: ../../mod/wall_upload.php:35 msgid "Wall Photos" msgstr "Kanaalfoto's" -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profielovereenkomst" +#: ../../mod/connedit.php:245 +msgid "is now connected to" +msgstr "is nu verbonden met" -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." +#: ../../mod/connedit.php:357 +msgid "Could not access address book record." +msgstr "Kon geen toegang krijgen tot de record van de connectie." -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "is geïnteresseerd in:" +#: ../../mod/connedit.php:371 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Geen overeenkomsten" +#: ../../mod/connedit.php:378 +msgid "Channel has been unblocked" +msgstr "Kanaal is gedeblokkeerd" + +#: ../../mod/connedit.php:379 +msgid "Channel has been blocked" +msgstr "Kanaal is geblokkeerd" + +#: ../../mod/connedit.php:383 ../../mod/connedit.php:395 +#: ../../mod/connedit.php:407 ../../mod/connedit.php:419 +#: ../../mod/connedit.php:435 +msgid "Unable to set address book parameters." +msgstr "Niet in staat om de parameters van connecties in te stellen." + +#: ../../mod/connedit.php:390 +msgid "Channel has been unignored" +msgstr "Kanaal wordt niet meer genegeerd" + +#: ../../mod/connedit.php:391 +msgid "Channel has been ignored" +msgstr "Kanaal wordt genegeerd" + +#: ../../mod/connedit.php:402 +msgid "Channel has been unarchived" +msgstr "Kanaal is niet meer gearchiveerd" + +#: ../../mod/connedit.php:403 +msgid "Channel has been archived" +msgstr "Kanaal is gearchiveerd" + +#: ../../mod/connedit.php:414 +msgid "Channel has been unhidden" +msgstr "Kanaal is niet meer verborgen" + +#: ../../mod/connedit.php:415 +msgid "Channel has been hidden" +msgstr "Kanaal is verborgen" + +#: ../../mod/connedit.php:430 +msgid "Channel has been approved" +msgstr "Connectie/kanaal is geaccepteerd" + +#: ../../mod/connedit.php:431 +msgid "Channel has been unapproved" +msgstr "Connectie/kanaal is afgewezen" + +#: ../../mod/connedit.php:459 +msgid "Connection has been removed." +msgstr "Connectie is verwijderd" + +#: ../../mod/connedit.php:479 +#, php-format +msgid "View %s's profile" +msgstr "Profiel van %s weergeven" + +#: ../../mod/connedit.php:483 +msgid "Refresh Permissions" +msgstr "Permissies vernieuwen" + +#: ../../mod/connedit.php:486 +msgid "Fetch updated permissions" +msgstr "Aangepaste permissies ophalen" + +#: ../../mod/connedit.php:490 +msgid "Recent Activity" +msgstr "Recente activiteit" + +#: ../../mod/connedit.php:493 +msgid "View recent posts and comments" +msgstr "Recente berichten en reacties weergeven" + +#: ../../mod/connedit.php:502 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" + +#: ../../mod/connedit.php:506 ../../mod/connedit.php:673 +msgid "Unignore" +msgstr "Niet meer negeren" + +#: ../../mod/connedit.php:509 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" + +#: ../../mod/connedit.php:512 +msgid "Unarchive" +msgstr "Niet meer archiveren" + +#: ../../mod/connedit.php:512 +msgid "Archive" +msgstr "Archiveren" + +#: ../../mod/connedit.php:515 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" + +#: ../../mod/connedit.php:518 +msgid "Unhide" +msgstr "Niet meer verbergen" + +#: ../../mod/connedit.php:518 +msgid "Hide" +msgstr "Verbergen" + +#: ../../mod/connedit.php:521 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" + +#: ../../mod/connedit.php:528 +msgid "Delete this connection" +msgstr "Deze connectie verwijderen" + +#: ../../mod/connedit.php:589 ../../mod/connedit.php:627 +msgid "Approve this connection" +msgstr "Deze connectie accepteren" + +#: ../../mod/connedit.php:589 +msgid "Accept connection to allow communication" +msgstr "Keur deze connectie goed om communicatie toe te staan" + +#: ../../mod/connedit.php:605 +#, php-format +msgid "Connections: settings for %s" +msgstr "Connecties: instellingen voor %s" + +#: ../../mod/connedit.php:606 +msgid "Apply these permissions automatically" +msgstr "Deze permissies automatisch toepassen" + +#: ../../mod/connedit.php:610 +msgid "Apply the permissions indicated on this page to all new connections." +msgstr "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen." + +#: ../../mod/connedit.php:614 +msgid "Slide to adjust your degree of friendship" +msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" + +#: ../../mod/connedit.php:615 +msgid "Rating (this information may be public)" +msgstr "Waardering (deze informatie kan mogelijk openbaar worden)" + +#: ../../mod/connedit.php:616 +msgid "Optionally explain your rating (this information may be public)" +msgstr "Licht desgewenst jouw waardering toe (kan mogelijk openbaar worden)" + +#: ../../mod/connedit.php:623 +msgid "" +"Default permissions for your channel type have (just) been applied. They " +"have not yet been submitted. Please review the permissions on this page and " +"make any desired changes at this time. This new connection may not " +"be able to communicate with you until you submit this page, which will " +"install and apply the selected permissions." +msgstr "Voor jouw kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen. Controleer de permissies op deze pagina en verander ze eventueel. Deze nieuwe connectie kan mogelijk nog niet met jou communiceren totdat je deze pagina opslaat, wat ervoor zorgt dat de gekozen permissies actief worden." + +#: ../../mod/connedit.php:626 +msgid "inherited" +msgstr "geërfd" + +#: ../../mod/connedit.php:629 +msgid "Connection has no individual permissions!" +msgstr "Connectie heeft geen individuele permissies!" + +#: ../../mod/connedit.php:630 +msgid "" +"This may be appropriate based on your privacy " +"settings, though you may wish to review the \"Advanced Permissions\"." +msgstr "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan." + +#: ../../mod/connedit.php:632 +msgid "Profile Visibility" +msgstr "Zichtbaarheid profiel" + +#: ../../mod/connedit.php:633 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." + +#: ../../mod/connedit.php:634 +msgid "Contact Information / Notes" +msgstr "Informatie/aantekeningen over connectie" + +#: ../../mod/connedit.php:635 +msgid "Edit contact notes" +msgstr "Bewerk aantekeningen over contact" + +#: ../../mod/connedit.php:637 +msgid "Their Settings" +msgstr "Hun instellingen" + +#: ../../mod/connedit.php:638 +msgid "My Settings" +msgstr "Mijn instellingen" + +#: ../../mod/connedit.php:640 +msgid "" +"Default permissions for this channel type have (just) been applied. They " +"have not been saved and there are currently no stored default " +"permissions. Please review/edit the applied settings and click [Submit] to " +"finalize." +msgstr "Voor dit kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen en er zijn momenteel geen standaard permissies aanwezig. Controleer/verander de permissies op deze pagina en klik op [Opslaan] om deze te activeren." + +#: ../../mod/connedit.php:641 +msgid "Clear/Disable Automatic Permissions" +msgstr "Verwijderen/uitschakelen automatische permissies" + +#: ../../mod/connedit.php:642 +msgid "Forum Members" +msgstr "Forumleden" + +#: ../../mod/connedit.php:643 +msgid "Soapbox" +msgstr "Zeepkist" + +#: ../../mod/connedit.php:644 +msgid "Full Sharing (typical social network permissions)" +msgstr "Voluit delen (vergelijkbaar met die van sociale netwerken)" + +#: ../../mod/connedit.php:645 +msgid "Cautious Sharing " +msgstr "Voorzichtig delen" + +#: ../../mod/connedit.php:646 +msgid "Follow Only" +msgstr "Alleen volgen" + +#: ../../mod/connedit.php:647 +msgid "Individual Permissions" +msgstr "Individuele permissies" + +#: ../../mod/connedit.php:648 +msgid "" +"Some permissions may be inherited from your channel privacy settings, which have higher priority than " +"individual settings. Changing those inherited settings on this page will " +"have no effect." +msgstr "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect." + +#: ../../mod/connedit.php:649 +msgid "Advanced Permissions" +msgstr "Geavanceerde permissies" + +#: ../../mod/connedit.php:650 +msgid "Simple Permissions (select one and submit)" +msgstr "Eenvoudige permissies (selecteer er één en opslaan)" + +#: ../../mod/connedit.php:654 +#, php-format +msgid "Visit %s's profile - %s" +msgstr "Profiel van %s bezoeken - %s" + +#: ../../mod/connedit.php:655 +msgid "Block/Unblock contact" +msgstr "Connectie blokkeren/deblokkeren" + +#: ../../mod/connedit.php:656 +msgid "Ignore contact" +msgstr "Connectie negeren" + +#: ../../mod/connedit.php:657 +msgid "Repair URL settings" +msgstr "URL-instellingen repareren" + +#: ../../mod/connedit.php:658 +msgid "View conversations" +msgstr "Conversaties weergeven" + +#: ../../mod/connedit.php:660 +msgid "Delete contact" +msgstr "Connectie verwijderen" + +#: ../../mod/connedit.php:664 +msgid "Last update:" +msgstr "Laatste wijziging:" + +#: ../../mod/connedit.php:666 +msgid "Update public posts" +msgstr "Openbare berichten updaten" + +#: ../../mod/connedit.php:668 +msgid "Update now" +msgstr "Nu updaten" + +#: ../../mod/connedit.php:674 +msgid "Currently blocked" +msgstr "Momenteel geblokkeerd" + +#: ../../mod/connedit.php:675 +msgid "Currently ignored" +msgstr "Momenteel genegeerd" + +#: ../../mod/connedit.php:676 +msgid "Currently archived" +msgstr "Momenteel gearchiveerd" + +#: ../../mod/connedit.php:677 +msgid "Currently pending" +msgstr "Moeten nog geaccepteerd of afgewezen worden" #: ../../mod/message.php:41 msgid "Conversation removed." @@ -7818,141 +7835,6 @@ msgstr "Zoek een xchan (of webbie) die begint met:" msgid "invalid target signature" msgstr "ongeldig doelkenmerk" -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Album niet gevonden." - -#: ../../mod/photos.php:119 ../../mod/photos.php:672 -msgid "Delete Album" -msgstr "Verwijder album" - -#: ../../mod/photos.php:159 ../../mod/photos.php:955 -msgid "Delete Photo" -msgstr "Verwijder foto" - -#: ../../mod/photos.php:469 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" - -#: ../../mod/photos.php:513 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." - -#: ../../mod/photos.php:552 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." - -#: ../../mod/photos.php:555 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB aan foto-opslag gebruikt." - -#: ../../mod/photos.php:579 -msgid "Upload Photos" -msgstr "Foto's uploaden" - -#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:940 -msgid "Enter a new album name" -msgstr "Vul een nieuwe albumnaam in" - -#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:941 -msgid "or select an existing one (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" - -#: ../../mod/photos.php:585 -msgid "Do not show a status post for this upload" -msgstr "Plaats geen bericht voor deze upload." - -#: ../../mod/photos.php:613 -msgid "Album name could not be decoded" -msgstr "Albumnaam kon niet gedecodeerd worden" - -#: ../../mod/photos.php:654 ../../mod/photos.php:1164 -#: ../../mod/photos.php:1180 -msgid "Contact Photos" -msgstr "Connectiefoto's" - -#: ../../mod/photos.php:678 -msgid "Show Newest First" -msgstr "Nieuwste eerst weergeven" - -#: ../../mod/photos.php:680 -msgid "Show Oldest First" -msgstr "Oudste eerst weergeven" - -#: ../../mod/photos.php:704 ../../mod/photos.php:1212 -msgid "View Photo" -msgstr "Foto weergeven" - -#: ../../mod/photos.php:733 -msgid "Edit Album" -msgstr "Album bewerken" - -#: ../../mod/photos.php:778 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." - -#: ../../mod/photos.php:780 -msgid "Photo not available" -msgstr "Foto niet aanwezig" - -#: ../../mod/photos.php:838 -msgid "Use as profile photo" -msgstr "Als profielfoto gebruiken" - -#: ../../mod/photos.php:845 -msgid "Private Photo" -msgstr "Privéfoto" - -#: ../../mod/photos.php:860 -msgid "View Full Size" -msgstr "Volledige grootte weergeven" - -#: ../../mod/photos.php:934 -msgid "Edit photo" -msgstr "Foto bewerken" - -#: ../../mod/photos.php:936 -msgid "Rotate CW (right)" -msgstr "Draai met de klok mee (naar rechts)" - -#: ../../mod/photos.php:937 -msgid "Rotate CCW (left)" -msgstr "Draai tegen de klok in (naar links)" - -#: ../../mod/photos.php:944 -msgid "Caption" -msgstr "Bijschrift" - -#: ../../mod/photos.php:946 -msgid "Add a Tag" -msgstr "Tag toevoegen" - -#: ../../mod/photos.php:950 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" - -#: ../../mod/photos.php:953 -msgid "Flag as adult in album view" -msgstr "Markeer als voor volwassenen in albumweergave" - -#: ../../mod/photos.php:1130 -msgid "In This Photo:" -msgstr "Op deze foto:" - -#: ../../mod/photos.php:1218 -msgid "View Album" -msgstr "Album weergeven" - -#: ../../mod/photos.php:1241 -msgid "Recent Photos" -msgstr "Recente foto's" - #: ../../mod/oexchange.php:23 msgid "Unable to find your hub." msgstr "Niet in staat om je hub te vinden" @@ -7961,6 +7843,10 @@ msgstr "Niet in staat om je hub te vinden" msgid "Post successful." msgstr "Verzenden bericht geslaagd." +#: ../../mod/directory.php:188 ../../mod/profiles.php:728 +msgid "Age: " +msgstr "Leeftijd:" + #: ../../mod/directory.php:201 msgid "Gender: " msgstr "Geslacht:" @@ -7989,75 +7875,286 @@ msgstr "Openbaar forum:" msgid "Keywords: " msgstr "Trefwoorden: " -#: ../../mod/directory.php:318 +#: ../../mod/directory.php:322 msgid "Finding:" msgstr "Gezocht naar:" -#: ../../mod/directory.php:323 +#: ../../mod/directory.php:327 msgid "next page" msgstr "volgende pagina" -#: ../../mod/directory.php:323 +#: ../../mod/directory.php:327 msgid "previous page" msgstr "vorige pagina" -#: ../../mod/directory.php:340 +#: ../../mod/directory.php:344 msgid "No entries (some entries may be hidden)." msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen." +#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 +#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 +msgid "Profile not found." +msgstr "Profiel niet gevonden." -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App geïnstalleerd" +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profiel verwijderd." -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Misvormde app." +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profiel-" -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Insluitcode" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "App bewerken" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen" -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "App maken" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "Geen profiel beschikbaar om te exporteren" -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Naam van app" +#: ../../mod/profiles.php:241 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist" -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Locatie (URL) van app" +#: ../../mod/profiles.php:404 +msgid "Marital Status" +msgstr "Huwelijke status" -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL van pictogram" +#: ../../mod/profiles.php:408 +msgid "Romantic Partner" +msgstr "Romantische partner" -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels (optioneel)" +#: ../../mod/profiles.php:412 +msgid "Likes" +msgstr "Houdt van" -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versie-ID" +#: ../../mod/profiles.php:416 +msgid "Dislikes" +msgstr "Houdt niet van" -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Prijs van de app" +#: ../../mod/profiles.php:420 +msgid "Work/Employment" +msgstr "Werk/arbeid" -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Locatie (URL) om de app aan te schaffen" +#: ../../mod/profiles.php:423 +msgid "Religion" +msgstr "Religie" + +#: ../../mod/profiles.php:427 +msgid "Political Views" +msgstr "Politieke overtuigingen" + +#: ../../mod/profiles.php:431 +msgid "Gender" +msgstr "Geslacht" + +#: ../../mod/profiles.php:435 +msgid "Sexual Preference" +msgstr "Seksuele voorkeur" + +#: ../../mod/profiles.php:439 +msgid "Homepage" +msgstr "Homepage" + +#: ../../mod/profiles.php:443 +msgid "Interests" +msgstr "Interesses" + +#: ../../mod/profiles.php:537 +msgid "Profile updated." +msgstr "Profiel bijgewerkt" + +#: ../../mod/profiles.php:626 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." + +#: ../../mod/profiles.php:666 +msgid "Edit Profile Details" +msgstr "Profiel bewerken" + +#: ../../mod/profiles.php:668 +msgid "View this profile" +msgstr "Profiel weergeven" + +#: ../../mod/profiles.php:670 +msgid "Change Profile Photo" +msgstr "Profielfoto wijzigen" + +#: ../../mod/profiles.php:671 +msgid "Create a new profile using these settings" +msgstr "Een nieuw profiel aanmaken met dit profiel als basis" + +#: ../../mod/profiles.php:672 +msgid "Clone this profile" +msgstr "Dit profiel klonen" + +#: ../../mod/profiles.php:673 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" + +#: ../../mod/profiles.php:675 +msgid "Import profile from file" +msgstr "Profiel vanuit bestand importeren" + +#: ../../mod/profiles.php:676 +msgid "Export profile to file" +msgstr "Profiel naar bestand exporteren" + +#: ../../mod/profiles.php:677 +msgid "Profile Name:" +msgstr "Profielnaam:" + +#: ../../mod/profiles.php:678 +msgid "Your Full Name:" +msgstr "Jouw volledige naam:" + +#: ../../mod/profiles.php:679 +msgid "Title/Description:" +msgstr "Titel/omschrijving:" + +#: ../../mod/profiles.php:680 +msgid "Your Gender:" +msgstr "Jouw geslacht" + +#: ../../mod/profiles.php:681 +msgid "Birthday :" +msgstr "Verjaardag: " + +#: ../../mod/profiles.php:682 +msgid "Street Address:" +msgstr "Straat en huisnummer:" + +#: ../../mod/profiles.php:683 +msgid "Locality/City:" +msgstr "Woonplaats:" + +#: ../../mod/profiles.php:684 +msgid "Postal/Zip Code:" +msgstr "Postcode:" + +#: ../../mod/profiles.php:685 +msgid "Country:" +msgstr "Land:" + +#: ../../mod/profiles.php:686 +msgid "Region/State:" +msgstr "Provincie/gewest/deelstaat:" + +#: ../../mod/profiles.php:687 +msgid " Marital Status:" +msgstr " Huwelijkse staat:" + +#: ../../mod/profiles.php:688 +msgid "Who: (if applicable)" +msgstr "Wie (wanneer toepasselijk):" + +#: ../../mod/profiles.php:689 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl" + +#: ../../mod/profiles.php:690 +msgid "Since [date]:" +msgstr "Sinds [datum]:" + +#: ../../mod/profiles.php:692 +msgid "Homepage URL:" +msgstr "Adres homepage:" + +#: ../../mod/profiles.php:695 +msgid "Religious Views:" +msgstr "Religieuze overtuigingen" + +#: ../../mod/profiles.php:696 +msgid "Keywords:" +msgstr "Trefwoorden" + +#: ../../mod/profiles.php:699 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: muziek, fotografie, software" + +#: ../../mod/profiles.php:700 +msgid "Used in directory listings" +msgstr "Wordt in de kanalengids gebruikt" + +#: ../../mod/profiles.php:701 +msgid "Tell us about yourself..." +msgstr "Vertel ons iets over jezelf..." + +#: ../../mod/profiles.php:702 +msgid "Hobbies/Interests" +msgstr "Hobby's/interesses" + +#: ../../mod/profiles.php:703 +msgid "Contact information and Social Networks" +msgstr "Contactinformatie en sociale netwerken" + +#: ../../mod/profiles.php:704 +msgid "My other channels" +msgstr "Mijn andere kanalen" + +#: ../../mod/profiles.php:705 +msgid "Musical interests" +msgstr "Muzikale interesses" + +#: ../../mod/profiles.php:706 +msgid "Books, literature" +msgstr "Boeken/literatuur" + +#: ../../mod/profiles.php:707 +msgid "Television" +msgstr "Televisie" + +#: ../../mod/profiles.php:708 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultuur/entertainment" + +#: ../../mod/profiles.php:709 +msgid "Love/romance" +msgstr "Liefde/romantiek" + +#: ../../mod/profiles.php:710 +msgid "Work/employment" +msgstr "Werk/arbeid" + +#: ../../mod/profiles.php:711 +msgid "School/education" +msgstr "School/onderwijs" + +#: ../../mod/profiles.php:717 +msgid "This is your default profile." +msgstr "Dit is jouw standaardprofiel" + +#: ../../mod/profiles.php:771 +msgid "Edit/Manage Profiles" +msgstr "Profielen bewerken/beheren" + +#: ../../mod/profiles.php:772 +msgid "Add profile things" +msgstr "Dingen aan je profiel toevoegen" + +#: ../../mod/profiles.php:773 +msgid "Include desirable objects in your profile" +msgstr "Voeg door jou gewenste dingen aan jouw profiel toe" + +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificator" + +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Zichtbaarheid profiel " + +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" + +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Zichtbaar voor" #: ../../mod/poll.php:64 msgid "Poll" @@ -8099,6 +8196,18 @@ msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het msgid "No service class restrictions found." msgstr "Geen abonnementsbeperkingen gevonden." +#: ../../mod/sharedwithme.php:99 +msgid "Files: shared with me" +msgstr "Bestanden: met mij gedeeld" + +#: ../../mod/sharedwithme.php:103 +msgid "Remove all files" +msgstr "Verwijder alle bestanden" + +#: ../../mod/sharedwithme.php:104 +msgid "Remove this file" +msgstr "Verwijder dit bestand" + #: ../../view/theme/apw/php/config.php:202 #: ../../view/theme/apw/php/config.php:236 msgid "Schema Default" @@ -8367,41 +8476,41 @@ msgstr "Rommelig vormgegeven fotoalbums" msgid "Are you a clean desk or a messy desk person?" msgstr "Ben je iemand die van een opgeruimd bureau houdt of van een rommelig bureau?" -#: ../../boot.php:1347 +#: ../../boot.php:1355 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s mislukt. Zie foutenlogboek." -#: ../../boot.php:1350 +#: ../../boot.php:1358 #, php-format msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1517 +#: ../../boot.php:1525 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van de RedMatrix" -#: ../../boot.php:1545 +#: ../../boot.php:1553 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1546 +#: ../../boot.php:1554 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1549 +#: ../../boot.php:1557 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:1630 +#: ../../boot.php:1650 msgid "permission denied" msgstr "toegang geweigerd" -#: ../../boot.php:1631 +#: ../../boot.php:1651 msgid "Got Zot?" msgstr "Heb je Zot?" -#: ../../boot.php:2114 +#: ../../boot.php:2134 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" diff --git a/view/nl/register_open_eml.tpl b/view/nl/register_open_eml.tpl index 07e7beb76..e634664a6 100644 --- a/view/nl/register_open_eml.tpl +++ b/view/nl/register_open_eml.tpl @@ -11,9 +11,9 @@ bezoeken en een nieuwe wachtwoord aanvragen. Je kan daarna inloggen, een kanaal meteen via 'instellingen > account' (linksboven) het account verwijderen (onderaan). Excuses voor het eventuele ongemak. -Wanneer dit account wel door jou is aangemaakt: Dank je en welkom op de {{sitename}}. +Wanneer dit account wel door jou is aangemaakt: Dank je en welkom op de {{$sitename}}. Vriendelijke groet, - Beheerder {{sitename}} ({{$siteurl}}) + Beheerder {{$sitename}} ({{$siteurl}}) - \ No newline at end of file + diff --git a/view/nl/strings.php b/view/nl/strings.php index 8632c2e2b..0cc495be1 100644 --- a/view/nl/strings.php +++ b/view/nl/strings.php @@ -7,29 +7,54 @@ function string_plural_select_nl($n){ ; $a->strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; $a->strings["Profile Photos"] = "Profielfoto's"; -$a->strings["Permission denied"] = "Toegang geweigerd"; -$a->strings["(Unknown)"] = "(Onbekend)"; -$a->strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; -$a->strings["Visible to you only."] = "Alleen voor jou zichtbaar."; -$a->strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; -$a->strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; -$a->strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; -$a->strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; -$a->strings["Visible to approved connections."] = "Voor alle goedgekeurde connecties zichtbaar."; -$a->strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; -$a->strings["Item not found."] = "Item niet gevonden."; -$a->strings["Permission denied."] = "Toegang geweigerd"; -$a->strings["Collection not found."] = "Collectie niet gevonden."; -$a->strings["Collection is empty."] = "Collectie is leeg"; -$a->strings["Collection: %s"] = "Collectie: %s"; -$a->strings["Connection: %s"] = "Connectie: %s"; -$a->strings["Connection not found."] = "Connectie niet gevonden."; -$a->strings["Edit"] = "Bewerken"; -$a->strings["No recipient provided."] = "Geen ontvanger opgegeven."; -$a->strings["[no subject]"] = "[geen onderwerp]"; -$a->strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; -$a->strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; -$a->strings["view full size"] = "volledige grootte tonen"; +$a->strings["Categories"] = "Categorieën"; +$a->strings["Apps"] = "Apps"; +$a->strings["System"] = "Systeem"; +$a->strings["Personal"] = "Persoonlijk"; +$a->strings["Create Personal App"] = "Persoonlijke app maken"; +$a->strings["Edit Personal App"] = "Persoonlijke app bewerken"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; +$a->strings["Suggestions"] = "Voorgestelde kanalen"; +$a->strings["See more..."] = "Meer..."; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; +$a->strings["Add New Connection"] = "Nieuwe connectie toevoegen"; +$a->strings["Enter the channel address"] = "Vul het adres van het nieuwe kanaal in"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: bob@example.com, http://example.com/barbara"; +$a->strings["Notes"] = "Aantekeningen"; +$a->strings["Save"] = "Opslaan"; +$a->strings["Remove term"] = "Verwijder zoekterm"; +$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +$a->strings["add"] = "toevoegen"; +$a->strings["Saved Folders"] = "Bewaarde mappen"; +$a->strings["Everything"] = "Alles"; +$a->strings["Archives"] = "Archieven"; +$a->strings["Refresh"] = "Vernieuwen"; +$a->strings["Me"] = "Ik"; +$a->strings["Best Friends"] = "Goede vrienden"; +$a->strings["Friends"] = "Vrienden"; +$a->strings["Co-workers"] = "Collega's"; +$a->strings["Former Friends"] = "Oude vrienden"; +$a->strings["Acquaintances"] = "Kennissen"; +$a->strings["Everybody"] = "Iedereen"; +$a->strings["Account settings"] = "Account"; +$a->strings["Channel settings"] = "Kanaal"; +$a->strings["Additional features"] = "Extra functies"; +$a->strings["Feature/Addon settings"] = "Plugin-instellingen"; +$a->strings["Display settings"] = "Weergave"; +$a->strings["Connected apps"] = "Verbonden applicaties"; +$a->strings["Export channel"] = "Kanaal exporteren"; +$a->strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; +$a->strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; +$a->strings["Channel Sources"] = "Kanaalbronnen"; +$a->strings["Settings"] = "Instellingen"; +$a->strings["Messages"] = "Berichten"; +$a->strings["Check Mail"] = "Controleer op nieuwe berichten"; +$a->strings["New Message"] = "Nieuw bericht"; +$a->strings["Chat Rooms"] = "Chatkanalen"; +$a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; +$a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; +$a->strings["photo/image"] = "foto/afbeelding"; $a->strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; $a->strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; $a->strings["Can view my photo albums"] = "Kan mijn fotoalbums bekijken"; @@ -66,7 +91,6 @@ $a->strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; $a->strings["created a new post"] = "maakte een nieuw bericht aan"; $a->strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; $a->strings["Tags"] = "Tags"; -$a->strings["Categories"] = "Categorieën"; $a->strings["Keywords"] = "Trefwoorden"; $a->strings["have"] = "heb"; $a->strings["has"] = "heeft"; @@ -80,7 +104,17 @@ $a->strings["__ctx:noun__ Like"] = array( 0 => "vindt dit leuk", 1 => "vinden dit leuk", ); +$a->strings["Image/photo"] = "Afbeelding/foto"; +$a->strings["Encrypted content"] = "Versleutelde inhoud"; +$a->strings["Install design element: "] = "Installeer ontwerp-onderdeel"; +$a->strings["QR code"] = "QR-code"; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; +$a->strings["post"] = "bericht"; +$a->strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; +$a->strings["$1 spoiler"] = "$1 spoiler"; +$a->strings["$1 wrote:"] = "$1 schreef:"; $a->strings["New Page"] = "Nieuwe pagina"; +$a->strings["Edit"] = "Bewerken"; $a->strings["View"] = "Weergeven"; $a->strings["Preview"] = "Voorvertoning"; $a->strings["Actions"] = "Acties"; @@ -90,260 +124,21 @@ $a->strings["Created"] = "Aangemaakt"; $a->strings["Edited"] = "Bewerkt"; $a->strings["Embedded content"] = "Ingesloten inhoud"; $a->strings["Embedding disabled"] = "Insluiten uitgeschakeld"; +$a->strings["Permission denied."] = "Toegang geweigerd"; $a->strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; $a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; $a->strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; $a->strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; $a->strings["Photo Albums"] = "Fotoalbums"; $a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -$a->strings[" and "] = " en "; -$a->strings["public profile"] = "openbaar profiel"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; -$a->strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; +$a->strings["Public Timeline"] = "Openbare tijdlijn"; $a->strings["Attachments:"] = "Bijlagen:"; $a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; $a->strings["Redmatrix event notification:"] = "Notificatie RedMatrix-gebeurtenis:"; $a->strings["Starts:"] = "Start:"; $a->strings["Finishes:"] = "Einde:"; $a->strings["Location:"] = "Plaats:"; -$a->strings["Item was not found."] = "Item niet gevonden"; -$a->strings["No source file."] = "Geen bronbestand."; -$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; -$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; -$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; -$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; -$a->strings["Path not available."] = "Pad niet beschikbaar."; -$a->strings["Empty pathname"] = "Padnaam leeg"; -$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; -$a->strings["Path not found."] = "Pad niet gevonden"; -$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; -$a->strings["database storage failed."] = "opslag in database mislukt."; -$a->strings["General Features"] = "Algemene functies"; -$a->strings["Content Expiration"] = "Inhoud laten verlopen"; -$a->strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; -$a->strings["Multiple Profiles"] = "Meerdere profielen"; -$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; -$a->strings["Advanced Profiles"] = "Geavanceerde profielen"; -$a->strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; -$a->strings["Profile Import/Export"] = "Profiel importen/exporteren"; -$a->strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; -$a->strings["Web Pages"] = "Webpagina's"; -$a->strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; -$a->strings["Private Notes"] = "Privé-aantekeningen"; -$a->strings["Enables a tool to store notes and reminders"] = "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan"; -$a->strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; -$a->strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; -$a->strings["Extended Identity Sharing"] = "Uitgebreid identiteit delen"; -$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Deel jouw RedMatrix-identiteit met alle websites op het internet. Wanneer dit is uitgeschakeld wordt je identiteit alleen binnen het RedMatrix-netwerk gedeeld. Schakel dit alleen als je weet wat je doet."; -$a->strings["Expert Mode"] = "Expertmodus"; -$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen"; -$a->strings["Premium Channel"] = "Premiumkanaal"; -$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; -$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; -$a->strings["Use Markdown"] = "Markdown gebruiken"; -$a->strings["Allow use of \"Markdown\" to format posts"] = "Sta het gebruik van \"markdown\" toe om berichten mee op te maken."; -$a->strings["Channel Sources"] = "Kanaalbronnen"; -$a->strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; -$a->strings["Even More Encryption"] = "Extra encryptie"; -$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; -$a->strings["Flag Adult Photos"] = "Markeer foto's als voor volwassenen"; -$a->strings["Provide photo edit option to hide adult photos from default album view"] = "Zorgt voor een optie om foto's met inhoud voor volwassenen in de standaard albumweergave te verbergen"; -$a->strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; -$a->strings["Search by Date"] = "Zoek op datum"; -$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; -$a->strings["Collections Filter"] = "Filter op collecties"; -$a->strings["Enable widget to display Network posts only from selected collections"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties"; -$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; -$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; -$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; -$a->strings["Network New Tab"] = "Nieuwe netwerktab"; -$a->strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; -$a->strings["Affinity Tool"] = "Verwantschapsfilter"; -$a->strings["Filter stream activity by depth of relationships"] = "Filter wat je in de Matrix ziet op hoe goed je iemand kent of mag"; -$a->strings["Suggest Channels"] = "Kanalen voorstellen"; -$a->strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; -$a->strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; -$a->strings["Tagging"] = "Taggen"; -$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te taggen"; -$a->strings["Post Categories"] = "Categorieën berichten"; -$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; -$a->strings["Saved Folders"] = "Bewaarde mappen"; -$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; -$a->strings["Dislike Posts"] = "Vind berichten niet leuk"; -$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; -$a->strings["Star Posts"] = "Geef berichten een ster"; -$a->strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; -$a->strings["Tag Cloud"] = "Tagwolk"; -$a->strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; -$a->strings["parent"] = "omhoog"; -$a->strings["Collection"] = "map"; -$a->strings["Principal"] = "principal"; -$a->strings["Addressbook"] = "Adresboek"; -$a->strings["Calendar"] = "Agenda"; -$a->strings["Schedule Inbox"] = "Planning-postvak IN"; -$a->strings["Schedule Outbox"] = "Planning-postvak UIT"; -$a->strings["Unknown"] = "Onbekend"; -$a->strings["%1\$s used"] = "%1\$s gebruikt"; -$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s van %2\$s gebruikt (%3\$s%)"; -$a->strings["Files"] = "Bestanden"; -$a->strings["Total"] = "Totaal"; -$a->strings["Name"] = "Naam"; -$a->strings["Type"] = "Type"; -$a->strings["Size"] = "Grootte"; -$a->strings["Last Modified"] = "Laatst gewijzigd"; -$a->strings["Delete"] = "Verwijderen"; -$a->strings["Create new folder"] = "Nieuwe map aanmaken"; -$a->strings["Create"] = "Aanmaken"; -$a->strings["Upload file"] = "Bestand uploaden"; -$a->strings["Upload"] = "Uploaden"; -$a->strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -$a->strings["Directory Options"] = "Opties kanalengids"; -$a->strings["Alphabetic"] = "Alfabetisch"; -$a->strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; -$a->strings["Newest to Oldest"] = "Nieuw naar oud"; -$a->strings["Oldest to Newest"] = "Oud naar nieuw"; -$a->strings["Public Forums Only"] = "Alleen openbare forums"; -$a->strings["Sort"] = "Sorteren"; -$a->strings["Enable Safe Search"] = "Veilig zoeken inschakelen"; -$a->strings["Disable Safe Search"] = "Veilig zoeken uitschakelen"; -$a->strings["Safe Mode"] = "Veilig zoeken"; -$a->strings["Default"] = "Standaard"; -$a->strings["Frequently"] = "Regelmatig"; -$a->strings["Hourly"] = "Elk uur"; -$a->strings["Twice daily"] = "Twee keer per dag"; -$a->strings["Daily"] = "Dagelijks"; -$a->strings["Weekly"] = "Wekelijks"; -$a->strings["Monthly"] = "Maandelijks"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-mail"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Logged out."] = "Uitgelogd."; -$a->strings["Failed authentication"] = "Mislukte authenticatie"; -$a->strings["Login failed."] = "Inloggen mislukt."; -$a->strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; -$a->strings["Show"] = "Tonen"; -$a->strings["Don't show"] = "Niet tonen"; -$a->strings["Permissions"] = "Permissies"; -$a->strings["Close"] = "Sluiten"; -$a->strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; -$a->strings["Empty name"] = "Ontbrekende naam"; -$a->strings["Name too long"] = "Naam te lang"; -$a->strings["No account identifier"] = "Geen account-identificator"; -$a->strings["Nickname is required."] = "Bijnaam is verplicht"; -$a->strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; -$a->strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; -$a->strings["Default Profile"] = "Standaardprofiel"; -$a->strings["Friends"] = "Vrienden"; -$a->strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; -$a->strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["Change profile photo"] = "Profielfoto veranderen"; -$a->strings["Profiles"] = "Profielen"; -$a->strings["Manage/edit profiles"] = "Profielen beheren/bewerken"; -$a->strings["Create New Profile"] = "Nieuw profiel aanmaken"; -$a->strings["Edit Profile"] = "Profiel bewerken"; -$a->strings["Profile Image"] = "Profielfoto"; -$a->strings["visible to everybody"] = "Voor iedereen zichtbaar"; -$a->strings["Edit visibility"] = "Zichtbaarheid bewerken"; -$a->strings["Gender:"] = "Geslacht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepagina:"; -$a->strings["Online Now"] = "Nu online"; -$a->strings["g A l F d"] = "G:i, l d 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"] = "Herinneringen"; -$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; -$a->strings["Profile"] = "Profiel"; -$a->strings["Full Name:"] = "Volledige naam:"; -$a->strings["Like this channel"] = "Vind dit kanaal leuk"; -$a->strings["j F, Y"] = "F j Y"; -$a->strings["j F"] = "F j"; -$a->strings["Birthday:"] = "Geboortedatum:"; -$a->strings["Age:"] = "Leeftijd:"; -$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Seksuele voorkeur:"; -$a->strings["Hometown:"] = "Oorspronkelijk uit:"; -$a->strings["Tags:"] = "Tags:"; -$a->strings["Political Views:"] = "Politieke overtuigingen:"; -$a->strings["Religion:"] = "Religie:"; -$a->strings["About:"] = "Over:"; -$a->strings["Hobbies/Interests:"] = "Hobby's/interesses:"; -$a->strings["Likes:"] = "Houdt van:"; -$a->strings["Dislikes:"] = "Houdt niet van:"; -$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -$a->strings["My other channels:"] = "Mijn andere kanalen"; -$a->strings["Musical interests:"] = "Muzikale interesses:"; -$a->strings["Books, literature:"] = "Boeken, literatuur:"; -$a->strings["Television:"] = "Televisie:"; -$a->strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; -$a->strings["Love/Romance:"] = "Liefde/romantiek:"; -$a->strings["Work/employment:"] = "Werk/beroep:"; -$a->strings["School/education:"] = "School/opleiding:"; -$a->strings["Like this thing"] = "Vind dit ding leuk"; -$a->strings["%d invitation available"] = array( - 0 => "%d uitnodiging beschikbaar", - 1 => "%d uitnodigingen beschikbaar", -); -$a->strings["Advanced"] = "Geavanceerd"; -$a->strings["Find Channels"] = "Kanalen vinden"; -$a->strings["Enter name or interest"] = "Vul naam of interesse in"; -$a->strings["Connect/Follow"] = "Verbinden/volgen"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; -$a->strings["Find"] = "Vinden"; -$a->strings["Channel Suggestions"] = "Voorgestelde kanalen"; -$a->strings["Random Profile"] = "Willekeurig profiel"; -$a->strings["Invite Friends"] = "Vrienden uitnodigen"; -$a->strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; -$a->strings["Everything"] = "Alles"; -$a->strings["%d connection in common"] = array( - 0 => "%d gemeenschappelijke connectie", - 1 => "%d gemeenschappelijke connecties", -); -$a->strings["show more"] = "meer connecties weergeven"; -$a->strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; -$a->strings["A deleted group with this name was revived. Existing item permissions may 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 collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; -$a->strings["Default privacy group for new contacts"] = "Standaard privacy-collectie voor nieuwe kanalen"; -$a->strings["All Channels"] = "Alle kanalen"; -$a->strings["edit"] = "bewerken"; -$a->strings["Collections"] = "Collecties"; -$a->strings["Edit collection"] = "Collectie bewerken"; -$a->strings["Create a new collection"] = "Nieuwe collectie aanmaken"; -$a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; -$a->strings["add"] = "toevoegen"; -$a->strings["Not a valid email address"] = "Geen geldig e-mailadres"; -$a->strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan"; -$a->strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd."; -$a->strings["An invitation is required."] = "Een uitnodiging is vereist"; -$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; -$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; -$a->strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; -$a->strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; -$a->strings["Registration request at %s"] = "Registratiebevestiging voor %s"; -$a->strings["Administrator"] = "Beheerder"; -$a->strings["your registration password"] = "jouw registratiewachtwoord"; -$a->strings["Registration details for %s"] = "Registratiegegevens voor %s"; -$a->strings["Account approved."] = "Account goedgekeurd"; -$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -$a->strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; -$a->strings["Click here to upgrade."] = "Klik hier om te upgraden."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; -$a->strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; +$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."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; $a->strings["prev"] = "vorige"; $a->strings["first"] = "eerste"; $a->strings["last"] = "laatste"; @@ -357,7 +152,6 @@ $a->strings["%d Connection"] = array( ); $a->strings["View Connections"] = "Connecties weergeven"; $a->strings["Search"] = "Zoeken"; -$a->strings["Save"] = "Opslaan"; $a->strings["poke"] = "aanstoten"; $a->strings["poked"] = "aangestoten"; $a->strings["ping"] = "ping"; @@ -430,38 +224,299 @@ $a->strings["Blocks"] = "Blokken"; $a->strings["Menus"] = "Menu's"; $a->strings["Layouts"] = "Lay-outs"; $a->strings["Pages"] = "Pagina's"; -$a->strings["Public Timeline"] = "Openbare tijdlijn"; -$a->strings["Missing room name"] = "Naam chatkanaal ontbreekt"; -$a->strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; -$a->strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; -$a->strings["Room not found."] = "Chatkanaal niet gevonden"; -$a->strings["Room is full"] = "Chatkanaal is vol"; -$a->strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; -$a->strings["Channel location missing."] = "Ontbrekende kanaallocatie."; -$a->strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; -$a->strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; -$a->strings["Protocol disabled."] = "Protocol uitgeschakeld."; -$a->strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; -$a->strings["local account not found."] = "lokale account niet gevonden."; -$a->strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; +$a->strings["Collection"] = "map"; +$a->strings["General Features"] = "Algemene functies"; +$a->strings["Content Expiration"] = "Inhoud laten verlopen"; +$a->strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; +$a->strings["Multiple Profiles"] = "Meerdere profielen"; +$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; +$a->strings["Advanced Profiles"] = "Geavanceerde profielen"; +$a->strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; +$a->strings["Profile Import/Export"] = "Profiel importen/exporteren"; +$a->strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; +$a->strings["Web Pages"] = "Webpagina's"; +$a->strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; +$a->strings["Private Notes"] = "Privé-aantekeningen"; +$a->strings["Enables a tool to store notes and reminders"] = "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan"; +$a->strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; +$a->strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; +$a->strings["Extended Identity Sharing"] = "Uitgebreid identiteit delen"; +$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Deel jouw RedMatrix-identiteit met alle websites op het internet. Wanneer dit is uitgeschakeld wordt je identiteit alleen binnen het RedMatrix-netwerk gedeeld. Schakel dit alleen als je weet wat je doet."; +$a->strings["Expert Mode"] = "Expertmodus"; +$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen"; +$a->strings["Premium Channel"] = "Premiumkanaal"; +$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; +$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; +$a->strings["Use Markdown"] = "Markdown gebruiken"; +$a->strings["Allow use of \"Markdown\" to format posts"] = "Sta het gebruik van \"markdown\" toe om berichten mee op te maken."; +$a->strings["Large Photos"] = "Grote foto's"; +$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Toon grote (640px) voorbeeldfoto's in berichten. Standaard worden kleine voorbeeldfoto's (320px) getoond. "; +$a->strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; +$a->strings["Even More Encryption"] = "Extra encryptie"; +$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; +$a->strings["Flag Adult Photos"] = "Markeer foto's als voor volwassenen"; +$a->strings["Provide photo edit option to hide adult photos from default album view"] = "Zorgt voor een optie om foto's met inhoud voor volwassenen in de standaard albumweergave te verbergen"; +$a->strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; +$a->strings["Search by Date"] = "Zoek op datum"; +$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; +$a->strings["Collections Filter"] = "Filter op collecties"; +$a->strings["Enable widget to display Network posts only from selected collections"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties"; +$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; +$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; +$a->strings["Network New Tab"] = "Nieuwe netwerktab"; +$a->strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; +$a->strings["Affinity Tool"] = "Verwantschapsfilter"; +$a->strings["Filter stream activity by depth of relationships"] = "Filter wat je in de Matrix ziet op hoe goed je iemand kent of mag"; +$a->strings["Suggest Channels"] = "Kanalen voorstellen"; +$a->strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; +$a->strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; +$a->strings["Tagging"] = "Taggen"; +$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te taggen"; +$a->strings["Post Categories"] = "Categorieën berichten"; +$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; +$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; +$a->strings["Dislike Posts"] = "Vind berichten niet leuk"; +$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; +$a->strings["Star Posts"] = "Geef berichten een ster"; +$a->strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; +$a->strings["Tag Cloud"] = "Tagwolk"; +$a->strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; +$a->strings["parent"] = "omhoog"; +$a->strings["Principal"] = "principal"; +$a->strings["Addressbook"] = "Adresboek"; +$a->strings["Calendar"] = "Agenda"; +$a->strings["Schedule Inbox"] = "Planning-postvak IN"; +$a->strings["Schedule Outbox"] = "Planning-postvak UIT"; +$a->strings["Unknown"] = "Onbekend"; +$a->strings["%1\$s used"] = "%1\$s gebruikt"; +$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s van %2\$s gebruikt (%3\$s%)"; +$a->strings["Files"] = "Bestanden"; +$a->strings["Total"] = "Totaal"; +$a->strings["Shared"] = "Gedeeld"; +$a->strings["Create"] = "Aanmaken"; +$a->strings["Upload"] = "Uploaden"; +$a->strings["Name"] = "Naam"; +$a->strings["Type"] = "Type"; +$a->strings["Size"] = "Grootte"; +$a->strings["Last Modified"] = "Laatst gewijzigd"; +$a->strings["Delete"] = "Verwijderen"; +$a->strings["Create new folder"] = "Nieuwe map aanmaken"; +$a->strings["Upload file"] = "Bestand uploaden"; +$a->strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; +$a->strings["Directory Options"] = "Opties kanalengids"; +$a->strings["Alphabetic"] = "Alfabetisch"; +$a->strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; +$a->strings["Newest to Oldest"] = "Nieuw naar oud"; +$a->strings["Oldest to Newest"] = "Oud naar nieuw"; +$a->strings["Public Forums Only"] = "Alleen openbare forums"; +$a->strings["Sort"] = "Sorteren"; +$a->strings["Enable Safe Search"] = "Veilig zoeken inschakelen"; +$a->strings["Disable Safe Search"] = "Veilig zoeken uitschakelen"; +$a->strings["Safe Mode"] = "Veilig zoeken"; +$a->strings["New window"] = "Nieuw venster"; +$a->strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; +$a->strings["User '%s' deleted"] = "Account '%s' verwijderd"; +$a->strings["Frequently"] = "Regelmatig"; +$a->strings["Hourly"] = "Elk uur"; +$a->strings["Twice daily"] = "Twee keer per dag"; +$a->strings["Daily"] = "Dagelijks"; +$a->strings["Weekly"] = "Wekelijks"; +$a->strings["Monthly"] = "Maandelijks"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "E-mail"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Site Admin"] = "Hubbeheerder"; +$a->strings["Bookmarks"] = "Bladwijzers"; +$a->strings["Address Book"] = "Connecties"; +$a->strings["Login"] = "Inloggen"; +$a->strings["Channel Manager"] = "Kanaalbeheer"; +$a->strings["Matrix"] = "Matrix"; +$a->strings["Webpages"] = "Webpagina's"; +$a->strings["Channel Home"] = "Tijdlijn kanaal"; +$a->strings["Profile"] = "Profiel"; +$a->strings["Photos"] = "Foto's"; +$a->strings["Events"] = "Agenda"; +$a->strings["Directory"] = "Kanalengids"; +$a->strings["Help"] = "Hulp"; +$a->strings["Mail"] = "Privéberichten"; +$a->strings["Mood"] = "Stemming"; +$a->strings["Poke"] = "Aanstoten"; +$a->strings["Chat"] = "Chatten"; +$a->strings["Probe"] = "Onderzoeken"; +$a->strings["Suggest"] = "Voorstellen"; +$a->strings["Random Channel"] = "Willekeurig kanaal"; +$a->strings["Invite"] = "Uitnodigen "; +$a->strings["Features"] = "Extra functies"; +$a->strings["Language"] = "Taal"; +$a->strings["Post"] = "Bericht"; +$a->strings["Profile Photo"] = "Profielfoto"; +$a->strings["Update"] = "Bijwerken"; +$a->strings["Install"] = "Installeren"; +$a->strings["Purchase"] = "Aanschaffen"; +$a->strings["Item was not found."] = "Item niet gevonden"; +$a->strings["No source file."] = "Geen bronbestand."; +$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; +$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; +$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; +$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; +$a->strings["Path not available."] = "Pad niet beschikbaar."; +$a->strings["Empty pathname"] = "Padnaam leeg"; +$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; +$a->strings["Path not found."] = "Pad niet gevonden"; +$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; +$a->strings["database storage failed."] = "opslag in database mislukt."; +$a->strings["Default"] = "Standaard"; +$a->strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; +$a->strings["Show"] = "Tonen"; +$a->strings["Don't show"] = "Niet tonen"; +$a->strings["Permissions"] = "Permissies"; +$a->strings["Close"] = "Sluiten"; +$a->strings[" and "] = " en "; +$a->strings["public profile"] = "openbaar profiel"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; +$a->strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; +$a->strings["Private Message"] = "Privébericht"; +$a->strings["Select"] = "Kies"; +$a->strings["Save to Folder"] = "In map opslaan"; +$a->strings["View all"] = "Toon alles"; +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "vindt dit niet leuk", + 1 => "vinden dit niet leuk", +); +$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["Message signature validated"] = "Berichtkenmerk gevalideerd"; +$a->strings["Message signature incorrect"] = "Berichtkenmerk onjuist"; +$a->strings["Add Tag"] = "Tag toevoegen"; +$a->strings["I like this (toggle)"] = "Vind ik leuk"; +$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; +$a->strings["Share This"] = "Delen"; +$a->strings["share"] = "delen"; +$a->strings["%d comment"] = array( + 0 => "%d reactie", + 1 => "%d reacties weergeven", +); +$a->strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s"; +$a->strings["to"] = "aan"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Kanaal-naar-kanaal"; +$a->strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal"; +$a->strings[" from %s"] = " van %s"; +$a->strings["last edited: %s"] = "laatst bewerkt: %s"; +$a->strings["Expires: %s"] = "Verloopt: %s"; +$a->strings["Save Bookmarks"] = "Bladwijzers opslaan"; +$a->strings["Add to Calendar"] = "Aan agenda toevoegen"; +$a->strings["Mark all seen"] = "Markeer alles als bekeken"; +$a->strings["__ctx:noun__ Likes"] = "vinden dit leuk"; +$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; +$a->strings["Please wait"] = "Even wachten"; +$a->strings["[+] show all"] = "[+] alle"; +$a->strings["This is you"] = "Dit ben jij"; +$a->strings["Comment"] = "Reactie"; +$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["Encrypt text"] = "Tekst versleutelen"; +$a->strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; +$a->strings["No recipient provided."] = "Geen ontvanger opgegeven."; +$a->strings["[no subject]"] = "[geen onderwerp]"; +$a->strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; +$a->strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; +$a->strings["Invalid data packet"] = "Datapakket ongeldig"; +$a->strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; +$a->strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; +$a->strings["Red Matrix Notification"] = "RedMatrix-notificatie"; +$a->strings["redmatrix"] = "RedMatrix"; +$a->strings["Thank You,"] = "Bedankt,"; +$a->strings["%s Administrator"] = "Beheerder %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notificatie] Nieuw privébericht ontvangen op %s"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; +$a->strings["a private message"] = "een privébericht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; +$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; +$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notificatie] %s heeft je genoemd"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; +$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notificatie] %1\$s heeft je aangestoten"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; +$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notificatie] %s heeft jouw bericht getagd"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; +$a->strings["[Red:Notify] Introduction received"] = "[Red:Notificatie] Connectieverzoek ontvangen"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; +$a->strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; +$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notificatie] Kanaalvoorstel ontvangen"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; +$a->strings["Name:"] = "Naam:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; +$a->strings["[Red:Notify]"] = "[Red:Notificatie]"; +$a->strings["Logged out."] = "Uitgelogd."; +$a->strings["Failed authentication"] = "Mislukte authenticatie"; +$a->strings["Login failed."] = "Inloggen mislukt."; +$a->strings["view full size"] = "volledige grootte tonen"; +$a->strings["%d invitation available"] = array( + 0 => "%d uitnodiging beschikbaar", + 1 => "%d uitnodigingen beschikbaar", +); +$a->strings["Advanced"] = "Geavanceerd"; +$a->strings["Find Channels"] = "Kanalen vinden"; +$a->strings["Enter name or interest"] = "Vul naam of interesse in"; +$a->strings["Connect/Follow"] = "Verbinden/volgen"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; +$a->strings["Find"] = "Vinden"; +$a->strings["Channel Suggestions"] = "Voorgestelde kanalen"; +$a->strings["Random Profile"] = "Willekeurig profiel"; +$a->strings["Invite Friends"] = "Vrienden uitnodigen"; +$a->strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; +$a->strings["%d connection in common"] = array( + 0 => "%d gemeenschappelijke connectie", + 1 => "%d gemeenschappelijke connecties", +); +$a->strings["show more"] = "meer connecties weergeven"; $a->strings["channel"] = "kanaal"; $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; $a->strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; $a->strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; $a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; -$a->strings["Select"] = "Kies"; -$a->strings["Private Message"] = "Privébericht"; -$a->strings["Message signature validated"] = "Berichtkenmerk gevalideerd"; -$a->strings["Message signature incorrect"] = "Berichtkenmerk onjuist"; $a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; $a->strings["Categories:"] = "Categorieën:"; $a->strings["Filed under:"] = "Bewaard onder:"; -$a->strings[" from %s"] = " van %s"; -$a->strings["last edited: %s"] = "laatst bewerkt: %s"; -$a->strings["Expires: %s"] = "Verloopt: %s"; $a->strings["View in context"] = "In context bekijken"; -$a->strings["Please wait"] = "Even wachten"; $a->strings["remove"] = "verwijderen"; $a->strings["Loading..."] = "Aan het laden..."; $a->strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; @@ -473,7 +528,6 @@ $a->strings["View Photos"] = "Foto's weergeven"; $a->strings["Matrix Activity"] = "Activiteit in de RedMatrix"; $a->strings["Edit Contact"] = "Contact bewerken"; $a->strings["Send PM"] = "Privébericht verzenden"; -$a->strings["Poke"] = "Aanstoten"; $a->strings["%s likes this."] = "%s vindt dit leuk."; $a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; $a->strings["%2\$d people like this."] = array( @@ -523,7 +577,6 @@ $a->strings["permissions"] = "permissies"; $a->strings["Public post"] = "Openbaar bericht"; $a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be"; $a->strings["Set expiration date"] = "Verloopdatum instellen"; -$a->strings["Encrypt text"] = "Tekst versleutelen"; $a->strings["OK"] = "OK"; $a->strings["Cancel"] = "Annuleren"; $a->strings["Discover"] = "Ontdekken"; @@ -532,7 +585,6 @@ $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["Personal"] = "Persoonlijk"; $a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; $a->strings["New"] = "Nieuw"; $a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; @@ -544,95 +596,52 @@ $a->strings["Channel"] = "Kanaal"; $a->strings["Status Messages and Posts"] = "Berichten in dit kanaal"; $a->strings["About"] = "Over"; $a->strings["Profile Details"] = "Profiel"; -$a->strings["Photos"] = "Foto's"; $a->strings["Files and Storage"] = "Bestanden en opslagruimte"; $a->strings["Chatrooms"] = "Chatkanalen"; -$a->strings["Bookmarks"] = "Bladwijzers"; $a->strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; -$a->strings["Webpages"] = "Webpagina's"; $a->strings["Manage Webpages"] = "Webpagina's beheren"; -$a->strings["Apps"] = "Apps"; -$a->strings["System"] = "Systeem"; -$a->strings["Create Personal App"] = "Persoonlijke app maken"; -$a->strings["Edit Personal App"] = "Persoonlijke app bewerken"; -$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; -$a->strings["Suggestions"] = "Voorgestelde kanalen"; -$a->strings["See more..."] = "Meer..."; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; -$a->strings["Add New Connection"] = "Nieuwe connectie toevoegen"; -$a->strings["Enter the channel address"] = "Vul het adres van het nieuwe kanaal in"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: bob@example.com, http://example.com/barbara"; -$a->strings["Notes"] = "Aantekeningen"; -$a->strings["Remove term"] = "Verwijder zoekterm"; -$a->strings["Archives"] = "Archieven"; -$a->strings["Refresh"] = "Vernieuwen"; -$a->strings["Me"] = "Ik"; -$a->strings["Best Friends"] = "Goede vrienden"; -$a->strings["Co-workers"] = "Collega's"; -$a->strings["Former Friends"] = "Oude vrienden"; -$a->strings["Acquaintances"] = "Kennissen"; -$a->strings["Everybody"] = "Iedereen"; -$a->strings["Account settings"] = "Account"; -$a->strings["Channel settings"] = "Kanaal"; -$a->strings["Additional features"] = "Extra functies"; -$a->strings["Feature settings"] = "Plug-ins"; -$a->strings["Display settings"] = "Weergave"; -$a->strings["Connected apps"] = "Verbonden applicaties"; -$a->strings["Export channel"] = "Kanaal exporteren"; -$a->strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; -$a->strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; -$a->strings["Settings"] = "Instellingen"; -$a->strings["Messages"] = "Berichten"; -$a->strings["Check Mail"] = "Controleer op nieuwe berichten"; -$a->strings["New Message"] = "Nieuw bericht"; -$a->strings["Chat Rooms"] = "Chatkanalen"; -$a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; -$a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; -$a->strings["photo/image"] = "foto/afbeelding"; -$a->strings["Invalid data packet"] = "Datapakket ongeldig"; -$a->strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; -$a->strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; -$a->strings["Save to Folder"] = "In map opslaan"; -$a->strings["View all"] = "Toon alles"; -$a->strings["__ctx:noun__ Dislike"] = array( - 0 => "vindt dit niet leuk", - 1 => "vinden dit niet leuk", -); -$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"] = "Tag toevoegen"; -$a->strings["I like this (toggle)"] = "Vind ik leuk"; -$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; -$a->strings["Share This"] = "Delen"; -$a->strings["share"] = "delen"; -$a->strings["%d comment"] = array( - 0 => "%d reactie", - 1 => "%d reacties weergeven", -); -$a->strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s"; -$a->strings["to"] = "aan"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Kanaal-naar-kanaal"; -$a->strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal"; -$a->strings["Save Bookmarks"] = "Bladwijzers opslaan"; -$a->strings["Add to Calendar"] = "Aan agenda toevoegen"; -$a->strings["Mark all seen"] = "Markeer alles als bekeken"; -$a->strings["__ctx:noun__ Likes"] = "vinden dit leuk"; -$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; -$a->strings["[+] show all"] = "[+] alle"; -$a->strings["This is you"] = "Dit ben jij"; -$a->strings["Comment"] = "Reactie"; -$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["A deleted group with this name was revived. Existing item permissions may 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 collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; +$a->strings["Default privacy group for new contacts"] = "Standaard privacy-collectie voor nieuwe kanalen"; +$a->strings["All Channels"] = "Alle kanalen"; +$a->strings["edit"] = "bewerken"; +$a->strings["Collections"] = "Collecties"; +$a->strings["Edit collection"] = "Collectie bewerken"; +$a->strings["Create a new collection"] = "Nieuwe collectie aanmaken"; +$a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; +$a->strings["Permission denied"] = "Toegang geweigerd"; +$a->strings["(Unknown)"] = "(Onbekend)"; +$a->strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; +$a->strings["Visible to you only."] = "Alleen voor jou zichtbaar."; +$a->strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; +$a->strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; +$a->strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; +$a->strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; +$a->strings["Visible to approved connections."] = "Voor alle goedgekeurde connecties zichtbaar."; +$a->strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; +$a->strings["Item not found."] = "Item niet gevonden."; +$a->strings["Collection not found."] = "Collectie niet gevonden."; +$a->strings["Collection is empty."] = "Collectie is leeg"; +$a->strings["Collection: %s"] = "Collectie: %s"; +$a->strings["Connection: %s"] = "Connectie: %s"; +$a->strings["Connection not found."] = "Connectie niet gevonden."; +$a->strings["Not a valid email address"] = "Geen geldig e-mailadres"; +$a->strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan"; +$a->strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd."; +$a->strings["An invitation is required."] = "Een uitnodiging is vereist"; +$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; +$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; +$a->strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; +$a->strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; +$a->strings["Registration request at %s"] = "Registratiebevestiging voor %s"; +$a->strings["Administrator"] = "Beheerder"; +$a->strings["your registration password"] = "jouw registratiewachtwoord"; +$a->strings["Registration details for %s"] = "Registratiegegevens voor %s"; +$a->strings["Account approved."] = "Account goedgekeurd"; +$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +$a->strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; +$a->strings["Click here to upgrade."] = "Klik hier om te upgraden."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; +$a->strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; $a->strings["Miscellaneous"] = "Diversen"; $a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; $a->strings["never"] = "nooit"; @@ -654,80 +663,123 @@ $a->strings["seconds"] = "seconden"; $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; $a->strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; $a->strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; -$a->strings["Site Admin"] = "Hubbeheerder"; -$a->strings["Address Book"] = "Connecties"; -$a->strings["Login"] = "Inloggen"; -$a->strings["Channel Manager"] = "Kanaalbeheer"; -$a->strings["Matrix"] = "Matrix"; -$a->strings["Channel Home"] = "Tijdlijn kanaal"; -$a->strings["Events"] = "Agenda"; -$a->strings["Directory"] = "Kanalengids"; -$a->strings["Help"] = "Hulp"; -$a->strings["Mail"] = "Privéberichten"; -$a->strings["Mood"] = "Stemming"; -$a->strings["Chat"] = "Chatten"; -$a->strings["Probe"] = "Onderzoeken"; -$a->strings["Suggest"] = "Voorstellen"; -$a->strings["Random Channel"] = "Willekeurig kanaal"; -$a->strings["Invite"] = "Uitnodigen "; -$a->strings["Features"] = "Extra functies"; -$a->strings["Language"] = "Taal"; -$a->strings["Post"] = "Bericht"; -$a->strings["Profile Photo"] = "Profielfoto"; -$a->strings["Update"] = "Bijwerken"; -$a->strings["Install"] = "Installeren"; -$a->strings["Purchase"] = "Aanschaffen"; -$a->strings["New window"] = "Nieuw venster"; -$a->strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; -$a->strings["User '%s' deleted"] = "Account '%s' verwijderd"; -$a->strings["Image/photo"] = "Afbeelding/foto"; -$a->strings["Encrypted content"] = "Versleutelde inhoud"; -$a->strings["Install design element: "] = "Installeer ontwerp-onderdeel"; -$a->strings["QR code"] = "QR-code"; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; -$a->strings["post"] = "bericht"; -$a->strings["$1 spoiler"] = "$1 spoiler"; -$a->strings["$1 wrote:"] = "$1 schreef:"; -$a->strings["Red Matrix Notification"] = "RedMatrix-notificatie"; -$a->strings["redmatrix"] = "RedMatrix"; -$a->strings["Thank You,"] = "Bedankt,"; -$a->strings["%s Administrator"] = "Beheerder %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notificatie] Nieuw privébericht ontvangen op %s"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; -$a->strings["a private message"] = "een privébericht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; -$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notificatie] %s heeft je genoemd"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notificatie] %1\$s heeft je aangestoten"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notificatie] %s heeft jouw bericht getagd"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; -$a->strings["[Red:Notify] Introduction received"] = "[Red:Notificatie] Connectieverzoek ontvangen"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; -$a->strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notificatie] Kanaalvoorstel ontvangen"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; -$a->strings["Name:"] = "Naam:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; -$a->strings["[Red:Notify]"] = "[Red:Notificatie]"; +$a->strings["Missing room name"] = "Naam chatkanaal ontbreekt"; +$a->strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; +$a->strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; +$a->strings["Room not found."] = "Chatkanaal niet gevonden"; +$a->strings["Room is full"] = "Chatkanaal is vol"; +$a->strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; +$a->strings["Channel location missing."] = "Ontbrekende kanaallocatie."; +$a->strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; +$a->strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; +$a->strings["Protocol disabled."] = "Protocol uitgeschakeld."; +$a->strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; +$a->strings["local account not found."] = "lokale account niet gevonden."; +$a->strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; +$a->strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; +$a->strings["Empty name"] = "Ontbrekende naam"; +$a->strings["Name too long"] = "Naam te lang"; +$a->strings["No account identifier"] = "Geen account-identificator"; +$a->strings["Nickname is required."] = "Bijnaam is verplicht"; +$a->strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; +$a->strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; +$a->strings["Default Profile"] = "Standaardprofiel"; +$a->strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; +$a->strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; +$a->strings["Change profile photo"] = "Profielfoto veranderen"; +$a->strings["Profiles"] = "Profielen"; +$a->strings["Manage/edit profiles"] = "Profielen beheren/bewerken"; +$a->strings["Create New Profile"] = "Nieuw profiel aanmaken"; +$a->strings["Edit Profile"] = "Profiel bewerken"; +$a->strings["Profile Image"] = "Profielfoto"; +$a->strings["visible to everybody"] = "Voor iedereen zichtbaar"; +$a->strings["Edit visibility"] = "Zichtbaarheid bewerken"; +$a->strings["Gender:"] = "Geslacht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepagina:"; +$a->strings["Online Now"] = "Nu online"; +$a->strings["g A l F d"] = "G:i, l d 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"] = "Herinneringen"; +$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; +$a->strings["Full Name:"] = "Volledige naam:"; +$a->strings["Like this channel"] = "Vind dit kanaal leuk"; +$a->strings["j F, Y"] = "F j Y"; +$a->strings["j F"] = "F j"; +$a->strings["Birthday:"] = "Geboortedatum:"; +$a->strings["Age:"] = "Leeftijd:"; +$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Seksuele voorkeur:"; +$a->strings["Hometown:"] = "Oorspronkelijk uit:"; +$a->strings["Tags:"] = "Tags:"; +$a->strings["Political Views:"] = "Politieke overtuigingen:"; +$a->strings["Religion:"] = "Religie:"; +$a->strings["About:"] = "Over:"; +$a->strings["Hobbies/Interests:"] = "Hobby's/interesses:"; +$a->strings["Likes:"] = "Houdt van:"; +$a->strings["Dislikes:"] = "Houdt niet van:"; +$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; +$a->strings["My other channels:"] = "Mijn andere kanalen"; +$a->strings["Musical interests:"] = "Muzikale interesses:"; +$a->strings["Books, literature:"] = "Boeken, literatuur:"; +$a->strings["Television:"] = "Televisie:"; +$a->strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; +$a->strings["Love/Romance:"] = "Liefde/romantiek:"; +$a->strings["Work/employment:"] = "Werk/beroep:"; +$a->strings["School/education:"] = "School/opleiding:"; +$a->strings["Like this thing"] = "Vind dit ding leuk"; +$a->strings["Logout"] = "Uitloggen"; +$a->strings["End this session"] = "Beëindig deze sessie"; +$a->strings["Home"] = "Home"; +$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; +$a->strings["Your profile page"] = "Jouw profielpagina"; +$a->strings["Edit Profiles"] = "Bewerk profielen"; +$a->strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; +$a->strings["Edit your profile"] = "Jouw profiel bewerken"; +$a->strings["Your photos"] = "Jouw foto's"; +$a->strings["Your files"] = "Jouw bestanden"; +$a->strings["Your chatrooms"] = "Jouw chatkanalen"; +$a->strings["Your bookmarks"] = "Jouw bladwijzers"; +$a->strings["Your webpages"] = "Jouw webpagina's"; +$a->strings["Sign in"] = "Inloggen"; +$a->strings["%s - click to logout"] = "%s - klik om uit te loggen"; +$a->strings["Remote authentication"] = "Authenticatie op afstand"; +$a->strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Register"] = "Registreren"; +$a->strings["Create an account"] = "Maak een account aan"; +$a->strings["Help and documentation"] = "Hulp en documentatie"; +$a->strings["Applications, utilities, links, games"] = "Apps"; +$a->strings["Search site content"] = "Inhoud van deze RedMatrix-hub doorzoeken"; +$a->strings["Channel Directory"] = "Kanalengids"; +$a->strings["Your matrix"] = "Jouw matrix"; +$a->strings["Mark all matrix notifications seen"] = "Markeer alle matrixnotificaties als bekeken"; +$a->strings["Channel home"] = "Tijdlijn kanaal"; +$a->strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; +$a->strings["Connections"] = "Connecties"; +$a->strings["Notices"] = "Notificaties"; +$a->strings["Notifications"] = "Notificaties"; +$a->strings["See all notifications"] = "Alle notificaties weergeven"; +$a->strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; +$a->strings["Private mail"] = "Privéberichten"; +$a->strings["See all private messages"] = "Alle privéberichten weergeven"; +$a->strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; +$a->strings["Inbox"] = "Postvak IN"; +$a->strings["Outbox"] = "Postvak UIT"; +$a->strings["Event Calendar"] = "Agenda"; +$a->strings["See all events"] = "Alle gebeurtenissen weergeven"; +$a->strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; +$a->strings["Manage Your Channels"] = "Beheer je kanalen"; +$a->strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; +$a->strings["Admin"] = "Beheer"; +$a->strings["Site Setup and Configuration"] = "Hub instellen en beheren"; +$a->strings["@name, #tag, content"] = "@kanaal, #label, inhoud"; +$a->strings["Please wait..."] = "Wachten aub..."; $a->strings["Delete this item?"] = "Dit item verwijderen?"; $a->strings["[-] show less"] = "[-] minder reacties weergeven"; $a->strings["[+] expand"] = "[+] uitklappen"; @@ -813,55 +865,86 @@ $a->strings["Uncertain"] = "Onzeker"; $a->strings["It's complicated"] = "Het is ingewikkeld"; $a->strings["Don't care"] = "Maakt mij niks uit"; $a->strings["Ask me"] = "Vraag het me"; -$a->strings["Logout"] = "Uitloggen"; -$a->strings["End this session"] = "Beëindig deze sessie"; -$a->strings["Home"] = "Home"; -$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; -$a->strings["Your profile page"] = "Jouw profielpagina"; -$a->strings["Edit Profiles"] = "Bewerk profielen"; -$a->strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; -$a->strings["Edit your profile"] = "Jouw profiel bewerken"; -$a->strings["Your photos"] = "Jouw foto's"; -$a->strings["Your files"] = "Jouw bestanden"; -$a->strings["Your chatrooms"] = "Jouw chatkanalen"; -$a->strings["Your bookmarks"] = "Jouw bladwijzers"; -$a->strings["Your webpages"] = "Jouw webpagina's"; -$a->strings["Sign in"] = "Inloggen"; -$a->strings["%s - click to logout"] = "%s - klik om uit te loggen"; -$a->strings["Remote authentication"] = "Authenticatie op afstand"; -$a->strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Register"] = "Registreren"; -$a->strings["Create an account"] = "Maak een account aan"; -$a->strings["Help and documentation"] = "Hulp en documentatie"; -$a->strings["Applications, utilities, links, games"] = "Apps"; -$a->strings["Search site content"] = "Inhoud van deze RedMatrix-hub doorzoeken"; -$a->strings["Channel Directory"] = "Kanalengids"; -$a->strings["Your matrix"] = "Jouw matrix"; -$a->strings["Mark all matrix notifications seen"] = "Markeer alle matrixnotificaties als bekeken"; -$a->strings["Channel home"] = "Tijdlijn kanaal"; -$a->strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; -$a->strings["Connections"] = "Connecties"; -$a->strings["Notices"] = "Notificaties"; -$a->strings["Notifications"] = "Notificaties"; -$a->strings["See all notifications"] = "Alle notificaties weergeven"; -$a->strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; -$a->strings["Private mail"] = "Privéberichten"; -$a->strings["See all private messages"] = "Alle privéberichten weergeven"; -$a->strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; -$a->strings["Inbox"] = "Postvak IN"; -$a->strings["Outbox"] = "Postvak UIT"; -$a->strings["Event Calendar"] = "Agenda"; -$a->strings["See all events"] = "Alle gebeurtenissen weergeven"; -$a->strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; -$a->strings["Manage Your Channels"] = "Beheer je kanalen"; -$a->strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; -$a->strings["Admin"] = "Beheer"; -$a->strings["Site Setup and Configuration"] = "Hub instellen en beheren"; -$a->strings["@name, #tag, content"] = "@kanaal, #label, inhoud"; -$a->strings["Please wait..."] = "Wachten aub..."; -$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."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; -$a->strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; +$a->strings["Red Matrix Server - Setup"] = "RedMatrix Server - Setup"; +$a->strings["Could not connect to database."] = "Could not connect to database."; +$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; +$a->strings["Could not create table."] = "Could not create table."; +$a->strings["Your site database has been installed."] = "Your hub database has been installed."; +$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "You may need to import the file \"install/schema_xxx.sql\" manually using a database client."; +$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; +$a->strings["System check"] = "System check"; +$a->strings["Next"] = "Volgende"; +$a->strings["Check again"] = "Check again"; +$a->strings["Database connection"] = "Database connection"; +$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "In order to install RedMatrix we need to know how to connect to your database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; +$a->strings["Database Server Name"] = "Database Server Name"; +$a->strings["Default is localhost"] = "Default is localhost"; +$a->strings["Database Port"] = "Database Port"; +$a->strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; +$a->strings["Database Login Name"] = "Database Login Name"; +$a->strings["Database Login Password"] = "Database Login Password"; +$a->strings["Database Name"] = "Database Name"; +$a->strings["Database Type"] = "Database Type"; +$a->strings["Site administrator email address"] = "Hub administrator email address"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; +$a->strings["Website URL"] = "Hub URL"; +$a->strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; +$a->strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; +$a->strings["Site settings"] = "Hub settings"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; +$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."] = "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."; +$a->strings["PHP executable path"] = "PHP executable path"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; +$a->strings["Command line PHP"] = "Command line PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."; +$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work."; +$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"] = "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\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "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 or postgres PHP module"] = "mysqli or postgres PHP module"; +$a->strings["mb_string PHP module"] = "mb_string PHP module"; +$a->strings["mcrypt PHP module"] = "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."] = "Error: Apache webserver mod-rewrite module is required but not installed."; +$a->strings["proc_open"] = "proc_open"; +$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; +$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; +$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Error: mcrypt PHP module required but not installed."; +$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."] = "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."; +$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."] = "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."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable"; +$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."; +$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."; +$a->strings["%s is writable"] = "%s is writable"; +$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"; +$a->strings["store is writable"] = "store is writable"; +$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."; +$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "This restriction is incorporated because public posts from you may for example contain references to images on your own hub."; +$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; +$a->strings["SSL certificate validation"] = "SSL certificate validation"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; +$a->strings["Url rewrite is working"] = "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."] = "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."; +$a->strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; +$a->strings["

What next

"] = "

Wat nu

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; $a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze RedMatrix-hub bereikt. Probeer het morgen (UTC) nogmaals."; $a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; $a->strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen."; @@ -880,6 +963,53 @@ $a->strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode in $a->strings["Your email address"] = "Jouw e-mailadres"; $a->strings["Choose a password"] = "Geef een wachtwoord op"; $a->strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op"; +$a->strings["No such group"] = "Collectie niet gevonden"; +$a->strings["Search Results For:"] = "Zoekresultaten voor:"; +$a->strings["Collection is empty"] = "Collectie is leeg"; +$a->strings["Collection: "] = "Collectie: "; +$a->strings["Connection: "] = "Connectie: "; +$a->strings["Invalid connection."] = "Ongeldige connectie."; +$a->strings["Some blurb about what to do when you're new here"] = "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook onze apps, waar je vrijwel alles van de RedMatrix kan vinden. Voor hulp met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het supportkanaal (liefst in het Engels)."; +$a->strings["Red Matrix - "The Network""] = "RedMatrix - "The Network""; +$a->strings["Welcome to %s"] = "Welkom op %s"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; +$a->strings["Export Channel"] = "Kanaal exporteren"; +$a->strings["Export your basic channel information to a small file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new hub, but\tdoes not contain your content."] = "Exporteer de basisinformatie van jouw kanaal naar een klein bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; +$a->strings["Export Content"] = "Inhoud exporteren"; +$a->strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exporteer informatie en alle inhoud van jouw kanaal naar een JSON-back-up. Dit slaat al jouw connecties, permissies, profielgegevens en de volledige inhoud van jouw kanaal op, maar is in het algemeen niet geschikt om op een nieuwe hub te importeren, omdat dit bestand ZEER groot kan worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen."; +$a->strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd."; +$a->strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; +$a->strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; +$a->strings["Please login to continue."] = "Inloggen om verder te kunnen 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 applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; +$a->strings["Yes"] = "Ja"; +$a->strings["No"] = "Nee"; +$a->strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; +$a->strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; +$a->strings["Event not found."] = "Gebeurtenis niet gevonden"; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Gebeurtenis bewerken"; +$a->strings["Create New Event"] = "Nieuwe gebeurtenis aanmaken"; +$a->strings["Previous"] = "Vorige"; +$a->strings["Export"] = "Exporteren"; +$a->strings["Event details"] = "Details van gebeurtenis"; +$a->strings["Starting date and Title are required."] = "Begintijd en titel zijn vereist."; +$a->strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; +$a->strings["Event Starts:"] = "Begin gebeurtenis:"; +$a->strings["Required"] = "Vereist"; +$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/-tijd is niet bekend of niet relevant"; +$a->strings["Event Finishes:"] = "Einde gebeurtenis:"; +$a->strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; +$a->strings["Description:"] = "Omschrijving:"; +$a->strings["Title:"] = "Titel:"; +$a->strings["Share this event"] = "Deel deze gebeurtenis"; +$a->strings["Item not available."] = "Item is niet aanwezig."; +$a->strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; +$a->strings["Block Name"] = "Bloknaam"; +$a->strings["Invalid item."] = "Ongeldig item."; +$a->strings["Channel not found."] = "Kanaal niet gevonden."; +$a->strings["Page not found."] = "Pagina niet gevonden."; $a->strings["Menu not found."] = "Menu niet gevonden."; $a->strings["Menu element updated."] = "Menu-onderdeel geüpdatet."; $a->strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; @@ -909,109 +1039,8 @@ $a->strings["Menu item deleted."] = "Menu-item verwijderd."; $a->strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; $a->strings["Edit Menu Element"] = "Menu-element bewerken"; $a->strings["Modify"] = "Wijzigen"; -$a->strings["Some blurb about what to do when you're new here"] = "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook onze apps, waar je vrijwel alles van de RedMatrix kan vinden. Voor hulp met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het supportkanaal (liefst in het Engels)."; -$a->strings["sent you a private message"] = "stuurde jou een privébericht"; -$a->strings["added your channel"] = "voegde jouw kanaal toe"; -$a->strings["posted an event"] = "plaatste een gebeurtenis"; -$a->strings["Collection created."] = "Collectie aangemaakt"; -$a->strings["Could not create collection."] = "Collectie kon niet aangemaakt worden"; -$a->strings["Collection updated."] = "Collectie bijgewerkt."; -$a->strings["Create a collection of channels."] = "Kanaalcollectie aanmaken"; -$a->strings["Collection Name: "] = "Naam collectie:"; -$a->strings["Members are visible to other channels"] = "Kanalen in deze collectie zijn zichtbaar voor andere kanalen"; -$a->strings["Collection removed."] = "Collectie verwijderd"; -$a->strings["Unable to remove collection."] = "Verwijderen collectie mislukt"; -$a->strings["Collection Editor"] = "Collectiebewerker"; -$a->strings["Members"] = "Kanalen"; -$a->strings["All Connected Channels"] = "Alle kanaalconnecties"; -$a->strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; -$a->strings["Public access denied."] = "Openbare toegang geweigerd."; $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; -$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"] = "Maak dit bericht privé"; -$a->strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; -$a->strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; -$a->strings["Please login to continue."] = "Inloggen om verder te kunnen 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 applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; -$a->strings["Yes"] = "Ja"; -$a->strings["No"] = "Nee"; -$a->strings["Profile not found."] = "Profiel niet gevonden."; -$a->strings["Profile deleted."] = "Profiel verwijderd."; -$a->strings["Profile-"] = "Profiel-"; -$a->strings["New profile created."] = "Nieuw profiel aangemaakt."; -$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; -$a->strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; -$a->strings["Profile Name is required."] = "Profielnaam is vereist"; -$a->strings["Marital Status"] = "Huwelijke status"; -$a->strings["Romantic Partner"] = "Romantische partner"; -$a->strings["Likes"] = "Houdt van"; -$a->strings["Dislikes"] = "Houdt niet van"; -$a->strings["Work/Employment"] = "Werk/arbeid"; -$a->strings["Religion"] = "Religie"; -$a->strings["Political Views"] = "Politieke overtuigingen"; -$a->strings["Gender"] = "Geslacht"; -$a->strings["Sexual Preference"] = "Seksuele voorkeur"; -$a->strings["Homepage"] = "Homepage"; -$a->strings["Interests"] = "Interesses"; -$a->strings["Address"] = "Kanaaladres"; -$a->strings["Location"] = "Locatie"; -$a->strings["Profile updated."] = "Profiel bijgewerkt"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; -$a->strings["Edit Profile Details"] = "Profiel bewerken"; -$a->strings["View this profile"] = "Profiel weergeven"; -$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; -$a->strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; -$a->strings["Clone this profile"] = "Dit profiel klonen"; -$a->strings["Delete this profile"] = "Dit profiel verwijderen"; -$a->strings["Import profile from file"] = "Profiel vanuit bestand importeren"; -$a->strings["Export profile to file"] = "Profiel naar bestand exporteren"; -$a->strings["Profile Name:"] = "Profielnaam:"; -$a->strings["Your Full Name:"] = "Jouw volledige naam:"; -$a->strings["Title/Description:"] = "Titel/omschrijving:"; -$a->strings["Your Gender:"] = "Jouw geslacht"; -$a->strings["Birthday :"] = "Verjaardag: "; -$a->strings["Street Address:"] = "Straat en huisnummer:"; -$a->strings["Locality/City:"] = "Woonplaats:"; -$a->strings["Postal/Zip Code:"] = "Postcode:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Provincie/gewest/deelstaat:"; -$a->strings[" Marital Status:"] = " Huwelijkse staat:"; -$a->strings["Who: (if applicable)"] = "Wie (wanneer toepasselijk):"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl"; -$a->strings["Since [date]:"] = "Sinds [datum]:"; -$a->strings["Homepage URL:"] = "Adres homepage:"; -$a->strings["Religious Views:"] = "Religieuze overtuigingen"; -$a->strings["Keywords:"] = "Trefwoorden"; -$a->strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; -$a->strings["Used in directory listings"] = "Wordt in de kanalengids gebruikt"; -$a->strings["Tell us about yourself..."] = "Vertel ons iets over jezelf..."; -$a->strings["Hobbies/Interests"] = "Hobby's/interesses"; -$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; -$a->strings["My other channels"] = "Mijn andere kanalen"; -$a->strings["Musical interests"] = "Muzikale interesses"; -$a->strings["Books, literature"] = "Boeken/literatuur"; -$a->strings["Television"] = "Televisie"; -$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/entertainment"; -$a->strings["Love/romance"] = "Liefde/romantiek"; -$a->strings["Work/employment"] = "Werk/arbeid"; -$a->strings["School/education"] = "School/onderwijs"; -$a->strings["This is your default profile."] = "Dit is jouw standaardprofiel"; -$a->strings["Age: "] = "Leeftijd:"; -$a->strings["Edit/Manage Profiles"] = "Profielen bewerken/beheren"; -$a->strings["Add profile things"] = "Dingen aan je profiel toevoegen"; -$a->strings["Include desirable objects in your profile"] = "Voeg door jou gewenste dingen aan jouw profiel toe"; -$a->strings["Item not available."] = "Item is niet aanwezig."; -$a->strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; -$a->strings["Invalid item."] = "Ongeldig item."; -$a->strings["Channel not found."] = "Kanaal niet gevonden."; -$a->strings["Page not found."] = "Pagina niet gevonden."; -$a->strings["Export Channel"] = "Kanaal exporteren"; -$a->strings["Export your basic channel information to a small file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new hub, but\tdoes not contain your content."] = "Exporteer de basisinformatie van jouw kanaal naar een klein bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; -$a->strings["Export Content"] = "Inhoud exporteren"; -$a->strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exporteer informatie en alle inhoud van jouw kanaal naar een JSON-back-up. Dit slaat al jouw connecties, permissies, profielgegevens en de volledige inhoud van jouw kanaal op, maar is in het algemeen niet geschikt om op een nieuwe hub te importeren, omdat dit bestand ZEER groot kan worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; +$a->strings["Edit post"] = "Bericht bewerken"; $a->strings["No potential page delegates located."] = "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed."; $a->strings["Delegate Page Management"] = "Accountbeheer 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."] = "Gevolmachtigde personen zijn in staat om alle aspecten van dit account te beheren, behalve enkele basisinstellingen. Besteed het beheer van je persoonlijke account niet aan iemand uit die je niet volledig vertrouwd."; @@ -1021,70 +1050,21 @@ $a->strings["Potential Delegates"] = "Gevolmachtigde personen waaraan mogelijk h $a->strings["Remove"] = "Verwijderen"; $a->strings["Add"] = "Toevoegen"; $a->strings["No entries."] = "Geen"; -$a->strings["Version %s"] = "Versie %s"; -$a->strings["Installed plugins/addons/apps:"] = "Ingeschakelde plug-ins/add-ons/apps:"; -$a->strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plug-ins/add-ons/apps"; -$a->strings["Red"] = "Red"; -$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy."; -$a->strings["Tag: "] = "Tag: "; -$a->strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; -$a->strings["Running at web location"] = "Draaiend op weblocatie"; -$a->strings["Please visit RedMatrix.me to learn more about the Red Matrix."] = "Bezoek RedMatrix.me om meer te leren over de RedMatrix."; -$a->strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; -$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; -$a->strings["Site Administrators"] = "Hubbeheerders: "; -$a->strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; -$a->strings["Source created."] = "Bron aangemaakt."; -$a->strings["Source updated."] = "Bron aangemaakt."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Beheer externe bronnen met inhoud voor jouw kanaal"; -$a->strings["New Source"] = "Nieuwe bron"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen."; -$a->strings["Only import content with these words (one per line)"] = "Importeer alleen inhoud met deze woorden (één per regel)"; -$a->strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren"; -$a->strings["Channel Name"] = "Kanaalnaam"; -$a->strings["Source not found."] = "Bron niet gevonden"; -$a->strings["Edit Source"] = "Bron bewerken"; -$a->strings["Delete Source"] = "Bron verwijderen"; -$a->strings["Source removed"] = "Bron verwijderd"; -$a->strings["Unable to remove source."] = "Verwijderen bron mislukt."; -$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; -$a->strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; -$a->strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; -$a->strings["Visible To"] = "Zichtbaar voor"; -$a->strings["All Connections"] = "Alle connecties"; -$a->strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; -$a->strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; -$a->strings["Event not found."] = "Gebeurtenis niet gevonden"; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Gebeurtenis bewerken"; -$a->strings["Create New Event"] = "Nieuwe gebeurtenis aanmaken"; -$a->strings["Previous"] = "Vorige"; -$a->strings["Next"] = "Volgende"; -$a->strings["Export"] = "Exporteren"; -$a->strings["Event details"] = "Details van gebeurtenis"; -$a->strings["Starting date and Title are required."] = "Begintijd en titel zijn vereist."; -$a->strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; -$a->strings["Event Starts:"] = "Begin gebeurtenis:"; -$a->strings["Required"] = "Vereist"; -$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/-tijd is niet bekend of niet relevant"; -$a->strings["Event Finishes:"] = "Einde gebeurtenis:"; -$a->strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; -$a->strings["Description:"] = "Omschrijving:"; -$a->strings["Title:"] = "Titel:"; -$a->strings["Share this event"] = "Deel deze gebeurtenis"; -$a->strings["Public Sites"] = "Openbare hubs"; -$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; -$a->strings["Site URL"] = "URL hub"; -$a->strings["Access Type"] = "Toegangstype"; -$a->strings["Registration Policy"] = "Registratiebeleid"; -$a->strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; $a->strings["Select a bookmark folder"] = "Kies een bladwijzermap"; $a->strings["Save Bookmark"] = "Bladwijzer opslaan"; $a->strings["URL of bookmark"] = "URL van bladwijzer"; $a->strings["Description"] = "Omschrijving"; $a->strings["Or enter new bookmark folder name"] = "Of geef de naam op van een nieuwe bladwijzermap"; +$a->strings["Public Sites"] = "Openbare hubs"; +$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; +$a->strings["Site URL"] = "URL hub"; +$a->strings["Access Type"] = "Toegangstype"; +$a->strings["Registration Policy"] = "Registratiebeleid"; +$a->strings["Location"] = "Locatie"; +$a->strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; +$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++"; +$a->strings["Please login."] = "Inloggen."; $a->strings["Room not found"] = "Chatkanaal niet gevonden"; $a->strings["Leave Room"] = "Chatkanaal verlaten"; $a->strings["Delete This Room"] = "Chatkanaal verwijderen"; @@ -1096,14 +1076,12 @@ $a->strings["Chatroom Name"] = "Naam chatkanaal"; $a->strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; $a->strings["Away"] = "Afwezig"; $a->strings["Online"] = "Online"; -$a->strings["Please login."] = "Inloggen."; -$a->strings["Item not found"] = "Item niet gevonden"; -$a->strings["Item is not editable"] = "Item is niet te bewerken"; -$a->strings["Edit post"] = "Bericht bewerken"; -$a->strings["Delete item?"] = "Item verwijderen?"; -$a->strings["Insert YouTube video"] = "YouTube-video invoegen"; -$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis-video [.ogg] invoegen"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis-audio [.ogg] invoegen"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; +$a->strings["The error message was:"] = "Het foutbericht was:"; +$a->strings["Authentication failed."] = "Authenticatie mislukt."; +$a->strings["Remote Authentication"] = "Authenticatie op afstand"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; +$a->strings["Authenticate"] = "Authenticeren"; $a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; $a->strings["Remove This Channel"] = "Verwijder dit kanaal"; $a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden."; @@ -1111,15 +1089,10 @@ $a->strings["Please enter your password for verification:"] = "Vul je wachtwoord $a->strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen"; $a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd."; $a->strings["Remove Channel"] = "Kanaal verwijderen"; +$a->strings["Public access denied."] = "Openbare toegang geweigerd."; $a->strings["No channel."] = "Geen kanaal."; $a->strings["Common connections"] = "Veel voorkomende connecties"; $a->strings["No connections in common."] = "Geen gemeenschappelijke connecties."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; -$a->strings["The error message was:"] = "Het foutbericht was:"; -$a->strings["Authentication failed."] = "Authenticatie mislukt."; -$a->strings["Remote Authentication"] = "Authenticatie op afstand"; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; -$a->strings["Authenticate"] = "Authenticeren"; $a->strings["No valid account found."] = "Geen geldige account gevonden."; $a->strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; $a->strings["Site Member (%s)"] = "Lid van hub (%s)"; @@ -1136,6 +1109,43 @@ $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 deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; $a->strings["Email Address"] = "E-mailadres"; $a->strings["Reset"] = "Opnieuw instellen"; +$a->strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; +$a->strings["Empty post discarded."] = "Leeg bericht geannuleerd"; +$a->strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; +$a->strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; +$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; +$a->strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; +$a->strings["Connection updated."] = "Connectie bijgewerkt."; +$a->strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; +$a->strings["Blocked"] = "Geblokkeerd"; +$a->strings["Ignored"] = "Genegeerd"; +$a->strings["Hidden"] = "Verborgen"; +$a->strings["Archived"] = "Gearchiveerd"; +$a->strings["All"] = "Alles"; +$a->strings["Suggest new connections"] = "Nieuwe kanalen voorstellen"; +$a->strings["New Connections"] = "Nieuwe connecties"; +$a->strings["Show pending (new) connections"] = "Nog te accepteren (nieuwe) connecties weergeven"; +$a->strings["All Connections"] = "Alle connecties"; +$a->strings["Show all connections"] = "Toon alle connecties"; +$a->strings["Unblocked"] = "Niet geblokkeerd"; +$a->strings["Only show unblocked connections"] = "Toon alleen niet geblokkeerde connecties"; +$a->strings["Only show blocked connections"] = "Toon alleen geblokkeerde connecties"; +$a->strings["Only show ignored connections"] = "Toon alleen genegeerde connecties"; +$a->strings["Only show archived connections"] = "Toon alleen gearchiveerde connecties"; +$a->strings["Only show hidden connections"] = "Toon alleen verborgen connecties"; +$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +$a->strings["Edit connection"] = "Connectie bewerken"; +$a->strings["Search your connections"] = "Doorzoek jouw connecties"; +$a->strings["Finding: "] = "Zoeken naar: "; +$a->strings["Item not found"] = "Item niet gevonden"; +$a->strings["Edit Block"] = "Blok bewerken"; +$a->strings["Delete block?"] = "Blok verwijderen"; +$a->strings["Insert YouTube video"] = "YouTube-video invoegen"; +$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis-video [.ogg] invoegen"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis-audio [.ogg] invoegen"; +$a->strings["Delete Block"] = "Blok verwijderen"; $a->strings["Name is required"] = "Naam is vereist"; $a->strings["Key and Secret are required"] = "Key en secret zijn vereist"; $a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord onveranderd."; @@ -1272,29 +1282,59 @@ $a->strings["Please enable expert mode (in Setting $a->strings["Miscellaneous Settings"] = "Diverse instellingen"; $a->strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's weer te geven"; $a->strings["Remove this channel"] = "Verwijder dit kanaal"; -$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; -$a->strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; -$a->strings["Connection updated."] = "Connectie bijgewerkt."; -$a->strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; -$a->strings["Blocked"] = "Geblokkeerd"; -$a->strings["Ignored"] = "Genegeerd"; -$a->strings["Hidden"] = "Verborgen"; -$a->strings["Archived"] = "Gearchiveerd"; -$a->strings["All"] = "Alles"; -$a->strings["Suggest new connections"] = "Nieuwe kanalen voorstellen"; -$a->strings["New Connections"] = "Nieuwe connecties"; -$a->strings["Show pending (new) connections"] = "Nog te accepteren (nieuwe) connecties weergeven"; -$a->strings["Show all connections"] = "Toon alle connecties"; -$a->strings["Unblocked"] = "Niet geblokkeerd"; -$a->strings["Only show unblocked connections"] = "Toon alleen niet geblokkeerde connecties"; -$a->strings["Only show blocked connections"] = "Toon alleen geblokkeerde connecties"; -$a->strings["Only show ignored connections"] = "Toon alleen genegeerde connecties"; -$a->strings["Only show archived connections"] = "Toon alleen gearchiveerde connecties"; -$a->strings["Only show hidden connections"] = "Toon alleen verborgen connecties"; -$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -$a->strings["Edit connection"] = "Connectie bewerken"; -$a->strings["Search your connections"] = "Doorzoek jouw connecties"; -$a->strings["Finding: "] = "Zoeken naar: "; +$a->strings["- select -"] = "- kies map -"; +$a->strings["Version %s"] = "Versie %s"; +$a->strings["Installed plugins/addons/apps:"] = "Ingeschakelde plug-ins/add-ons/apps:"; +$a->strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plug-ins/add-ons/apps"; +$a->strings["Red"] = "Red"; +$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy."; +$a->strings["Tag: "] = "Tag: "; +$a->strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; +$a->strings["Running at web location"] = "Draaiend op weblocatie"; +$a->strings["Please visit RedMatrix.me to learn more about the Red Matrix."] = "Bezoek RedMatrix.me om meer te leren over de RedMatrix."; +$a->strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; +$a->strings["Site Administrators"] = "Hubbeheerders: "; +$a->strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; +$a->strings["Album not found."] = "Album niet gevonden."; +$a->strings["Delete Album"] = "Verwijder album"; +$a->strings["Delete Photo"] = "Verwijder foto"; +$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["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; +$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; +$a->strings["Upload Photos"] = "Foto's uploaden"; +$a->strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; +$a->strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; +$a->strings["Do not show a status post for this upload"] = "Plaats geen bericht voor deze upload."; +$a->strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; +$a->strings["Contact Photos"] = "Connectiefoto's"; +$a->strings["Show Newest First"] = "Nieuwste eerst weergeven"; +$a->strings["Show Oldest First"] = "Oudste eerst weergeven"; +$a->strings["View Photo"] = "Foto weergeven"; +$a->strings["Edit Album"] = "Album bewerken"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; +$a->strings["Photo not available"] = "Foto niet aanwezig"; +$a->strings["Use as profile photo"] = "Als profielfoto gebruiken"; +$a->strings["Private Photo"] = "Privéfoto"; +$a->strings["View Full Size"] = "Volledige grootte weergeven"; +$a->strings["Edit photo"] = "Foto bewerken"; +$a->strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; +$a->strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)"; +$a->strings["Caption"] = "Bijschrift"; +$a->strings["Add a Tag"] = "Tag toevoegen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; +$a->strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; +$a->strings["In This Photo:"] = "Op deze foto:"; +$a->strings["View Album"] = "Album weergeven"; +$a->strings["Recent Photos"] = "Recente foto's"; +$a->strings["network"] = "netwerk"; +$a->strings["RSS"] = "RSS"; +$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"] = "Maak dit bericht privé"; $a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; $a->strings["Create a new channel"] = "Nieuw kanaal aanmaken"; $a->strings["Current Channel"] = "Huidig kanaal"; @@ -1303,118 +1343,51 @@ $a->strings["Default Channel"] = "Standaardkanaal"; $a->strings["Make Default"] = "Als standaard instellen"; $a->strings["%d new messages"] = "%d nieuwe berichten"; $a->strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; -$a->strings["is now connected to"] = "is nu verbonden met"; -$a->strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; -$a->strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; -$a->strings["Channel has been unblocked"] = "Kanaal is gedeblokkeerd"; -$a->strings["Channel has been blocked"] = "Kanaal is geblokkeerd"; -$a->strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; -$a->strings["Channel has been unignored"] = "Kanaal wordt niet meer genegeerd"; -$a->strings["Channel has been ignored"] = "Kanaal wordt genegeerd"; -$a->strings["Channel has been unarchived"] = "Kanaal is niet meer gearchiveerd"; -$a->strings["Channel has been archived"] = "Kanaal is gearchiveerd"; -$a->strings["Channel has been unhidden"] = "Kanaal is niet meer verborgen"; -$a->strings["Channel has been hidden"] = "Kanaal is verborgen"; -$a->strings["Channel has been approved"] = "Connectie/kanaal is geaccepteerd"; -$a->strings["Channel has been unapproved"] = "Connectie/kanaal is afgewezen"; -$a->strings["Connection has been removed."] = "Connectie is verwijderd"; -$a->strings["View %s's profile"] = "Profiel van %s weergeven"; -$a->strings["Refresh Permissions"] = "Permissies vernieuwen"; -$a->strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; -$a->strings["Recent Activity"] = "Recente activiteit"; -$a->strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; -$a->strings["Unblock"] = "Deblokkeren"; -$a->strings["Block"] = "Blokkeren"; -$a->strings["Block or Unblock this connection"] = "Deze connectie blokkeren of deblokkeren"; -$a->strings["Unignore"] = "Niet meer negeren"; -$a->strings["Ignore"] = "Negeren"; -$a->strings["Ignore or Unignore this connection"] = "Deze connectie negeren of niet meer negeren"; -$a->strings["Unarchive"] = "Niet meer archiveren"; -$a->strings["Archive"] = "Archiveren"; -$a->strings["Archive or Unarchive this connection"] = "Deze connectie archiveren of niet meer archiveren"; -$a->strings["Unhide"] = "Niet meer verbergen"; -$a->strings["Hide"] = "Verbergen"; -$a->strings["Hide or Unhide this connection"] = "Deze connectie verbergen of niet meer verbergen"; -$a->strings["Delete this connection"] = "Deze connectie verwijderen"; -$a->strings["Approve this connection"] = "Deze connectie accepteren"; -$a->strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; -$a->strings["Connections: settings for %s"] = "Connecties: instellingen voor %s"; -$a->strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; -$a->strings["Apply the permissions indicated on this page to all new connections."] = "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen."; -$a->strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; -$a->strings["inherited"] = "geërfd"; -$a->strings["Connection has no individual permissions!"] = "Connectie heeft geen individuele permissies!"; -$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan."; -$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 je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; -$a->strings["Contact Information / Notes"] = "Informatie/aantekeningen over connectie"; -$a->strings["Edit contact notes"] = "Bewerk aantekeningen over contact"; -$a->strings["Their Settings"] = "Hun instellingen"; -$a->strings["My Settings"] = "Mijn instellingen"; -$a->strings["Clear/Disable Automatic Permissions"] = "Verwijderen/uitschakelen automatische permissies"; -$a->strings["Forum Members"] = "Forumleden"; -$a->strings["Soapbox"] = "Zeepkist"; -$a->strings["Full Sharing (typical social network permissions)"] = "Voluit delen (vergelijkbaar met die van sociale netwerken)"; -$a->strings["Cautious Sharing "] = "Voorzichtig delen"; -$a->strings["Follow Only"] = "Alleen volgen"; -$a->strings["Individual Permissions"] = "Individuele permissies"; -$a->strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect."; -$a->strings["Advanced Permissions"] = "Geavanceerde permissies"; -$a->strings["Simple Permissions (select one and submit)"] = "Eenvoudige permissies (selecteer er één en opslaan)"; -$a->strings["Visit %s's profile - %s"] = "Profiel van %s bezoeken - %s"; -$a->strings["Block/Unblock contact"] = "Connectie blokkeren/deblokkeren"; -$a->strings["Ignore contact"] = "Connectie negeren"; -$a->strings["Repair URL settings"] = "URL-instellingen repareren"; -$a->strings["View conversations"] = "Conversaties weergeven"; -$a->strings["Delete contact"] = "Connectie verwijderen"; -$a->strings["Last update:"] = "Laatste wijziging:"; -$a->strings["Update public posts"] = "Openbare berichten updaten"; -$a->strings["Update now"] = "Nu updaten"; -$a->strings["Currently blocked"] = "Momenteel geblokkeerd"; -$a->strings["Currently ignored"] = "Momenteel genegeerd"; -$a->strings["Currently archived"] = "Momenteel gearchiveerd"; -$a->strings["Currently pending"] = "Moeten nog geaccepteerd of afgewezen worden"; -$a->strings["Hide this contact from others"] = "Verberg deze connectie voor anderen"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Reacties/vind-ik-leuks op jouw openbare berichten kunnen zichtbaar blijven"; -$a->strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; -$a->strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; -$a->strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; -$a->strings["Message deleted."] = "Bericht verwijderd."; -$a->strings["Message recalled."] = "Bericht ingetrokken."; -$a->strings["Send Private Message"] = "Privébericht versturen"; -$a->strings["To:"] = "Aan:"; -$a->strings["Subject:"] = "Onderwerp:"; -$a->strings["Your message:"] = "Jouw bericht:"; -$a->strings["Send"] = "Verzenden"; -$a->strings["Message not found."] = "Bericht niet gevonden"; -$a->strings["Delete message"] = "Bericht verwijderen"; -$a->strings["Recall message"] = "Bericht intrekken"; -$a->strings["Message has been recalled."] = "Bericht is ingetrokken."; -$a->strings["Private Conversation"] = "Privéconversatie"; -$a->strings["Delete conversation"] = "Verwijder conversatie"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; -$a->strings["Send Reply"] = "Antwoord versturen"; +$a->strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; $a->strings["Bookmark added"] = "Bladwijzer toegevoegd"; $a->strings["My Bookmarks"] = "Mijn bladwijzers"; $a->strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; -$a->strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; -$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++"; -$a->strings["network"] = "netwerk"; -$a->strings["Block Name"] = "Bloknaam"; -$a->strings["Edit Block"] = "Blok bewerken"; -$a->strings["Delete block?"] = "Blok verwijderen"; -$a->strings["Delete Block"] = "Blok verwijderen"; +$a->strings["Item is not editable"] = "Item is niet te bewerken"; +$a->strings["Delete item?"] = "Item verwijderen?"; +$a->strings["Collection created."] = "Collectie aangemaakt"; +$a->strings["Could not create collection."] = "Collectie kon niet aangemaakt worden"; +$a->strings["Collection updated."] = "Collectie bijgewerkt."; +$a->strings["Create a collection of channels."] = "Kanaalcollectie aanmaken"; +$a->strings["Collection Name: "] = "Naam collectie:"; +$a->strings["Members are visible to other channels"] = "Kanalen in deze collectie zijn zichtbaar voor andere kanalen"; +$a->strings["Collection removed."] = "Collectie verwijderd"; +$a->strings["Unable to remove collection."] = "Verwijderen collectie mislukt"; +$a->strings["Collection Editor"] = "Collectiebewerker"; +$a->strings["Members"] = "Kanalen"; +$a->strings["All Connected Channels"] = "Alle kanaalconnecties"; +$a->strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; +$a->strings["sent you a private message"] = "stuurde jou een privébericht"; +$a->strings["added your channel"] = "voegde jouw kanaal toe"; +$a->strings["posted an event"] = "plaatste een gebeurtenis"; +$a->strings["Edit Layout"] = "Lay-out bewerken"; +$a->strings["Delete layout?"] = "Lay-out verwijderen?"; +$a->strings["Delete Layout"] = "Lay-out verwijderen"; +$a->strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; +$a->strings["Source created."] = "Bron aangemaakt."; +$a->strings["Source updated."] = "Bron aangemaakt."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Beheer externe bronnen met inhoud voor jouw kanaal"; +$a->strings["New Source"] = "Nieuwe bron"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen."; +$a->strings["Only import content with these words (one per line)"] = "Importeer alleen inhoud met deze woorden (één per regel)"; +$a->strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren"; +$a->strings["Channel Name"] = "Kanaalnaam"; +$a->strings["Source not found."] = "Bron niet gevonden"; +$a->strings["Edit Source"] = "Bron bewerken"; +$a->strings["Delete Source"] = "Bron verwijderen"; +$a->strings["Source removed"] = "Bron verwijderd"; +$a->strings["Unable to remove source."] = "Verwijderen bron mislukt."; +$a->strings["Channel added."] = "Kanaal toegevoegd."; $a->strings["Layout updated."] = "Lay-out bijgewerkt."; $a->strings["Edit System Page Description"] = "Systeempagina's bewerken"; $a->strings["Layout not found."] = "Lay-out niet gevonden."; $a->strings["Module Name:"] = "Modulenaam:"; $a->strings["Layout Help"] = "Lay-out-hulp"; -$a->strings["Edit Layout"] = "Lay-out bewerken"; -$a->strings["Delete layout?"] = "Lay-out verwijderen?"; -$a->strings["Delete Layout"] = "Lay-out verwijderen"; -$a->strings["Red Matrix - "The Network""] = "RedMatrix - "The Network""; -$a->strings["Welcome to %s"] = "Welkom op %s"; $a->strings["Edit Webpage"] = "Webpagina bewerken"; $a->strings["Delete webpage?"] = "Webpagina verwijderen?"; $a->strings["Delete Webpage"] = "Webpagina verwijderen"; @@ -1439,6 +1412,12 @@ $a->strings["Done Editing"] = "Klaar met bewerken"; $a->strings["Image uploaded successfully."] = "Uploaden afbeelding geslaagd"; $a->strings["Image upload failed."] = "Uploaden afbeelding mislukt"; $a->strings["Image size reduction [%s] failed."] = "Verkleinen [%s] van afbeelding mislukt."; +$a->strings["Contact not found."] = "Contact niet gevonden"; +$a->strings["Friend suggestion sent."] = "Kanaalvoorstel verzonden."; +$a->strings["Suggest Friends"] = "Kanalen voorstellen"; +$a->strings["Suggest a friend for %s"] = "Stel een kanaal voor aan %s"; +$a->strings["Help:"] = "Hulp:"; +$a->strings["Not Found"] = "Niet gevonden"; $a->strings["Like/Dislike"] = "Leuk/niet leuk"; $a->strings["This action is restricted to members."] = "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd."; $a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan."; @@ -1446,28 +1425,30 @@ $a->strings["Invalid request."] = "Ongeldig verzoek"; $a->strings["thing"] = "ding"; $a->strings["Channel unavailable."] = "Kanaal niet beschikbaar."; $a->strings["Previous action reversed."] = "Vorige actie omgedraaid"; +$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; +$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; +$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; $a->strings["Action completed."] = "Actie voltooid"; $a->strings["Thank you."] = "Bedankt"; -$a->strings["Help:"] = "Hulp:"; -$a->strings["Not Found"] = "Niet gevonden"; -$a->strings["Thing updated"] = "Ding bijgewerkt"; -$a->strings["Object store: failed"] = "Opslaan van ding mislukt"; -$a->strings["Thing added"] = "Ding toegevoegd"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Ding weergeven"; -$a->strings["item not found."] = "Item niet gevonden"; -$a->strings["Edit Thing"] = "Ding bewerken"; -$a->strings["Select a profile"] = "Kies een profiel"; -$a->strings["Post an activity"] = "Plaats een bericht"; -$a->strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; -$a->strings["Name of thing e.g. something"] = "Naam van ding"; -$a->strings["URL of thing (optional)"] = "URL van ding (optioneel)"; -$a->strings["URL for photo of thing (optional)"] = "URL van foto van ding (optioneel)"; -$a->strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; -$a->strings["Contact not found."] = "Contact niet gevonden"; -$a->strings["Friend suggestion sent."] = "Kanaalvoorstel verzonden."; -$a->strings["Suggest Friends"] = "Kanalen voorstellen"; -$a->strings["Suggest a friend for %s"] = "Stel een kanaal voor aan %s"; +$a->strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; +$a->strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; +$a->strings["Please join us on Red"] = "Uitnodiging voor de RedMatrix"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; +$a->strings["%s : Message delivery failed."] = "%s: Aflevering 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 hebt geen uitnodigingen meer beschikbaar"; +$a->strings["Send invitations"] = "Uitnodigingen verzenden"; +$a->strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; +$a->strings["Your message:"] = "Jouw bericht:"; +$a->strings["Please join my community on RedMatrix."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me."; +$a->strings["You will need to supply this invitation code: "] = "Je moet deze uitnodigingscode opgeven:"; +$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):"; +$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:"; +$a->strings["or visit "] = "of bezoek "; +$a->strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; $a->strings["Permission Denied."] = "Toegang geweigerd"; $a->strings["File not found."] = "Bestand niet gevonden."; $a->strings["Edit file permissions"] = "Bestandsrechten bewerken"; @@ -1476,24 +1457,12 @@ $a->strings["Include all files and sub folders"] = "Toepassen op alle bestanden $a->strings["Return to file list"] = "Terugkeren naar bestandlijst "; $a->strings["Copy/paste this code to attach file to a post"] = "Kopieer/plak deze code om het bestand aan een bericht te koppelen"; $a->strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen"; -$a->strings["Continue"] = "Ga verder"; -$a->strings["Premium Channel Setup"] = "Instellen premiumkanaal "; -$a->strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; -$a->strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; -$a->strings["- select -"] = "- kies map -"; -$a->strings["Location not found."] = "Locatie niet gevonden."; -$a->strings["Primary location cannot be removed."] = "Primaire locatie kan niet worden verwijderd."; -$a->strings["No locations found."] = "Geen locaties gevonden."; -$a->strings["Manage Channel Locations"] = "Kanaallocaties beheren"; -$a->strings["Location (address)"] = "Locatie (adres)"; -$a->strings["Primary Location"] = "Primaire locatie"; -$a->strings["Drop location"] = "Locatie verwijderen"; -$a->strings["Channel added."] = "Kanaal toegevoegd."; +$a->strings["Attach this file to a new post"] = "Dit bestand als bijlage aan nieuw bericht toevoegen"; +$a->strings["Show URL to this file"] = "Toon URL van dit bestand"; +$a->strings["Do not show in shared with me folder of your connections"] = "Toon niet in de map 'gedeeld' van jouw connecties"; +$a->strings["RedMatrix channel"] = "RedMatrix-kanaal"; +$a->strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; +$a->strings["Visible to:"] = "Zichtbaar voor:"; $a->strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; $a->strings["Nothing to import."] = "Niets gevonden om te importeren"; $a->strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; @@ -1514,95 +1483,34 @@ $a->strings["Your old login password"] = "Wachtwoord van jouw oude account"; $a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; $a->strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; $a->strings["Import existing posts if possible"] = "Importeer bestaande berichten (wanneer mogelijk)"; -$a->strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; -$a->strings["Empty post discarded."] = "Leeg bericht geannuleerd"; -$a->strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; -$a->strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; +$a->strings["Location not found."] = "Locatie niet gevonden."; +$a->strings["Primary location cannot be removed."] = "Primaire locatie kan niet worden verwijderd."; +$a->strings["No locations found."] = "Geen locaties gevonden."; +$a->strings["Manage Channel Locations"] = "Kanaallocaties beheren"; +$a->strings["Location (address)"] = "Locatie (adres)"; +$a->strings["Primary Location"] = "Primaire locatie"; +$a->strings["Drop location"] = "Locatie verwijderen"; +$a->strings["Thing updated"] = "Ding bijgewerkt"; +$a->strings["Object store: failed"] = "Opslaan van ding mislukt"; +$a->strings["Thing added"] = "Ding toegevoegd"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Ding weergeven"; +$a->strings["item not found."] = "Item niet gevonden"; +$a->strings["Edit Thing"] = "Ding bewerken"; +$a->strings["Select a profile"] = "Kies een profiel"; +$a->strings["Post an activity"] = "Plaats een bericht"; +$a->strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; +$a->strings["Name of thing e.g. something"] = "Naam van ding"; +$a->strings["URL of thing (optional)"] = "URL van ding (optioneel)"; +$a->strings["URL for photo of thing (optional)"] = "URL van foto van ding (optioneel)"; +$a->strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; $a->strings["Help with this feature"] = "Hulp voor dit onderdeel"; $a->strings["Layout Name"] = "Naam lay-out"; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s"; -$a->strings["Red Matrix Server - Setup"] = "RedMatrix Server - Setup"; -$a->strings["Could not connect to database."] = "Could not connect to database."; -$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; -$a->strings["Could not create table."] = "Could not create table."; -$a->strings["Your site database has been installed."] = "Your hub database has been installed."; -$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "You may need to import the file \"install/schema_xxx.sql\" manually using a database client."; -$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; -$a->strings["System check"] = "System check"; -$a->strings["Check again"] = "Check again"; -$a->strings["Database connection"] = "Database connection"; -$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "In order to install RedMatrix we need to know how to connect to your database."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; -$a->strings["Database Server Name"] = "Database Server Name"; -$a->strings["Default is localhost"] = "Default is localhost"; -$a->strings["Database Port"] = "Database Port"; -$a->strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; -$a->strings["Database Login Name"] = "Database Login Name"; -$a->strings["Database Login Password"] = "Database Login Password"; -$a->strings["Database Name"] = "Database Name"; -$a->strings["Database Type"] = "Database Type"; -$a->strings["Site administrator email address"] = "Hub administrator email address"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; -$a->strings["Website URL"] = "Hub URL"; -$a->strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; -$a->strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; -$a->strings["Site settings"] = "Hub settings"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; -$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."] = "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."; -$a->strings["PHP executable path"] = "PHP executable path"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; -$a->strings["Command line PHP"] = "Command line PHP"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."; -$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work."; -$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"] = "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\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "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 or postgres PHP module"] = "mysqli or postgres PHP module"; -$a->strings["mb_string PHP module"] = "mb_string PHP module"; -$a->strings["mcrypt PHP module"] = "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."] = "Error: Apache webserver mod-rewrite module is required but not installed."; -$a->strings["proc_open"] = "proc_open"; -$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; -$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; -$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Error: mcrypt PHP module required but not installed."; -$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."] = "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."; -$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."] = "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."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable"; -$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."; -$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."; -$a->strings["%s is writable"] = "%s is writable"; -$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"; -$a->strings["store is writable"] = "store is writable"; -$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."; -$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "This restriction is incorporated because public posts from you may for example contain references to images on your own hub."; -$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; -$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."; -$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; -$a->strings["SSL certificate validation"] = "SSL certificate validation"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; -$a->strings["Url rewrite is working"] = "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."] = "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."; -$a->strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; -$a->strings["

What next

"] = "

Wat nu

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; +$a->strings["No ratings available"] = "Geen waardering beschikbaar"; +$a->strings["Ratings"] = "Waarderingen"; +$a->strings["Rating: "] = "Waardering: "; +$a->strings["Description: "] = "Omschrijving: "; $a->strings["Tag removed"] = "Tag verwijderd"; $a->strings["Remove Item Tag"] = "Verwijder item-tag"; $a->strings["Select a tag to remove: "] = "Kies een tag om te verwijderen"; @@ -1659,7 +1567,9 @@ $a->strings["Will not waste system resources polling external sites for abandond $a->strings["Allowed friend domains"] = "Toegestane domeinen"; $a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze RedMatrix-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten."; $a->strings["Allowed email domains"] = "Toegestane e-maildomeinen"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Door komma's gescheiden lijst met e-maildomeinen die op deze hub mogen registeren. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten."; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten."; +$a->strings["Not allowed email domains"] = "Niet toegestane e-maildomeinen"; +$a->strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. "; $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."] = "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor ingelogde leden."; $a->strings["Verify Email Addresses"] = "E-mailadres verifieren"; @@ -1712,6 +1622,8 @@ $a->strings["Request date"] = "Tijd/datum verzoek"; $a->strings["No registrations."] = "Geen verzoeken."; $a->strings["Approve"] = "Goedkeuren"; $a->strings["Deny"] = "Afkeuren"; +$a->strings["Block"] = "Blokkeren"; +$a->strings["Unblock"] = "Deblokkeren"; $a->strings["Register date"] = "Geregistreerd"; $a->strings["Last login"] = "Laatste keer ingelogd"; $a->strings["Expires"] = "Verloopt"; @@ -1733,6 +1645,7 @@ $a->strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd"; $a->strings["Censor"] = "Censureren"; $a->strings["Uncensor"] = "Niet censureren"; $a->strings["UID"] = "UID"; +$a->strings["Address"] = "Kanaaladres"; $a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; $a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; $a->strings["Plugin %s disabled."] = "Plug-in %s uitgeschakeld."; @@ -1784,50 +1697,135 @@ $a->strings["Menu deleted."] = "Menu verwijderd."; $a->strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; $a->strings["Edit Menu"] = "Menu bewerken"; $a->strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; -$a->strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; -$a->strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; -$a->strings["Please join us on Red"] = "Uitnodiging voor de RedMatrix"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; -$a->strings["%s : Message delivery failed."] = "%s: Aflevering 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 hebt geen uitnodigingen meer beschikbaar"; -$a->strings["Send invitations"] = "Uitnodigingen verzenden"; -$a->strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; -$a->strings["Please join my community on RedMatrix."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me."; -$a->strings["You will need to supply this invitation code: "] = "Je moet deze uitnodigingscode opgeven:"; -$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):"; -$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:"; -$a->strings["or visit "] = "of bezoek "; -$a->strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; -$a->strings["No such group"] = "Collectie niet gevonden"; -$a->strings["Search Results For:"] = "Zoekresultaten voor:"; -$a->strings["Collection is empty"] = "Collectie is leeg"; -$a->strings["Collection: "] = "Collectie: "; -$a->strings["Connection: "] = "Connectie: "; -$a->strings["Invalid connection."] = "Ongeldige connectie."; -$a->strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; -$a->strings["Discard"] = "Annuleren"; -$a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; -$a->strings["System Notifications"] = "Systeemnotificaties"; -$a->strings["[Embedded content - reload page to view]"] = "[Ingesloten inhoud - ververs pagina om te bekijken] "; -$a->strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; -$a->strings["Visible to:"] = "Zichtbaar voor:"; -$a->strings["No connections."] = "Geen connecties."; -$a->strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; -$a->strings["View Connnections"] = "Connecties weergeven"; -$a->strings["Hub not found."] = "Hub niet gevonden."; -$a->strings["Total votes"] = "Totaal aantal stemmen"; -$a->strings["Average Rating"] = "Gemiddelde waardering"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; -$a->strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd."; -$a->strings["Wall Photos"] = "Kanaalfoto's"; $a->strings["Profile Match"] = "Profielovereenkomst"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; $a->strings["is interested in:"] = "is geïnteresseerd in:"; $a->strings["No matches"] = "Geen overeenkomsten"; +$a->strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; +$a->strings["Discard"] = "Annuleren"; +$a->strings["Ignore"] = "Negeren"; +$a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; +$a->strings["System Notifications"] = "Systeemnotificaties"; +$a->strings["[Embedded content - reload page to view]"] = "[Ingesloten inhoud - ververs pagina om te bekijken] "; +$a->strings["Continue"] = "Ga verder"; +$a->strings["Premium Channel Setup"] = "Instellen premiumkanaal "; +$a->strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; +$a->strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; +$a->strings["App installed."] = "App geïnstalleerd"; +$a->strings["Malformed app."] = "Misvormde app."; +$a->strings["Embed code"] = "Insluitcode"; +$a->strings["Edit App"] = "App bewerken"; +$a->strings["Create App"] = "App maken"; +$a->strings["Name of app"] = "Naam van app"; +$a->strings["Location (URL) of app"] = "Locatie (URL) van app"; +$a->strings["Photo icon URL"] = "URL van pictogram"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; +$a->strings["Version ID"] = "Versie-ID"; +$a->strings["Price of app"] = "Prijs van de app"; +$a->strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; +$a->strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; +$a->strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; +$a->strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; +$a->strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; +$a->strings["Message deleted."] = "Bericht verwijderd."; +$a->strings["Message recalled."] = "Bericht ingetrokken."; +$a->strings["Send Private Message"] = "Privébericht versturen"; +$a->strings["To:"] = "Aan:"; +$a->strings["Subject:"] = "Onderwerp:"; +$a->strings["Send"] = "Verzenden"; +$a->strings["Message not found."] = "Bericht niet gevonden"; +$a->strings["Delete message"] = "Bericht verwijderen"; +$a->strings["Recall message"] = "Bericht intrekken"; +$a->strings["Message has been recalled."] = "Bericht is ingetrokken."; +$a->strings["Private Conversation"] = "Privéconversatie"; +$a->strings["Delete conversation"] = "Verwijder conversatie"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; +$a->strings["Send Reply"] = "Antwoord versturen"; +$a->strings["No connections."] = "Geen connecties."; +$a->strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; +$a->strings["Hub not found."] = "Hub niet gevonden."; +$a->strings["Total votes"] = "Totaal aantal stemmen"; +$a->strings["Average Rating"] = "Gemiddelde waardering"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; +$a->strings["Wall Photos"] = "Kanaalfoto's"; +$a->strings["is now connected to"] = "is nu verbonden met"; +$a->strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; +$a->strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; +$a->strings["Channel has been unblocked"] = "Kanaal is gedeblokkeerd"; +$a->strings["Channel has been blocked"] = "Kanaal is geblokkeerd"; +$a->strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; +$a->strings["Channel has been unignored"] = "Kanaal wordt niet meer genegeerd"; +$a->strings["Channel has been ignored"] = "Kanaal wordt genegeerd"; +$a->strings["Channel has been unarchived"] = "Kanaal is niet meer gearchiveerd"; +$a->strings["Channel has been archived"] = "Kanaal is gearchiveerd"; +$a->strings["Channel has been unhidden"] = "Kanaal is niet meer verborgen"; +$a->strings["Channel has been hidden"] = "Kanaal is verborgen"; +$a->strings["Channel has been approved"] = "Connectie/kanaal is geaccepteerd"; +$a->strings["Channel has been unapproved"] = "Connectie/kanaal is afgewezen"; +$a->strings["Connection has been removed."] = "Connectie is verwijderd"; +$a->strings["View %s's profile"] = "Profiel van %s weergeven"; +$a->strings["Refresh Permissions"] = "Permissies vernieuwen"; +$a->strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; +$a->strings["Recent Activity"] = "Recente activiteit"; +$a->strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; +$a->strings["Block (or Unblock) all communications with this connection"] = "Blokkeer (of deblokkeer) alle communicatie met deze connectie"; +$a->strings["Unignore"] = "Niet meer negeren"; +$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie"; +$a->strings["Unarchive"] = "Niet meer archiveren"; +$a->strings["Archive"] = "Archiveren"; +$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud"; +$a->strings["Unhide"] = "Niet meer verbergen"; +$a->strings["Hide"] = "Verbergen"; +$a->strings["Hide or Unhide this connection from your other connections"] = "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties"; +$a->strings["Delete this connection"] = "Deze connectie verwijderen"; +$a->strings["Approve this connection"] = "Deze connectie accepteren"; +$a->strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; +$a->strings["Connections: settings for %s"] = "Connecties: instellingen voor %s"; +$a->strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; +$a->strings["Apply the permissions indicated on this page to all new connections."] = "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen."; +$a->strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; +$a->strings["Rating (this information may be public)"] = "Waardering (deze informatie kan mogelijk openbaar worden)"; +$a->strings["Optionally explain your rating (this information may be public)"] = "Licht desgewenst jouw waardering toe (kan mogelijk openbaar worden)"; +$a->strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may not be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "Voor jouw kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen. Controleer de permissies op deze pagina en verander ze eventueel. Deze nieuwe connectie kan mogelijk nog niet met jou communiceren totdat je deze pagina opslaat, wat ervoor zorgt dat de gekozen permissies actief worden."; +$a->strings["inherited"] = "geërfd"; +$a->strings["Connection has no individual permissions!"] = "Connectie heeft geen individuele permissies!"; +$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan."; +$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 je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; +$a->strings["Contact Information / Notes"] = "Informatie/aantekeningen over connectie"; +$a->strings["Edit contact notes"] = "Bewerk aantekeningen over contact"; +$a->strings["Their Settings"] = "Hun instellingen"; +$a->strings["My Settings"] = "Mijn instellingen"; +$a->strings["Default permissions for this channel type have (just) been applied. They have not been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "Voor dit kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen en er zijn momenteel geen standaard permissies aanwezig. Controleer/verander de permissies op deze pagina en klik op [Opslaan] om deze te activeren."; +$a->strings["Clear/Disable Automatic Permissions"] = "Verwijderen/uitschakelen automatische permissies"; +$a->strings["Forum Members"] = "Forumleden"; +$a->strings["Soapbox"] = "Zeepkist"; +$a->strings["Full Sharing (typical social network permissions)"] = "Voluit delen (vergelijkbaar met die van sociale netwerken)"; +$a->strings["Cautious Sharing "] = "Voorzichtig delen"; +$a->strings["Follow Only"] = "Alleen volgen"; +$a->strings["Individual Permissions"] = "Individuele permissies"; +$a->strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect."; +$a->strings["Advanced Permissions"] = "Geavanceerde permissies"; +$a->strings["Simple Permissions (select one and submit)"] = "Eenvoudige permissies (selecteer er één en opslaan)"; +$a->strings["Visit %s's profile - %s"] = "Profiel van %s bezoeken - %s"; +$a->strings["Block/Unblock contact"] = "Connectie blokkeren/deblokkeren"; +$a->strings["Ignore contact"] = "Connectie negeren"; +$a->strings["Repair URL settings"] = "URL-instellingen repareren"; +$a->strings["View conversations"] = "Conversaties weergeven"; +$a->strings["Delete contact"] = "Connectie verwijderen"; +$a->strings["Last update:"] = "Laatste wijziging:"; +$a->strings["Update public posts"] = "Openbare berichten updaten"; +$a->strings["Update now"] = "Nu updaten"; +$a->strings["Currently blocked"] = "Momenteel geblokkeerd"; +$a->strings["Currently ignored"] = "Momenteel genegeerd"; +$a->strings["Currently archived"] = "Momenteel gearchiveerd"; +$a->strings["Currently pending"] = "Moeten nog geaccepteerd of afgewezen worden"; $a->strings["Conversation removed."] = "Conversatie verwijderd"; $a->strings["No messages."] = "Geen berichten"; $a->strings["D, d M Y - g:i A"] = "D, j M Y - G:i"; @@ -1843,41 +1841,9 @@ $a->strings["Read more about roles"] = "Lees meer over kanaaltypes"; $a->strings["Xchan Lookup"] = "Xchan opzoeken"; $a->strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; $a->strings["invalid target signature"] = "ongeldig doelkenmerk"; -$a->strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; -$a->strings["Album not found."] = "Album niet gevonden."; -$a->strings["Delete Album"] = "Verwijder album"; -$a->strings["Delete Photo"] = "Verwijder foto"; -$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["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; -$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; -$a->strings["Upload Photos"] = "Foto's uploaden"; -$a->strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; -$a->strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; -$a->strings["Do not show a status post for this upload"] = "Plaats geen bericht voor deze upload."; -$a->strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; -$a->strings["Contact Photos"] = "Connectiefoto's"; -$a->strings["Show Newest First"] = "Nieuwste eerst weergeven"; -$a->strings["Show Oldest First"] = "Oudste eerst weergeven"; -$a->strings["View Photo"] = "Foto weergeven"; -$a->strings["Edit Album"] = "Album bewerken"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; -$a->strings["Photo not available"] = "Foto niet aanwezig"; -$a->strings["Use as profile photo"] = "Als profielfoto gebruiken"; -$a->strings["Private Photo"] = "Privéfoto"; -$a->strings["View Full Size"] = "Volledige grootte weergeven"; -$a->strings["Edit photo"] = "Foto bewerken"; -$a->strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; -$a->strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)"; -$a->strings["Caption"] = "Bijschrift"; -$a->strings["Add a Tag"] = "Tag toevoegen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; -$a->strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; -$a->strings["In This Photo:"] = "Op deze foto:"; -$a->strings["View Album"] = "Album weergeven"; -$a->strings["Recent Photos"] = "Recente foto's"; $a->strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; $a->strings["Post successful."] = "Verzenden bericht geslaagd."; +$a->strings["Age: "] = "Leeftijd:"; $a->strings["Gender: "] = "Geslacht:"; $a->strings["Status: "] = "Status: "; $a->strings["Homepage: "] = "Homepage: "; @@ -1889,19 +1855,72 @@ $a->strings["Finding:"] = "Gezocht naar:"; $a->strings["next page"] = "volgende pagina"; $a->strings["previous page"] = "vorige pagina"; $a->strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen."; -$a->strings["App installed."] = "App geïnstalleerd"; -$a->strings["Malformed app."] = "Misvormde app."; -$a->strings["Embed code"] = "Insluitcode"; -$a->strings["Edit App"] = "App bewerken"; -$a->strings["Create App"] = "App maken"; -$a->strings["Name of app"] = "Naam van app"; -$a->strings["Location (URL) of app"] = "Locatie (URL) van app"; -$a->strings["Photo icon URL"] = "URL van pictogram"; -$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; -$a->strings["Version ID"] = "Versie-ID"; -$a->strings["Price of app"] = "Prijs van de app"; -$a->strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; +$a->strings["Profile not found."] = "Profiel niet gevonden."; +$a->strings["Profile deleted."] = "Profiel verwijderd."; +$a->strings["Profile-"] = "Profiel-"; +$a->strings["New profile created."] = "Nieuw profiel aangemaakt."; +$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; +$a->strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; +$a->strings["Profile Name is required."] = "Profielnaam is vereist"; +$a->strings["Marital Status"] = "Huwelijke status"; +$a->strings["Romantic Partner"] = "Romantische partner"; +$a->strings["Likes"] = "Houdt van"; +$a->strings["Dislikes"] = "Houdt niet van"; +$a->strings["Work/Employment"] = "Werk/arbeid"; +$a->strings["Religion"] = "Religie"; +$a->strings["Political Views"] = "Politieke overtuigingen"; +$a->strings["Gender"] = "Geslacht"; +$a->strings["Sexual Preference"] = "Seksuele voorkeur"; +$a->strings["Homepage"] = "Homepage"; +$a->strings["Interests"] = "Interesses"; +$a->strings["Profile updated."] = "Profiel bijgewerkt"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; +$a->strings["Edit Profile Details"] = "Profiel bewerken"; +$a->strings["View this profile"] = "Profiel weergeven"; +$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; +$a->strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; +$a->strings["Clone this profile"] = "Dit profiel klonen"; +$a->strings["Delete this profile"] = "Dit profiel verwijderen"; +$a->strings["Import profile from file"] = "Profiel vanuit bestand importeren"; +$a->strings["Export profile to file"] = "Profiel naar bestand exporteren"; +$a->strings["Profile Name:"] = "Profielnaam:"; +$a->strings["Your Full Name:"] = "Jouw volledige naam:"; +$a->strings["Title/Description:"] = "Titel/omschrijving:"; +$a->strings["Your Gender:"] = "Jouw geslacht"; +$a->strings["Birthday :"] = "Verjaardag: "; +$a->strings["Street Address:"] = "Straat en huisnummer:"; +$a->strings["Locality/City:"] = "Woonplaats:"; +$a->strings["Postal/Zip Code:"] = "Postcode:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Provincie/gewest/deelstaat:"; +$a->strings[" Marital Status:"] = " Huwelijkse staat:"; +$a->strings["Who: (if applicable)"] = "Wie (wanneer toepasselijk):"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl"; +$a->strings["Since [date]:"] = "Sinds [datum]:"; +$a->strings["Homepage URL:"] = "Adres homepage:"; +$a->strings["Religious Views:"] = "Religieuze overtuigingen"; +$a->strings["Keywords:"] = "Trefwoorden"; +$a->strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; +$a->strings["Used in directory listings"] = "Wordt in de kanalengids gebruikt"; +$a->strings["Tell us about yourself..."] = "Vertel ons iets over jezelf..."; +$a->strings["Hobbies/Interests"] = "Hobby's/interesses"; +$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; +$a->strings["My other channels"] = "Mijn andere kanalen"; +$a->strings["Musical interests"] = "Muzikale interesses"; +$a->strings["Books, literature"] = "Boeken/literatuur"; +$a->strings["Television"] = "Televisie"; +$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/entertainment"; +$a->strings["Love/romance"] = "Liefde/romantiek"; +$a->strings["Work/employment"] = "Werk/arbeid"; +$a->strings["School/education"] = "School/onderwijs"; +$a->strings["This is your default profile."] = "Dit is jouw standaardprofiel"; +$a->strings["Edit/Manage Profiles"] = "Profielen bewerken/beheren"; +$a->strings["Add profile things"] = "Dingen aan je profiel toevoegen"; +$a->strings["Include desirable objects in your profile"] = "Voeg door jou gewenste dingen aan jouw profiel toe"; +$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; +$a->strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; +$a->strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; +$a->strings["Visible To"] = "Zichtbaar voor"; $a->strings["Poll"] = "Poll"; $a->strings["View Results"] = "Bekijk resultaten"; $a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; @@ -1910,6 +1929,9 @@ $a->strings["This will completely remove this account including all its channels $a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het RedMatrix-netwerk verwijderen"; $a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het RedMatrix-netwerk verwijderd."; $a->strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; +$a->strings["Files: shared with me"] = "Bestanden: met mij gedeeld"; +$a->strings["Remove all files"] = "Verwijder alle bestanden"; +$a->strings["Remove this file"] = "Verwijder dit bestand"; $a->strings["Schema Default"] = "Standaardschema"; $a->strings["Sans-Serif"] = "Schreefloos"; $a->strings["Monospace"] = "Monospace"; diff --git a/view/pdl/mod_rate.pdl b/view/pdl/mod_rate.pdl new file mode 100644 index 000000000..d8f50ad7a --- /dev/null +++ b/view/pdl/mod_rate.pdl @@ -0,0 +1,3 @@ +[region=aside] +[widget=vcard][/widget] +[/region] diff --git a/view/pdl/mod_prep.pdl b/view/pdl/mod_ratings.pdl similarity index 81% rename from view/pdl/mod_prep.pdl rename to view/pdl/mod_ratings.pdl index 3d40386cd..0b6e32283 100644 --- a/view/pdl/mod_prep.pdl +++ b/view/pdl/mod_ratings.pdl @@ -1,5 +1,6 @@ [region=aside] [widget=vcard][/widget] +[widget=rating][/widget] [widget=suggestions][/widget] [widget=findpeople][/widget] [/region] diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 3f7cc6107..1aa7cc729 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -575,6 +575,15 @@ footer { #cboxContent { color: $dirpopup_txtcol; + margin: 5px; +} + +#cboxClose { + margin: 10px; +} + +#colorbox { + margin: 5px; } #cboxContent a { @@ -762,6 +771,19 @@ footer { clear: both; } +a.rateme, div.rateme { + display: block; + color: $nav_active_icon_colour; + background-color: $nav_bg; + -webkit-border-radius: $radiuspx ; + -moz-border-radius: $radiuspx; + border-radius: $radiuspx; + border: 1px solid $nav_bd; + padding: 5px; + font-weight: bold; + clear: both; +} + #pause { position: fixed; bottom: 5px; @@ -1176,9 +1198,12 @@ nav .acpopup { .required { - color: #FF0000; + color: #ff0000; + font-size: 1.8rem; + margin-left: 5px; } + #event-start-text, #event-finish-text { margin-top: 10px; margin-bottom: 5px; @@ -1430,16 +1455,22 @@ div.jGrowl div.jGrowl-notification { width: 90%; } -a.rconnect { +a.rconnect, a.rateme, div.rateme { color: $nav_active_icon_colour; text-decoration: none; + font-weight: normal; outline: none; } -a.rconnect:hover { +a.rconnect:hover, a.rateme:hover, div.rateme:hover { color: #0080FF; + text-decoration: none; } +.widget.rateme { + margin-top: 15px; + padding: 0; +} /* header */ header { @@ -2078,6 +2109,13 @@ nav .dropdown-menu>li>a:hover,nav .dropdown-menu>li>a:focus{ background-color: $item_colour; } +nav ul li .undefined, +nav ul li .notify-seen, +nav ul li .notify-unseen + { + max-height: 3rem; +} + /* bootstrap overrides */ blockquote { diff --git a/view/tpl/attach_edit.tpl b/view/tpl/attach_edit.tpl index 5a8743919..4a438e8fd 100644 --- a/view/tpl/attach_edit.tpl +++ b/view/tpl/attach_edit.tpl @@ -22,11 +22,13 @@
{{/if}} + {{if !$isadir}}
+ {{/if}}
{{/if}} +{{if $entry.canrate}}{{/if}}
-
-
- {{/if}} {{if $entry.public_forum}}
diff --git a/view/tpl/js_strings.tpl b/view/tpl/js_strings.tpl index eb78c669f..4eb9ae844 100755 --- a/view/tpl/js_strings.tpl +++ b/view/tpl/js_strings.tpl @@ -16,6 +16,10 @@ 'permschange' : "{{$permschange}}", 'closeAll' : "{{$closeAll}}", 'nothingnew' : "{{$nothingnew}}", + 'rating_desc' : "{{$rating_desc}}", + 'rating_val' : "{{$rating_val}}", + 'rating_text' : "{{$rating_text}}", + 'submit' : "{{$submit}}", 't01' : "{{$t01}}", 't02' : "{{$t02}}", diff --git a/view/tpl/prep.tpl b/view/tpl/prep.tpl index 49dea7d72..924bea252 100644 --- a/view/tpl/prep.tpl +++ b/view/tpl/prep.tpl @@ -12,9 +12,10 @@
{{$r.xchan_name}}
-{{$rating_lbl}} {{$r.xlink_rating}} +
{{$rating_lbl}} {{$r.xlink_rating}}
{{if $r.xlink_rating_text}} -{{$rating_text_label}} {{$r.xlink_rating_text}} +
{{$rating_text_label}} {{$r.xlink_rating_text}} +
{{/if}}
diff --git a/view/tpl/profile_vcard.tpl b/view/tpl/profile_vcard.tpl index bff3148f3..cae920c5d 100755 --- a/view/tpl/profile_vcard.tpl +++ b/view/tpl/profile_vcard.tpl @@ -50,10 +50,13 @@ {{if $connect}} {{$connect}} {{/if}} - + +{{$rating}} +
+ {{$chanmenu}} {{$contact_block}} diff --git a/view/tpl/rating_form.tpl b/view/tpl/rating_form.tpl new file mode 100644 index 000000000..216bf6ede --- /dev/null +++ b/view/tpl/rating_form.tpl @@ -0,0 +1,22 @@ +

{{$header}}

+ +
{{$tgt_name}}
+ +

{{$lbl_rating}}

+ +
+ +{{$rating}} + + + + + +

{{$lbl_rating_txt}}

+ + +
+ + + +
\ No newline at end of file diff --git a/view/tpl/xchan_vcard.tpl b/view/tpl/xchan_vcard.tpl index b72250bec..ca0fe76be 100755 --- a/view/tpl/xchan_vcard.tpl +++ b/view/tpl/xchan_vcard.tpl @@ -5,16 +5,7 @@ {{if $mode != 'mail'}} - {{/if}}