Conflicts:
	view/nl/messages.po
	view/nl/strings.php
This commit is contained in:
redmatrix 2015-05-18 15:58:13 -07:00
commit 2dd0e7f6bd
7 changed files with 189 additions and 135 deletions

47
doc/Primary-Directory Normal file
View File

@ -0,0 +1,47 @@
#Primary Directory#
By default, $Projectname will use available Directories on the web, which show you channels available around the world.
There are certain scenarios where you might want your own directory-server that you can connect multiple hubs to. This will limit the channels that appear in all of your hubs to only channels on hubs connected to your directory-server.
##Instuctions on how to set up one hub as the Primary Directory for a series of private hubs.##
***
* On the hub that will be the Directory Server, open the .htconfig.php file and set:
`$a->config['system']['directory_mode'] = DIRECTORY_MODE_PRIMARY;`
By default it should already be set as **DIRECTORY_MODE_NORMAL**, so just edit that line to say **DIRECTORY_MODE_PRIMARY**
* Next, for each hub (including the Directory Server), from a terminal, cd into the folder where it is installed and run this :
`util/config system directory_realm YOURREALMNAME`
(**YOURREALMNAME** can be whatever you want your realm-name to be)
then:
`util/config system realm_token THEPASSWORD`
(**THEPASSWORD** is whatever password you want for your realm)
**NOTE:** Use the same realm-name and password for each hub
* Lastly, for each "client" hub, (from a terminal) run:
`util/config system directory_server https://theaddressofyourdirectoryserver.com`
***
Now when you view the directory of each hub, it should only show the channels that exist on the hubs in your realm. I have tested with two hubs so far, and it seems to be working fine.
Channels created in each hub are reflected in the Primary Directory, and subsequently in the directory of all client hubs
##Issues##
***
When I created the first hub,it was up and running for an hour or so before I changed it to PRIMARY_MODE, and after changing it, there were a few channels from across the matrix still present in the directory. I deleted them from the xchan table and that seems to have fixed the issue.

View File

@ -1,4 +1,4 @@
[b]Red Developer Guide[/b] [b]$Projectname Developer Guide[/b]
We're pretty relaxed when it comes to developers. We don't have a lot of rules. Some of us are over-worked and if you want to help we're happy to let you help. That said, attention to a few guidelines will make the process smoother and make it easier to work together. We have developers from across the globe with different abilities and different cultural backgrounds and different levels of patience. Our primary rule is to respect others. Sometimes this is hard and sometimes we have very different opinions of how things should work, but if everybody makes an effort, we'll get along just fine. We're pretty relaxed when it comes to developers. We don't have a lot of rules. Some of us are over-worked and if you want to help we're happy to let you help. That said, attention to a few guidelines will make the process smoother and make it easier to work together. We have developers from across the globe with different abilities and different cultural backgrounds and different levels of patience. Our primary rule is to respect others. Sometimes this is hard and sometimes we have very different opinions of how things should work, but if everybody makes an effort, we'll get along just fine.
@ -39,7 +39,7 @@ All code contributed to the project falls under the MIT license, unless otherwis
Code changes which fix an obvious bug are pretty straight-forward. For instance if you click "Save" and the thing you're trying to save isn't saved, it's fairly obvious what the intended behaviour should be. Often when developing feature requests, it may affect large numbers of community members and it's possible that other members of the community won't agree with the need for the feature, or with your proposed implementation. They may not see something as a bug or a desirable feature. Code changes which fix an obvious bug are pretty straight-forward. For instance if you click "Save" and the thing you're trying to save isn't saved, it's fairly obvious what the intended behaviour should be. Often when developing feature requests, it may affect large numbers of community members and it's possible that other members of the community won't agree with the need for the feature, or with your proposed implementation. They may not see something as a bug or a desirable feature.
We encourage concensus building within the community when it comes to any feature which might be considered controversial or where there isn't unanimous decision that the proposed feature is the correct way to accomplish the task. The first place to pitch your ideas is to [url=https://zothub.com/channel/one]Channel One[/url]. Others may have some input or be able to point out facets of your concept which might be problematic in our environment. But also, you may encounter opposition to your plan. This doesn't mean you should stop and/or ignore the feature. Listen to the concerns of others and try and work through any implementation issues. We encourage consensus building within the community when it comes to any feature which might be considered controversial or where there isn't unanimous decision that the proposed feature is the correct way to accomplish the task. The first place to pitch your ideas is to [url=https://zothub.com/channel/one]Channel One[/url]. Others may have some input or be able to point out facets of your concept which might be problematic in our environment. But also, you may encounter opposition to your plan. This doesn't mean you should stop and/or ignore the feature. Listen to the concerns of others and try and work through any implementation issues.
There are places where opposition cannot be resolved. In these cases, please consider making your feature [b]optional[/b] or non-default behaviour that must be specifically enabled. This technique can often be used when a feature has significant but less than unanimous support. Those who desire the feature can turn it on and those who don't want it - will leave it turned off. There are places where opposition cannot be resolved. In these cases, please consider making your feature [b]optional[/b] or non-default behaviour that must be specifically enabled. This technique can often be used when a feature has significant but less than unanimous support. Those who desire the feature can turn it on and those who don't want it - will leave it turned off.

View File

@ -191,8 +191,8 @@ Similar to any other modern blogging system, social network, or a micro-blogging
[b]Previewing/Editing[/b] [b]Previewing/Editing[/b]
Post can be previewed prior to sending and edited after sending. Post can be previewed prior to sending and edited after sending.
[b]Voting/Concensus[/b] [b]Voting/Consensus[/b]
Posts can be turned into "concensus" items which allows readers to offer feedback, which is collated into "agree", "disagree", and "abstain" counters. This lets you gauge interest for ideas and create informal surveys. Posts can be turned into "consensus" items which allows readers to offer feedback, which is collated into "agree", "disagree", and "abstain" counters. This lets you gauge interest for ideas and create informal surveys.
[b]Extending $Projectname[/b] [b]Extending $Projectname[/b]

View File

