diff --git a/include/Contact.php b/include/Contact.php index 100854f0d..47b1763cb 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -162,7 +162,7 @@ function user_remove($uid) { } -function account_remove($account_id,$local = true) { +function account_remove($account_id,$local = true,$unset_session=true) { logger('account_remove: ' . $account_id); @@ -196,7 +196,7 @@ function account_remove($account_id,$local = true) { ); if($x) { foreach($x as $xx) { - channel_remove($xx['channel_id'],$local); + channel_remove($xx['channel_id'],$local,false); } } @@ -204,11 +204,16 @@ function account_remove($account_id,$local = true) { intval($account_id) ); + if ($unset_session) { + unset($_SESSION['authenticated']); + unset($_SESSION['uid']); + goaway(get_app()->get_baseurl()); + } return $r; } -function channel_remove($channel_id, $local = true) { +function channel_remove($channel_id, $local = true, $unset_session=true) { if(! $channel_id) return; @@ -292,7 +297,7 @@ function channel_remove($channel_id, $local = true) { proc_run('php','include/directory.php',$channel_id); - if($channel_id == local_user()) { + if($channel_id == local_user() && $unset_session) { unset($_SESSION['authenticated']); unset($_SESSION['uid']); goaway($a->get_baseurl()); diff --git a/include/apps.php b/include/apps.php index 135eaa99a..bd50b953a 100644 --- a/include/apps.php +++ b/include/apps.php @@ -141,7 +141,13 @@ function translate_system_apps(&$arr) { 'Chat' => t('Chat'), 'Search' => t('Search'), 'Probe' => t('Probe'), - 'Suggest' => t('Suggest') + 'Suggest' => t('Suggest'), + 'Random Channel' => t('Random Channel'), + 'Invite' => t('Invite'), + 'Features' => t('Features'), + 'Language' => t('Language'), + 'Post' => t('Post'), + 'Profile Photo' => t('Profile Photo') ); if(array_key_exists($arr['name'],$apps)) diff --git a/include/permissions.php b/include/permissions.php index 0610ca1c1..4b68413b9 100644 --- a/include/permissions.php +++ b/include/permissions.php @@ -23,7 +23,7 @@ function get_perms() { 'post_comments' => array('channel_w_comment', intval(PERMS_W_COMMENT), false, t('Can comment on or like my posts'), ''), 'post_mail' => array('channel_w_mail', intval(PERMS_W_MAIL), false, t('Can send me private mail messages'), ''), 'post_photos' => array('channel_w_photos', intval(PERMS_W_PHOTOS), false, t('Can post photos to my photo albums'), ''), - 'post_like' => array('channel_w_like', intval(PERMS_W_LIKE), false, t('Can like/dislike stuff'), 'Profiles and things other than posts/comments'), + 'post_like' => array('channel_w_like', intval(PERMS_W_LIKE), false, t('Can like/dislike stuff'), t('Profiles and things other than posts/comments')), 'tag_deliver' => array('channel_w_tagwall', intval(PERMS_W_TAGWALL), false, t('Can forward to all my channel contacts via post @mentions'), t('Advanced - useful for creating group forum channels')), 'chat' => array('channel_w_chat', intval(PERMS_W_CHAT), false, t('Can chat with me (when available)'), t('')), diff --git a/mod/admin.php b/mod/admin.php index 9f756c2d2..230ef3011 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -681,7 +681,7 @@ function admin_page_users(&$a){ check_form_security_token_redirectOnErr('/admin/users', 'admin_users', 't'); // delete user require_once("include/Contact.php"); - account_remove($uid,true); + account_remove($uid,true,false); notice( sprintf(t("User '%s' deleted"), $account[0]['account_email']) . EOL); }; break; diff --git a/mod/removeaccount.php b/mod/removeaccount.php new file mode 100644 index 000000000..1f9dbcafa --- /dev/null +++ b/mod/removeaccount.php @@ -0,0 +1,66 @@ +get_account(); + $account_id = get_account_id(); + + if(! account_verify_password($account['account_email'],$_POST['qxz_password'])) + return; + + if($account['account_password_changed'] != '0000-00-00 00:00:00') { + $d1 = datetime_convert('UTC','UTC','now - 48 hours'); + if($account['account_password_changed'] > d1) { + notice( t('Account removals are not allowed within 48 hours of changing the account password.') . EOL); + return; + } + } + + require_once('include/Contact.php'); + + $global_remove = intval($_POST['global']); + + account_remove($account_id,true); + +} + + + +function removeaccount_content(&$a) { + + if(! local_user()) + goaway(z_root()); + + $hash = random_string(); + + $_SESSION['remove_account_verify'] = $hash; + $tpl = get_markup_template('removeaccount.tpl'); + $o .= replace_macros($tpl, array( + '$basedir' => $a->get_baseurl(), + '$hash' => $hash, + '$title' => t('Remove This Account'), + '$desc' => t('This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable.'), + '$passwd' => t('Please enter your password for verification:'), + '$global' => array('global', t('Remove this account, all its channels and all its channel clones from the network'), false, t('By default only the instances of the channels located on this hub will be removed from the network')), + '$submit' => t('Remove Account') + )); + + return $o; + +} \ No newline at end of file diff --git a/mod/removeme.php b/mod/removeme.php index 095570480..13bf6cf63 100644 --- a/mod/removeme.php +++ b/mod/removeme.php @@ -35,7 +35,7 @@ function removeme_post(&$a) { $global_remove = intval($_POST['global']); - channel_remove(local_user(),1 - $global_remove); + channel_remove(local_user(),1 - $global_remove,true); } diff --git a/util/messages.po b/util/messages.po index bdce4a72a..847e26c6a 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2014-08-08.761\n" +"Project-Id-Version: 2014-08-13.766\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-08-09 01:13+0000\n" +"POT-Creation-Date: 2014-08-14 19:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,19 +22,19 @@ msgid "Light (Red Matrix default)" msgstr "" #: ../../view/theme/redbasic/php/config.php:99 -#: ../../include/ItemObject.php:583 ../../mod/settings.php:516 -#: ../../mod/settings.php:628 ../../mod/settings.php:656 -#: ../../mod/settings.php:680 ../../mod/settings.php:750 -#: ../../mod/settings.php:928 ../../mod/filestorage.php:137 -#: ../../mod/admin.php:442 ../../mod/admin.php:751 ../../mod/admin.php:886 -#: ../../mod/admin.php:1019 ../../mod/admin.php:1218 ../../mod/admin.php:1305 +#: ../../include/ItemObject.php:583 ../../mod/settings.php:517 +#: ../../mod/settings.php:629 ../../mod/settings.php:657 +#: ../../mod/settings.php:681 ../../mod/settings.php:754 +#: ../../mod/settings.php:934 ../../mod/filestorage.php:137 +#: ../../mod/admin.php:451 ../../mod/admin.php:760 ../../mod/admin.php:895 +#: ../../mod/admin.php:1028 ../../mod/admin.php:1227 ../../mod/admin.php:1314 #: ../../mod/photos.php:563 ../../mod/photos.php:668 ../../mod/photos.php:956 #: ../../mod/photos.php:996 ../../mod/photos.php:1083 ../../mod/mood.php:135 #: ../../mod/pdledit.php:58 ../../mod/connedit.php:518 ../../mod/setup.php:307 -#: ../../mod/setup.php:350 ../../mod/invite.php:156 ../../mod/thing.php:286 +#: ../../mod/setup.php:350 ../../mod/invite.php:142 ../../mod/thing.php:286 #: ../../mod/thing.php:329 ../../mod/connect.php:92 ../../mod/fsuggest.php:108 -#: ../../mod/poke.php:166 ../../mod/group.php:81 ../../mod/appman.php:99 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/frphotos.php:84 ../../mod/poke.php:166 ../../mod/group.php:81 +#: ../../mod/appman.php:99 ../../mod/sources.php:104 ../../mod/sources.php:138 #: ../../mod/import.php:393 ../../mod/mail.php:345 ../../mod/profiles.php:589 #: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/events.php:511 msgid "Submit" @@ -172,63 +172,63 @@ msgstr "" msgid "Are you a clean desk or a messy desk person?" msgstr "" -#: ../../boot.php:1291 +#: ../../boot.php:1296 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1294 +#: ../../boot.php:1299 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1468 +#: ../../boot.php:1473 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "" -#: ../../boot.php:1469 ../../include/nav.php:146 ../../mod/register.php:221 +#: ../../boot.php:1474 ../../include/nav.php:146 ../../mod/register.php:221 msgid "Register" msgstr "" -#: ../../boot.php:1492 ../../include/nav.php:81 ../../include/nav.php:108 +#: ../../boot.php:1497 ../../include/nav.php:81 ../../include/nav.php:108 msgid "Logout" msgstr "" -#: ../../boot.php:1493 ../../include/nav.php:106 ../../include/apps.php:126 +#: ../../boot.php:1498 ../../include/nav.php:106 ../../include/apps.php:126 msgid "Login" msgstr "" -#: ../../boot.php:1495 ../../include/contact_selectors.php:79 -#: ../../mod/admin.php:754 ../../mod/admin.php:763 +#: ../../boot.php:1500 ../../include/contact_selectors.php:79 +#: ../../mod/admin.php:763 ../../mod/admin.php:772 msgid "Email" msgstr "" -#: ../../boot.php:1496 +#: ../../boot.php:1501 msgid "Password" msgstr "" -#: ../../boot.php:1497 +#: ../../boot.php:1502 msgid "Remember me" msgstr "" -#: ../../boot.php:1502 +#: ../../boot.php:1507 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:1503 ../../mod/lostpass.php:85 +#: ../../boot.php:1508 ../../mod/lostpass.php:85 msgid "Password Reset" msgstr "" -#: ../../boot.php:1567 +#: ../../boot.php:1572 msgid "permission denied" msgstr "" -#: ../../boot.php:1568 +#: ../../boot.php:1573 msgid "Got Zot?" msgstr "" -#: ../../boot.php:1998 +#: ../../boot.php:2003 msgid "toggle mobile" msgstr "" @@ -248,13 +248,13 @@ msgstr "" msgid "Default" msgstr "" -#: ../../include/photos.php:15 ../../include/items.php:3704 +#: ../../include/photos.php:15 ../../include/items.php:3711 #: ../../include/attach.php:119 ../../include/attach.php:166 #: ../../include/attach.php:229 ../../include/attach.php:243 #: ../../include/attach.php:283 ../../include/attach.php:297 #: ../../include/attach.php:322 ../../include/attach.php:513 #: ../../include/attach.php:585 ../../include/chat.php:116 -#: ../../mod/settings.php:493 ../../mod/filestorage.php:10 +#: ../../mod/settings.php:494 ../../mod/filestorage.php:10 #: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75 #: ../../mod/filestorage.php:98 ../../mod/webpages.php:40 #: ../../mod/authtest.php:13 ../../mod/new_channel.php:66 @@ -289,35 +289,35 @@ msgstr "" msgid "Permission denied." msgstr "" -#: ../../include/photos.php:51 ../../include/photo/photo_driver.php:643 +#: ../../include/photos.php:51 ../../include/photo/photo_driver.php:653 #: ../../mod/photos.php:91 ../../mod/photos.php:653 ../../mod/photos.php:675 #: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 #: ../../mod/profile_photo.php:421 msgid "Profile Photos" msgstr "" -#: ../../include/photos.php:89 +#: ../../include/photos.php:104 #, php-format msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/photos.php:96 +#: ../../include/photos.php:111 msgid "Image file is empty." msgstr "" -#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 +#: ../../include/photos.php:140 ../../mod/profile_photo.php:216 msgid "Unable to process image" msgstr "" -#: ../../include/photos.php:186 +#: ../../include/photos.php:212 msgid "Photo storage failed." msgstr "" -#: ../../include/photos.php:313 ../../include/conversation.php:1515 +#: ../../include/photos.php:339 ../../include/conversation.php:1515 msgid "Photo Albums" msgstr "" -#: ../../include/photos.php:317 ../../mod/photos.php:691 +#: ../../include/photos.php:343 ../../mod/photos.php:691 #: ../../mod/photos.php:1193 msgid "Upload New Photos" msgstr "" @@ -329,7 +329,7 @@ msgid_plural "%d invitations available" msgstr[0] "" msgstr[1] "" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:446 +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:455 msgid "Advanced" msgstr "" @@ -423,74 +423,74 @@ msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" #: ../../include/items.php:295 ../../mod/subthread.php:49 -#: ../../mod/profperm.php:23 ../../mod/group.php:68 ../../mod/like.php:242 -#: ../../index.php:360 +#: ../../mod/profperm.php:23 ../../mod/frphotos.php:69 ../../mod/group.php:68 +#: ../../mod/like.php:242 ../../index.php:360 msgid "Permission denied" msgstr "" -#: ../../include/items.php:824 +#: ../../include/items.php:830 msgid "(Unknown)" msgstr "" -#: ../../include/items.php:953 +#: ../../include/items.php:959 msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/items.php:955 +#: ../../include/items.php:961 msgid "Visible to you only." msgstr "" -#: ../../include/items.php:957 +#: ../../include/items.php:963 msgid "Visible to anybody in this network." msgstr "" -#: ../../include/items.php:959 +#: ../../include/items.php:965 msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/items.php:961 +#: ../../include/items.php:967 #, php-format msgid "Visible to anybody on %s." msgstr "" -#: ../../include/items.php:963 +#: ../../include/items.php:969 msgid "Visible to all connections." msgstr "" -#: ../../include/items.php:965 +#: ../../include/items.php:971 msgid "Visible to approved connections." msgstr "" -#: ../../include/items.php:3642 ../../mod/filestorage.php:18 -#: ../../mod/home.php:67 ../../mod/admin.php:159 ../../mod/admin.php:923 -#: ../../mod/admin.php:1126 ../../mod/thing.php:78 ../../mod/display.php:32 +#: ../../include/items.php:3649 ../../mod/filestorage.php:18 +#: ../../mod/home.php:67 ../../mod/admin.php:168 ../../mod/admin.php:932 +#: ../../mod/admin.php:1135 ../../mod/thing.php:78 ../../mod/display.php:32 #: ../../mod/viewsrc.php:18 msgid "Item not found." msgstr "" -#: ../../include/items.php:4075 ../../mod/group.php:38 ../../mod/group.php:140 +#: ../../include/items.php:4082 ../../mod/group.php:38 ../../mod/group.php:140 msgid "Collection not found." msgstr "" -#: ../../include/items.php:4090 +#: ../../include/items.php:4097 msgid "Collection is empty." msgstr "" -#: ../../include/items.php:4097 +#: ../../include/items.php:4104 #, php-format msgid "Collection: %s" msgstr "" -#: ../../include/items.php:4108 +#: ../../include/items.php:4115 #, php-format msgid "Connection: %s" msgstr "" -#: ../../include/items.php:4111 +#: ../../include/items.php:4118 msgid "Connection not found." msgstr "" -#: ../../include/Contact.php:107 ../../include/identity.php:675 +#: ../../include/Contact.php:107 ../../include/identity.php:706 #: ../../include/widgets.php:128 ../../include/widgets.php:168 #: ../../mod/dirprofile.php:164 ../../mod/suggest.php:51 #: ../../mod/directory.php:183 ../../mod/match.php:62 @@ -635,118 +635,118 @@ msgid "Requested channel is not available." msgstr "" #: ../../include/identity.php:557 ../../mod/filestorage.php:40 -#: ../../mod/webpages.php:8 ../../mod/profile.php:16 ../../mod/connect.php:13 -#: ../../mod/blocks.php:10 ../../mod/layouts.php:8 +#: ../../mod/webpages.php:8 ../../mod/profile.php:16 ../../mod/hcard.php:8 +#: ../../mod/connect.php:13 ../../mod/blocks.php:10 ../../mod/layouts.php:8 #: ../../mod/achievements.php:8 msgid "Requested profile is not available." msgstr "" -#: ../../include/identity.php:689 ../../mod/profiles.php:695 +#: ../../include/identity.php:720 ../../mod/profiles.php:695 msgid "Change profile photo" msgstr "" -#: ../../include/identity.php:695 +#: ../../include/identity.php:726 msgid "Profiles" msgstr "" -#: ../../include/identity.php:695 +#: ../../include/identity.php:726 msgid "Manage/edit profiles" msgstr "" -#: ../../include/identity.php:696 ../../mod/profiles.php:696 +#: ../../include/identity.php:727 ../../mod/profiles.php:696 msgid "Create New Profile" msgstr "" -#: ../../include/identity.php:699 ../../include/nav.php:89 +#: ../../include/identity.php:730 ../../include/nav.php:89 msgid "Edit Profile" msgstr "" -#: ../../include/identity.php:710 ../../mod/profiles.php:707 +#: ../../include/identity.php:741 ../../mod/profiles.php:707 msgid "Profile Image" msgstr "" -#: ../../include/identity.php:713 +#: ../../include/identity.php:744 msgid "visible to everybody" msgstr "" -#: ../../include/identity.php:714 ../../mod/profiles.php:591 +#: ../../include/identity.php:745 ../../mod/profiles.php:591 #: ../../mod/profiles.php:711 msgid "Edit visibility" msgstr "" -#: ../../include/identity.php:726 ../../include/event.php:40 +#: ../../include/identity.php:757 ../../include/event.php:40 #: ../../include/bb2diaspora.php:485 ../../mod/dirprofile.php:105 #: ../../mod/directory.php:156 ../../mod/events.php:504 msgid "Location:" msgstr "" -#: ../../include/identity.php:728 ../../include/identity.php:952 +#: ../../include/identity.php:759 ../../include/identity.php:983 #: ../../mod/directory.php:158 msgid "Gender:" msgstr "" -#: ../../include/identity.php:729 ../../include/identity.php:996 +#: ../../include/identity.php:760 ../../include/identity.php:1027 #: ../../mod/directory.php:160 msgid "Status:" msgstr "" -#: ../../include/identity.php:730 ../../include/identity.php:1007 +#: ../../include/identity.php:761 ../../include/identity.php:1038 #: ../../mod/directory.php:162 msgid "Homepage:" msgstr "" -#: ../../include/identity.php:731 ../../mod/dirprofile.php:151 +#: ../../include/identity.php:762 ../../mod/dirprofile.php:151 msgid "Online Now" msgstr "" -#: ../../include/identity.php:796 ../../include/identity.php:876 +#: ../../include/identity.php:827 ../../include/identity.php:907 #: ../../mod/ping.php:298 msgid "g A l F d" msgstr "" -#: ../../include/identity.php:797 ../../include/identity.php:877 +#: ../../include/identity.php:828 ../../include/identity.php:908 msgid "F d" msgstr "" -#: ../../include/identity.php:842 ../../include/identity.php:917 +#: ../../include/identity.php:873 ../../include/identity.php:948 #: ../../mod/ping.php:320 msgid "[today]" msgstr "" -#: ../../include/identity.php:854 +#: ../../include/identity.php:885 msgid "Birthday Reminders" msgstr "" -#: ../../include/identity.php:855 +#: ../../include/identity.php:886 msgid "Birthdays this week:" msgstr "" -#: ../../include/identity.php:910 +#: ../../include/identity.php:941 msgid "[No description]" msgstr "" -#: ../../include/identity.php:928 +#: ../../include/identity.php:959 msgid "Event Reminders" msgstr "" -#: ../../include/identity.php:929 +#: ../../include/identity.php:960 msgid "Events this week:" msgstr "" -#: ../../include/identity.php:942 ../../include/identity.php:1050 +#: ../../include/identity.php:973 ../../include/identity.php:1091 #: ../../include/apps.php:133 ../../mod/profperm.php:112 msgid "Profile" msgstr "" -#: ../../include/identity.php:950 ../../mod/settings.php:936 +#: ../../include/identity.php:981 ../../mod/settings.php:942 msgid "Full Name:" msgstr "" -#: ../../include/identity.php:957 +#: ../../include/identity.php:988 msgid "Like this channel" msgstr "" -#: ../../include/identity.php:968 ../../include/taxonomy.php:338 +#: ../../include/identity.php:999 ../../include/taxonomy.php:338 #: ../../include/ItemObject.php:134 msgctxt "noun" msgid "Like" @@ -754,100 +754,100 @@ msgid_plural "Likes" msgstr[0] "" msgstr[1] "" -#: ../../include/identity.php:981 +#: ../../include/identity.php:1012 msgid "j F, Y" msgstr "" -#: ../../include/identity.php:982 +#: ../../include/identity.php:1013 msgid "j F" msgstr "" -#: ../../include/identity.php:989 +#: ../../include/identity.php:1020 msgid "Birthday:" msgstr "" -#: ../../include/identity.php:993 +#: ../../include/identity.php:1024 msgid "Age:" msgstr "" -#: ../../include/identity.php:1002 +#: ../../include/identity.php:1033 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/identity.php:1005 ../../mod/profiles.php:613 +#: ../../include/identity.php:1036 ../../mod/profiles.php:613 msgid "Sexual Preference:" msgstr "" -#: ../../include/identity.php:1009 ../../mod/profiles.php:615 +#: ../../include/identity.php:1040 ../../mod/profiles.php:615 msgid "Hometown:" msgstr "" -#: ../../include/identity.php:1011 +#: ../../include/identity.php:1042 msgid "Tags:" msgstr "" -#: ../../include/identity.php:1013 ../../mod/profiles.php:616 +#: ../../include/identity.php:1044 ../../mod/profiles.php:616 msgid "Political Views:" msgstr "" -#: ../../include/identity.php:1015 +#: ../../include/identity.php:1046 msgid "Religion:" msgstr "" -#: ../../include/identity.php:1017 ../../mod/directory.php:164 +#: ../../include/identity.php:1048 ../../mod/directory.php:164 msgid "About:" msgstr "" -#: ../../include/identity.php:1019 +#: ../../include/identity.php:1050 msgid "Hobbies/Interests:" msgstr "" -#: ../../include/identity.php:1021 ../../mod/profiles.php:619 +#: ../../include/identity.php:1052 ../../mod/profiles.php:619 msgid "Likes:" msgstr "" -#: ../../include/identity.php:1023 ../../mod/profiles.php:620 +#: ../../include/identity.php:1054 ../../mod/profiles.php:620 msgid "Dislikes:" msgstr "" -#: ../../include/identity.php:1026 +#: ../../include/identity.php:1057 msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/identity.php:1028 +#: ../../include/identity.php:1059 msgid "My other channels:" msgstr "" -#: ../../include/identity.php:1030 +#: ../../include/identity.php:1061 msgid "Musical interests:" msgstr "" -#: ../../include/identity.php:1032 +#: ../../include/identity.php:1063 msgid "Books, literature:" msgstr "" -#: ../../include/identity.php:1034 +#: ../../include/identity.php:1065 msgid "Television:" msgstr "" -#: ../../include/identity.php:1036 +#: ../../include/identity.php:1067 msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/identity.php:1038 +#: ../../include/identity.php:1069 msgid "Love/Romance:" msgstr "" -#: ../../include/identity.php:1040 +#: ../../include/identity.php:1071 msgid "Work/employment:" msgstr "" -#: ../../include/identity.php:1042 +#: ../../include/identity.php:1073 msgid "School/education:" msgstr "" -#: ../../include/identity.php:1052 +#: ../../include/identity.php:1093 msgid "Like this thing" msgstr "" @@ -857,8 +857,8 @@ msgstr "" #: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 #: ../../include/menu.php:42 ../../include/reddav.php:1289 -#: ../../include/ItemObject.php:96 ../../include/apps.php:240 -#: ../../mod/settings.php:578 ../../mod/webpages.php:120 +#: ../../include/ItemObject.php:96 ../../include/apps.php:246 +#: ../../mod/settings.php:579 ../../mod/webpages.php:120 #: ../../mod/connections.php:393 ../../mod/menu.php:59 ../../mod/thing.php:235 #: ../../mod/editpost.php:112 ../../mod/editwebpage.php:143 #: ../../mod/blocks.php:94 ../../mod/layouts.php:112 @@ -927,8 +927,8 @@ msgstr "" msgid "Schedule Outbox" msgstr "" -#: ../../include/reddav.php:1202 ../../include/apps.php:322 -#: ../../include/apps.php:373 ../../mod/connedit.php:476 +#: ../../include/reddav.php:1202 ../../include/apps.php:328 +#: ../../include/apps.php:379 ../../mod/connedit.php:476 msgid "Unknown" msgstr "" @@ -948,8 +948,8 @@ msgstr "" msgid "Files" msgstr "" -#: ../../include/reddav.php:1284 ../../mod/settings.php:518 -#: ../../mod/settings.php:544 ../../mod/admin.php:893 +#: ../../include/reddav.php:1284 ../../mod/settings.php:519 +#: ../../mod/settings.php:545 ../../mod/admin.php:902 msgid "Name" msgstr "" @@ -966,8 +966,8 @@ msgid "Last Modified" msgstr "" #: ../../include/reddav.php:1290 ../../include/ItemObject.php:108 -#: ../../include/apps.php:241 ../../include/conversation.php:635 -#: ../../mod/settings.php:579 ../../mod/admin.php:758 ../../mod/admin.php:888 +#: ../../include/apps.php:247 ../../include/conversation.php:635 +#: ../../mod/settings.php:580 ../../mod/admin.php:767 ../../mod/admin.php:897 #: ../../mod/photos.php:1046 ../../mod/connedit.php:440 #: ../../mod/thing.php:236 ../../mod/group.php:176 msgid "Delete" @@ -1224,6 +1224,10 @@ msgstr "" msgid "Can like/dislike stuff" msgstr "" +#: ../../include/permissions.php:26 +msgid "Profiles and things other than posts/comments" +msgstr "" + #: ../../include/permissions.php:28 msgid "Can forward to all my channel contacts via post @mentions" msgstr "" @@ -1656,11 +1660,11 @@ msgstr "" msgid "Invalid data packet" msgstr "" -#: ../../include/zot.php:634 +#: ../../include/zot.php:638 msgid "Unable to verify channel signature" msgstr "" -#: ../../include/zot.php:831 +#: ../../include/zot.php:835 #, php-format msgid "Unable to verify site signature for %s" msgstr "" @@ -1685,7 +1689,7 @@ msgstr "" msgid "Default privacy group for new contacts" msgstr "" -#: ../../include/group.php:253 ../../mod/admin.php:763 +#: ../../include/group.php:253 ../../mod/admin.php:772 msgid "All Channels" msgstr "" @@ -2256,8 +2260,8 @@ msgid "Select an alternate language" msgstr "" #: ../../include/text.php:1732 ../../include/conversation.php:120 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:45 ../../mod/like.php:294 +#: ../../include/diaspora.php:1910 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:294 msgid "photo" msgstr "" @@ -2267,8 +2271,8 @@ msgid "event" msgstr "" #: ../../include/text.php:1738 ../../include/conversation.php:148 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:53 ../../mod/like.php:294 +#: ../../include/diaspora.php:1910 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:294 msgid "status" msgstr "" @@ -2778,8 +2782,8 @@ msgid "Manage Your Channels" msgstr "" #: ../../include/nav.php:198 ../../include/apps.php:129 -#: ../../include/widgets.php:514 ../../mod/admin.php:978 -#: ../../mod/admin.php:1183 +#: ../../include/widgets.php:514 ../../mod/admin.php:987 +#: ../../mod/admin.php:1192 msgid "Settings" msgstr "" @@ -2787,7 +2791,7 @@ msgstr "" msgid "Account/Channel Settings" msgstr "" -#: ../../include/nav.php:206 ../../mod/admin.php:117 +#: ../../include/nav.php:206 ../../mod/admin.php:123 msgid "Admin" msgstr "" @@ -3070,20 +3074,44 @@ msgstr "" msgid "Suggest" msgstr "" -#: ../../include/apps.php:233 ../../mod/settings.php:79 -#: ../../mod/settings.php:542 +#: ../../include/apps.php:145 +msgid "Random Channel" +msgstr "" + +#: ../../include/apps.php:146 +msgid "Invite" +msgstr "" + +#: ../../include/apps.php:147 +msgid "Features" +msgstr "" + +#: ../../include/apps.php:148 +msgid "Language" +msgstr "" + +#: ../../include/apps.php:149 +msgid "Post" +msgstr "" + +#: ../../include/apps.php:150 +msgid "Profile Photo" +msgstr "" + +#: ../../include/apps.php:239 ../../mod/settings.php:79 +#: ../../mod/settings.php:543 msgid "Update" msgstr "" -#: ../../include/apps.php:233 +#: ../../include/apps.php:239 msgid "Install" msgstr "" -#: ../../include/apps.php:238 +#: ../../include/apps.php:244 msgid "Purchase" msgstr "" -#: ../../include/api.php:1016 +#: ../../include/api.php:1036 msgid "Public Timeline" msgstr "" @@ -3111,7 +3139,8 @@ msgstr "" msgid "channel" msgstr "" -#: ../../include/conversation.php:164 ../../mod/like.php:331 +#: ../../include/conversation.php:164 ../../include/diaspora.php:1926 +#: ../../mod/like.php:331 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "" @@ -3396,8 +3425,8 @@ msgstr "" msgid "OK" msgstr "" -#: ../../include/conversation.php:1159 ../../mod/settings.php:517 -#: ../../mod/settings.php:543 ../../mod/fbrowser.php:82 +#: ../../include/conversation.php:1159 ../../mod/settings.php:518 +#: ../../mod/settings.php:544 ../../mod/fbrowser.php:82 #: ../../mod/fbrowser.php:117 ../../mod/editpost.php:151 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 msgid "Cancel" @@ -3460,7 +3489,7 @@ msgstr "" msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/conversation.php:1491 ../../mod/admin.php:892 +#: ../../include/conversation.php:1491 ../../mod/admin.php:901 msgid "Channel" msgstr "" @@ -3642,6 +3671,19 @@ msgstr "" msgid "Suggested Chatrooms" msgstr "" +#: ../../include/diaspora.php:610 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "" + +#: ../../include/diaspora.php:693 +msgid "Sharing notification from Diaspora network" +msgstr "" + +#: ../../include/diaspora.php:2303 +msgid "Attachments:" +msgstr "" + #: ../../include/follow.php:23 msgid "Channel is blocked on this site." msgstr "" @@ -3701,450 +3743,454 @@ msgstr "" msgid "Key and Secret are required" msgstr "" -#: ../../mod/settings.php:195 +#: ../../mod/settings.php:196 msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../mod/settings.php:199 +#: ../../mod/settings.php:200 msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../mod/settings.php:213 +#: ../../mod/settings.php:214 msgid "Password changed." msgstr "" -#: ../../mod/settings.php:215 +#: ../../mod/settings.php:216 msgid "Password update failed. Please try again." msgstr "" -#: ../../mod/settings.php:229 +#: ../../mod/settings.php:230 msgid "Not valid email." msgstr "" -#: ../../mod/settings.php:232 +#: ../../mod/settings.php:233 msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../mod/settings.php:241 +#: ../../mod/settings.php:242 msgid "System failure storing new email. Please try again." msgstr "" -#: ../../mod/settings.php:444 +#: ../../mod/settings.php:445 msgid "Settings updated." msgstr "" -#: ../../mod/settings.php:515 ../../mod/settings.php:541 -#: ../../mod/settings.php:577 +#: ../../mod/settings.php:516 ../../mod/settings.php:542 +#: ../../mod/settings.php:578 msgid "Add application" msgstr "" -#: ../../mod/settings.php:518 +#: ../../mod/settings.php:519 msgid "Name of application" msgstr "" -#: ../../mod/settings.php:519 ../../mod/settings.php:545 +#: ../../mod/settings.php:520 ../../mod/settings.php:546 msgid "Consumer Key" msgstr "" -#: ../../mod/settings.php:519 ../../mod/settings.php:520 +#: ../../mod/settings.php:520 ../../mod/settings.php:521 msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../mod/settings.php:520 ../../mod/settings.php:546 +#: ../../mod/settings.php:521 ../../mod/settings.php:547 msgid "Consumer Secret" msgstr "" -#: ../../mod/settings.php:521 ../../mod/settings.php:547 +#: ../../mod/settings.php:522 ../../mod/settings.php:548 msgid "Redirect" msgstr "" -#: ../../mod/settings.php:521 +#: ../../mod/settings.php:522 msgid "" "Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../mod/settings.php:522 ../../mod/settings.php:548 +#: ../../mod/settings.php:523 ../../mod/settings.php:549 msgid "Icon url" msgstr "" -#: ../../mod/settings.php:522 +#: ../../mod/settings.php:523 msgid "Optional" msgstr "" -#: ../../mod/settings.php:533 +#: ../../mod/settings.php:534 msgid "You can't edit this application." msgstr "" -#: ../../mod/settings.php:576 +#: ../../mod/settings.php:577 msgid "Connected Apps" msgstr "" -#: ../../mod/settings.php:580 +#: ../../mod/settings.php:581 msgid "Client key starts with" msgstr "" -#: ../../mod/settings.php:581 +#: ../../mod/settings.php:582 msgid "No name" msgstr "" -#: ../../mod/settings.php:582 +#: ../../mod/settings.php:583 msgid "Remove authorization" msgstr "" -#: ../../mod/settings.php:593 +#: ../../mod/settings.php:594 msgid "No feature settings configured" msgstr "" -#: ../../mod/settings.php:601 +#: ../../mod/settings.php:602 msgid "Feature Settings" msgstr "" -#: ../../mod/settings.php:624 +#: ../../mod/settings.php:625 msgid "Account Settings" msgstr "" -#: ../../mod/settings.php:625 +#: ../../mod/settings.php:626 msgid "Password Settings" msgstr "" -#: ../../mod/settings.php:626 +#: ../../mod/settings.php:627 msgid "New Password:" msgstr "" -#: ../../mod/settings.php:627 +#: ../../mod/settings.php:628 msgid "Confirm:" msgstr "" -#: ../../mod/settings.php:627 +#: ../../mod/settings.php:628 msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/settings.php:629 ../../mod/settings.php:937 +#: ../../mod/settings.php:630 ../../mod/settings.php:943 msgid "Email Address:" msgstr "" -#: ../../mod/settings.php:630 +#: ../../mod/settings.php:631 msgid "Remove Account" msgstr "" -#: ../../mod/settings.php:631 ../../mod/settings.php:1000 +#: ../../mod/settings.php:632 ../../mod/settings.php:1006 msgid "Warning: This action is permanent and cannot be reversed." msgstr "" -#: ../../mod/settings.php:647 +#: ../../mod/settings.php:648 msgid "Off" msgstr "" -#: ../../mod/settings.php:647 +#: ../../mod/settings.php:648 msgid "On" msgstr "" -#: ../../mod/settings.php:654 +#: ../../mod/settings.php:655 msgid "Additional Features" msgstr "" -#: ../../mod/settings.php:679 +#: ../../mod/settings.php:680 msgid "Connector Settings" msgstr "" -#: ../../mod/settings.php:709 ../../mod/admin.php:390 +#: ../../mod/settings.php:710 ../../mod/admin.php:399 msgid "No special theme for mobile devices" msgstr "" -#: ../../mod/settings.php:718 +#: ../../mod/settings.php:719 #, php-format msgid "%s - (Experimental)" msgstr "" -#: ../../mod/settings.php:748 +#: ../../mod/settings.php:752 msgid "Display Settings" msgstr "" -#: ../../mod/settings.php:754 +#: ../../mod/settings.php:758 msgid "Display Theme:" msgstr "" -#: ../../mod/settings.php:755 +#: ../../mod/settings.php:759 msgid "Mobile Theme:" msgstr "" -#: ../../mod/settings.php:756 +#: ../../mod/settings.php:760 +msgid "Enable user zoom on mobile devices" +msgstr "" + +#: ../../mod/settings.php:761 msgid "Update browser every xx seconds" msgstr "" -#: ../../mod/settings.php:756 +#: ../../mod/settings.php:761 msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../mod/settings.php:757 +#: ../../mod/settings.php:762 msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../mod/settings.php:757 +#: ../../mod/settings.php:762 msgid "Maximum of 100 items" msgstr "" -#: ../../mod/settings.php:758 +#: ../../mod/settings.php:763 msgid "Don't show emoticons" msgstr "" -#: ../../mod/settings.php:759 +#: ../../mod/settings.php:764 msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../mod/settings.php:794 +#: ../../mod/settings.php:800 msgid "Nobody except yourself" msgstr "" -#: ../../mod/settings.php:795 +#: ../../mod/settings.php:801 msgid "Only those you specifically allow" msgstr "" -#: ../../mod/settings.php:796 +#: ../../mod/settings.php:802 msgid "Approved connections" msgstr "" -#: ../../mod/settings.php:797 +#: ../../mod/settings.php:803 msgid "Any connections" msgstr "" -#: ../../mod/settings.php:798 +#: ../../mod/settings.php:804 msgid "Anybody on this website" msgstr "" -#: ../../mod/settings.php:799 +#: ../../mod/settings.php:805 msgid "Anybody in this network" msgstr "" -#: ../../mod/settings.php:800 +#: ../../mod/settings.php:806 msgid "Anybody authenticated" msgstr "" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:807 msgid "Anybody on the internet" msgstr "" -#: ../../mod/settings.php:878 +#: ../../mod/settings.php:884 msgid "Publish your default profile in the network directory" msgstr "" -#: ../../mod/settings.php:878 ../../mod/settings.php:883 -#: ../../mod/settings.php:954 ../../mod/admin.php:420 +#: ../../mod/settings.php:884 ../../mod/settings.php:889 +#: ../../mod/settings.php:960 ../../mod/admin.php:429 #: ../../mod/profiles.php:566 ../../mod/api.php:106 msgid "No" msgstr "" -#: ../../mod/settings.php:878 ../../mod/settings.php:883 -#: ../../mod/settings.php:954 ../../mod/admin.php:422 +#: ../../mod/settings.php:884 ../../mod/settings.php:889 +#: ../../mod/settings.php:960 ../../mod/admin.php:431 #: ../../mod/profiles.php:565 ../../mod/api.php:105 msgid "Yes" msgstr "" -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:889 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/settings.php:887 ../../mod/profile_photo.php:365 +#: ../../mod/settings.php:893 ../../mod/profile_photo.php:365 msgid "or" msgstr "" -#: ../../mod/settings.php:892 +#: ../../mod/settings.php:898 msgid "Your channel address is" msgstr "" -#: ../../mod/settings.php:926 +#: ../../mod/settings.php:932 msgid "Channel Settings" msgstr "" -#: ../../mod/settings.php:935 +#: ../../mod/settings.php:941 msgid "Basic Settings" msgstr "" -#: ../../mod/settings.php:938 +#: ../../mod/settings.php:944 msgid "Your Timezone:" msgstr "" -#: ../../mod/settings.php:939 +#: ../../mod/settings.php:945 msgid "Default Post Location:" msgstr "" -#: ../../mod/settings.php:939 +#: ../../mod/settings.php:945 msgid "Geographical location to display on your posts" msgstr "" -#: ../../mod/settings.php:940 +#: ../../mod/settings.php:946 msgid "Use Browser Location:" msgstr "" -#: ../../mod/settings.php:942 +#: ../../mod/settings.php:948 msgid "Adult Content" msgstr "" -#: ../../mod/settings.php:942 +#: ../../mod/settings.php:948 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../mod/settings.php:944 +#: ../../mod/settings.php:950 msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/settings.php:946 +#: ../../mod/settings.php:952 msgid "Hide my online presence" msgstr "" -#: ../../mod/settings.php:946 +#: ../../mod/settings.php:952 msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../mod/settings.php:948 +#: ../../mod/settings.php:954 msgid "Simple Privacy Settings:" msgstr "" -#: ../../mod/settings.php:949 +#: ../../mod/settings.php:955 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../mod/settings.php:950 +#: ../../mod/settings.php:956 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "" -#: ../../mod/settings.php:951 +#: ../../mod/settings.php:957 msgid "Private - default private, never open or public" msgstr "" -#: ../../mod/settings.php:952 +#: ../../mod/settings.php:958 msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../mod/settings.php:954 +#: ../../mod/settings.php:960 msgid "Allow others to tag your posts" msgstr "" -#: ../../mod/settings.php:954 +#: ../../mod/settings.php:960 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../mod/settings.php:956 +#: ../../mod/settings.php:962 msgid "Advanced Privacy Settings" msgstr "" -#: ../../mod/settings.php:958 +#: ../../mod/settings.php:964 msgid "Expire other channel content after this many days" msgstr "" -#: ../../mod/settings.php:958 +#: ../../mod/settings.php:964 msgid "0 or blank prevents expiration" msgstr "" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:965 msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:965 msgid "May reduce spam activity" msgstr "" -#: ../../mod/settings.php:960 +#: ../../mod/settings.php:966 msgid "Default Post Permissions" msgstr "" -#: ../../mod/settings.php:961 ../../mod/mitem.php:134 ../../mod/mitem.php:177 +#: ../../mod/settings.php:967 ../../mod/mitem.php:134 ../../mod/mitem.php:177 msgid "(click to open/close)" msgstr "" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:978 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:978 msgid "Useful to reduce spamming" msgstr "" -#: ../../mod/settings.php:975 +#: ../../mod/settings.php:981 msgid "Notification Settings" msgstr "" -#: ../../mod/settings.php:976 +#: ../../mod/settings.php:982 msgid "By default post a status message when:" msgstr "" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:983 msgid "accepting a friend request" msgstr "" -#: ../../mod/settings.php:978 +#: ../../mod/settings.php:984 msgid "joining a forum/community" msgstr "" -#: ../../mod/settings.php:979 +#: ../../mod/settings.php:985 msgid "making an interesting profile change" msgstr "" -#: ../../mod/settings.php:980 +#: ../../mod/settings.php:986 msgid "Send a notification email when:" msgstr "" -#: ../../mod/settings.php:981 +#: ../../mod/settings.php:987 msgid "You receive a connection request" msgstr "" -#: ../../mod/settings.php:982 +#: ../../mod/settings.php:988 msgid "Your connections are confirmed" msgstr "" -#: ../../mod/settings.php:983 +#: ../../mod/settings.php:989 msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/settings.php:984 +#: ../../mod/settings.php:990 msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/settings.php:985 +#: ../../mod/settings.php:991 msgid "You receive a private message" msgstr "" -#: ../../mod/settings.php:986 +#: ../../mod/settings.php:992 msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/settings.php:987 +#: ../../mod/settings.php:993 msgid "You are tagged in a post" msgstr "" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:994 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/settings.php:991 +#: ../../mod/settings.php:997 msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/settings.php:992 +#: ../../mod/settings.php:998 msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/settings.php:995 +#: ../../mod/settings.php:1001 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "" -#: ../../mod/settings.php:996 +#: ../../mod/settings.php:1002 msgid "Miscellaneous Settings" msgstr "" -#: ../../mod/settings.php:998 +#: ../../mod/settings.php:1004 msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../mod/settings.php:999 +#: ../../mod/settings.php:1005 msgid "Remove this channel" msgstr "" @@ -4272,605 +4318,609 @@ msgstr "" msgid "Theme settings updated." msgstr "" -#: ../../mod/admin.php:92 ../../mod/admin.php:441 +#: ../../mod/admin.php:97 ../../mod/admin.php:450 msgid "Site" msgstr "" -#: ../../mod/admin.php:93 +#: ../../mod/admin.php:98 msgid "Accounts" msgstr "" -#: ../../mod/admin.php:94 ../../mod/admin.php:885 +#: ../../mod/admin.php:99 ../../mod/admin.php:894 msgid "Channels" msgstr "" -#: ../../mod/admin.php:95 ../../mod/admin.php:976 ../../mod/admin.php:1018 +#: ../../mod/admin.php:100 ../../mod/admin.php:985 ../../mod/admin.php:1027 msgid "Plugins" msgstr "" -#: ../../mod/admin.php:96 ../../mod/admin.php:1181 ../../mod/admin.php:1217 +#: ../../mod/admin.php:101 ../../mod/admin.php:1190 ../../mod/admin.php:1226 msgid "Themes" msgstr "" -#: ../../mod/admin.php:97 ../../mod/admin.php:541 +#: ../../mod/admin.php:102 ../../mod/admin.php:550 msgid "Server" msgstr "" -#: ../../mod/admin.php:98 +#: ../../mod/admin.php:103 +msgid "Profile Config" +msgstr "" + +#: ../../mod/admin.php:104 msgid "DB updates" msgstr "" -#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1304 +#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1313 msgid "Logs" msgstr "" -#: ../../mod/admin.php:118 +#: ../../mod/admin.php:124 msgid "Plugin Features" msgstr "" -#: ../../mod/admin.php:120 +#: ../../mod/admin.php:126 msgid "User registrations waiting for confirmation" msgstr "" -#: ../../mod/admin.php:197 +#: ../../mod/admin.php:206 msgid "Message queues" msgstr "" -#: ../../mod/admin.php:202 ../../mod/admin.php:440 ../../mod/admin.php:540 -#: ../../mod/admin.php:749 ../../mod/admin.php:884 ../../mod/admin.php:975 -#: ../../mod/admin.php:1017 ../../mod/admin.php:1180 ../../mod/admin.php:1216 -#: ../../mod/admin.php:1303 +#: ../../mod/admin.php:211 ../../mod/admin.php:449 ../../mod/admin.php:549 +#: ../../mod/admin.php:758 ../../mod/admin.php:893 ../../mod/admin.php:984 +#: ../../mod/admin.php:1026 ../../mod/admin.php:1189 ../../mod/admin.php:1225 +#: ../../mod/admin.php:1312 msgid "Administration" msgstr "" -#: ../../mod/admin.php:203 +#: ../../mod/admin.php:212 msgid "Summary" msgstr "" -#: ../../mod/admin.php:205 +#: ../../mod/admin.php:214 msgid "Registered users" msgstr "" -#: ../../mod/admin.php:207 ../../mod/admin.php:544 +#: ../../mod/admin.php:216 ../../mod/admin.php:553 msgid "Pending registrations" msgstr "" -#: ../../mod/admin.php:208 +#: ../../mod/admin.php:217 msgid "Version" msgstr "" -#: ../../mod/admin.php:210 ../../mod/admin.php:545 +#: ../../mod/admin.php:219 ../../mod/admin.php:554 msgid "Active plugins" msgstr "" -#: ../../mod/admin.php:361 +#: ../../mod/admin.php:370 msgid "Site settings updated." msgstr "" -#: ../../mod/admin.php:392 +#: ../../mod/admin.php:401 msgid "No special theme for accessibility" msgstr "" -#: ../../mod/admin.php:421 +#: ../../mod/admin.php:430 msgid "Yes - with approval" msgstr "" -#: ../../mod/admin.php:427 +#: ../../mod/admin.php:436 msgid "My site is not a public server" msgstr "" -#: ../../mod/admin.php:428 +#: ../../mod/admin.php:437 msgid "My site has paid access only" msgstr "" -#: ../../mod/admin.php:429 +#: ../../mod/admin.php:438 msgid "My site has free access only" msgstr "" -#: ../../mod/admin.php:430 +#: ../../mod/admin.php:439 msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../mod/admin.php:443 ../../mod/register.php:204 +#: ../../mod/admin.php:452 ../../mod/register.php:204 msgid "Registration" msgstr "" -#: ../../mod/admin.php:444 +#: ../../mod/admin.php:453 msgid "File upload" msgstr "" -#: ../../mod/admin.php:445 +#: ../../mod/admin.php:454 msgid "Policies" msgstr "" -#: ../../mod/admin.php:450 +#: ../../mod/admin.php:459 msgid "Site name" msgstr "" -#: ../../mod/admin.php:451 +#: ../../mod/admin.php:460 msgid "Banner/Logo" msgstr "" -#: ../../mod/admin.php:452 +#: ../../mod/admin.php:461 msgid "Administrator Information" msgstr "" -#: ../../mod/admin.php:452 +#: ../../mod/admin.php:461 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "" -#: ../../mod/admin.php:453 +#: ../../mod/admin.php:462 msgid "System language" msgstr "" -#: ../../mod/admin.php:454 +#: ../../mod/admin.php:463 msgid "System theme" msgstr "" -#: ../../mod/admin.php:454 +#: ../../mod/admin.php:463 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../mod/admin.php:455 +#: ../../mod/admin.php:464 msgid "Mobile system theme" msgstr "" -#: ../../mod/admin.php:455 +#: ../../mod/admin.php:464 msgid "Theme for mobile devices" msgstr "" -#: ../../mod/admin.php:456 +#: ../../mod/admin.php:465 msgid "Accessibility system theme" msgstr "" -#: ../../mod/admin.php:456 +#: ../../mod/admin.php:465 msgid "Accessibility theme" msgstr "" -#: ../../mod/admin.php:457 +#: ../../mod/admin.php:466 msgid "Channel to use for this website's static pages" msgstr "" -#: ../../mod/admin.php:457 +#: ../../mod/admin.php:466 msgid "Site Channel" msgstr "" -#: ../../mod/admin.php:459 +#: ../../mod/admin.php:468 msgid "Maximum image size" msgstr "" -#: ../../mod/admin.php:459 +#: ../../mod/admin.php:468 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: ../../mod/admin.php:460 +#: ../../mod/admin.php:469 msgid "Does this site allow new member registration?" msgstr "" -#: ../../mod/admin.php:461 +#: ../../mod/admin.php:470 msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../mod/admin.php:462 +#: ../../mod/admin.php:471 msgid "Register text" msgstr "" -#: ../../mod/admin.php:462 +#: ../../mod/admin.php:471 msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../mod/admin.php:463 +#: ../../mod/admin.php:472 msgid "Accounts abandoned after x days" msgstr "" -#: ../../mod/admin.php:463 +#: ../../mod/admin.php:472 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: ../../mod/admin.php:464 +#: ../../mod/admin.php:473 msgid "Allowed friend domains" msgstr "" -#: ../../mod/admin.php:464 +#: ../../mod/admin.php:473 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../mod/admin.php:465 +#: ../../mod/admin.php:474 msgid "Allowed email domains" msgstr "" -#: ../../mod/admin.php:465 +#: ../../mod/admin.php:474 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 "" -#: ../../mod/admin.php:466 +#: ../../mod/admin.php:475 msgid "Block public" msgstr "" -#: ../../mod/admin.php:466 +#: ../../mod/admin.php:475 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "" -#: ../../mod/admin.php:467 +#: ../../mod/admin.php:476 msgid "Force publish" msgstr "" -#: ../../mod/admin.php:467 +#: ../../mod/admin.php:476 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../mod/admin.php:468 +#: ../../mod/admin.php:477 msgid "Disable discovery tab" msgstr "" -#: ../../mod/admin.php:468 +#: ../../mod/admin.php:477 msgid "" "Remove the tab in the network view with public content pulled from sources " "chosen for this site." msgstr "" -#: ../../mod/admin.php:469 +#: ../../mod/admin.php:478 msgid "No login on Homepage" msgstr "" -#: ../../mod/admin.php:469 +#: ../../mod/admin.php:478 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 "" -#: ../../mod/admin.php:471 +#: ../../mod/admin.php:480 msgid "Proxy user" msgstr "" -#: ../../mod/admin.php:472 +#: ../../mod/admin.php:481 msgid "Proxy URL" msgstr "" -#: ../../mod/admin.php:473 +#: ../../mod/admin.php:482 msgid "Network timeout" msgstr "" -#: ../../mod/admin.php:473 +#: ../../mod/admin.php:482 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../mod/admin.php:474 +#: ../../mod/admin.php:483 msgid "Delivery interval" msgstr "" -#: ../../mod/admin.php:474 +#: ../../mod/admin.php:483 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 "" -#: ../../mod/admin.php:475 +#: ../../mod/admin.php:484 msgid "Poll interval" msgstr "" -#: ../../mod/admin.php:475 +#: ../../mod/admin.php:484 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "" -#: ../../mod/admin.php:476 +#: ../../mod/admin.php:485 msgid "Maximum Load Average" msgstr "" -#: ../../mod/admin.php:476 +#: ../../mod/admin.php:485 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: ../../mod/admin.php:532 +#: ../../mod/admin.php:541 msgid "No server found" msgstr "" -#: ../../mod/admin.php:539 ../../mod/admin.php:763 +#: ../../mod/admin.php:548 ../../mod/admin.php:772 msgid "ID" msgstr "" -#: ../../mod/admin.php:539 +#: ../../mod/admin.php:548 msgid "for channel" msgstr "" -#: ../../mod/admin.php:539 +#: ../../mod/admin.php:548 msgid "on server" msgstr "" -#: ../../mod/admin.php:539 +#: ../../mod/admin.php:548 msgid "Status" msgstr "" -#: ../../mod/admin.php:560 +#: ../../mod/admin.php:569 msgid "Update has been marked successful" msgstr "" -#: ../../mod/admin.php:570 +#: ../../mod/admin.php:579 #, php-format msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../mod/admin.php:573 +#: ../../mod/admin.php:582 #, php-format msgid "Update %s was successfully applied." msgstr "" -#: ../../mod/admin.php:577 +#: ../../mod/admin.php:586 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../mod/admin.php:580 +#: ../../mod/admin.php:589 #, php-format msgid "Update function %s could not be found." msgstr "" -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:604 msgid "No failed updates." msgstr "" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:608 msgid "Failed Updates" msgstr "" -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:610 msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:611 msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:637 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:635 +#: ../../mod/admin.php:644 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:666 +#: ../../mod/admin.php:675 msgid "Account not found" msgstr "" -#: ../../mod/admin.php:677 +#: ../../mod/admin.php:686 #, php-format msgid "User '%s' deleted" msgstr "" -#: ../../mod/admin.php:686 +#: ../../mod/admin.php:695 #, php-format msgid "User '%s' unblocked" msgstr "" -#: ../../mod/admin.php:686 +#: ../../mod/admin.php:695 #, php-format msgid "User '%s' blocked" msgstr "" -#: ../../mod/admin.php:750 ../../mod/admin.php:762 +#: ../../mod/admin.php:759 ../../mod/admin.php:771 msgid "Users" msgstr "" -#: ../../mod/admin.php:752 ../../mod/admin.php:887 +#: ../../mod/admin.php:761 ../../mod/admin.php:896 msgid "select all" msgstr "" -#: ../../mod/admin.php:753 +#: ../../mod/admin.php:762 msgid "User registrations waiting for confirm" msgstr "" -#: ../../mod/admin.php:754 +#: ../../mod/admin.php:763 msgid "Request date" msgstr "" -#: ../../mod/admin.php:755 +#: ../../mod/admin.php:764 msgid "No registrations." msgstr "" -#: ../../mod/admin.php:756 +#: ../../mod/admin.php:765 msgid "Approve" msgstr "" -#: ../../mod/admin.php:757 +#: ../../mod/admin.php:766 msgid "Deny" msgstr "" -#: ../../mod/admin.php:759 ../../mod/connedit.php:414 +#: ../../mod/admin.php:768 ../../mod/connedit.php:414 #: ../../mod/connedit.php:557 msgid "Block" msgstr "" -#: ../../mod/admin.php:760 ../../mod/connedit.php:414 +#: ../../mod/admin.php:769 ../../mod/connedit.php:414 #: ../../mod/connedit.php:557 msgid "Unblock" msgstr "" -#: ../../mod/admin.php:763 +#: ../../mod/admin.php:772 msgid "Register date" msgstr "" -#: ../../mod/admin.php:763 +#: ../../mod/admin.php:772 msgid "Last login" msgstr "" -#: ../../mod/admin.php:763 +#: ../../mod/admin.php:772 msgid "Expires" msgstr "" -#: ../../mod/admin.php:763 +#: ../../mod/admin.php:772 msgid "Service Class" msgstr "" -#: ../../mod/admin.php:765 +#: ../../mod/admin.php:774 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/admin.php:766 +#: ../../mod/admin.php:775 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 "" -#: ../../mod/admin.php:799 +#: ../../mod/admin.php:808 #, php-format msgid "%s channel censored/uncensored" msgid_plural "%s channelss censored/uncensored" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:806 +#: ../../mod/admin.php:815 #, php-format msgid "%s channel deleted" msgid_plural "%s channels deleted" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:825 +#: ../../mod/admin.php:834 msgid "Channel not found" msgstr "" -#: ../../mod/admin.php:836 +#: ../../mod/admin.php:845 #, php-format msgid "Channel '%s' deleted" msgstr "" -#: ../../mod/admin.php:846 +#: ../../mod/admin.php:855 #, php-format msgid "Channel '%s' uncensored" msgstr "" -#: ../../mod/admin.php:846 +#: ../../mod/admin.php:855 #, php-format msgid "Channel '%s' censored" msgstr "" -#: ../../mod/admin.php:889 +#: ../../mod/admin.php:898 msgid "Censor" msgstr "" -#: ../../mod/admin.php:890 +#: ../../mod/admin.php:899 msgid "Uncensor" msgstr "" -#: ../../mod/admin.php:893 +#: ../../mod/admin.php:902 msgid "UID" msgstr "" -#: ../../mod/admin.php:893 ../../mod/profiles.php:397 +#: ../../mod/admin.php:902 ../../mod/profiles.php:397 msgid "Address" msgstr "" -#: ../../mod/admin.php:895 +#: ../../mod/admin.php:904 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 "" -#: ../../mod/admin.php:896 +#: ../../mod/admin.php:905 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 "" -#: ../../mod/admin.php:935 +#: ../../mod/admin.php:944 #, php-format msgid "Plugin %s disabled." msgstr "" -#: ../../mod/admin.php:939 +#: ../../mod/admin.php:948 #, php-format msgid "Plugin %s enabled." msgstr "" -#: ../../mod/admin.php:949 ../../mod/admin.php:1151 +#: ../../mod/admin.php:958 ../../mod/admin.php:1160 msgid "Disable" msgstr "" -#: ../../mod/admin.php:951 ../../mod/admin.php:1153 +#: ../../mod/admin.php:960 ../../mod/admin.php:1162 msgid "Enable" msgstr "" -#: ../../mod/admin.php:977 ../../mod/admin.php:1182 +#: ../../mod/admin.php:986 ../../mod/admin.php:1191 msgid "Toggle" msgstr "" -#: ../../mod/admin.php:985 ../../mod/admin.php:1192 +#: ../../mod/admin.php:994 ../../mod/admin.php:1201 msgid "Author: " msgstr "" -#: ../../mod/admin.php:986 ../../mod/admin.php:1193 +#: ../../mod/admin.php:995 ../../mod/admin.php:1202 msgid "Maintainer: " msgstr "" -#: ../../mod/admin.php:1115 +#: ../../mod/admin.php:1124 msgid "No themes found." msgstr "" -#: ../../mod/admin.php:1174 +#: ../../mod/admin.php:1183 msgid "Screenshot" msgstr "" -#: ../../mod/admin.php:1222 +#: ../../mod/admin.php:1231 msgid "[Experimental]" msgstr "" -#: ../../mod/admin.php:1223 +#: ../../mod/admin.php:1232 msgid "[Unsupported]" msgstr "" -#: ../../mod/admin.php:1250 +#: ../../mod/admin.php:1259 msgid "Log settings updated." msgstr "" -#: ../../mod/admin.php:1306 +#: ../../mod/admin.php:1315 msgid "Clear" msgstr "" -#: ../../mod/admin.php:1312 +#: ../../mod/admin.php:1321 msgid "Debugging" msgstr "" -#: ../../mod/admin.php:1313 +#: ../../mod/admin.php:1322 msgid "Log file" msgstr "" -#: ../../mod/admin.php:1313 +#: ../../mod/admin.php:1322 msgid "" "Must be writable by web server. Relative to your Red top-level directory." msgstr "" -#: ../../mod/admin.php:1314 +#: ../../mod/admin.php:1323 msgid "Log level" msgstr "" @@ -6259,48 +6309,40 @@ msgstr[1] "" msgid "You have no more invitations available" msgstr "" -#: ../../mod/invite.php:141 +#: ../../mod/invite.php:129 msgid "Send invitations" msgstr "" -#: ../../mod/invite.php:142 +#: ../../mod/invite.php:130 msgid "Enter email addresses, one per line:" msgstr "" -#: ../../mod/invite.php:143 ../../mod/mail.php:225 ../../mod/mail.php:338 +#: ../../mod/invite.php:131 ../../mod/mail.php:225 ../../mod/mail.php:338 msgid "Your message:" msgstr "" -#: ../../mod/invite.php:144 -msgid "" -"You are cordially invited to join me and some other close friends on the Red " -"Matrix - a revolutionary new decentralized communication and information " -"tool." +#: ../../mod/invite.php:132 +msgid "Please join my community on RedMatrix." msgstr "" -#: ../../mod/invite.php:146 -msgid "You will need to supply this invitation code: $invite_code" +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " msgstr "" -#: ../../mod/invite.php:147 -msgid "Please visit my channel at" +#: ../../mod/invite.php:135 +msgid "1. Register at any RedMatrix location (they are all inter-connected)" msgstr "" -#: ../../mod/invite.php:151 -msgid "" -"Once you have registered (on ANY Red Matrix site - they are all inter-" -"connected), please connect with my Red Matrix channel address:" +#: ../../mod/invite.php:137 +msgid "2. Enter my RedMatrix network address into the site searchbar." msgstr "" -#: ../../mod/invite.php:153 -msgid "Click the [Register] link on the following page to join." +#: ../../mod/invite.php:138 +msgid "or visit " msgstr "" -#: ../../mod/invite.php:155 -msgid "" -"For more information about the Red Matrix Project and why it has the " -"potential to change the internet as we know it, please visit http://getzot." -"com" +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" msgstr "" #: ../../mod/thing.php:98 @@ -6627,6 +6669,26 @@ msgstr "" msgid "Make Default" msgstr "" +#: ../../mod/frphotos.php:79 +msgid "Friendica Photo Album Import" +msgstr "" + +#: ../../mod/frphotos.php:80 +msgid "This will import all your Friendica photo albums to this Red channel." +msgstr "" + +#: ../../mod/frphotos.php:81 +msgid "Friendica Server base URL" +msgstr "" + +#: ../../mod/frphotos.php:82 +msgid "Friendica Login Username" +msgstr "" + +#: ../../mod/frphotos.php:83 +msgid "Friendica Login Password" +msgstr "" + #: ../../mod/removeme.php:29 msgid "" "Channel removals are not allowed within 48 hours of changing the account " diff --git a/view/nl/messages.po b/view/nl/messages.po index 6904e14f9..14fd4e460 100644 --- a/view/nl/messages.po +++ b/view/nl/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-08-05 19:53-0700\n" -"PO-Revision-Date: 2014-08-06 13:24+0000\n" +"POT-Creation-Date: 2014-08-09 01:13+0000\n" +"PO-Revision-Date: 2014-08-14 14:55+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" @@ -18,18 +18,1634 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:50 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" +#: ../../view/theme/redbasic/php/config.php:84 +msgid "Light (Red Matrix default)" +msgstr "Light (RedMatrix-standaard)" -#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51 +#: ../../view/theme/redbasic/php/config.php:99 +#: ../../include/ItemObject.php:583 ../../mod/settings.php:516 +#: ../../mod/settings.php:628 ../../mod/settings.php:656 +#: ../../mod/settings.php:680 ../../mod/settings.php:750 +#: ../../mod/settings.php:928 ../../mod/filestorage.php:137 +#: ../../mod/admin.php:442 ../../mod/admin.php:751 ../../mod/admin.php:886 +#: ../../mod/admin.php:1019 ../../mod/admin.php:1218 ../../mod/admin.php:1305 +#: ../../mod/photos.php:563 ../../mod/photos.php:668 ../../mod/photos.php:956 +#: ../../mod/photos.php:996 ../../mod/photos.php:1083 ../../mod/mood.php:135 +#: ../../mod/pdledit.php:58 ../../mod/connedit.php:518 ../../mod/setup.php:307 +#: ../../mod/setup.php:350 ../../mod/invite.php:156 ../../mod/thing.php:286 +#: ../../mod/thing.php:329 ../../mod/connect.php:92 ../../mod/fsuggest.php:108 +#: ../../mod/poke.php:166 ../../mod/group.php:81 ../../mod/appman.php:99 +#: ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/import.php:393 ../../mod/mail.php:345 ../../mod/profiles.php:589 +#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/events.php:511 +msgid "Submit" +msgstr "Opslaan" + +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Theme settings" +msgstr "Thema-instellingen" + +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set scheme" +msgstr "Schema van thema instellen" + +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Narrow navbar" +msgstr "Smalle navigatiebalk" + +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Navigation bar background color" +msgstr "Achtergrondkleur navigatiebalk" + +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Navigation bar gradient top color" +msgstr "Bovenste gradiëntkleur navigatiebalk" + +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Navigation bar gradient bottom color" +msgstr "Onderste gradiëntkleur navigatiebalk" + +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Navigation active button gradient top color" +msgstr "Bovenste gradiëntkleur actieve knop navigatiebalk" + +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Navigation active button gradient bottom color" +msgstr "Onderste gradiëntkleur actieve knop op navigatiebalk" + +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Navigation bar border color " +msgstr "Randkleur navigatiebalk " + +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Navigation bar icon color " +msgstr "Pictogramkleur navigatiebalk" + +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Navigation bar active icon color " +msgstr "Actieve pictogramkleur navigatiebalk" + +#: ../../view/theme/redbasic/php/config.php:113 +msgid "link color" +msgstr "Linkkleur instellen" + +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set font-color for banner" +msgstr "Tekstkleur van banner instellen" + +#: ../../view/theme/redbasic/php/config.php:115 +msgid "Set the background color" +msgstr "Achtergrondkleur instellen" + +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Set the background image" +msgstr "Achtergrondafbeelding instellen" + +#: ../../view/theme/redbasic/php/config.php:117 +msgid "Set the background color of items" +msgstr "Achtergrondkleur items instellen" + +#: ../../view/theme/redbasic/php/config.php:118 +msgid "Set the background color of comments" +msgstr "Achtergrondkleur reacties instellen" + +#: ../../view/theme/redbasic/php/config.php:119 +msgid "Set the border color of comments" +msgstr "Randkleur reacties instellen" + +#: ../../view/theme/redbasic/php/config.php:120 +msgid "Set the indent for comments" +msgstr "Inspringen reacties instellen" + +#: ../../view/theme/redbasic/php/config.php:121 +msgid "Set the basic color for item icons" +msgstr "Basiskleur itempictogrammen instellen" + +#: ../../view/theme/redbasic/php/config.php:122 +msgid "Set the hover color for item icons" +msgstr "Hoverkleur itempictogrammen instellen" + +#: ../../view/theme/redbasic/php/config.php:123 +msgid "Set font-size for the entire application" +msgstr "Tekstgrootte van de volledige applicatie instellen" + +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "Lettergrootte voor berichten en reacties instellen" + +#: ../../view/theme/redbasic/php/config.php:125 +msgid "Set font-color for posts and comments" +msgstr "Tekstkleur van berichten en reacties" + +#: ../../view/theme/redbasic/php/config.php:126 +msgid "Set radius of corners" +msgstr "Radius van hoeken instellen" + +#: ../../view/theme/redbasic/php/config.php:127 +msgid "Set shadow depth of photos" +msgstr "Schaduwdiepte van foto's instellen" + +#: ../../view/theme/redbasic/php/config.php:128 +msgid "Set maximum width of conversation regions" +msgstr "Maximumbreedte conversatieruimte instellen" + +#: ../../view/theme/redbasic/php/config.php:129 +msgid "Center conversation regions" +msgstr "Centreer conversatieruimte" + +#: ../../view/theme/redbasic/php/config.php:130 +msgid "Set minimum opacity of nav bar - to hide it" +msgstr "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)" + +#: ../../view/theme/redbasic/php/config.php:131 +msgid "Set size of conversation author photo" +msgstr "Grootte profielfoto's van berichten instellen" + +#: ../../view/theme/redbasic/php/config.php:132 +msgid "Set size of followup author photos" +msgstr "Grootte profielfoto's van reacties instellen" + +#: ../../view/theme/redbasic/php/config.php:133 +msgid "Sloppy photo albums" +msgstr "Rommelig vormgegeven fotoalbums" + +#: ../../view/theme/redbasic/php/config.php:133 +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:1291 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Update %s mislukt. Zie foutenlogboek." + +#: ../../boot.php:1294 +#, php-format +msgid "Update Error at %s" +msgstr "Update-fout op %s" + +#: ../../boot.php:1468 +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:1469 ../../include/nav.php:146 ../../mod/register.php:221 +msgid "Register" +msgstr "Registreren " + +#: ../../boot.php:1492 ../../include/nav.php:81 ../../include/nav.php:108 +msgid "Logout" +msgstr "Uitloggen" + +#: ../../boot.php:1493 ../../include/nav.php:106 ../../include/apps.php:126 +msgid "Login" +msgstr "Inloggen" + +#: ../../boot.php:1495 ../../include/contact_selectors.php:79 +#: ../../mod/admin.php:754 ../../mod/admin.php:763 +msgid "Email" +msgstr "E-mail" + +#: ../../boot.php:1496 +msgid "Password" +msgstr "Wachtwoord" + +#: ../../boot.php:1497 +msgid "Remember me" +msgstr "Aangemeld blijven" + +#: ../../boot.php:1502 +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" + +#: ../../boot.php:1503 ../../mod/lostpass.php:85 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" + +#: ../../boot.php:1567 +msgid "permission denied" +msgstr "toegang geweigerd" + +#: ../../boot.php:1568 +msgid "Got Zot?" +msgstr "Heb je Zot?" + +#: ../../boot.php:1998 +msgid "toggle mobile" +msgstr "mobiele weergave omschakelen" + +#: ../../include/auth.php:90 +msgid "Logged out." +msgstr "Uitgelogd." + +#: ../../include/auth.php:236 +msgid "Failed authentication" +msgstr "Mislukte authenticatie" + +#: ../../include/auth.php:251 ../../mod/openid.php:188 +msgid "Login failed." +msgstr "Inloggen mislukt." + +#: ../../include/comanche.php:35 +msgid "Default" +msgstr "Standaard" + +#: ../../include/photos.php:15 ../../include/items.php:3704 +#: ../../include/attach.php:119 ../../include/attach.php:166 +#: ../../include/attach.php:229 ../../include/attach.php:243 +#: ../../include/attach.php:283 ../../include/attach.php:297 +#: ../../include/attach.php:322 ../../include/attach.php:513 +#: ../../include/attach.php:585 ../../include/chat.php:116 +#: ../../mod/settings.php:493 ../../mod/filestorage.php:10 +#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75 +#: ../../mod/filestorage.php:98 ../../mod/webpages.php:40 +#: ../../mod/authtest.php:13 ../../mod/new_channel.php:66 +#: ../../mod/new_channel.php:97 ../../mod/connections.php:169 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/photos.php:68 +#: ../../mod/photos.php:526 ../../mod/mitem.php:73 ../../mod/regmod.php:18 +#: ../../mod/mood.php:112 ../../mod/pdledit.php:21 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/menu.php:44 ../../mod/block.php:22 ../../mod/block.php:72 +#: ../../mod/suggest.php:26 ../../mod/connedit.php:254 +#: ../../mod/message.php:16 ../../mod/setup.php:203 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/thing.php:249 ../../mod/thing.php:266 +#: ../../mod/thing.php:301 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/register.php:71 +#: ../../mod/network.php:12 ../../mod/delegate.php:6 ../../mod/fsuggest.php:78 +#: ../../mod/manage.php:6 ../../mod/editpost.php:13 +#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83 +#: ../../mod/poke.php:128 ../../mod/blocks.php:29 ../../mod/blocks.php:44 +#: ../../mod/group.php:9 ../../mod/item.php:178 ../../mod/item.php:186 +#: ../../mod/item.php:916 ../../mod/appman.php:66 ../../mod/sources.php:66 +#: ../../mod/page.php:30 ../../mod/page.php:80 ../../mod/mail.php:108 +#: ../../mod/channel.php:89 ../../mod/channel.php:193 +#: ../../mod/channel.php:236 ../../mod/profiles.php:179 +#: ../../mod/profiles.php:524 ../../mod/bookmarks.php:46 +#: ../../mod/common.php:35 ../../mod/like.php:154 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/events.php:160 ../../mod/notifications.php:66 +#: ../../mod/layouts.php:27 ../../mod/layouts.php:39 +#: ../../mod/editblock.php:34 ../../mod/viewsrc.php:12 +#: ../../mod/achievements.php:27 ../../mod/editlayout.php:48 +#: ../../index.php:186 ../../index.php:361 +msgid "Permission denied." +msgstr "Toegang geweigerd" + +#: ../../include/photos.php:51 ../../include/photo/photo_driver.php:643 +#: ../../mod/photos.php:91 ../../mod/photos.php:653 ../../mod/photos.php:675 #: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91 -#: ../../mod/photos.php:653 ../../mod/photos.php:675 +#: ../../mod/profile_photo.php:421 msgid "Profile Photos" msgstr "Profielfoto's" +#: ../../include/photos.php:89 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" + +#: ../../include/photos.php:96 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg" + +#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 +msgid "Unable to process image" +msgstr "Afbeelding kan niet verwerkt worden" + +#: ../../include/photos.php:186 +msgid "Photo storage failed." +msgstr "Foto kan niet worden opgeslagen" + +#: ../../include/photos.php:313 ../../include/conversation.php:1515 +msgid "Photo Albums" +msgstr "Fotoalbums" + +#: ../../include/photos.php:317 ../../mod/photos.php:691 +#: ../../mod/photos.php:1193 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" + +#: ../../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:446 +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:392 +#: ../../mod/directory.php:222 ../../mod/directory.php:227 +msgid "Find" +msgstr "Vinden" + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +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 "Exammple: name=fred and country=iceland" +msgstr "Voorbeeld: (voor naam) name=herman en (voor land) country=nederland" + +#: ../../include/contact_widgets.php:33 +msgid "Advanced Find" +msgstr "Geavanceerd zoeken" + +#: ../../include/contact_widgets.php:58 ../../include/features.php:69 +#: ../../include/widgets.php:296 +msgid "Saved Folders" +msgstr "Bewaarde mappen" + +#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:96 +#: ../../include/widgets.php:299 +msgid "Everything" +msgstr "Alles" + +#: ../../include/contact_widgets.php:93 ../../include/widgets.php:29 +msgid "Categories" +msgstr "Categorieën" + +#: ../../include/contact_widgets.php:126 +#, 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:131 +msgid "show more" +msgstr "meer connecties weergeven" + +#: ../../include/activities.php:39 +msgid " and " +msgstr " en " + +#: ../../include/activities.php:47 +msgid "public profile" +msgstr "openbaar profiel" + +#: ../../include/activities.php:52 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" + +#: ../../include/activities.php:53 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Bezoek het %2$s van %1$s" + +#: ../../include/activities.php:56 +#, 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/items.php:295 ../../mod/subthread.php:49 +#: ../../mod/profperm.php:23 ../../mod/group.php:68 ../../mod/like.php:242 +#: ../../index.php:360 +msgid "Permission denied" +msgstr "Toegang geweigerd" + +#: ../../include/items.php:824 +msgid "(Unknown)" +msgstr "(Onbekend)" + +#: ../../include/items.php:953 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." + +#: ../../include/items.php:955 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." + +#: ../../include/items.php:957 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." + +#: ../../include/items.php:959 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." + +#: ../../include/items.php:961 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." + +#: ../../include/items.php:963 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." + +#: ../../include/items.php:965 +msgid "Visible to approved connections." +msgstr "Voor alle goedgekeurde connecties zichtbaar." + +#: ../../include/items.php:3642 ../../mod/filestorage.php:18 +#: ../../mod/home.php:67 ../../mod/admin.php:159 ../../mod/admin.php:923 +#: ../../mod/admin.php:1126 ../../mod/thing.php:78 ../../mod/display.php:32 +#: ../../mod/viewsrc.php:18 +msgid "Item not found." +msgstr "Item niet gevonden." + +#: ../../include/items.php:4075 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Collectie niet gevonden." + +#: ../../include/items.php:4090 +msgid "Collection is empty." +msgstr "Collectie is leeg" + +#: ../../include/items.php:4097 +#, php-format +msgid "Collection: %s" +msgstr "Collectie: %s" + +#: ../../include/items.php:4108 +#, php-format +msgid "Connection: %s" +msgstr "Connectie: %s" + +#: ../../include/items.php:4111 +msgid "Connection not found." +msgstr "Connectie niet gevonden." + +#: ../../include/Contact.php:107 ../../include/identity.php:675 +#: ../../include/widgets.php:128 ../../include/widgets.php:168 +#: ../../mod/dirprofile.php:164 ../../mod/suggest.php:51 +#: ../../mod/directory.php:183 ../../mod/match.php:62 +msgid "Connect" +msgstr "Verbinden" + +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "Nieuw venster" + +#: ../../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/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Diversen" + +#: ../../include/datetime.php:152 ../../include/datetime.php:284 +msgid "year" +msgstr "jaar" + +#: ../../include/datetime.php:157 ../../include/datetime.php:285 +msgid "month" +msgstr "maand" + +#: ../../include/datetime.php:162 ../../include/datetime.php:287 +msgid "day" +msgstr "dag" + +#: ../../include/datetime.php:275 +msgid "never" +msgstr "nooit" + +#: ../../include/datetime.php:281 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" + +#: ../../include/datetime.php:284 +msgid "years" +msgstr "jaren" + +#: ../../include/datetime.php:285 +msgid "months" +msgstr "maanden" + +#: ../../include/datetime.php:286 +msgid "week" +msgstr "week" + +#: ../../include/datetime.php:286 +msgid "weeks" +msgstr "weken" + +#: ../../include/datetime.php:287 +msgid "days" +msgstr "dagen" + +#: ../../include/datetime.php:288 +msgid "hour" +msgstr "uur" + +#: ../../include/datetime.php:288 +msgid "hours" +msgstr "uren" + +#: ../../include/datetime.php:289 +msgid "minute" +msgstr "minuut" + +#: ../../include/datetime.php:289 +msgid "minutes" +msgstr "minuten" + +#: ../../include/datetime.php:290 +msgid "second" +msgstr "seconde" + +#: ../../include/datetime.php:290 +msgid "seconds" +msgstr "seconden" + +#: ../../include/datetime.php:299 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" + +#: ../../include/datetime.php:504 +#, php-format +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" + +#: ../../include/datetime.php:505 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" + +#: ../../include/identity.php:30 ../../mod/item.php:1297 +msgid "Unable to obtain identity information from database" +msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" + +#: ../../include/identity.php:63 +msgid "Empty name" +msgstr "Ontbrekende naam" + +#: ../../include/identity.php:65 +msgid "Name too long" +msgstr "Naam te lang" + +#: ../../include/identity.php:166 +msgid "No account identifier" +msgstr "Geen account-identificator" + +#: ../../include/identity.php:176 +msgid "Nickname is required." +msgstr "Bijnaam is verplicht" + +#: ../../include/identity.php:190 +msgid "Reserved nickname. Please choose another." +msgstr "Deze naam is gereserveerd. Kies een andere." + +#: ../../include/identity.php:195 +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:258 +msgid "Unable to retrieve created identity" +msgstr "Niet in staat om aangemaakte identiteit te vinden" + +#: ../../include/identity.php:317 +msgid "Default Profile" +msgstr "Standaardprofiel" + +#: ../../include/identity.php:342 ../../include/profile_selectors.php:80 +#: ../../include/widgets.php:400 ../../mod/connedit.php:473 +msgid "Friends" +msgstr "Vrienden" + +#: ../../include/identity.php:509 +msgid "Requested channel is not available." +msgstr "Opgevraagd kanaal is niet beschikbaar." + +#: ../../include/identity.php:557 ../../mod/filestorage.php:40 +#: ../../mod/webpages.php:8 ../../mod/profile.php:16 ../../mod/connect.php:13 +#: ../../mod/blocks.php:10 ../../mod/layouts.php:8 +#: ../../mod/achievements.php:8 +msgid "Requested profile is not available." +msgstr "Opgevraagd profiel is niet beschikbaar" + +#: ../../include/identity.php:689 ../../mod/profiles.php:695 +msgid "Change profile photo" +msgstr "Profielfoto veranderen" + +#: ../../include/identity.php:695 +msgid "Profiles" +msgstr "Profielen" + +#: ../../include/identity.php:695 +msgid "Manage/edit profiles" +msgstr "Profielen beheren/bewerken" + +#: ../../include/identity.php:696 ../../mod/profiles.php:696 +msgid "Create New Profile" +msgstr "Nieuw profiel aanmaken" + +#: ../../include/identity.php:699 ../../include/nav.php:89 +msgid "Edit Profile" +msgstr "Profiel bewerken" + +#: ../../include/identity.php:710 ../../mod/profiles.php:707 +msgid "Profile Image" +msgstr "Profielfoto" + +#: ../../include/identity.php:713 +msgid "visible to everybody" +msgstr "Voor iedereen zichtbaar" + +#: ../../include/identity.php:714 ../../mod/profiles.php:591 +#: ../../mod/profiles.php:711 +msgid "Edit visibility" +msgstr "Zichtbaarheid bewerken" + +#: ../../include/identity.php:726 ../../include/event.php:40 +#: ../../include/bb2diaspora.php:485 ../../mod/dirprofile.php:105 +#: ../../mod/directory.php:156 ../../mod/events.php:504 +msgid "Location:" +msgstr "Plaats:" + +#: ../../include/identity.php:728 ../../include/identity.php:952 +#: ../../mod/directory.php:158 +msgid "Gender:" +msgstr "Geslacht:" + +#: ../../include/identity.php:729 ../../include/identity.php:996 +#: ../../mod/directory.php:160 +msgid "Status:" +msgstr "Status:" + +#: ../../include/identity.php:730 ../../include/identity.php:1007 +#: ../../mod/directory.php:162 +msgid "Homepage:" +msgstr "Homepagina:" + +#: ../../include/identity.php:731 ../../mod/dirprofile.php:151 +msgid "Online Now" +msgstr "Nu online" + +#: ../../include/identity.php:796 ../../include/identity.php:876 +#: ../../mod/ping.php:298 +msgid "g A l F d" +msgstr "G:i, l d F" + +#: ../../include/identity.php:797 ../../include/identity.php:877 +msgid "F d" +msgstr "d F" + +#: ../../include/identity.php:842 ../../include/identity.php:917 +#: ../../mod/ping.php:320 +msgid "[today]" +msgstr "[vandaag]" + +#: ../../include/identity.php:854 +msgid "Birthday Reminders" +msgstr "Verjaardagsherinneringen" + +#: ../../include/identity.php:855 +msgid "Birthdays this week:" +msgstr "Verjaardagen deze week:" + +#: ../../include/identity.php:910 +msgid "[No description]" +msgstr "[Geen omschrijving]" + +#: ../../include/identity.php:928 +msgid "Event Reminders" +msgstr "Herinneringen voor gebeurtenissen" + +#: ../../include/identity.php:929 +msgid "Events this week:" +msgstr "Gebeurtenissen deze week:" + +#: ../../include/identity.php:942 ../../include/identity.php:1050 +#: ../../include/apps.php:133 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profiel" + +#: ../../include/identity.php:950 ../../mod/settings.php:936 +msgid "Full Name:" +msgstr "Volledige naam:" + +#: ../../include/identity.php:957 +msgid "Like this channel" +msgstr "Vind dit kanaal leuk" + +#: ../../include/identity.php:968 ../../include/taxonomy.php:338 +#: ../../include/ItemObject.php:134 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "vindt dit leuk" +msgstr[1] "vinden dit leuk" + +#: ../../include/identity.php:981 +msgid "j F, Y" +msgstr "F j Y" + +#: ../../include/identity.php:982 +msgid "j F" +msgstr "F j" + +#: ../../include/identity.php:989 +msgid "Birthday:" +msgstr "Geboortedatum:" + +#: ../../include/identity.php:993 +msgid "Age:" +msgstr "Leeftijd:" + +#: ../../include/identity.php:1002 +#, php-format +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" + +#: ../../include/identity.php:1005 ../../mod/profiles.php:613 +msgid "Sexual Preference:" +msgstr "Seksuele voorkeur:" + +#: ../../include/identity.php:1009 ../../mod/profiles.php:615 +msgid "Hometown:" +msgstr "Oorspronkelijk uit:" + +#: ../../include/identity.php:1011 +msgid "Tags:" +msgstr "Trefwoorden:" + +#: ../../include/identity.php:1013 ../../mod/profiles.php:616 +msgid "Political Views:" +msgstr "Politieke overtuigingen:" + +#: ../../include/identity.php:1015 +msgid "Religion:" +msgstr "Religie:" + +#: ../../include/identity.php:1017 ../../mod/directory.php:164 +msgid "About:" +msgstr "Over:" + +#: ../../include/identity.php:1019 +msgid "Hobbies/Interests:" +msgstr "Hobby's/interesses:" + +#: ../../include/identity.php:1021 ../../mod/profiles.php:619 +msgid "Likes:" +msgstr "Houdt van:" + +#: ../../include/identity.php:1023 ../../mod/profiles.php:620 +msgid "Dislikes:" +msgstr "Houdt niet van:" + +#: ../../include/identity.php:1026 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" + +#: ../../include/identity.php:1028 +msgid "My other channels:" +msgstr "Mijn andere kanalen" + +#: ../../include/identity.php:1030 +msgid "Musical interests:" +msgstr "Muzikale interesses:" + +#: ../../include/identity.php:1032 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" + +#: ../../include/identity.php:1034 +msgid "Television:" +msgstr "Televisie:" + +#: ../../include/identity.php:1036 +msgid "Film/dance/culture/entertainment:" +msgstr "Films/dansen/cultuur/vermaak:" + +#: ../../include/identity.php:1038 +msgid "Love/Romance:" +msgstr "Liefde/romantiek:" + +#: ../../include/identity.php:1040 +msgid "Work/employment:" +msgstr "Werk/beroep:" + +#: ../../include/identity.php:1042 +msgid "School/education:" +msgstr "School/opleiding:" + +#: ../../include/identity.php:1052 +msgid "Like this thing" +msgstr "Vind dit ding leuk" + +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nieuwe pagina" + +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/menu.php:42 ../../include/reddav.php:1289 +#: ../../include/ItemObject.php:96 ../../include/apps.php:240 +#: ../../mod/settings.php:578 ../../mod/webpages.php:120 +#: ../../mod/connections.php:393 ../../mod/menu.php:59 ../../mod/thing.php:235 +#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:143 +#: ../../mod/blocks.php:94 ../../mod/layouts.php:112 +#: ../../mod/editblock.php:111 ../../mod/editlayout.php:106 +msgid "Edit" +msgstr "Bewerken" + +#: ../../include/page_widgets.php:39 ../../mod/webpages.php:123 +#: ../../mod/blocks.php:97 ../../mod/layouts.php:116 +msgid "View" +msgstr "Weergeven" + +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:592 +#: ../../include/conversation.php:1091 ../../mod/webpages.php:124 +#: ../../mod/photos.php:997 ../../mod/editpost.php:140 +#: ../../mod/editwebpage.php:174 ../../mod/editblock.php:141 +#: ../../mod/editlayout.php:135 +msgid "Preview" +msgstr "Voorvertoning" + +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:125 +msgid "Actions" +msgstr "Acties" + +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:126 +msgid "Page Link" +msgstr "Paginalink" + +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:127 +msgid "Title" +msgstr "Titel" + +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:128 +msgid "Created" +msgstr "Aangemaakt" + +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:129 +msgid "Edited" +msgstr "Bewerkt" + +#: ../../include/reddav.php:1145 ../../include/reddav.php:1288 +msgid "parent" +msgstr "omhoog" + +#: ../../include/reddav.php:1169 +msgid "Collection" +msgstr "map" + +#: ../../include/reddav.php:1172 +msgid "Principal" +msgstr "principal" + +#: ../../include/reddav.php:1175 +msgid "Addressbook" +msgstr "Adresboek" + +#: ../../include/reddav.php:1178 +msgid "Calendar" +msgstr "Agenda" + +#: ../../include/reddav.php:1181 +msgid "Schedule Inbox" +msgstr "Planning-postvak IN" + +#: ../../include/reddav.php:1184 +msgid "Schedule Outbox" +msgstr "Planning-postvak UIT" + +#: ../../include/reddav.php:1202 ../../include/apps.php:322 +#: ../../include/apps.php:373 ../../mod/connedit.php:476 +msgid "Unknown" +msgstr "Onbekend" + +#: ../../include/reddav.php:1262 +#, php-format +msgid "%1$s used" +msgstr "%1$s gebruikt" + +#: ../../include/reddav.php:1267 +#, php-format +msgid "%1$s used of %2$s (%3$s%)" +msgstr "%1$s van %2$s gebruikt (%3$s%)" + +#: ../../include/reddav.php:1280 ../../include/nav.php:92 +#: ../../include/apps.php:130 ../../include/conversation.php:1521 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Bestanden" + +#: ../../include/reddav.php:1284 ../../mod/settings.php:518 +#: ../../mod/settings.php:544 ../../mod/admin.php:893 +msgid "Name" +msgstr "Naam" + +#: ../../include/reddav.php:1285 +msgid "Type" +msgstr "Type" + +#: ../../include/reddav.php:1286 +msgid "Size" +msgstr "Grootte" + +#: ../../include/reddav.php:1287 +msgid "Last Modified" +msgstr "Laatst gewijzigd" + +#: ../../include/reddav.php:1290 ../../include/ItemObject.php:108 +#: ../../include/apps.php:241 ../../include/conversation.php:635 +#: ../../mod/settings.php:579 ../../mod/admin.php:758 ../../mod/admin.php:888 +#: ../../mod/photos.php:1046 ../../mod/connedit.php:440 +#: ../../mod/thing.php:236 ../../mod/group.php:176 +msgid "Delete" +msgstr "Verwijderen" + +#: ../../include/reddav.php:1291 +msgid "Total" +msgstr "Totaal" + +#: ../../include/reddav.php:1344 +msgid "Create new folder" +msgstr "Nieuwe map aanmaken" + +#: ../../include/reddav.php:1345 ../../mod/new_channel.php:117 +#: ../../mod/mitem.php:142 ../../mod/menu.php:84 +msgid "Create" +msgstr "Aanmaken" + +#: ../../include/reddav.php:1346 +msgid "Upload file" +msgstr "Bestand uploaden" + +#: ../../include/reddav.php:1347 ../../mod/profile_photo.php:361 +msgid "Upload" +msgstr "Uploaden" + +#: ../../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:42 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." + +#: ../../include/message.php:143 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." + +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "Labels" + +#: ../../include/taxonomy.php:227 +msgid "Keywords" +msgstr "Trefwoorden" + +#: ../../include/taxonomy.php:252 +msgid "have" +msgstr "heb" + +#: ../../include/taxonomy.php:252 +msgid "has" +msgstr "heeft" + +#: ../../include/taxonomy.php:253 +msgid "want" +msgstr "wil" + +#: ../../include/taxonomy.php:253 +msgid "wants" +msgstr "wil" + +#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:208 +msgid "like" +msgstr "vind dit leuk" + +#: ../../include/taxonomy.php:254 +msgid "likes" +msgstr "vindt dit leuk" + +#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:209 +msgid "dislike" +msgstr "vind dit niet leuk" + +#: ../../include/taxonomy.php:255 +msgid "dislikes" +msgstr "vindt dit niet leuk" + +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" + +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:582 +#: ../../mod/photos.php:995 ../../mod/photos.php:1082 +msgid "Comment" +msgstr "Reactie" + +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:316 +msgid "[+] show all" +msgstr "[+] alle" + +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] minder reacties weergeven" + +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] uitklappen" + +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] inklappen" + +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Wachtwoord te kort" + +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Wachtwoorden komen niet overeen" + +#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +msgid "everybody" +msgstr "iedereen" + +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Geheim wachtwoord" + +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Wachtwoordhint" + +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Mededeling: de privacy-rechten zijn veranderd, maar zijn nog niet opgeslagen." + +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alles sluiten" + +#: ../../include/js_strings.php:19 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" + +#: ../../include/js_strings.php:20 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" + +#: ../../include/js_strings.php:21 +msgid "ago" +msgstr "geleden" + +#: ../../include/js_strings.php:22 +msgid "from now" +msgstr "vanaf nu" + +#: ../../include/js_strings.php:23 +msgid "less than a minute" +msgstr "minder dan een minuut" + +#: ../../include/js_strings.php:24 +msgid "about a minute" +msgstr "ongeveer een minuut" + +#: ../../include/js_strings.php:25 +#, php-format +msgid "%d minutes" +msgstr "%d minuten" + +#: ../../include/js_strings.php:26 +msgid "about an hour" +msgstr "ongeveer een uur" + +#: ../../include/js_strings.php:27 +#, php-format +msgid "about %d hours" +msgstr "ongeveer %d uren" + +#: ../../include/js_strings.php:28 +msgid "a day" +msgstr "een dag" + +#: ../../include/js_strings.php:29 +#, php-format +msgid "%d days" +msgstr "%d dagen" + +#: ../../include/js_strings.php:30 +msgid "about a month" +msgstr "ongeveer een maand" + +#: ../../include/js_strings.php:31 +#, php-format +msgid "%d months" +msgstr "%d maanden" + +#: ../../include/js_strings.php:32 +msgid "about a year" +msgstr "ongeveer een jaar" + +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d years" +msgstr "%d jaren" + +#: ../../include/js_strings.php:34 +msgid " " +msgstr " " + +#: ../../include/js_strings.php:35 +msgid "timeago.numbers" +msgstr "timeago.numbers" + +#: ../../include/permissions.php:13 +msgid "Can view my normal stream and posts" +msgstr "Kan mijn normale kanaalstream en berichten bekijken" + +#: ../../include/permissions.php:14 +msgid "Can view my default channel profile" +msgstr "Kan mijn standaard kanaalprofiel bekijken" + +#: ../../include/permissions.php:15 +msgid "Can view my photo albums" +msgstr "Kan mijn fotoalbums bekijken" + +#: ../../include/permissions.php:16 +msgid "Can view my connections" +msgstr "Kan een lijst met mijn connecties bekijken" + +#: ../../include/permissions.php:17 +msgid "Can view my file storage" +msgstr "Kan mijn bestanden bekijken" + +#: ../../include/permissions.php:18 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" + +#: ../../include/permissions.php:21 +msgid "Can send me their channel stream and posts" +msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" + +#: ../../include/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal (\"wall\") plaatsen" + +#: ../../include/permissions.php:23 +msgid "Can comment on or like my posts" +msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" + +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" +msgstr "Kan mij privéberichten sturen" + +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" +msgstr "Kan foto's aan mijn fotoalbums toevoegen" + +#: ../../include/permissions.php:26 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" + +#: ../../include/permissions.php:28 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" + +#: ../../include/permissions.php:28 +msgid "Advanced - useful for creating group forum channels" +msgstr "Geavanceerd - nuttig voor kanalen met een groep- cq. forumfunctie" + +#: ../../include/permissions.php:29 +msgid "Can chat with me (when available)" +msgstr "Kan met mij chatten (wanneer beschikbaar)" + +#: ../../include/permissions.php:30 +msgid "Can write to my file storage" +msgstr "Kan bestanden aan mijn bestandsopslag toevoegen" + +#: ../../include/permissions.php:31 +msgid "Can edit my webpages" +msgstr "Kan mijn pagina's bewerken" + +#: ../../include/permissions.php:33 +msgid "Can source my public posts in derived channels" +msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" + +#: ../../include/permissions.php:33 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" + +#: ../../include/permissions.php:35 +msgid "Can administer my channel resources" +msgstr "Kan mijn kanaal beheren" + +#: ../../include/permissions.php:35 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." + +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Regelmatig" + +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Elk uur" + +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Twee keer per dag" + +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Dagelijks" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wekelijks" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Maandelijks" + +#: ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/event.php:11 ../../include/bb2diaspora.php:463 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:469 +msgid "Starts:" +msgstr "Start:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:477 +msgid "Finishes:" +msgstr "Einde:" + +#: ../../include/event.php:326 +msgid "This event has been added to your calendar." +msgstr "Dit evenement is aan jouw agenda toegevoegd." + +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Male" +msgstr "Man" + +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Female" +msgstr "Vrouw" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Momenteel man" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Momenteel vrouw" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Voornamelijk man" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Voornamelijk vrouw" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Interseksueel" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transseksueel" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodiet" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Genderneutraal" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Niet gespecificeerd" + +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 +msgid "Other" +msgstr "Anders" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Nog niet beslist" + +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" +msgstr "Mannen" + +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" +msgstr "Vrouwen" + +#: ../../include/profile_selectors.php:42 +msgid "Gay" +msgstr "Homoseksueel" + +#: ../../include/profile_selectors.php:42 +msgid "Lesbian" +msgstr "Lesbisch" + +#: ../../include/profile_selectors.php:42 +msgid "No Preference" +msgstr "Geen voorkeur" + +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" +msgstr "Biseksueel" + +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" +msgstr "Autoseksueel" + +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" +msgstr "Seksuele onthouding" + +#: ../../include/profile_selectors.php:42 +msgid "Virgin" +msgstr "Maagd" + +#: ../../include/profile_selectors.php:42 +msgid "Deviant" +msgstr "Afwijkend" + +#: ../../include/profile_selectors.php:42 +msgid "Fetish" +msgstr "Fetisj" + +#: ../../include/profile_selectors.php:42 +msgid "Oodles" +msgstr "Veel" + +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" +msgstr "Aseksueel" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" +msgstr "Alleen" + +#: ../../include/profile_selectors.php:80 +msgid "Lonely" +msgstr "Eenzaam" + +#: ../../include/profile_selectors.php:80 +msgid "Available" +msgstr "Beschikbaar" + +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" +msgstr "Niet beschikbaar" + +#: ../../include/profile_selectors.php:80 +msgid "Has crush" +msgstr "Heeft een oogje op iemand" + +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" +msgstr "Smoorverliefd" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" +msgstr "Aan het daten" + +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" +msgstr "Ontrouw" + +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" +msgstr "Seksverslaafd" + +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" +msgstr "Vriendschap plus" + +#: ../../include/profile_selectors.php:80 +msgid "Casual" +msgstr "Ongebonden/vluchtig" + +#: ../../include/profile_selectors.php:80 +msgid "Engaged" +msgstr "Verloofd" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" +msgstr "Getrouwd" + +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" +msgstr "Denkbeeldig getrouwd" + +#: ../../include/profile_selectors.php:80 +msgid "Partners" +msgstr "Partners" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" +msgstr "Samenwonend" + +#: ../../include/profile_selectors.php:80 +msgid "Common law" +msgstr "Common-law-huwelijk" + +#: ../../include/profile_selectors.php:80 +msgid "Happy" +msgstr "Gelukkig" + +#: ../../include/profile_selectors.php:80 +msgid "Not looking" +msgstr "Niet op zoek" + +#: ../../include/profile_selectors.php:80 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" +msgstr "Verraden" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" +msgstr "Uit elkaar" + +#: ../../include/profile_selectors.php:80 +msgid "Unstable" +msgstr "Onstabiel" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" +msgstr "Gescheiden" + +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" +msgstr "Denkbeeldig gescheiden" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" +msgstr "Weduwnaar/weduwe" + +#: ../../include/profile_selectors.php:80 +msgid "Uncertain" +msgstr "Onzeker" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" +msgstr "Het is ingewikkeld" + +#: ../../include/profile_selectors.php:80 +msgid "Don't care" +msgstr "Maakt mij niks uit" + +#: ../../include/profile_selectors.php:80 +msgid "Ask me" +msgstr "Vraag het me" + +#: ../../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 "Registratieverzoek op %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 "Registratiedetails 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/oembed.php:163 msgid "Embedded content" msgstr "Ingesloten inhoud" @@ -38,14 +1654,309 @@ msgstr "Ingesloten inhoud" msgid "Embedding disabled" msgstr "Insluiten uitgeschakeld" -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "maakte een nieuw bericht aan" +#: ../../include/zot.php:624 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" -#: ../../include/notify.php:24 +#: ../../include/zot.php:634 +msgid "Unable to verify channel signature" +msgstr "Kanaal-kenmerk (channel signature) kon niet worden geverifieerd. " + +#: ../../include/zot.php:831 #, php-format -msgid "commented on %s's post" -msgstr "gaf een reactie op een bericht van %s" +msgid "Unable to verify site signature for %s" +msgstr "Hub-kenmerk (site signature) voor %s kon niet worden geverifieerd" + +#: ../../include/network.php:652 +msgid "view full size" +msgstr "volledige grootte tonen" + +#: ../../include/dba/dba_driver.php:50 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" + +#: ../../include/group.php:25 +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:234 +msgid "Default privacy group for new contacts" +msgstr "Standaard privacy-collectie voor nieuwe kanalen" + +#: ../../include/group.php:253 ../../mod/admin.php:763 +msgid "All Channels" +msgstr "Alle kanalen" + +#: ../../include/group.php:275 +msgid "edit" +msgstr "bewerken" + +#: ../../include/group.php:296 +msgid "Collections" +msgstr "Collecties" + +#: ../../include/group.php:297 +msgid "Edit collection" +msgstr "Collectie bewerken" + +#: ../../include/group.php:298 +msgid "Create a new collection" +msgstr "Nieuwe collectie aanmaken" + +#: ../../include/group.php:299 +msgid "Channels not in any collection" +msgstr "Kanalen die zich in geen enkele collectie bevinden" + +#: ../../include/group.php:301 ../../include/widgets.php:266 +msgid "add" +msgstr "toevoegen" + +#: ../../include/attach.php:224 ../../include/attach.php:278 +msgid "Item was not found." +msgstr "Item niet gevonden" + +#: ../../include/attach.php:335 +msgid "No source file." +msgstr "Geen bronbestand." + +#: ../../include/attach.php:352 +msgid "Cannot locate file to replace" +msgstr "Kan het te vervangen bestand niet vinden" + +#: ../../include/attach.php:370 +msgid "Cannot locate file to revise/update" +msgstr "Kan het bestand wat aangepast moet worden niet vinden" + +#: ../../include/attach.php:381 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Bestand is groter dan de toegelaten %d" + +#: ../../include/attach.php:393 +#, 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/attach.php:475 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." + +#: ../../include/attach.php:487 +msgid "Stored file could not be verified. Upload failed." +msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." + +#: ../../include/attach.php:528 ../../include/attach.php:545 +msgid "Path not available." +msgstr "Pad niet beschikbaar." + +#: ../../include/attach.php:590 +msgid "Empty pathname" +msgstr "Padnaam leeg" + +#: ../../include/attach.php:606 +msgid "duplicate filename or path" +msgstr "dubbele bestandsnaam of pad" + +#: ../../include/attach.php:630 +msgid "Path not found." +msgstr "Pad niet gevonden" + +#: ../../include/attach.php:681 +msgid "mkdir failed." +msgstr "directory aanmaken (mkdir) mislukt." + +#: ../../include/attach.php:685 +msgid "database storage failed." +msgstr "opslag in database mislukt." + +#: ../../include/ItemObject.php:89 ../../include/conversation.php:642 +#: ../../mod/photos.php:844 +msgid "Private Message" +msgstr "Privébericht" + +#: ../../include/ItemObject.php:114 ../../include/conversation.php:634 +msgid "Select" +msgstr "Kies" + +#: ../../include/ItemObject.php:118 +msgid "Save to Folder" +msgstr "In map opslaan" + +#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142 +msgid "View all" +msgstr "Toon alles" + +#: ../../include/ItemObject.php:139 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "vindt dit niet leuk" +msgstr[1] "vinden dit niet leuk" + +#: ../../include/ItemObject.php:167 +msgid "Add Star" +msgstr "Ster toevoegen" + +#: ../../include/ItemObject.php:168 +msgid "Remove Star" +msgstr "Ster verwijderen" + +#: ../../include/ItemObject.php:169 +msgid "Toggle Star Status" +msgstr "Ster toevoegen of verwijderen" + +#: ../../include/ItemObject.php:173 +msgid "starred" +msgstr "met ster" + +#: ../../include/ItemObject.php:182 ../../include/conversation.php:649 +msgid "Message is verified" +msgstr "Bericht is geverifieerd" + +#: ../../include/ItemObject.php:190 +msgid "Add Tag" +msgstr "Label toevoegen" + +#: ../../include/ItemObject.php:208 ../../mod/photos.php:974 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" + +#: ../../include/ItemObject.php:209 ../../mod/photos.php:975 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: ../../include/ItemObject.php:211 +msgid "Share This" +msgstr "Delen" + +#: ../../include/ItemObject.php:211 +msgid "share" +msgstr "delen" + +#: ../../include/ItemObject.php:235 ../../include/ItemObject.php:236 +#, php-format +msgid "View %s's profile - %s" +msgstr "Profiel van %s bekijken - %s" + +#: ../../include/ItemObject.php:237 +msgid "to" +msgstr "aan" + +#: ../../include/ItemObject.php:238 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:239 +msgid "Wall-to-Wall" +msgstr "Kanaal-naar-kanaal" + +#: ../../include/ItemObject.php:240 +msgid "via Wall-To-Wall:" +msgstr "via kanaal-naar-kanaal" + +#: ../../include/ItemObject.php:250 ../../include/conversation.php:693 +#, php-format +msgid " from %s" +msgstr " van %s" + +#: ../../include/ItemObject.php:253 ../../include/conversation.php:696 +#, php-format +msgid "last edited: %s" +msgstr "laatst bewerkt: %s" + +#: ../../include/ItemObject.php:254 ../../include/conversation.php:697 +#, php-format +msgid "Expires: %s" +msgstr "Verloopt: %s" + +#: ../../include/ItemObject.php:274 +msgid "Save Bookmarks" +msgstr "Bladwijzers opslaan" + +#: ../../include/ItemObject.php:275 +msgid "Add to Calendar" +msgstr "Aan agenda toevoegen" + +#: ../../include/ItemObject.php:283 +msgctxt "noun" +msgid "Likes" +msgstr "vinden dit leuk" + +#: ../../include/ItemObject.php:284 +msgctxt "noun" +msgid "Dislikes" +msgstr "vinden dit niet leuk" + +#: ../../include/ItemObject.php:289 ../../include/acl_selectors.php:249 +msgid "Close" +msgstr "Sluiten" + +#: ../../include/ItemObject.php:294 ../../include/conversation.php:714 +#: ../../include/conversation.php:1130 ../../mod/photos.php:977 +#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:152 +#: ../../mod/mail.php:231 ../../mod/mail.php:346 ../../mod/editblock.php:120 +#: ../../mod/editlayout.php:115 +msgid "Please wait" +msgstr "Even wachten" + +#: ../../include/ItemObject.php:315 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties weergeven" + +#: ../../include/ItemObject.php:580 ../../mod/photos.php:993 +#: ../../mod/photos.php:1080 +msgid "This is you" +msgstr "Dit ben jij" + +#: ../../include/ItemObject.php:584 +msgid "Bold" +msgstr "Vet" + +#: ../../include/ItemObject.php:585 +msgid "Italic" +msgstr "Cursief" + +#: ../../include/ItemObject.php:586 +msgid "Underline" +msgstr "Onderstrepen" + +#: ../../include/ItemObject.php:587 +msgid "Quote" +msgstr "Citeren" + +#: ../../include/ItemObject.php:588 +msgid "Code" +msgstr "Broncode" + +#: ../../include/ItemObject.php:589 +msgid "Image" +msgstr "Afbeelding" + +#: ../../include/ItemObject.php:590 +msgid "Link" +msgstr "Link" + +#: ../../include/ItemObject.php:591 +msgid "Video" +msgstr "Video" + +#: ../../include/ItemObject.php:595 ../../include/conversation.php:1156 +#: ../../mod/editpost.php:148 ../../mod/mail.php:237 ../../mod/mail.php:351 +msgid "Encrypt text" +msgstr "Tekst versleutelen" + +#: ../../include/security.php:301 +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/text.php:321 msgid "prev" @@ -93,8 +2004,8 @@ msgid "Search" msgstr "Zoeken" #: ../../include/text.php:817 ../../include/text.php:831 -#: ../../include/widgets.php:186 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 +#: ../../include/widgets.php:186 ../../mod/filer.php:50 +#: ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 msgid "Save" msgstr "Opslaan" @@ -392,895 +2303,6 @@ msgstr "Layouts" msgid "Pages" msgstr "Pagina's" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nieuwe pagina" - -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/reddav.php:1289 ../../include/apps.php:240 -#: ../../include/menu.php:42 ../../include/ItemObject.php:96 -#: ../../mod/settings.php:578 ../../mod/blocks.php:94 -#: ../../mod/connections.php:393 ../../mod/editblock.php:111 -#: ../../mod/editlayout.php:106 ../../mod/editpost.php:112 -#: ../../mod/editwebpage.php:143 ../../mod/thing.php:235 -#: ../../mod/layouts.php:112 ../../mod/menu.php:59 ../../mod/webpages.php:120 -msgid "Edit" -msgstr "Bewerken" - -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:97 -#: ../../mod/layouts.php:116 ../../mod/webpages.php:123 -msgid "View" -msgstr "Weergeven" - -#: ../../include/page_widgets.php:40 ../../include/conversation.php:1091 -#: ../../include/ItemObject.php:592 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 -#: ../../mod/editwebpage.php:174 ../../mod/photos.php:997 -#: ../../mod/webpages.php:124 -msgid "Preview" -msgstr "Voorvertoning" - -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:125 -msgid "Actions" -msgstr "Acties" - -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:126 -msgid "Page Link" -msgstr "Paginalink" - -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:127 -msgid "Title" -msgstr "Titel" - -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:128 -msgid "Created" -msgstr "Aangemaakt" - -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:129 -msgid "Edited" -msgstr "Bewerkt" - -#: ../../include/security.php:301 -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/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 "Registratieverzoek op %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 "Registratiedetails 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/photos.php:15 ../../include/attach.php:119 -#: ../../include/attach.php:166 ../../include/attach.php:229 -#: ../../include/attach.php:243 ../../include/attach.php:283 -#: ../../include/attach.php:297 ../../include/attach.php:322 -#: ../../include/attach.php:513 ../../include/attach.php:585 -#: ../../include/chat.php:116 ../../include/items.php:3664 -#: ../../mod/mood.php:112 ../../mod/mitem.php:73 ../../mod/achievements.php:27 -#: ../../mod/settings.php:493 ../../mod/poke.php:128 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/authtest.php:13 ../../mod/profile.php:64 -#: ../../mod/profile.php:72 ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:523 ../../mod/bookmarks.php:46 -#: ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/register.php:71 ../../mod/regmod.php:18 ../../mod/common.php:35 -#: ../../mod/network.php:12 ../../mod/connections.php:169 -#: ../../mod/connedit.php:254 ../../mod/delegate.php:6 ../../mod/page.php:30 -#: ../../mod/page.php:80 ../../mod/setup.php:203 ../../mod/editblock.php:34 -#: ../../mod/pdledit.php:21 ../../mod/editlayout.php:48 -#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:44 -#: ../../mod/editwebpage.php:83 ../../mod/photos.php:68 -#: ../../mod/photos.php:526 ../../mod/sources.php:66 ../../mod/events.php:160 -#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59 -#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98 -#: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9 -#: ../../mod/thing.php:249 ../../mod/thing.php:266 ../../mod/thing.php:301 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:179 -#: ../../mod/item.php:187 ../../mod/item.php:908 ../../mod/layouts.php:27 -#: ../../mod/layouts.php:39 ../../mod/like.php:154 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/viewsrc.php:12 ../../mod/mail.php:108 ../../mod/manage.php:6 -#: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/message.php:16 -#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 -#: ../../mod/notifications.php:66 ../../mod/appman.php:66 ../../index.php:186 -#: ../../index.php:361 -msgid "Permission denied." -msgstr "Toegang geweigerd" - -#: ../../include/photos.php:89 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" - -#: ../../include/photos.php:96 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" - -#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 -msgid "Unable to process image" -msgstr "Afbeelding kan niet verwerkt worden" - -#: ../../include/photos.php:186 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" - -#: ../../include/photos.php:313 ../../include/conversation.php:1515 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: ../../include/photos.php:317 ../../mod/photos.php:691 -#: ../../mod/photos.php:1193 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" - -#: ../../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/chat.php:209 -#: ../../mod/photos.php:604 ../../mod/photos.php:952 -#: ../../mod/filestorage.php:128 -msgid "Permissions" -msgstr "Privacy-rechten" - -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:289 -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:52 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" - -#: ../../include/activities.php:53 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Bezoek het %2$s van %1$s" - -#: ../../include/activities.php:56 -#, 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:1016 -msgid "Public Timeline" -msgstr "Openbare tijdlijn" - -#: ../../include/attach.php:224 ../../include/attach.php:278 -msgid "Item was not found." -msgstr "Item niet gevonden" - -#: ../../include/attach.php:335 -msgid "No source file." -msgstr "Geen bronbestand." - -#: ../../include/attach.php:352 -msgid "Cannot locate file to replace" -msgstr "Kan het te vervangen bestand niet vinden" - -#: ../../include/attach.php:370 -msgid "Cannot locate file to revise/update" -msgstr "Kan het bestand wat aangepast moet worden niet vinden" - -#: ../../include/attach.php:381 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" - -#: ../../include/attach.php:393 -#, 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/attach.php:475 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." - -#: ../../include/attach.php:487 -msgid "Stored file could not be verified. Upload failed." -msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." - -#: ../../include/attach.php:528 ../../include/attach.php:545 -msgid "Path not available." -msgstr "Pad niet beschikbaar." - -#: ../../include/attach.php:590 -msgid "Empty pathname" -msgstr "Padnaam leeg" - -#: ../../include/attach.php:606 -msgid "duplicate filename or path" -msgstr "dubbele bestandsnaam of pad" - -#: ../../include/attach.php:630 -msgid "Path not found." -msgstr "Pad niet gevonden" - -#: ../../include/attach.php:681 -msgid "mkdir failed." -msgstr "directory aanmaken (mkdir) mislukt." - -#: ../../include/attach.php:685 -msgid "database storage failed." -msgstr "opslag in database mislukt." - -#: ../../include/plugin.php:504 ../../include/plugin.php:506 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." - -#: ../../include/plugin.php:512 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." - -#: ../../include/plugin.php:517 -msgid "This action is not available under your subscription plan." -msgstr "Deze handeling is niet mogelijk met jouw abonnement." - -#: ../../include/bb2diaspora.php:463 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: ../../include/bb2diaspora.php:469 ../../include/event.php:20 -msgid "Starts:" -msgstr "Start:" - -#: ../../include/bb2diaspora.php:477 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Einde:" - -#: ../../include/bb2diaspora.php:485 ../../include/event.php:40 -#: ../../include/identity.php:726 ../../mod/directory.php:156 -#: ../../mod/dirprofile.php:105 ../../mod/events.php:504 -msgid "Location:" -msgstr "Plaats:" - -#: ../../include/nav.php:81 ../../include/nav.php:108 ../../boot.php:1492 -msgid "Logout" -msgstr "Uitloggen" - -#: ../../include/nav.php:81 ../../include/nav.php:108 -msgid "End this session" -msgstr "Beëindig deze sessie" - -#: ../../include/nav.php:84 ../../include/nav.php:142 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:84 -msgid "Your posts and conversations" -msgstr "Jouw berichten en conversaties" - -#: ../../include/nav.php:85 ../../include/conversation.php:940 -#: ../../mod/connedit.php:394 ../../mod/connedit.php:508 -msgid "View Profile" -msgstr "Profiel weergeven" - -#: ../../include/nav.php:85 -msgid "Your profile page" -msgstr "Jouw profielpagina" - -#: ../../include/nav.php:87 -msgid "Edit Profiles" -msgstr "Bewerk profielen" - -#: ../../include/nav.php:87 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" - -#: ../../include/nav.php:89 ../../include/identity.php:699 -msgid "Edit Profile" -msgstr "Profiel bewerken" - -#: ../../include/nav.php:89 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" - -#: ../../include/nav.php:91 ../../include/conversation.php:1512 -#: ../../include/apps.php:134 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto's" - -#: ../../include/nav.php:91 -msgid "Your photos" -msgstr "Jouw foto's" - -#: ../../include/nav.php:92 ../../include/reddav.php:1280 -#: ../../include/conversation.php:1521 ../../include/apps.php:130 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Bestanden" - -#: ../../include/nav.php:92 -msgid "Your files" -msgstr "Jouw bestanden" - -#: ../../include/nav.php:97 ../../include/apps.php:141 -msgid "Chat" -msgstr "Chatten" - -#: ../../include/nav.php:97 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" - -#: ../../include/nav.php:100 ../../include/conversation.php:1543 -#: ../../include/apps.php:124 -msgid "Bookmarks" -msgstr "Bladwijzers" - -#: ../../include/nav.php:100 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" - -#: ../../include/nav.php:102 ../../include/conversation.php:1554 -#: ../../include/apps.php:131 ../../mod/webpages.php:79 -msgid "Webpages" -msgstr "Webpagina's" - -#: ../../include/nav.php:102 -msgid "Your webpages" -msgstr "Jouw webpagina's" - -#: ../../include/nav.php:106 ../../include/apps.php:126 ../../boot.php:1493 -msgid "Login" -msgstr "Inloggen" - -#: ../../include/nav.php:106 -msgid "Sign in" -msgstr "Inloggen" - -#: ../../include/nav.php:123 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" - -#: ../../include/nav.php:128 -msgid "Click to authenticate to your home hub" -msgstr "Klik om jezelf te authenticeren via jouw eigen RedMatrix-hub" - -#: ../../include/nav.php:142 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:146 ../../mod/register.php:221 ../../boot.php:1469 -msgid "Register" -msgstr "Registreren " - -#: ../../include/nav.php:146 -msgid "Create an account" -msgstr "Maak een account aan" - -#: ../../include/nav.php:151 ../../include/apps.php:137 ../../mod/help.php:60 -#: ../../mod/help.php:65 -msgid "Help" -msgstr "Hulp" - -#: ../../include/nav.php:151 -msgid "Help and documentation" -msgstr "Hulp en documentatie" - -#: ../../include/nav.php:154 ../../include/widgets.php:79 -#: ../../mod/apps.php:33 -msgid "Apps" -msgstr "Apps" - -#: ../../include/nav.php:154 -msgid "Applications, utilities, links, games" -msgstr "Apps" - -#: ../../include/nav.php:156 -msgid "Search site content" -msgstr "Inhoud van deze RedMatrix-hub doorzoeken" - -#: ../../include/nav.php:159 ../../include/apps.php:136 -#: ../../mod/directory.php:218 -msgid "Directory" -msgstr "Gids" - -#: ../../include/nav.php:159 -msgid "Channel Locator" -msgstr "Kanalengids" - -#: ../../include/nav.php:170 ../../include/apps.php:128 -msgid "Matrix" -msgstr "Matrix" - -#: ../../include/nav.php:170 -msgid "Your matrix" -msgstr "Jouw matrix" - -#: ../../include/nav.php:171 -msgid "Mark all matrix notifications seen" -msgstr "Markeer alle matrixnotificaties als bekeken" - -#: ../../include/nav.php:173 ../../include/apps.php:132 -msgid "Channel Home" -msgstr "Tijdlijn kanaal" - -#: ../../include/nav.php:173 -msgid "Channel home" -msgstr "Tijdlijn kanaal" - -#: ../../include/nav.php:174 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" - -#: ../../include/nav.php:177 ../../mod/connections.php:386 -msgid "Connections" -msgstr "Connecties" - -#: ../../include/nav.php:180 -msgid "Notices" -msgstr "Notificaties" - -#: ../../include/nav.php:180 -msgid "Notifications" -msgstr "Notificaties" - -#: ../../include/nav.php:181 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" - -#: ../../include/nav.php:182 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" - -#: ../../include/nav.php:184 ../../include/apps.php:138 -msgid "Mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:184 -msgid "Private mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:185 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" - -#: ../../include/nav.php:186 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" - -#: ../../include/nav.php:187 -msgid "Inbox" -msgstr "Postvak IN" - -#: ../../include/nav.php:188 -msgid "Outbox" -msgstr "Postvak UIT" - -#: ../../include/nav.php:189 ../../include/widgets.php:536 -msgid "New Message" -msgstr "Nieuw bericht" - -#: ../../include/nav.php:192 ../../include/apps.php:135 -#: ../../mod/events.php:396 -msgid "Events" -msgstr "Gebeurtenissen" - -#: ../../include/nav.php:192 -msgid "Event Calendar" -msgstr "Agenda" - -#: ../../include/nav.php:193 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" - -#: ../../include/nav.php:194 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" - -#: ../../include/nav.php:196 ../../include/apps.php:127 -msgid "Channel Select" -msgstr "Kanaalkiezer" - -#: ../../include/nav.php:196 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" - -#: ../../include/nav.php:198 ../../include/apps.php:129 -#: ../../include/widgets.php:514 ../../mod/admin.php:978 -#: ../../mod/admin.php:1183 -msgid "Settings" -msgstr "Instellingen" - -#: ../../include/nav.php:198 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" - -#: ../../include/nav.php:206 ../../mod/admin.php:117 -msgid "Admin" -msgstr "Beheer" - -#: ../../include/nav.php:206 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" - -#: ../../include/nav.php:231 -msgid "Nothing new here" -msgstr "Niets nieuw hier" - -#: ../../include/nav.php:235 -msgid "Please wait..." -msgstr "Wachten aub..." - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Bladwijzers van %1$s" - -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "Labels" - -#: ../../include/taxonomy.php:227 -msgid "Keywords" -msgstr "Trefwoorden" - -#: ../../include/taxonomy.php:252 -msgid "have" -msgstr "heb" - -#: ../../include/taxonomy.php:252 -msgid "has" -msgstr "heeft" - -#: ../../include/taxonomy.php:253 -msgid "want" -msgstr "wil" - -#: ../../include/taxonomy.php:253 -msgid "wants" -msgstr "wil" - -#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:208 -msgid "like" -msgstr "vind dit leuk" - -#: ../../include/taxonomy.php:254 -msgid "likes" -msgstr "vindt dit leuk" - -#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:209 -msgid "dislike" -msgstr "vind dit niet leuk" - -#: ../../include/taxonomy.php:255 -msgid "dislikes" -msgstr "vindt dit niet leuk" - -#: ../../include/taxonomy.php:338 ../../include/identity.php:968 -#: ../../include/ItemObject.php:134 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "vindt dit leuk" -msgstr[1] "vinden dit leuk" - -#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standaard" - -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Regelmatig" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Elk uur" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Twee keer per dag" - -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Dagelijks" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wekelijks" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Maandelijks" - -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:754 -#: ../../mod/admin.php:763 ../../boot.php:1495 -msgid "Email" -msgstr "E-mail" - -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../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:446 -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:392 -#: ../../mod/directory.php:214 ../../mod/directory.php:219 -msgid "Find" -msgstr "Vinden" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -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 "Exammple: name=fred and country=iceland" -msgstr "Voorbeeld: (voor naam) name=herman en (voor land) country=nederland" - -#: ../../include/contact_widgets.php:33 -msgid "Advanced Find" -msgstr "Geavanceerd zoeken" - -#: ../../include/contact_widgets.php:58 ../../include/features.php:69 -#: ../../include/widgets.php:296 -msgid "Saved Folders" -msgstr "Bewaarde mappen" - -#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:96 -#: ../../include/widgets.php:299 -msgid "Everything" -msgstr "Alles" - -#: ../../include/contact_widgets.php:93 ../../include/widgets.php:29 -msgid "Categories" -msgstr "Categorieën" - -#: ../../include/contact_widgets.php:126 -#, 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:131 -msgid "show more" -msgstr "meer connecties weergeven" - -#: ../../include/event.php:326 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." - -#: ../../include/zot.php:624 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" - -#: ../../include/zot.php:634 -msgid "Unable to verify channel signature" -msgstr "Kanaal-kenmerk (channel signature) kon niet worden geverifieerd. " - -#: ../../include/zot.php:831 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hub-kenmerk (site signature) voor %s kon niet worden geverifieerd" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Diversen" - -#: ../../include/datetime.php:152 ../../include/datetime.php:284 -msgid "year" -msgstr "jaar" - -#: ../../include/datetime.php:157 ../../include/datetime.php:285 -msgid "month" -msgstr "maand" - -#: ../../include/datetime.php:162 ../../include/datetime.php:287 -msgid "day" -msgstr "dag" - -#: ../../include/datetime.php:275 -msgid "never" -msgstr "nooit" - -#: ../../include/datetime.php:281 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: ../../include/datetime.php:284 -msgid "years" -msgstr "jaren" - -#: ../../include/datetime.php:285 -msgid "months" -msgstr "maanden" - -#: ../../include/datetime.php:286 -msgid "week" -msgstr "week" - -#: ../../include/datetime.php:286 -msgid "weeks" -msgstr "weken" - -#: ../../include/datetime.php:287 -msgid "days" -msgstr "dagen" - -#: ../../include/datetime.php:288 -msgid "hour" -msgstr "uur" - -#: ../../include/datetime.php:288 -msgid "hours" -msgstr "uren" - -#: ../../include/datetime.php:289 -msgid "minute" -msgstr "minuut" - -#: ../../include/datetime.php:289 -msgid "minutes" -msgstr "minuten" - -#: ../../include/datetime.php:290 -msgid "second" -msgstr "seconde" - -#: ../../include/datetime.php:290 -msgid "seconds" -msgstr "seconden" - -#: ../../include/datetime.php:299 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" - -#: ../../include/datetime.php:504 -#, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" - -#: ../../include/datetime.php:505 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gefeliciteerd met je verjaardag %1$s" - #: ../../include/dir_fns.php:36 msgid "Sort Options" msgstr "Sorteeropties" @@ -1309,6 +2331,37 @@ msgstr "Veilig zoeken uitschakelen" msgid "Safe Mode" msgstr "Veilig zoeken" +#: ../../include/bbcode.php:112 ../../include/bbcode.php:645 +#: ../../include/bbcode.php:648 ../../include/bbcode.php:653 +#: ../../include/bbcode.php:656 ../../include/bbcode.php:659 +#: ../../include/bbcode.php:662 ../../include/bbcode.php:667 +#: ../../include/bbcode.php:670 ../../include/bbcode.php:675 +#: ../../include/bbcode.php:678 ../../include/bbcode.php:681 +#: ../../include/bbcode.php:684 +msgid "Image/photo" +msgstr "Afbeelding/foto" + +#: ../../include/bbcode.php:147 ../../include/bbcode.php:695 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: ../../include/bbcode.php:163 +msgid "QR code" +msgstr "QR-code" + +#: ../../include/bbcode.php:212 +#, 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:214 +msgid "post" +msgstr "bericht" + +#: ../../include/bbcode.php:613 ../../include/bbcode.php:633 +msgid "$1 wrote:" +msgstr "$1 schreef:" + #: ../../include/enotify.php:41 msgid "Red Matrix Notification" msgstr "RedMatrix-notificatie" @@ -1501,524 +2554,257 @@ 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/reddav.php:1145 ../../include/reddav.php:1288 -msgid "parent" -msgstr "omhoog" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Bladwijzers van %1$s" -#: ../../include/reddav.php:1169 -msgid "Collection" -msgstr "map" +#: ../../include/nav.php:81 ../../include/nav.php:108 +msgid "End this session" +msgstr "Beëindig deze sessie" -#: ../../include/reddav.php:1172 -msgid "Principal" -msgstr "principal" +#: ../../include/nav.php:84 ../../include/nav.php:142 +msgid "Home" +msgstr "Home" -#: ../../include/reddav.php:1175 -msgid "Addressbook" -msgstr "Adresboek" +#: ../../include/nav.php:84 +msgid "Your posts and conversations" +msgstr "Jouw berichten en conversaties" -#: ../../include/reddav.php:1178 -msgid "Calendar" +#: ../../include/nav.php:85 ../../include/conversation.php:940 +#: ../../mod/connedit.php:393 ../../mod/connedit.php:507 +msgid "View Profile" +msgstr "Profiel weergeven" + +#: ../../include/nav.php:85 +msgid "Your profile page" +msgstr "Jouw profielpagina" + +#: ../../include/nav.php:87 +msgid "Edit Profiles" +msgstr "Bewerk profielen" + +#: ../../include/nav.php:87 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" + +#: ../../include/nav.php:89 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" + +#: ../../include/nav.php:91 ../../include/apps.php:134 +#: ../../include/conversation.php:1512 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto's" + +#: ../../include/nav.php:91 +msgid "Your photos" +msgstr "Jouw foto's" + +#: ../../include/nav.php:92 +msgid "Your files" +msgstr "Jouw bestanden" + +#: ../../include/nav.php:97 ../../include/apps.php:141 +msgid "Chat" +msgstr "Chatten" + +#: ../../include/nav.php:97 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" + +#: ../../include/nav.php:100 ../../include/apps.php:124 +#: ../../include/conversation.php:1543 +msgid "Bookmarks" +msgstr "Bladwijzers" + +#: ../../include/nav.php:100 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" + +#: ../../include/nav.php:102 ../../include/apps.php:131 +#: ../../include/conversation.php:1554 ../../mod/webpages.php:79 +msgid "Webpages" +msgstr "Webpagina's" + +#: ../../include/nav.php:102 +msgid "Your webpages" +msgstr "Jouw webpagina's" + +#: ../../include/nav.php:106 +msgid "Sign in" +msgstr "Inloggen" + +#: ../../include/nav.php:123 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" + +#: ../../include/nav.php:128 +msgid "Click to authenticate to your home hub" +msgstr "Klik om jezelf te authenticeren via jouw eigen RedMatrix-hub" + +#: ../../include/nav.php:142 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:146 +msgid "Create an account" +msgstr "Maak een account aan" + +#: ../../include/nav.php:151 ../../include/apps.php:137 ../../mod/help.php:60 +#: ../../mod/help.php:65 +msgid "Help" +msgstr "Hulp" + +#: ../../include/nav.php:151 +msgid "Help and documentation" +msgstr "Hulp en documentatie" + +#: ../../include/nav.php:154 ../../include/widgets.php:79 +#: ../../mod/apps.php:33 +msgid "Apps" +msgstr "Apps" + +#: ../../include/nav.php:154 +msgid "Applications, utilities, links, games" +msgstr "Apps" + +#: ../../include/nav.php:156 +msgid "Search site content" +msgstr "Inhoud van deze RedMatrix-hub doorzoeken" + +#: ../../include/nav.php:159 ../../include/apps.php:136 +#: ../../mod/directory.php:226 +msgid "Directory" +msgstr "Gids" + +#: ../../include/nav.php:159 +msgid "Channel Locator" +msgstr "Kanalengids" + +#: ../../include/nav.php:170 ../../include/apps.php:128 +msgid "Matrix" +msgstr "Matrix" + +#: ../../include/nav.php:170 +msgid "Your matrix" +msgstr "Jouw matrix" + +#: ../../include/nav.php:171 +msgid "Mark all matrix notifications seen" +msgstr "Markeer alle matrixnotificaties als bekeken" + +#: ../../include/nav.php:173 ../../include/apps.php:132 +msgid "Channel Home" +msgstr "Tijdlijn kanaal" + +#: ../../include/nav.php:173 +msgid "Channel home" +msgstr "Tijdlijn kanaal" + +#: ../../include/nav.php:174 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" + +#: ../../include/nav.php:177 ../../mod/connections.php:386 +msgid "Connections" +msgstr "Connecties" + +#: ../../include/nav.php:180 +msgid "Notices" +msgstr "Notificaties" + +#: ../../include/nav.php:180 +msgid "Notifications" +msgstr "Notificaties" + +#: ../../include/nav.php:181 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" + +#: ../../include/nav.php:182 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" + +#: ../../include/nav.php:184 ../../include/apps.php:138 +msgid "Mail" +msgstr "Privéberichten" + +#: ../../include/nav.php:184 +msgid "Private mail" +msgstr "Privéberichten" + +#: ../../include/nav.php:185 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" + +#: ../../include/nav.php:186 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" + +#: ../../include/nav.php:187 +msgid "Inbox" +msgstr "Postvak IN" + +#: ../../include/nav.php:188 +msgid "Outbox" +msgstr "Postvak UIT" + +#: ../../include/nav.php:189 ../../include/widgets.php:536 +msgid "New Message" +msgstr "Nieuw bericht" + +#: ../../include/nav.php:192 ../../include/apps.php:135 +#: ../../mod/events.php:396 +msgid "Events" +msgstr "Gebeurtenissen" + +#: ../../include/nav.php:192 +msgid "Event Calendar" msgstr "Agenda" -#: ../../include/reddav.php:1181 -msgid "Schedule Inbox" -msgstr "Planning-postvak IN" - -#: ../../include/reddav.php:1184 -msgid "Schedule Outbox" -msgstr "Planning-postvak UIT" - -#: ../../include/reddav.php:1202 ../../include/apps.php:322 -#: ../../include/apps.php:373 ../../mod/connedit.php:477 -msgid "Unknown" -msgstr "Onbekend" - -#: ../../include/reddav.php:1262 -#, php-format -msgid "%1$s used" -msgstr "%1$s gebruikt" - -#: ../../include/reddav.php:1267 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s van %2$s gebruikt (%3$s%)" - -#: ../../include/reddav.php:1284 ../../mod/settings.php:518 -#: ../../mod/settings.php:544 ../../mod/admin.php:893 -msgid "Name" -msgstr "Naam" - -#: ../../include/reddav.php:1285 -msgid "Type" -msgstr "Type" - -#: ../../include/reddav.php:1286 -msgid "Size" -msgstr "Grootte" - -#: ../../include/reddav.php:1287 -msgid "Last Modified" -msgstr "Laatst gewijzigd" - -#: ../../include/reddav.php:1290 ../../include/conversation.php:635 -#: ../../include/apps.php:241 ../../include/ItemObject.php:108 -#: ../../mod/settings.php:579 ../../mod/connedit.php:441 -#: ../../mod/photos.php:1046 ../../mod/group.php:176 ../../mod/admin.php:758 -#: ../../mod/admin.php:888 ../../mod/thing.php:236 -msgid "Delete" -msgstr "Verwijderen" - -#: ../../include/reddav.php:1291 -msgid "Total" -msgstr "Totaal" - -#: ../../include/reddav.php:1344 -msgid "Create new folder" -msgstr "Nieuwe map aanmaken" - -#: ../../include/reddav.php:1345 ../../mod/mitem.php:142 ../../mod/menu.php:84 -#: ../../mod/new_channel.php:117 -msgid "Create" -msgstr "Aanmaken" - -#: ../../include/reddav.php:1346 -msgid "Upload file" -msgstr "Bestand uploaden" - -#: ../../include/reddav.php:1347 ../../mod/profile_photo.php:361 -msgid "Upload" -msgstr "Uploaden" - -#: ../../include/conversation.php:126 ../../mod/like.php:89 -msgid "channel" -msgstr "kanaal" - -#: ../../include/conversation.php:164 ../../mod/like.php:331 -#, 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:333 -#, 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:634 ../../include/ItemObject.php:114 -msgid "Select" -msgstr "Kies" - -#: ../../include/conversation.php:642 ../../include/ItemObject.php:89 -#: ../../mod/photos.php:844 -msgid "Private Message" -msgstr "Privébericht" - -#: ../../include/conversation.php:649 ../../include/ItemObject.php:182 -msgid "Message is verified" -msgstr "Bericht is geverifieerd" - -#: ../../include/conversation.php:669 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Bekijk het profiel van %s @ %s" - -#: ../../include/conversation.php:683 -msgid "Categories:" -msgstr "Categorieën:" - -#: ../../include/conversation.php:684 -msgid "Filed under:" -msgstr "Bewaard onder:" - -#: ../../include/conversation.php:693 ../../include/ItemObject.php:250 -#, php-format -msgid " from %s" -msgstr " van %s" - -#: ../../include/conversation.php:696 ../../include/ItemObject.php:253 -#, php-format -msgid "last edited: %s" -msgstr "laatst bewerkt: %s" - -#: ../../include/conversation.php:697 ../../include/ItemObject.php:254 -#, php-format -msgid "Expires: %s" -msgstr "Verloopt: %s" - -#: ../../include/conversation.php:712 -msgid "View in context" -msgstr "In context bekijken" - -#: ../../include/conversation.php:714 ../../include/conversation.php:1130 -#: ../../include/ItemObject.php:294 ../../mod/editblock.php:120 -#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 -#: ../../mod/editwebpage.php:152 ../../mod/photos.php:977 -#: ../../mod/mail.php:231 ../../mod/mail.php:346 -msgid "Please wait" -msgstr "Even wachten" - -#: ../../include/conversation.php:841 -msgid "remove" -msgstr "verwijderen" - -#: ../../include/conversation.php:845 -msgid "Loading..." -msgstr "Aan het laden..." - -#: ../../include/conversation.php:846 -msgid "Delete Selected Items" -msgstr "Verwijder de geselecteerde items" - -#: ../../include/conversation.php:937 -msgid "View Source" -msgstr "Bron weergeven" - -#: ../../include/conversation.php:938 -msgid "Follow Thread" -msgstr "Conversatie volgen" - -#: ../../include/conversation.php:939 -msgid "View Status" -msgstr "Status weergeven" - -#: ../../include/conversation.php:941 -msgid "View Photos" -msgstr "Foto's weergeven" - -#: ../../include/conversation.php:942 -msgid "Matrix Activity" -msgstr "Activiteit in de Matrix" - -#: ../../include/conversation.php:943 -msgid "Edit Contact" -msgstr "Contact bewerken" - -#: ../../include/conversation.php:944 -msgid "Send PM" -msgstr "Privébericht verzenden" - -#: ../../include/conversation.php:945 ../../include/apps.php:140 -msgid "Poke" -msgstr "Aanstoten" - -#: ../../include/conversation.php:1001 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." - -#: ../../include/conversation.php:1001 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." - -#: ../../include/conversation.php:1005 -#, 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:1007 -#, 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:1013 -msgid "and" -msgstr "en" - -#: ../../include/conversation.php:1016 -#, 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:1017 -#, php-format -msgid "%s like this." -msgstr "%s vinden dit leuk." - -#: ../../include/conversation.php:1017 -#, php-format -msgid "%s don't like this." -msgstr "%s vinden dit niet leuk." - -#: ../../include/conversation.php:1074 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" - -#: ../../include/conversation.php:1075 ../../mod/mail.php:167 -#: ../../mod/mail.php:279 -msgid "Please enter a link URL:" -msgstr "Vul een internetadres/URL in:" - -#: ../../include/conversation.php:1076 -msgid "Please enter a video link/URL:" -msgstr "Vul een videolink/URL in:" - -#: ../../include/conversation.php:1077 -msgid "Please enter an audio link/URL:" -msgstr "Vul een audiolink/URL in:" - -#: ../../include/conversation.php:1078 -msgid "Tag term:" -msgstr "Label:" - -#: ../../include/conversation.php:1079 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Bewaar in map: " - -#: ../../include/conversation.php:1080 -msgid "Where are you right now?" -msgstr "Waar bevind je je op dit moment?" - -#: ../../include/conversation.php:1081 ../../mod/editpost.php:52 -#: ../../mod/mail.php:168 ../../mod/mail.php:280 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verloopt op DD-MM-YYYY om HH:MM" - -#: ../../include/conversation.php:1105 ../../mod/photos.php:976 -#: ../../mod/layouts.php:113 -msgid "Share" -msgstr "Delen" - -#: ../../include/conversation.php:1107 ../../mod/editwebpage.php:139 -msgid "Page link title" -msgstr "Titel van paginalink" - -#: ../../include/conversation.php:1110 -msgid "Post as" -msgstr "Bericht plaatsen als" - -#: ../../include/conversation.php:1111 ../../mod/editblock.php:112 -#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:144 ../../mod/mail.php:228 ../../mod/mail.php:342 -msgid "Upload photo" -msgstr "Foto uploaden" - -#: ../../include/conversation.php:1112 -msgid "upload photo" -msgstr "foto uploaden" - -#: ../../include/conversation.php:1113 ../../mod/editblock.php:113 -#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:145 ../../mod/mail.php:229 ../../mod/mail.php:343 -msgid "Attach file" -msgstr "Bestand toevoegen" - -#: ../../include/conversation.php:1114 -msgid "attach file" -msgstr "bestand toevoegen" - -#: ../../include/conversation.php:1115 ../../mod/editblock.php:114 -#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:146 ../../mod/mail.php:230 ../../mod/mail.php:344 -msgid "Insert web link" -msgstr "Weblink invoegen" - -#: ../../include/conversation.php:1116 -msgid "web link" -msgstr "Weblink" - -#: ../../include/conversation.php:1117 -msgid "Insert video link" -msgstr "Videolink invoegen" - -#: ../../include/conversation.php:1118 -msgid "video link" -msgstr "videolink" - -#: ../../include/conversation.php:1119 -msgid "Insert audio link" -msgstr "Audiolink invoegen" - -#: ../../include/conversation.php:1120 -msgid "audio link" -msgstr "audiolink" - -#: ../../include/conversation.php:1121 ../../mod/editblock.php:118 -#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:150 -msgid "Set your location" -msgstr "Locatie instellen" - -#: ../../include/conversation.php:1122 -msgid "set location" -msgstr "locatie instellen" - -#: ../../include/conversation.php:1123 ../../mod/editblock.php:119 -#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:151 -msgid "Clear browser location" -msgstr "Locatie van webbrowser wissen" - -#: ../../include/conversation.php:1124 -msgid "clear location" -msgstr "locatie wissen" - -#: ../../include/conversation.php:1126 ../../mod/editblock.php:132 -#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:167 -msgid "Set title" -msgstr "Titel instellen" - -#: ../../include/conversation.php:1129 ../../mod/editblock.php:135 -#: ../../mod/editlayout.php:129 ../../mod/editpost.php:134 -#: ../../mod/editwebpage.php:169 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (door komma's gescheiden lijst)" - -#: ../../include/conversation.php:1131 ../../mod/editblock.php:121 -#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:153 -msgid "Permission settings" -msgstr "Privacy-rechten" - -#: ../../include/conversation.php:1132 -msgid "permissions" -msgstr "privacy-rechten" - -#: ../../include/conversation.php:1139 ../../mod/editblock.php:129 -#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:162 -msgid "Public post" -msgstr "Openbaar bericht" - -#: ../../include/conversation.php:1141 ../../mod/editblock.php:136 -#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:170 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" - -#: ../../include/conversation.php:1154 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:179 ../../mod/mail.php:235 ../../mod/mail.php:349 -msgid "Set expiration date" -msgstr "Verloopdatum instellen" - -#: ../../include/conversation.php:1156 ../../include/ItemObject.php:595 -#: ../../mod/editpost.php:148 ../../mod/mail.php:237 ../../mod/mail.php:351 -msgid "Encrypt text" -msgstr "Tekst versleutelen" - -#: ../../include/conversation.php:1158 ../../mod/editpost.php:150 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1159 ../../mod/settings.php:517 -#: ../../mod/settings.php:543 ../../mod/editpost.php:151 -#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 -msgid "Cancel" -msgstr "Annuleren" - -#: ../../include/conversation.php:1401 -msgid "Discover" -msgstr "Ontdekken" - -#: ../../include/conversation.php:1404 -msgid "Imported public streams" -msgstr "Openbare streams importeren" - -#: ../../include/conversation.php:1409 -msgid "Commented Order" -msgstr "Nieuwe reacties bovenaan" - -#: ../../include/conversation.php:1412 -msgid "Sort by Comment Date" -msgstr "Berichten met nieuwe reacties bovenaan" - -#: ../../include/conversation.php:1416 -msgid "Posted Order" -msgstr "Nieuwe berichten bovenaan" - -#: ../../include/conversation.php:1419 -msgid "Sort by Post Date" -msgstr "Nieuwe berichten bovenaan" - -#: ../../include/conversation.php:1424 ../../include/widgets.php:82 -msgid "Personal" -msgstr "Persoonlijk" - -#: ../../include/conversation.php:1427 -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:1433 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:61 -msgid "New" -msgstr "Nieuw" - -#: ../../include/conversation.php:1436 -msgid "Activity Stream - by date" -msgstr "Activiteitenstroom - volgens datum" - -#: ../../include/conversation.php:1442 -msgid "Starred" -msgstr "Met ster" - -#: ../../include/conversation.php:1445 -msgid "Favourite Posts" -msgstr "Favoriete berichten" - -#: ../../include/conversation.php:1452 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1455 -msgid "Posts flagged as SPAM" -msgstr "Berichten gemarkeerd als SPAM" - -#: ../../include/conversation.php:1491 ../../mod/admin.php:892 -msgid "Channel" -msgstr "Kanaal" - -#: ../../include/conversation.php:1494 -msgid "Status Messages and Posts" -msgstr "Berichten in dit kanaal" - -#: ../../include/conversation.php:1503 -msgid "About" -msgstr "Over" - -#: ../../include/conversation.php:1506 -msgid "Profile Details" -msgstr "Profiel" - -#: ../../include/conversation.php:1524 -msgid "Files and Storage" -msgstr "Bestanden en opslagruimte" - -#: ../../include/conversation.php:1533 ../../include/conversation.php:1536 -msgid "Chatrooms" -msgstr "Chatkanalen" - -#: ../../include/conversation.php:1546 -msgid "Saved Bookmarks" -msgstr "Opgeslagen bladwijzers" - -#: ../../include/conversation.php:1557 -msgid "Manage Webpages" -msgstr "Webpagina's beheren" +#: ../../include/nav.php:193 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" + +#: ../../include/nav.php:194 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" + +#: ../../include/nav.php:196 ../../include/apps.php:127 +msgid "Channel Select" +msgstr "Kanaalkiezer" + +#: ../../include/nav.php:196 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" + +#: ../../include/nav.php:198 ../../include/apps.php:129 +#: ../../include/widgets.php:514 ../../mod/admin.php:978 +#: ../../mod/admin.php:1183 +msgid "Settings" +msgstr "Instellingen" + +#: ../../include/nav.php:198 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" + +#: ../../include/nav.php:206 ../../mod/admin.php:117 +msgid "Admin" +msgstr "Beheer" + +#: ../../include/nav.php:206 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" + +#: ../../include/nav.php:231 +msgid "Nothing new here" +msgstr "Niets nieuw hier" + +#: ../../include/nav.php:235 +msgid "Please wait..." +msgstr "Wachten aub..." #: ../../include/features.php:23 msgid "General Features" @@ -2254,348 +3040,14 @@ msgstr "Wolk met trefwoorden/labels" msgid "Provide a personal tag cloud on your channel page" msgstr "Zorgt voor een persoonlijke wolk met trefwoorden of labels op jouw kanaalpagina" -#: ../../include/follow.php:23 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "maakte een nieuw bericht aan" -#: ../../include/follow.php:28 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." - -#: ../../include/follow.php:54 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." - -#: ../../include/follow.php:85 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." - -#: ../../include/follow.php:132 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." - -#: ../../include/follow.php:149 -msgid "local account not found." -msgstr "lokale account niet gevonden." - -#: ../../include/follow.php:158 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" - -#: ../../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/group.php:25 -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:234 -msgid "Default privacy group for new contacts" -msgstr "Standaard privacy-collectie voor nieuwe kanalen" - -#: ../../include/group.php:253 ../../mod/admin.php:763 -msgid "All Channels" -msgstr "Alle kanalen" - -#: ../../include/group.php:275 -msgid "edit" -msgstr "bewerken" - -#: ../../include/group.php:296 -msgid "Collections" -msgstr "Collecties" - -#: ../../include/group.php:297 -msgid "Edit collection" -msgstr "Collectie bewerken" - -#: ../../include/group.php:298 -msgid "Create a new collection" -msgstr "Nieuwe collectie aanmaken" - -#: ../../include/group.php:299 -msgid "Channels not in any collection" -msgstr "Kanalen die zich in geen enkele collectie bevinden" - -#: ../../include/group.php:301 ../../include/widgets.php:266 -msgid "add" -msgstr "toevoegen" - -#: ../../include/identity.php:30 ../../mod/item.php:1289 -msgid "Unable to obtain identity information from database" -msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" - -#: ../../include/identity.php:63 -msgid "Empty name" -msgstr "Ontbrekende naam" - -#: ../../include/identity.php:65 -msgid "Name too long" -msgstr "Naam te lang" - -#: ../../include/identity.php:166 -msgid "No account identifier" -msgstr "Geen account-identificator" - -#: ../../include/identity.php:176 -msgid "Nickname is required." -msgstr "Bijnaam is verplicht" - -#: ../../include/identity.php:190 -msgid "Reserved nickname. Please choose another." -msgstr "Deze naam is gereserveerd. Kies een andere." - -#: ../../include/identity.php:195 -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:258 -msgid "Unable to retrieve created identity" -msgstr "Niet in staat om aangemaakte identiteit te vinden" - -#: ../../include/identity.php:317 -msgid "Default Profile" -msgstr "Standaardprofiel" - -#: ../../include/identity.php:342 ../../include/widgets.php:400 -#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:474 -msgid "Friends" -msgstr "Vrienden" - -#: ../../include/identity.php:509 -msgid "Requested channel is not available." -msgstr "Opgevraagd kanaal is niet beschikbaar." - -#: ../../include/identity.php:557 ../../mod/achievements.php:8 -#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13 -#: ../../mod/filestorage.php:40 ../../mod/layouts.php:8 -#: ../../mod/webpages.php:8 -msgid "Requested profile is not available." -msgstr "Opgevraagd profiel is niet beschikbaar" - -#: ../../include/identity.php:675 ../../include/widgets.php:128 -#: ../../include/widgets.php:168 ../../include/Contact.php:107 -#: ../../mod/directory.php:183 ../../mod/dirprofile.php:164 -#: ../../mod/suggest.php:51 ../../mod/match.php:62 -msgid "Connect" -msgstr "Verbinden" - -#: ../../include/identity.php:689 ../../mod/profiles.php:693 -msgid "Change profile photo" -msgstr "Profielfoto veranderen" - -#: ../../include/identity.php:695 -msgid "Profiles" -msgstr "Profielen" - -#: ../../include/identity.php:695 -msgid "Manage/edit profiles" -msgstr "Profielen beheren/bewerken" - -#: ../../include/identity.php:696 ../../mod/profiles.php:694 -msgid "Create New Profile" -msgstr "Nieuw profiel aanmaken" - -#: ../../include/identity.php:710 ../../mod/profiles.php:705 -msgid "Profile Image" -msgstr "Profielfoto" - -#: ../../include/identity.php:713 ../../mod/profiles.php:708 -msgid "visible to everybody" -msgstr "Voor iedereen zichtbaar" - -#: ../../include/identity.php:714 ../../mod/profiles.php:590 -#: ../../mod/profiles.php:709 -msgid "Edit visibility" -msgstr "Zichtbaarheid bewerken" - -#: ../../include/identity.php:728 ../../include/identity.php:952 -#: ../../mod/directory.php:158 -msgid "Gender:" -msgstr "Geslacht:" - -#: ../../include/identity.php:729 ../../include/identity.php:996 -#: ../../mod/directory.php:160 -msgid "Status:" -msgstr "Status:" - -#: ../../include/identity.php:730 ../../include/identity.php:1007 -#: ../../mod/directory.php:162 -msgid "Homepage:" -msgstr "Homepagina:" - -#: ../../include/identity.php:731 ../../mod/dirprofile.php:151 -msgid "Online Now" -msgstr "Nu online" - -#: ../../include/identity.php:796 ../../include/identity.php:876 -#: ../../mod/ping.php:298 -msgid "g A l F d" -msgstr "G:i, l d F" - -#: ../../include/identity.php:797 ../../include/identity.php:877 -msgid "F d" -msgstr "d F" - -#: ../../include/identity.php:842 ../../include/identity.php:917 -#: ../../mod/ping.php:320 -msgid "[today]" -msgstr "[vandaag]" - -#: ../../include/identity.php:854 -msgid "Birthday Reminders" -msgstr "Verjaardagsherinneringen" - -#: ../../include/identity.php:855 -msgid "Birthdays this week:" -msgstr "Verjaardagen deze week:" - -#: ../../include/identity.php:910 -msgid "[No description]" -msgstr "[Geen omschrijving]" - -#: ../../include/identity.php:928 -msgid "Event Reminders" -msgstr "Herinneringen voor gebeurtenissen" - -#: ../../include/identity.php:929 -msgid "Events this week:" -msgstr "Gebeurtenissen deze week:" - -#: ../../include/identity.php:942 ../../include/identity.php:1050 -#: ../../include/apps.php:133 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profiel" - -#: ../../include/identity.php:950 ../../mod/settings.php:936 -msgid "Full Name:" -msgstr "Volledige naam:" - -#: ../../include/identity.php:957 -msgid "Like this channel" -msgstr "Vind dit kanaal leuk" - -#: ../../include/identity.php:981 -msgid "j F, Y" -msgstr "F j Y" - -#: ../../include/identity.php:982 -msgid "j F" -msgstr "F j" - -#: ../../include/identity.php:989 -msgid "Birthday:" -msgstr "Geboortedatum:" - -#: ../../include/identity.php:993 -msgid "Age:" -msgstr "Leeftijd:" - -#: ../../include/identity.php:1002 +#: ../../include/notify.php:24 #, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" - -#: ../../include/identity.php:1005 ../../mod/profiles.php:612 -msgid "Sexual Preference:" -msgstr "Seksuele voorkeur:" - -#: ../../include/identity.php:1009 ../../mod/profiles.php:614 -msgid "Hometown:" -msgstr "Oorspronkelijk uit:" - -#: ../../include/identity.php:1011 -msgid "Tags:" -msgstr "Trefwoorden:" - -#: ../../include/identity.php:1013 ../../mod/profiles.php:615 -msgid "Political Views:" -msgstr "Politieke overtuigingen:" - -#: ../../include/identity.php:1015 -msgid "Religion:" -msgstr "Religie:" - -#: ../../include/identity.php:1017 ../../mod/directory.php:164 -msgid "About:" -msgstr "Over:" - -#: ../../include/identity.php:1019 -msgid "Hobbies/Interests:" -msgstr "Hobby's/interesses:" - -#: ../../include/identity.php:1021 ../../mod/profiles.php:618 -msgid "Likes:" -msgstr "Houdt van:" - -#: ../../include/identity.php:1023 ../../mod/profiles.php:619 -msgid "Dislikes:" -msgstr "Houdt niet van:" - -#: ../../include/identity.php:1026 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" - -#: ../../include/identity.php:1028 -msgid "My other channels:" -msgstr "Mijn andere kanalen" - -#: ../../include/identity.php:1030 -msgid "Musical interests:" -msgstr "Muzikale interesses:" - -#: ../../include/identity.php:1032 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" - -#: ../../include/identity.php:1034 -msgid "Television:" -msgstr "Televisie:" - -#: ../../include/identity.php:1036 -msgid "Film/dance/culture/entertainment:" -msgstr "Films/dansen/cultuur/vermaak:" - -#: ../../include/identity.php:1038 -msgid "Love/Romance:" -msgstr "Liefde/romantiek:" - -#: ../../include/identity.php:1040 -msgid "Work/employment:" -msgstr "Werk/beroep:" - -#: ../../include/identity.php:1042 -msgid "School/education:" -msgstr "School/opleiding:" - -#: ../../include/identity.php:1052 -msgid "Like this thing" -msgstr "Vind dit ding leuk" - -#: ../../include/network.php:652 -msgid "view full size" -msgstr "volledige grootte tonen" +msgid "commented on %s's post" +msgstr "gaf een reactie op een bericht van %s" #: ../../include/apps.php:123 msgid "Site Admin" @@ -2609,6 +3061,10 @@ msgstr "Connecties" msgid "Mood" msgstr "Stemming" +#: ../../include/apps.php:140 ../../include/conversation.php:945 +msgid "Poke" +msgstr "Aanstoten" + #: ../../include/apps.php:143 msgid "Probe" msgstr "Onderzoeken" @@ -2630,52 +3086,431 @@ msgstr "Installeren" msgid "Purchase" msgstr "Aanschaffen" -#: ../../include/bbcode.php:112 ../../include/bbcode.php:645 -#: ../../include/bbcode.php:648 ../../include/bbcode.php:653 -#: ../../include/bbcode.php:656 ../../include/bbcode.php:659 -#: ../../include/bbcode.php:662 ../../include/bbcode.php:667 -#: ../../include/bbcode.php:670 ../../include/bbcode.php:675 -#: ../../include/bbcode.php:678 ../../include/bbcode.php:681 -#: ../../include/bbcode.php:684 -msgid "Image/photo" -msgstr "Afbeelding/foto" +#: ../../include/api.php:1016 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" -#: ../../include/bbcode.php:147 ../../include/bbcode.php:695 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Naam chatkanaal ontbreekt" -#: ../../include/bbcode.php:163 -msgid "QR code" -msgstr "QR-code" +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Naam chatkanaal bestaat al" -#: ../../include/bbcode.php:212 +#: ../../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/conversation.php:126 ../../mod/like.php:89 +msgid "channel" +msgstr "kanaal" + +#: ../../include/conversation.php:164 ../../mod/like.php:331 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schreef het volgende %2$s %3$s" +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s leuk" -#: ../../include/bbcode.php:214 -msgid "post" -msgstr "bericht" +#: ../../include/conversation.php:167 ../../mod/like.php:333 +#, 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/bbcode.php:613 ../../include/bbcode.php:633 -msgid "$1 wrote:" -msgstr "$1 schreef:" +#: ../../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/message.php:18 -msgid "No recipient provided." -msgstr "Geen ontvanger opgegeven." +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s heeft %2$s aangestoten" -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[geen onderwerp]" +#: ../../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/message.php:42 -msgid "Unable to determine sender." -msgstr "Afzender kan niet bepaald worden." +#: ../../include/conversation.php:669 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Bekijk het profiel van %s @ %s" -#: ../../include/message.php:143 -msgid "Stored post could not be verified." -msgstr "Opgeslagen bericht kon niet worden geverifieerd." +#: ../../include/conversation.php:683 +msgid "Categories:" +msgstr "Categorieën:" + +#: ../../include/conversation.php:684 +msgid "Filed under:" +msgstr "Bewaard onder:" + +#: ../../include/conversation.php:712 +msgid "View in context" +msgstr "In context bekijken" + +#: ../../include/conversation.php:841 +msgid "remove" +msgstr "verwijderen" + +#: ../../include/conversation.php:845 +msgid "Loading..." +msgstr "Aan het laden..." + +#: ../../include/conversation.php:846 +msgid "Delete Selected Items" +msgstr "Verwijder de geselecteerde items" + +#: ../../include/conversation.php:937 +msgid "View Source" +msgstr "Bron weergeven" + +#: ../../include/conversation.php:938 +msgid "Follow Thread" +msgstr "Conversatie volgen" + +#: ../../include/conversation.php:939 +msgid "View Status" +msgstr "Status weergeven" + +#: ../../include/conversation.php:941 +msgid "View Photos" +msgstr "Foto's weergeven" + +#: ../../include/conversation.php:942 +msgid "Matrix Activity" +msgstr "Activiteit in de Matrix" + +#: ../../include/conversation.php:943 +msgid "Edit Contact" +msgstr "Contact bewerken" + +#: ../../include/conversation.php:944 +msgid "Send PM" +msgstr "Privébericht verzenden" + +#: ../../include/conversation.php:1001 +#, php-format +msgid "%s likes this." +msgstr "%s vindt dit leuk." + +#: ../../include/conversation.php:1001 +#, php-format +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." + +#: ../../include/conversation.php:1005 +#, 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:1007 +#, 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:1013 +msgid "and" +msgstr "en" + +#: ../../include/conversation.php:1016 +#, 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:1017 +#, php-format +msgid "%s like this." +msgstr "%s vinden dit leuk." + +#: ../../include/conversation.php:1017 +#, php-format +msgid "%s don't like this." +msgstr "%s vinden dit niet leuk." + +#: ../../include/conversation.php:1074 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" + +#: ../../include/conversation.php:1075 ../../mod/mail.php:167 +#: ../../mod/mail.php:279 +msgid "Please enter a link URL:" +msgstr "Vul een internetadres/URL in:" + +#: ../../include/conversation.php:1076 +msgid "Please enter a video link/URL:" +msgstr "Vul een videolink/URL in:" + +#: ../../include/conversation.php:1077 +msgid "Please enter an audio link/URL:" +msgstr "Vul een audiolink/URL in:" + +#: ../../include/conversation.php:1078 +msgid "Tag term:" +msgstr "Label:" + +#: ../../include/conversation.php:1079 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Bewaar in map: " + +#: ../../include/conversation.php:1080 +msgid "Where are you right now?" +msgstr "Waar bevind je je op dit moment?" + +#: ../../include/conversation.php:1081 ../../mod/editpost.php:52 +#: ../../mod/mail.php:168 ../../mod/mail.php:280 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verloopt op DD-MM-YYYY om HH:MM" + +#: ../../include/conversation.php:1105 ../../mod/photos.php:976 +#: ../../mod/layouts.php:113 +msgid "Share" +msgstr "Delen" + +#: ../../include/conversation.php:1107 ../../mod/editwebpage.php:139 +msgid "Page link title" +msgstr "Titel van paginalink" + +#: ../../include/conversation.php:1110 +msgid "Post as" +msgstr "Bericht plaatsen als" + +#: ../../include/conversation.php:1111 ../../mod/editpost.php:113 +#: ../../mod/editwebpage.php:144 ../../mod/mail.php:228 ../../mod/mail.php:342 +#: ../../mod/editblock.php:112 ../../mod/editlayout.php:107 +msgid "Upload photo" +msgstr "Foto uploaden" + +#: ../../include/conversation.php:1112 +msgid "upload photo" +msgstr "foto uploaden" + +#: ../../include/conversation.php:1113 ../../mod/editpost.php:114 +#: ../../mod/editwebpage.php:145 ../../mod/mail.php:229 ../../mod/mail.php:343 +#: ../../mod/editblock.php:113 ../../mod/editlayout.php:108 +msgid "Attach file" +msgstr "Bestand toevoegen" + +#: ../../include/conversation.php:1114 +msgid "attach file" +msgstr "bestand toevoegen" + +#: ../../include/conversation.php:1115 ../../mod/editpost.php:115 +#: ../../mod/editwebpage.php:146 ../../mod/mail.php:230 ../../mod/mail.php:344 +#: ../../mod/editblock.php:114 ../../mod/editlayout.php:109 +msgid "Insert web link" +msgstr "Weblink invoegen" + +#: ../../include/conversation.php:1116 +msgid "web link" +msgstr "Weblink" + +#: ../../include/conversation.php:1117 +msgid "Insert video link" +msgstr "Videolink invoegen" + +#: ../../include/conversation.php:1118 +msgid "video link" +msgstr "videolink" + +#: ../../include/conversation.php:1119 +msgid "Insert audio link" +msgstr "Audiolink invoegen" + +#: ../../include/conversation.php:1120 +msgid "audio link" +msgstr "audiolink" + +#: ../../include/conversation.php:1121 ../../mod/editpost.php:119 +#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:118 +#: ../../mod/editlayout.php:113 +msgid "Set your location" +msgstr "Locatie instellen" + +#: ../../include/conversation.php:1122 +msgid "set location" +msgstr "locatie instellen" + +#: ../../include/conversation.php:1123 ../../mod/editpost.php:120 +#: ../../mod/editwebpage.php:151 ../../mod/editblock.php:119 +#: ../../mod/editlayout.php:114 +msgid "Clear browser location" +msgstr "Locatie van webbrowser wissen" + +#: ../../include/conversation.php:1124 +msgid "clear location" +msgstr "locatie wissen" + +#: ../../include/conversation.php:1126 ../../mod/editpost.php:132 +#: ../../mod/editwebpage.php:167 ../../mod/editblock.php:132 +#: ../../mod/editlayout.php:126 +msgid "Set title" +msgstr "Titel instellen" + +#: ../../include/conversation.php:1129 ../../mod/editpost.php:134 +#: ../../mod/editwebpage.php:169 ../../mod/editblock.php:135 +#: ../../mod/editlayout.php:129 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (door komma's gescheiden lijst)" + +#: ../../include/conversation.php:1131 ../../mod/editpost.php:122 +#: ../../mod/editwebpage.php:153 ../../mod/editblock.php:121 +#: ../../mod/editlayout.php:116 +msgid "Permission settings" +msgstr "Privacy-rechten" + +#: ../../include/conversation.php:1132 +msgid "permissions" +msgstr "privacy-rechten" + +#: ../../include/conversation.php:1139 ../../mod/editpost.php:129 +#: ../../mod/editwebpage.php:162 ../../mod/editblock.php:129 +#: ../../mod/editlayout.php:123 +msgid "Public post" +msgstr "Openbaar bericht" + +#: ../../include/conversation.php:1141 ../../mod/editpost.php:135 +#: ../../mod/editwebpage.php:170 ../../mod/editblock.php:136 +#: ../../mod/editlayout.php:130 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" + +#: ../../include/conversation.php:1154 ../../mod/editpost.php:146 +#: ../../mod/editwebpage.php:179 ../../mod/mail.php:235 ../../mod/mail.php:349 +#: ../../mod/editblock.php:146 ../../mod/editlayout.php:140 +msgid "Set expiration date" +msgstr "Verloopdatum instellen" + +#: ../../include/conversation.php:1158 ../../mod/editpost.php:150 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1159 ../../mod/settings.php:517 +#: ../../mod/settings.php:543 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:151 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +msgid "Cancel" +msgstr "Annuleren" + +#: ../../include/conversation.php:1401 +msgid "Discover" +msgstr "Ontdekken" + +#: ../../include/conversation.php:1404 +msgid "Imported public streams" +msgstr "Openbare streams importeren" + +#: ../../include/conversation.php:1409 +msgid "Commented Order" +msgstr "Nieuwe reacties bovenaan" + +#: ../../include/conversation.php:1412 +msgid "Sort by Comment Date" +msgstr "Berichten met nieuwe reacties bovenaan" + +#: ../../include/conversation.php:1416 +msgid "Posted Order" +msgstr "Nieuwe berichten bovenaan" + +#: ../../include/conversation.php:1419 +msgid "Sort by Post Date" +msgstr "Nieuwe berichten bovenaan" + +#: ../../include/conversation.php:1424 ../../include/widgets.php:82 +msgid "Personal" +msgstr "Persoonlijk" + +#: ../../include/conversation.php:1427 +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:1433 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:61 +msgid "New" +msgstr "Nieuw" + +#: ../../include/conversation.php:1436 +msgid "Activity Stream - by date" +msgstr "Activiteitenstroom - volgens datum" + +#: ../../include/conversation.php:1442 +msgid "Starred" +msgstr "Met ster" + +#: ../../include/conversation.php:1445 +msgid "Favourite Posts" +msgstr "Favoriete berichten" + +#: ../../include/conversation.php:1452 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1455 +msgid "Posts flagged as SPAM" +msgstr "Berichten gemarkeerd als SPAM" + +#: ../../include/conversation.php:1491 ../../mod/admin.php:892 +msgid "Channel" +msgstr "Kanaal" + +#: ../../include/conversation.php:1494 +msgid "Status Messages and Posts" +msgstr "Berichten in dit kanaal" + +#: ../../include/conversation.php:1503 +msgid "About" +msgstr "Over" + +#: ../../include/conversation.php:1506 +msgid "Profile Details" +msgstr "Profiel" + +#: ../../include/conversation.php:1524 +msgid "Files and Storage" +msgstr "Bestanden en opslagruimte" + +#: ../../include/conversation.php:1533 ../../include/conversation.php:1536 +msgid "Chatrooms" +msgstr "Chatkanalen" + +#: ../../include/conversation.php:1546 +msgid "Saved Bookmarks" +msgstr "Opgeslagen bladwijzers" + +#: ../../include/conversation.php:1557 +msgid "Manage Webpages" +msgstr "Webpagina's beheren" + +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, zoals dit van te voren is 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/filestorage.php:128 +#: ../../mod/photos.php:604 ../../mod/photos.php:952 ../../mod/chat.php:209 +msgid "Permissions" +msgstr "Privacy-rechten" #: ../../include/widgets.php:80 msgid "System" @@ -2734,11 +3569,11 @@ msgstr "Archieven" msgid "Refresh" msgstr "Vernieuwen" -#: ../../include/widgets.php:398 ../../mod/connedit.php:471 +#: ../../include/widgets.php:398 ../../mod/connedit.php:470 msgid "Me" msgstr "Ik" -#: ../../include/widgets.php:399 ../../mod/connedit.php:473 +#: ../../include/widgets.php:399 ../../mod/connedit.php:472 msgid "Best Friends" msgstr "Goede vrienden" @@ -2746,11 +3581,11 @@ msgstr "Goede vrienden" msgid "Co-workers" msgstr "Collega's" -#: ../../include/widgets.php:402 ../../mod/connedit.php:475 +#: ../../include/widgets.php:402 ../../mod/connedit.php:474 msgid "Former Friends" msgstr "Oude vrienden" -#: ../../include/widgets.php:403 ../../mod/connedit.php:476 +#: ../../include/widgets.php:403 ../../mod/connedit.php:475 msgid "Acquaintances" msgstr "Kennissen" @@ -2810,812 +3645,56 @@ msgstr "Bladwijzers van chatkanalen" msgid "Suggested Chatrooms" msgstr "Voorgestelde chatkanalen" -#: ../../include/ItemObject.php:118 -msgid "Save to Folder" -msgstr "In map opslaan" +#: ../../include/follow.php:23 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." -#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142 -msgid "View all" -msgstr "Toon alles" +#: ../../include/follow.php:28 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." -#: ../../include/ItemObject.php:139 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "vindt dit niet leuk" -msgstr[1] "vinden dit niet leuk" +#: ../../include/follow.php:54 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." -#: ../../include/ItemObject.php:167 -msgid "Add Star" -msgstr "Ster toevoegen" +#: ../../include/follow.php:85 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." -#: ../../include/ItemObject.php:168 -msgid "Remove Star" -msgstr "Ster verwijderen" +#: ../../include/follow.php:132 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." -#: ../../include/ItemObject.php:169 -msgid "Toggle Star Status" -msgstr "Ster toevoegen of verwijderen" +#: ../../include/follow.php:149 +msgid "local account not found." +msgstr "lokale account niet gevonden." -#: ../../include/ItemObject.php:173 -msgid "starred" -msgstr "met ster" +#: ../../include/follow.php:158 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" -#: ../../include/ItemObject.php:190 -msgid "Add Tag" -msgstr "Label toevoegen" +#: ../../include/plugin.php:504 ../../include/plugin.php:506 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." -#: ../../include/ItemObject.php:208 ../../mod/photos.php:974 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" +#: ../../include/plugin.php:512 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." -#: ../../include/ItemObject.php:209 ../../mod/photos.php:975 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" +#: ../../include/plugin.php:517 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." -#: ../../include/ItemObject.php:211 -msgid "Share This" -msgstr "Delen" - -#: ../../include/ItemObject.php:211 -msgid "share" -msgstr "delen" - -#: ../../include/ItemObject.php:235 ../../include/ItemObject.php:236 -#, php-format -msgid "View %s's profile - %s" -msgstr "Profiel van %s bekijken - %s" - -#: ../../include/ItemObject.php:237 -msgid "to" -msgstr "aan" - -#: ../../include/ItemObject.php:238 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:239 -msgid "Wall-to-Wall" -msgstr "Kanaal-naar-kanaal" - -#: ../../include/ItemObject.php:240 -msgid "via Wall-To-Wall:" -msgstr "via kanaal-naar-kanaal" - -#: ../../include/ItemObject.php:274 -msgid "Save Bookmarks" -msgstr "Bladwijzers opslaan" - -#: ../../include/ItemObject.php:275 -msgid "Add to Calendar" -msgstr "Aan agenda toevoegen" - -#: ../../include/ItemObject.php:283 -msgctxt "noun" -msgid "Likes" -msgstr "vinden dit leuk" - -#: ../../include/ItemObject.php:284 -msgctxt "noun" -msgid "Dislikes" -msgstr "vinden dit niet leuk" - -#: ../../include/ItemObject.php:315 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties weergeven" - -#: ../../include/ItemObject.php:316 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] alle" - -#: ../../include/ItemObject.php:580 ../../mod/photos.php:993 -#: ../../mod/photos.php:1080 -msgid "This is you" -msgstr "Dit ben jij" - -#: ../../include/ItemObject.php:582 ../../include/js_strings.php:6 -#: ../../mod/photos.php:995 ../../mod/photos.php:1082 -msgid "Comment" -msgstr "Reactie" - -#: ../../include/ItemObject.php:583 ../../mod/mood.php:135 -#: ../../mod/settings.php:516 ../../mod/settings.php:628 -#: ../../mod/settings.php:656 ../../mod/settings.php:680 -#: ../../mod/settings.php:750 ../../mod/settings.php:928 -#: ../../mod/poke.php:166 ../../mod/profiles.php:588 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:519 -#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 -#: ../../mod/photos.php:563 ../../mod/photos.php:668 ../../mod/photos.php:956 -#: ../../mod/photos.php:996 ../../mod/photos.php:1083 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/events.php:511 ../../mod/filestorage.php:137 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/admin.php:442 -#: ../../mod/admin.php:751 ../../mod/admin.php:886 ../../mod/admin.php:1019 -#: ../../mod/admin.php:1218 ../../mod/admin.php:1305 ../../mod/thing.php:286 -#: ../../mod/thing.php:329 ../../mod/import.php:393 ../../mod/invite.php:156 -#: ../../mod/mail.php:232 ../../mod/mail.php:345 ../../mod/appman.php:99 -#: ../../mod/poll.php:68 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Opslaan" - -#: ../../include/ItemObject.php:584 -msgid "Bold" -msgstr "Vet" - -#: ../../include/ItemObject.php:585 -msgid "Italic" -msgstr "Cursief" - -#: ../../include/ItemObject.php:586 -msgid "Underline" -msgstr "Onderstrepen" - -#: ../../include/ItemObject.php:587 -msgid "Quote" -msgstr "Citeren" - -#: ../../include/ItemObject.php:588 -msgid "Code" -msgstr "Broncode" - -#: ../../include/ItemObject.php:589 -msgid "Image" -msgstr "Afbeelding" - -#: ../../include/ItemObject.php:590 -msgid "Link" -msgstr "Link" - -#: ../../include/ItemObject.php:591 -msgid "Video" -msgstr "Video" - -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" - -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] minder reacties weergeven" - -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] uitklappen" - -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] inklappen" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Wachtwoord te kort" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Wachtwoorden komen niet overeen" - -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" -msgstr "iedereen" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Geheim wachtwoord" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Wachtwoordhint" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Mededeling: de privacy-rechten zijn veranderd, maar zijn nog niet opgeslagen." - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alles sluiten" - -#: ../../include/js_strings.php:19 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" - -#: ../../include/js_strings.php:20 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" - -#: ../../include/js_strings.php:21 -msgid "ago" -msgstr "geleden" - -#: ../../include/js_strings.php:22 -msgid "from now" -msgstr "vanaf nu" - -#: ../../include/js_strings.php:23 -msgid "less than a minute" -msgstr "minder dan een minuut" - -#: ../../include/js_strings.php:24 -msgid "about a minute" -msgstr "ongeveer een minuut" - -#: ../../include/js_strings.php:25 -#, php-format -msgid "%d minutes" -msgstr "%d minuten" - -#: ../../include/js_strings.php:26 -msgid "about an hour" -msgstr "ongeveer een uur" - -#: ../../include/js_strings.php:27 -#, php-format -msgid "about %d hours" -msgstr "ongeveer %d uren" - -#: ../../include/js_strings.php:28 -msgid "a day" -msgstr "een dag" - -#: ../../include/js_strings.php:29 -#, php-format -msgid "%d days" -msgstr "%d dagen" - -#: ../../include/js_strings.php:30 -msgid "about a month" -msgstr "ongeveer een maand" - -#: ../../include/js_strings.php:31 -#, php-format -msgid "%d months" -msgstr "%d maanden" - -#: ../../include/js_strings.php:32 -msgid "about a year" -msgstr "ongeveer een jaar" - -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d years" -msgstr "%d jaren" - -#: ../../include/js_strings.php:34 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:35 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Nieuw venster" - -#: ../../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/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Male" -msgstr "Man" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Female" -msgstr "Vrouw" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momenteel man" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momenteel vrouw" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Voornamelijk man" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Voornamelijk vrouw" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Interseksueel" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transseksueel" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodiet" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Genderneutraal" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Niet gespecificeerd" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Anders" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Nog niet beslist" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Mannen" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Vrouwen" - -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Homoseksueel" - -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbisch" - -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Geen voorkeur" - -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Biseksueel" - -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autoseksueel" - -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Seksuele onthouding" - -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Maagd" - -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Afwijkend" - -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetisj" - -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Veel" - -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Aseksueel" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Alleen" - -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Eenzaam" - -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Beschikbaar" - -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Niet beschikbaar" - -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Heeft een oogje op iemand" - -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Smoorverliefd" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Aan het daten" - -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Ontrouw" - -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Seksverslaafd" - -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Vriendschap plus" - -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Ongebonden/vluchtig" - -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Verloofd" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Getrouwd" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Denkbeeldig getrouwd" - -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Partners" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Samenwonend" - -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Common-law-huwelijk" - -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Gelukkig" - -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Niet op zoek" - -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Verraden" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Uit elkaar" - -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Onstabiel" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Gescheiden" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Denkbeeldig gescheiden" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Weduwnaar/weduwe" - -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Onzeker" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Het is ingewikkeld" - -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "Maakt mij niks uit" - -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Vraag het me" - -#: ../../include/auth.php:90 -msgid "Logged out." -msgstr "Uitgelogd." - -#: ../../include/auth.php:236 -msgid "Failed authentication" -msgstr "Mislukte authenticatie" - -#: ../../include/auth.php:251 ../../mod/openid.php:188 -msgid "Login failed." -msgstr "Inloggen mislukt." - -#: ../../include/items.php:288 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:242 -#: ../../index.php:360 -msgid "Permission denied" -msgstr "Toegang geweigerd" - -#: ../../include/items.php:812 -msgid "(Unknown)" -msgstr "(Onbekend)" - -#: ../../include/items.php:3602 ../../mod/home.php:67 ../../mod/display.php:32 -#: ../../mod/filestorage.php:18 ../../mod/admin.php:159 -#: ../../mod/admin.php:923 ../../mod/admin.php:1126 ../../mod/thing.php:78 -#: ../../mod/viewsrc.php:18 -msgid "Item not found." -msgstr "Item niet gevonden." - -#: ../../include/items.php:4035 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Collectie niet gevonden." - -#: ../../include/items.php:4050 -msgid "Collection is empty." -msgstr "Collectie is leeg" - -#: ../../include/items.php:4057 -#, php-format -msgid "Collection: %s" -msgstr "Collectie: %s" - -#: ../../include/items.php:4068 -#, php-format -msgid "Connection: %s" -msgstr "Connectie: %s" - -#: ../../include/items.php:4071 -msgid "Connection not found." -msgstr "Connectie niet gevonden." - -#: ../../include/permissions.php:13 -msgid "Can view my \"public\" stream and posts" -msgstr "Kan mijn \"openbare\" streams en berichten zien" - -#: ../../include/permissions.php:14 -msgid "Can view my \"public\" channel profile" -msgstr "Kan mijn \"openbaar\" kanaalprofiel zien" - -#: ../../include/permissions.php:15 -msgid "Can view my \"public\" photo albums" -msgstr "Kan mijn \"openbare\" fotoalbums zien" - -#: ../../include/permissions.php:16 -msgid "Can view my \"public\" address book" -msgstr "Kan een lijst met mijn \"openbare\" connecties zien" - -#: ../../include/permissions.php:17 -msgid "Can view my \"public\" file storage" -msgstr "Kan mijn \"openbare\" bestanden zien" - -#: ../../include/permissions.php:18 -msgid "Can view my \"public\" pages" -msgstr "Kan mijn \"openbare\" pagina's zien" - -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" -msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" - -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal (\"wall\") plaatsen" - -#: ../../include/permissions.php:23 -msgid "Can comment on or like my posts" -msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" - -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" -msgstr "Kan mij privéberichten sturen" - -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" -msgstr "Kan foto's aan mijn fotoalbums toevoegen" - -#: ../../include/permissions.php:26 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" - -#: ../../include/permissions.php:28 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" - -#: ../../include/permissions.php:28 -msgid "Advanced - useful for creating group forum channels" -msgstr "Geavanceerd - nuttig voor kanalen met een groep- cq. forumfunctie" - -#: ../../include/permissions.php:29 -msgid "Can chat with me (when available)" -msgstr "Kan met mij chatten (wanneer beschikbaar)" - -#: ../../include/permissions.php:30 -msgid "Can write to my \"public\" file storage" -msgstr "Kan bestanden aan mijn \"openbare\" bestandsopslag toevoegen" - -#: ../../include/permissions.php:31 -msgid "Can edit my \"public\" pages" -msgstr "Kan mijn \"openbare\" pagina's bewerken" - -#: ../../include/permissions.php:33 -msgid "Can source my \"public\" posts in derived channels" -msgstr "Kan mijn \"openbare\" berichten als bron voor andere kanalen gebruiken" - -#: ../../include/permissions.php:33 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" - -#: ../../include/permissions.php:35 -msgid "Can administer my channel resources" -msgstr "Kan mijn kanaal beheren" - -#: ../../include/permissions.php:35 +#: ../../mod/post.php:229 msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." +"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/mood.php:132 -msgid "Set your current mood and tell your friends" -msgstr "Noteer je huidige stemming en toon het aan je connecties" - -#: ../../mod/mitem.php:14 ../../mod/menu.php:92 -msgid "Menu not found." -msgstr "Menu niet gevonden." - -#: ../../mod/mitem.php:47 -msgid "Menu element updated." -msgstr "Menu-onderdeel geüpdatet." - -#: ../../mod/mitem.php:51 -msgid "Unable to update menu element." -msgstr "Menu-onderdeel kan niet worden geüpdatet." - -#: ../../mod/mitem.php:57 -msgid "Menu element added." -msgstr "Menu-onderdeel toegevoegd" - -#: ../../mod/mitem.php:61 -msgid "Unable to add menu element." -msgstr "Menu-onderdeel kan niet worden toegevoegd." - -#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 -#: ../../mod/xchan.php:27 -msgid "Not found." -msgstr "Niet gevonden." - -#: ../../mod/mitem.php:96 -msgid "Manage Menu Elements" -msgstr "Menu-onderdelen beheren" - -#: ../../mod/mitem.php:99 -msgid "Edit menu" -msgstr "Menu bewerken" - -#: ../../mod/mitem.php:102 -msgid "Edit element" -msgstr "Onderdeel bewerken" - -#: ../../mod/mitem.php:103 -msgid "Drop element" -msgstr "Onderdeel verwijderen" - -#: ../../mod/mitem.php:104 -msgid "New element" -msgstr "Nieuw element" - -#: ../../mod/mitem.php:105 -msgid "Edit this menu container" -msgstr "Deze menu-container bewerken" - -#: ../../mod/mitem.php:106 -msgid "Add menu element" -msgstr "Menu-element toevoegen" - -#: ../../mod/mitem.php:107 -msgid "Delete this menu item" -msgstr "Dit menu-item verwijderen" - -#: ../../mod/mitem.php:108 -msgid "Edit this menu item" -msgstr "Dit menu-item bewerken" - -#: ../../mod/mitem.php:131 -msgid "New Menu Element" -msgstr "Nieuw menu-element" - -#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 -msgid "Menu Item Permissions" -msgstr "Privacy-rechten menu-item" - -#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:961 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" - -#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 -msgid "Link text" -msgstr "Linktekst" - -#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 -msgid "URL of link" -msgstr "URL of link" - -#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 -msgid "Use Red magic-auth if available" -msgstr "Gebruik Reds magische authenticatie wanneer aanwezig" - -#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 -msgid "Open link in new window" -msgstr "Open link in nieuw venster" - -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Order in list" -msgstr "Volgorde in lijst" - -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Hogere nummers komen onderaan de lijst terecht" - -#: ../../mod/mitem.php:154 -msgid "Menu item not found." -msgstr "Menu-item niet gevonden." - -#: ../../mod/mitem.php:163 -msgid "Menu item deleted." -msgstr "Menu-item verwijderd." - -#: ../../mod/mitem.php:165 -msgid "Menu item could not be deleted." -msgstr "Menu-item kon niet worden verwijderd." - -#: ../../mod/mitem.php:174 -msgid "Edit Menu Element" -msgstr "Menu-element bewerken" - -#: ../../mod/mitem.php:186 ../../mod/menu.php:114 -msgid "Modify" -msgstr "Wijzigen" - -#: ../../mod/ping.php:237 -msgid "sent you a private message" -msgstr "stuurde jou een privébericht" - -#: ../../mod/ping.php:288 -msgid "added your channel" -msgstr "voegde jouw kanaal toe" - -#: ../../mod/ping.php:329 -msgid "posted an event" -msgstr "plaatste een gebeurtenis" - -#: ../../mod/acl.php:239 -msgid "network" -msgstr "netwerk" +#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:178 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Welkom %s. Authenticatie op afstand geslaagd." #: ../../mod/settings.php:71 msgid "Name is required" @@ -3854,14 +3933,14 @@ msgid "Publish your default profile in the network directory" msgstr "Publiceer je standaardprofiel in de kanalengids" #: ../../mod/settings.php:878 ../../mod/settings.php:883 -#: ../../mod/settings.php:954 ../../mod/api.php:106 ../../mod/profiles.php:565 -#: ../../mod/admin.php:420 +#: ../../mod/settings.php:954 ../../mod/admin.php:420 +#: ../../mod/profiles.php:566 ../../mod/api.php:106 msgid "No" msgstr "Nee" #: ../../mod/settings.php:878 ../../mod/settings.php:883 -#: ../../mod/settings.php:954 ../../mod/api.php:105 ../../mod/profiles.php:564 -#: ../../mod/admin.php:422 +#: ../../mod/settings.php:954 ../../mod/admin.php:422 +#: ../../mod/profiles.php:565 ../../mod/api.php:105 msgid "Yes" msgstr "Ja" @@ -3979,6 +4058,10 @@ msgstr "Kan eventuele spam verminderen" msgid "Default Post Permissions" msgstr "Standaard privacy-rechten voor nieuwe berichten" +#: ../../mod/settings.php:961 ../../mod/mitem.php:134 ../../mod/mitem.php:177 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + #: ../../mod/settings.php:972 msgid "Maximum private messages per day from unknown people:" msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" @@ -4069,77 +4152,1174 @@ msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" msgid "Remove this channel" msgstr "Verwijder dit kanaal" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" +#: ../../mod/filestorage.php:68 +msgid "Permission Denied." +msgstr "Toegang geweigerd" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "aanstoten, porren of andere dingen met iemand doen" +#: ../../mod/filestorage.php:85 +msgid "File not found." +msgstr "Bestand niet gevonden." -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Ontvanger" +#: ../../mod/filestorage.php:122 +msgid "Edit file permissions" +msgstr "Bestandsrechten bewerken" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" +#: ../../mod/filestorage.php:131 +msgid "Set/edit permissions" +msgstr "Rechten instellen/bewerken" -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Maak dit bericht privé" +#: ../../mod/filestorage.php:132 +msgid "Include all files and sub folders" +msgstr "Toepassen op alle bestanden en submappen" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Geef toestemming voor applicatiekoppeling" +#: ../../mod/filestorage.php:133 +msgid "Return to file list" +msgstr "Terugkeren naar bestandlijst " -#: ../../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/filestorage.php:135 +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/api.php:89 -msgid "Please login to continue." -msgstr "Inloggen om verder te kunnen gaan." +#: ../../mod/filestorage.php:136 +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/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/home.php:54 ../../mod/block.php:39 ../../mod/wall_upload.php:28 +#: ../../mod/page.php:47 ../../mod/chanview.php:77 +msgid "Channel not found." +msgstr "Kanaal niet gevonden." -#: ../../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/home.php:81 +msgid "Red Matrix - "The Network"" +msgstr "RedMatrix - "The Network"" -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:178 +#: ../../mod/home.php:94 #, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Welkom %s. Authenticatie op afstand geslaagd." - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Item is niet aanwezig." +msgid "Welcome to %s" +msgstr "Welkom op %s" #: ../../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:35 -msgid "Invalid item." -msgstr "Ongeldig item." +#: ../../mod/update_network.php:23 ../../mod/update_display.php:25 +#: ../../mod/update_search.php:46 ../../mod/update_channel.php:43 +msgid "[Embedded content - reload page to view]" +msgstr "[Ingesloten inhoud - ververs pagina om te bekijken] " -#: ../../mod/block.php:39 ../../mod/chanview.php:77 ../../mod/page.php:47 -#: ../../mod/home.php:54 ../../mod/wall_upload.php:28 -msgid "Channel not found." -msgstr "Kanaal niet gevonden." +#: ../../mod/new_channel.php:107 +msgid "Add a Channel" +msgstr "Kanaal toevoegen" -#: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:100 -#: ../../mod/help.php:72 ../../index.php:236 -msgid "Page not found." -msgstr "Pagina niet gevonden." +#: ../../mod/new_channel.php:108 +msgid "" +"A channel is your own collection of related web pages. A channel can be used" +" to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." +msgstr "Een kanaal is jouw eigen verzameling gerelateerde webpagina's. Een kanaal kan gebruikt worden voor een sociaal netwerk, weblog, discussiegroep of forum, een pagina over een beroemdheid, en voor veel meer. Je kan net zoveel kanalen aanmaken als dat de eigenaar/beheerder van jouw hub toestaat." + +#: ../../mod/new_channel.php:110 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 +msgid "Channel Name" +msgstr "Kanaalnaam" + +#: ../../mod/new_channel.php:111 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Voorbeelden: \"Bruce Springsteen\", \"Familiefoto's\", \"Voetbal\", \"Astronomie\"" + +#: ../../mod/new_channel.php:112 +msgid "Choose a short nickname" +msgstr "Kies een korte bijnaam" + +#: ../../mod/new_channel.php:113 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." +msgstr "Jouw bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres (zoals een e-mailadres) aan te maken, die je dan kan delen met anderen." + +#: ../../mod/new_channel.php:114 +msgid "Or import an existing channel from another location" +msgstr "Of importeer een bestaand kanaal vanaf een andere locatie." + +#: ../../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/admin.php:52 +msgid "Theme settings updated." +msgstr "Thema-instellingen bijgewerkt." + +#: ../../mod/admin.php:92 ../../mod/admin.php:441 +msgid "Site" +msgstr "Hub-instellingen" + +#: ../../mod/admin.php:93 +msgid "Accounts" +msgstr "Accounts" + +#: ../../mod/admin.php:94 ../../mod/admin.php:885 +msgid "Channels" +msgstr "Kanalen" + +#: ../../mod/admin.php:95 ../../mod/admin.php:976 ../../mod/admin.php:1018 +msgid "Plugins" +msgstr "Plug-ins" + +#: ../../mod/admin.php:96 ../../mod/admin.php:1181 ../../mod/admin.php:1217 +msgid "Themes" +msgstr "Thema's" + +#: ../../mod/admin.php:97 ../../mod/admin.php:541 +msgid "Server" +msgstr "Hubbeheer" + +#: ../../mod/admin.php:98 +msgid "DB updates" +msgstr "Database-updates" + +#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1304 +msgid "Logs" +msgstr "Logboeken" + +#: ../../mod/admin.php:118 +msgid "Plugin Features" +msgstr "Plug-in-opties" + +#: ../../mod/admin.php:120 +msgid "User registrations waiting for confirmation" +msgstr "Accountregistraties die op goedkeuring wachten" + +#: ../../mod/admin.php:197 +msgid "Message queues" +msgstr "Berichtenwachtrij" + +#: ../../mod/admin.php:202 ../../mod/admin.php:440 ../../mod/admin.php:540 +#: ../../mod/admin.php:749 ../../mod/admin.php:884 ../../mod/admin.php:975 +#: ../../mod/admin.php:1017 ../../mod/admin.php:1180 ../../mod/admin.php:1216 +#: ../../mod/admin.php:1303 +msgid "Administration" +msgstr "Beheer" + +#: ../../mod/admin.php:203 +msgid "Summary" +msgstr "Samenvatting" + +#: ../../mod/admin.php:205 +msgid "Registered users" +msgstr "Geregistreerde gebruikers" + +#: ../../mod/admin.php:207 ../../mod/admin.php:544 +msgid "Pending registrations" +msgstr "Accounts die op goedkeuring wachten" + +#: ../../mod/admin.php:208 +msgid "Version" +msgstr "Versie" + +#: ../../mod/admin.php:210 ../../mod/admin.php:545 +msgid "Active plugins" +msgstr "Ingeschakelde plug-ins" + +#: ../../mod/admin.php:361 +msgid "Site settings updated." +msgstr "Hub-instellingen bijgewerkt." + +#: ../../mod/admin.php:392 +msgid "No special theme for accessibility" +msgstr "Geen speciaal thema voor universele toegang" + +#: ../../mod/admin.php:421 +msgid "Yes - with approval" +msgstr "Ja - met goedkeuring" + +#: ../../mod/admin.php:427 +msgid "My site is not a public server" +msgstr "Mijn RedMatrix-hub is niet openbaar" + +#: ../../mod/admin.php:428 +msgid "My site has paid access only" +msgstr "Mijn RedMatrix-hub kent alleen betaalde toegang" + +#: ../../mod/admin.php:429 +msgid "My site has free access only" +msgstr "Mijn RedMatrix-hub kent alleen gratis toegang" + +#: ../../mod/admin.php:430 +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:443 ../../mod/register.php:204 +msgid "Registration" +msgstr "Registratie" + +#: ../../mod/admin.php:444 +msgid "File upload" +msgstr "Bestand uploaden" + +#: ../../mod/admin.php:445 +msgid "Policies" +msgstr "Beleid" + +#: ../../mod/admin.php:450 +msgid "Site name" +msgstr "Naam van deze RedMatrix-hub" + +#: ../../mod/admin.php:451 +msgid "Banner/Logo" +msgstr "Banner/logo" + +#: ../../mod/admin.php:452 +msgid "Administrator Information" +msgstr "Informatie over de beheerder van deze hub" + +#: ../../mod/admin.php:452 +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:453 +msgid "System language" +msgstr "Standaardtaal" + +#: ../../mod/admin.php:454 +msgid "System theme" +msgstr "Standaardthema" + +#: ../../mod/admin.php:454 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standaardthema voor RedMatrix-hub (kan door gebruiker veranderd worden) - verander thema-instellingen" + +#: ../../mod/admin.php:455 +msgid "Mobile system theme" +msgstr "Standaardthema voor mobiel" + +#: ../../mod/admin.php:455 +msgid "Theme for mobile devices" +msgstr "Thema voor mobiele apparaten" + +#: ../../mod/admin.php:456 +msgid "Accessibility system theme" +msgstr "Standaardthema voor universele toegang" + +#: ../../mod/admin.php:456 +msgid "Accessibility theme" +msgstr "Thema voor universele toegang" + +#: ../../mod/admin.php:457 +msgid "Channel to use for this website's static pages" +msgstr "Kanaal die op deze hub als statische pagina op de homepage gebruikt moet worden" + +#: ../../mod/admin.php:457 +msgid "Site Channel" +msgstr "Kanaal op deze RedMatrix-hub" + +#: ../../mod/admin.php:459 +msgid "Maximum image size" +msgstr "Maximale grootte van afbeeldingen" + +#: ../../mod/admin.php:459 +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:460 +msgid "Does this site allow new member registration?" +msgstr "Staat deze hub registratie van nieuwe accounts toe?" + +#: ../../mod/admin.php:461 +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:462 +msgid "Register text" +msgstr "Registratietekst" + +#: ../../mod/admin.php:462 +msgid "Will be displayed prominently on the registration page." +msgstr "Wordt prominent op de registratiepagina getoond." + +#: ../../mod/admin.php:463 +msgid "Accounts abandoned after x days" +msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" + +#: ../../mod/admin.php:463 +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:464 +msgid "Allowed friend domains" +msgstr "Toegestane domeinen" + +#: ../../mod/admin.php:464 +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:465 +msgid "Allowed email domains" +msgstr "Toegestane e-maildomeinen" + +#: ../../mod/admin.php:465 +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." + +#: ../../mod/admin.php:466 +msgid "Block public" +msgstr "Openbare toegang blokkeren" + +#: ../../mod/admin.php:466 +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 gebruikers." + +#: ../../mod/admin.php:467 +msgid "Force publish" +msgstr "Dwing kanaalvermelding af" + +#: ../../mod/admin.php:467 +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:468 +msgid "Disable discovery tab" +msgstr "Ontdekkingstab" + +#: ../../mod/admin.php:468 +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:469 +msgid "No login on Homepage" +msgstr "Geen inlogformulier op de homepage" + +#: ../../mod/admin.php:469 +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 gebruikers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze RedMatrix-hub als homepage gebruikt)" + +#: ../../mod/admin.php:471 +msgid "Proxy user" +msgstr "Proxy-gebruiker" + +#: ../../mod/admin.php:472 +msgid "Proxy URL" +msgstr "Proxy-URL" + +#: ../../mod/admin.php:473 +msgid "Network timeout" +msgstr "Netwerktimeout" + +#: ../../mod/admin.php:473 +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:474 +msgid "Delivery interval" +msgstr "Afleveringsinterval" + +#: ../../mod/admin.php:474 +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:475 +msgid "Poll interval" +msgstr "Poll-interval" + +#: ../../mod/admin.php:475 +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:476 +msgid "Maximum Load Average" +msgstr "Maximaal gemiddelde systeembelasting" + +#: ../../mod/admin.php:476 +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:532 +msgid "No server found" +msgstr "Geen hub gevonden" + +#: ../../mod/admin.php:539 ../../mod/admin.php:763 +msgid "ID" +msgstr "ID" + +#: ../../mod/admin.php:539 +msgid "for channel" +msgstr "voor kanaal" + +#: ../../mod/admin.php:539 +msgid "on server" +msgstr "op hub" + +#: ../../mod/admin.php:539 +msgid "Status" +msgstr "Status" + +#: ../../mod/admin.php:560 +msgid "Update has been marked successful" +msgstr "Update is als succesvol gemarkeerd" + +#: ../../mod/admin.php:570 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." + +#: ../../mod/admin.php:573 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s was geslaagd." + +#: ../../mod/admin.php:577 +#, 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:580 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-functie %s kon niet gevonden worden." + +#: ../../mod/admin.php:595 +msgid "No failed updates." +msgstr "Geen mislukte updates." + +#: ../../mod/admin.php:599 +msgid "Failed Updates" +msgstr "Mislukte updates" + +#: ../../mod/admin.php:601 +msgid "Mark success (if update was manually applied)" +msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" + +#: ../../mod/admin.php:602 +msgid "Attempt to execute this update step automatically" +msgstr "Poging om deze stap van de update automatisch uit te voeren." + +#: ../../mod/admin.php:628 +#, 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:635 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s account verwijderd" +msgstr[1] "%s accounts verwijderd" + +#: ../../mod/admin.php:666 +msgid "Account not found" +msgstr "Account niet gevonden" + +#: ../../mod/admin.php:677 +#, php-format +msgid "User '%s' deleted" +msgstr "Account '%s' verwijderd" + +#: ../../mod/admin.php:686 +#, php-format +msgid "User '%s' unblocked" +msgstr "Account '%s' gedeblokkeerd" + +#: ../../mod/admin.php:686 +#, php-format +msgid "User '%s' blocked" +msgstr "Gebruiker '%s' geblokkeerd" + +#: ../../mod/admin.php:750 ../../mod/admin.php:762 +msgid "Users" +msgstr "Accounts" + +#: ../../mod/admin.php:752 ../../mod/admin.php:887 +msgid "select all" +msgstr "alles selecteren" + +#: ../../mod/admin.php:753 +msgid "User registrations waiting for confirm" +msgstr "Accounts die op goedkeuring wachten" + +#: ../../mod/admin.php:754 +msgid "Request date" +msgstr "Tijd/datum verzoek" + +#: ../../mod/admin.php:755 +msgid "No registrations." +msgstr "Geen verzoeken." + +#: ../../mod/admin.php:756 +msgid "Approve" +msgstr "Goedkeuren" + +#: ../../mod/admin.php:757 +msgid "Deny" +msgstr "Afkeuren" + +#: ../../mod/admin.php:759 ../../mod/connedit.php:414 +#: ../../mod/connedit.php:557 +msgid "Block" +msgstr "Blokkeren" + +#: ../../mod/admin.php:760 ../../mod/connedit.php:414 +#: ../../mod/connedit.php:557 +msgid "Unblock" +msgstr "Deblokkeren" + +#: ../../mod/admin.php:763 +msgid "Register date" +msgstr "Geregistreerd" + +#: ../../mod/admin.php:763 +msgid "Last login" +msgstr "Laatste keer ingelogd" + +#: ../../mod/admin.php:763 +msgid "Expires" +msgstr "Verloopt" + +#: ../../mod/admin.php:763 +msgid "Service Class" +msgstr "Abonnementen" + +#: ../../mod/admin.php:765 +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:766 +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:799 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channelss censored/uncensored" +msgstr[0] "%s kanalen gecensureerd/ongecensureerd" +msgstr[1] "%s kanaal gecensureerd/ongecensureerd" + +#: ../../mod/admin.php:806 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s kanaal verwijderd" +msgstr[1] "%s kanalen verwijderd" + +#: ../../mod/admin.php:825 +msgid "Channel not found" +msgstr "Kanaal niet gevonden" + +#: ../../mod/admin.php:836 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanaal '%s' verwijderd" + +#: ../../mod/admin.php:846 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanaal '%s' ongecensureerd" + +#: ../../mod/admin.php:846 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanaal '%s' gecensureerd" + +#: ../../mod/admin.php:889 +msgid "Censor" +msgstr "Censureren" + +#: ../../mod/admin.php:890 +msgid "Uncensor" +msgstr "Niet censureren" + +#: ../../mod/admin.php:893 +msgid "UID" +msgstr "UID" + +#: ../../mod/admin.php:893 ../../mod/profiles.php:397 +msgid "Address" +msgstr "Kanaaladres" + +#: ../../mod/admin.php:895 +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:896 +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:935 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plug-in %s uitgeschakeld." + +#: ../../mod/admin.php:939 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plug-in %s ingeschakeld" + +#: ../../mod/admin.php:949 ../../mod/admin.php:1151 +msgid "Disable" +msgstr "Uitschakelen" + +#: ../../mod/admin.php:951 ../../mod/admin.php:1153 +msgid "Enable" +msgstr "Inschakelen" + +#: ../../mod/admin.php:977 ../../mod/admin.php:1182 +msgid "Toggle" +msgstr "Omschakelen" + +#: ../../mod/admin.php:985 ../../mod/admin.php:1192 +msgid "Author: " +msgstr "Auteur: " + +#: ../../mod/admin.php:986 ../../mod/admin.php:1193 +msgid "Maintainer: " +msgstr "Beheerder: " + +#: ../../mod/admin.php:1115 +msgid "No themes found." +msgstr "Geen thema's gevonden" + +#: ../../mod/admin.php:1174 +msgid "Screenshot" +msgstr "Schermafdruk" + +#: ../../mod/admin.php:1222 +msgid "[Experimental]" +msgstr "[Experimenteel]" + +#: ../../mod/admin.php:1223 +msgid "[Unsupported]" +msgstr "[Niet ondersteund]" + +#: ../../mod/admin.php:1250 +msgid "Log settings updated." +msgstr "Logboek-instellingen bijgewerkt." + +#: ../../mod/admin.php:1306 +msgid "Clear" +msgstr "Leegmaken" + +#: ../../mod/admin.php:1312 +msgid "Debugging" +msgstr "Debuggen" + +#: ../../mod/admin.php:1313 +msgid "Log file" +msgstr "Logbestand" + +#: ../../mod/admin.php:1313 +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:1314 +msgid "Log level" +msgstr "Logniveau" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "- kies map -" + +#: ../../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:78 +msgid "Could not locate selected profile." +msgstr "Kon het gekozen profiel niet vinden." + +#: ../../mod/connections.php:94 ../../mod/connedit.php:132 +msgid "Connection updated." +msgstr "Connectie bijgewerkt." + +#: ../../mod/connections.php:96 ../../mod/connedit.php:134 +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:279 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Alle connecties" + +#: ../../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:368 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:369 +msgid "Edit contact" +msgstr "Connectie bewerken" + +#: ../../mod/connections.php:390 +msgid "Search your connections" +msgstr "Doorzoek jouw connecties" + +#: ../../mod/connections.php:391 +msgid "Finding: " +msgstr "Zoeken naar: " + +#: ../../mod/dirprofile.php:9 ../../mod/photos.php:443 +#: ../../mod/viewconnections.php:17 ../../mod/directory.php:15 +#: ../../mod/display.php:9 ../../mod/search.php:13 +msgid "Public access denied." +msgstr "Openbare toegang geweigerd." + +#: ../../mod/dirprofile.php:92 ../../mod/directory.php:143 +#: ../../mod/profiles.php:650 +msgid "Age: " +msgstr "Leeftijd:" + +#: ../../mod/dirprofile.php:95 ../../mod/directory.php:146 +msgid "Gender: " +msgstr "Geslacht:" + +#: ../../mod/dirprofile.php:108 +msgid "Status: " +msgstr "Status: " + +#: ../../mod/dirprofile.php:109 +msgid "Sexual Preference: " +msgstr "Seksuele voorkeur: " + +#: ../../mod/dirprofile.php:111 +msgid "Homepage: " +msgstr "Homepage: " + +#: ../../mod/dirprofile.php:112 +msgid "Hometown: " +msgstr "Oorspronkelijk uit: " + +#: ../../mod/dirprofile.php:114 +msgid "About: " +msgstr "Over: " + +#: ../../mod/dirprofile.php:162 +msgid "Keywords: " +msgstr "Trefwoorden: " + +#: ../../mod/dirprofile.php:175 ../../mod/mitem.php:78 ../../mod/xchan.php:27 +#: ../../mod/menu.php:120 +msgid "Not found." +msgstr "Niet gevonden." + +#: ../../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:669 +msgid "Delete Album" +msgstr "Verwijder album" + +#: ../../mod/photos.php:159 ../../mod/photos.php:957 +msgid "Delete Photo" +msgstr "Verwijder foto" + +#: ../../mod/photos.php:453 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" + +#: ../../mod/photos.php:500 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." + +#: ../../mod/photos.php:574 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Je gebruiker %1$.2f MB van totaal %2$.2f MB foto-opslagruimte." + +#: ../../mod/photos.php:577 +#, php-format +msgid "You have used %1$.2f Mbytes of photo storage." +msgstr "Je gebruikt %1$.2f MB aan foto-opslagruimte." + +#: ../../mod/photos.php:596 +msgid "Upload Photos" +msgstr "Foto's uploaden" + +#: ../../mod/photos.php:600 ../../mod/photos.php:664 +msgid "New album name: " +msgstr "Nieuwe albumnaam: " + +#: ../../mod/photos.php:601 +msgid "or existing album name: " +msgstr "of een bestaande albumnaam: " + +#: ../../mod/photos.php:602 +msgid "Do not show a status post for this upload" +msgstr "Plaats geen bericht voor deze upload." + +#: ../../mod/photos.php:653 ../../mod/photos.php:675 ../../mod/photos.php:1129 +#: ../../mod/photos.php:1144 +msgid "Contact Photos" +msgstr "Connectiefoto's" + +#: ../../mod/photos.php:679 +msgid "Edit Album" +msgstr "Album bewerken" + +#: ../../mod/photos.php:685 +msgid "Show Newest First" +msgstr "Nieuwste eerst weergeven" + +#: ../../mod/photos.php:687 +msgid "Show Oldest First" +msgstr "Oudste eerst weergeven" + +#: ../../mod/photos.php:730 ../../mod/photos.php:1176 +msgid "View Photo" +msgstr "Foto weergeven" + +#: ../../mod/photos.php:776 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." + +#: ../../mod/photos.php:778 +msgid "Photo not available" +msgstr "Foto niet aanwezig" + +#: ../../mod/photos.php:838 +msgid "Use as profile photo" +msgstr "Als profielfoto gebruiken" + +#: ../../mod/photos.php:862 +msgid "View Full Size" +msgstr "Volledige grootte weergeven" + +#: ../../mod/photos.php:906 ../../mod/delegate.php:130 ../../mod/tagrm.php:93 +msgid "Remove" +msgstr "Verwijderen" + +#: ../../mod/photos.php:940 +msgid "Edit photo" +msgstr "Foto bewerken" + +#: ../../mod/photos.php:942 +msgid "Rotate CW (right)" +msgstr "Draai met de klok mee (naar rechts)" + +#: ../../mod/photos.php:943 +msgid "Rotate CCW (left)" +msgstr "Draai tegen de klok in (naar links)" + +#: ../../mod/photos.php:946 +msgid "New album name" +msgstr "Nieuwe albumnaam" + +#: ../../mod/photos.php:949 +msgid "Caption" +msgstr "Bijschrift" + +#: ../../mod/photos.php:951 +msgid "Add a Tag" +msgstr "Label toevoegen" + +#: ../../mod/photos.php:954 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@example.com, #Friesland, #camping" + +#: ../../mod/photos.php:1107 +msgid "In This Photo:" +msgstr "Op deze foto:" + +#: ../../mod/photos.php:1182 +msgid "View Album" +msgstr "Album weergeven" + +#: ../../mod/photos.php:1191 +msgid "Recent Photos" +msgstr "Recente foto's" + +#: ../../mod/mitem.php:14 ../../mod/menu.php:92 +msgid "Menu not found." +msgstr "Menu niet gevonden." + +#: ../../mod/mitem.php:47 +msgid "Menu element updated." +msgstr "Menu-onderdeel geüpdatet." + +#: ../../mod/mitem.php:51 +msgid "Unable to update menu element." +msgstr "Menu-onderdeel kan niet worden geüpdatet." + +#: ../../mod/mitem.php:57 +msgid "Menu element added." +msgstr "Menu-onderdeel toegevoegd" + +#: ../../mod/mitem.php:61 +msgid "Unable to add menu element." +msgstr "Menu-onderdeel kan niet worden toegevoegd." + +#: ../../mod/mitem.php:96 +msgid "Manage Menu Elements" +msgstr "Menu-onderdelen beheren" + +#: ../../mod/mitem.php:99 +msgid "Edit menu" +msgstr "Menu bewerken" + +#: ../../mod/mitem.php:102 +msgid "Edit element" +msgstr "Onderdeel bewerken" + +#: ../../mod/mitem.php:103 +msgid "Drop element" +msgstr "Onderdeel verwijderen" + +#: ../../mod/mitem.php:104 +msgid "New element" +msgstr "Nieuw element" + +#: ../../mod/mitem.php:105 +msgid "Edit this menu container" +msgstr "Deze menu-container bewerken" + +#: ../../mod/mitem.php:106 +msgid "Add menu element" +msgstr "Menu-element toevoegen" + +#: ../../mod/mitem.php:107 +msgid "Delete this menu item" +msgstr "Dit menu-item verwijderen" + +#: ../../mod/mitem.php:108 +msgid "Edit this menu item" +msgstr "Dit menu-item bewerken" + +#: ../../mod/mitem.php:131 +msgid "New Menu Element" +msgstr "Nieuw menu-element" + +#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 +msgid "Menu Item Permissions" +msgstr "Privacy-rechten menu-item" + +#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 +msgid "Link text" +msgstr "Linktekst" + +#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 +msgid "URL of link" +msgstr "URL of link" + +#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 +msgid "Use Red magic-auth if available" +msgstr "Gebruik Reds magische authenticatie wanneer aanwezig" + +#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 +msgid "Open link in new window" +msgstr "Open link in nieuw venster" + +#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 +msgid "Order in list" +msgstr "Volgorde in lijst" + +#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Hogere nummers komen onderaan de lijst terecht" + +#: ../../mod/mitem.php:154 +msgid "Menu item not found." +msgstr "Menu-item niet gevonden." + +#: ../../mod/mitem.php:163 +msgid "Menu item deleted." +msgstr "Menu-item verwijderd." + +#: ../../mod/mitem.php:165 +msgid "Menu item could not be deleted." +msgstr "Menu-item kon niet worden verwijderd." + +#: ../../mod/mitem.php:174 +msgid "Edit Menu Element" +msgstr "Menu-element bewerken" + +#: ../../mod/mitem.php:186 ../../mod/menu.php:114 +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/regmod.php:12 +msgid "Please login." +msgstr "Inloggen." + +#: ../../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/lockview.php:35 ../../mod/lockview.php:41 +msgid "Remote privacy information not available." +msgstr "Privacy-informatie op afstand niet beschikbaar." + +#: ../../mod/lockview.php:50 +msgid "Visible to:" +msgstr "Zichtbaar voor:" + +#: ../../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/pdledit.php:13 +msgid "Layout updated." +msgstr "Layout 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:59 +msgid "Layout Help" +msgstr "Lay-out-hulp" #: ../../mod/profile_photo.php:108 msgid "Image uploaded but image cropping failed." @@ -4213,964 +5393,348 @@ msgstr "Uploaden afbeelding mislukt" msgid "Image size reduction [%s] failed." msgstr "Verkleinen [%s] van afbeelding mislukt." -#: ../../mod/blocks.php:66 -msgid "Block Name" -msgstr "Bloknaam" +#: ../../mod/acl.php:239 +msgid "network" +msgstr "netwerk" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:222 ../../mod/profiles.php:538 -msgid "Profile not found." -msgstr "Profiel niet gevonden." +#: ../../mod/menu.php:21 +msgid "Menu updated." +msgstr "Menu aangepast. " -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profiel verwijderd." +#: ../../mod/menu.php:25 +msgid "Unable to update menu." +msgstr "Niet in staat om menu aan te passen" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profiel-" +#: ../../mod/menu.php:30 +msgid "Menu created." +msgstr "Menu aangemaakt." -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." +#: ../../mod/menu.php:34 +msgid "Unable to create menu." +msgstr "Niet in staat om menu aan te maken." -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen" +#: ../../mod/menu.php:57 +msgid "Manage Menus" +msgstr "Menu's beheren" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Geen profiel beschikbaar om te exporteren" +#: ../../mod/menu.php:60 +msgid "Drop" +msgstr "Verwijderen" -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist" +#: ../../mod/menu.php:62 +msgid "Create a new menu" +msgstr "Een nieuwe menu aanmaken" -#: ../../mod/profiles.php:354 -msgid "Marital Status" -msgstr "Huwelijke status" +#: ../../mod/menu.php:63 +msgid "Delete this menu" +msgstr "Menu verwijderen" -#: ../../mod/profiles.php:358 -msgid "Romantic Partner" -msgstr "Romantische partner" +#: ../../mod/menu.php:64 ../../mod/menu.php:109 +msgid "Edit menu contents" +msgstr "Bewerk de inhoud van het menu" -#: ../../mod/profiles.php:362 -msgid "Likes" -msgstr "Houdt van" +#: ../../mod/menu.php:65 +msgid "Edit this menu" +msgstr "Dit menu bewerken" -#: ../../mod/profiles.php:366 -msgid "Dislikes" -msgstr "Houdt niet van" +#: ../../mod/menu.php:80 +msgid "New Menu" +msgstr "Nieuw menu" -#: ../../mod/profiles.php:370 -msgid "Work/Employment" -msgstr "Werk/arbeid" +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Menu name" +msgstr "Naam van menu" -#: ../../mod/profiles.php:373 -msgid "Religion" -msgstr "Religie" +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Must be unique, only seen by you" +msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." -#: ../../mod/profiles.php:377 -msgid "Political Views" -msgstr "Politieke overtuigingen" +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title" +msgstr "Titel van menu" -#: ../../mod/profiles.php:381 -msgid "Gender" -msgstr "Geslacht" +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title as seen by others" +msgstr "Titel van menu zoals anderen dat zien." -#: ../../mod/profiles.php:385 -msgid "Sexual Preference" -msgstr "Seksuele voorkeur" +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Allow bookmarks" +msgstr "Bladwijzers toestaan" -#: ../../mod/profiles.php:389 -msgid "Homepage" -msgstr "Homepage" +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" -#: ../../mod/profiles.php:393 -msgid "Interests" -msgstr "Interesses" +#: ../../mod/menu.php:98 +msgid "Menu deleted." +msgstr "Menu verwijderd." -#: ../../mod/profiles.php:397 ../../mod/admin.php:893 -msgid "Address" -msgstr "Kanaaladres" +#: ../../mod/menu.php:100 +msgid "Menu could not be deleted." +msgstr "Menu kon niet verwijderd worden." -#: ../../mod/profiles.php:404 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "Locatie" +#: ../../mod/menu.php:106 +msgid "Edit Menu" +msgstr "Menu bewerken" -#: ../../mod/profiles.php:487 -msgid "Profile updated." -msgstr "Profiel bijgewerkt" +#: ../../mod/menu.php:108 +msgid "Add or remove entries to this menu" +msgstr "Items aan dit menu toevoegen of verwijder" -#: ../../mod/profiles.php:563 -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/block.php:27 ../../mod/page.php:35 +msgid "Invalid item." +msgstr "Ongeldig item." -#: ../../mod/profiles.php:587 -msgid "Edit Profile Details" -msgstr "Profiel bewerken" +#: ../../mod/block.php:75 ../../mod/help.php:72 ../../mod/display.php:100 +#: ../../mod/page.php:83 ../../index.php:236 +msgid "Page not found." +msgstr "Pagina niet gevonden." -#: ../../mod/profiles.php:589 -msgid "View this profile" -msgstr "Profiel weergeven" - -#: ../../mod/profiles.php:591 -msgid "Change Profile Photo" -msgstr "Profielfoto wijzigen" - -#: ../../mod/profiles.php:592 -msgid "Create a new profile using these settings" -msgstr "Een nieuw profiel aanmaken met dit profiel als basis" - -#: ../../mod/profiles.php:593 -msgid "Clone this profile" -msgstr "Dit profiel klonen" - -#: ../../mod/profiles.php:594 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" - -#: ../../mod/profiles.php:596 -msgid "Import profile from file" -msgstr "Profiel vanuit bestand importeren" - -#: ../../mod/profiles.php:597 -msgid "Export profile to file" -msgstr "Profiel naar bestand exporteren" - -#: ../../mod/profiles.php:598 -msgid "Profile Name:" -msgstr "Profielnaam:" - -#: ../../mod/profiles.php:599 -msgid "Your Full Name:" -msgstr "Jouw volledige naam:" - -#: ../../mod/profiles.php:600 -msgid "Title/Description:" -msgstr "Titel/omschrijving:" - -#: ../../mod/profiles.php:601 -msgid "Your Gender:" -msgstr "Jouw geslacht" - -#: ../../mod/profiles.php:602 +#: ../../mod/tagger.php:98 #, php-format -msgid "Birthday (%s):" -msgstr "Geboortedag (%s)" +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s labelde het %3$s van %2$s met %4$s" -#: ../../mod/profiles.php:603 -msgid "Street Address:" -msgstr "Straat en huisnummer:" +#: ../../mod/wall_upload.php:34 +msgid "Wall Photos" +msgstr "Kanaalfoto's" -#: ../../mod/profiles.php:604 -msgid "Locality/City:" -msgstr "Woonplaats:" +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID-protocolfout. Geen ID terugontvangen." -#: ../../mod/profiles.php:605 -msgid "Postal/Zip Code:" -msgstr "Postcode:" - -#: ../../mod/profiles.php:606 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:607 -msgid "Region/State:" -msgstr "Provincie/gewest/deelstaat:" - -#: ../../mod/profiles.php:608 -msgid " Marital Status:" -msgstr " Huwelijkse staat:" - -#: ../../mod/profiles.php:609 -msgid "Who: (if applicable)" -msgstr "Wie (wanneer toepasselijk):" - -#: ../../mod/profiles.php:610 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl" - -#: ../../mod/profiles.php:611 -msgid "Since [date]:" -msgstr "Sinds [datum]:" - -#: ../../mod/profiles.php:613 -msgid "Homepage URL:" -msgstr "Adres homepage:" - -#: ../../mod/profiles.php:616 -msgid "Religious Views:" -msgstr "Religieuze overtuigingen" - -#: ../../mod/profiles.php:617 -msgid "Keywords:" -msgstr "Trefwoorden" - -#: ../../mod/profiles.php:620 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: muziek, fotografie, software" - -#: ../../mod/profiles.php:621 -msgid "Used in directory listings" -msgstr "Wordt in de kanalengids gebruikt" - -#: ../../mod/profiles.php:622 -msgid "Tell us about yourself..." -msgstr "Vertel ons iets over jezelf..." - -#: ../../mod/profiles.php:623 -msgid "Hobbies/Interests" -msgstr "Hobby's/interesses" - -#: ../../mod/profiles.php:624 -msgid "Contact information and Social Networks" -msgstr "Contactinformatie en sociale netwerken" - -#: ../../mod/profiles.php:625 -msgid "My other channels" -msgstr "Mijn andere kanalen" - -#: ../../mod/profiles.php:626 -msgid "Musical interests" -msgstr "Muzikale interesses" - -#: ../../mod/profiles.php:627 -msgid "Books, literature" -msgstr "Boeken/literatuur" - -#: ../../mod/profiles.php:628 -msgid "Television" -msgstr "Televisie" - -#: ../../mod/profiles.php:629 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultuur/entertainment" - -#: ../../mod/profiles.php:630 -msgid "Love/romance" -msgstr "Liefde/romantiek" - -#: ../../mod/profiles.php:631 -msgid "Work/employment" -msgstr "Werk/arbeid" - -#: ../../mod/profiles.php:632 -msgid "School/education" -msgstr "School/onderwijs" - -#: ../../mod/profiles.php:637 +#: ../../mod/suggest.php:35 msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Dit is jouw openbare profiel.
Het kan voor iedereen op het internet zichtbaar zijn." - -#: ../../mod/profiles.php:648 ../../mod/directory.php:143 -#: ../../mod/dirprofile.php:92 -msgid "Age: " -msgstr "Leeftijd:" - -#: ../../mod/profiles.php:690 -msgid "Edit/Manage Profiles" -msgstr "Profielen bewerken/beheren" - -#: ../../mod/profiles.php:691 -msgid "Add profile things" -msgstr "Dingen aan je profiel toevoegen" - -#: ../../mod/profiles.php:692 -msgid "Include desirable objects in your profile" -msgstr "Voeg door jou gewenste dingen aan jouw profiel toe" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Bladwijzer toegevoegd" - -#: ../../mod/bookmarks.php:58 -msgid "My Bookmarks" -msgstr "Mijn bladwijzers" - -#: ../../mod/bookmarks.php:69 -msgid "My Connections Bookmarks" -msgstr "Bladwijzers van mijn connecties" - -#: ../../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/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:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende privacy-rechten. 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/register.php:43 -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:49 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." - -#: ../../mod/register.php:83 -msgid "Passwords do not match." -msgstr "Wachtwoorden komen niet met elkaar overeen." - -#: ../../mod/register.php:116 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registratie geslaagd. Controleer je e-mail voor instructies om je e-mail te bevestigen." - -#: ../../mod/register.php:122 -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:125 -msgid "Your registration can not be processed." -msgstr "Jouw registratie kan niet verwerkt worden." - -#: ../../mod/register.php:162 -msgid "Registration on this site/hub is by approval only." -msgstr "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd." - -#: ../../mod/register.php:163 -msgid "Register at another affiliated site/hub" -msgstr "Registreer op een andere RedMatrix-hub" - -#: ../../mod/register.php:171 -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:182 -msgid "Terms of Service" -msgstr "Gebruiksvoorwaarden" - -#: ../../mod/register.php:188 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ik accepteer de %s van deze RedMatrix-hub" - -#: ../../mod/register.php:190 -#, 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:204 ../../mod/admin.php:443 -msgid "Registration" -msgstr "Registratie" - -#: ../../mod/register.php:209 -msgid "Membership on this site is by invitation only." -msgstr "Registreren op deze RedMatrix-hub kan alleen op uitnodiging." - -#: ../../mod/register.php:210 -msgid "Please enter your invitation code" -msgstr "Vul jouw uitnodigingscode in" - -#: ../../mod/register.php:213 -msgid "Your email address" -msgstr "Jouw e-mailadres" - -#: ../../mod/register.php:214 -msgid "Choose a password" -msgstr "Geef een wachtwoord op" - -#: ../../mod/register.php:215 -msgid "Please re-enter your password" -msgstr "Geef het wachtwoord opnieuw op" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Afwezig" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/regmod.php:12 -msgid "Please login." -msgstr "Inloggen." - -#: ../../mod/cloud.php:126 -msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix - gasten: Gebruikersnaam: {jouw e-mailadres}, wachtwoord: +++" - -#: ../../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 -msgid "Please enter your password for verification:" -msgstr "Vul je wachtwoord in voor 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/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "Ga verder" - -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " - -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" - -#: ../../mod/connect.php:87 -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, gebruikersvoorschriften, enz." - -#: ../../mod/connect.php:89 ../../mod/connect.php:109 -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:90 -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:91 ../../mod/connect.php:112 -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:100 -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:108 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" - -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "Collectie niet gevonden" - -#: ../../mod/network.php:118 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" - -#: ../../mod/network.php:172 -msgid "Collection is empty" -msgstr "Collectie is leeg" - -#: ../../mod/network.php:180 -msgid "Collection: " -msgstr "Collectie: " - -#: ../../mod/network.php:193 -msgid "Connection: " -msgstr "Connectie: " - -#: ../../mod/network.php:196 -msgid "Invalid connection." -msgstr "Ongeldige connectie." - -#: ../../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:78 -msgid "Could not locate selected profile." -msgstr "Kon het gekozen profiel niet vinden." - -#: ../../mod/connections.php:94 ../../mod/connedit.php:132 -msgid "Connection updated." -msgstr "Connectie bijgewerkt." - -#: ../../mod/connections.php:96 ../../mod/connedit.php:134 -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:368 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:369 -msgid "Edit contact" -msgstr "Connectie bewerken" - -#: ../../mod/connections.php:390 -msgid "Search your connections" -msgstr "Doorzoek jouw connecties" - -#: ../../mod/connections.php:391 -msgid "Finding: " -msgstr "Zoeken naar: " - -#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "Bericht bewerken" +"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/connedit.php:181 msgid "is now connected to" msgstr "is nu verbonden met" -#: ../../mod/connedit.php:276 +#: ../../mod/connedit.php:274 msgid "Could not access address book record." msgstr "Kon geen toegang krijgen tot de record van de connectie." -#: ../../mod/connedit.php:290 +#: ../../mod/connedit.php:288 msgid "Refresh failed - channel is currently unavailable." msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" -#: ../../mod/connedit.php:297 +#: ../../mod/connedit.php:295 msgid "Channel has been unblocked" msgstr "Kanaal is gedeblokkeerd" -#: ../../mod/connedit.php:298 +#: ../../mod/connedit.php:296 msgid "Channel has been blocked" msgstr "Kanaal is geblokkeerd" -#: ../../mod/connedit.php:302 ../../mod/connedit.php:314 -#: ../../mod/connedit.php:326 ../../mod/connedit.php:338 -#: ../../mod/connedit.php:353 +#: ../../mod/connedit.php:300 ../../mod/connedit.php:312 +#: ../../mod/connedit.php:324 ../../mod/connedit.php:336 +#: ../../mod/connedit.php:352 msgid "Unable to set address book parameters." msgstr "Niet in staat om de parameters van connecties in te stellen." -#: ../../mod/connedit.php:309 +#: ../../mod/connedit.php:307 msgid "Channel has been unignored" msgstr "Kanaal wordt niet meer genegeerd" -#: ../../mod/connedit.php:310 +#: ../../mod/connedit.php:308 msgid "Channel has been ignored" msgstr "Kanaal wordt genegeerd" -#: ../../mod/connedit.php:321 +#: ../../mod/connedit.php:319 msgid "Channel has been unarchived" msgstr "Kanaal is niet meer gearchiveerd" -#: ../../mod/connedit.php:322 +#: ../../mod/connedit.php:320 msgid "Channel has been archived" msgstr "Kanaal is gearchiveerd" -#: ../../mod/connedit.php:333 +#: ../../mod/connedit.php:331 msgid "Channel has been unhidden" msgstr "Kanaal is niet meer verborgen" -#: ../../mod/connedit.php:334 +#: ../../mod/connedit.php:332 msgid "Channel has been hidden" msgstr "Kanaal is verborgen" -#: ../../mod/connedit.php:348 +#: ../../mod/connedit.php:347 msgid "Channel has been approved" msgstr "Connectie/kanaal is geaccepteerd" -#: ../../mod/connedit.php:349 +#: ../../mod/connedit.php:348 msgid "Channel has been unapproved" msgstr "Connectie/kanaal is afgewezen" -#: ../../mod/connedit.php:377 +#: ../../mod/connedit.php:376 msgid "Connection has been removed." msgstr "Connectie is verwijderd" -#: ../../mod/connedit.php:397 +#: ../../mod/connedit.php:396 #, php-format msgid "View %s's profile" msgstr "Profiel van %s weergeven" -#: ../../mod/connedit.php:401 +#: ../../mod/connedit.php:400 msgid "Refresh Permissions" msgstr "Privacy-rechten vernieuwen" -#: ../../mod/connedit.php:404 +#: ../../mod/connedit.php:403 msgid "Fetch updated permissions" msgstr "Aangepaste privacy-rechten ophalen" -#: ../../mod/connedit.php:408 +#: ../../mod/connedit.php:407 msgid "Recent Activity" msgstr "Recente activiteit" -#: ../../mod/connedit.php:411 +#: ../../mod/connedit.php:410 msgid "View recent posts and comments" msgstr "Recente berichten en reacties weergeven" -#: ../../mod/connedit.php:415 ../../mod/connedit.php:558 -#: ../../mod/admin.php:760 -msgid "Unblock" -msgstr "Deblokkeren" - -#: ../../mod/connedit.php:415 ../../mod/connedit.php:558 -#: ../../mod/admin.php:759 -msgid "Block" -msgstr "Blokkeren" - -#: ../../mod/connedit.php:418 +#: ../../mod/connedit.php:417 msgid "Block or Unblock this connection" msgstr "Deze connectie blokkeren of deblokkeren" -#: ../../mod/connedit.php:422 ../../mod/connedit.php:559 +#: ../../mod/connedit.php:421 ../../mod/connedit.php:558 msgid "Unignore" msgstr "Niet meer negeren" -#: ../../mod/connedit.php:422 ../../mod/connedit.php:559 +#: ../../mod/connedit.php:421 ../../mod/connedit.php:558 #: ../../mod/notifications.php:51 msgid "Ignore" msgstr "Negeren" -#: ../../mod/connedit.php:425 +#: ../../mod/connedit.php:424 msgid "Ignore or Unignore this connection" msgstr "Deze connectie negeren of niet meer negeren" -#: ../../mod/connedit.php:428 +#: ../../mod/connedit.php:427 msgid "Unarchive" msgstr "Niet meer archiveren" -#: ../../mod/connedit.php:428 +#: ../../mod/connedit.php:427 msgid "Archive" msgstr "Archiveren" -#: ../../mod/connedit.php:431 +#: ../../mod/connedit.php:430 msgid "Archive or Unarchive this connection" msgstr "Deze connectie archiveren of niet meer archiveren" -#: ../../mod/connedit.php:434 +#: ../../mod/connedit.php:433 msgid "Unhide" msgstr "Niet meer verbergen" -#: ../../mod/connedit.php:434 +#: ../../mod/connedit.php:433 msgid "Hide" msgstr "Verbergen" -#: ../../mod/connedit.php:437 +#: ../../mod/connedit.php:436 msgid "Hide or Unhide this connection" msgstr "Deze connectie verbergen of niet meer verbergen" -#: ../../mod/connedit.php:444 +#: ../../mod/connedit.php:443 msgid "Delete this connection" msgstr "Deze connectie verwijderen" -#: ../../mod/connedit.php:487 ../../mod/connedit.php:516 +#: ../../mod/connedit.php:486 ../../mod/connedit.php:515 msgid "Approve this connection" msgstr "Deze connectie accepteren" -#: ../../mod/connedit.php:487 +#: ../../mod/connedit.php:486 msgid "Accept connection to allow communication" msgstr "Keur deze connectie goed om communicatie toe te staan" -#: ../../mod/connedit.php:503 +#: ../../mod/connedit.php:502 msgid "Automatic Permissions Settings" msgstr "Automatische privacy-rechten" -#: ../../mod/connedit.php:503 +#: ../../mod/connedit.php:502 #, php-format msgid "Connections: settings for %s" msgstr "Connecties: instellingen voor %s" -#: ../../mod/connedit.php:507 +#: ../../mod/connedit.php:506 msgid "" "When receiving a channel introduction, any permissions provided here will be" " applied to the new connection automatically and the introduction approved. " "Leave this page if you do not wish to use this feature." msgstr "Wanneer je een connectieverzoek voor een kanaal ontvangt, zullen alle privacy-rechten hier automatisch op de nieuwe connectie worden toegepast en het connectieverzoek worden geaccepteerd. Verlaat deze pagina wanneer je geen gebruik wil maken van deze functie." -#: ../../mod/connedit.php:509 +#: ../../mod/connedit.php:508 msgid "Slide to adjust your degree of friendship" msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" -#: ../../mod/connedit.php:515 +#: ../../mod/connedit.php:514 msgid "inherited" msgstr "geërfd" -#: ../../mod/connedit.php:517 +#: ../../mod/connedit.php:516 msgid "Connection has no individual permissions!" msgstr "Connectie heeft geen individuele privacy-rechten!" -#: ../../mod/connedit.php:518 +#: ../../mod/connedit.php:517 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:520 +#: ../../mod/connedit.php:519 msgid "Profile Visibility" msgstr "Zichtbaarheid profiel" -#: ../../mod/connedit.php:521 +#: ../../mod/connedit.php:520 #, 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:522 +#: ../../mod/connedit.php:521 msgid "Contact Information / Notes" msgstr "Informatie/aantekeningen over connectie" -#: ../../mod/connedit.php:523 +#: ../../mod/connedit.php:522 msgid "Edit contact notes" msgstr "Bewerk aantekeningen over contact" -#: ../../mod/connedit.php:525 +#: ../../mod/connedit.php:524 msgid "Their Settings" msgstr "Hun instellingen" -#: ../../mod/connedit.php:526 +#: ../../mod/connedit.php:525 msgid "My Settings" msgstr "Mijn instellingen" -#: ../../mod/connedit.php:528 +#: ../../mod/connedit.php:527 msgid "Clear/Disable Automatic Permissions" msgstr "Verwijderen/uitschakelen automatische privacy-rechten" -#: ../../mod/connedit.php:529 +#: ../../mod/connedit.php:528 msgid "Forum Members" msgstr "Forum/groepsleden" -#: ../../mod/connedit.php:530 +#: ../../mod/connedit.php:529 msgid "Soapbox" msgstr "Zeepkist" -#: ../../mod/connedit.php:531 +#: ../../mod/connedit.php:530 msgid "Full Sharing (typical social network permissions)" msgstr "Voluit delen (vergelijkbaar met die van sociale netwerken)" -#: ../../mod/connedit.php:532 +#: ../../mod/connedit.php:531 msgid "Cautious Sharing " msgstr "Voorzichtig delen" -#: ../../mod/connedit.php:533 +#: ../../mod/connedit.php:532 msgid "Follow Only" msgstr "Alleen volgen" -#: ../../mod/connedit.php:534 +#: ../../mod/connedit.php:533 msgid "Individual Permissions" msgstr "Individuele privacy-rechten" -#: ../../mod/connedit.php:535 +#: ../../mod/connedit.php:534 msgid "" "Some permissions may be inherited from your channel privacy settings, which have higher priority than " @@ -5178,177 +5742,107 @@ msgid "" "have no effect." msgstr "Sommige privacy-rechten 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:536 +#: ../../mod/connedit.php:535 msgid "Advanced Permissions" msgstr "Geavanceerde privacy-rechten" -#: ../../mod/connedit.php:537 +#: ../../mod/connedit.php:536 msgid "Simple Permissions (select one and submit)" msgstr "Eenvoudige privacy-rechten (selecteer er één en opslaan)" -#: ../../mod/connedit.php:541 +#: ../../mod/connedit.php:540 #, php-format msgid "Visit %s's profile - %s" msgstr "Profiel van %s bezoeken - %s" -#: ../../mod/connedit.php:542 +#: ../../mod/connedit.php:541 msgid "Block/Unblock contact" msgstr "Connectie blokkeren/deblokkeren" -#: ../../mod/connedit.php:543 +#: ../../mod/connedit.php:542 msgid "Ignore contact" msgstr "Connectie negeren" -#: ../../mod/connedit.php:544 +#: ../../mod/connedit.php:543 msgid "Repair URL settings" msgstr "URL-instellingen repareren" -#: ../../mod/connedit.php:545 +#: ../../mod/connedit.php:544 msgid "View conversations" msgstr "Conversaties weergeven" -#: ../../mod/connedit.php:547 +#: ../../mod/connedit.php:546 msgid "Delete contact" msgstr "Connectie verwijderen" -#: ../../mod/connedit.php:550 +#: ../../mod/connedit.php:549 msgid "Last update:" msgstr "Laatste wijziging:" -#: ../../mod/connedit.php:552 +#: ../../mod/connedit.php:551 msgid "Update public posts" msgstr "Openbare berichten updaten" -#: ../../mod/connedit.php:554 +#: ../../mod/connedit.php:553 msgid "Update now" msgstr "Nu updaten" -#: ../../mod/connedit.php:560 +#: ../../mod/connedit.php:559 msgid "Currently blocked" msgstr "Momenteel geblokkeerd" -#: ../../mod/connedit.php:561 +#: ../../mod/connedit.php:560 msgid "Currently ignored" msgstr "Momenteel genegeerd" -#: ../../mod/connedit.php:562 +#: ../../mod/connedit.php:561 msgid "Currently archived" msgstr "Momenteel gearchiveerd" -#: ../../mod/connedit.php:563 +#: ../../mod/connedit.php:562 msgid "Currently pending" msgstr "Moeten nog geaccepteerd of afgewezen worden" -#: ../../mod/connedit.php:564 +#: ../../mod/connedit.php:563 msgid "Hide this contact from others" msgstr "Verberg deze connectie voor anderen" -#: ../../mod/connedit.php:564 +#: ../../mod/connedit.php:563 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Reacties/vind-ik-leuks op jouw openbare berichten kunnen zichtbaar blijven" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed." +#: ../../mod/message.php:31 ../../mod/mail.php:121 +msgid "Messages" +msgstr "Berichten" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Accountbeheer uitbesteden" +#: ../../mod/message.php:41 +msgid "Conversation removed." +msgstr "Conversatie verwijderd" -#: ../../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/message.php:56 +msgid "No messages." +msgstr "Geen berichten" -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Bestaande accountbeheerders" +#: ../../mod/message.php:72 ../../mod/mail.php:302 +msgid "Delete message" +msgstr "Bericht verwijderen" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Bestaande gevolmachtigde accountbeheerders" +#: ../../mod/message.php:74 +msgid "D, d M Y - g:i A" +msgstr "D, j M Y - G:i" -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed." +#: ../../mod/ping.php:237 +msgid "sent you a private message" +msgstr "stuurde jou een privébericht" -#: ../../mod/delegate.php:130 ../../mod/photos.php:906 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Verwijderen" +#: ../../mod/ping.php:288 +msgid "added your channel" +msgstr "voegde jouw kanaal toe" -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Toevoegen" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Geen" - -#: ../../mod/search.php:13 ../../mod/directory.php:15 -#: ../../mod/dirprofile.php:9 ../../mod/display.php:9 ../../mod/photos.php:443 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "Openbare toegang geweigerd." - -#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 -msgid "Gender: " -msgstr "Geslacht:" - -#: ../../mod/directory.php:215 -msgid "Finding:" -msgstr "Gezocht naar:" - -#: ../../mod/directory.php:222 -msgid "next page" -msgstr "volgende pagina" - -#: ../../mod/directory.php:222 -msgid "previous page" -msgstr "vorige pagina" - -#: ../../mod/directory.php:231 -msgid "No entries (some entries may be hidden)." -msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." - -#: ../../mod/dirprofile.php:108 -msgid "Status: " -msgstr "Status: " - -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " -msgstr "Seksuele voorkeur: " - -#: ../../mod/dirprofile.php:111 -msgid "Homepage: " -msgstr "Homepage: " - -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " -msgstr "Oorspronkelijk uit: " - -#: ../../mod/dirprofile.php:114 -msgid "About: " -msgstr "Over: " - -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " -msgstr "Trefwoorden: " - -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Deze hub is geen kanalengidshub (directoryserver)" - -#: ../../mod/home.php:81 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix - "The Network"" - -#: ../../mod/home.php:94 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" +#: ../../mod/ping.php:329 +msgid "posted an event" +msgstr "plaatste een gebeurtenis" #: ../../mod/setup.php:162 msgid "Red Matrix Server - Setup" @@ -5733,1127 +6227,86 @@ msgid "" "poller." msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 -#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 -msgid "Item not found" -msgstr "Item niet gevonden" +#: ../../mod/magic.php:70 +msgid "Hub not found." +msgstr "Hub niet gevonden." -#: ../../mod/editblock.php:77 -msgid "Edit Block" -msgstr "Blok bewerken" +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Limiet voor aantal uitnodigingen overschreden." -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "Blok verwijderen" - -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 -msgid "Insert YouTube video" -msgstr "YouTube-video invoegen" - -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 -msgid "Insert Vorbis [.ogg] video" -msgstr "Vorbis-video [.ogg] invoegen" - -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Vorbis-audio [.ogg] invoegen" - -#: ../../mod/editblock.php:153 -msgid "Delete Block" -msgstr "Blok verwijderen" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout 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:59 -msgid "Layout Help" -msgstr "Lay-out-hulp" - -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" -msgstr "Lay-out bewerken" - -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" -msgstr "Lay-out verwijderen?" - -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" -msgstr "Lay-out verwijderen" - -#: ../../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/editwebpage.php:106 -msgid "Edit Webpage" -msgstr "Webpagina bewerken" - -#: ../../mod/editwebpage.php:116 -msgid "Delete webpage?" -msgstr "Webpagina verwijderen?" - -#: ../../mod/editwebpage.php:186 -msgid "Delete Webpage" -msgstr "Webpagina verwijderen" - -#: ../../mod/siteinfo.php:57 +#: ../../mod/invite.php:49 #, php-format -msgid "Version %s" -msgstr "Versie %s" +msgid "%s : Not a valid email address." +msgstr "%s : Geen geldig e-mailadres." -#: ../../mod/siteinfo.php:76 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plug-ins/add-ons/apps:" +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "Kom op de RedMatrix" -#: ../../mod/siteinfo.php:89 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plug-ins/add-ons/apps" +#: ../../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/siteinfo.php:97 -msgid "Red" -msgstr "Red" - -#: ../../mod/siteinfo.php:98 -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:101 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" - -#: ../../mod/siteinfo.php:102 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "Bezoek RedMatrix.me om meer te leren over de RedMatrix." - -#: ../../mod/siteinfo.php:103 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" - -#: ../../mod/siteinfo.php:106 -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:108 -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:669 -msgid "Delete Album" -msgstr "Verwijder album" - -#: ../../mod/photos.php:159 ../../mod/photos.php:957 -msgid "Delete Photo" -msgstr "Verwijder foto" - -#: ../../mod/photos.php:453 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" - -#: ../../mod/photos.php:500 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." - -#: ../../mod/photos.php:574 +#: ../../mod/invite.php:92 #, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Je gebruiker %1$.2f MB van totaal %2$.2f MB foto-opslagruimte." +msgid "%s : Message delivery failed." +msgstr "%s: Aflevering bericht mislukt." -#: ../../mod/photos.php:577 +#: ../../mod/invite.php:96 #, php-format -msgid "You have used %1$.2f Mbytes of photo storage." -msgstr "Je gebruikt %1$.2f MB aan foto-opslagruimte." +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." -#: ../../mod/photos.php:596 -msgid "Upload Photos" -msgstr "Foto's uploaden" +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Je hebt geen uitnodigingen meer beschikbaar" -#: ../../mod/photos.php:600 ../../mod/photos.php:664 -msgid "New album name: " -msgstr "Nieuwe albumnaam: " +#: ../../mod/invite.php:141 +msgid "Send invitations" +msgstr "Uitnodigingen verzenden" -#: ../../mod/photos.php:601 -msgid "or existing album name: " -msgstr "of een bestaande albumnaam: " +#: ../../mod/invite.php:142 +msgid "Enter email addresses, one per line:" +msgstr "Voer e-mailadressen in, één per regel:" -#: ../../mod/photos.php:602 -msgid "Do not show a status post for this upload" -msgstr "Plaats geen bericht voor deze upload." +#: ../../mod/invite.php:143 ../../mod/mail.php:225 ../../mod/mail.php:338 +msgid "Your message:" +msgstr "Jouw bericht:" -#: ../../mod/photos.php:653 ../../mod/photos.php:675 ../../mod/photos.php:1129 -#: ../../mod/photos.php:1144 -msgid "Contact Photos" -msgstr "Connectiefoto's" - -#: ../../mod/photos.php:679 -msgid "Edit Album" -msgstr "Album bewerken" - -#: ../../mod/photos.php:685 -msgid "Show Newest First" -msgstr "Nieuwste eerst weergeven" - -#: ../../mod/photos.php:687 -msgid "Show Oldest First" -msgstr "Oudste eerst weergeven" - -#: ../../mod/photos.php:730 ../../mod/photos.php:1176 -msgid "View Photo" -msgstr "Foto weergeven" - -#: ../../mod/photos.php:776 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." - -#: ../../mod/photos.php:778 -msgid "Photo not available" -msgstr "Foto niet aanwezig" - -#: ../../mod/photos.php:838 -msgid "Use as profile photo" -msgstr "Als profielfoto gebruiken" - -#: ../../mod/photos.php:862 -msgid "View Full Size" -msgstr "Volledige grootte weergeven" - -#: ../../mod/photos.php:940 -msgid "Edit photo" -msgstr "Foto bewerken" - -#: ../../mod/photos.php:942 -msgid "Rotate CW (right)" -msgstr "Draai met de klok mee (naar rechts)" - -#: ../../mod/photos.php:943 -msgid "Rotate CCW (left)" -msgstr "Draai tegen de klok in (naar links)" - -#: ../../mod/photos.php:946 -msgid "New album name" -msgstr "Nieuwe albumnaam" - -#: ../../mod/photos.php:949 -msgid "Caption" -msgstr "Bijschrift" - -#: ../../mod/photos.php:951 -msgid "Add a Tag" -msgstr "Label toevoegen" - -#: ../../mod/photos.php:954 +#: ../../mod/invite.php:144 msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@example.com, #Friesland, #camping" +"You are cordially invited to join me and some other close friends on the Red" +" Matrix - a revolutionary new decentralized communication and information " +"tool." +msgstr "Je bent hierbij uitgenodigd om mij, en enkele goede vrienden, te komen vergezellen op de RedMatrix - een revolutionaire nieuwe communicatie- en informatietool." -#: ../../mod/photos.php:1107 -msgid "In This Photo:" -msgstr "Op deze foto:" +#: ../../mod/invite.php:146 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Je moet deze uitnodigingscode geven: $invite_code" -#: ../../mod/photos.php:1182 -msgid "View Album" -msgstr "Album weergeven" +#: ../../mod/invite.php:147 +msgid "Please visit my channel at" +msgstr "Bezoek mijn kanaal op" -#: ../../mod/photos.php:1191 -msgid "Recent Photos" -msgstr "Recente foto's" - -#: ../../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 +#: ../../mod/invite.php:151 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." +"Once you have registered (on ANY Red Matrix site - they are all inter-" +"connected), please connect with my Red Matrix channel address:" +msgstr "Wanneer je je eenmaal hebt geregistreerd (maakt niet uit op welke RedMatrix-hub, want ze zijn allemaal met elkaar verbonden), kan je je met mijn RedMatrix-kanaal verbinden:" -#: ../../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/invite.php:153 +msgid "Click the [Register] link on the following page to join." +msgstr "Klik op de link [Registreren] op de volgende pagina om je aan te melden." -#: ../../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:110 -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/filer.php:49 -msgid "- select -" -msgstr "- kies map -" - -#: ../../mod/events.php:72 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van gebeurtenis zijn vereist." - -#: ../../mod/events.php:86 -msgid "Event not found." -msgstr "Gebeurtenis niet gevonden" - -#: ../../mod/events.php:329 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:351 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" - -#: ../../mod/events.php:397 -msgid "Create New Event" -msgstr "Nieuwe gebeurtenis aanmaken" - -#: ../../mod/events.php:398 -msgid "Previous" -msgstr "Vorige" - -#: ../../mod/events.php:469 -msgid "hour:minute" -msgstr "uur:minuut" - -#: ../../mod/events.php:489 -msgid "Event details" -msgstr "Details van gebeurtenis" - -#: ../../mod/events.php:490 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Volgorde is %s %s. Begintijd en titel zijn vereist." - -#: ../../mod/events.php:492 -msgid "Event Starts:" -msgstr "Begin gebeurtenis:" - -#: ../../mod/events.php:492 ../../mod/events.php:506 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 -msgid "Required" -msgstr "Vereist" - -#: ../../mod/events.php:495 -msgid "Finish date/time is not known or not relevant" -msgstr "Einddatum/-tijd is niet bekend of niet relevant" - -#: ../../mod/events.php:497 -msgid "Event Finishes:" -msgstr "Einde gebeurtenis:" - -#: ../../mod/events.php:500 -msgid "Adjust for viewer timezone" -msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" - -#: ../../mod/events.php:502 -msgid "Description:" -msgstr "Omschrijving:" - -#: ../../mod/events.php:506 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:508 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: ../../mod/filestorage.php:68 -msgid "Permission Denied." -msgstr "Toegang geweigerd" - -#: ../../mod/filestorage.php:85 -msgid "File not found." -msgstr "Bestand niet gevonden." - -#: ../../mod/filestorage.php:122 -msgid "Edit file permissions" -msgstr "Bestandsrechten bewerken" - -#: ../../mod/filestorage.php:131 -msgid "Set/edit permissions" -msgstr "Rechten instellen/bewerken" - -#: ../../mod/filestorage.php:132 -msgid "Include all files and sub folders" -msgstr "Toepassen op alle bestanden en submappen" - -#: ../../mod/filestorage.php:133 -msgid "Return to file list" -msgstr "Terugkeren naar bestandlijst " - -#: ../../mod/filestorage.php:135 -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:136 -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/follow.php:25 -msgid "Channel added." -msgstr "Kanaal toegevoegd." - -#: ../../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/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/suggest.php:35 +#: ../../mod/invite.php:155 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/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/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s labelde het %3$s van %2$s met %4$s" - -#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" -msgstr "Hulp:" - -#: ../../mod/help.php:69 ../../index.php:233 -msgid "Not Found" -msgstr "Niet gevonden" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Label verwijderd" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Verwijder itemlabel" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Kies een label om te verwijderen" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Thema-instellingen bijgewerkt." - -#: ../../mod/admin.php:92 ../../mod/admin.php:441 -msgid "Site" -msgstr "Hub-instellingen" - -#: ../../mod/admin.php:93 -msgid "Accounts" -msgstr "Accounts" - -#: ../../mod/admin.php:94 ../../mod/admin.php:885 -msgid "Channels" -msgstr "Kanalen" - -#: ../../mod/admin.php:95 ../../mod/admin.php:976 ../../mod/admin.php:1018 -msgid "Plugins" -msgstr "Plug-ins" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1181 ../../mod/admin.php:1217 -msgid "Themes" -msgstr "Thema's" - -#: ../../mod/admin.php:97 ../../mod/admin.php:541 -msgid "Server" -msgstr "Hubbeheer" - -#: ../../mod/admin.php:98 -msgid "DB updates" -msgstr "Database-updates" - -#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1304 -msgid "Logs" -msgstr "Logboeken" - -#: ../../mod/admin.php:118 -msgid "Plugin Features" -msgstr "Plug-in-opties" - -#: ../../mod/admin.php:120 -msgid "User registrations waiting for confirmation" -msgstr "Accountregistraties die op goedkeuring wachten" - -#: ../../mod/admin.php:197 -msgid "Message queues" -msgstr "Berichtenwachtrij" - -#: ../../mod/admin.php:202 ../../mod/admin.php:440 ../../mod/admin.php:540 -#: ../../mod/admin.php:749 ../../mod/admin.php:884 ../../mod/admin.php:975 -#: ../../mod/admin.php:1017 ../../mod/admin.php:1180 ../../mod/admin.php:1216 -#: ../../mod/admin.php:1303 -msgid "Administration" -msgstr "Beheer" - -#: ../../mod/admin.php:203 -msgid "Summary" -msgstr "Samenvatting" - -#: ../../mod/admin.php:205 -msgid "Registered users" -msgstr "Geregistreerde gebruikers" - -#: ../../mod/admin.php:207 ../../mod/admin.php:544 -msgid "Pending registrations" -msgstr "Accounts die op goedkeuring wachten" - -#: ../../mod/admin.php:208 -msgid "Version" -msgstr "Versie" - -#: ../../mod/admin.php:210 ../../mod/admin.php:545 -msgid "Active plugins" -msgstr "Ingeschakelde plug-ins" - -#: ../../mod/admin.php:361 -msgid "Site settings updated." -msgstr "Hub-instellingen bijgewerkt." - -#: ../../mod/admin.php:392 -msgid "No special theme for accessibility" -msgstr "Geen speciaal thema voor universele toegang" - -#: ../../mod/admin.php:421 -msgid "Yes - with approval" -msgstr "Ja - met goedkeuring" - -#: ../../mod/admin.php:427 -msgid "My site is not a public server" -msgstr "Mijn RedMatrix-hub is niet openbaar" - -#: ../../mod/admin.php:428 -msgid "My site has paid access only" -msgstr "Mijn RedMatrix-hub kent alleen betaalde toegang" - -#: ../../mod/admin.php:429 -msgid "My site has free access only" -msgstr "Mijn RedMatrix-hub kent alleen gratis toegang" - -#: ../../mod/admin.php:430 -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:444 -msgid "File upload" -msgstr "Bestand uploaden" - -#: ../../mod/admin.php:445 -msgid "Policies" -msgstr "Beleid" - -#: ../../mod/admin.php:450 -msgid "Site name" -msgstr "Naam van deze RedMatrix-hub" - -#: ../../mod/admin.php:451 -msgid "Banner/Logo" -msgstr "Banner/logo" - -#: ../../mod/admin.php:452 -msgid "Administrator Information" -msgstr "Informatie over de beheerder van deze hub" - -#: ../../mod/admin.php:452 -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:453 -msgid "System language" -msgstr "Standaardtaal" - -#: ../../mod/admin.php:454 -msgid "System theme" -msgstr "Standaardthema" - -#: ../../mod/admin.php:454 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standaardthema voor RedMatrix-hub (kan door gebruiker veranderd worden) - verander thema-instellingen" - -#: ../../mod/admin.php:455 -msgid "Mobile system theme" -msgstr "Standaardthema voor mobiel" - -#: ../../mod/admin.php:455 -msgid "Theme for mobile devices" -msgstr "Thema voor mobiele apparaten" - -#: ../../mod/admin.php:456 -msgid "Accessibility system theme" -msgstr "Standaardthema voor universele toegang" - -#: ../../mod/admin.php:456 -msgid "Accessibility theme" -msgstr "Thema voor universele toegang" - -#: ../../mod/admin.php:457 -msgid "Channel to use for this website's static pages" -msgstr "Kanaal die op deze hub als statische pagina op de homepage gebruikt moet worden" - -#: ../../mod/admin.php:457 -msgid "Site Channel" -msgstr "Kanaal op deze RedMatrix-hub" - -#: ../../mod/admin.php:459 -msgid "Maximum image size" -msgstr "Maximale grootte van afbeeldingen" - -#: ../../mod/admin.php:459 -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:460 -msgid "Does this site allow new member registration?" -msgstr "Staat deze hub registratie van nieuwe accounts toe?" - -#: ../../mod/admin.php:461 -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:462 -msgid "Register text" -msgstr "Registratietekst" - -#: ../../mod/admin.php:462 -msgid "Will be displayed prominently on the registration page." -msgstr "Wordt prominent op de registratiepagina getoond." - -#: ../../mod/admin.php:463 -msgid "Accounts abandoned after x days" -msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" - -#: ../../mod/admin.php:463 -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:464 -msgid "Allowed friend domains" -msgstr "Toegestane domeinen" - -#: ../../mod/admin.php:464 -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:465 -msgid "Allowed email domains" -msgstr "Toegestane e-maildomeinen" - -#: ../../mod/admin.php:465 -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." - -#: ../../mod/admin.php:466 -msgid "Block public" -msgstr "Openbare toegang blokkeren" - -#: ../../mod/admin.php:466 -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 gebruikers." - -#: ../../mod/admin.php:467 -msgid "Force publish" -msgstr "Dwing kanaalvermelding af" - -#: ../../mod/admin.php:467 -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:468 -msgid "Disable discovery tab" -msgstr "Ontdekkingstab" - -#: ../../mod/admin.php:468 -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:469 -msgid "No login on Homepage" -msgstr "Geen inlogformulier op de homepage" - -#: ../../mod/admin.php:469 -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 gebruikers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze RedMatrix-hub als homepage gebruikt)" - -#: ../../mod/admin.php:471 -msgid "Proxy user" -msgstr "Proxy-gebruiker" - -#: ../../mod/admin.php:472 -msgid "Proxy URL" -msgstr "Proxy-URL" - -#: ../../mod/admin.php:473 -msgid "Network timeout" -msgstr "Netwerktimeout" - -#: ../../mod/admin.php:473 -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:474 -msgid "Delivery interval" -msgstr "Afleveringsinterval" - -#: ../../mod/admin.php:474 -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:475 -msgid "Poll interval" -msgstr "Poll-interval" - -#: ../../mod/admin.php:475 -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:476 -msgid "Maximum Load Average" -msgstr "Maximaal gemiddelde systeembelasting" - -#: ../../mod/admin.php:476 -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:532 -msgid "No server found" -msgstr "Geen hub gevonden" - -#: ../../mod/admin.php:539 ../../mod/admin.php:763 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:539 -msgid "for channel" -msgstr "voor kanaal" - -#: ../../mod/admin.php:539 -msgid "on server" -msgstr "op hub" - -#: ../../mod/admin.php:539 -msgid "Status" -msgstr "Status" - -#: ../../mod/admin.php:560 -msgid "Update has been marked successful" -msgstr "Update is als succesvol gemarkeerd" - -#: ../../mod/admin.php:570 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." - -#: ../../mod/admin.php:573 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s was geslaagd." - -#: ../../mod/admin.php:577 -#, 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:580 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-functie %s kon niet gevonden worden." - -#: ../../mod/admin.php:595 -msgid "No failed updates." -msgstr "Geen mislukte updates." - -#: ../../mod/admin.php:599 -msgid "Failed Updates" -msgstr "Mislukte updates" - -#: ../../mod/admin.php:601 -msgid "Mark success (if update was manually applied)" -msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" - -#: ../../mod/admin.php:602 -msgid "Attempt to execute this update step automatically" -msgstr "Poging om deze stap van de update automatisch uit te voeren." - -#: ../../mod/admin.php:628 -#, 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:635 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s account verwijderd" -msgstr[1] "%s accounts verwijderd" - -#: ../../mod/admin.php:666 -msgid "Account not found" -msgstr "Account niet gevonden" - -#: ../../mod/admin.php:677 -#, php-format -msgid "User '%s' deleted" -msgstr "Account '%s' verwijderd" - -#: ../../mod/admin.php:686 -#, php-format -msgid "User '%s' unblocked" -msgstr "Account '%s' gedeblokkeerd" - -#: ../../mod/admin.php:686 -#, php-format -msgid "User '%s' blocked" -msgstr "Gebruiker '%s' geblokkeerd" - -#: ../../mod/admin.php:750 ../../mod/admin.php:762 -msgid "Users" -msgstr "Accounts" - -#: ../../mod/admin.php:752 ../../mod/admin.php:887 -msgid "select all" -msgstr "alles selecteren" - -#: ../../mod/admin.php:753 -msgid "User registrations waiting for confirm" -msgstr "Accounts die op goedkeuring wachten" - -#: ../../mod/admin.php:754 -msgid "Request date" -msgstr "Tijd/datum verzoek" - -#: ../../mod/admin.php:755 -msgid "No registrations." -msgstr "Geen verzoeken." - -#: ../../mod/admin.php:756 -msgid "Approve" -msgstr "Goedkeuren" - -#: ../../mod/admin.php:757 -msgid "Deny" -msgstr "Afkeuren" - -#: ../../mod/admin.php:763 -msgid "Register date" -msgstr "Geregistreerd" - -#: ../../mod/admin.php:763 -msgid "Last login" -msgstr "Laatste keer ingelogd" - -#: ../../mod/admin.php:763 -msgid "Expires" -msgstr "Verloopt" - -#: ../../mod/admin.php:763 -msgid "Service Class" -msgstr "Abonnementen" - -#: ../../mod/admin.php:765 -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:766 -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:799 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channelss censored/uncensored" -msgstr[0] "%s kanalen gecensureerd/ongecensureerd" -msgstr[1] "%s kanaal gecensureerd/ongecensureerd" - -#: ../../mod/admin.php:806 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s kanaal verwijderd" -msgstr[1] "%s kanalen verwijderd" - -#: ../../mod/admin.php:825 -msgid "Channel not found" -msgstr "Kanaal niet gevonden" - -#: ../../mod/admin.php:836 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanaal '%s' verwijderd" - -#: ../../mod/admin.php:846 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanaal '%s' ongecensureerd" - -#: ../../mod/admin.php:846 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanaal '%s' gecensureerd" - -#: ../../mod/admin.php:889 -msgid "Censor" -msgstr "Censureren" - -#: ../../mod/admin.php:890 -msgid "Uncensor" -msgstr "Niet censureren" - -#: ../../mod/admin.php:893 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:895 -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:896 -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:935 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plug-in %s uitgeschakeld." - -#: ../../mod/admin.php:939 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plug-in %s ingeschakeld" - -#: ../../mod/admin.php:949 ../../mod/admin.php:1151 -msgid "Disable" -msgstr "Uitschakelen" - -#: ../../mod/admin.php:951 ../../mod/admin.php:1153 -msgid "Enable" -msgstr "Inschakelen" - -#: ../../mod/admin.php:977 ../../mod/admin.php:1182 -msgid "Toggle" -msgstr "Omschakelen" - -#: ../../mod/admin.php:985 ../../mod/admin.php:1192 -msgid "Author: " -msgstr "Auteur: " - -#: ../../mod/admin.php:986 ../../mod/admin.php:1193 -msgid "Maintainer: " -msgstr "Beheerder: " - -#: ../../mod/admin.php:1115 -msgid "No themes found." -msgstr "Geen thema's gevonden" - -#: ../../mod/admin.php:1174 -msgid "Screenshot" -msgstr "Schermafdruk" - -#: ../../mod/admin.php:1222 -msgid "[Experimental]" -msgstr "[Experimenteel]" - -#: ../../mod/admin.php:1223 -msgid "[Unsupported]" -msgstr "[Niet ondersteund]" - -#: ../../mod/admin.php:1250 -msgid "Log settings updated." -msgstr "Logboek-instellingen bijgewerkt." - -#: ../../mod/admin.php:1306 -msgid "Clear" -msgstr "Leegmaken" - -#: ../../mod/admin.php:1312 -msgid "Debugging" -msgstr "Debuggen" - -#: ../../mod/admin.php:1313 -msgid "Log file" -msgstr "Logbestand" - -#: ../../mod/admin.php:1313 -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:1314 -msgid "Log level" -msgstr "Logniveau" +"For more information about the Red Matrix Project and why it has the " +"potential to change the internet as we know it, please visit " +"http://getzot.com" +msgstr "Bezoek http://getzot.com voor meer informatie over het RedMatrix-project en waarom het de potentie heeft het internet voor altijd te veranderen." #: ../../mod/thing.php:98 msgid "Thing updated" @@ -6912,6 +6365,694 @@ msgstr "URL van foto van ding (optioneel)" msgid "Add Thing to your Profile" msgstr "Ding aan je profiel toevoegen" +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Niet in staat om je hub te vinden" + +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Verzenden bericht geslaagd." + +#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 +msgid "Help:" +msgstr "Hulp:" + +#: ../../mod/help.php:69 ../../index.php:233 +msgid "Not Found" +msgstr "Niet gevonden" + +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "Geen connecties." + +#: ../../mod/viewconnections.php:71 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Bezoek het profiel van %s [%s]" + +#: ../../mod/viewconnections.php:86 +msgid "View Connnections" +msgstr "Connecties weergeven" + +#: ../../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/register.php:43 +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:49 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." + +#: ../../mod/register.php:83 +msgid "Passwords do not match." +msgstr "Wachtwoorden komen niet met elkaar overeen." + +#: ../../mod/register.php:116 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registratie geslaagd. Controleer je e-mail voor instructies om je e-mail te bevestigen." + +#: ../../mod/register.php:122 +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:125 +msgid "Your registration can not be processed." +msgstr "Jouw registratie kan niet verwerkt worden." + +#: ../../mod/register.php:162 +msgid "Registration on this site/hub is by approval only." +msgstr "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd." + +#: ../../mod/register.php:163 +msgid "Register at another affiliated site/hub" +msgstr "Registreer op een andere RedMatrix-hub" + +#: ../../mod/register.php:171 +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:182 +msgid "Terms of Service" +msgstr "Gebruiksvoorwaarden" + +#: ../../mod/register.php:188 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ik accepteer de %s van deze RedMatrix-hub" + +#: ../../mod/register.php:190 +#, 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:209 +msgid "Membership on this site is by invitation only." +msgstr "Registreren op deze RedMatrix-hub kan alleen op uitnodiging." + +#: ../../mod/register.php:210 +msgid "Please enter your invitation code" +msgstr "Vul jouw uitnodigingscode in" + +#: ../../mod/register.php:213 +msgid "Your email address" +msgstr "Jouw e-mailadres" + +#: ../../mod/register.php:214 +msgid "Choose a password" +msgstr "Geef een wachtwoord op" + +#: ../../mod/register.php:215 +msgid "Please re-enter your password" +msgstr "Geef het wachtwoord opnieuw op" + +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "Collectie niet gevonden" + +#: ../../mod/network.php:118 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" + +#: ../../mod/network.php:172 +msgid "Collection is empty" +msgstr "Collectie is leeg" + +#: ../../mod/network.php:180 +msgid "Collection: " +msgstr "Collectie: " + +#: ../../mod/network.php:193 +msgid "Connection: " +msgstr "Connectie: " + +#: ../../mod/network.php:196 +msgid "Invalid connection." +msgstr "Ongeldige connectie." + +#: ../../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:131 +msgid "Add" +msgstr "Toevoegen" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Geen" + +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" +msgstr "Ga verder" + +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " + +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" + +#: ../../mod/connect.php:87 +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, gebruikersvoorschriften, enz." + +#: ../../mod/connect.php:89 ../../mod/connect.php:109 +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:90 +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:91 ../../mod/connect.php:112 +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:100 +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:108 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" + +#: ../../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/manage.php:136 +#, 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:144 +msgid "Create a new channel" +msgstr "Nieuw kanaal aanmaken" + +#: ../../mod/manage.php:148 +msgid "Channel Manager" +msgstr "Kanaalbeheerder" + +#: ../../mod/manage.php:149 +msgid "Current Channel" +msgstr "Huidig kanaal" + +#: ../../mod/manage.php:151 +msgid "Attach to one of your channels by selecting it." +msgstr "Gebruik een van jouw kanalen door op een te klikken." + +#: ../../mod/manage.php:152 +msgid "Default Channel" +msgstr "Standaardkanaal" + +#: ../../mod/manage.php:153 +msgid "Make Default" +msgstr "Als standaard instellen" + +#: ../../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 +msgid "Please enter your password for verification:" +msgstr "Vul je wachtwoord in voor 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/editpost.php:20 ../../mod/editwebpage.php:32 +#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 +#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 +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/editwebpage.php:147 +#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 +msgid "Insert YouTube video" +msgstr "YouTube-video invoegen" + +#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 +#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 +msgid "Insert Vorbis [.ogg] video" +msgstr "Vorbis-video [.ogg] invoegen" + +#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 +#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Vorbis-audio [.ogg] invoegen" + +#: ../../mod/editwebpage.php:106 +msgid "Edit Webpage" +msgstr "Webpagina bewerken" + +#: ../../mod/editwebpage.php:116 +msgid "Delete webpage?" +msgstr "Webpagina verwijderen?" + +#: ../../mod/editwebpage.php:186 +msgid "Delete Webpage" +msgstr "Webpagina verwijderen" + +#: ../../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/blocks.php:66 +msgid "Block Name" +msgstr "Bloknaam" + +#: ../../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/tagrm.php:41 +msgid "Tag removed" +msgstr "Label verwijderd" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Verwijder itemlabel" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Kies een label om te verwijderen" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Item is niet aanwezig." + +#: ../../mod/item.php:146 +msgid "Unable to locate original post." +msgstr "Niet in staat om de originele locatie van het bericht te vinden. " + +#: ../../mod/item.php:379 +msgid "Empty post discarded." +msgstr "Leeg bericht geannuleerd" + +#: ../../mod/item.php:421 +msgid "Executable content type not permitted to this channel." +msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." + +#: ../../mod/item.php:850 +msgid "System error. Post not saved." +msgstr "Systeemfout. Bericht niet opgeslagen." + +#: ../../mod/item.php:1302 +#, 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:1308 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." + +#: ../../mod/cloud.php:126 +msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" +msgstr "RedMatrix - gasten: Gebruikersnaam: {jouw e-mailadres}, wachtwoord: +++" + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Afwezig" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" + +#: ../../mod/directory.php:223 +msgid "Finding:" +msgstr "Gezocht naar:" + +#: ../../mod/directory.php:239 +msgid "No entries (some entries may be hidden)." +msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." + +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "Profielovereenkomst" + +#: ../../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/match.php:61 +msgid "is interested in:" +msgstr "is geïnteresseerd in:" + +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "Geen overeenkomsten" + +#: ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Deze hub is geen kanalengidshub (directoryserver)" + +#: ../../mod/siteinfo.php:57 +#, php-format +msgid "Version %s" +msgstr "Versie %s" + +#: ../../mod/siteinfo.php:76 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plug-ins/add-ons/apps:" + +#: ../../mod/siteinfo.php:89 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plug-ins/add-ons/apps" + +#: ../../mod/siteinfo.php:97 +msgid "Red" +msgstr "Red" + +#: ../../mod/siteinfo.php:98 +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:101 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" + +#: ../../mod/siteinfo.php:102 +msgid "" +"Please visit GetZot.com to learn more " +"about the Red Matrix." +msgstr "Bezoek RedMatrix.me om meer te leren over de RedMatrix." + +#: ../../mod/siteinfo.php:103 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" + +#: ../../mod/siteinfo.php:106 +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:108 +msgid "Site Administrators" +msgstr "Hubbeheerders" + +#: ../../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:91 ../../mod/appman.php:92 ../../mod/events.php:492 +#: ../../mod/events.php:506 +msgid "Required" +msgstr "Vereist" + +#: ../../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/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: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/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:404 +msgid "Location" +msgstr "Locatie" + #: ../../mod/import.php:36 msgid "Nothing to import." msgstr "Niets gevonden om te importeren" @@ -6989,121 +7130,361 @@ msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres msgid "Make this hub my primary location" msgstr "Stel deze hub als mijn primaire locatie in" -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Limiet voor aantal uitnodigingen overschreden." +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "ongeldig doel-kenmerk (target signature)" -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Geen geldig e-mailadres." +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Niet in staat om ontvanger op te zoeken." -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Kom op de RedMatrix" +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." -#: ../../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/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Kan opgevraagd kanaal niet verifieren" -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Aflevering bericht mislukt." +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden 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/mail.php:132 +msgid "Message deleted." +msgstr "Bericht verwijderd." -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Je hebt geen uitnodigingen meer beschikbaar" +#: ../../mod/mail.php:149 +msgid "Message recalled." +msgstr "Bericht ingetrokken." -#: ../../mod/invite.php:141 -msgid "Send invitations" -msgstr "Uitnodigingen verzenden" +#: ../../mod/mail.php:215 +msgid "Send Private Message" +msgstr "Privébericht versturen" -#: ../../mod/invite.php:142 -msgid "Enter email addresses, one per line:" -msgstr "Voer e-mailadressen in, één per regel:" +#: ../../mod/mail.php:216 ../../mod/mail.php:333 +msgid "To:" +msgstr "Aan:" -#: ../../mod/invite.php:143 ../../mod/mail.php:225 ../../mod/mail.php:338 -msgid "Your message:" -msgstr "Jouw bericht:" +#: ../../mod/mail.php:221 ../../mod/mail.php:335 +msgid "Subject:" +msgstr "Onderwerp:" -#: ../../mod/invite.php:144 +#: ../../mod/mail.php:232 +msgid "Send" +msgstr "Verzenden" + +#: ../../mod/mail.php:259 +msgid "Message not found." +msgstr "Bericht niet gevonden" + +#: ../../mod/mail.php:303 +msgid "Recall message" +msgstr "Bericht intrekken" + +#: ../../mod/mail.php:305 +msgid "Message has been recalled." +msgstr "Bericht is ingetrokken." + +#: ../../mod/mail.php:322 +msgid "Private Conversation" +msgstr "Privéconversatie" + +#: ../../mod/mail.php:326 +msgid "Delete conversation" +msgstr "Verwijder conversatie" + +#: ../../mod/mail.php:328 msgid "" -"You are cordially invited to join me and some other close friends on the Red" -" Matrix - a revolutionary new decentralized communication and information " -"tool." -msgstr "Je bent hierbij uitgenodigd om mij, en enkele goede vrienden, te komen vergezellen op de Red Matrix - een revolutionaire nieuwe communicatie- en informatietool." +"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/invite.php:146 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Je moet deze uitnodigingscode geven: $invite_code" +#: ../../mod/mail.php:332 +msgid "Send Reply" +msgstr "Antwoord versturen" -#: ../../mod/invite.php:147 -msgid "Please visit my channel at" -msgstr "Bezoek mijn kanaal op" +#: ../../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/invite.php:151 -msgid "" -"Once you have registered (on ANY Red Matrix site - they are all inter-" -"connected), please connect with my Red Matrix channel address:" -msgstr "Wanneer je je eenmaal hebt geregistreerd (maakt niet uit op welke RedMatrix-hub, want ze zijn allemaal met elkaar verbonden), kan je je met mijn RedMatrix-kanaal verbinden:" +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende privacy-rechten. Doorgestuurd naar profielpagina." -#: ../../mod/invite.php:153 -msgid "Click the [Register] link on the following page to join." -msgstr "Klik op de link [Registreren] op de volgende pagina om je aan te melden." +#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 +#: ../../mod/profiles.php:222 ../../mod/profiles.php:539 +msgid "Profile not found." +msgstr "Profiel niet gevonden." -#: ../../mod/invite.php:155 -msgid "" -"For more information about the Red Matrix Project and why it has the " -"potential to change the internet as we know it, please visit " -"http://getzot.com" -msgstr "Bezoek http://getzot.com voor meer informatie over het RedMatrix-project en waarom het de potentie heeft het internet voor altijd te veranderen." +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profiel verwijderd." -#: ../../mod/item.php:147 -msgid "Unable to locate original post." -msgstr "Niet in staat om de originele locatie van het bericht te vinden. " +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profiel-" -#: ../../mod/item.php:372 -msgid "Empty post discarded." -msgstr "Leeg bericht geannuleerd" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." -#: ../../mod/item.php:414 -msgid "Executable content type not permitted to this channel." -msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen" -#: ../../mod/item.php:842 -msgid "System error. Post not saved." -msgstr "Systeemfout. Bericht niet opgeslagen." +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "Geen profiel beschikbaar om te exporteren" -#: ../../mod/item.php:1294 +#: ../../mod/profiles.php:232 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist" + +#: ../../mod/profiles.php:354 +msgid "Marital Status" +msgstr "Huwelijke status" + +#: ../../mod/profiles.php:358 +msgid "Romantic Partner" +msgstr "Romantische partner" + +#: ../../mod/profiles.php:362 +msgid "Likes" +msgstr "Houdt van" + +#: ../../mod/profiles.php:366 +msgid "Dislikes" +msgstr "Houdt niet van" + +#: ../../mod/profiles.php:370 +msgid "Work/Employment" +msgstr "Werk/arbeid" + +#: ../../mod/profiles.php:373 +msgid "Religion" +msgstr "Religie" + +#: ../../mod/profiles.php:377 +msgid "Political Views" +msgstr "Politieke overtuigingen" + +#: ../../mod/profiles.php:381 +msgid "Gender" +msgstr "Geslacht" + +#: ../../mod/profiles.php:385 +msgid "Sexual Preference" +msgstr "Seksuele voorkeur" + +#: ../../mod/profiles.php:389 +msgid "Homepage" +msgstr "Homepage" + +#: ../../mod/profiles.php:393 +msgid "Interests" +msgstr "Interesses" + +#: ../../mod/profiles.php:487 +msgid "Profile updated." +msgstr "Profiel bijgewerkt" + +#: ../../mod/profiles.php:564 +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:588 +msgid "Edit Profile Details" +msgstr "Profiel bewerken" + +#: ../../mod/profiles.php:590 +msgid "View this profile" +msgstr "Profiel weergeven" + +#: ../../mod/profiles.php:592 +msgid "Change Profile Photo" +msgstr "Profielfoto wijzigen" + +#: ../../mod/profiles.php:593 +msgid "Create a new profile using these settings" +msgstr "Een nieuw profiel aanmaken met dit profiel als basis" + +#: ../../mod/profiles.php:594 +msgid "Clone this profile" +msgstr "Dit profiel klonen" + +#: ../../mod/profiles.php:595 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" + +#: ../../mod/profiles.php:597 +msgid "Import profile from file" +msgstr "Profiel vanuit bestand importeren" + +#: ../../mod/profiles.php:598 +msgid "Export profile to file" +msgstr "Profiel naar bestand exporteren" + +#: ../../mod/profiles.php:599 +msgid "Profile Name:" +msgstr "Profielnaam:" + +#: ../../mod/profiles.php:600 +msgid "Your Full Name:" +msgstr "Jouw volledige naam:" + +#: ../../mod/profiles.php:601 +msgid "Title/Description:" +msgstr "Titel/omschrijving:" + +#: ../../mod/profiles.php:602 +msgid "Your Gender:" +msgstr "Jouw geslacht" + +#: ../../mod/profiles.php:603 #, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." +msgid "Birthday (%s):" +msgstr "Geboortedag (%s)" -#: ../../mod/item.php:1300 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." +#: ../../mod/profiles.php:604 +msgid "Street Address:" +msgstr "Straat en huisnummer:" -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" -msgstr "[Ingesloten inhoud - ververs pagina om te bekijken] " +#: ../../mod/profiles.php:605 +msgid "Locality/City:" +msgstr "Woonplaats:" -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "Hulp voor dit onderdeel" +#: ../../mod/profiles.php:606 +msgid "Postal/Zip Code:" +msgstr "Postcode:" -#: ../../mod/layouts.php:84 -msgid "Layout Name" -msgstr "Naam layout" +#: ../../mod/profiles.php:607 +msgid "Country:" +msgstr "Land:" + +#: ../../mod/profiles.php:608 +msgid "Region/State:" +msgstr "Provincie/gewest/deelstaat:" + +#: ../../mod/profiles.php:609 +msgid " Marital Status:" +msgstr " Huwelijkse staat:" + +#: ../../mod/profiles.php:610 +msgid "Who: (if applicable)" +msgstr "Wie (wanneer toepasselijk):" + +#: ../../mod/profiles.php:611 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl" + +#: ../../mod/profiles.php:612 +msgid "Since [date]:" +msgstr "Sinds [datum]:" + +#: ../../mod/profiles.php:614 +msgid "Homepage URL:" +msgstr "Adres homepage:" + +#: ../../mod/profiles.php:617 +msgid "Religious Views:" +msgstr "Religieuze overtuigingen" + +#: ../../mod/profiles.php:618 +msgid "Keywords:" +msgstr "Trefwoorden" + +#: ../../mod/profiles.php:621 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: muziek, fotografie, software" + +#: ../../mod/profiles.php:622 +msgid "Used in directory listings" +msgstr "Wordt in de kanalengids gebruikt" + +#: ../../mod/profiles.php:623 +msgid "Tell us about yourself..." +msgstr "Vertel ons iets over jezelf..." + +#: ../../mod/profiles.php:624 +msgid "Hobbies/Interests" +msgstr "Hobby's/interesses" + +#: ../../mod/profiles.php:625 +msgid "Contact information and Social Networks" +msgstr "Contactinformatie en sociale netwerken" + +#: ../../mod/profiles.php:626 +msgid "My other channels" +msgstr "Mijn andere kanalen" + +#: ../../mod/profiles.php:627 +msgid "Musical interests" +msgstr "Muzikale interesses" + +#: ../../mod/profiles.php:628 +msgid "Books, literature" +msgstr "Boeken/literatuur" + +#: ../../mod/profiles.php:629 +msgid "Television" +msgstr "Televisie" + +#: ../../mod/profiles.php:630 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultuur/entertainment" + +#: ../../mod/profiles.php:631 +msgid "Love/romance" +msgstr "Liefde/romantiek" + +#: ../../mod/profiles.php:632 +msgid "Work/employment" +msgstr "Werk/arbeid" + +#: ../../mod/profiles.php:633 +msgid "School/education" +msgstr "School/onderwijs" + +#: ../../mod/profiles.php:639 +msgid "This is your default profile." +msgstr "Dit is jouw standaardprofiel" + +#: ../../mod/profiles.php:692 +msgid "Edit/Manage Profiles" +msgstr "Profielen bewerken/beheren" + +#: ../../mod/profiles.php:693 +msgid "Add profile things" +msgstr "Dingen aan je profiel toevoegen" + +#: ../../mod/profiles.php:694 +msgid "Include desirable objects in your profile" +msgstr "Voeg door jou gewenste dingen aan jouw profiel toe" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Bladwijzer toegevoegd" + +#: ../../mod/bookmarks.php:58 +msgid "My Bookmarks" +msgstr "Mijn bladwijzers" + +#: ../../mod/bookmarks.php:69 +msgid "My Connections Bookmarks" +msgstr "Bladwijzers van mijn connecties" + +#: ../../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/like.php:15 msgid "Like/Dislike" @@ -7143,26 +7524,141 @@ msgstr "Actie voltooid" msgid "Thank you." msgstr "Bedankt" -#: ../../mod/lockview.php:30 ../../mod/lockview.php:36 -msgid "Remote privacy information not available." -msgstr "Privacy-informatie op afstand niet beschikbaar." +#: ../../mod/notify.php:53 ../../mod/notifications.php:94 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." -#: ../../mod/lockview.php:45 -msgid "Visible to:" -msgstr "Zichtbaar voor:" +#: ../../mod/notify.php:57 ../../mod/notifications.php:98 +msgid "System Notifications" +msgstr "Systeemnotificaties" -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Geen connecties." +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Geef toestemming voor applicatiekoppeling" -#: ../../mod/viewconnections.php:71 +#: ../../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/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 "Visit %s's profile [%s]" -msgstr "Bezoek het profiel van %s [%s]" +msgid "%1$s's Chatrooms" +msgstr "Chatkanalen van %1$s" -#: ../../mod/viewconnections.php:86 -msgid "View Connnections" -msgstr "Connecties weergeven" +#: ../../mod/events.php:72 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van gebeurtenis zijn vereist." + +#: ../../mod/events.php:86 +msgid "Event not found." +msgstr "Gebeurtenis niet gevonden" + +#: ../../mod/events.php:329 +msgid "l, F j" +msgstr "l j F" + +#: ../../mod/events.php:351 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" + +#: ../../mod/events.php:397 +msgid "Create New Event" +msgstr "Nieuwe gebeurtenis aanmaken" + +#: ../../mod/events.php:398 +msgid "Previous" +msgstr "Vorige" + +#: ../../mod/events.php:469 +msgid "hour:minute" +msgstr "uur:minuut" + +#: ../../mod/events.php:489 +msgid "Event details" +msgstr "Details van gebeurtenis" + +#: ../../mod/events.php:490 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Volgorde is %s %s. Begintijd en titel zijn vereist." + +#: ../../mod/events.php:492 +msgid "Event Starts:" +msgstr "Begin gebeurtenis:" + +#: ../../mod/events.php:495 +msgid "Finish date/time is not known or not relevant" +msgstr "Einddatum/-tijd is niet bekend of niet relevant" + +#: ../../mod/events.php:497 +msgid "Event Finishes:" +msgstr "Einde gebeurtenis:" + +#: ../../mod/events.php:500 +msgid "Adjust for viewer timezone" +msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" + +#: ../../mod/events.php:502 +msgid "Description:" +msgstr "Omschrijving:" + +#: ../../mod/events.php:506 +msgid "Title:" +msgstr "Titel:" + +#: ../../mod/events.php:508 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ongeldige verzoek identificator (request identifier)" + +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Annuleren" #: ../../mod/lostpass.php:15 msgid "No valid account found." @@ -7188,10 +7684,6 @@ msgid "" "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:1503 -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." @@ -7237,675 +7729,38 @@ msgstr "E-mailadres" msgid "Reset" msgstr "Opnieuw instellen" -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Hub niet gevonden." +#: ../../mod/layouts.php:62 +msgid "Help with this feature" +msgstr "Hulp voor dit onderdeel" -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Totaal aantal stemmen" +#: ../../mod/layouts.php:84 +msgid "Layout Name" +msgstr "Naam layout" -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Gemiddelde waardering" +#: ../../mod/editblock.php:77 +msgid "Edit Block" +msgstr "Blok bewerken" -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Niet in staat om ontvanger op te zoeken." +#: ../../mod/editblock.php:87 +msgid "Delete block?" +msgstr "Blok verwijderen" -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." +#: ../../mod/editblock.php:153 +msgid "Delete Block" +msgstr "Blok verwijderen" -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Kan opgevraagd kanaal niet verifieren" +#: ../../mod/editlayout.php:72 +msgid "Edit Layout" +msgstr "Lay-out bewerken" -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." +#: ../../mod/editlayout.php:82 +msgid "Delete layout?" +msgstr "Lay-out verwijderen?" -#: ../../mod/mail.php:121 ../../mod/message.php:31 -msgid "Messages" -msgstr "Berichten" +#: ../../mod/editlayout.php:146 +msgid "Delete Layout" +msgstr "Lay-out verwijderen" -#: ../../mod/mail.php:132 -msgid "Message deleted." -msgstr "Bericht verwijderd." - -#: ../../mod/mail.php:149 -msgid "Message recalled." -msgstr "Bericht ingetrokken." - -#: ../../mod/mail.php:215 -msgid "Send Private Message" -msgstr "Privébericht versturen" - -#: ../../mod/mail.php:216 ../../mod/mail.php:333 -msgid "To:" -msgstr "Aan:" - -#: ../../mod/mail.php:221 ../../mod/mail.php:335 -msgid "Subject:" -msgstr "Onderwerp:" - -#: ../../mod/mail.php:259 -msgid "Message not found." -msgstr "Bericht niet gevonden" - -#: ../../mod/mail.php:302 ../../mod/message.php:72 -msgid "Delete message" -msgstr "Bericht verwijderen" - -#: ../../mod/mail.php:303 -msgid "Recall message" -msgstr "Bericht intrekken" - -#: ../../mod/mail.php:305 -msgid "Message has been recalled." -msgstr "Bericht is ingetrokken." - -#: ../../mod/mail.php:322 -msgid "Private Conversation" -msgstr "Privéconversatie" - -#: ../../mod/mail.php:326 -msgid "Delete conversation" -msgstr "Verwijder conversatie" - -#: ../../mod/mail.php:328 -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:332 -msgid "Send Reply" -msgstr "Antwoord versturen" - -#: ../../mod/manage.php:136 -#, 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:144 -msgid "Create a new channel" -msgstr "Nieuw kanaal aanmaken" - -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "Kanaalbeheerder" - -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "Huidig kanaal" - -#: ../../mod/manage.php:151 -msgid "Attach to one of your channels by selecting it." -msgstr "Gebruik een van jouw kanalen door op een te klikken." - -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "Standaardkanaal" - -#: ../../mod/manage.php:153 -msgid "Make Default" -msgstr "Als standaard instellen" - -#: ../../mod/wall_upload.php:34 -msgid "Wall Photos" -msgstr "Kanaalfoto's" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profielovereenkomst" - -#: ../../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/match.php:61 -msgid "is interested in:" -msgstr "is geïnteresseerd in:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Geen overeenkomsten" - -#: ../../mod/menu.php:21 -msgid "Menu updated." -msgstr "Menu aangepast. " - -#: ../../mod/menu.php:25 -msgid "Unable to update menu." -msgstr "Niet in staat om menu aan te passen" - -#: ../../mod/menu.php:30 -msgid "Menu created." -msgstr "Menu aangemaakt." - -#: ../../mod/menu.php:34 -msgid "Unable to create menu." -msgstr "Niet in staat om menu aan te maken." - -#: ../../mod/menu.php:57 -msgid "Manage Menus" -msgstr "Menu's beheren" - -#: ../../mod/menu.php:60 -msgid "Drop" -msgstr "Verwijderen" - -#: ../../mod/menu.php:62 -msgid "Create a new menu" -msgstr "Een nieuwe menu aanmaken" - -#: ../../mod/menu.php:63 -msgid "Delete this menu" -msgstr "Menu verwijderen" - -#: ../../mod/menu.php:64 ../../mod/menu.php:109 -msgid "Edit menu contents" -msgstr "Bewerk de inhoud van het menu" - -#: ../../mod/menu.php:65 -msgid "Edit this menu" -msgstr "Dit menu bewerken" - -#: ../../mod/menu.php:80 -msgid "New Menu" -msgstr "Nieuw menu" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Menu name" -msgstr "Naam van menu" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Must be unique, only seen by you" -msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title" -msgstr "Titel van menu" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title as seen by others" -msgstr "Titel van menu zoals anderen dat zien." - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Allow bookmarks" -msgstr "Bladwijzers toestaan" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" - -#: ../../mod/menu.php:98 -msgid "Menu deleted." -msgstr "Menu verwijderd." - -#: ../../mod/menu.php:100 -msgid "Menu could not be deleted." -msgstr "Menu kon niet verwijderd worden." - -#: ../../mod/menu.php:106 -msgid "Edit Menu" -msgstr "Menu bewerken" - -#: ../../mod/menu.php:108 -msgid "Add or remove entries to this menu" -msgstr "Items aan dit menu toevoegen of verwijder" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Conversatie verwijderd" - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Geen berichten" - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, j M Y - G:i" - -#: ../../mod/new_channel.php:107 -msgid "Add a Channel" -msgstr "Kanaal toevoegen" - -#: ../../mod/new_channel.php:108 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "Een kanaal is jouw eigen verzameling gerelateerde webpagina's. Een kanaal kan gebruikt worden voor een sociaal netwerk, weblog, discussiegroep of forum, een pagina over een beroemdheid, en voor veel meer. Je kan net zoveel kanalen aanmaken als dat de eigenaar/beheerder van jouw hub toestaat." - -#: ../../mod/new_channel.php:111 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Voorbeelden: \"Bruce Springsteen\", \"Familiefoto's\", \"Voetbal\", \"Astronomie\"" - -#: ../../mod/new_channel.php:112 -msgid "Choose a short nickname" -msgstr "Kies een korte bijnaam" - -#: ../../mod/new_channel.php:113 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Jouw bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres (zoals een e-mailadres) aan te maken, die je dan kan delen met anderen." - -#: ../../mod/new_channel.php:114 -msgid "Or import an existing channel from another location" -msgstr "Of importeer een bestaand kanaal vanaf een andere locatie." - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ongeldige verzoek identificator (request identifier)" - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Annuleren" - -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." - -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "Systeemnotificaties" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Niet in staat om je hub te vinden" - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Verzenden bericht geslaagd." - -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "ongeldig doel-kenmerk (target signature)" - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID-protocolfout. Geen ID terugontvangen." - -#: ../../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/poll.php:64 -msgid "Poll" -msgstr "Poll" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Bekijk resultaten" - -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Standaardschema" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Schreefloos" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" - -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/blogga/php/config.php:69 -#: ../../view/theme/blogga/view/theme/blog/config.php:69 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" -msgstr "Thema-instellingen" - -#: ../../view/theme/apw/php/config.php:260 -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set scheme" -msgstr "Schema van thema instellen" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Lettergrootte voor berichten en reacties instellen" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Lettertypefamilie instellen" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Pictogrammenset instellen" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Een grote schaduwgrootte instellen (standaard 15px 15px 15px)" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Een kleine schaduwgrootte instellen (standaard 5px 5px 5px)" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Schaduwkleur instellen (standaard #000)" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Radius instellen (standaard 5px)" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Lijnhoogte voor berichten en reacties instellen" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Achtergrondafbeelding instellen" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Gedrag achtergrondafbeelding instellen" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Achtergrondkleur instellen" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Achtergrondafbeelding van sectie instellen" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Achtergrondkleur van sectie instellen" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Tekstkleur van items instellen (gebruik hexadecimaal)" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Kleur van links instellen (gebruik hexadecimaal)" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Maximale breedte van items instellen (standaard 400px)" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Minimale breedte van items instellen (standaard 240px)" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Breedte van de generieke content-wrapper instellen (standaard 48%)" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Tekstkleur instellen (gebruik hexadecimaal)" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Grootte achtergrondafbeelding instellen" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Ondoorzichtigheid item" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Alleen voorvertoning berichten weergeven" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Zijbalk op kanaalpagina weergeven" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Kleur van de navigatiebalk" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Item float" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Linker offset van het sectie-element" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Rechter offset van het sectie-element" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Breedte van sectie" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Rechter offset van aside (zijbalk)" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Rechter offset van het aside-element" - -#: ../../view/theme/blogga/php/config.php:47 -#: ../../view/theme/blogga/view/theme/blog/config.php:47 -msgid "None" -msgstr "Geen" - -#: ../../view/theme/blogga/php/config.php:70 -#: ../../view/theme/blogga/view/theme/blog/config.php:70 -msgid "Header image" -msgstr "Header-afbeelding" - -#: ../../view/theme/blogga/php/config.php:71 -#: ../../view/theme/blogga/view/theme/blog/config.php:71 -msgid "Header image only on profile pages" -msgstr "Header-afbeelding alleen op profielpagina's weergeven" - -#: ../../view/theme/redbasic/php/config.php:84 -msgid "Light (Red Matrix default)" -msgstr "Light (RedMatrix-standaard)" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Narrow navbar" -msgstr "Smalle navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation bar background color" -msgstr "Achtergrondkleur navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar gradient top color" -msgstr "Bovenste gradiëntkleur navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient bottom color" -msgstr "Onderste gradiëntkleur navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation active button gradient top color" -msgstr "Bovenste gradiëntkleur actieve knop navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient bottom color" -msgstr "Onderste gradiëntkleur actieve knop op navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar border color " -msgstr "Randkleur navigatiebalk " - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar icon color " -msgstr "Pictogramkleur navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar active icon color " -msgstr "Actieve pictogramkleur navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "link color" -msgstr "Linkkleur instellen" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set font-color for banner" -msgstr "Tekstkleur van banner instellen" - -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background color" -msgstr "Achtergrondkleur instellen" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background image" -msgstr "Achtergrondafbeelding instellen" - -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background color of items" -msgstr "Achtergrondkleur items instellen" - -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of comments" -msgstr "Achtergrondkleur reacties instellen" - -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the border color of comments" -msgstr "Randkleur reacties instellen" - -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the indent for comments" -msgstr "Inspringen reacties instellen" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the basic color for item icons" -msgstr "Basiskleur itempictogrammen instellen" - -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the hover color for item icons" -msgstr "Hoverkleur itempictogrammen instellen" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-size for the entire application" -msgstr "Tekstgrootte van de volledige applicatie instellen" - -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-color for posts and comments" -msgstr "Tekstkleur van berichten en reacties" - -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set radius of corners" -msgstr "Radius van hoeken instellen" - -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set shadow depth of photos" -msgstr "Schaduwdiepte van foto's instellen" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of conversation regions" -msgstr "Maximumbreedte conversatieruimte instellen" - -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Center conversation regions" -msgstr "Centreer conversatieruimte" - -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)" - -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set size of conversation author photo" -msgstr "Grootte profielfoto's van berichten instellen" - -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of followup author photos" -msgstr "Grootte profielfoto's van reacties instellen" - -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Sloppy photo albums" -msgstr "Rommelig vormgegeven fotoalbums" - -#: ../../view/theme/redbasic/php/config.php:133 -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:1291 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Update %s mislukt. Zie foutenlogboek." - -#: ../../boot.php:1294 -#, php-format -msgid "Update Error at %s" -msgstr "Update-fout op %s" - -#: ../../boot.php:1468 -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:1496 -msgid "Password" -msgstr "Wachtwoord" - -#: ../../boot.php:1497 -msgid "Remember me" -msgstr "Aangemeld blijven" - -#: ../../boot.php:1502 -msgid "Forgot your password?" -msgstr "Wachtwoord vergeten?" - -#: ../../boot.php:1567 -msgid "permission denied" -msgstr "toegang geweigerd" - -#: ../../boot.php:1568 -msgid "Got Zot?" -msgstr "Heb je Zot?" - -#: ../../boot.php:1998 -msgid "toggle mobile" -msgstr "mobiele weergave omschakelen" +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanaal toegevoegd." diff --git a/view/nl/strings.php b/view/nl/strings.php index 4dd215ebb..2a4375444 100644 --- a/view/nl/strings.php +++ b/view/nl/strings.php @@ -5,12 +5,460 @@ function string_plural_select_nl($n){ return ($n != 1);; }} ; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; +$a->strings["Light (Red Matrix default)"] = "Light (RedMatrix-standaard)"; +$a->strings["Submit"] = "Opslaan"; +$a->strings["Theme settings"] = "Thema-instellingen"; +$a->strings["Set scheme"] = "Schema van thema instellen"; +$a->strings["Narrow navbar"] = "Smalle navigatiebalk"; +$a->strings["Navigation bar background color"] = "Achtergrondkleur navigatiebalk"; +$a->strings["Navigation bar gradient top color"] = "Bovenste gradiëntkleur navigatiebalk"; +$a->strings["Navigation bar gradient bottom color"] = "Onderste gradiëntkleur navigatiebalk"; +$a->strings["Navigation active button gradient top color"] = "Bovenste gradiëntkleur actieve knop navigatiebalk"; +$a->strings["Navigation active button gradient bottom color"] = "Onderste gradiëntkleur actieve knop op navigatiebalk"; +$a->strings["Navigation bar border color "] = "Randkleur navigatiebalk "; +$a->strings["Navigation bar icon color "] = "Pictogramkleur navigatiebalk"; +$a->strings["Navigation bar active icon color "] = "Actieve pictogramkleur navigatiebalk"; +$a->strings["link color"] = "Linkkleur instellen"; +$a->strings["Set font-color for banner"] = "Tekstkleur van banner instellen"; +$a->strings["Set the background color"] = "Achtergrondkleur instellen"; +$a->strings["Set the background image"] = "Achtergrondafbeelding instellen"; +$a->strings["Set the background color of items"] = "Achtergrondkleur items instellen"; +$a->strings["Set the background color of comments"] = "Achtergrondkleur reacties instellen"; +$a->strings["Set the border color of comments"] = "Randkleur reacties instellen"; +$a->strings["Set the indent for comments"] = "Inspringen reacties instellen"; +$a->strings["Set the basic color for item icons"] = "Basiskleur itempictogrammen instellen"; +$a->strings["Set the hover color for item icons"] = "Hoverkleur itempictogrammen instellen"; +$a->strings["Set font-size for the entire application"] = "Tekstgrootte van de volledige applicatie instellen"; +$a->strings["Set font-size for posts and comments"] = "Lettergrootte voor berichten en reacties instellen"; +$a->strings["Set font-color for posts and comments"] = "Tekstkleur van berichten en reacties"; +$a->strings["Set radius of corners"] = "Radius van hoeken instellen"; +$a->strings["Set shadow depth of photos"] = "Schaduwdiepte van foto's instellen"; +$a->strings["Set maximum width of conversation regions"] = "Maximumbreedte conversatieruimte instellen"; +$a->strings["Center conversation regions"] = "Centreer conversatieruimte"; +$a->strings["Set minimum opacity of nav bar - to hide it"] = "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)"; +$a->strings["Set size of conversation author photo"] = "Grootte profielfoto's van berichten instellen"; +$a->strings["Set size of followup author photos"] = "Grootte profielfoto's van reacties instellen"; +$a->strings["Sloppy photo albums"] = "Rommelig vormgegeven fotoalbums"; +$a->strings["Are you a clean desk or a messy desk person?"] = "Ben je iemand die van een opgeruimd bureau houdt of van een rommelig bureau?"; +$a->strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek."; +$a->strings["Update Error at %s"] = "Update-fout op %s"; +$a->strings["Create an account to access services and applications within the Red Matrix"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen van de RedMatrix"; +$a->strings["Register"] = "Registreren "; +$a->strings["Logout"] = "Uitloggen"; +$a->strings["Login"] = "Inloggen"; +$a->strings["Email"] = "E-mail"; +$a->strings["Password"] = "Wachtwoord"; +$a->strings["Remember me"] = "Aangemeld blijven"; +$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; +$a->strings["Password Reset"] = "Wachtwoord vergeten?"; +$a->strings["permission denied"] = "toegang geweigerd"; +$a->strings["Got Zot?"] = "Heb je Zot?"; +$a->strings["toggle mobile"] = "mobiele weergave omschakelen"; +$a->strings["Logged out."] = "Uitgelogd."; +$a->strings["Failed authentication"] = "Mislukte authenticatie"; +$a->strings["Login failed."] = "Inloggen mislukt."; +$a->strings["Default"] = "Standaard"; +$a->strings["Permission denied."] = "Toegang geweigerd"; $a->strings["Profile Photos"] = "Profielfoto's"; +$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["%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["Exammple: name=fred and country=iceland"] = "Voorbeeld: (voor naam) name=herman en (voor land) country=nederland"; +$a->strings["Advanced Find"] = "Geavanceerd zoeken"; +$a->strings["Saved Folders"] = "Bewaarde mappen"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Categorieën"; +$a->strings["%d connection in common"] = array( + 0 => "%d gemeenschappelijke connectie", + 1 => "%d gemeenschappelijke connecties", +); +$a->strings["show more"] = "meer connecties weergeven"; +$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["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["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["Connect"] = "Verbinden"; +$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["Miscellaneous"] = "Diversen"; +$a->strings["year"] = "jaar"; +$a->strings["month"] = "maand"; +$a->strings["day"] = "dag"; +$a->strings["never"] = "nooit"; +$a->strings["less than a second ago"] = "minder dan een seconde geleden"; +$a->strings["years"] = "jaren"; +$a->strings["months"] = "maanden"; +$a->strings["week"] = "week"; +$a->strings["weeks"] = "weken"; +$a->strings["days"] = "dagen"; +$a->strings["hour"] = "uur"; +$a->strings["hours"] = "uren"; +$a->strings["minute"] = "minuut"; +$a->strings["minutes"] = "minuten"; +$a->strings["second"] = "seconde"; +$a->strings["seconds"] = "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["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["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["Location:"] = "Plaats:"; +$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 voor gebeurtenissen"; +$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["__ctx:noun__ Like"] = array( + 0 => "vindt dit leuk", + 1 => "vinden dit 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:"] = "Trefwoorden:"; +$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["New Page"] = "Nieuwe pagina"; +$a->strings["Edit"] = "Bewerken"; +$a->strings["View"] = "Weergeven"; +$a->strings["Preview"] = "Voorvertoning"; +$a->strings["Actions"] = "Acties"; +$a->strings["Page Link"] = "Paginalink"; +$a->strings["Title"] = "Titel"; +$a->strings["Created"] = "Aangemaakt"; +$a->strings["Edited"] = "Bewerkt"; +$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["Name"] = "Naam"; +$a->strings["Type"] = "Type"; +$a->strings["Size"] = "Grootte"; +$a->strings["Last Modified"] = "Laatst gewijzigd"; +$a->strings["Delete"] = "Verwijderen"; +$a->strings["Total"] = "Totaal"; +$a->strings["Create new folder"] = "Nieuwe map aanmaken"; +$a->strings["Create"] = "Aanmaken"; +$a->strings["Upload file"] = "Bestand uploaden"; +$a->strings["Upload"] = "Uploaden"; +$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["Tags"] = "Labels"; +$a->strings["Keywords"] = "Trefwoorden"; +$a->strings["have"] = "heb"; +$a->strings["has"] = "heeft"; +$a->strings["want"] = "wil"; +$a->strings["wants"] = "wil"; +$a->strings["like"] = "vind dit leuk"; +$a->strings["likes"] = "vindt dit leuk"; +$a->strings["dislike"] = "vind dit niet leuk"; +$a->strings["dislikes"] = "vindt dit niet leuk"; +$a->strings["Delete this item?"] = "Dit item verwijderen?"; +$a->strings["Comment"] = "Reactie"; +$a->strings["[+] show all"] = "[+] alle"; +$a->strings["[-] show less"] = "[-] minder reacties weergeven"; +$a->strings["[+] expand"] = "[+] uitklappen"; +$a->strings["[-] collapse"] = "[-] inklappen"; +$a->strings["Password too short"] = "Wachtwoord te kort"; +$a->strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; +$a->strings["everybody"] = "iedereen"; +$a->strings["Secret Passphrase"] = "Geheim wachtwoord"; +$a->strings["Passphrase hint"] = "Wachtwoordhint"; +$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Mededeling: de privacy-rechten zijn veranderd, maar zijn nog niet opgeslagen."; +$a->strings["close all"] = "Alles sluiten"; +$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +$a->strings["ago"] = "geleden"; +$a->strings["from now"] = "vanaf nu"; +$a->strings["less than a minute"] = "minder dan een minuut"; +$a->strings["about a minute"] = "ongeveer een minuut"; +$a->strings["%d minutes"] = "%d minuten"; +$a->strings["about an hour"] = "ongeveer een uur"; +$a->strings["about %d hours"] = "ongeveer %d uren"; +$a->strings["a day"] = "een dag"; +$a->strings["%d days"] = "%d dagen"; +$a->strings["about a month"] = "ongeveer een maand"; +$a->strings["%d months"] = "%d maanden"; +$a->strings["about a year"] = "ongeveer een jaar"; +$a->strings["%d years"] = "%d jaren"; +$a->strings[" "] = " "; +$a->strings["timeago.numbers"] = "timeago.numbers"; +$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"; +$a->strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; +$a->strings["Can view my file storage"] = "Kan mijn bestanden bekijken"; +$a->strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; +$a->strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; +$a->strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal (\"wall\") plaatsen"; +$a->strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; +$a->strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; +$a->strings["Can post photos to my photo albums"] = "Kan foto's aan mijn fotoalbums toevoegen"; +$a->strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; +$a->strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor kanalen met een groep- cq. forumfunctie"; +$a->strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; +$a->strings["Can write to my file storage"] = "Kan bestanden aan mijn bestandsopslag toevoegen"; +$a->strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; +$a->strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; +$a->strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; +$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["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["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +$a->strings["Starts:"] = "Start:"; +$a->strings["Finishes:"] = "Einde:"; +$a->strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; +$a->strings["Male"] = "Man"; +$a->strings["Female"] = "Vrouw"; +$a->strings["Currently Male"] = "Momenteel man"; +$a->strings["Currently Female"] = "Momenteel vrouw"; +$a->strings["Mostly Male"] = "Voornamelijk man"; +$a->strings["Mostly Female"] = "Voornamelijk vrouw"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Interseksueel"; +$a->strings["Transsexual"] = "Transseksueel"; +$a->strings["Hermaphrodite"] = "Hermafrodiet"; +$a->strings["Neuter"] = "Genderneutraal"; +$a->strings["Non-specific"] = "Niet gespecificeerd"; +$a->strings["Other"] = "Anders"; +$a->strings["Undecided"] = "Nog niet beslist"; +$a->strings["Males"] = "Mannen"; +$a->strings["Females"] = "Vrouwen"; +$a->strings["Gay"] = "Homoseksueel"; +$a->strings["Lesbian"] = "Lesbisch"; +$a->strings["No Preference"] = "Geen voorkeur"; +$a->strings["Bisexual"] = "Biseksueel"; +$a->strings["Autosexual"] = "Autoseksueel"; +$a->strings["Abstinent"] = "Seksuele onthouding"; +$a->strings["Virgin"] = "Maagd"; +$a->strings["Deviant"] = "Afwijkend"; +$a->strings["Fetish"] = "Fetisj"; +$a->strings["Oodles"] = "Veel"; +$a->strings["Nonsexual"] = "Aseksueel"; +$a->strings["Single"] = "Alleen"; +$a->strings["Lonely"] = "Eenzaam"; +$a->strings["Available"] = "Beschikbaar"; +$a->strings["Unavailable"] = "Niet beschikbaar"; +$a->strings["Has crush"] = "Heeft een oogje op iemand"; +$a->strings["Infatuated"] = "Smoorverliefd"; +$a->strings["Dating"] = "Aan het daten"; +$a->strings["Unfaithful"] = "Ontrouw"; +$a->strings["Sex Addict"] = "Seksverslaafd"; +$a->strings["Friends/Benefits"] = "Vriendschap plus"; +$a->strings["Casual"] = "Ongebonden/vluchtig"; +$a->strings["Engaged"] = "Verloofd"; +$a->strings["Married"] = "Getrouwd"; +$a->strings["Imaginarily married"] = "Denkbeeldig getrouwd"; +$a->strings["Partners"] = "Partners"; +$a->strings["Cohabiting"] = "Samenwonend"; +$a->strings["Common law"] = "Common-law-huwelijk"; +$a->strings["Happy"] = "Gelukkig"; +$a->strings["Not looking"] = "Niet op zoek"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Verraden"; +$a->strings["Separated"] = "Uit elkaar"; +$a->strings["Unstable"] = "Onstabiel"; +$a->strings["Divorced"] = "Gescheiden"; +$a->strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; +$a->strings["Widowed"] = "Weduwnaar/weduwe"; +$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["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"] = "Registratieverzoek op %s"; +$a->strings["Administrator"] = "Beheerder"; +$a->strings["your registration password"] = "jouw registratiewachtwoord"; +$a->strings["Registration details for %s"] = "Registratiedetails 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["Embedded content"] = "Ingesloten inhoud"; $a->strings["Embedding disabled"] = "Insluiten uitgeschakeld"; -$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["Invalid data packet"] = "Datapakket ongeldig"; +$a->strings["Unable to verify channel signature"] = "Kanaal-kenmerk (channel signature) kon niet worden geverifieerd. "; +$a->strings["Unable to verify site signature for %s"] = "Hub-kenmerk (site signature) voor %s kon niet worden geverifieerd"; +$a->strings["view full size"] = "volledige grootte tonen"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; +$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["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["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 is verified"] = "Bericht is geverifieerd"; +$a->strings["Add Tag"] = "Label 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["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["__ctx:noun__ Likes"] = "vinden dit leuk"; +$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; +$a->strings["Close"] = "Sluiten"; +$a->strings["Please wait"] = "Even wachten"; +$a->strings["%d comment"] = array( + 0 => "%d reactie", + 1 => "%d reacties weergeven", +); +$a->strings["This is you"] = "Dit ben jij"; +$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["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"; @@ -97,213 +545,6 @@ $a->strings["Blocks"] = "Blokken"; $a->strings["Menus"] = "Menu's"; $a->strings["Layouts"] = "Layouts"; $a->strings["Pages"] = "Pagina's"; -$a->strings["New Page"] = "Nieuwe pagina"; -$a->strings["Edit"] = "Bewerken"; -$a->strings["View"] = "Weergeven"; -$a->strings["Preview"] = "Voorvertoning"; -$a->strings["Actions"] = "Acties"; -$a->strings["Page Link"] = "Paginalink"; -$a->strings["Title"] = "Titel"; -$a->strings["Created"] = "Aangemaakt"; -$a->strings["Edited"] = "Bewerkt"; -$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["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"] = "Registratieverzoek op %s"; -$a->strings["Administrator"] = "Beheerder"; -$a->strings["your registration password"] = "jouw registratiewachtwoord"; -$a->strings["Registration details for %s"] = "Registratiedetails 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["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["Visible to everybody"] = "Voor iedereen zichtbaar"; -$a->strings["Show"] = "Tonen"; -$a->strings["Don't show"] = "Niet tonen"; -$a->strings["Permissions"] = "Privacy-rechten"; -$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["Public Timeline"] = "Openbare tijdlijn"; -$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["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["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -$a->strings["Starts:"] = "Start:"; -$a->strings["Finishes:"] = "Einde:"; -$a->strings["Location:"] = "Plaats:"; -$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["View Profile"] = "Profiel weergeven"; -$a->strings["Your profile page"] = "Jouw profielpagina"; -$a->strings["Edit Profiles"] = "Bewerk profielen"; -$a->strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; -$a->strings["Edit Profile"] = "Profiel bewerken"; -$a->strings["Edit your profile"] = "Jouw profiel bewerken"; -$a->strings["Photos"] = "Foto's"; -$a->strings["Your photos"] = "Jouw foto's"; -$a->strings["Files"] = "Bestanden"; -$a->strings["Your files"] = "Jouw bestanden"; -$a->strings["Chat"] = "Chatten"; -$a->strings["Your chatrooms"] = "Jouw chatkanalen"; -$a->strings["Bookmarks"] = "Bladwijzers"; -$a->strings["Your bookmarks"] = "Jouw bladwijzers"; -$a->strings["Webpages"] = "Webpagina's"; -$a->strings["Your webpages"] = "Jouw webpagina's"; -$a->strings["Login"] = "Inloggen"; -$a->strings["Sign in"] = "Inloggen"; -$a->strings["%s - click to logout"] = "%s - klik om uit te loggen"; -$a->strings["Click to authenticate to your home hub"] = "Klik om jezelf te authenticeren via jouw eigen RedMatrix-hub"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Register"] = "Registreren "; -$a->strings["Create an account"] = "Maak een account aan"; -$a->strings["Help"] = "Hulp"; -$a->strings["Help and documentation"] = "Hulp en documentatie"; -$a->strings["Apps"] = "Apps"; -$a->strings["Applications, utilities, links, games"] = "Apps"; -$a->strings["Search site content"] = "Inhoud van deze RedMatrix-hub doorzoeken"; -$a->strings["Directory"] = "Gids"; -$a->strings["Channel Locator"] = "Kanalengids"; -$a->strings["Matrix"] = "Matrix"; -$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["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["Mail"] = "Privéberichten"; -$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["New Message"] = "Nieuw bericht"; -$a->strings["Events"] = "Gebeurtenissen"; -$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["Channel Select"] = "Kanaalkiezer"; -$a->strings["Manage Your Channels"] = "Beheer je kanalen"; -$a->strings["Settings"] = "Instellingen"; -$a->strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; -$a->strings["Admin"] = "Beheer"; -$a->strings["Site Setup and Configuration"] = "Hub instellen en beheren"; -$a->strings["Nothing new here"] = "Niets nieuw hier"; -$a->strings["Please wait..."] = "Wachten aub..."; -$a->strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -$a->strings["Tags"] = "Labels"; -$a->strings["Keywords"] = "Trefwoorden"; -$a->strings["have"] = "heb"; -$a->strings["has"] = "heeft"; -$a->strings["want"] = "wil"; -$a->strings["wants"] = "wil"; -$a->strings["like"] = "vind dit leuk"; -$a->strings["likes"] = "vindt dit leuk"; -$a->strings["dislike"] = "vind dit niet leuk"; -$a->strings["dislikes"] = "vindt dit niet leuk"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "vindt dit leuk", - 1 => "vinden dit leuk", -); -$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["%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["Exammple: name=fred and country=iceland"] = "Voorbeeld: (voor naam) name=herman en (voor land) country=nederland"; -$a->strings["Advanced Find"] = "Geavanceerd zoeken"; -$a->strings["Saved Folders"] = "Bewaarde mappen"; -$a->strings["Everything"] = "Alles"; -$a->strings["Categories"] = "Categorieën"; -$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["Invalid data packet"] = "Datapakket ongeldig"; -$a->strings["Unable to verify channel signature"] = "Kanaal-kenmerk (channel signature) kon niet worden geverifieerd. "; -$a->strings["Unable to verify site signature for %s"] = "Hub-kenmerk (site signature) voor %s kon niet worden geverifieerd"; -$a->strings["Miscellaneous"] = "Diversen"; -$a->strings["year"] = "jaar"; -$a->strings["month"] = "maand"; -$a->strings["day"] = "dag"; -$a->strings["never"] = "nooit"; -$a->strings["less than a second ago"] = "minder dan een seconde geleden"; -$a->strings["years"] = "jaren"; -$a->strings["months"] = "maanden"; -$a->strings["week"] = "week"; -$a->strings["weeks"] = "weken"; -$a->strings["days"] = "dagen"; -$a->strings["hour"] = "uur"; -$a->strings["hours"] = "uren"; -$a->strings["minute"] = "minuut"; -$a->strings["minutes"] = "minuten"; -$a->strings["second"] = "seconde"; -$a->strings["seconds"] = "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["Sort Options"] = "Sorteeropties"; $a->strings["Alphabetic"] = "Alfabetisch"; $a->strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; @@ -311,6 +552,12 @@ $a->strings["Newest to Oldest"] = "Nieuw naar oud"; $a->strings["Enable Safe Search"] = "Veilig zoeken inschakelen"; $a->strings["Disable Safe Search"] = "Veilig zoeken uitschakelen"; $a->strings["Safe Mode"] = "Veilig zoeken"; +$a->strings["Image/photo"] = "Afbeelding/foto"; +$a->strings["Encrypted content"] = "Versleutelde inhoud"; +$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 wrote:"] = "$1 schreef:"; $a->strings["Red Matrix Notification"] = "RedMatrix-notificatie"; $a->strings["redmatrix"] = "RedMatrix"; $a->strings["Thank You,"] = "Bedankt,"; @@ -350,128 +597,66 @@ $a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\ $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["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["Name"] = "Naam"; -$a->strings["Type"] = "Type"; -$a->strings["Size"] = "Grootte"; -$a->strings["Last Modified"] = "Laatst gewijzigd"; -$a->strings["Delete"] = "Verwijderen"; -$a->strings["Total"] = "Totaal"; -$a->strings["Create new folder"] = "Nieuwe map aanmaken"; -$a->strings["Create"] = "Aanmaken"; -$a->strings["Upload file"] = "Bestand uploaden"; -$a->strings["Upload"] = "Uploaden"; -$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 is verified"] = "Bericht is geverifieerd"; -$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"; -$a->strings["View Source"] = "Bron weergeven"; -$a->strings["Follow Thread"] = "Conversatie volgen"; -$a->strings["View Status"] = "Status weergeven"; -$a->strings["View Photos"] = "Foto's weergeven"; -$a->strings["Matrix Activity"] = "Activiteit in de Matrix"; -$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( - 0 => "%2\$d persoon vindt dit leuk.", - 1 => "%2\$d personen vinden dit leuk.", -); -$a->strings["%2\$d people don't like this."] = array( - 0 => "%2\$d persoon vindt dit niet leuk.", - 1 => "%2\$d personen vinden dit niet leuk.", -); -$a->strings["and"] = "en"; -$a->strings[", and %d other people"] = array( - 0 => ", en %d ander persoon", - 1 => ", en %d andere personen", -); -$a->strings["%s like this."] = "%s vinden dit leuk."; -$a->strings["%s don't like this."] = "%s vinden dit niet leuk."; -$a->strings["Visible to everybody"] = "Voor iedereen zichtbaar"; -$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; -$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; -$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; -$a->strings["Tag term:"] = "Label:"; -$a->strings["Save to Folder:"] = "Bewaar in map: "; -$a->strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; -$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; -$a->strings["Share"] = "Delen"; -$a->strings["Page link title"] = "Titel van paginalink"; -$a->strings["Post as"] = "Bericht plaatsen als"; -$a->strings["Upload photo"] = "Foto uploaden"; -$a->strings["upload photo"] = "foto uploaden"; -$a->strings["Attach file"] = "Bestand toevoegen"; -$a->strings["attach file"] = "bestand toevoegen"; -$a->strings["Insert web link"] = "Weblink invoegen"; -$a->strings["web link"] = "Weblink"; -$a->strings["Insert video link"] = "Videolink invoegen"; -$a->strings["video link"] = "videolink"; -$a->strings["Insert audio link"] = "Audiolink invoegen"; -$a->strings["audio link"] = "audiolink"; -$a->strings["Set your location"] = "Locatie instellen"; -$a->strings["set location"] = "locatie instellen"; -$a->strings["Clear browser location"] = "Locatie van webbrowser wissen"; -$a->strings["clear location"] = "locatie wissen"; -$a->strings["Set title"] = "Titel instellen"; -$a->strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; -$a->strings["Permission settings"] = "Privacy-rechten"; -$a->strings["permissions"] = "privacy-rechten"; -$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"; -$a->strings["Imported public streams"] = "Openbare streams importeren"; -$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"; -$a->strings["Starred"] = "Met ster"; -$a->strings["Favourite Posts"] = "Favoriete berichten"; -$a->strings["Spam"] = "Spam"; -$a->strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; -$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["Files and Storage"] = "Bestanden en opslagruimte"; -$a->strings["Chatrooms"] = "Chatkanalen"; -$a->strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; -$a->strings["Manage Webpages"] = "Webpagina's beheren"; +$a->strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; +$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["View Profile"] = "Profiel weergeven"; +$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["Photos"] = "Foto's"; +$a->strings["Your photos"] = "Jouw foto's"; +$a->strings["Your files"] = "Jouw bestanden"; +$a->strings["Chat"] = "Chatten"; +$a->strings["Your chatrooms"] = "Jouw chatkanalen"; +$a->strings["Bookmarks"] = "Bladwijzers"; +$a->strings["Your bookmarks"] = "Jouw bladwijzers"; +$a->strings["Webpages"] = "Webpagina's"; +$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["Click to authenticate to your home hub"] = "Klik om jezelf te authenticeren via jouw eigen RedMatrix-hub"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Create an account"] = "Maak een account aan"; +$a->strings["Help"] = "Hulp"; +$a->strings["Help and documentation"] = "Hulp en documentatie"; +$a->strings["Apps"] = "Apps"; +$a->strings["Applications, utilities, links, games"] = "Apps"; +$a->strings["Search site content"] = "Inhoud van deze RedMatrix-hub doorzoeken"; +$a->strings["Directory"] = "Gids"; +$a->strings["Channel Locator"] = "Kanalengids"; +$a->strings["Matrix"] = "Matrix"; +$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["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["Mail"] = "Privéberichten"; +$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["New Message"] = "Nieuw bericht"; +$a->strings["Events"] = "Gebeurtenissen"; +$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["Channel Select"] = "Kanaalkiezer"; +$a->strings["Manage Your Channels"] = "Beheer je kanalen"; +$a->strings["Settings"] = "Instellingen"; +$a->strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; +$a->strings["Admin"] = "Beheer"; +$a->strings["Site Setup and Configuration"] = "Hub instellen en beheren"; +$a->strings["Nothing new here"] = "Niets nieuw hier"; +$a->strings["Please wait..."] = "Wachten aub..."; $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"; @@ -529,105 +714,120 @@ $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"] = "Wolk met trefwoorden/labels"; $a->strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met trefwoorden of labels op jouw kanaalpagina"; -$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["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["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["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["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["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 voor gebeurtenissen"; -$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:"] = "Trefwoorden:"; -$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["view full size"] = "volledige grootte tonen"; +$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["Site Admin"] = "Hubbeheerder"; $a->strings["Address Book"] = "Connecties"; $a->strings["Mood"] = "Stemming"; +$a->strings["Poke"] = "Aanstoten"; $a->strings["Probe"] = "Onderzoeken"; $a->strings["Suggest"] = "Voorstellen"; $a->strings["Update"] = "Bijwerken"; $a->strings["Install"] = "Installeren"; $a->strings["Purchase"] = "Aanschaffen"; -$a->strings["Image/photo"] = "Afbeelding/foto"; -$a->strings["Encrypted content"] = "Versleutelde inhoud"; -$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 wrote:"] = "$1 schreef:"; -$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["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"] = "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["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; +$a->strings["Categories:"] = "Categorieën:"; +$a->strings["Filed under:"] = "Bewaard onder:"; +$a->strings["View in context"] = "In context bekijken"; +$a->strings["remove"] = "verwijderen"; +$a->strings["Loading..."] = "Aan het laden..."; +$a->strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; +$a->strings["View Source"] = "Bron weergeven"; +$a->strings["Follow Thread"] = "Conversatie volgen"; +$a->strings["View Status"] = "Status weergeven"; +$a->strings["View Photos"] = "Foto's weergeven"; +$a->strings["Matrix Activity"] = "Activiteit in de Matrix"; +$a->strings["Edit Contact"] = "Contact bewerken"; +$a->strings["Send PM"] = "Privébericht verzenden"; +$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( + 0 => "%2\$d persoon vindt dit leuk.", + 1 => "%2\$d personen vinden dit leuk.", +); +$a->strings["%2\$d people don't like this."] = array( + 0 => "%2\$d persoon vindt dit niet leuk.", + 1 => "%2\$d personen vinden dit niet leuk.", +); +$a->strings["and"] = "en"; +$a->strings[", and %d other people"] = array( + 0 => ", en %d ander persoon", + 1 => ", en %d andere personen", +); +$a->strings["%s like this."] = "%s vinden dit leuk."; +$a->strings["%s don't like this."] = "%s vinden dit niet leuk."; +$a->strings["Visible to everybody"] = "Voor iedereen zichtbaar"; +$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; +$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; +$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; +$a->strings["Tag term:"] = "Label:"; +$a->strings["Save to Folder:"] = "Bewaar in map: "; +$a->strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; +$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; +$a->strings["Share"] = "Delen"; +$a->strings["Page link title"] = "Titel van paginalink"; +$a->strings["Post as"] = "Bericht plaatsen als"; +$a->strings["Upload photo"] = "Foto uploaden"; +$a->strings["upload photo"] = "foto uploaden"; +$a->strings["Attach file"] = "Bestand toevoegen"; +$a->strings["attach file"] = "bestand toevoegen"; +$a->strings["Insert web link"] = "Weblink invoegen"; +$a->strings["web link"] = "Weblink"; +$a->strings["Insert video link"] = "Videolink invoegen"; +$a->strings["video link"] = "videolink"; +$a->strings["Insert audio link"] = "Audiolink invoegen"; +$a->strings["audio link"] = "audiolink"; +$a->strings["Set your location"] = "Locatie instellen"; +$a->strings["set location"] = "locatie instellen"; +$a->strings["Clear browser location"] = "Locatie van webbrowser wissen"; +$a->strings["clear location"] = "locatie wissen"; +$a->strings["Set title"] = "Titel instellen"; +$a->strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; +$a->strings["Permission settings"] = "Privacy-rechten"; +$a->strings["permissions"] = "privacy-rechten"; +$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["OK"] = "OK"; +$a->strings["Cancel"] = "Annuleren"; +$a->strings["Discover"] = "Ontdekken"; +$a->strings["Imported public streams"] = "Openbare streams importeren"; +$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"; +$a->strings["Starred"] = "Met ster"; +$a->strings["Favourite Posts"] = "Favoriete berichten"; +$a->strings["Spam"] = "Spam"; +$a->strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; +$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["Files and Storage"] = "Bestanden en opslagruimte"; +$a->strings["Chatrooms"] = "Chatkanalen"; +$a->strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; +$a->strings["Manage Webpages"] = "Webpagina's beheren"; +$a->strings["Visible to your default audience"] = "Voor iedereen zichtbaar, zoals dit van te voren is ingesteld"; +$a->strings["Show"] = "Tonen"; +$a->strings["Don't show"] = "Niet tonen"; +$a->strings["Permissions"] = "Privacy-rechten"; $a->strings["System"] = "Systeem"; $a->strings["Create Personal App"] = "Persoonlijke app maken"; $a->strings["Edit Personal App"] = "Persoonlijke app bewerken"; @@ -661,199 +861,18 @@ $a->strings["Check Mail"] = "Controleer op nieuwe berichten"; $a->strings["Chat Rooms"] = "Chatkanalen"; $a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; $a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; -$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"] = "Label 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["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["__ctx:noun__ Likes"] = "vinden dit leuk"; -$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; -$a->strings["%d comment"] = array( - 0 => "%d reactie", - 1 => "%d reacties weergeven", -); -$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["Delete this item?"] = "Dit item verwijderen?"; -$a->strings["[-] show less"] = "[-] minder reacties weergeven"; -$a->strings["[+] expand"] = "[+] uitklappen"; -$a->strings["[-] collapse"] = "[-] inklappen"; -$a->strings["Password too short"] = "Wachtwoord te kort"; -$a->strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; -$a->strings["everybody"] = "iedereen"; -$a->strings["Secret Passphrase"] = "Geheim wachtwoord"; -$a->strings["Passphrase hint"] = "Wachtwoordhint"; -$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Mededeling: de privacy-rechten zijn veranderd, maar zijn nog niet opgeslagen."; -$a->strings["close all"] = "Alles sluiten"; -$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -$a->strings["ago"] = "geleden"; -$a->strings["from now"] = "vanaf nu"; -$a->strings["less than a minute"] = "minder dan een minuut"; -$a->strings["about a minute"] = "ongeveer een minuut"; -$a->strings["%d minutes"] = "%d minuten"; -$a->strings["about an hour"] = "ongeveer een uur"; -$a->strings["about %d hours"] = "ongeveer %d uren"; -$a->strings["a day"] = "een dag"; -$a->strings["%d days"] = "%d dagen"; -$a->strings["about a month"] = "ongeveer een maand"; -$a->strings["%d months"] = "%d maanden"; -$a->strings["about a year"] = "ongeveer een jaar"; -$a->strings["%d years"] = "%d jaren"; -$a->strings[" "] = " "; -$a->strings["timeago.numbers"] = "timeago.numbers"; -$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["Male"] = "Man"; -$a->strings["Female"] = "Vrouw"; -$a->strings["Currently Male"] = "Momenteel man"; -$a->strings["Currently Female"] = "Momenteel vrouw"; -$a->strings["Mostly Male"] = "Voornamelijk man"; -$a->strings["Mostly Female"] = "Voornamelijk vrouw"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Interseksueel"; -$a->strings["Transsexual"] = "Transseksueel"; -$a->strings["Hermaphrodite"] = "Hermafrodiet"; -$a->strings["Neuter"] = "Genderneutraal"; -$a->strings["Non-specific"] = "Niet gespecificeerd"; -$a->strings["Other"] = "Anders"; -$a->strings["Undecided"] = "Nog niet beslist"; -$a->strings["Males"] = "Mannen"; -$a->strings["Females"] = "Vrouwen"; -$a->strings["Gay"] = "Homoseksueel"; -$a->strings["Lesbian"] = "Lesbisch"; -$a->strings["No Preference"] = "Geen voorkeur"; -$a->strings["Bisexual"] = "Biseksueel"; -$a->strings["Autosexual"] = "Autoseksueel"; -$a->strings["Abstinent"] = "Seksuele onthouding"; -$a->strings["Virgin"] = "Maagd"; -$a->strings["Deviant"] = "Afwijkend"; -$a->strings["Fetish"] = "Fetisj"; -$a->strings["Oodles"] = "Veel"; -$a->strings["Nonsexual"] = "Aseksueel"; -$a->strings["Single"] = "Alleen"; -$a->strings["Lonely"] = "Eenzaam"; -$a->strings["Available"] = "Beschikbaar"; -$a->strings["Unavailable"] = "Niet beschikbaar"; -$a->strings["Has crush"] = "Heeft een oogje op iemand"; -$a->strings["Infatuated"] = "Smoorverliefd"; -$a->strings["Dating"] = "Aan het daten"; -$a->strings["Unfaithful"] = "Ontrouw"; -$a->strings["Sex Addict"] = "Seksverslaafd"; -$a->strings["Friends/Benefits"] = "Vriendschap plus"; -$a->strings["Casual"] = "Ongebonden/vluchtig"; -$a->strings["Engaged"] = "Verloofd"; -$a->strings["Married"] = "Getrouwd"; -$a->strings["Imaginarily married"] = "Denkbeeldig getrouwd"; -$a->strings["Partners"] = "Partners"; -$a->strings["Cohabiting"] = "Samenwonend"; -$a->strings["Common law"] = "Common-law-huwelijk"; -$a->strings["Happy"] = "Gelukkig"; -$a->strings["Not looking"] = "Niet op zoek"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Verraden"; -$a->strings["Separated"] = "Uit elkaar"; -$a->strings["Unstable"] = "Onstabiel"; -$a->strings["Divorced"] = "Gescheiden"; -$a->strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; -$a->strings["Widowed"] = "Weduwnaar/weduwe"; -$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["Logged out."] = "Uitgelogd."; -$a->strings["Failed authentication"] = "Mislukte authenticatie"; -$a->strings["Login failed."] = "Inloggen mislukt."; -$a->strings["Permission denied"] = "Toegang geweigerd"; -$a->strings["(Unknown)"] = "(Onbekend)"; -$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["Can view my \"public\" stream and posts"] = "Kan mijn \"openbare\" streams en berichten zien"; -$a->strings["Can view my \"public\" channel profile"] = "Kan mijn \"openbaar\" kanaalprofiel zien"; -$a->strings["Can view my \"public\" photo albums"] = "Kan mijn \"openbare\" fotoalbums zien"; -$a->strings["Can view my \"public\" address book"] = "Kan een lijst met mijn \"openbare\" connecties zien"; -$a->strings["Can view my \"public\" file storage"] = "Kan mijn \"openbare\" bestanden zien"; -$a->strings["Can view my \"public\" pages"] = "Kan mijn \"openbare\" pagina's zien"; -$a->strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; -$a->strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal (\"wall\") plaatsen"; -$a->strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; -$a->strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; -$a->strings["Can post photos to my photo albums"] = "Kan foto's aan mijn fotoalbums toevoegen"; -$a->strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; -$a->strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor kanalen met een groep- cq. forumfunctie"; -$a->strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; -$a->strings["Can write to my \"public\" file storage"] = "Kan bestanden aan mijn \"openbare\" bestandsopslag toevoegen"; -$a->strings["Can edit my \"public\" pages"] = "Kan mijn \"openbare\" pagina's bewerken"; -$a->strings["Can source my \"public\" posts in derived channels"] = "Kan mijn \"openbare\" berichten als bron voor andere kanalen gebruiken"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; -$a->strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; -$a->strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; -$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."; -$a->strings["Menu element added."] = "Menu-onderdeel toegevoegd"; -$a->strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; -$a->strings["Not found."] = "Niet gevonden."; -$a->strings["Manage Menu Elements"] = "Menu-onderdelen beheren"; -$a->strings["Edit menu"] = "Menu bewerken"; -$a->strings["Edit element"] = "Onderdeel bewerken"; -$a->strings["Drop element"] = "Onderdeel verwijderen"; -$a->strings["New element"] = "Nieuw element"; -$a->strings["Edit this menu container"] = "Deze menu-container bewerken"; -$a->strings["Add menu element"] = "Menu-element toevoegen"; -$a->strings["Delete this menu item"] = "Dit menu-item verwijderen"; -$a->strings["Edit this menu item"] = "Dit menu-item bewerken"; -$a->strings["New Menu Element"] = "Nieuw menu-element"; -$a->strings["Menu Item Permissions"] = "Privacy-rechten menu-item"; -$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -$a->strings["Link text"] = "Linktekst"; -$a->strings["URL of link"] = "URL of link"; -$a->strings["Use Red magic-auth if available"] = "Gebruik Reds magische authenticatie wanneer aanwezig"; -$a->strings["Open link in new window"] = "Open link in nieuw venster"; -$a->strings["Order in list"] = "Volgorde in lijst"; -$a->strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; -$a->strings["Menu item not found."] = "Menu-item niet gevonden."; -$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["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["network"] = "netwerk"; +$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["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["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["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["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."; @@ -941,6 +960,7 @@ $a->strings["0 or blank prevents expiration"] = "0 of leeg voorkomt het verlopen $a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal connectieverzoeken per dag:"; $a->strings["May reduce spam activity"] = "Kan eventuele spam verminderen"; $a->strings["Default Post Permissions"] = "Standaard privacy-rechten voor nieuwe berichten"; +$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; $a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; $a->strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen"; $a->strings["Notification Settings"] = "Notificatie-instellingen"; @@ -963,22 +983,288 @@ $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["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["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["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["Permission Denied."] = "Toegang geweigerd"; +$a->strings["File not found."] = "Bestand niet gevonden."; +$a->strings["Edit file permissions"] = "Bestandsrechten bewerken"; +$a->strings["Set/edit permissions"] = "Rechten instellen/bewerken"; +$a->strings["Include all files and sub folders"] = "Toepassen op alle bestanden en submappen"; +$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["Channel not found."] = "Kanaal niet gevonden."; -$a->strings["Page not found."] = "Pagina niet gevonden."; +$a->strings["Red Matrix - "The Network""] = "RedMatrix - "The Network""; +$a->strings["Welcome to %s"] = "Welkom op %s"; +$a->strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; +$a->strings["[Embedded content - reload page to view]"] = "[Ingesloten inhoud - ververs pagina om te bekijken] "; +$a->strings["Add a Channel"] = "Kanaal toevoegen"; +$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Een kanaal is jouw eigen verzameling gerelateerde webpagina's. Een kanaal kan gebruikt worden voor een sociaal netwerk, weblog, discussiegroep of forum, een pagina over een beroemdheid, en voor veel meer. Je kan net zoveel kanalen aanmaken als dat de eigenaar/beheerder van jouw hub toestaat."; +$a->strings["Channel Name"] = "Kanaalnaam"; +$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Voorbeelden: \"Bruce Springsteen\", \"Familiefoto's\", \"Voetbal\", \"Astronomie\""; +$a->strings["Choose a short nickname"] = "Kies een korte bijnaam"; +$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Jouw bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres (zoals een e-mailadres) aan te maken, die je dan kan delen met anderen."; +$a->strings["Or import an existing channel from another location"] = "Of importeer een bestaand kanaal vanaf een andere locatie."; +$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["Theme settings updated."] = "Thema-instellingen bijgewerkt."; +$a->strings["Site"] = "Hub-instellingen"; +$a->strings["Accounts"] = "Accounts"; +$a->strings["Channels"] = "Kanalen"; +$a->strings["Plugins"] = "Plug-ins"; +$a->strings["Themes"] = "Thema's"; +$a->strings["Server"] = "Hubbeheer"; +$a->strings["DB updates"] = "Database-updates"; +$a->strings["Logs"] = "Logboeken"; +$a->strings["Plugin Features"] = "Plug-in-opties"; +$a->strings["User registrations waiting for confirmation"] = "Accountregistraties die op goedkeuring wachten"; +$a->strings["Message queues"] = "Berichtenwachtrij"; +$a->strings["Administration"] = "Beheer"; +$a->strings["Summary"] = "Samenvatting"; +$a->strings["Registered users"] = "Geregistreerde gebruikers"; +$a->strings["Pending registrations"] = "Accounts die op goedkeuring wachten"; +$a->strings["Version"] = "Versie"; +$a->strings["Active plugins"] = "Ingeschakelde plug-ins"; +$a->strings["Site settings updated."] = "Hub-instellingen bijgewerkt."; +$a->strings["No special theme for accessibility"] = "Geen speciaal thema voor universele toegang"; +$a->strings["Yes - with approval"] = "Ja - met goedkeuring"; +$a->strings["My site is not a public server"] = "Mijn RedMatrix-hub is niet openbaar"; +$a->strings["My site has paid access only"] = "Mijn RedMatrix-hub kent alleen betaalde toegang"; +$a->strings["My site has free access only"] = "Mijn RedMatrix-hub kent alleen gratis toegang"; +$a->strings["My site offers free accounts with optional paid upgrades"] = "Mijn RedMatrix-hub biedt gratis accounts aan met betaalde uitbreidingen als optie"; +$a->strings["Registration"] = "Registratie"; +$a->strings["File upload"] = "Bestand uploaden"; +$a->strings["Policies"] = "Beleid"; +$a->strings["Site name"] = "Naam van deze RedMatrix-hub"; +$a->strings["Banner/Logo"] = "Banner/logo"; +$a->strings["Administrator Information"] = "Informatie over de beheerder van deze hub"; +$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden."; +$a->strings["System language"] = "Standaardtaal"; +$a->strings["System theme"] = "Standaardthema"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standaardthema voor RedMatrix-hub (kan door gebruiker veranderd worden) - verander thema-instellingen"; +$a->strings["Mobile system theme"] = "Standaardthema voor mobiel"; +$a->strings["Theme for mobile devices"] = "Thema voor mobiele apparaten"; +$a->strings["Accessibility system theme"] = "Standaardthema voor universele toegang"; +$a->strings["Accessibility theme"] = "Thema voor universele toegang"; +$a->strings["Channel to use for this website's static pages"] = "Kanaal die op deze hub als statische pagina op de homepage gebruikt moet worden"; +$a->strings["Site Channel"] = "Kanaal op deze RedMatrix-hub"; +$a->strings["Maximum image size"] = "Maximale grootte van afbeeldingen"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend."; +$a->strings["Does this site allow new member registration?"] = "Staat deze hub registratie van nieuwe accounts toe?"; +$a->strings["Which best describes the types of account offered by this hub?"] = "Wat voor soort accounts biedt deze RedMatrix-hub aan? Kies wat het meest in de buurt komt."; +$a->strings["Register text"] = "Registratietekst"; +$a->strings["Will be displayed prominently on the registration page."] = "Wordt prominent op de registratiepagina getoond."; +$a->strings["Accounts abandoned after x days"] = "Accounts als verlaten beschouwen na zoveel aantal dagen:"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet."; +$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["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 gebruikers."; +$a->strings["Force publish"] = "Dwing kanaalvermelding af"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld."; +$a->strings["Disable discovery tab"] = "Ontdekkingstab"; +$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Verwijder de tab in de matrix-weergave waarin zich een selectie aan openbare berichten bevindt, die automatisch voor deze hub zijn uitgekozen."; +$a->strings["No login on Homepage"] = "Geen inlogformulier op de homepage"; +$a->strings["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)."] = "Vink dit aan om het inlogformulier op de homepage van deze hub, die niet-ingelogde gebruikers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze RedMatrix-hub als homepage gebruikt)"; +$a->strings["Proxy user"] = "Proxy-gebruiker"; +$a->strings["Proxy URL"] = "Proxy-URL"; +$a->strings["Network timeout"] = "Netwerktimeout"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)"; +$a->strings["Delivery interval"] = "Afleveringsinterval"; +$a->strings["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."] = "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."; +$a->strings["Poll interval"] = "Poll-interval"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken."; +$a->strings["Maximum Load Average"] = "Maximaal gemiddelde systeembelasting"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50."; +$a->strings["No server found"] = "Geen hub gevonden"; +$a->strings["ID"] = "ID"; +$a->strings["for channel"] = "voor kanaal"; +$a->strings["on server"] = "op hub"; +$a->strings["Status"] = "Status"; +$a->strings["Update has been marked successful"] = "Update is als succesvol gemarkeerd"; +$a->strings["Executing %s failed. Check system logs."] = "Uitvoeren van %s is mislukt. Controleer systeemlogboek."; +$a->strings["Update %s was successfully applied."] = "Update %s was geslaagd."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is."; +$a->strings["Update function %s could not be found."] = "Update-functie %s kon niet gevonden worden."; +$a->strings["No failed updates."] = "Geen mislukte updates."; +$a->strings["Failed Updates"] = "Mislukte updates"; +$a->strings["Mark success (if update was manually applied)"] = "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)"; +$a->strings["Attempt to execute this update step automatically"] = "Poging om deze stap van de update automatisch uit te voeren."; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s account geblokkeerd/gedeblokkeerd", + 1 => "%s accounts geblokkeerd/gedeblokkeerd", +); +$a->strings["%s user deleted"] = array( + 0 => "%s account verwijderd", + 1 => "%s accounts verwijderd", +); +$a->strings["Account not found"] = "Account niet gevonden"; +$a->strings["User '%s' deleted"] = "Account '%s' verwijderd"; +$a->strings["User '%s' unblocked"] = "Account '%s' gedeblokkeerd"; +$a->strings["User '%s' blocked"] = "Gebruiker '%s' geblokkeerd"; +$a->strings["Users"] = "Accounts"; +$a->strings["select all"] = "alles selecteren"; +$a->strings["User registrations waiting for confirm"] = "Accounts die op goedkeuring wachten"; +$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"; +$a->strings["Service Class"] = "Abonnementen"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?"; +$a->strings["%s channel censored/uncensored"] = array( + 0 => "%s kanalen gecensureerd/ongecensureerd", + 1 => "%s kanaal gecensureerd/ongecensureerd", +); +$a->strings["%s channel deleted"] = array( + 0 => "%s kanaal verwijderd", + 1 => "%s kanalen verwijderd", +); +$a->strings["Channel not found"] = "Kanaal niet gevonden"; +$a->strings["Channel '%s' deleted"] = "Kanaal '%s' verwijderd"; +$a->strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd"; +$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."; +$a->strings["Plugin %s enabled."] = "Plug-in %s ingeschakeld"; +$a->strings["Disable"] = "Uitschakelen"; +$a->strings["Enable"] = "Inschakelen"; +$a->strings["Toggle"] = "Omschakelen"; +$a->strings["Author: "] = "Auteur: "; +$a->strings["Maintainer: "] = "Beheerder: "; +$a->strings["No themes found."] = "Geen thema's gevonden"; +$a->strings["Screenshot"] = "Schermafdruk"; +$a->strings["[Experimental]"] = "[Experimenteel]"; +$a->strings["[Unsupported]"] = "[Niet ondersteund]"; +$a->strings["Log settings updated."] = "Logboek-instellingen bijgewerkt."; +$a->strings["Clear"] = "Leegmaken"; +$a->strings["Debugging"] = "Debuggen"; +$a->strings["Log file"] = "Logbestand"; +$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je RedMatrix-installatie."; +$a->strings["Log level"] = "Logniveau"; +$a->strings["- select -"] = "- kies map -"; +$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 contact"] = "Connectie bewerken"; +$a->strings["Search your connections"] = "Doorzoek jouw connecties"; +$a->strings["Finding: "] = "Zoeken naar: "; +$a->strings["Public access denied."] = "Openbare toegang geweigerd."; +$a->strings["Age: "] = "Leeftijd:"; +$a->strings["Gender: "] = "Geslacht:"; +$a->strings["Status: "] = "Status: "; +$a->strings["Sexual Preference: "] = "Seksuele voorkeur: "; +$a->strings["Homepage: "] = "Homepage: "; +$a->strings["Hometown: "] = "Oorspronkelijk uit: "; +$a->strings["About: "] = "Over: "; +$a->strings["Keywords: "] = "Trefwoorden: "; +$a->strings["Not found."] = "Niet gevonden."; +$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["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je gebruiker %1$.2f MB van totaal %2$.2f MB foto-opslagruimte."; +$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Je gebruikt %1$.2f MB aan foto-opslagruimte."; +$a->strings["Upload Photos"] = "Foto's uploaden"; +$a->strings["New album name: "] = "Nieuwe albumnaam: "; +$a->strings["or existing album name: "] = "of een bestaande albumnaam: "; +$a->strings["Do not show a status post for this upload"] = "Plaats geen bericht voor deze upload."; +$a->strings["Contact Photos"] = "Connectiefoto's"; +$a->strings["Edit Album"] = "Album bewerken"; +$a->strings["Show Newest First"] = "Nieuwste eerst weergeven"; +$a->strings["Show Oldest First"] = "Oudste eerst weergeven"; +$a->strings["View Photo"] = "Foto weergeven"; +$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["View Full Size"] = "Volledige grootte weergeven"; +$a->strings["Remove"] = "Verwijderen"; +$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["New album name"] = "Nieuwe albumnaam"; +$a->strings["Caption"] = "Bijschrift"; +$a->strings["Add a Tag"] = "Label toevoegen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@example.com, #Friesland, #camping"; +$a->strings["In This Photo:"] = "Op deze foto:"; +$a->strings["View Album"] = "Album weergeven"; +$a->strings["Recent Photos"] = "Recente foto's"; +$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."; +$a->strings["Menu element added."] = "Menu-onderdeel toegevoegd"; +$a->strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; +$a->strings["Manage Menu Elements"] = "Menu-onderdelen beheren"; +$a->strings["Edit menu"] = "Menu bewerken"; +$a->strings["Edit element"] = "Onderdeel bewerken"; +$a->strings["Drop element"] = "Onderdeel verwijderen"; +$a->strings["New element"] = "Nieuw element"; +$a->strings["Edit this menu container"] = "Deze menu-container bewerken"; +$a->strings["Add menu element"] = "Menu-element toevoegen"; +$a->strings["Delete this menu item"] = "Dit menu-item verwijderen"; +$a->strings["Edit this menu item"] = "Dit menu-item bewerken"; +$a->strings["New Menu Element"] = "Nieuw menu-element"; +$a->strings["Menu Item Permissions"] = "Privacy-rechten menu-item"; +$a->strings["Link text"] = "Linktekst"; +$a->strings["URL of link"] = "URL of link"; +$a->strings["Use Red magic-auth if available"] = "Gebruik Reds magische authenticatie wanneer aanwezig"; +$a->strings["Open link in new window"] = "Open link in nieuw venster"; +$a->strings["Order in list"] = "Volgorde in lijst"; +$a->strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; +$a->strings["Menu item not found."] = "Menu-item niet gevonden."; +$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["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; +$a->strings["Please login."] = "Inloggen."; +$a->strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; +$a->strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; +$a->strings["Visible to:"] = "Zichtbaar voor:"; +$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["Layout updated."] = "Layout 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["Image uploaded but image cropping failed."] = "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. "; $a->strings["Image resize failed."] = "Afbeelding kon niet van grootte veranderd worden."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; @@ -996,178 +1282,34 @@ $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["Block Name"] = "Bloknaam"; -$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 (%s):"] = "Geboortedag (%s)"; -$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 public profile.
It may be visible to anybody using the internet."] = "Dit is jouw openbare profiel.
Het kan voor iedereen op het internet zichtbaar zijn."; -$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["Bookmark added"] = "Bladwijzer toegevoegd"; -$a->strings["My Bookmarks"] = "Mijn bladwijzers"; -$a->strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; -$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["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 privacy-rechten. 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["Room not found"] = "Chatkanaal niet gevonden"; -$a->strings["Leave Room"] = "Chatkanaal verlaten"; -$a->strings["Delete This Room"] = "Chatkanaal verwijderen"; -$a->strings["I am away right now"] = "Ik ben momenteel afwezig"; -$a->strings["I am online"] = "Ik ben online"; -$a->strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; -$a->strings["New Chatroom"] = "Nieuw chatkanaal"; -$a->strings["Chatroom Name"] = "Naam chatkanaal"; -$a->strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; -$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."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies om je e-mail te bevestigen."; -$a->strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub."; -$a->strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden."; -$a->strings["Registration on this site/hub is by approval only."] = "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd."; -$a->strings["Register at another affiliated site/hub"] = "Registreer op een andere RedMatrix-hub"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze RedMatrix-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."; -$a->strings["Terms of Service"] = "Gebruiksvoorwaarden"; -$a->strings["I accept the %s for this website"] = "Ik accepteer de %s van deze RedMatrix-hub"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ik accepteer de %s van deze RedMatrix-hub"; -$a->strings["Registration"] = "Registratie"; -$a->strings["Membership on this site is by invitation only."] = "Registreren op deze RedMatrix-hub kan alleen op uitnodiging."; -$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["Away"] = "Afwezig"; -$a->strings["Online"] = "Online"; -$a->strings["Please login."] = "Inloggen."; -$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - gasten: Gebruikersnaam: {jouw e-mailadres}, wachtwoord: +++"; -$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."; -$a->strings["Please enter your password for verification:"] = "Vul je wachtwoord in voor verificatie:"; -$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["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["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, gebruikersvoorschriften, 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["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["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 contact"] = "Connectie bewerken"; -$a->strings["Search your connections"] = "Doorzoek jouw connecties"; -$a->strings["Finding: "] = "Zoeken naar: "; -$a->strings["Edit post"] = "Bericht bewerken"; +$a->strings["network"] = "netwerk"; +$a->strings["Menu updated."] = "Menu aangepast. "; +$a->strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; +$a->strings["Menu created."] = "Menu aangemaakt."; +$a->strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; +$a->strings["Manage Menus"] = "Menu's beheren"; +$a->strings["Drop"] = "Verwijderen"; +$a->strings["Create a new menu"] = "Een nieuwe menu aanmaken"; +$a->strings["Delete this menu"] = "Menu verwijderen"; +$a->strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; +$a->strings["Edit this menu"] = "Dit menu bewerken"; +$a->strings["New Menu"] = "Nieuw menu"; +$a->strings["Menu name"] = "Naam van menu"; +$a->strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; +$a->strings["Menu title"] = "Titel van menu"; +$a->strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; +$a->strings["Allow bookmarks"] = "Bladwijzers toestaan"; +$a->strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; +$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["Invalid item."] = "Ongeldig item."; +$a->strings["Page not found."] = "Pagina niet gevonden."; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde het %3\$s van %2\$s met %4\$s"; +$a->strings["Wall Photos"] = "Kanaalfoto's"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; +$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["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"; @@ -1188,8 +1330,6 @@ $a->strings["Refresh Permissions"] = "Privacy-rechten vernieuwen"; $a->strings["Fetch updated permissions"] = "Aangepaste privacy-rechten 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"; @@ -1241,30 +1381,14 @@ $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["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."; -$a->strings["Existing Page Managers"] = "Bestaande accountbeheerders"; -$a->strings["Existing Page Delegates"] = "Bestaande gevolmachtigde accountbeheerders"; -$a->strings["Potential Delegates"] = "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed."; -$a->strings["Remove"] = "Verwijderen"; -$a->strings["Add"] = "Toevoegen"; -$a->strings["No entries."] = "Geen"; -$a->strings["Public access denied."] = "Openbare toegang geweigerd."; -$a->strings["Gender: "] = "Geslacht:"; -$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["Status: "] = "Status: "; -$a->strings["Sexual Preference: "] = "Seksuele voorkeur: "; -$a->strings["Homepage: "] = "Homepage: "; -$a->strings["Hometown: "] = "Oorspronkelijk uit: "; -$a->strings["About: "] = "Over: "; -$a->strings["Keywords: "] = "Trefwoorden: "; -$a->strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; -$a->strings["Red Matrix - "The Network""] = "RedMatrix - "The Network""; -$a->strings["Welcome to %s"] = "Welkom op %s"; +$a->strings["Messages"] = "Berichten"; +$a->strings["Conversation removed."] = "Conversatie verwijderd"; +$a->strings["No messages."] = "Geen berichten"; +$a->strings["Delete message"] = "Bericht verwijderen"; +$a->strings["D, d M Y - g:i A"] = "D, j M Y - G:i"; +$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["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."; @@ -1344,276 +1468,26 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ $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["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["Layout updated."] = "Layout 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["Item is not editable"] = "Item is niet te bewerken"; -$a->strings["Delete item?"] = "Item verwijderen?"; -$a->strings["Edit Webpage"] = "Webpagina bewerken"; -$a->strings["Delete webpage?"] = "Webpagina verwijderen?"; -$a->strings["Delete Webpage"] = "Webpagina verwijderen"; -$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["Running at web location"] = "Draaiend op weblocatie"; -$a->strings["Please visit GetZot.com 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["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je gebruiker %1$.2f MB van totaal %2$.2f MB foto-opslagruimte."; -$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Je gebruikt %1$.2f MB aan foto-opslagruimte."; -$a->strings["Upload Photos"] = "Foto's uploaden"; -$a->strings["New album name: "] = "Nieuwe albumnaam: "; -$a->strings["or existing album name: "] = "of een bestaande albumnaam: "; -$a->strings["Do not show a status post for this upload"] = "Plaats geen bericht voor deze upload."; -$a->strings["Contact Photos"] = "Connectiefoto's"; -$a->strings["Edit Album"] = "Album bewerken"; -$a->strings["Show Newest First"] = "Nieuwste eerst weergeven"; -$a->strings["Show Oldest First"] = "Oudste eerst weergeven"; -$a->strings["View Photo"] = "Foto weergeven"; -$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["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["New album name"] = "Nieuwe albumnaam"; -$a->strings["Caption"] = "Bijschrift"; -$a->strings["Add a Tag"] = "Label toevoegen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@example.com, #Friesland, #camping"; -$a->strings["In This Photo:"] = "Op deze foto:"; -$a->strings["View Album"] = "Album weergeven"; -$a->strings["Recent Photos"] = "Recente foto's"; -$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["- select -"] = "- kies map -"; -$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["hour:minute"] = "uur:minuut"; -$a->strings["Event details"] = "Details van gebeurtenis"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Volgorde is %s %s. Begintijd en titel zijn vereist."; -$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["Permission Denied."] = "Toegang geweigerd"; -$a->strings["File not found."] = "Bestand niet gevonden."; -$a->strings["Edit file permissions"] = "Bestandsrechten bewerken"; -$a->strings["Set/edit permissions"] = "Rechten instellen/bewerken"; -$a->strings["Include all files and sub folders"] = "Toepassen op alle bestanden en submappen"; -$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["Channel added."] = "Kanaal toegevoegd."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; -$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["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["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["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde het %3\$s van %2\$s met %4\$s"; -$a->strings["Help:"] = "Hulp:"; -$a->strings["Not Found"] = "Niet gevonden"; -$a->strings["Tag removed"] = "Label verwijderd"; -$a->strings["Remove Item Tag"] = "Verwijder itemlabel"; -$a->strings["Select a tag to remove: "] = "Kies een label om te verwijderen"; -$a->strings["Theme settings updated."] = "Thema-instellingen bijgewerkt."; -$a->strings["Site"] = "Hub-instellingen"; -$a->strings["Accounts"] = "Accounts"; -$a->strings["Channels"] = "Kanalen"; -$a->strings["Plugins"] = "Plug-ins"; -$a->strings["Themes"] = "Thema's"; -$a->strings["Server"] = "Hubbeheer"; -$a->strings["DB updates"] = "Database-updates"; -$a->strings["Logs"] = "Logboeken"; -$a->strings["Plugin Features"] = "Plug-in-opties"; -$a->strings["User registrations waiting for confirmation"] = "Accountregistraties die op goedkeuring wachten"; -$a->strings["Message queues"] = "Berichtenwachtrij"; -$a->strings["Administration"] = "Beheer"; -$a->strings["Summary"] = "Samenvatting"; -$a->strings["Registered users"] = "Geregistreerde gebruikers"; -$a->strings["Pending registrations"] = "Accounts die op goedkeuring wachten"; -$a->strings["Version"] = "Versie"; -$a->strings["Active plugins"] = "Ingeschakelde plug-ins"; -$a->strings["Site settings updated."] = "Hub-instellingen bijgewerkt."; -$a->strings["No special theme for accessibility"] = "Geen speciaal thema voor universele toegang"; -$a->strings["Yes - with approval"] = "Ja - met goedkeuring"; -$a->strings["My site is not a public server"] = "Mijn RedMatrix-hub is niet openbaar"; -$a->strings["My site has paid access only"] = "Mijn RedMatrix-hub kent alleen betaalde toegang"; -$a->strings["My site has free access only"] = "Mijn RedMatrix-hub kent alleen gratis toegang"; -$a->strings["My site offers free accounts with optional paid upgrades"] = "Mijn RedMatrix-hub biedt gratis accounts aan met betaalde uitbreidingen als optie"; -$a->strings["File upload"] = "Bestand uploaden"; -$a->strings["Policies"] = "Beleid"; -$a->strings["Site name"] = "Naam van deze RedMatrix-hub"; -$a->strings["Banner/Logo"] = "Banner/logo"; -$a->strings["Administrator Information"] = "Informatie over de beheerder van deze hub"; -$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden."; -$a->strings["System language"] = "Standaardtaal"; -$a->strings["System theme"] = "Standaardthema"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standaardthema voor RedMatrix-hub (kan door gebruiker veranderd worden) - verander thema-instellingen"; -$a->strings["Mobile system theme"] = "Standaardthema voor mobiel"; -$a->strings["Theme for mobile devices"] = "Thema voor mobiele apparaten"; -$a->strings["Accessibility system theme"] = "Standaardthema voor universele toegang"; -$a->strings["Accessibility theme"] = "Thema voor universele toegang"; -$a->strings["Channel to use for this website's static pages"] = "Kanaal die op deze hub als statische pagina op de homepage gebruikt moet worden"; -$a->strings["Site Channel"] = "Kanaal op deze RedMatrix-hub"; -$a->strings["Maximum image size"] = "Maximale grootte van afbeeldingen"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend."; -$a->strings["Does this site allow new member registration?"] = "Staat deze hub registratie van nieuwe accounts toe?"; -$a->strings["Which best describes the types of account offered by this hub?"] = "Wat voor soort accounts biedt deze RedMatrix-hub aan? Kies wat het meest in de buurt komt."; -$a->strings["Register text"] = "Registratietekst"; -$a->strings["Will be displayed prominently on the registration page."] = "Wordt prominent op de registratiepagina getoond."; -$a->strings["Accounts abandoned after x days"] = "Accounts als verlaten beschouwen na zoveel aantal dagen:"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet."; -$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["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 gebruikers."; -$a->strings["Force publish"] = "Dwing kanaalvermelding af"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld."; -$a->strings["Disable discovery tab"] = "Ontdekkingstab"; -$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Verwijder de tab in de matrix-weergave waarin zich een selectie aan openbare berichten bevindt, die automatisch voor deze hub zijn uitgekozen."; -$a->strings["No login on Homepage"] = "Geen inlogformulier op de homepage"; -$a->strings["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)."] = "Vink dit aan om het inlogformulier op de homepage van deze hub, die niet-ingelogde gebruikers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze RedMatrix-hub als homepage gebruikt)"; -$a->strings["Proxy user"] = "Proxy-gebruiker"; -$a->strings["Proxy URL"] = "Proxy-URL"; -$a->strings["Network timeout"] = "Netwerktimeout"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)"; -$a->strings["Delivery interval"] = "Afleveringsinterval"; -$a->strings["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."] = "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."; -$a->strings["Poll interval"] = "Poll-interval"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken."; -$a->strings["Maximum Load Average"] = "Maximaal gemiddelde systeembelasting"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50."; -$a->strings["No server found"] = "Geen hub gevonden"; -$a->strings["ID"] = "ID"; -$a->strings["for channel"] = "voor kanaal"; -$a->strings["on server"] = "op hub"; -$a->strings["Status"] = "Status"; -$a->strings["Update has been marked successful"] = "Update is als succesvol gemarkeerd"; -$a->strings["Executing %s failed. Check system logs."] = "Uitvoeren van %s is mislukt. Controleer systeemlogboek."; -$a->strings["Update %s was successfully applied."] = "Update %s was geslaagd."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is."; -$a->strings["Update function %s could not be found."] = "Update-functie %s kon niet gevonden worden."; -$a->strings["No failed updates."] = "Geen mislukte updates."; -$a->strings["Failed Updates"] = "Mislukte updates"; -$a->strings["Mark success (if update was manually applied)"] = "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)"; -$a->strings["Attempt to execute this update step automatically"] = "Poging om deze stap van de update automatisch uit te voeren."; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s account geblokkeerd/gedeblokkeerd", - 1 => "%s accounts geblokkeerd/gedeblokkeerd", +$a->strings["Hub not found."] = "Hub niet gevonden."; +$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"] = "Kom op 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["%s user deleted"] = array( - 0 => "%s account verwijderd", - 1 => "%s accounts verwijderd", -); -$a->strings["Account not found"] = "Account niet gevonden"; -$a->strings["User '%s' deleted"] = "Account '%s' verwijderd"; -$a->strings["User '%s' unblocked"] = "Account '%s' gedeblokkeerd"; -$a->strings["User '%s' blocked"] = "Gebruiker '%s' geblokkeerd"; -$a->strings["Users"] = "Accounts"; -$a->strings["select all"] = "alles selecteren"; -$a->strings["User registrations waiting for confirm"] = "Accounts die op goedkeuring wachten"; -$a->strings["Request date"] = "Tijd/datum verzoek"; -$a->strings["No registrations."] = "Geen verzoeken."; -$a->strings["Approve"] = "Goedkeuren"; -$a->strings["Deny"] = "Afkeuren"; -$a->strings["Register date"] = "Geregistreerd"; -$a->strings["Last login"] = "Laatste keer ingelogd"; -$a->strings["Expires"] = "Verloopt"; -$a->strings["Service Class"] = "Abonnementen"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?"; -$a->strings["%s channel censored/uncensored"] = array( - 0 => "%s kanalen gecensureerd/ongecensureerd", - 1 => "%s kanaal gecensureerd/ongecensureerd", -); -$a->strings["%s channel deleted"] = array( - 0 => "%s kanaal verwijderd", - 1 => "%s kanalen verwijderd", -); -$a->strings["Channel not found"] = "Kanaal niet gevonden"; -$a->strings["Channel '%s' deleted"] = "Kanaal '%s' verwijderd"; -$a->strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd"; -$a->strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd"; -$a->strings["Censor"] = "Censureren"; -$a->strings["Uncensor"] = "Niet censureren"; -$a->strings["UID"] = "UID"; -$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."; -$a->strings["Plugin %s enabled."] = "Plug-in %s ingeschakeld"; -$a->strings["Disable"] = "Uitschakelen"; -$a->strings["Enable"] = "Inschakelen"; -$a->strings["Toggle"] = "Omschakelen"; -$a->strings["Author: "] = "Auteur: "; -$a->strings["Maintainer: "] = "Beheerder: "; -$a->strings["No themes found."] = "Geen thema's gevonden"; -$a->strings["Screenshot"] = "Schermafdruk"; -$a->strings["[Experimental]"] = "[Experimenteel]"; -$a->strings["[Unsupported]"] = "[Niet ondersteund]"; -$a->strings["Log settings updated."] = "Logboek-instellingen bijgewerkt."; -$a->strings["Clear"] = "Leegmaken"; -$a->strings["Debugging"] = "Debuggen"; -$a->strings["Log file"] = "Logbestand"; -$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je RedMatrix-installatie."; -$a->strings["Log level"] = "Logniveau"; +$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["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralized communication and information tool."] = "Je bent hierbij uitgenodigd om mij, en enkele goede vrienden, te komen vergezellen op de RedMatrix - een revolutionaire nieuwe communicatie- en informatietool."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je moet deze uitnodigingscode geven: \$invite_code"; +$a->strings["Please visit my channel at"] = "Bezoek mijn kanaal op"; +$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Wanneer je je eenmaal hebt geregistreerd (maakt niet uit op welke RedMatrix-hub, want ze zijn allemaal met elkaar verbonden), kan je je met mijn RedMatrix-kanaal verbinden:"; +$a->strings["Click the [Register] link on the following page to join."] = "Klik op de link [Registreren] op de volgende pagina om je aan te melden."; +$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Bezoek http://getzot.com voor meer informatie over het RedMatrix-project en waarom het de potentie heeft het internet voor altijd te veranderen."; $a->strings["Thing updated"] = "Ding bijgewerkt"; $a->strings["Object store: failed"] = "Opslaan van ding mislukt"; $a->strings["Thing added"] = "Ding toegevoegd"; @@ -1628,6 +1502,166 @@ $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["Unable to find your hub."] = "Niet in staat om je hub te vinden"; +$a->strings["Post successful."] = "Verzenden bericht geslaagd."; +$a->strings["Help:"] = "Hulp:"; +$a->strings["Not Found"] = "Niet gevonden"; +$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["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["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."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies om je e-mail te bevestigen."; +$a->strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub."; +$a->strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden."; +$a->strings["Registration on this site/hub is by approval only."] = "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd."; +$a->strings["Register at another affiliated site/hub"] = "Registreer op een andere RedMatrix-hub"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze RedMatrix-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."; +$a->strings["Terms of Service"] = "Gebruiksvoorwaarden"; +$a->strings["I accept the %s for this website"] = "Ik accepteer de %s van deze RedMatrix-hub"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ik accepteer de %s van deze RedMatrix-hub"; +$a->strings["Membership on this site is by invitation only."] = "Registreren op deze RedMatrix-hub kan alleen op uitnodiging."; +$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["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."; +$a->strings["Existing Page Managers"] = "Bestaande accountbeheerders"; +$a->strings["Existing Page Delegates"] = "Bestaande gevolmachtigde accountbeheerders"; +$a->strings["Potential Delegates"] = "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed."; +$a->strings["Add"] = "Toevoegen"; +$a->strings["No entries."] = "Geen"; +$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, gebruikersvoorschriften, 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["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["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["Channel Manager"] = "Kanaalbeheerder"; +$a->strings["Current Channel"] = "Huidig kanaal"; +$a->strings["Attach to one of your channels by selecting it."] = "Gebruik een van jouw kanalen door op een te klikken."; +$a->strings["Default Channel"] = "Standaardkanaal"; +$a->strings["Make Default"] = "Als standaard instellen"; +$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."; +$a->strings["Please enter your password for verification:"] = "Vul je wachtwoord in voor verificatie:"; +$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["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["Edit Webpage"] = "Webpagina bewerken"; +$a->strings["Delete webpage?"] = "Webpagina verwijderen?"; +$a->strings["Delete Webpage"] = "Webpagina verwijderen"; +$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["Block Name"] = "Bloknaam"; +$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["Tag removed"] = "Label verwijderd"; +$a->strings["Remove Item Tag"] = "Verwijder itemlabel"; +$a->strings["Select a tag to remove: "] = "Kies een label om te verwijderen"; +$a->strings["Item not available."] = "Item is niet aanwezig."; +$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["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - gasten: Gebruikersnaam: {jouw e-mailadres}, wachtwoord: +++"; +$a->strings["Away"] = "Afwezig"; +$a->strings["Online"] = "Online"; +$a->strings["Finding:"] = "Gezocht naar:"; +$a->strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; +$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["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; +$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["Running at web location"] = "Draaiend op weblocatie"; +$a->strings["Please visit GetZot.com 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["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["Required"] = "Vereist"; +$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["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["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["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["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"; $a->strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; @@ -1645,34 +1679,94 @@ $a->strings["Your old login email address"] = "Het e-mailadres van je oude accou $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["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"] = "Kom op 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["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralized communication and information tool."] = "Je bent hierbij uitgenodigd om mij, en enkele goede vrienden, te komen vergezellen op de Red Matrix - een revolutionaire nieuwe communicatie- en informatietool."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je moet deze uitnodigingscode geven: \$invite_code"; -$a->strings["Please visit my channel at"] = "Bezoek mijn kanaal op"; -$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Wanneer je je eenmaal hebt geregistreerd (maakt niet uit op welke RedMatrix-hub, want ze zijn allemaal met elkaar verbonden), kan je je met mijn RedMatrix-kanaal verbinden:"; -$a->strings["Click the [Register] link on the following page to join."] = "Klik op de link [Registreren] op de volgende pagina om je aan te melden."; -$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Bezoek http://getzot.com voor meer informatie over het RedMatrix-project en waarom het de potentie heeft het internet voor altijd te veranderen."; -$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["[Embedded content - reload page to view]"] = "[Ingesloten inhoud - ververs pagina om te bekijken] "; -$a->strings["Help with this feature"] = "Hulp voor dit onderdeel"; -$a->strings["Layout Name"] = "Naam layout"; +$a->strings["invalid target signature"] = "ongeldig doel-kenmerk (target signature)"; +$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["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["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 privacy-rechten. Doorgestuurd naar profielpagina."; +$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 (%s):"] = "Geboortedag (%s)"; +$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["Bookmark added"] = "Bladwijzer toegevoegd"; +$a->strings["My Bookmarks"] = "Mijn bladwijzers"; +$a->strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; +$a->strings["No channel."] = "Geen kanaal."; +$a->strings["Common connections"] = "Veel voorkomende connecties"; +$a->strings["No connections in common."] = "Geen gemeenschappelijke connecties."; $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."; @@ -1682,17 +1776,44 @@ $a->strings["Channel unavailable."] = "Kanaal niet beschikbaar."; $a->strings["Previous action reversed."] = "Vorige actie omgedraaid"; $a->strings["Action completed."] = "Actie voltooid"; $a->strings["Thank you."] = "Bedankt"; -$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["No more system notifications."] = "Geen systeemnotificaties meer."; +$a->strings["System Notifications"] = "Systeemnotificaties"; +$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["Room not found"] = "Chatkanaal niet gevonden"; +$a->strings["Leave Room"] = "Chatkanaal verlaten"; +$a->strings["Delete This Room"] = "Chatkanaal verwijderen"; +$a->strings["I am away right now"] = "Ik ben momenteel afwezig"; +$a->strings["I am online"] = "Ik ben online"; +$a->strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; +$a->strings["New Chatroom"] = "Nieuw chatkanaal"; +$a->strings["Chatroom Name"] = "Naam chatkanaal"; +$a->strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; +$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["hour:minute"] = "uur:minuut"; +$a->strings["Event details"] = "Details van gebeurtenis"; +$a->strings["Format is %s %s. Starting date and Title are required."] = "Volgorde is %s %s. Begintijd en titel zijn vereist."; +$a->strings["Event Starts:"] = "Begin gebeurtenis:"; +$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["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; +$a->strings["Discard"] = "Annuleren"; $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)"; $a->strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; $a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; -$a->strings["Password Reset"] = "Wachtwoord vergeten?"; $a->strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; $a->strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; $a->strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; @@ -1703,166 +1824,12 @@ $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["Hub not found."] = "Hub niet gevonden."; -$a->strings["Total votes"] = "Totaal aantal stemmen"; -$a->strings["Average Rating"] = "Gemiddelde waardering"; -$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["Messages"] = "Berichten"; -$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["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["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["Channel Manager"] = "Kanaalbeheerder"; -$a->strings["Current Channel"] = "Huidig kanaal"; -$a->strings["Attach to one of your channels by selecting it."] = "Gebruik een van jouw kanalen door op een te klikken."; -$a->strings["Default Channel"] = "Standaardkanaal"; -$a->strings["Make Default"] = "Als standaard instellen"; -$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["Menu updated."] = "Menu aangepast. "; -$a->strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; -$a->strings["Menu created."] = "Menu aangemaakt."; -$a->strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; -$a->strings["Manage Menus"] = "Menu's beheren"; -$a->strings["Drop"] = "Verwijderen"; -$a->strings["Create a new menu"] = "Een nieuwe menu aanmaken"; -$a->strings["Delete this menu"] = "Menu verwijderen"; -$a->strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; -$a->strings["Edit this menu"] = "Dit menu bewerken"; -$a->strings["New Menu"] = "Nieuw menu"; -$a->strings["Menu name"] = "Naam van menu"; -$a->strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; -$a->strings["Menu title"] = "Titel van menu"; -$a->strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; -$a->strings["Allow bookmarks"] = "Bladwijzers toestaan"; -$a->strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; -$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["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"; -$a->strings["Add a Channel"] = "Kanaal toevoegen"; -$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Een kanaal is jouw eigen verzameling gerelateerde webpagina's. Een kanaal kan gebruikt worden voor een sociaal netwerk, weblog, discussiegroep of forum, een pagina over een beroemdheid, en voor veel meer. Je kan net zoveel kanalen aanmaken als dat de eigenaar/beheerder van jouw hub toestaat."; -$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Voorbeelden: \"Bruce Springsteen\", \"Familiefoto's\", \"Voetbal\", \"Astronomie\""; -$a->strings["Choose a short nickname"] = "Kies een korte bijnaam"; -$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Jouw bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres (zoals een e-mailadres) aan te maken, die je dan kan delen met anderen."; -$a->strings["Or import an existing channel from another location"] = "Of importeer een bestaand kanaal vanaf een andere locatie."; -$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["Unable to find your hub."] = "Niet in staat om je hub te vinden"; -$a->strings["Post successful."] = "Verzenden bericht geslaagd."; -$a->strings["invalid target signature"] = "ongeldig doel-kenmerk (target signature)"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; -$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["Poll"] = "Poll"; -$a->strings["View Results"] = "Bekijk resultaten"; -$a->strings["Schema Default"] = "Standaardschema"; -$a->strings["Sans-Serif"] = "Schreefloos"; -$a->strings["Monospace"] = "Monospace"; -$a->strings["Theme settings"] = "Thema-instellingen"; -$a->strings["Set scheme"] = "Schema van thema instellen"; -$a->strings["Set font-size for posts and comments"] = "Lettergrootte voor berichten en reacties instellen"; -$a->strings["Set font face"] = "Lettertypefamilie instellen"; -$a->strings["Set iconset"] = "Pictogrammenset instellen"; -$a->strings["Set big shadow size, default 15px 15px 15px"] = "Een grote schaduwgrootte instellen (standaard 15px 15px 15px)"; -$a->strings["Set small shadow size, default 5px 5px 5px"] = "Een kleine schaduwgrootte instellen (standaard 5px 5px 5px)"; -$a->strings["Set shadow color, default #000"] = "Schaduwkleur instellen (standaard #000)"; -$a->strings["Set radius size, default 5px"] = "Radius instellen (standaard 5px)"; -$a->strings["Set line-height for posts and comments"] = "Lijnhoogte voor berichten en reacties instellen"; -$a->strings["Set background image"] = "Achtergrondafbeelding instellen"; -$a->strings["Set background attachment"] = "Gedrag achtergrondafbeelding instellen"; -$a->strings["Set background color"] = "Achtergrondkleur instellen"; -$a->strings["Set section background image"] = "Achtergrondafbeelding van sectie instellen"; -$a->strings["Set section background color"] = "Achtergrondkleur van sectie instellen"; -$a->strings["Set color of items - use hex"] = "Tekstkleur van items instellen (gebruik hexadecimaal)"; -$a->strings["Set color of links - use hex"] = "Kleur van links instellen (gebruik hexadecimaal)"; -$a->strings["Set max-width for items. Default 400px"] = "Maximale breedte van items instellen (standaard 400px)"; -$a->strings["Set min-width for items. Default 240px"] = "Minimale breedte van items instellen (standaard 240px)"; -$a->strings["Set the generic content wrapper width. Default 48%"] = "Breedte van de generieke content-wrapper instellen (standaard 48%)"; -$a->strings["Set color of fonts - use hex"] = "Tekstkleur instellen (gebruik hexadecimaal)"; -$a->strings["Set background-size element"] = "Grootte achtergrondafbeelding instellen"; -$a->strings["Item opacity"] = "Ondoorzichtigheid item"; -$a->strings["Display post previews only"] = "Alleen voorvertoning berichten weergeven"; -$a->strings["Display side bar on channel page"] = "Zijbalk op kanaalpagina weergeven"; -$a->strings["Colour of the navigation bar"] = "Kleur van de navigatiebalk"; -$a->strings["Item float"] = "Item float"; -$a->strings["Left offset of the section element"] = "Linker offset van het sectie-element"; -$a->strings["Right offset of the section element"] = "Rechter offset van het sectie-element"; -$a->strings["Section width"] = "Breedte van sectie"; -$a->strings["Left offset of the aside"] = "Rechter offset van aside (zijbalk)"; -$a->strings["Right offset of the aside element"] = "Rechter offset van het aside-element"; -$a->strings["None"] = "Geen"; -$a->strings["Header image"] = "Header-afbeelding"; -$a->strings["Header image only on profile pages"] = "Header-afbeelding alleen op profielpagina's weergeven"; -$a->strings["Light (Red Matrix default)"] = "Light (RedMatrix-standaard)"; -$a->strings["Narrow navbar"] = "Smalle navigatiebalk"; -$a->strings["Navigation bar background color"] = "Achtergrondkleur navigatiebalk"; -$a->strings["Navigation bar gradient top color"] = "Bovenste gradiëntkleur navigatiebalk"; -$a->strings["Navigation bar gradient bottom color"] = "Onderste gradiëntkleur navigatiebalk"; -$a->strings["Navigation active button gradient top color"] = "Bovenste gradiëntkleur actieve knop navigatiebalk"; -$a->strings["Navigation active button gradient bottom color"] = "Onderste gradiëntkleur actieve knop op navigatiebalk"; -$a->strings["Navigation bar border color "] = "Randkleur navigatiebalk "; -$a->strings["Navigation bar icon color "] = "Pictogramkleur navigatiebalk"; -$a->strings["Navigation bar active icon color "] = "Actieve pictogramkleur navigatiebalk"; -$a->strings["link color"] = "Linkkleur instellen"; -$a->strings["Set font-color for banner"] = "Tekstkleur van banner instellen"; -$a->strings["Set the background color"] = "Achtergrondkleur instellen"; -$a->strings["Set the background image"] = "Achtergrondafbeelding instellen"; -$a->strings["Set the background color of items"] = "Achtergrondkleur items instellen"; -$a->strings["Set the background color of comments"] = "Achtergrondkleur reacties instellen"; -$a->strings["Set the border color of comments"] = "Randkleur reacties instellen"; -$a->strings["Set the indent for comments"] = "Inspringen reacties instellen"; -$a->strings["Set the basic color for item icons"] = "Basiskleur itempictogrammen instellen"; -$a->strings["Set the hover color for item icons"] = "Hoverkleur itempictogrammen instellen"; -$a->strings["Set font-size for the entire application"] = "Tekstgrootte van de volledige applicatie instellen"; -$a->strings["Set font-color for posts and comments"] = "Tekstkleur van berichten en reacties"; -$a->strings["Set radius of corners"] = "Radius van hoeken instellen"; -$a->strings["Set shadow depth of photos"] = "Schaduwdiepte van foto's instellen"; -$a->strings["Set maximum width of conversation regions"] = "Maximumbreedte conversatieruimte instellen"; -$a->strings["Center conversation regions"] = "Centreer conversatieruimte"; -$a->strings["Set minimum opacity of nav bar - to hide it"] = "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)"; -$a->strings["Set size of conversation author photo"] = "Grootte profielfoto's van berichten instellen"; -$a->strings["Set size of followup author photos"] = "Grootte profielfoto's van reacties instellen"; -$a->strings["Sloppy photo albums"] = "Rommelig vormgegeven fotoalbums"; -$a->strings["Are you a clean desk or a messy desk person?"] = "Ben je iemand die van een opgeruimd bureau houdt of van een rommelig bureau?"; -$a->strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek."; -$a->strings["Update Error at %s"] = "Update-fout op %s"; -$a->strings["Create an account to access services and applications within the Red Matrix"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen van de RedMatrix"; -$a->strings["Password"] = "Wachtwoord"; -$a->strings["Remember me"] = "Aangemeld blijven"; -$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; -$a->strings["permission denied"] = "toegang geweigerd"; -$a->strings["Got Zot?"] = "Heb je Zot?"; -$a->strings["toggle mobile"] = "mobiele weergave omschakelen"; +$a->strings["Help with this feature"] = "Hulp voor dit onderdeel"; +$a->strings["Layout Name"] = "Naam layout"; +$a->strings["Edit Block"] = "Blok bewerken"; +$a->strings["Delete block?"] = "Blok verwijderen"; +$a->strings["Delete Block"] = "Blok verwijderen"; +$a->strings["Edit Layout"] = "Lay-out bewerken"; +$a->strings["Delete layout?"] = "Lay-out verwijderen?"; +$a->strings["Delete Layout"] = "Lay-out verwijderen"; +$a->strings["Channel added."] = "Kanaal toegevoegd."; diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index df9485dee..704c2c944 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -98,6 +98,7 @@ pre code { code { font-family: Courier, monospace; + font-size: 1em; display: block; overflow: auto; border: 1px solid $code_borderc; @@ -2240,7 +2241,7 @@ nav .dropdown-menu>li>a:hover,nav .dropdown-menu>li>a:focus{ /* bootstrap overrides */ blockquote { - font-size: $body_font_size; + font-size: 1em; } .dropdown-menu { @@ -2377,7 +2378,7 @@ blockquote { } .btn-xs { - font-size: 12px; + font-size: 0.65rem; } .btn-default { diff --git a/view/tpl/removeaccount.tpl b/view/tpl/removeaccount.tpl new file mode 100644 index 000000000..b7378806b --- /dev/null +++ b/view/tpl/removeaccount.tpl @@ -0,0 +1,22 @@ +

{{$title}}

+ +
+ +
{{$desc}}
+ +
+ + +
+ + +
+
+ +{{include file="field_checkbox.tpl" field=$global}} + + + +
+
+