@ -169,10 +169,17 @@ function comanche_block($s, $class = '') {
if($r) { if($r) {
$o .= (($var['wrap'] == 'none') ? '' : '<div class="' . $class . '">'); $o .= (($var['wrap'] == 'none') ? '' : '<div class="' . $class . '">');
if($r[0]['title'])
$o .= '<h3>' . $r[0]['title'] . '</h3>';
if($r[0]['body'] === '$content') { if($r[0]['title'] && trim($r[0]['title']) != '$content') {
$o .= '<h3>' . $r[0]['title'] . '</h3>';
}
if($r[0]['title'] && trim($r[0]['title']) === '$content' && get_app()->data['webpage'][0]['title']) {
$o .= '<h3>' . get_app()->data['webpage'][0]['title'] . '</h3>';
}
if(trim($r[0]['body']) === '$content') {
$o .= prepare_text(get_app()->data['webpage'][0]['body'], get_app()->data['webpage'][0]['mimetype']); $o .= prepare_text(get_app()->data['webpage'][0]['body'], get_app()->data['webpage'][0]['mimetype']);
} }
else { else {

View File

@ -1,5 +1,5 @@
# Hubzilla Project # Red Matrix Project
# Copyright (C) 2012-2014 the Hubzilla Project # Copyright (C) 2012-2014 the Red Matrix Project
# This file is distributed under the same license as the Red package. # This file is distributed under the same license as the Red package.
# #
# Translators: # Translators:
@ -7,7 +7,7 @@
# jeroenpraat <jeroenpraat@xs4all.nl>, 2014-2015 # jeroenpraat <jeroenpraat@xs4all.nl>, 2014-2015
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Hubzilla\n" "Project-Id-Version: Redmatrix\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-01 00:03-0700\n" "POT-Creation-Date: 2015-05-01 00:03-0700\n"
"PO-Revision-Date: 2015-05-07 12:20+0000\n" "PO-Revision-Date: 2015-05-07 12:20+0000\n"
@ -90,11 +90,11 @@ msgstr "Geen geldig e-mailadres"
#: ../../include/account.php:29 #: ../../include/account.php:29
msgid "Your email domain is not among those allowed on this site" msgid "Your email domain is not among those allowed on this site"
msgstr "Jouw e-maildomein is op deze Hubzilla-hub niet toegestaan" msgstr "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan"
#: ../../include/account.php:35 #: ../../include/account.php:35
msgid "Your email address is already registered at this site." msgid "Your email address is already registered at this site."
msgstr "Jouw e-mailadres is al op deze Hubzilla-hub geregistreerd." msgstr "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd."
#: ../../include/account.php:67 #: ../../include/account.php:67
msgid "An invitation is required." msgid "An invitation is required."
@ -1110,12 +1110,12 @@ msgid "Public Hubs"
msgstr "Openbare hubs" msgstr "Openbare hubs"
#: ../../include/enotify.php:58 #: ../../include/enotify.php:58
msgid "Hubzilla Notification" msgid "Red Matrix Notification"
msgstr "Hubzilla-notificatie" msgstr "RedMatrix-notificatie"
#: ../../include/enotify.php:59 #: ../../include/enotify.php:59
msgid "hubzilla" msgid "redmatrix"
msgstr "Hubzilla" msgstr "RedMatrix"
#: ../../include/enotify.php:61 #: ../../include/enotify.php:61
msgid "Thank You," msgid "Thank You,"
@ -1678,8 +1678,8 @@ msgid "Attachments:"
msgstr "Bijlagen:" msgstr "Bijlagen:"
#: ../../include/bb2diaspora.php:453 #: ../../include/bb2diaspora.php:453
msgid "Hubzilla event notification:" msgid "Redmatrix event notification:"
msgstr "Notificatie Hubzilla-gebeurtenis:" msgstr "Notificatie RedMatrix-gebeurtenis:"
#: ../../include/text.php:329 #: ../../include/text.php:329
msgid "prev" msgid "prev"
@ -2126,7 +2126,7 @@ msgstr "Authenticatie op afstand"
#: ../../include/nav.php:137 #: ../../include/nav.php:137
msgid "Click to authenticate to your home hub" msgid "Click to authenticate to your home hub"
msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw Hubzilla-hub" msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub"
#: ../../include/nav.php:151 #: ../../include/nav.php:151
msgid "Home Page" msgid "Home Page"
@ -2155,7 +2155,7 @@ msgstr "Apps"
#: ../../include/nav.php:165 #: ../../include/nav.php:165
msgid "Search site content" msgid "Search site content"
msgstr "Inhoud van deze Hubzilla-hub doorzoeken" msgstr "Inhoud van deze RedMatrix-hub doorzoeken"
#: ../../include/nav.php:168 ../../include/apps.php:141 #: ../../include/nav.php:168 ../../include/apps.php:141
#: ../../mod/directory.php:366 #: ../../mod/directory.php:366
@ -2750,7 +2750,7 @@ msgstr "Foto's weergeven"
#: ../../include/conversation.php:944 #: ../../include/conversation.php:944
msgid "Matrix Activity" msgid "Matrix Activity"
msgstr "Activiteit in de Hubzilla" msgstr "Activiteit in de RedMatrix"
#: ../../include/conversation.php:946 #: ../../include/conversation.php:946
msgid "Edit Contact" msgid "Edit Contact"
@ -3853,7 +3853,7 @@ msgstr "Chatkanaal is vol"
#: ../../mod/achievements.php:34 #: ../../mod/achievements.php:34
msgid "Some blurb about what to do when you're new here" msgid "Some blurb about what to do when you're new here"
msgstr "Welkom op de Hubzilla. Klik op de tab ontdekken of klik rechtsboven op de <a href=\"directory\">kanalengids</a>, om kanalen te vinden. Rechtsboven vind je ook onze <a href=\"directory\">apps</a>, waar je vrijwel alles van de Hubzilla kan vinden. Voor <a href=\"directory\">hulp</a> met de Hubzilla klik je op het vraagteken of als je meer vragen hebt stel je die in het <a href=\"https://zothost.me/channel/support\">supportkanaal</a> (liefst in het Engels)." msgstr "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de <a href=\"directory\">kanalengids</a>, om kanalen te vinden. Rechtsboven vind je ook onze <a href=\"directory\">apps</a>, waar je vrijwel alles van de RedMatrix kan vinden. Voor <a href=\"directory\">hulp</a> met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het <a href=\"https://zothost.me/channel/support\">supportkanaal</a> (liefst in het Engels)."
#: ../../mod/manage.php:136 #: ../../mod/manage.php:136
#, php-format #, php-format
@ -4258,7 +4258,7 @@ msgstr "Verberg mijn aanwezigheid"
#: ../../mod/settings.php:1057 #: ../../mod/settings.php:1057
msgid "Prevents displaying in your profile that you are online" msgid "Prevents displaying in your profile that you are online"
msgstr "Voorkomt dat op je kanaal te zien valt dat je momenteel op de Hubzilla aanwezig bent" msgstr "Voorkomt dat op je kanaal te zien valt dat je momenteel op de RedMatrix aanwezig bent"
#: ../../mod/settings.php:1059 #: ../../mod/settings.php:1059
msgid "Simple Privacy Settings:" msgid "Simple Privacy Settings:"
@ -4652,8 +4652,8 @@ msgid "Fetching URL returns error: %1$s"
msgstr "Ophalen URL gaf een foutmelding terug: %1$s" msgstr "Ophalen URL gaf een foutmelding terug: %1$s"
#: ../../mod/home.php:53 #: ../../mod/home.php:53
msgid "Hubzilla - &quot;The Network&quot;" msgid "Red Matrix - &quot;The Network&quot;"
msgstr "Hubzilla - &quot;The Network&quot;" msgstr "RedMatrix - &quot;The Network&quot;"
#: ../../mod/home.php:124 #: ../../mod/home.php:124
#, php-format #, php-format
@ -4751,13 +4751,13 @@ msgstr "Leuk/niet leuk"
#: ../../mod/like.php:20 #: ../../mod/like.php:20
msgid "This action is restricted to members." msgid "This action is restricted to members."
msgstr "Deze actie kan alleen door mensen met een Hubzilla-account worden uitgevoerd." msgstr "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd."
#: ../../mod/like.php:21 #: ../../mod/like.php:21
msgid "" msgid ""
"Please <a href=\"rmagic\">login with your Hubzilla ID</a> or <a " "Please <a href=\"rmagic\">login with your RedMatrix ID</a> or <a "
"href=\"register\">register as a new Redmatrix.member</a> to continue." "href=\"register\">register as a new RedMatrix member</a> to continue."
msgstr "Je dient <a href=\"rmagic\">in te loggen met je Hubzilla-account</a> of <a href=\"register\">een nieuw Hubzilla-account te registreren</a> om verder te kunnen gaan." msgstr "Je dient <a href=\"rmagic\">in te loggen met je RedMatrix-account</a> of <a href=\"register\">een nieuw RedMatrix-account te registreren</a> om verder te kunnen gaan."
#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 #: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166
msgid "Invalid request." msgid "Invalid request."
@ -4922,12 +4922,12 @@ msgstr "Openbare hubs"
#: ../../mod/pubsites.php:19 #: ../../mod/pubsites.php:19
msgid "" msgid ""
"The listed sites allow public registration into the Hubzilla. All sites in" "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 " " 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 " "in the matrix as a whole. Some sites may require subscription or provide "
"tiered service plans. The provider links <strong>may</strong> provide " "tiered service plans. The provider links <strong>may</strong> provide "
"additional details." "additional details."
msgstr "Op de hier weergegeven hubs kan iedereen zich voor de Hubzilla 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. <strong>Mogelijk</strong> wordt hierover op de hub zelf meer informatie gegeven." 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. <strong>Mogelijk</strong> wordt hierover op de hub zelf meer informatie gegeven."
#: ../../mod/pubsites.php:25 #: ../../mod/pubsites.php:25
msgid "Rate this hub" msgid "Rate this hub"
@ -4966,8 +4966,8 @@ msgid "Edit post"
msgstr "Bericht bewerken" msgstr "Bericht bewerken"
#: ../../mod/dav.php:121 #: ../../mod/dav.php:121
msgid "Hubzilla channel" msgid "RedMatrix channel"
msgstr "Hubzilla-kanaal" msgstr "RedMatrix-kanaal"
#: ../../mod/group.php:20 #: ../../mod/group.php:20
msgid "Collection created." msgid "Collection created."
@ -5036,9 +5036,9 @@ msgstr "Red"
#: ../../mod/siteinfo.php:156 #: ../../mod/siteinfo.php:156
msgid "" msgid ""
"This is a hub of hubzilla - a global cooperative network of decentralized " "This is a hub of redmatrix - a global cooperative network of decentralized "
"privacy enhanced websites." "privacy enhanced websites."
msgstr "Dit is een hub van de Hubzilla - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy." msgstr "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy."
#: ../../mod/siteinfo.php:158 #: ../../mod/siteinfo.php:158
msgid "Tag: " msgid "Tag: "
@ -5055,8 +5055,8 @@ msgstr "Draaiend op weblocatie"
#: ../../mod/siteinfo.php:164 #: ../../mod/siteinfo.php:164
msgid "" msgid ""
"Please visit <a href=\"https://redmatrix.me\">redmatrix.me</a> to learn more" "Please visit <a href=\"https://redmatrix.me\">redmatrix.me</a> to learn more"
" about the Hubzilla." " about the Red Matrix."
msgstr "Bezoek <a href=\"https://redmatrix.me\">Redmatrix.me</a> om meer over de Hubzilla te leren." msgstr "Bezoek <a href=\"https://redmatrix.me\">RedMatrix.me</a> om meer over de RedMatrix te leren."
#: ../../mod/siteinfo.php:165 #: ../../mod/siteinfo.php:165
msgid "Bug reports and issues: please visit" msgid "Bug reports and issues: please visit"
@ -5064,9 +5064,9 @@ msgstr "Bugrapporten en andere kwesties: bezoek"
#: ../../mod/siteinfo.php:168 #: ../../mod/siteinfo.php:168
msgid "" msgid ""
"Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot " "Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
"com" "com"
msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"hubzilla\" at librelist - dot com" msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"
#: ../../mod/siteinfo.php:170 #: ../../mod/siteinfo.php:170
msgid "Site Administrators" msgid "Site Administrators"
@ -5081,8 +5081,8 @@ msgid "Not Found"
msgstr "Niet gevonden" msgstr "Niet gevonden"
#: ../../mod/setup.php:166 #: ../../mod/setup.php:166
msgid "Hubzilla Server - Setup" msgid "Red Matrix Server - Setup"
msgstr "Hubzilla Server - Setup" msgstr "RedMatrix Server - Setup"
#: ../../mod/setup.php:172 #: ../../mod/setup.php:172
msgid "Could not connect to database." msgid "Could not connect to database."
@ -5126,9 +5126,9 @@ msgstr "Database connection"
#: ../../mod/setup.php:290 #: ../../mod/setup.php:290
msgid "" msgid ""
"In order to install Hubzilla we need to know how to connect to your " "In order to install Red Matrix we need to know how to connect to your "
"database." "database."
msgstr "In order to install Hubzilla we need to know how to connect to your database." msgstr "In order to install RedMatrix we need to know how to connect to your database."
#: ../../mod/setup.php:291 #: ../../mod/setup.php:291
msgid "" msgid ""
@ -5588,8 +5588,8 @@ msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s"
#: ../../mod/cloud.php:120 #: ../../mod/cloud.php:120
msgid "Hubzilla - Guests: Username: {your email address}, Password: +++" msgid "RedMatrix - Guests: Username: {your email address}, Password: +++"
msgstr "Hubzilla - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++" msgstr "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++"
#: ../../mod/photos.php:77 #: ../../mod/photos.php:77
msgid "Page owner information could not be retrieved." msgid "Page owner information could not be retrieved."
@ -6114,7 +6114,7 @@ msgstr "%s : Geen geldig e-mailadres."
#: ../../mod/invite.php:76 #: ../../mod/invite.php:76
msgid "Please join us on Red" msgid "Please join us on Red"
msgstr "Uitnodiging voor de Hubzilla" msgstr "Uitnodiging voor de RedMatrix"
#: ../../mod/invite.php:87 #: ../../mod/invite.php:87
msgid "Invitation limit exceeded. Please contact your site administrator." msgid "Invitation limit exceeded. Please contact your site administrator."
@ -6149,19 +6149,19 @@ msgid "Your message:"
msgstr "Jouw bericht:" msgstr "Jouw bericht:"
#: ../../mod/invite.php:132 #: ../../mod/invite.php:132
msgid "Please join my community on Hubzilla." msgid "Please join my community on RedMatrix."
msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de Hubzilla te vergezellen. Lees meer over de Hubzilla op https://redmatrix.me." msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me."
#: ../../mod/invite.php:134 #: ../../mod/invite.php:134
msgid "You will need to supply this invitation code: " msgid "You will need to supply this invitation code: "
msgstr "Je moet deze uitnodigingscode opgeven:" msgstr "Je moet deze uitnodigingscode opgeven:"
#: ../../mod/invite.php:135 #: ../../mod/invite.php:135
msgid "1. Register at any Hubzilla location (they are all inter-connected)" msgid "1. Register at any RedMatrix location (they are all inter-connected)"
msgstr "1. Registreer je op een willekeurige Hubzilla-hub (ze zijn allemaal onderling met elkaar verbonden):" msgstr "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):"
#: ../../mod/invite.php:137 #: ../../mod/invite.php:137
msgid "2. Enter my Hubzilla network address into the site searchbar." msgid "2. Enter my RedMatrix network address into the site searchbar."
msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:" msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:"
#: ../../mod/invite.php:138 #: ../../mod/invite.php:138
@ -6783,8 +6783,8 @@ msgid "Link Target"
msgstr "Linkdoel" msgstr "Linkdoel"
#: ../../mod/mitem.php:156 ../../mod/mitem.php:226 #: ../../mod/mitem.php:156 ../../mod/mitem.php:226
msgid "Use Hubzilla magic-auth if available" msgid "Use RedMatrix magic-auth if available"
msgstr "Gebruik Hubzilla' magic-auth wanneer beschikbaar" msgstr "Gebruik RedMatrix' magic-auth wanneer beschikbaar"
#: ../../mod/mitem.php:157 ../../mod/mitem.php:227 #: ../../mod/mitem.php:157 ../../mod/mitem.php:227
msgid "Open link in new window" msgid "Open link in new window"
@ -7098,19 +7098,19 @@ msgstr "Ja - met goedkeuring"
#: ../../mod/admin.php:431 #: ../../mod/admin.php:431
msgid "My site is not a public server" msgid "My site is not a public server"
msgstr "Mijn Hubzilla-hub is niet openbaar" msgstr "Mijn RedMatrix-hub is niet openbaar"
#: ../../mod/admin.php:432 #: ../../mod/admin.php:432
msgid "My site has paid access only" msgid "My site has paid access only"
msgstr "Mijn Hubzilla-hub kent alleen betaalde toegang" msgstr "Mijn RedMatrix-hub kent alleen betaalde toegang"
#: ../../mod/admin.php:433 #: ../../mod/admin.php:433
msgid "My site has free access only" msgid "My site has free access only"
msgstr "Mijn Hubzilla-hub kent alleen gratis toegang" msgstr "Mijn RedMatrix-hub kent alleen gratis toegang"
#: ../../mod/admin.php:434 #: ../../mod/admin.php:434
msgid "My site offers free accounts with optional paid upgrades" msgid "My site offers free accounts with optional paid upgrades"
msgstr "Mijn Hubzilla-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" msgstr "Mijn RedMatrix-hub biedt gratis accounts aan met betaalde uitbreidingen als optie"
#: ../../mod/admin.php:447 ../../mod/register.php:207 #: ../../mod/admin.php:447 ../../mod/register.php:207
msgid "Registration" msgid "Registration"
@ -7126,7 +7126,7 @@ msgstr "Beleid"
#: ../../mod/admin.php:454 #: ../../mod/admin.php:454
msgid "Site name" msgid "Site name"
msgstr "Naam van deze Hubzilla-hub" msgstr "Naam van deze RedMatrix-hub"
#: ../../mod/admin.php:455 #: ../../mod/admin.php:455
msgid "Banner/Logo" msgid "Banner/Logo"
@ -7154,7 +7154,7 @@ msgstr "Standaardthema"
msgid "" msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' " "Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>" "id='cnftheme'>change theme settings</a>"
msgstr "Standaardthema voor Hubzilla-hub (kan door lid veranderd worden) - <a href='#' id='cnftheme'>verander thema-instellingen</a>" msgstr "Standaardthema voor RedMatrix-hub (kan door lid veranderd worden) - <a href='#' id='cnftheme'>verander thema-instellingen</a>"
#: ../../mod/admin.php:459 #: ../../mod/admin.php:459
msgid "Mobile system theme" msgid "Mobile system theme"
@ -7196,7 +7196,7 @@ msgstr "Staat deze hub nieuwe accounts toe?"
#: ../../mod/admin.php:465 #: ../../mod/admin.php:465
msgid "Which best describes the types of account offered by this hub?" msgid "Which best describes the types of account offered by this hub?"
msgstr "Wat voor soort accounts biedt deze Hubzilla-hub aan? Kies wat het meest in de buurt komt." msgstr "Wat voor soort accounts biedt deze RedMatrix-hub aan? Kies wat het meest in de buurt komt."
#: ../../mod/admin.php:466 #: ../../mod/admin.php:466
msgid "Register text" msgid "Register text"
@ -7224,7 +7224,7 @@ msgstr "Toegestane domeinen"
msgid "" msgid ""
"Comma separated list of domains which are allowed to establish friendships " "Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains" "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 Hubzilla-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." 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:469 #: ../../mod/admin.php:469
msgid "Allowed email domains" msgid "Allowed email domains"
@ -7295,7 +7295,7 @@ msgid ""
"Check to hide the login form from your sites homepage when visitors arrive " "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 " "who are not logged in (e.g. when you put the content of the homepage in via "
"the site channel)." "the site channel)."
msgstr "Vink dit aan om het inlogformulier op de homepage van deze hub, die niet-ingelogde bezoekers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze Hubzilla-hub als homepage gebruikt)" msgstr "Vink dit aan om het inlogformulier op de homepage van deze hub, die niet-ingelogde bezoekers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze RedMatrix-hub als homepage gebruikt)"
#: ../../mod/admin.php:477 #: ../../mod/admin.php:477
msgid "Proxy user" msgid "Proxy user"
@ -7660,7 +7660,7 @@ msgstr "Logbestand"
#: ../../mod/admin.php:1364 #: ../../mod/admin.php:1364
msgid "" msgid ""
"Must be writable by web server. Relative to your Red top-level directory." "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 Hubzilla-installatie." msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je RedMatrix-installatie."
#: ../../mod/admin.php:1365 #: ../../mod/admin.php:1365
msgid "Log level" msgid "Log level"
@ -7724,7 +7724,7 @@ msgstr "Blok verwijderen"
#: ../../mod/register.php:44 #: ../../mod/register.php:44
msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
msgstr "Maximum toegestane dagelijkse registraties op deze Hubzilla-hub bereikt. Probeer het morgen (UTC) nogmaals." msgstr "Maximum toegestane dagelijkse registraties op deze RedMatrix-hub bereikt. Probeer het morgen (UTC) nogmaals."
#: ../../mod/register.php:50 #: ../../mod/register.php:50
msgid "" msgid ""
@ -7743,7 +7743,7 @@ msgstr "Registratie geslaagd. Controleer je e-mail voor instructies."
#: ../../mod/register.php:123 #: ../../mod/register.php:123
msgid "Your registration is pending approval by the site owner." msgid "Your registration is pending approval by the site owner."
msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze Hubzilla-hub." msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub."
#: ../../mod/register.php:126 #: ../../mod/register.php:126
msgid "Your registration can not be processed." msgid "Your registration can not be processed."
@ -7751,17 +7751,17 @@ msgstr "Jouw registratie kan niet verwerkt worden."
#: ../../mod/register.php:163 #: ../../mod/register.php:163
msgid "Registration on this site/hub is by approval only." msgid "Registration on this site/hub is by approval only."
msgstr "Registraties op deze Hubzilla-hub moeten eerst worden goedgekeurd." msgstr "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd."
#: ../../mod/register.php:164 #: ../../mod/register.php:164
msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>" msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>"
msgstr "<a href=\"pubsites\">Registreer op een andere Hubzilla-hub</a>" msgstr "<a href=\"pubsites\">Registreer op een andere RedMatrix-hub</a>"
#: ../../mod/register.php:174 #: ../../mod/register.php:174
msgid "" msgid ""
"This site has exceeded the number of allowed daily account registrations. " "This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow." "Please try again tomorrow."
msgstr "Deze Hubzilla-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." msgstr "Deze RedMatrix-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."
#: ../../mod/register.php:185 #: ../../mod/register.php:185
msgid "Terms of Service" msgid "Terms of Service"
@ -7770,16 +7770,16 @@ msgstr "Gebruiksvoorwaarden"
#: ../../mod/register.php:191 #: ../../mod/register.php:191
#, php-format #, php-format
msgid "I accept the %s for this website" msgid "I accept the %s for this website"
msgstr "Ik accepteer de %s van deze Hubzilla-hub" msgstr "Ik accepteer de %s van deze RedMatrix-hub"
#: ../../mod/register.php:193 #: ../../mod/register.php:193
#, php-format #, php-format
msgid "I am over 13 years of age and accept the %s for this website" msgid "I am over 13 years of age and accept the %s for this website"
msgstr "Ik accepteer de %s van deze Hubzilla-hub" msgstr "Ik accepteer de %s van deze RedMatrix-hub"
#: ../../mod/register.php:212 #: ../../mod/register.php:212
msgid "Membership on this site is by invitation only." msgid "Membership on this site is by invitation only."
msgstr "Registreren op deze Hubzilla-hub kan alleen op uitnodiging." msgstr "Registreren op deze RedMatrix-hub kan alleen op uitnodiging."
#: ../../mod/register.php:213 #: ../../mod/register.php:213
msgid "Please enter your invitation code" msgid "Please enter your invitation code"
@ -7815,7 +7815,7 @@ msgstr "WAARSCHUWING: "
msgid "" msgid ""
"This account and all its channels will be completely removed from the " "This account and all its channels will be completely removed from the "
"network. " "network. "
msgstr "Dit account en al zijn kanalen worden volledig uit het Hubzilla-netwerk verwijderd." msgstr "Dit account en al zijn kanalen worden volledig uit het RedMatrix-netwerk verwijderd."
#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 #: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58
msgid "This action is permanent and can not be undone!" msgid "This action is permanent and can not be undone!"
@ -7829,13 +7829,13 @@ msgstr "Vul je wachtwoord in ter verificatie:"
msgid "" msgid ""
"Remove this account, all its channels and all its channel clones from the " "Remove this account, all its channels and all its channel clones from the "
"network" "network"
msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het Hubzilla-netwerk verwijderen" msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het RedMatrix-netwerk verwijderen"
#: ../../mod/removeaccount.php:60 #: ../../mod/removeaccount.php:60
msgid "" msgid ""
"By default only the instances of the channels located on this hub will be " "By default only the instances of the channels located on this hub will be "
"removed from the network" "removed from the network"
msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het Hubzilla-netwerk verwijderd." msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het RedMatrix-netwerk verwijderd."
#: ../../mod/item.php:174 #: ../../mod/item.php:174
msgid "Unable to locate original post." msgid "Unable to locate original post."
@ -7997,17 +7997,17 @@ msgstr "Verwijder dit kanaal"
#: ../../mod/removeme.php:58 #: ../../mod/removeme.php:58
msgid "This channel will be completely removed from the network. " msgid "This channel will be completely removed from the network. "
msgstr "Dit kanaal wordt volledig uit het Hubzilla-netwerk verwijderd." msgstr "Dit kanaal wordt volledig uit het RedMatrix-netwerk verwijderd."
#: ../../mod/removeme.php:60 #: ../../mod/removeme.php:60
msgid "Remove this channel and all its clones from the network" msgid "Remove this channel and all its clones from the network"
msgstr "Dit kanaal en alle klonen hiervan uit het Hubzilla-netwerk verwijderen" msgstr "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen"
#: ../../mod/removeme.php:60 #: ../../mod/removeme.php:60
msgid "" msgid ""
"By default only the instance of the channel located on this hub will be " "By default only the instance of the channel located on this hub will be "
"removed from the network" "removed from the network"
msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het Hubzilla-netwerk verwijderd." msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd."
#: ../../mod/connedit.php:262 #: ../../mod/connedit.php:262
msgid "is now connected to" msgid "is now connected to"
@ -8762,8 +8762,8 @@ msgid "Right offset of the aside element"
msgstr "Rechter offset van het aside-element" msgstr "Rechter offset van het aside-element"
#: ../../view/theme/redbasic/php/config.php:82 #: ../../view/theme/redbasic/php/config.php:82
msgid "Light (Hubzilla default)" msgid "Light (Red Matrix default)"
msgstr "Light (Hubzilla-standaard)" msgstr "Light (RedMatrix-standaard)"
#: ../../view/theme/redbasic/php/config.php:101 #: ../../view/theme/redbasic/php/config.php:101
msgid "Select scheme" msgid "Select scheme"
@ -8901,8 +8901,8 @@ msgstr "Update-fout op %s"
#: ../../boot.php:1515 #: ../../boot.php:1515
msgid "" msgid ""
"Create an account to access services and applications within the Hubzilla" "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 Hubzilla" msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van de RedMatrix"
#: ../../boot.php:1543 #: ../../boot.php:1543
msgid "Password" msgid "Password"

View File

@ -20,8 +20,8 @@ $a->strings["Add new collection"] = "Nieuwe collectie toevoegen";
$a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; $a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden";
$a->strings["add"] = "toevoegen"; $a->strings["add"] = "toevoegen";
$a->strings["Not a valid email address"] = "Geen geldig e-mailadres"; $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 Hubzilla-hub niet toegestaan"; $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 Hubzilla-hub geregistreerd."; $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["An invitation is required."] = "Een uitnodiging is vereist";
$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; $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["Please enter the required information."] = "Vul de vereiste informatie in.";
@ -250,8 +250,8 @@ $a->strings["photo/image"] = "foto/afbeelding";
$a->strings["Rate Me"] = "Beoordeel mij"; $a->strings["Rate Me"] = "Beoordeel mij";
$a->strings["View Ratings"] = "Bekijk beoordelingen"; $a->strings["View Ratings"] = "Bekijk beoordelingen";
$a->strings["Public Hubs"] = "Openbare hubs"; $a->strings["Public Hubs"] = "Openbare hubs";
$a->strings["Hubzilla Notification"] = "Hubzilla-notificatie"; $a->strings["Red Matrix Notification"] = "RedMatrix-notificatie";
$a->strings["hubzilla"] = "Hubzilla"; $a->strings["redmatrix"] = "RedMatrix";
$a->strings["Thank You,"] = "Bedankt,"; $a->strings["Thank You,"] = "Bedankt,";
$a->strings["%s Administrator"] = "Beheerder %s"; $a->strings["%s Administrator"] = "Beheerder %s";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>"; $a->strings["%s <!item_type!>"] = "%s <!item_type!>";
@ -382,7 +382,7 @@ $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["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab";
$a->strings["User '%s' deleted"] = "Account '%s' verwijderd"; $a->strings["User '%s' deleted"] = "Account '%s' verwijderd";
$a->strings["Attachments:"] = "Bijlagen:"; $a->strings["Attachments:"] = "Bijlagen:";
$a->strings["Hubzilla event notification:"] = "Notificatie Hubzilla-gebeurtenis:"; $a->strings["Redmatrix event notification:"] = "Notificatie RedMatrix-gebeurtenis:";
$a->strings["prev"] = "vorige"; $a->strings["prev"] = "vorige";
$a->strings["first"] = "eerste"; $a->strings["first"] = "eerste";
$a->strings["last"] = "laatste"; $a->strings["last"] = "laatste";
@ -492,14 +492,14 @@ $a->strings["Login"] = "Inloggen";
$a->strings["Sign in"] = "Inloggen"; $a->strings["Sign in"] = "Inloggen";
$a->strings["%s - click to logout"] = "%s - klik om uit te loggen"; $a->strings["%s - click to logout"] = "%s - klik om uit te loggen";
$a->strings["Remote authentication"] = "Authenticatie op afstand"; $a->strings["Remote authentication"] = "Authenticatie op afstand";
$a->strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw Hubzilla-hub"; $a->strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub";
$a->strings["Home Page"] = "Homepage"; $a->strings["Home Page"] = "Homepage";
$a->strings["Register"] = "Registreren"; $a->strings["Register"] = "Registreren";
$a->strings["Create an account"] = "Maak een account aan"; $a->strings["Create an account"] = "Maak een account aan";
$a->strings["Help"] = "Hulp"; $a->strings["Help"] = "Hulp";
$a->strings["Help and documentation"] = "Hulp en documentatie"; $a->strings["Help and documentation"] = "Hulp en documentatie";
$a->strings["Applications, utilities, links, games"] = "Apps"; $a->strings["Applications, utilities, links, games"] = "Apps";
$a->strings["Search site content"] = "Inhoud van deze Hubzilla-hub doorzoeken"; $a->strings["Search site content"] = "Inhoud van deze RedMatrix-hub doorzoeken";
$a->strings["Directory"] = "Kanalengids"; $a->strings["Directory"] = "Kanalengids";
$a->strings["Channel Directory"] = "Kanalengids"; $a->strings["Channel Directory"] = "Kanalengids";
$a->strings["Matrix"] = "Matrix"; $a->strings["Matrix"] = "Matrix";
@ -627,7 +627,7 @@ $a->strings["View Source"] = "Bron weergeven";
$a->strings["Follow Thread"] = "Conversatie volgen"; $a->strings["Follow Thread"] = "Conversatie volgen";
$a->strings["View Status"] = "Status weergeven"; $a->strings["View Status"] = "Status weergeven";
$a->strings["View Photos"] = "Foto's weergeven"; $a->strings["View Photos"] = "Foto's weergeven";
$a->strings["Matrix Activity"] = "Activiteit in de Hubzilla"; $a->strings["Matrix Activity"] = "Activiteit in de RedMatrix";
$a->strings["Edit Contact"] = "Contact bewerken"; $a->strings["Edit Contact"] = "Contact bewerken";
$a->strings["Send PM"] = "Privébericht verzenden"; $a->strings["Send PM"] = "Privébericht verzenden";
$a->strings["Poke"] = "Aanstoten"; $a->strings["Poke"] = "Aanstoten";
@ -911,7 +911,7 @@ $a->strings["Duplicate room name"] = "Naam chatkanaal bestaat al";
$a->strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; $a->strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal";
$a->strings["Room not found."] = "Chatkanaal niet gevonden"; $a->strings["Room not found."] = "Chatkanaal niet gevonden";
$a->strings["Room is full"] = "Chatkanaal is vol"; $a->strings["Room is full"] = "Chatkanaal is vol";
$a->strings["Some blurb about what to do when you're new here"] = "Welkom op de Hubzilla. Klik op de tab ontdekken of klik rechtsboven op de <a href=\"directory\">kanalengids</a>, om kanalen te vinden. Rechtsboven vind je ook onze <a href=\"directory\">apps</a>, waar je vrijwel alles van de Hubzilla kan vinden. Voor <a href=\"directory\">hulp</a> met de Hubzilla klik je op het vraagteken of als je meer vragen hebt stel je die in het <a href=\"https://zothost.me/channel/support\">supportkanaal</a> (liefst in het Engels)."; $a->strings["Some blurb about what to do when you're new here"] = "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de <a href=\"directory\">kanalengids</a>, om kanalen te vinden. Rechtsboven vind je ook onze <a href=\"directory\">apps</a>, waar je vrijwel alles van de RedMatrix kan vinden. Voor <a href=\"directory\">hulp</a> met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het <a href=\"https://zothost.me/channel/support\">supportkanaal</a> (liefst in het Engels).";
$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["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["Create a new channel"] = "Nieuw kanaal aanmaken";
$a->strings["Current Channel"] = "Huidig kanaal"; $a->strings["Current Channel"] = "Huidig kanaal";
@ -1008,7 +1008,7 @@ $a->strings["This channel frequently or regularly publishes adult content. (Plea
$a->strings["Security and Privacy Settings"] = "Veiligheids- en privacy-instellingen"; $a->strings["Security and Privacy Settings"] = "Veiligheids- en privacy-instellingen";
$a->strings["Your permissions are already configured. Click to view/adjust"] = "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen."; $a->strings["Your permissions are already configured. Click to view/adjust"] = "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen.";
$a->strings["Hide my online presence"] = "Verberg mijn aanwezigheid"; $a->strings["Hide my online presence"] = "Verberg mijn aanwezigheid";
$a->strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaal te zien valt dat je momenteel op de Hubzilla aanwezig bent"; $a->strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaal te zien valt dat je momenteel op de RedMatrix aanwezig bent";
$a->strings["Simple Privacy Settings:"] = "Eenvoudige privacy-instellingen:"; $a->strings["Simple Privacy Settings:"] = "Eenvoudige privacy-instellingen:";
$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Zeer openbaar <em>(kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)</em>"; $a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Zeer openbaar <em>(kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)</em>";
$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Normaal <em>(standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)</em>"; $a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Normaal <em>(standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)</em>";
@ -1102,7 +1102,7 @@ $a->strings["URL for photo of thing (optional)"] = "URL van foto van ding (optio
$a->strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; $a->strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen";
$a->strings["Item not available."] = "Item is niet aanwezig."; $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["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s";
$a->strings["Hubzilla - &quot;The Network&quot;"] = "Hubzilla - &quot;The Network&quot;"; $a->strings["Red Matrix - &quot;The Network&quot;"] = "RedMatrix - &quot;The Network&quot;";
$a->strings["Welcome to %s"] = "Welkom op %s"; $a->strings["Welcome to %s"] = "Welkom op %s";
$a->strings["Image uploaded but image cropping failed."] = "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. "; $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["Image resize failed."] = "Afbeelding kon niet van grootte veranderd worden.";
@ -1125,8 +1125,8 @@ $a->strings["Invalid item."] = "Ongeldig item.";
$a->strings["Channel not found."] = "Kanaal niet gevonden."; $a->strings["Channel not found."] = "Kanaal niet gevonden.";
$a->strings["Page not found."] = "Pagina niet gevonden."; $a->strings["Page not found."] = "Pagina niet gevonden.";
$a->strings["Like/Dislike"] = "Leuk/niet leuk"; $a->strings["Like/Dislike"] = "Leuk/niet leuk";
$a->strings["This action is restricted to members."] = "Deze actie kan alleen door mensen met een Hubzilla-account worden uitgevoerd."; $a->strings["This action is restricted to members."] = "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd.";
$a->strings["Please <a href=\"rmagic\">login with your Hubzilla ID</a> or <a href=\"register\">register as a new Redmatrix.member</a> to continue."] = "Je dient <a href=\"rmagic\">in te loggen met je Hubzilla-account</a> of <a href=\"register\">een nieuw Hubzilla-account te registreren</a> om verder te kunnen gaan."; $a->strings["Please <a href=\"rmagic\">login with your RedMatrix ID</a> or <a href=\"register\">register as a new RedMatrix member</a> to continue."] = "Je dient <a href=\"rmagic\">in te loggen met je RedMatrix-account</a> of <a href=\"register\">een nieuw RedMatrix-account te registreren</a> om verder te kunnen gaan.";
$a->strings["Invalid request."] = "Ongeldig verzoek"; $a->strings["Invalid request."] = "Ongeldig verzoek";
$a->strings["thing"] = "ding"; $a->strings["thing"] = "ding";
$a->strings["Channel unavailable."] = "Kanaal niet beschikbaar."; $a->strings["Channel unavailable."] = "Kanaal niet beschikbaar.";
@ -1165,7 +1165,7 @@ $a->strings["Title:"] = "Titel:";
$a->strings["Share this event"] = "Deel deze gebeurtenis"; $a->strings["Share this event"] = "Deel deze gebeurtenis";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s";
$a->strings["Public Sites"] = "Openbare hubs"; $a->strings["Public Sites"] = "Openbare hubs";
$a->strings["The listed sites allow public registration into the Hubzilla. 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 <strong>may</strong> provide additional details."] = "Op de hier weergegeven hubs kan iedereen zich voor de Hubzilla 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. <strong>Mogelijk</strong> wordt hierover op de hub zelf meer informatie gegeven."; $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 <strong>may</strong> 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. <strong>Mogelijk</strong> wordt hierover op de hub zelf meer informatie gegeven.";
$a->strings["Rate this hub"] = "Beoordeel deze hub"; $a->strings["Rate this hub"] = "Beoordeel deze hub";
$a->strings["Site URL"] = "URL hub"; $a->strings["Site URL"] = "URL hub";
$a->strings["Access Type"] = "Toegangstype"; $a->strings["Access Type"] = "Toegangstype";
@ -1175,7 +1175,7 @@ $a->strings["View hub ratings"] = "Bekijk hubbeoordelingen";
$a->strings["Rate"] = "Beoordeel"; $a->strings["Rate"] = "Beoordeel";
$a->strings["View ratings"] = "Bekijk beoordelingen"; $a->strings["View ratings"] = "Bekijk beoordelingen";
$a->strings["Edit post"] = "Bericht bewerken"; $a->strings["Edit post"] = "Bericht bewerken";
$a->strings["Hubzilla channel"] = "Hubzilla-kanaal"; $a->strings["RedMatrix channel"] = "RedMatrix-kanaal";
$a->strings["Collection created."] = "Collectie aangemaakt"; $a->strings["Collection created."] = "Collectie aangemaakt";
$a->strings["Could not create collection."] = "Collectie kon niet aangemaakt worden"; $a->strings["Could not create collection."] = "Collectie kon niet aangemaakt worden";
$a->strings["Collection updated."] = "Collectie bijgewerkt."; $a->strings["Collection updated."] = "Collectie bijgewerkt.";
@ -1192,17 +1192,17 @@ $a->strings["Version %s"] = "Versie %s";
$a->strings["Installed plugins/addons/apps:"] = "Ingeschakelde plug-ins/add-ons/apps:"; $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["No installed plugins/addons/apps"] = "Geen ingeschakelde plug-ins/add-ons/apps";
$a->strings["Red"] = "Red"; $a->strings["Red"] = "Red";
$a->strings["This is a hub of hubzilla - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een hub van de Hubzilla - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy."; $a->strings["This is a hub of redmatrix - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy.";
$a->strings["Tag: "] = "Tag: "; $a->strings["Tag: "] = "Tag: ";
$a->strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; $a->strings["Last background fetch: "] = "Meest recente achtergrond-fetch:";
$a->strings["Running at web location"] = "Draaiend op weblocatie"; $a->strings["Running at web location"] = "Draaiend op weblocatie";
$a->strings["Please visit <a href=\"https://redmatrix.me\">redmatrix.me</a> to learn more about the Hubzilla."] = "Bezoek <a href=\"https://redmatrix.me\">Redmatrix.me</a> om meer over de Hubzilla te leren."; $a->strings["Please visit <a href=\"https://redmatrix.me\">redmatrix.me</a> to learn more about the Red Matrix."] = "Bezoek <a href=\"https://redmatrix.me\">RedMatrix.me</a> om meer over de RedMatrix te leren.";
$a->strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; $a->strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek";
$a->strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"hubzilla\" at librelist - dot com"; $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["Site Administrators"] = "Hubbeheerders: ";
$a->strings["Help:"] = "Hulp:"; $a->strings["Help:"] = "Hulp:";
$a->strings["Not Found"] = "Niet gevonden"; $a->strings["Not Found"] = "Niet gevonden";
$a->strings["Hubzilla Server - Setup"] = "Hubzilla Server - Setup"; $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 database."] = "Could not connect to database.";
$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; $a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue.";
$a->strings["Could not create table."] = "Could not create table."; $a->strings["Could not create table."] = "Could not create table.";
@ -1212,7 +1212,7 @@ $a->strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the fi
$a->strings["System check"] = "System check"; $a->strings["System check"] = "System check";
$a->strings["Check again"] = "Check again"; $a->strings["Check again"] = "Check again";
$a->strings["Database connection"] = "Database connection"; $a->strings["Database connection"] = "Database connection";
$a->strings["In order to install Hubzilla we need to know how to connect to your database."] = "In order to install Hubzilla we need to know how to connect to your database."; $a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "In order to install RedMatrix we need to know how to connect to your database.";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; $a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings.";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; $a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing.";
$a->strings["Database Server Name"] = "Database Server Name"; $a->strings["Database Server Name"] = "Database Server Name";
@ -1311,7 +1311,7 @@ $a->strings["Finding: "] = "Zoeken naar: ";
$a->strings["Block Name"] = "Bloknaam"; $a->strings["Block Name"] = "Bloknaam";
$a->strings["Block Title"] = "Bloktitel"; $a->strings["Block Title"] = "Bloktitel";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s"; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s";
$a->strings["Hubzilla - Guests: Username: {your email address}, Password: +++"] = "Hubzilla - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++"; $a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++";
$a->strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; $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["Album not found."] = "Album niet gevonden.";
$a->strings["Delete Album"] = "Verwijder album"; $a->strings["Delete Album"] = "Verwijder album";
@ -1434,7 +1434,7 @@ $a->strings["Item is not editable"] = "Item is niet te bewerken";
$a->strings["Delete item?"] = "Item verwijderen?"; $a->strings["Delete item?"] = "Item verwijderen?";
$a->strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; $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["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres.";
$a->strings["Please join us on Red"] = "Uitnodiging voor de Hubzilla"; $a->strings["Please join us on Red"] = "Uitnodiging voor de RedMatrix";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; $a->strings["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["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt.";
$a->strings["%d message sent."] = array( $a->strings["%d message sent."] = array(
@ -1445,10 +1445,10 @@ $a->strings["You have no more invitations available"] = "Je hebt geen uitnodigin
$a->strings["Send invitations"] = "Uitnodigingen verzenden"; $a->strings["Send invitations"] = "Uitnodigingen verzenden";
$a->strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; $a->strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:";
$a->strings["Your message:"] = "Jouw bericht:"; $a->strings["Your message:"] = "Jouw bericht:";
$a->strings["Please join my community on Hubzilla."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de Hubzilla te vergezellen. Lees meer over de Hubzilla op https://redmatrix.me."; $a->strings["Please join my community on RedMatrix."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me.";
$a->strings["You will need to supply this invitation code: "] = "Je moet deze uitnodigingscode opgeven:"; $a->strings["You will need to supply this invitation code: "] = "Je moet deze uitnodigingscode opgeven:";
$a->strings["1. Register at any Hubzilla location (they are all inter-connected)"] = "1. Registreer je op een willekeurige Hubzilla-hub (ze zijn allemaal onderling met elkaar verbonden):"; $a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):";
$a->strings["2. Enter my Hubzilla network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:"; $a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:";
$a->strings["or visit "] = "of bezoek "; $a->strings["or visit "] = "of bezoek ";
$a->strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; $a->strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]";
$a->strings["Location not found."] = "Locatie niet gevonden."; $a->strings["Location not found."] = "Locatie niet gevonden.";
@ -1602,7 +1602,7 @@ $a->strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toe
$a->strings["Menu Item Permissions"] = "Permissies menu-item"; $a->strings["Menu Item Permissions"] = "Permissies menu-item";
$a->strings["Link Name"] = "Linknaam"; $a->strings["Link Name"] = "Linknaam";
$a->strings["Link Target"] = "Linkdoel"; $a->strings["Link Target"] = "Linkdoel";
$a->strings["Use Hubzilla magic-auth if available"] = "Gebruik Hubzilla' magic-auth wanneer beschikbaar"; $a->strings["Use RedMatrix magic-auth if available"] = "Gebruik RedMatrix' magic-auth wanneer beschikbaar";
$a->strings["Open link in new window"] = "Open link in nieuw venster"; $a->strings["Open link in new window"] = "Open link in nieuw venster";
$a->strings["Order in list"] = "Volgorde in lijst"; $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["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht";
@ -1679,20 +1679,20 @@ $a->strings["Site settings updated."] = "Hub-instellingen bijgewerkt.";
$a->strings["experimental"] = "experimenteel"; $a->strings["experimental"] = "experimenteel";
$a->strings["unsupported"] = "Niet ondersteund"; $a->strings["unsupported"] = "Niet ondersteund";
$a->strings["Yes - with approval"] = "Ja - met goedkeuring"; $a->strings["Yes - with approval"] = "Ja - met goedkeuring";
$a->strings["My site is not a public server"] = "Mijn Hubzilla-hub is niet openbaar"; $a->strings["My site is not a public server"] = "Mijn RedMatrix-hub is niet openbaar";
$a->strings["My site has paid access only"] = "Mijn Hubzilla-hub kent alleen betaalde toegang"; $a->strings["My site has paid access only"] = "Mijn RedMatrix-hub kent alleen betaalde toegang";
$a->strings["My site has free access only"] = "Mijn Hubzilla-hub kent alleen gratis 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 Hubzilla-hub biedt gratis accounts aan met betaalde uitbreidingen als optie"; $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["Registration"] = "Registratie";
$a->strings["File upload"] = "Bestand uploaden"; $a->strings["File upload"] = "Bestand uploaden";
$a->strings["Policies"] = "Beleid"; $a->strings["Policies"] = "Beleid";
$a->strings["Site name"] = "Naam van deze Hubzilla-hub"; $a->strings["Site name"] = "Naam van deze RedMatrix-hub";
$a->strings["Banner/Logo"] = "Banner/logo"; $a->strings["Banner/Logo"] = "Banner/logo";
$a->strings["Administrator Information"] = "Informatie over de beheerder van deze hub"; $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["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 language"] = "Standaardtaal";
$a->strings["System theme"] = "Standaardthema"; $a->strings["System theme"] = "Standaardthema";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standaardthema voor Hubzilla-hub (kan door lid veranderd worden) - <a href='#' id='cnftheme'>verander thema-instellingen</a>"; $a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standaardthema voor RedMatrix-hub (kan door lid veranderd worden) - <a href='#' id='cnftheme'>verander thema-instellingen</a>";
$a->strings["Mobile system theme"] = "Standaardthema voor mobiel"; $a->strings["Mobile system theme"] = "Standaardthema voor mobiel";
$a->strings["Theme for mobile devices"] = "Thema voor mobiele apparaten"; $a->strings["Theme for mobile devices"] = "Thema voor mobiele apparaten";
$a->strings["Enable Diaspora Protocol"] = "Diaspora-protocol inschakelen"; $a->strings["Enable Diaspora Protocol"] = "Diaspora-protocol inschakelen";
@ -1702,13 +1702,13 @@ $a->strings["(Heavy system resource usage)"] = "(sterk negatieve invloed op syst
$a->strings["Maximum image size"] = "Maximale grootte van afbeeldingen"; $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["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 nieuwe accounts toe?"; $a->strings["Does this site allow new member registration?"] = "Staat deze hub nieuwe accounts toe?";
$a->strings["Which best describes the types of account offered by this hub?"] = "Wat voor soort accounts biedt deze Hubzilla-hub aan? Kies wat het meest in de buurt komt."; $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"] = "Tekst tijdens registratie"; $a->strings["Register text"] = "Tekst tijdens registratie";
$a->strings["Will be displayed prominently on the registration page."] = "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond."; $a->strings["Will be displayed prominently on the registration page."] = "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond.";
$a->strings["Accounts abandoned after x days"] = "Accounts als verlaten beschouwen na zoveel aantal dagen:"; $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["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["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 Hubzilla-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten."; $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["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 waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten."; $a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten.";
$a->strings["Not allowed email domains"] = "Niet toegestane e-maildomeinen"; $a->strings["Not allowed email domains"] = "Niet toegestane e-maildomeinen";
@ -1722,7 +1722,7 @@ $a->strings["Check to force all profiles on this site to be listed in the site d
$a->strings["Disable discovery tab"] = "Ontdekkingstab"; $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["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["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 bezoekers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze Hubzilla-hub als homepage gebruikt)"; $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 bezoekers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze RedMatrix-hub als homepage gebruikt)";
$a->strings["Proxy user"] = "Gebruikersnaam proxy"; $a->strings["Proxy user"] = "Gebruikersnaam proxy";
$a->strings["Proxy URL"] = "URL proxy"; $a->strings["Proxy URL"] = "URL proxy";
$a->strings["Network timeout"] = "Netwerktimeout"; $a->strings["Network timeout"] = "Netwerktimeout";
@ -1815,7 +1815,7 @@ $a->strings["Log settings updated."] = "Logboek-instellingen bijgewerkt.";
$a->strings["Clear"] = "Leegmaken"; $a->strings["Clear"] = "Leegmaken";
$a->strings["Debugging"] = "Debuggen"; $a->strings["Debugging"] = "Debuggen";
$a->strings["Log file"] = "Logbestand"; $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 Hubzilla-installatie."; $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["Log level"] = "Logniveau";
$a->strings["New Profile Field"] = "Nieuw profielveld"; $a->strings["New Profile Field"] = "Nieuw profielveld";
$a->strings["Field nickname"] = "Bijnaam voor veld"; $a->strings["Field nickname"] = "Bijnaam voor veld";
@ -1831,19 +1831,19 @@ $a->strings["Unable to find your hub."] = "Niet in staat om je hub te vinden";
$a->strings["Post successful."] = "Verzenden bericht geslaagd."; $a->strings["Post successful."] = "Verzenden bericht geslaagd.";
$a->strings["Edit Block"] = "Blok bewerken"; $a->strings["Edit Block"] = "Blok bewerken";
$a->strings["Delete block?"] = "Blok verwijderen"; $a->strings["Delete block?"] = "Blok verwijderen";
$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze Hubzilla-hub bereikt. Probeer het morgen (UTC) nogmaals."; $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["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["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."; $a->strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies.";
$a->strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze Hubzilla-hub."; $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["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 Hubzilla-hub moeten eerst worden goedgekeurd."; $a->strings["Registration on this site/hub is by approval only."] = "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd.";
$a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "<a href=\"pubsites\">Registreer op een andere Hubzilla-hub</a>"; $a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "<a href=\"pubsites\">Registreer op een andere RedMatrix-hub</a>";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze Hubzilla-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."; $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["Terms of Service"] = "Gebruiksvoorwaarden";
$a->strings["I accept the %s for this website"] = "Ik accepteer de %s van deze Hubzilla-hub"; $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 Hubzilla-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 Hubzilla-hub kan alleen op uitnodiging."; $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["Please enter your invitation code"] = "Vul jouw uitnodigingscode in";
$a->strings["Your email address"] = "Jouw e-mailadres"; $a->strings["Your email address"] = "Jouw e-mailadres";
$a->strings["Choose a password"] = "Geef een wachtwoord op"; $a->strings["Choose a password"] = "Geef een wachtwoord op";
@ -1851,11 +1851,11 @@ $a->strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op";
$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; $a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd.";
$a->strings["Remove This Account"] = "Verwijder dit account"; $a->strings["Remove This Account"] = "Verwijder dit account";
$a->strings["WARNING: "] = "WAARSCHUWING: "; $a->strings["WARNING: "] = "WAARSCHUWING: ";
$a->strings["This account and all its channels will be completely removed from the network. "] = "Dit account en al zijn kanalen worden volledig uit het Hubzilla-netwerk verwijderd."; $a->strings["This account and all its channels will be completely removed from the network. "] = "Dit account en al zijn kanalen worden volledig uit het RedMatrix-netwerk verwijderd.";
$a->strings["This action is permanent and can not be undone!"] = "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!"; $a->strings["This action is permanent and can not be undone!"] = "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!";
$a->strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; $a->strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:";
$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het Hubzilla-netwerk verwijderen"; $a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het RedMatrix-netwerk verwijderen";
$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het Hubzilla-netwerk verwijderd."; $a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het RedMatrix-netwerk verwijderd.";
$a->strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; $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["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["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal.";
@ -1894,9 +1894,9 @@ $a->strings["Total votes"] = "Totaal aantal stemmen";
$a->strings["Average Rating"] = "Gemiddelde waardering"; $a->strings["Average Rating"] = "Gemiddelde waardering";
$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["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["Remove This Channel"] = "Verwijder dit kanaal";
$a->strings["This channel will be completely removed from the network. "] = "Dit kanaal wordt volledig uit het Hubzilla-netwerk verwijderd."; $a->strings["This channel will be completely removed from the network. "] = "Dit kanaal wordt volledig uit het RedMatrix-netwerk verwijderd.";
$a->strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het Hubzilla-netwerk verwijderen"; $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 Hubzilla-netwerk verwijderd."; $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["is now connected to"] = "is nu verbonden met"; $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["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie.";
$a->strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; $a->strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar";
@ -2074,7 +2074,7 @@ $a->strings["Right offset of the section element"] = "Rechter offset van het sec
$a->strings["Section width"] = "Breedte van sectie"; $a->strings["Section width"] = "Breedte van sectie";
$a->strings["Left offset of the aside"] = "Rechter offset van aside (zijbalk)"; $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["Right offset of the aside element"] = "Rechter offset van het aside-element";
$a->strings["Light (Hubzilla default)"] = "Light (Hubzilla-standaard)"; $a->strings["Light (Red Matrix default)"] = "Light (RedMatrix-standaard)";
$a->strings["Select scheme"] = "Kies schema van thema"; $a->strings["Select scheme"] = "Kies schema van thema";
$a->strings["Narrow navbar"] = "Smalle navigatiebalk"; $a->strings["Narrow navbar"] = "Smalle navigatiebalk";
$a->strings["Navigation bar background color"] = "Achtergrondkleur navigatiebalk"; $a->strings["Navigation bar background color"] = "Achtergrondkleur navigatiebalk";
@ -2108,7 +2108,7 @@ $a->strings["Set size of conversation author photo"] = "Grootte profielfoto's va
$a->strings["Set size of followup author photos"] = "Grootte profielfoto's van reacties instellen"; $a->strings["Set size of followup author photos"] = "Grootte profielfoto's van reacties instellen";
$a->strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek."; $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["Update Error at %s"] = "Update-fout op %s";
$a->strings["Create an account to access services and applications within the Hubzilla"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen van de Hubzilla"; $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["Password"] = "Wachtwoord";
$a->strings["Remember me"] = "Aangemeld blijven"; $a->strings["Remember me"] = "Aangemeld blijven";
$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; $a->strings["Forgot your password?"] = "Wachtwoord vergeten?";

View File

@ -1,10 +1,10 @@
Hey, Hey,
I'm the Hubzilla hub at {{$sitename}}; I'm the RedMatrix hub at {{$sitename}};
The Red atrix developers released update {{$update}} recently, The Red atrix developers released update {{$update}} recently,
but when I tried to install it, something went terribly wrong. but when I tried to install it, something went terribly wrong.
This needs to be fixed soon and it requires human intervention. This needs to be fixed soon and it requires human intervention.
Please contact a Hubzilla developer if you can not figure out how to Please contact a RedMatrix developer if you can not figure out how to
fix it on your own. My database might be invalid. fix it on your own. My database might be invalid.
The error message is '{{$error}}'. The error message is '{{$error}}'.