Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Michael Vogel 2013-09-15 19:39:22 +02:00
commit 34d0eb709b
24 changed files with 700 additions and 823 deletions

View File

@ -616,7 +616,8 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal
$Text = preg_replace_callback("/\[share(.*?)\](.*?)\[\/share\]/ism","bb_ShareAttributesSimple2",$Text); $Text = preg_replace_callback("/\[share(.*?)\](.*?)\[\/share\]/ism","bb_ShareAttributesSimple2",$Text);
$Text = preg_replace("/\[crypt\](.*?)\[\/crypt\]/ism",'<br/><img src="' .$a->get_baseurl() . '/images/lock_icon.gif" alt="' . t('Encrypted content') . '" title="' . t('Encrypted content') . '" /><br />', $Text); $Text = preg_replace("/\[crypt\](.*?)\[\/crypt\]/ism",'<br/><img src="' .$a->get_baseurl() . '/images/lock_icon.gif" alt="' . t('Encrypted content') . '" title="' . t('Encrypted content') . '" /><br />', $Text);
$Text = preg_replace("/\[crypt=(.*?)\](.*?)\[\/crypt\]/ism",'<br/><img src="' .$a->get_baseurl() . '/images/lock_icon.gif" alt="' . t('Encrypted content') . '" title="' . '$1' . ' ' . t('Encrypted content') . '" /><br />', $Text); $Text = preg_replace("/\[crypt(.*?)\](.*?)\[\/crypt\]/ism",'<br/><img src="' .$a->get_baseurl() . '/images/lock_icon.gif" alt="' . t('Encrypted content') . '" title="' . '$1' . ' ' . t('Encrypted content') . '" /><br />', $Text);
//$Text = preg_replace("/\[crypt=(.*?)\](.*?)\[\/crypt\]/ism",'<br/><img src="' .$a->get_baseurl() . '/images/lock_icon.gif" alt="' . t('Encrypted content') . '" title="' . '$1' . ' ' . t('Encrypted content') . '" /><br />', $Text);
// Try to Oembed // Try to Oembed

View File

@ -4,8 +4,10 @@
// curl wrapper. If binary flag is true, return binary // curl wrapper. If binary flag is true, return binary
// results. // results.
// Set the cookiejar argument to a string (e.g. "/tmp/friendica-cookies.txt")
// to preserve cookies from one request to the next.
if(! function_exists('fetch_url')) { if(! function_exists('fetch_url')) {
function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_content=Null) { function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_content=Null, $cookiejar = 0) {
$stamp1 = microtime(true); $stamp1 = microtime(true);
@ -17,6 +19,10 @@ function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_
@curl_setopt($ch, CURLOPT_HEADER, true); @curl_setopt($ch, CURLOPT_HEADER, true);
if($cookiejar) {
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookiejar);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookiejar);
}
// These settings aren't needed. We're following the location already. // These settings aren't needed. We're following the location already.
// @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); // @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
@ -96,7 +102,7 @@ function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_
$newurl = $old_location_info["scheme"]."://".$old_location_info["host"].$newurl; $newurl = $old_location_info["scheme"]."://".$old_location_info["host"].$newurl;
if (filter_var($newurl, FILTER_VALIDATE_URL)) { if (filter_var($newurl, FILTER_VALIDATE_URL)) {
$redirects++; $redirects++;
return fetch_url($newurl,$binary,$redirects,$timeout); return fetch_url($newurl,$binary,$redirects,$timeout,$accept_content,$cookiejar);
} }
} }

View File

@ -120,12 +120,26 @@ function import_account(&$a, $file) {
notice(sprintf(t("User '%s' already exists on this server!"), $account['user']['nickname'])); notice(sprintf(t("User '%s' already exists on this server!"), $account['user']['nickname']));
return; return;
} }
// check if username matches deleted account
$r = q("SELECT id FROM userd WHERE username='%s'", $account['user']['nickname']);
if ($r === false) {
logger("uimport:check nickname : ERROR : " . last_error(), LOGGER_NORMAL);
notice(t('Error! Cannot check nickname'));
return;
}
if (count($r) > 0) {
notice(sprintf(t("User '%s' already exists on this server!"), $account['user']['nickname']));
return;
}
$oldbaseurl = $account['baseurl']; $oldbaseurl = $account['baseurl'];
$newbaseurl = $a->get_baseurl(); $newbaseurl = $a->get_baseurl();
$olduid = $account['user']['uid']; $olduid = $account['user']['uid'];
unset($account['user']['uid']); unset($account['user']['uid']);
unset($account['user']['account_expired']);
unset($account['user']['account_expires_on']);
unset($account['user']['expire_notification_sent']);
foreach ($account['user'] as $k => &$v) { foreach ($account['user'] as $k => &$v) {
$v = str_replace($oldbaseurl, $newbaseurl, $v); $v = str_replace($oldbaseurl, $newbaseurl, $v);
} }

View File

@ -60,7 +60,13 @@ function create_user($arr) {
$openid->returnUrl = $a->get_baseurl() . '/openid'; $openid->returnUrl = $a->get_baseurl() . '/openid';
$openid->required = array('namePerson/friendly', 'contact/email', 'namePerson'); $openid->required = array('namePerson/friendly', 'contact/email', 'namePerson');
$openid->optional = array('namePerson/first','media/image/aspect11','media/image/default'); $openid->optional = array('namePerson/first','media/image/aspect11','media/image/default');
goaway($openid->authUrl()); try {
$authurl = $openid->authUrl();
} catch (Exception $e){
$result['message'] .= t("We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."). EOL . EOL . t("The error message was:") . $e->getMessage() . EOL;
return $result;
}
goaway($authurl);
// NOTREACHED // NOTREACHED
} }

View File

@ -57,7 +57,7 @@ function friendica_content(&$a) {
$o .= t('Please visit <a href="http://friendica.com">Friendica.com</a> to learn more about the Friendica project.') . '</p><p>'; $o .= t('Please visit <a href="http://friendica.com">Friendica.com</a> to learn more about the Friendica project.') . '</p><p>';
$o .= t('Bug reports and issues: please visit') . ' ' . '<a href="http://bugs.friendica.com">Bugs.Friendica.com</a></p><p>'; $o .= t('Bug reports and issues: please visit') . ' ' . '<a href="https://github.com/friendica/friendica/issues?state=open">the bucktracker at github</a></p><p>';
$o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com') . '</p>'; $o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com') . '</p>';
$o .= '<p></p>'; $o .= '<p></p>';

View File

@ -278,7 +278,9 @@ function register_content(&$a) {
'$nickname' => $nickname, '$nickname' => $nickname,
'$license' => $license, '$license' => $license,
'$sitename' => $a->get_hostname(), '$sitename' => $a->get_hostname(),
'$importh' => t('Import'),
'$importt' => t('Import your profile to this friendica instance'),
)); ));
return $o; return $o;

File diff suppressed because it is too large Load Diff

View File

@ -8,16 +8,16 @@ function string_plural_select_nl($n){
$a->strings["Profile"] = "Profiel"; $a->strings["Profile"] = "Profiel";
$a->strings["Full Name:"] = "Volledige Naam:"; $a->strings["Full Name:"] = "Volledige Naam:";
$a->strings["Gender:"] = "Geslacht:"; $a->strings["Gender:"] = "Geslacht:";
$a->strings["j F, Y"] = ""; $a->strings["j F, Y"] = "F j Y";
$a->strings["j F"] = ""; $a->strings["j F"] = "F j";
$a->strings["Birthday:"] = "Verjaardag:"; $a->strings["Birthday:"] = "Verjaardag:";
$a->strings["Age:"] = "Leeftijd:"; $a->strings["Age:"] = "Leeftijd:";
$a->strings["Status:"] = "Status:"; $a->strings["Status:"] = "Status:";
$a->strings["for %1\$d %2\$s"] = ""; $a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s";
$a->strings["Sexual Preference:"] = "Seksuele Voorkeur:"; $a->strings["Sexual Preference:"] = "Seksuele Voorkeur:";
$a->strings["Homepage:"] = "Thuispagina:"; $a->strings["Homepage:"] = "Homepagina:";
$a->strings["Hometown:"] = "Thuisstad:"; $a->strings["Hometown:"] = "Woonplaats:";
$a->strings["Tags:"] = ""; $a->strings["Tags:"] = "Labels:";
$a->strings["Political Views:"] = "Politieke standpunten:"; $a->strings["Political Views:"] = "Politieke standpunten:";
$a->strings["Religion:"] = "Religie:"; $a->strings["Religion:"] = "Religie:";
$a->strings["About:"] = "Over:"; $a->strings["About:"] = "Over:";
@ -38,11 +38,11 @@ $a->strings["Currently Male"] = "Momenteel mannelijk";
$a->strings["Currently Female"] = "Momenteel vrouwelijk"; $a->strings["Currently Female"] = "Momenteel vrouwelijk";
$a->strings["Mostly Male"] = "Meestal mannelijk"; $a->strings["Mostly Male"] = "Meestal mannelijk";
$a->strings["Mostly Female"] = "Meestal vrouwelijk"; $a->strings["Mostly Female"] = "Meestal vrouwelijk";
$a->strings["Transgender"] = ""; $a->strings["Transgender"] = "Transgender";
$a->strings["Intersex"] = ""; $a->strings["Intersex"] = "Interseksueel";
$a->strings["Transsexual"] = "Transseksueel"; $a->strings["Transsexual"] = "Transseksueel";
$a->strings["Hermaphrodite"] = "Hermafrodiet"; $a->strings["Hermaphrodite"] = "Hermafrodiet";
$a->strings["Neuter"] = ""; $a->strings["Neuter"] = "Genderneutraal";
$a->strings["Non-specific"] = "Niet-specifiek"; $a->strings["Non-specific"] = "Niet-specifiek";
$a->strings["Other"] = "Anders"; $a->strings["Other"] = "Anders";
$a->strings["Undecided"] = "Onbeslist"; $a->strings["Undecided"] = "Onbeslist";
@ -55,7 +55,7 @@ $a->strings["Bisexual"] = "Biseksueel";
$a->strings["Autosexual"] = "Autoseksueel"; $a->strings["Autosexual"] = "Autoseksueel";
$a->strings["Abstinent"] = "Onthouder"; $a->strings["Abstinent"] = "Onthouder";
$a->strings["Virgin"] = "Maagd"; $a->strings["Virgin"] = "Maagd";
$a->strings["Deviant"] = ""; $a->strings["Deviant"] = "Afwijkend";
$a->strings["Fetish"] = ""; $a->strings["Fetish"] = "";
$a->strings["Oodles"] = ""; $a->strings["Oodles"] = "";
$a->strings["Nonsexual"] = "Niet seksueel"; $a->strings["Nonsexual"] = "Niet seksueel";
@ -65,7 +65,7 @@ $a->strings["Available"] = "Beschikbaar";
$a->strings["Unavailable"] = "Onbeschikbaar"; $a->strings["Unavailable"] = "Onbeschikbaar";
$a->strings["Has crush"] = "Verliefd"; $a->strings["Has crush"] = "Verliefd";
$a->strings["Infatuated"] = ""; $a->strings["Infatuated"] = "";
$a->strings["Dating"] = ""; $a->strings["Dating"] = "Aan het daten";
$a->strings["Unfaithful"] = "Ontrouw"; $a->strings["Unfaithful"] = "Ontrouw";
$a->strings["Sex Addict"] = "Seksverslaafd"; $a->strings["Sex Addict"] = "Seksverslaafd";
$a->strings["Friends"] = "Vrienden"; $a->strings["Friends"] = "Vrienden";
@ -91,18 +91,18 @@ $a->strings["It's complicated"] = "Het is gecompliceerd";
$a->strings["Don't care"] = "Kan me niet schelen"; $a->strings["Don't care"] = "Kan me niet schelen";
$a->strings["Ask me"] = "Vraag me"; $a->strings["Ask me"] = "Vraag me";
$a->strings["stopped following"] = ""; $a->strings["stopped following"] = "";
$a->strings["Poke"] = ""; $a->strings["Poke"] = "Por";
$a->strings["View Status"] = "Bekijk status"; $a->strings["View Status"] = "Bekijk status";
$a->strings["View Profile"] = "Bekijk profiel"; $a->strings["View Profile"] = "Bekijk profiel";
$a->strings["View Photos"] = "Bekijk foto's"; $a->strings["View Photos"] = "Bekijk foto's";
$a->strings["Network Posts"] = ""; $a->strings["Network Posts"] = "Netwerkberichten";
$a->strings["Edit Contact"] = ""; $a->strings["Edit Contact"] = "Bewerk contact";
$a->strings["Send PM"] = ""; $a->strings["Send PM"] = "Stuur een privébericht";
$a->strings["Image/photo"] = ""; $a->strings["Image/photo"] = "Afbeelding/foto";
$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = ""; $a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> schreef het volgende <a href=\"%s\" target=\"external-link\">bericht</a>";
$a->strings["$1 wrote:"] = "$1 schreef:"; $a->strings["$1 wrote:"] = "$1 schreef:";
$a->strings["Encrypted content"] = ""; $a->strings["Encrypted content"] = "Versleutelde inhoud";
$a->strings["Visible to everybody"] = ""; $a->strings["Visible to everybody"] = "Zichtbaar voor iedereen";
$a->strings["show"] = "tonen"; $a->strings["show"] = "tonen";
$a->strings["don't show"] = "Niet tonen"; $a->strings["don't show"] = "Niet tonen";
$a->strings["Logged out."] = "Uitgelogd."; $a->strings["Logged out."] = "Uitgelogd.";
@ -120,12 +120,12 @@ $a->strings["No compatible communication protocols or feeds were discovered."] =
$a->strings["The profile address specified does not provide adequate information."] = ""; $a->strings["The profile address specified does not provide adequate information."] = "";
$a->strings["An author or name was not found."] = ""; $a->strings["An author or name was not found."] = "";
$a->strings["No browser URL could be matched to this address."] = ""; $a->strings["No browser URL could be matched to this address."] = "";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl identiteitsadres komt niet overeen met een gekend protocol of e-mail contact."; $a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact.";
$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mail controle af te dwingen."; $a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = ""; $a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = ""; $a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
$a->strings["Unable to retrieve contact information."] = ""; $a->strings["Unable to retrieve contact information."] = "";
$a->strings["following"] = ""; $a->strings["following"] = "volgend";
$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["Invalid OpenID url"] = "Ongeldige OpenID url"; $a->strings["Invalid OpenID url"] = "Ongeldige OpenID url";
@ -134,7 +134,7 @@ $a->strings["Please use a shorter name."] = "gebruik een kortere naam";
$a->strings["Name too short."] = "Naam te kort"; $a->strings["Name too short."] = "Naam te kort";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."; $a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn.";
$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan."; $a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan.";
$a->strings["Not a valid email address."] = "Geen geldig e-mail adres"; $a->strings["Not a valid email address."] = "Geen geldig e-mailadres.";
$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken."; $a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen."; $a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen.";
$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere."; $a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere.";
@ -162,15 +162,15 @@ $a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Email"] = "E-mail"; $a->strings["Email"] = "E-mail";
$a->strings["Diaspora"] = "Diaspora"; $a->strings["Diaspora"] = "Diaspora";
$a->strings["Facebook"] = "Facebook"; $a->strings["Facebook"] = "Facebook";
$a->strings["Zot!"] = ""; $a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "Linkedln"; $a->strings["LinkedIn"] = "Linkedln";
$a->strings["XMPP/IM"] = "XMPP/IM"; $a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "Myspace"; $a->strings["MySpace"] = "Myspace";
$a->strings["Google+"] = "Google+"; $a->strings["Google+"] = "Google+";
$a->strings["Add New Contact"] = "Nieuw Contact toevoegen"; $a->strings["Add New Contact"] = "Nieuw Contact toevoegen";
$a->strings["Enter address or web location"] = ""; $a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"; $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara";
$a->strings["Connect"] = ""; $a->strings["Connect"] = "Verbinden";
$a->strings["%d invitation available"] = array( $a->strings["%d invitation available"] = array(
0 => "%d uitnodiging beschikbaar", 0 => "%d uitnodiging beschikbaar",
1 => "%d uitnodigingen beschikbaar", 1 => "%d uitnodigingen beschikbaar",
@ -196,7 +196,7 @@ $a->strings["%d contact in common"] = array(
$a->strings["show more"] = "toon meer"; $a->strings["show more"] = "toon meer";
$a->strings[" on Last.fm"] = " op Last.fm"; $a->strings[" on Last.fm"] = " op Last.fm";
$a->strings["view full size"] = "Volledig formaat"; $a->strings["view full size"] = "Volledig formaat";
$a->strings["Miscellaneous"] = ""; $a->strings["Miscellaneous"] = "Diversen";
$a->strings["year"] = "jaar"; $a->strings["year"] = "jaar";
$a->strings["month"] = "maand"; $a->strings["month"] = "maand";
$a->strings["day"] = "dag"; $a->strings["day"] = "dag";
@ -220,13 +220,13 @@ $a->strings["Click here to upgrade."] = "";
$a->strings["This action exceeds the limits set by your subscription plan."] = ""; $a->strings["This action exceeds the limits set by your subscription plan."] = "";
$a->strings["This action is not available under your subscription plan."] = ""; $a->strings["This action is not available under your subscription plan."] = "";
$a->strings["(no subject)"] = "(geen onderwerp)"; $a->strings["(no subject)"] = "(geen onderwerp)";
$a->strings["noreply"] = ""; $a->strings["noreply"] = "geen reactie";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s"; $a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s";
$a->strings["Sharing notification from Diaspora network"] = ""; $a->strings["Sharing notification from Diaspora network"] = "";
$a->strings["photo"] = "Foto"; $a->strings["photo"] = "Foto";
$a->strings["status"] = "Status"; $a->strings["status"] = "Status";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vond %3\$s van %2\$s leuk"; $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vond %3\$s van %2\$s leuk";
$a->strings["Attachments:"] = ""; $a->strings["Attachments:"] = "Bijlagen:";
$a->strings["[Name Withheld]"] = "[Naam achtergehouden]"; $a->strings["[Name Withheld]"] = "[Naam achtergehouden]";
$a->strings["A new person is sharing with you at "] = ""; $a->strings["A new person is sharing with you at "] = "";
$a->strings["You have a new follower at "] = "Je hebt een nieuwe volger op "; $a->strings["You have a new follower at "] = "Je hebt een nieuwe volger op ";
@ -236,43 +236,43 @@ $a->strings["Yes"] = "Ja";
$a->strings["Cancel"] = "Annuleren"; $a->strings["Cancel"] = "Annuleren";
$a->strings["Permission denied."] = "Toegang geweigerd"; $a->strings["Permission denied."] = "Toegang geweigerd";
$a->strings["Archives"] = "Archieven"; $a->strings["Archives"] = "Archieven";
$a->strings["General Features"] = "Algemene Functies"; $a->strings["General Features"] = "Algemene functies";
$a->strings["Multiple Profiles"] = "Meerdere Profielen"; $a->strings["Multiple Profiles"] = "Meerdere profielen";
$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; $a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken";
$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; $a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten";
$a->strings["Richtext Editor"] = "Richtextbewerker"; $a->strings["Richtext Editor"] = "RTF-tekstverwerker";
$a->strings["Enable richtext editor"] = ""; $a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties";
$a->strings["Post Preview"] = "Voorvertoning bericht"; $a->strings["Post Preview"] = "Voorvertoning bericht";
$a->strings["Allow previewing posts and comments before publishing them"] = ""; $a->strings["Allow previewing posts and comments before publishing them"] = "";
$a->strings["Network Sidebar Widgets"] = ""; $a->strings["Network Sidebar Widgets"] = "Zijbalkwidgets op netwerkpagina";
$a->strings["Search by Date"] = "Zoeken op datum"; $a->strings["Search by Date"] = "Zoeken op datum";
$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten te selecteren volgens datumbereik"; $a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten te selecteren volgens datumbereik";
$a->strings["Group Filter"] = "Groepsfilter"; $a->strings["Group Filter"] = "Groepsfilter";
$a->strings["Enable widget to display Network posts only from selected group"] = ""; $a->strings["Enable widget to display Network posts only from selected group"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen";
$a->strings["Network Filter"] = ""; $a->strings["Network Filter"] = "Netwerkfilter";
$a->strings["Enable widget to display Network posts only from selected network"] = ""; $a->strings["Enable widget to display Network posts only from selected network"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken";
$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; $a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten";
$a->strings["Save search terms for re-use"] = ""; $a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik";
$a->strings["Network Tabs"] = ""; $a->strings["Network Tabs"] = "Netwerktabs";
$a->strings["Network Personal Tab"] = ""; $a->strings["Network Personal Tab"] = "Persoonlijke netwerktab";
$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; $a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had";
$a->strings["Network New Tab"] = ""; $a->strings["Network New Tab"] = "Nieuwe netwerktab";
$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; $a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)";
$a->strings["Network Shared Links Tab"] = ""; $a->strings["Network Shared Links Tab"] = "";
$a->strings["Enable tab to display only Network posts with links in them"] = ""; $a->strings["Enable tab to display only Network posts with links in them"] = "";
$a->strings["Post/Comment Tools"] = ""; $a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen";
$a->strings["Multiple Deletion"] = ""; $a->strings["Multiple Deletion"] = "";
$a->strings["Select and delete multiple posts/comments at once"] = ""; $a->strings["Select and delete multiple posts/comments at once"] = "";
$a->strings["Edit Sent Posts"] = ""; $a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten";
$a->strings["Edit and correct posts and comments after sending"] = ""; $a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties na verzending";
$a->strings["Tagging"] = ""; $a->strings["Tagging"] = "Labelen";
$a->strings["Ability to tag existing posts"] = ""; $a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen";
$a->strings["Post Categories"] = ""; $a->strings["Post Categories"] = "Categorieën berichten";
$a->strings["Add categories to your posts"] = ""; $a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten";
$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren"; $a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren";
$a->strings["Dislike Posts"] = ""; $a->strings["Dislike Posts"] = "Vind berichten niet leuk";
$a->strings["Ability to dislike posts/comments"] = ""; $a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten of reacties niet leuk te vinden";
$a->strings["Star Posts"] = ""; $a->strings["Star Posts"] = "Geef berichten een ster";
$a->strings["Ability to mark special posts with a star indicator"] = ""; $a->strings["Ability to mark special posts with a star indicator"] = "";
$a->strings["Cannot locate DNS info for database server '%s'"] = ""; $a->strings["Cannot locate DNS info for database server '%s'"] = "";
$a->strings["newer"] = "nieuwere berichten"; $a->strings["newer"] = "nieuwere berichten";
@ -289,10 +289,10 @@ $a->strings["%d Contact"] = array(
$a->strings["View Contacts"] = "Bekijk contacten"; $a->strings["View Contacts"] = "Bekijk contacten";
$a->strings["Search"] = "Zoeken"; $a->strings["Search"] = "Zoeken";
$a->strings["Save"] = "Bewaren"; $a->strings["Save"] = "Bewaren";
$a->strings["poke"] = ""; $a->strings["poke"] = "por";
$a->strings["poked"] = ""; $a->strings["poked"] = "gepord";
$a->strings["ping"] = ""; $a->strings["ping"] = "ping";
$a->strings["pinged"] = ""; $a->strings["pinged"] = "gepingd";
$a->strings["prod"] = ""; $a->strings["prod"] = "";
$a->strings["prodded"] = ""; $a->strings["prodded"] = "";
$a->strings["slap"] = ""; $a->strings["slap"] = "";
@ -351,9 +351,9 @@ $a->strings["comment"] = array(
0 => "reactie", 0 => "reactie",
1 => "reacties", 1 => "reacties",
); );
$a->strings["post"] = ""; $a->strings["post"] = "bericht";
$a->strings["Item filed"] = ""; $a->strings["Item filed"] = "Item bewaard";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = ""; $a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. ";
$a->strings["Default privacy group for new contacts"] = ""; $a->strings["Default privacy group for new contacts"] = "";
$a->strings["Everybody"] = "Iedereen"; $a->strings["Everybody"] = "Iedereen";
$a->strings["edit"] = "verander"; $a->strings["edit"] = "verander";
@ -363,11 +363,11 @@ $a->strings["Create a new group"] = "Maak nieuwe groep";
$a->strings["Contacts not in any group"] = ""; $a->strings["Contacts not in any group"] = "";
$a->strings["add"] = "toevoegen"; $a->strings["add"] = "toevoegen";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vond %3\$s van %2\$s niet leuk"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vond %3\$s van %2\$s niet leuk";
$a->strings["%1\$s poked %2\$s"] = ""; $a->strings["%1\$s poked %2\$s"] = "%1\$s porde %2\$s";
$a->strings["%1\$s is currently %2\$s"] = "%1\$s is nu %2\$s"; $a->strings["%1\$s is currently %2\$s"] = "%1\$s is nu %2\$s";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s"; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s";
$a->strings["post/item"] = ""; $a->strings["post/item"] = "bericht/item";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet";
$a->strings["Select"] = "Kies"; $a->strings["Select"] = "Kies";
$a->strings["Delete"] = "Verwijder"; $a->strings["Delete"] = "Verwijder";
$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; $a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s";
@ -376,24 +376,24 @@ $a->strings["Filed under:"] = "Bewaard onder:";
$a->strings["%s from %s"] = "%s van %s"; $a->strings["%s from %s"] = "%s van %s";
$a->strings["View in context"] = "In context bekijken"; $a->strings["View in context"] = "In context bekijken";
$a->strings["Please wait"] = "Even geduld"; $a->strings["Please wait"] = "Even geduld";
$a->strings["remove"] = ""; $a->strings["remove"] = "verwijder";
$a->strings["Delete Selected Items"] = ""; $a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen";
$a->strings["Follow Thread"] = ""; $a->strings["Follow Thread"] = "Volg conversatie";
$a->strings["%s likes this."] = ""; $a->strings["%s likes this."] = "%s vind dit leuk.";
$a->strings["%s doesn't like this."] = ""; $a->strings["%s doesn't like this."] = "%s vind dit niet leuk.";
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d mensen</span> vinden dit leuk"; $a->strings["<span %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d mensen</span> vinden dit leuk";
$a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d people</span> vinden dit niet leuk"; $a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d people</span> vinden dit niet leuk";
$a->strings["and"] = "en"; $a->strings["and"] = "en";
$a->strings[", and %d other people"] = ", en %d andere mensen"; $a->strings[", and %d other people"] = ", en %d andere mensen";
$a->strings["%s like this."] = ""; $a->strings["%s like this."] = "%s vind dit leuk.";
$a->strings["%s don't like this."] = ""; $a->strings["%s don't like this."] = "%s vind dit niet leuk.";
$a->strings["Visible to <strong>everybody</strong>"] = "Zichtbaar voor <strong>iedereen</strong>"; $a->strings["Visible to <strong>everybody</strong>"] = "Zichtbaar voor <strong>iedereen</strong>";
$a->strings["Please enter a link URL:"] = "Geef aub een link URL op:"; $a->strings["Please enter a link URL:"] = "Geef aub een link URL op:";
$a->strings["Please enter a video link/URL:"] = ""; $a->strings["Please enter a video link/URL:"] = "Voer een videolink/URL in:";
$a->strings["Please enter an audio link/URL:"] = ""; $a->strings["Please enter an audio link/URL:"] = "Voeg een audiolink/URL in:";
$a->strings["Tag term:"] = ""; $a->strings["Tag term:"] = "Label:";
$a->strings["Save to Folder:"] = "Bewaren in map:"; $a->strings["Save to Folder:"] = "Bewaren in map:";
$a->strings["Where are you right now?"] = ""; $a->strings["Where are you right now?"] = "Waar ben je nu?";
$a->strings["Delete item(s)?"] = "Item(s) verwijderen?"; $a->strings["Delete item(s)?"] = "Item(s) verwijderen?";
$a->strings["Post to Email"] = "Verzenden per e-mail"; $a->strings["Post to Email"] = "Verzenden per e-mail";
$a->strings["Share"] = "Delen"; $a->strings["Share"] = "Delen";
@ -415,7 +415,7 @@ $a->strings["Set title"] = "Titel plaatsen";
$a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)"; $a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)";
$a->strings["Permission settings"] = "Instellingen van rechten"; $a->strings["Permission settings"] = "Instellingen van rechten";
$a->strings["permissions"] = "rechten"; $a->strings["permissions"] = "rechten";
$a->strings["CC: email addresses"] = "CC: e-mail adressen"; $a->strings["CC: email addresses"] = "CC: e-mailadressen";
$a->strings["Public post"] = "Openbare post"; $a->strings["Public post"] = "Openbare post";
$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"; $a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be";
$a->strings["Preview"] = "Voorvertoning"; $a->strings["Preview"] = "Voorvertoning";
@ -426,8 +426,8 @@ $a->strings["Friendica Notification"] = "Friendica Notificatie";
$a->strings["Thank You,"] = "Bedankt"; $a->strings["Thank You,"] = "Bedankt";
$a->strings["%s Administrator"] = "%s Beheerder"; $a->strings["%s Administrator"] = "%s Beheerder";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>"; $a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Friendica:Notify] New mail received at %s"] = ""; $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificatie] Nieuw bericht ontvangen op %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s.";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s stuurde jou %2\$s."; $a->strings["%1\$s sent you %2\$s."] = "%1\$s stuurde jou %2\$s.";
$a->strings["a private message"] = "een prive bericht"; $a->strings["a private message"] = "een prive bericht";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden."; $a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden.";
@ -440,20 +440,20 @@ $a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezo
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = ""; $a->strings["[Friendica:Notify] %s posted to your profile wall"] = "";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = ""; $a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = ""; $a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
$a->strings["[Friendica:Notify] %s tagged you"] = ""; $a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificatie] %s heeft jou genoemd";
$a->strings["%1\$s tagged you at %2\$s"] = ""; $a->strings["%1\$s tagged you at %2\$s"] = "%1\$s heeft jou in %2\$s genoemd";
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = ""; $a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]heeft jou genoemd[/url].";
$a->strings["[Friendica:Notify] %1\$s poked you"] = ""; $a->strings["[Friendica:Notify] %1\$s poked you"] = "";
$a->strings["%1\$s poked you at %2\$s"] = ""; $a->strings["%1\$s poked you at %2\$s"] = "";
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; $a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
$a->strings["[Friendica:Notify] %s tagged your post"] = ""; $a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificatie] %s heeft jouw bericht gelabeld";
$a->strings["%1\$s tagged your post at %2\$s"] = ""; $a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s heeft jouw bericht gelabeld in %2\$s";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; $a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s labelde [url=%2\$s]jouw bericht[/url]";
$a->strings["[Friendica:Notify] Introduction received"] = ""; $a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; $a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1\$s' om %2\$s";
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; $a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Je ontving [url=%1\$s]een vriendschaps- of connectieverzoek[/url] van %2\$s.";
$a->strings["You may visit their profile at %s"] = ""; $a->strings["You may visit their profile at %s"] = "U kunt hun profiel bezoeken op %s";
$a->strings["Please visit %s to approve or reject the introduction."] = ""; $a->strings["Please visit %s to approve or reject the introduction."] = "Bezoek %s om het verzoek goed of af te keuren.";
$a->strings["[Friendica:Notify] Friend suggestion received"] = ""; $a->strings["[Friendica:Notify] Friend suggestion received"] = "";
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; $a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; $a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
@ -463,7 +463,7 @@ $a->strings["Please visit %s to approve or reject the suggestion."] = "";
$a->strings["[no subject]"] = "[geen onderwerp]"; $a->strings["[no subject]"] = "[geen onderwerp]";
$a->strings["Wall Photos"] = ""; $a->strings["Wall Photos"] = "";
$a->strings["Nothing new here"] = "Niets nieuw hier"; $a->strings["Nothing new here"] = "Niets nieuw hier";
$a->strings["Clear notifications"] = ""; $a->strings["Clear notifications"] = "Notificaties verwijderen";
$a->strings["Logout"] = "Uitloggen"; $a->strings["Logout"] = "Uitloggen";
$a->strings["End this session"] = "Deze sessie beëindigen"; $a->strings["End this session"] = "Deze sessie beëindigen";
$a->strings["Status"] = "Status"; $a->strings["Status"] = "Status";
@ -472,13 +472,13 @@ $a->strings["Your profile page"] = "Jouw profiel pagina";
$a->strings["Photos"] = "Foto's"; $a->strings["Photos"] = "Foto's";
$a->strings["Your photos"] = "Jouw foto's"; $a->strings["Your photos"] = "Jouw foto's";
$a->strings["Events"] = "Gebeurtenissen"; $a->strings["Events"] = "Gebeurtenissen";
$a->strings["Your events"] = "Jouw gebeurtenissen"; $a->strings["Your events"] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.";
$a->strings["Personal notes"] = "Persoonlijke nota's"; $a->strings["Personal notes"] = "Persoonlijke nota's";
$a->strings["Your personal photos"] = "Jouw persoonlijke foto's"; $a->strings["Your personal photos"] = "Jouw persoonlijke foto's";
$a->strings["Login"] = "Login"; $a->strings["Login"] = "Login";
$a->strings["Sign in"] = ""; $a->strings["Sign in"] = "Inloggen";
$a->strings["Home"] = "Thuis"; $a->strings["Home"] = "Home";
$a->strings["Home Page"] = "Thuispagina"; $a->strings["Home Page"] = "Homepagina";
$a->strings["Register"] = "Registreer"; $a->strings["Register"] = "Registreer";
$a->strings["Create an account"] = "Maak een accoount"; $a->strings["Create an account"] = "Maak een accoount";
$a->strings["Help"] = "Help"; $a->strings["Help"] = "Help";
@ -492,15 +492,15 @@ $a->strings["Directory"] = "Gids";
$a->strings["People directory"] = "Personengids"; $a->strings["People directory"] = "Personengids";
$a->strings["Network"] = "Netwerk"; $a->strings["Network"] = "Netwerk";
$a->strings["Conversations from your friends"] = "Conversaties van je vrienden"; $a->strings["Conversations from your friends"] = "Conversaties van je vrienden";
$a->strings["Network Reset"] = ""; $a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen";
$a->strings["Load Network page with no filters"] = ""; $a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters";
$a->strings["Introductions"] = "Contactaanvragen"; $a->strings["Introductions"] = "Verzoeken";
$a->strings["Friend Requests"] = "Vriendschapsverzoeken"; $a->strings["Friend Requests"] = "Vriendschapsverzoeken";
$a->strings["Notifications"] = "Notificaties"; $a->strings["Notifications"] = "Notificaties";
$a->strings["See all notifications"] = ""; $a->strings["See all notifications"] = "Toon alle notificaties";
$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren"; $a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren";
$a->strings["Messages"] = "Privéberichten"; $a->strings["Messages"] = "Privéberichten";
$a->strings["Private mail"] = "Privébericht"; $a->strings["Private mail"] = "Privéberichten";
$a->strings["Inbox"] = "Inbox"; $a->strings["Inbox"] = "Inbox";
$a->strings["Outbox"] = "Verzonden berichten"; $a->strings["Outbox"] = "Verzonden berichten";
$a->strings["New Message"] = "Nieuw Bericht"; $a->strings["New Message"] = "Nieuw Bericht";
@ -517,9 +517,9 @@ $a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en con
$a->strings["Admin"] = "Beheer"; $a->strings["Admin"] = "Beheer";
$a->strings["Site setup and configuration"] = "Website opzetten en configureren"; $a->strings["Site setup and configuration"] = "Website opzetten en configureren";
$a->strings["Navigation"] = "Navigatie"; $a->strings["Navigation"] = "Navigatie";
$a->strings["Site map"] = ""; $a->strings["Site map"] = "Sitemap";
$a->strings["Embedded content"] = ""; $a->strings["Embedded content"] = "Ingebedde inhoud";
$a->strings["Embedding disabled"] = ""; $a->strings["Embedding disabled"] = "Inbedden uitgeschakeld";
$a->strings["Error decoding account file"] = ""; $a->strings["Error decoding account file"] = "";
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; $a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
$a->strings["Error! Cannot check nickname"] = ""; $a->strings["Error! Cannot check nickname"] = "";
@ -532,8 +532,8 @@ $a->strings["%d contact not imported"] = array(
); );
$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"; $a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord";
$a->strings["Welcome "] = "Welkom"; $a->strings["Welcome "] = "Welkom";
$a->strings["Please upload a profile photo."] = ""; $a->strings["Please upload a profile photo."] = "Upload een profielfoto.";
$a->strings["Welcome back "] = "Welkom terug"; $a->strings["Welcome back "] = "Welkom terug ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
$a->strings["Profile not found."] = "Profiel niet gevonden"; $a->strings["Profile not found."] = "Profiel niet gevonden";
$a->strings["Profile deleted."] = "Profiel verwijderd"; $a->strings["Profile deleted."] = "Profiel verwijderd";
@ -550,7 +550,7 @@ $a->strings["Religion"] = "Godsdienst";
$a->strings["Political Views"] = "Politieke standpunten"; $a->strings["Political Views"] = "Politieke standpunten";
$a->strings["Gender"] = "Geslacht"; $a->strings["Gender"] = "Geslacht";
$a->strings["Sexual Preference"] = "Seksuele Voorkeur"; $a->strings["Sexual Preference"] = "Seksuele Voorkeur";
$a->strings["Homepage"] = "Thuispagina"; $a->strings["Homepage"] = "Homepagina";
$a->strings["Interests"] = "Interesses"; $a->strings["Interests"] = "Interesses";
$a->strings["Address"] = "Adres"; $a->strings["Address"] = "Adres";
$a->strings["Location"] = "Plaats"; $a->strings["Location"] = "Plaats";
@ -583,7 +583,7 @@ $a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span cl
$a->strings["Who: (if applicable)"] = "Wie: (indien toepasbaar)"; $a->strings["Who: (if applicable)"] = "Wie: (indien toepasbaar)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl"; $a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl";
$a->strings["Since [date]:"] = "Sinds [datum]:"; $a->strings["Since [date]:"] = "Sinds [datum]:";
$a->strings["Homepage URL:"] = "Thuispagina:"; $a->strings["Homepage URL:"] = "Adres homepagina:";
$a->strings["Religious Views:"] = "Geloof:"; $a->strings["Religious Views:"] = "Geloof:";
$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:"; $a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:";
$a->strings["Private Keywords:"] = "Privé Sleutelwoorden:"; $a->strings["Private Keywords:"] = "Privé Sleutelwoorden:";
@ -609,7 +609,7 @@ $a->strings["Profile Image"] = "Profiel afbeelding";
$a->strings["visible to everybody"] = "zichtbaar voor iedereen"; $a->strings["visible to everybody"] = "zichtbaar voor iedereen";
$a->strings["Edit visibility"] = "Pas zichtbaarheid aan"; $a->strings["Edit visibility"] = "Pas zichtbaarheid aan";
$a->strings["Permission denied"] = "Toegang geweigerd"; $a->strings["Permission denied"] = "Toegang geweigerd";
$a->strings["Invalid profile identifier."] = ""; $a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie.";
$a->strings["Profile Visibility Editor"] = ""; $a->strings["Profile Visibility Editor"] = "";
$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen."; $a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen.";
$a->strings["Visible To"] = "Zichtbaar voor"; $a->strings["Visible To"] = "Zichtbaar voor";
@ -629,8 +629,8 @@ $a->strings["{0} liked %s's post"] = "{0} vond het bericht van %s leuk";
$a->strings["{0} disliked %s's post"] = "{0} vond het bericht van %s niet leuk"; $a->strings["{0} disliked %s's post"] = "{0} vond het bericht van %s niet leuk";
$a->strings["{0} is now friends with %s"] = "{0} is nu bevriend met %s"; $a->strings["{0} is now friends with %s"] = "{0} is nu bevriend met %s";
$a->strings["{0} posted"] = "{0} plaatste"; $a->strings["{0} posted"] = "{0} plaatste";
$a->strings["{0} tagged %s's post with #%s"] = ""; $a->strings["{0} tagged %s's post with #%s"] = "{0} labelde %s's bericht met #%s";
$a->strings["{0} mentioned you in a post"] = ""; $a->strings["{0} mentioned you in a post"] = "{0} vermeldde je in een bericht";
$a->strings["Theme settings updated."] = "Thema instellingen aangepast."; $a->strings["Theme settings updated."] = "Thema instellingen aangepast.";
$a->strings["Site"] = "Website"; $a->strings["Site"] = "Website";
$a->strings["Users"] = "Gebruiker"; $a->strings["Users"] = "Gebruiker";
@ -699,7 +699,7 @@ $a->strings["Will not waste system resources polling external sites for abandond
$a->strings["Allowed friend domains"] = "Toegelaten vriend domeinen"; $a->strings["Allowed friend domains"] = "Toegelaten vriend 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 die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat 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 die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten.";
$a->strings["Allowed email domains"] = "Toegelaten e-mail domeinen"; $a->strings["Allowed email domains"] = "Toegelaten e-mail domeinen";
$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"] = "Komma-gescheiden lijst van domeinen die gebruikt mogen worden in e-mailadressen voor registraties op deze website. Jokers zijn toegelaten. 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 die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan.";
$a->strings["Block public"] = "Openbare toegang blokkeren"; $a->strings["Block public"] = "Openbare toegang blokkeren";
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers."; $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers.";
$a->strings["Force publish"] = "Dwing publiceren af"; $a->strings["Force publish"] = "Dwing publiceren af";
@ -709,7 +709,7 @@ $a->strings["URL to update the global directory. If this is not set, the global
$a->strings["Allow threaded items"] = "Sta threads in conversaties toe"; $a->strings["Allow threaded items"] = "Sta threads in conversaties toe";
$a->strings["Allow infinite level threading for items on this site."] = "Sta oneindige niveaus threads in conversaties op deze website toe."; $a->strings["Allow infinite level threading for items on this site."] = "Sta oneindige niveaus threads in conversaties op deze website toe.";
$a->strings["Private posts by default for new users"] = "Privéberichten als standaard voor nieuwe gebruikers"; $a->strings["Private posts by default for new users"] = "Privéberichten als standaard voor nieuwe gebruikers";
$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Stel de standaard post toelatingen voor nieuwe leden in op de standaard privacy groep in plaats van openbaar."; $a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Stel de standaard rechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar.";
$a->strings["Don't include post content in email notifications"] = "De inhoud van het bericht niet insluiten bij e-mail notificaties"; $a->strings["Don't include post content in email notifications"] = "De inhoud van het bericht niet insluiten bij e-mail notificaties";
$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy."; $a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy.";
$a->strings["Disallow public access to addons listed in the apps menu."] = ""; $a->strings["Disallow public access to addons listed in the apps menu."] = "";
@ -743,15 +743,15 @@ $a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] =
$a->strings["Delivery interval"] = "Afleverinterval"; $a->strings["Delivery interval"] = "Afleverinterval";
$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."] = "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers."; $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."] = "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers.";
$a->strings["Poll interval"] = "Poll-interval"; $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."] = ""; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt.";
$a->strings["Maximum Load Average"] = ""; $a->strings["Maximum Load Average"] = "Maximum gemiddelde belasting";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50."; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50.";
$a->strings["Use MySQL full text engine"] = "Gebruik de tekst-zoekfunctie van MySQL"; $a->strings["Use MySQL full text engine"] = "Gebruik de tekst-zoekfunctie van MySQL";
$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters."; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters.";
$a->strings["Path to item cache"] = ""; $a->strings["Path to item cache"] = "Pad naar cache voor items";
$a->strings["Cache duration in seconds"] = "Cache tijdsduur in seconden"; $a->strings["Cache duration in seconds"] = "Cache tijdsduur in seconden";
$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Hoe lang moeten bestanden in cache gehouden worden? Standaard waarde is 86400 seconden (een dag)."; $a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Hoe lang moeten bestanden in cache gehouden worden? Standaard waarde is 86400 seconden (een dag).";
$a->strings["Path for lock file"] = ""; $a->strings["Path for lock file"] = "Pad voor lock bestand";
$a->strings["Temp path"] = "Tijdelijk pad"; $a->strings["Temp path"] = "Tijdelijk pad";
$a->strings["Base path to installation"] = "Basispad voor installatie"; $a->strings["Base path to installation"] = "Basispad voor installatie";
$a->strings["Update has been marked successful"] = "Wijziging succesvol gemarkeerd "; $a->strings["Update has been marked successful"] = "Wijziging succesvol gemarkeerd ";
@ -762,7 +762,7 @@ $a->strings["Update function %s could not be found."] = "Update-functie %s kon n
$a->strings["No failed updates."] = "Geen misluke wijzigingen"; $a->strings["No failed updates."] = "Geen misluke wijzigingen";
$a->strings["Failed Updates"] = "Misluke wijzigingen"; $a->strings["Failed Updates"] = "Misluke wijzigingen";
$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven."; $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven.";
$a->strings["Mark success (if update was manually applied)"] = ""; $a->strings["Mark success (if update was manually applied)"] = "Markeren als succes (als aanpassing manueel doorgevoerd werd)";
$a->strings["Attempt to execute this update step automatically"] = "Probeer deze stap automatisch uit te voeren"; $a->strings["Attempt to execute this update step automatically"] = "Probeer deze stap automatisch uit te voeren";
$a->strings["%s user blocked/unblocked"] = array( $a->strings["%s user blocked/unblocked"] = array(
0 => "%s gebruiker geblokkeerd/niet geblokkeerd", 0 => "%s gebruiker geblokkeerd/niet geblokkeerd",
@ -777,7 +777,7 @@ $a->strings["User '%s' unblocked"] = "Gebruiker '%s' niet meer geblokkeerd";
$a->strings["User '%s' blocked"] = "Gebruiker '%s' geblokkeerd"; $a->strings["User '%s' blocked"] = "Gebruiker '%s' geblokkeerd";
$a->strings["select all"] = "Alles selecteren"; $a->strings["select all"] = "Alles selecteren";
$a->strings["User registrations waiting for confirm"] = "Gebruikersregistraties wachten op een bevestiging"; $a->strings["User registrations waiting for confirm"] = "Gebruikersregistraties wachten op een bevestiging";
$a->strings["Request date"] = "Aanvraagdatum"; $a->strings["Request date"] = "Registratiedatum";
$a->strings["Name"] = "Naam"; $a->strings["Name"] = "Naam";
$a->strings["No registrations."] = "Geen registraties."; $a->strings["No registrations."] = "Geen registraties.";
$a->strings["Approve"] = "Goedkeuren"; $a->strings["Approve"] = "Goedkeuren";
@ -900,10 +900,10 @@ $a->strings["Password update failed. Please try again."] = "Wachtwoord-)wijzigin
$a->strings[" Please use a shorter name."] = "Gebruik a.u.b. een kortere naam."; $a->strings[" Please use a shorter name."] = "Gebruik a.u.b. een kortere naam.";
$a->strings[" Name too short."] = "Naam te kort."; $a->strings[" Name too short."] = "Naam te kort.";
$a->strings["Wrong Password"] = "Verkeerd wachtwoord"; $a->strings["Wrong Password"] = "Verkeerd wachtwoord";
$a->strings[" Not valid email."] = "Geen geldig e-mail adres."; $a->strings[" Not valid email."] = "Geen geldig e-mailadres.";
$a->strings[" Cannot change to that email."] = "Kan niet veranderen naar die e-mail."; $a->strings[" Cannot change to that email."] = "Kan niet veranderen naar die e-mail.";
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privé forum heeft geen privacy toelatingen. De standaard privacy groep wordt gebruikt."; $a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privéforum heeft geen privacyrechten . De standaard privacygroep wordt gebruikt.";
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privé forum heeft geen privacy toelatingen en geen standaard privacy groep."; $a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privéforum heeft geen privacyrechten en geen standaard privacygroep.";
$a->strings["Settings updated."] = "Instellingen bijgewerkt."; $a->strings["Settings updated."] = "Instellingen bijgewerkt.";
$a->strings["Add application"] = "Toepassing toevoegen"; $a->strings["Add application"] = "Toepassing toevoegen";
$a->strings["Consumer Key"] = "Gebruikerssleutel"; $a->strings["Consumer Key"] = "Gebruikerssleutel";
@ -915,7 +915,7 @@ $a->strings["Connected Apps"] = "Verbonden applicaties";
$a->strings["Edit"] = "Bewerken"; $a->strings["Edit"] = "Bewerken";
$a->strings["Client key starts with"] = ""; $a->strings["Client key starts with"] = "";
$a->strings["No name"] = "Geen naam"; $a->strings["No name"] = "Geen naam";
$a->strings["Remove authorization"] = ""; $a->strings["Remove authorization"] = "Verwijder authorisatie";
$a->strings["No Plugin settings configured"] = ""; $a->strings["No Plugin settings configured"] = "";
$a->strings["Plugin Settings"] = "Plugin Instellingen"; $a->strings["Plugin Settings"] = "Plugin Instellingen";
$a->strings["Off"] = "Uit"; $a->strings["Off"] = "Uit";
@ -954,11 +954,11 @@ $a->strings["Don't show emoticons"] = "Emoticons niet tonen";
$a->strings["Normal Account Page"] = "Normale account pagina"; $a->strings["Normal Account Page"] = "Normale account pagina";
$a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel"; $a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel";
$a->strings["Soapbox Page"] = "Zeepkist pagina"; $a->strings["Soapbox Page"] = "Zeepkist pagina";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Keur automatisch alle contactaanvragen/vriendschapsverzoeken goed als fans die alleen kunnen lezen"; $a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen.";
$a->strings["Community Forum/Celebrity Account"] = "Gemeenschapsforum/Account van beroemdheid"; $a->strings["Community Forum/Celebrity Account"] = "Gemeenschapsforum/Account van beroemdheid";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Keur automatisch alle contactaanvragen/vriendschapsverzoeken goed als fans die kunnen lezen en schrijven"; $a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven.";
$a->strings["Automatic Friend Page"] = "Automatisch Vriendschapspagina"; $a->strings["Automatic Friend Page"] = "Automatisch Vriendschapspagina";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Keur automatisch alle contactaanvragen/vriendschapsverzoeken goed als vrienden"; $a->strings["Automatically approve all connection/friend requests as friends"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden.";
$a->strings["Private Forum [Experimental]"] = "Privé-forum [experimenteel]"; $a->strings["Private Forum [Experimental]"] = "Privé-forum [experimenteel]";
$a->strings["Private forum - approved members only"] = "Privé-forum - enkel voor goedgekeurde leden"; $a->strings["Private forum - approved members only"] = "Privé-forum - enkel voor goedgekeurde leden";
$a->strings["OpenID:"] = "OpenID:"; $a->strings["OpenID:"] = "OpenID:";
@ -968,7 +968,7 @@ $a->strings["Publish your default profile in the global social directory?"] = "J
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"; $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?";
$a->strings["Hide your profile details from unknown viewers?"] = "Je profieldetails verbergen voor onbekende bezoekers?"; $a->strings["Hide your profile details from unknown viewers?"] = "Je profieldetails verbergen voor onbekende bezoekers?";
$a->strings["Allow friends to post to your profile page?"] = "Vrienden toestaan om op jou profielpagina te posten?"; $a->strings["Allow friends to post to your profile page?"] = "Vrienden toestaan om op jou profielpagina te posten?";
$a->strings["Allow friends to tag your posts?"] = "Vrienden toestaan om jouw posts te labelen?"; $a->strings["Allow friends to tag your posts?"] = "Sta vrienden toe om jouw berichten te labelen?";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?"; $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?";
$a->strings["Permit unknown people to send you private mail?"] = "Mogen onbekende personen jou privé berichten sturen?"; $a->strings["Permit unknown people to send you private mail?"] = "Mogen onbekende personen jou privé berichten sturen?";
$a->strings["Profile is <strong>not published</strong>."] = "Profiel is <strong>niet gepubliceerd</strong>."; $a->strings["Profile is <strong>not published</strong>."] = "Profiel is <strong>niet gepubliceerd</strong>.";
@ -992,20 +992,20 @@ $a->strings["Current Password:"] = "Huidig wachtwoord:";
$a->strings["Your current password to confirm the changes"] = "Je huidig wachtwoord om de wijzigingen te bevestigen"; $a->strings["Your current password to confirm the changes"] = "Je huidig wachtwoord om de wijzigingen te bevestigen";
$a->strings["Password:"] = "Wachtwoord:"; $a->strings["Password:"] = "Wachtwoord:";
$a->strings["Basic Settings"] = "Basis Instellingen"; $a->strings["Basic Settings"] = "Basis Instellingen";
$a->strings["Email Address:"] = "E-mail Adres:"; $a->strings["Email Address:"] = "E-mailadres:";
$a->strings["Your Timezone:"] = "Je Tijdzone:"; $a->strings["Your Timezone:"] = "Je Tijdzone:";
$a->strings["Default Post Location:"] = "Standaard locatie:"; $a->strings["Default Post Location:"] = "Standaard locatie:";
$a->strings["Use Browser Location:"] = "Gebruik Webbrowser Locatie:"; $a->strings["Use Browser Location:"] = "Gebruik Webbrowser Locatie:";
$a->strings["Security and Privacy Settings"] = "Instellingen voor Beveiliging en Privacy"; $a->strings["Security and Privacy Settings"] = "Instellingen voor Beveiliging en Privacy";
$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal vriendschapsverzoeken per dag:"; $a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal vriendschapsverzoeken per dag:";
$a->strings["(to prevent spam abuse)"] = "(om spam misbruik te voorkomen)"; $a->strings["(to prevent spam abuse)"] = "(om spam misbruik te voorkomen)";
$a->strings["Default Post Permissions"] = "Standaard toelatingen voor nieuwe berichten"; $a->strings["Default Post Permissions"] = "Standaard rechten voor nieuwe berichten";
$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; $a->strings["(click to open/close)"] = "(klik om te openen/sluiten)";
$a->strings["Show to Groups"] = "Tonen aan groepen"; $a->strings["Show to Groups"] = "Tonen aan groepen";
$a->strings["Show to Contacts"] = "Tonen aan contacten"; $a->strings["Show to Contacts"] = "Tonen aan contacten";
$a->strings["Default Private Post"] = "Standaard Privé Post"; $a->strings["Default Private Post"] = "Standaard Privé Post";
$a->strings["Default Public Post"] = "Standaard Publieke Post"; $a->strings["Default Public Post"] = "Standaard Publieke Post";
$a->strings["Default Permissions for New Posts"] = "Standaard toelatingen voor nieuwe berichten"; $a->strings["Default Permissions for New Posts"] = "Standaard rechten voor nieuwe berichten";
$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; $a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:";
$a->strings["Notification Settings"] = "Notificatie Instellingen"; $a->strings["Notification Settings"] = "Notificatie Instellingen";
$a->strings["By default post a status message when:"] = "Post automatisch een status bericht wanneer:"; $a->strings["By default post a status message when:"] = "Post automatisch een status bericht wanneer:";
@ -1013,13 +1013,13 @@ $a->strings["accepting a friend request"] = "Een vriendschapsverzoek accepteren"
$a->strings["joining a forum/community"] = "Lid worden van een forum of gemeenschap"; $a->strings["joining a forum/community"] = "Lid worden van een forum of gemeenschap";
$a->strings["making an <em>interesting</em> profile change"] = "Een <em>interessante</em> verandering aan je profiel"; $a->strings["making an <em>interesting</em> profile change"] = "Een <em>interessante</em> verandering aan je profiel";
$a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:"; $a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:";
$a->strings["You receive an introduction"] = "Je een contactaanvraag ontvangt"; $a->strings["You receive an introduction"] = "Je ontvangt een vriendschaps- of connectieverzoek";
$a->strings["Your introductions are confirmed"] = "Je contactaanvragen bevestigd werden"; $a->strings["Your introductions are confirmed"] = "Jouw vriendschaps- of connectieverzoeken zijn bevestigd";
$a->strings["Someone writes on your profile wall"] = "Iemand iets op de muur van je profiel schrijft"; $a->strings["Someone writes on your profile wall"] = "Iemand iets op de muur van je profiel schrijft";
$a->strings["Someone writes a followup comment"] = "Iemand een commentaar schrijft"; $a->strings["Someone writes a followup comment"] = "Iemand een commentaar schrijft";
$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; $a->strings["You receive a private message"] = "Je een privé-bericht ontvangt";
$a->strings["You receive a friend suggestion"] = "Je een suggestie voor een vriendschap ontvangt"; $a->strings["You receive a friend suggestion"] = "Je een suggestie voor een vriendschap ontvangt";
$a->strings["You are tagged in a post"] = "Je in een post vernoemd wordt"; $a->strings["You are tagged in a post"] = "Je bent in een bericht genoemd";
$a->strings["You are poked/prodded/etc. in a post"] = ""; $a->strings["You are poked/prodded/etc. in a post"] = "";
$a->strings["Advanced Account/Page Type Settings"] = ""; $a->strings["Advanced Account/Page Type Settings"] = "";
$a->strings["Change the behaviour of this account for special situations"] = ""; $a->strings["Change the behaviour of this account for special situations"] = "";
@ -1029,16 +1029,16 @@ $a->strings["Contact update failed."] = "Aanpassen van contact mislukt.";
$a->strings["Contact not found."] = "Contact niet gevonden"; $a->strings["Contact not found."] = "Contact niet gevonden";
$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen"; $a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = ""; $a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = ""; $a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen.";
$a->strings["Return to contact editor"] = ""; $a->strings["Return to contact editor"] = "Ga terug naar contactbewerker";
$a->strings["Account Nickname"] = "Bijnaam account"; $a->strings["Account Nickname"] = "Bijnaam account";
$a->strings["@Tagname - overrides Name/Nickname"] = ""; $a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam";
$a->strings["Account URL"] = ""; $a->strings["Account URL"] = "URL account";
$a->strings["Friend Request URL"] = "URL vriendschapsverzoek"; $a->strings["Friend Request URL"] = "URL vriendschapsverzoek";
$a->strings["Friend Confirm URL"] = ""; $a->strings["Friend Confirm URL"] = "";
$a->strings["Notification Endpoint URL"] = ""; $a->strings["Notification Endpoint URL"] = "";
$a->strings["Poll/Feed URL"] = ""; $a->strings["Poll/Feed URL"] = "URL poll/feed";
$a->strings["New photo from this URL"] = ""; $a->strings["New photo from this URL"] = "Nieuwe foto van deze URL";
$a->strings["No potential page delegates located."] = ""; $a->strings["No potential page delegates located."] = "";
$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."] = ""; $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."] = "";
$a->strings["Existing Page Managers"] = ""; $a->strings["Existing Page Managers"] = "";
@ -1058,20 +1058,20 @@ $a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van
$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid."; $a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid.";
$a->strings["Remote site reported: "] = "Website op afstand berichtte: "; $a->strings["Remote site reported: "] = "Website op afstand berichtte: ";
$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw."; $a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw.";
$a->strings["Introduction failed or was revoked."] = "Contactaanvraag mislukt of was herroepen."; $a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen.";
$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen."; $a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen.";
$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'"; $a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'";
$a->strings["Our site encryption key is apparently messed up."] = ""; $a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = ""; $a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons.";
$a->strings["Contact record was not found for you on our site."] = ""; $a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou.";
$a->strings["Site public key not available in contact record for URL %s."] = ""; $a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s.";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = ""; $a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken.";
$a->strings["Unable to set your contact credentials on our system."] = ""; $a->strings["Unable to set your contact credentials on our system."] = "";
$a->strings["Unable to update your contact profile details on our system"] = ""; $a->strings["Unable to update your contact profile details on our system"] = "";
$a->strings["Connection accepted at %s"] = "Uw connectie werd geaccepteerd op %s"; $a->strings["Connection accepted at %s"] = "Uw connectie werd geaccepteerd op %s";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s"; $a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom"; $a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom";
$a->strings["This introduction has already been accepted."] = "Contactaanvraag is al goedgekeurd"; $a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd";
$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie"; $a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie";
$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."; $a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar.";
$a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto."; $a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto.";
@ -1079,31 +1079,31 @@ $a->strings["%d required parameter was not found at the given location"] = array
0 => "De %d vereiste parameter is niet op het gegeven adres gevonden", 0 => "De %d vereiste parameter is niet op het gegeven adres gevonden",
1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden", 1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden",
); );
$a->strings["Introduction complete."] = "Contactaanvraag voltooid."; $a->strings["Introduction complete."] = "Verzoek voltooid.";
$a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. "; $a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. ";
$a->strings["Profile unavailable."] = "Profiel onbeschikbaar"; $a->strings["Profile unavailable."] = "Profiel onbeschikbaar";
$a->strings["%s has received too many connection requests today."] = "%s heeft te veel contactaanvragen gehad vandaag."; $a->strings["%s has received too many connection requests today."] = "%s heeft te veel verzoeken gehad vandaag.";
$a->strings["Spam protection measures have been invoked."] = "Beveiligingsmaatregelen tegen spam zijn in werking getreden."; $a->strings["Spam protection measures have been invoked."] = "Beveiligingsmaatregelen tegen spam zijn in werking getreden.";
$a->strings["Friends are advised to please try again in 24 hours."] = "Wij adviseren vrienden om het over 24 uur nog een keer te proberen."; $a->strings["Friends are advised to please try again in 24 hours."] = "Wij adviseren vrienden om het over 24 uur nog een keer te proberen.";
$a->strings["Invalid locator"] = "Ongeldige plaatsbepaler"; $a->strings["Invalid locator"] = "Ongeldige plaatsbepaler";
$a->strings["Invalid email address."] = "Geen geldig e-mail adres"; $a->strings["Invalid email address."] = "Geen geldig e-mailadres";
$a->strings["This account has not been configured for email. Request failed."] = "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail."; $a->strings["This account has not been configured for email. Request failed."] = "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail.";
$a->strings["Unable to resolve your name at the provided location."] = "Ik kan jouw naam op het opgegeven adres niet vinden."; $a->strings["Unable to resolve your name at the provided location."] = "Ik kan jouw naam op het opgegeven adres niet vinden.";
$a->strings["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld."; $a->strings["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld.";
$a->strings["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s."; $a->strings["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s.";
$a->strings["Invalid profile URL."] = "Ongeldig profiel adres."; $a->strings["Invalid profile URL."] = "Ongeldig profiel adres.";
$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen."; $a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen.";
$a->strings["Your introduction has been sent."] = "Je contactaanvraag is verzonden."; $a->strings["Your introduction has been sent."] = "Je verzoek is verzonden.";
$a->strings["Please login to confirm introduction."] = "Log in om je contactaanvraag te bevestigen."; $a->strings["Please login to confirm introduction."] = "Log in om je verzoek te bevestigen.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Je huidige identiteit is niet de juiste. Log a.u.b. in met <strong>dit</strong> profiel."; $a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Je huidige identiteit is niet de juiste. Log a.u.b. in met <strong>dit</strong> profiel.";
$a->strings["Hide this contact"] = "Verberg dit contact"; $a->strings["Hide this contact"] = "Verberg dit contact";
$a->strings["Welcome home %s."] = "Welkom thuis %s."; $a->strings["Welcome home %s."] = "Welkom thuis %s.";
$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je contactaanvraag voor %s."; $a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s.";
$a->strings["Confirm"] = "Bevestig"; $a->strings["Confirm"] = "Bevestig";
$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"; $a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:";
$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Sluit aan als e-mail volger</strike> (Binnenkort)"; $a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Sluit aan als e-mail volger</strike> (Binnenkort)";
$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Als je nog geen lid bent van het vrije sociale web, <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>."; $a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Als je nog geen lid bent van het vrije sociale web, <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>.";
$a->strings["Friend/Connection Request"] = "Vriend/Contactaanvraag"; $a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek";
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; $a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
$a->strings["Please answer the following:"] = "Beantwoord het volgende:"; $a->strings["Please answer the following:"] = "Beantwoord het volgende:";
$a->strings["Does %s know you?"] = "Kent %s jou?"; $a->strings["Does %s know you?"] = "Kent %s jou?";
@ -1111,7 +1111,7 @@ $a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:";
$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web"; $a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- Gebruik a.u.b. niet dit formulier. Vul %s in in je Diaspora zoekbalk."; $a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- Gebruik a.u.b. niet dit formulier. Vul %s in in je Diaspora zoekbalk.";
$a->strings["Your Identity Address:"] = "Adres van uw identiteit:"; $a->strings["Your Identity Address:"] = "Adres van uw identiteit:";
$a->strings["Submit Request"] = "Aanvraag Verzenden"; $a->strings["Submit Request"] = "Aanvraag indienen";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s"; $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s";
$a->strings["Global Directory"] = "Globale gids"; $a->strings["Global Directory"] = "Globale gids";
$a->strings["Find on this site"] = "Op deze website zoeken"; $a->strings["Find on this site"] = "Op deze website zoeken";
@ -1157,7 +1157,7 @@ $a->strings["Export your account info and contacts. Use this to make a backup of
$a->strings["Export all"] = "Alles exporteren"; $a->strings["Export all"] = "Alles exporteren";
$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"; $a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)";
$a->strings["- select -"] = "- Kies -"; $a->strings["- select -"] = "- Kies -";
$a->strings["[Embedded content - reload page to view]"] = ""; $a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]";
$a->strings["Contact added"] = "Contact toegevoegd"; $a->strings["Contact added"] = "Contact toegevoegd";
$a->strings["This is Friendica, version"] = "Dit is Friendica, versie"; $a->strings["This is Friendica, version"] = "Dit is Friendica, versie";
$a->strings["running at web location"] = "draaiend op web-adres"; $a->strings["running at web location"] = "draaiend op web-adres";
@ -1193,7 +1193,7 @@ $a->strings["Image exceeds size limit of %d"] = "Afbeelding is groter dan de toe
$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken"; $a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken";
$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt."; $a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt.";
$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden."; $a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden.";
$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mail adres."; $a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres.";
$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica"; $a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."; $a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website.";
$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt."; $a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt.";
@ -1204,10 +1204,10 @@ $a->strings["%d message sent."] = array(
$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen"; $a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen";
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."; $a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken.";
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website."; $a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website.";
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = ""; $a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten.";
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."; $a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen.";
$a->strings["Send invitations"] = "Verstuur uitnodigingen"; $a->strings["Send invitations"] = "Verstuur uitnodigingen";
$a->strings["Enter email addresses, one per line:"] = "Vul e-mail adressen in, één per lijn:"; $a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:";
$a->strings["Your message:"] = "Jouw bericht:"; $a->strings["Your message:"] = "Jouw bericht:";
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."; $a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen.";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code"; $a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code";
@ -1215,7 +1215,7 @@ $a->strings["Once you have registered, please connect with me via my profile pag
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"; $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
$a->strings["No recipient selected."] = "Geen ontvanger geselecteerd."; $a->strings["No recipient selected."] = "Geen ontvanger geselecteerd.";
$a->strings["Unable to check your home location."] = ""; $a->strings["Unable to check your home location."] = "Niet in staat om je huidige locatie vast te stellen";
$a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden."; $a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden.";
$a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten."; $a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten.";
$a->strings["Message sent."] = "Bericht verzonden."; $a->strings["Message sent."] = "Bericht verzonden.";
@ -1224,11 +1224,11 @@ $a->strings["Send Private Message"] = "Verstuur privébericht";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."; $a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat.";
$a->strings["To:"] = "Aan:"; $a->strings["To:"] = "Aan:";
$a->strings["Subject:"] = "Onderwerp:"; $a->strings["Subject:"] = "Onderwerp:";
$a->strings["Time Conversion"] = ""; $a->strings["Time Conversion"] = "Tijdsconversie";
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones.";
$a->strings["UTC time: %s"] = "UTC tijd: %s"; $a->strings["UTC time: %s"] = "UTC tijd: %s";
$a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s"; $a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s";
$a->strings["Converted localtime: %s"] = ""; $a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s";
$a->strings["Please select your timezone:"] = "Selecteer je tijdzone:"; $a->strings["Please select your timezone:"] = "Selecteer je tijdzone:";
$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar."; $a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar.";
$a->strings["Visible to:"] = "Zichtbaar voor:"; $a->strings["Visible to:"] = "Zichtbaar voor:";
@ -1244,12 +1244,12 @@ $a->strings["click here to login"] = "klik hier om in te loggen";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina."; $a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina.";
$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s"; $a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s";
$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; $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."] = "Geef je e-mail adres en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies.";
$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:"; $a->strings["Nickname or Email: "] = "Bijnaam of e-mail:";
$a->strings["Reset"] = "Opnieuw"; $a->strings["Reset"] = "Opnieuw";
$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud"; $a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud";
$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's"; $a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of groep pagina's die jouw account details delen of die waar jij \"beheer\" rechten hebt gekregen."; $a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen.";
$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:"; $a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:";
$a->strings["Profile Match"] = "Profielmatch"; $a->strings["Profile Match"] = "Profielmatch";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel.";
@ -1298,12 +1298,12 @@ $a->strings["Group: "] = "Groep:";
$a->strings["Contact: "] = "Contact: "; $a->strings["Contact: "] = "Contact: ";
$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."; $a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden.";
$a->strings["Invalid contact."] = "Ongeldig contact."; $a->strings["Invalid contact."] = "Ongeldig contact.";
$a->strings["Invalid request identifier."] = "Ongeldige aanvraagidentificatie."; $a->strings["Invalid request identifier."] = "Ongeldige <em>request identifier</em>.";
$a->strings["Discard"] = "Verwerpen"; $a->strings["Discard"] = "Verwerpen";
$a->strings["Ignore"] = "Negeren"; $a->strings["Ignore"] = "Negeren";
$a->strings["System"] = "Systeem"; $a->strings["System"] = "Systeem";
$a->strings["Show Ignored Requests"] = "Toon genegeerde aanvragen"; $a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken";
$a->strings["Hide Ignored Requests"] = "Verberg genegeerde aanvragen"; $a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken";
$a->strings["Notification type: "] = "Notificatiesoort:"; $a->strings["Notification type: "] = "Notificatiesoort:";
$a->strings["Friend Suggestion"] = "Vriendschapsvoorstel"; $a->strings["Friend Suggestion"] = "Vriendschapsvoorstel";
$a->strings["suggested by %s"] = "Voorgesteld door %s"; $a->strings["suggested by %s"] = "Voorgesteld door %s";
@ -1319,7 +1319,7 @@ $a->strings["Sharer"] = "Deler";
$a->strings["Fan/Admirer"] = "Fan/Bewonderaar"; $a->strings["Fan/Admirer"] = "Fan/Bewonderaar";
$a->strings["Friend/Connect Request"] = "Vriendschapsverzoek"; $a->strings["Friend/Connect Request"] = "Vriendschapsverzoek";
$a->strings["New Follower"] = "Nieuwe Volger"; $a->strings["New Follower"] = "Nieuwe Volger";
$a->strings["No introductions."] = "Geen contactaanvragen."; $a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken.";
$a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk"; $a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk";
$a->strings["%s disliked %s's post"] = "%s vond het bericht van %s niet leuk"; $a->strings["%s disliked %s's post"] = "%s vond het bericht van %s niet leuk";
$a->strings["%s is now friends with %s"] = "%s is nu bevriend met %s"; $a->strings["%s is now friends with %s"] = "%s is nu bevriend met %s";
@ -1331,8 +1331,8 @@ $a->strings["No more system notifications."] = "Geen systeem notificaties meer."
$a->strings["System Notifications"] = "Systeem Notificaties"; $a->strings["System Notifications"] = "Systeem Notificaties";
$a->strings["No more personal notifications."] = "Geen persoonlijke notificaties meer"; $a->strings["No more personal notifications."] = "Geen persoonlijke notificaties meer";
$a->strings["Personal Notifications"] = "Persoonlijke Notificaties"; $a->strings["Personal Notifications"] = "Persoonlijke Notificaties";
$a->strings["No more home notifications."] = "Geen thuis notificaties meer"; $a->strings["No more home notifications."] = "Geen home-notificaties meer";
$a->strings["Home Notifications"] = "Thuis Notificaties"; $a->strings["Home Notifications"] = "Home-otificaties";
$a->strings["Photo Albums"] = "Fotoalbums"; $a->strings["Photo Albums"] = "Fotoalbums";
$a->strings["Contact Photos"] = "Contactfoto's"; $a->strings["Contact Photos"] = "Contactfoto's";
$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; $a->strings["Upload New Photos"] = "Nieuwe foto's uploaden";
@ -1366,7 +1366,7 @@ $a->strings["Edit photo"] = "Bewerk foto";
$a->strings["Use as profile photo"] = "Gebruik als profielfoto"; $a->strings["Use as profile photo"] = "Gebruik als profielfoto";
$a->strings["Private Message"] = "Privébericht"; $a->strings["Private Message"] = "Privébericht";
$a->strings["View Full Size"] = "Bekijk in volledig formaat"; $a->strings["View Full Size"] = "Bekijk in volledig formaat";
$a->strings["Tags: "] = "Tags: "; $a->strings["Tags: "] = "Labels: ";
$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]"; $a->strings["[Remove any tag]"] = "[Alle labels verwijderen]";
$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)"; $a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)";
$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)"; $a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)";
@ -1383,12 +1383,12 @@ $a->strings["Comment"] = "Reacties";
$a->strings["Recent Photos"] = "Recente foto's"; $a->strings["Recent Photos"] = "Recente foto's";
$a->strings["Welcome to Friendica"] = "Welkom bij Friendica"; $a->strings["Welcome to Friendica"] = "Welkom bij Friendica";
$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden"; $a->strings["New Member Checklist"] = "Checklist voor nieuwe leden";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je thuispagina. Daarna zal de verwijzing stilletjes verdwijnen."; $a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je homepagina. Daarna zal de verwijzing stilletjes verdwijnen.";
$a->strings["Getting Started"] = "Aan de slag"; $a->strings["Getting Started"] = "Aan de slag";
$a->strings["Friendica Walk-Through"] = "Doorloop Friendica"; $a->strings["Friendica Walk-Through"] = "Doorloop Friendica";
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; $a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden.";
$a->strings["Go to Your Settings"] = "Ga naar je instellingen"; $a->strings["Go to Your Settings"] = "Ga naar je instellingen";
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Verander je initieel wachtwoord op je <em>Instellingen</em> pagina. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mail adres - en zal nuttig zijn om vrienden te maken op het vrije sociale web."; $a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web.";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden."; $a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden.";
$a->strings["Upload Profile Photo"] = "Profielfoto uploaden"; $a->strings["Upload Profile Photo"] = "Profielfoto uploaden";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Laad een profielfoto op, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen."; $a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Laad een profielfoto op, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen.";
@ -1397,16 +1397,16 @@ $a->strings["Edit your <strong>default</strong> profile to your liking. Review t
$a->strings["Profile Keywords"] = "Sleutelwoorden voor dit profiel"; $a->strings["Profile Keywords"] = "Sleutelwoorden voor dit profiel";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen."; $a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen.";
$a->strings["Connecting"] = "Verbinding aan het maken"; $a->strings["Connecting"] = "Verbinding aan het maken";
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = ""; $a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren.";
$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Als</em> dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken."; $a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Als</em> dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken.";
$a->strings["Importing Emails"] = "E-mails importeren"; $a->strings["Importing Emails"] = "E-mails importeren";
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Vul je e-mail adres informatie in op je Connector Instellingen pagina als je vrienden of rondzendlijsten uit je e-mail inbox wilt importeren, en met hen wilt communiceren"; $a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren";
$a->strings["Go to Your Contacts Page"] = "Ga naar je contactenpagina"; $a->strings["Go to Your Contacts Page"] = "Ga naar je contactenpagina";
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog."; $a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog.";
$a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website"; $a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd."; $a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd.";
$a->strings["Finding New People"] = "Nieuwe mensen vinden"; $a->strings["Finding New People"] = "Nieuwe mensen vinden";
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = ""; $a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden.";
$a->strings["Group Your Contacts"] = "Groepeer je contacten"; $a->strings["Group Your Contacts"] = "Groepeer je contacten";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. "; $a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. ";
$a->strings["Why Aren't My Posts Public?"] = "Waarom zijn mijn berichten niet openbaar?"; $a->strings["Why Aren't My Posts Public?"] = "Waarom zijn mijn berichten niet openbaar?";
@ -1433,7 +1433,7 @@ $a->strings["Database Login Name"] = "Gebruikersnaam database";
$a->strings["Database Login Password"] = "Wachtwoord database"; $a->strings["Database Login Password"] = "Wachtwoord database";
$a->strings["Database Name"] = "Naam database"; $a->strings["Database Name"] = "Naam database";
$a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder"; $a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mail adres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."; $a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken.";
$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website"; $a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website";
$a->strings["Site settings"] = "Website-instellingen"; $a->strings["Site settings"] = "Website-instellingen";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver."; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver.";
@ -1448,7 +1448,7 @@ $a->strings["The command line version of PHP on your system does not have \"regi
$a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken."; $a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken.";
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; $a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; $a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = ""; $a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait.";
$a->strings["Generate encryption keys"] = ""; $a->strings["Generate encryption keys"] = "";
$a->strings["libCurl PHP module"] = "libCurl PHP module"; $a->strings["libCurl PHP module"] = "libCurl PHP module";
$a->strings["GD graphics PHP module"] = "GD graphics PHP module"; $a->strings["GD graphics PHP module"] = "GD graphics PHP module";
@ -1498,7 +1498,7 @@ $a->strings["(Update was not successful)"] = "(Wijziging is niet geslaagd)";
$a->strings["Suggest friends"] = "Stel vrienden voor"; $a->strings["Suggest friends"] = "Stel vrienden voor";
$a->strings["Network type: %s"] = "Netwerk type: %s"; $a->strings["Network type: %s"] = "Netwerk type: %s";
$a->strings["View all contacts"] = "Alle contacten zien"; $a->strings["View all contacts"] = "Alle contacten zien";
$a->strings["Toggle Blocked status"] = ""; $a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status";
$a->strings["Unignore"] = "Negeer niet meer"; $a->strings["Unignore"] = "Negeer niet meer";
$a->strings["Toggle Ignored status"] = "Schakel negeer status"; $a->strings["Toggle Ignored status"] = "Schakel negeer status";
$a->strings["Unarchive"] = "Archiveer niet meer"; $a->strings["Unarchive"] = "Archiveer niet meer";
@ -1540,12 +1540,12 @@ $a->strings["Mutual Friendship"] = "Wederzijdse vriendschap";
$a->strings["is a fan of yours"] = "Is een fan van jou"; $a->strings["is a fan of yours"] = "Is een fan van jou";
$a->strings["you are a fan of"] = "Jij bent een fan van"; $a->strings["you are a fan of"] = "Jij bent een fan van";
$a->strings["Search your contacts"] = "Doorzoek je contacten"; $a->strings["Search your contacts"] = "Doorzoek je contacten";
$a->strings["Post successful."] = ""; $a->strings["Post successful."] = "Bericht succesvol geplaatst.";
$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden."; $a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."; $a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website.";
$a->strings["Image uploaded but image cropping failed."] = ""; $a->strings["Image uploaded but image cropping failed."] = "Afbeelding opgeladen, maar bijsnijden mislukt.";
$a->strings["Image size reduction [%s] failed."] = ""; $a->strings["Image size reduction [%s] failed."] = "Verkleining van de afbeelding [%s] mislukt.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen.";
$a->strings["Unable to process image"] = "Ik kan de afbeelding niet verwerken"; $a->strings["Unable to process image"] = "Ik kan de afbeelding niet verwerken";
$a->strings["Upload File:"] = "Upload bestand:"; $a->strings["Upload File:"] = "Upload bestand:";
$a->strings["Select a profile:"] = "Kies een profiel:"; $a->strings["Select a profile:"] = "Kies een profiel:";
@ -1586,7 +1586,7 @@ $a->strings["This entry was edited"] = "";
$a->strings["via"] = "via"; $a->strings["via"] = "via";
$a->strings["Theme settings"] = "Thema instellingen"; $a->strings["Theme settings"] = "Thema instellingen";
$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; $a->strings["Set resize level for images in posts and comments (width and height)"] = "";
$a->strings["Set font-size for posts and comments"] = ""; $a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in";
$a->strings["Set theme width"] = "Stel breedte van het thema in"; $a->strings["Set theme width"] = "Stel breedte van het thema in";
$a->strings["Color scheme"] = "Kleurschema"; $a->strings["Color scheme"] = "Kleurschema";
$a->strings["Set line-height for posts and comments"] = ""; $a->strings["Set line-height for posts and comments"] = "";
@ -1597,10 +1597,10 @@ $a->strings["Set zoomfactor for Earth Layer"] = "";
$a->strings["Set longitude (X) for Earth Layers"] = ""; $a->strings["Set longitude (X) for Earth Layers"] = "";
$a->strings["Set latitude (Y) for Earth Layers"] = ""; $a->strings["Set latitude (Y) for Earth Layers"] = "";
$a->strings["Community Pages"] = "Gemeenschapspagina's"; $a->strings["Community Pages"] = "Gemeenschapspagina's";
$a->strings["Earth Layers"] = ""; $a->strings["Earth Layers"] = "Earth Layers";
$a->strings["Community Profiles"] = "Gemeenschapsprofielen"; $a->strings["Community Profiles"] = "Gemeenschapsprofielen";
$a->strings["Help or @NewHere ?"] = ""; $a->strings["Help or @NewHere ?"] = "";
$a->strings["Connect Services"] = ""; $a->strings["Connect Services"] = "Diensten verbinden";
$a->strings["Find Friends"] = "Zoek vrienden"; $a->strings["Find Friends"] = "Zoek vrienden";
$a->strings["Last tweets"] = "Recente tweets"; $a->strings["Last tweets"] = "Recente tweets";
$a->strings["Last users"] = "Laatste gebruikers"; $a->strings["Last users"] = "Laatste gebruikers";
@ -1623,7 +1623,7 @@ $a->strings["show fewer"] = "Minder tonen";
$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden."; $a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden.";
$a->strings["Update Error at %s"] = "Wijzigingsfout op %s"; $a->strings["Update Error at %s"] = "Wijzigingsfout op %s";
$a->strings["Create a New Account"] = "Nieuw account aanmaken"; $a->strings["Create a New Account"] = "Nieuw account aanmaken";
$a->strings["Nickname or Email address: "] = "Bijnaam of e-mail adres:"; $a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:";
$a->strings["Password: "] = "Wachtwoord:"; $a->strings["Password: "] = "Wachtwoord:";
$a->strings["Remember me"] = "Onthou me"; $a->strings["Remember me"] = "Onthou me";
$a->strings["Or login using OpenID: "] = "Of log in met OpenID:"; $a->strings["Or login using OpenID: "] = "Of log in met OpenID:";
@ -1636,8 +1636,8 @@ $a->strings["Requested account is not available."] = "Gevraagde account is niet
$a->strings["Edit profile"] = "Bewerk profiel"; $a->strings["Edit profile"] = "Bewerk profiel";
$a->strings["Message"] = "Bericht"; $a->strings["Message"] = "Bericht";
$a->strings["Manage/edit profiles"] = "Beheer/Wijzig profielen"; $a->strings["Manage/edit profiles"] = "Beheer/Wijzig profielen";
$a->strings["g A l F d"] = ""; $a->strings["g A l F d"] = "G l j F";
$a->strings["F d"] = ""; $a->strings["F d"] = "d F";
$a->strings["[today]"] = "[vandaag]"; $a->strings["[today]"] = "[vandaag]";
$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; $a->strings["Birthday Reminders"] = "Verjaardagsherinneringen";
$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; $a->strings["Birthdays this week:"] = "Verjaardagen deze week:";
@ -1647,5 +1647,5 @@ $a->strings["Events this week:"] = "Gebeurtenissen deze week:";
$a->strings["Status Messages and Posts"] = "Statusmeldingen en berichten"; $a->strings["Status Messages and Posts"] = "Statusmeldingen en berichten";
$a->strings["Profile Details"] = "Profiel Details"; $a->strings["Profile Details"] = "Profiel Details";
$a->strings["Videos"] = "Video's"; $a->strings["Videos"] = "Video's";
$a->strings["Events and Calendar"] = "Gebeurtenissen en Kalender"; $a->strings["Events and Calendar"] = "Gebeurtenissen en kalender";
$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien"; $a->strings["Only You Can See This"] = "Alleen jij kunt dit zien";

View File

@ -62,7 +62,11 @@
<input type="submit" name="submit" id="register-submit-button" value="{{$regbutt}}" /> <input type="submit" name="submit" id="register-submit-button" value="{{$regbutt}}" />
</div> </div>
<div id="register-submit-end" ></div> <div id="register-submit-end" ></div>
<h3>{{$importh}}</h3>
<div id ="import-profile">
<a href="/uimport">{{$importt}}</a>
</div>
</form> </form>
{{$license}} {{$license}}

View File

@ -23,13 +23,12 @@ function theme_content(&$a){
$close_helpers = get_pconfig(local_user(), 'diabook', 'close_helpers' ); $close_helpers = get_pconfig(local_user(), 'diabook', 'close_helpers' );
$close_services = get_pconfig(local_user(), 'diabook', 'close_services' ); $close_services = get_pconfig(local_user(), 'diabook', 'close_services' );
$close_friends = get_pconfig(local_user(), 'diabook', 'close_friends' ); $close_friends = get_pconfig(local_user(), 'diabook', 'close_friends' );
$close_twitter = get_pconfig(local_user(), 'diabook', 'close_twitter' );
$close_lastusers = get_pconfig(local_user(), 'diabook', 'close_lastusers' ); $close_lastusers = get_pconfig(local_user(), 'diabook', 'close_lastusers' );
$close_lastphotos = get_pconfig(local_user(), 'diabook', 'close_lastphotos' ); $close_lastphotos = get_pconfig(local_user(), 'diabook', 'close_lastphotos' );
$close_lastlikes = get_pconfig(local_user(), 'diabook', 'close_lastlikes' ); $close_lastlikes = get_pconfig(local_user(), 'diabook', 'close_lastlikes' );
return diabook_form($a,$font_size, $line_height, $resolution, $color, $TSearchTerm, $ELZoom, $ELPosX, $ELPosY, $close_pages, $close_mapquery, $close_profiles, $close_helpers, $close_services, $close_friends, $close_twitter, $close_lastusers, $close_lastphotos, $close_lastlikes); return diabook_form($a,$font_size, $line_height, $resolution, $color, $TSearchTerm, $ELZoom, $ELPosX, $ELPosY, $close_pages, $close_mapquery, $close_profiles, $close_helpers, $close_services, $close_friends, $close_lastusers, $close_lastphotos, $close_lastlikes);
} }
function theme_post(&$a){ function theme_post(&$a){
@ -52,7 +51,6 @@ function theme_post(&$a){
set_pconfig(local_user(), 'diabook', 'close_helpers', $_POST['diabook_close_helpers']); set_pconfig(local_user(), 'diabook', 'close_helpers', $_POST['diabook_close_helpers']);
set_pconfig(local_user(), 'diabook', 'close_services', $_POST['diabook_close_services']); set_pconfig(local_user(), 'diabook', 'close_services', $_POST['diabook_close_services']);
set_pconfig(local_user(), 'diabook', 'close_friends', $_POST['diabook_close_friends']); set_pconfig(local_user(), 'diabook', 'close_friends', $_POST['diabook_close_friends']);
set_pconfig(local_user(), 'diabook', 'close_twitter', $_POST['diabook_close_twitter']);
set_pconfig(local_user(), 'diabook', 'close_lastusers', $_POST['diabook_close_lastusers']); set_pconfig(local_user(), 'diabook', 'close_lastusers', $_POST['diabook_close_lastusers']);
set_pconfig(local_user(), 'diabook', 'close_lastphotos', $_POST['diabook_close_lastphotos']); set_pconfig(local_user(), 'diabook', 'close_lastphotos', $_POST['diabook_close_lastphotos']);
set_pconfig(local_user(), 'diabook', 'close_lastlikes', $_POST['diabook_close_lastlikes']); set_pconfig(local_user(), 'diabook', 'close_lastlikes', $_POST['diabook_close_lastlikes']);
@ -76,12 +74,11 @@ function theme_admin(&$a){
$close_helpers = get_config('diabook', 'close_helpers' ); $close_helpers = get_config('diabook', 'close_helpers' );
$close_services = get_config('diabook', 'close_services' ); $close_services = get_config('diabook', 'close_services' );
$close_friends = get_config('diabook', 'close_friends' ); $close_friends = get_config('diabook', 'close_friends' );
$close_twitter = get_config('diabook', 'close_twitter' );
$close_lastusers = get_config('diabook', 'close_lastusers' ); $close_lastusers = get_config('diabook', 'close_lastusers' );
$close_lastphotos = get_config('diabook', 'close_lastphotos' ); $close_lastphotos = get_config('diabook', 'close_lastphotos' );
$close_lastlikes = get_config('diabook', 'close_lastlikes' ); $close_lastlikes = get_config('diabook', 'close_lastlikes' );
return diabook_form($a,$font_size, $line_height, $resolution, $color, $TSearchTerm, $ELZoom, $ELPosX, $ELPosY, $close_pages, $close_mapquery, $close_profiles, $close_helpers, $close_services, $close_friends, $close_twitter, $close_lastusers, $close_lastphotos, $close_lastlikes); return diabook_form($a,$font_size, $line_height, $resolution, $color, $TSearchTerm, $ELZoom, $ELPosX, $ELPosY, $close_pages, $close_mapquery, $close_profiles, $close_helpers, $close_services, $close_friends, $close_lastusers, $close_lastphotos, $close_lastlikes);
} }
function theme_admin_post(&$a){ function theme_admin_post(&$a){
@ -99,7 +96,6 @@ function theme_admin_post(&$a){
set_config('diabook', 'close_helpers', $_POST['diabook_close_helpers']); set_config('diabook', 'close_helpers', $_POST['diabook_close_helpers']);
set_config('diabook', 'close_services', $_POST['diabook_close_services']); set_config('diabook', 'close_services', $_POST['diabook_close_services']);
set_config('diabook', 'close_friends', $_POST['diabook_close_friends']); set_config('diabook', 'close_friends', $_POST['diabook_close_friends']);
set_config('diabook', 'close_twitter', $_POST['diabook_close_twitter']);
set_config('diabook', 'close_lastusers', $_POST['diabook_close_lastusers']); set_config('diabook', 'close_lastusers', $_POST['diabook_close_lastusers']);
set_config('diabook', 'close_lastphotos', $_POST['diabook_close_lastphotos']); set_config('diabook', 'close_lastphotos', $_POST['diabook_close_lastphotos']);
set_config('diabook', 'close_lastlikes', $_POST['diabook_close_lastlikes']); set_config('diabook', 'close_lastlikes', $_POST['diabook_close_lastlikes']);
@ -108,7 +104,7 @@ function theme_admin_post(&$a){
} }
function diabook_form(&$a, $font_size, $line_height, $resolution, $color, $TSearchTerm, $ELZoom, $ELPosX, $ELPosY, $close_pages, $close_mapquery, $close_profiles, $close_helpers, $close_services, $close_friends, $close_twitter, $close_lastusers, $close_lastphotos, $close_lastlikes){ function diabook_form(&$a, $font_size, $line_height, $resolution, $color, $TSearchTerm, $ELZoom, $ELPosX, $ELPosY, $close_pages, $close_mapquery, $close_profiles, $close_helpers, $close_services, $close_friends, $close_lastusers, $close_lastphotos, $close_lastlikes){
$line_heights = array( $line_heights = array(
"1.3"=>"1.3", "1.3"=>"1.3",
"---"=>"---", "---"=>"---",
@ -156,7 +152,6 @@ function diabook_form(&$a, $font_size, $line_height, $resolution, $color, $TSear
'$line_height' => array('diabook_line_height', t('Set line-height for posts and comments'), $line_height, '', $line_heights), '$line_height' => array('diabook_line_height', t('Set line-height for posts and comments'), $line_height, '', $line_heights),
'$resolution' => array('diabook_resolution', t('Set resolution for middle column'), $resolution, '', $resolutions), '$resolution' => array('diabook_resolution', t('Set resolution for middle column'), $resolution, '', $resolutions),
'$color' => array('diabook_color', t('Set color scheme'), $color, '', $colors), '$color' => array('diabook_color', t('Set color scheme'), $color, '', $colors),
'$TSearchTerm' => array('diabook_TSearchTerm', t('Set twitter search term'), $TSearchTerm, '', $TSearchTerm),
'$ELZoom' => array('diabook_ELZoom', t('Set zoomfactor for Earth Layer'), $ELZoom, '', $ELZoom), '$ELZoom' => array('diabook_ELZoom', t('Set zoomfactor for Earth Layer'), $ELZoom, '', $ELZoom),
'$ELPosX' => array('diabook_ELPosX', t('Set longitude (X) for Earth Layers'), $ELPosX, '', $ELPosX), '$ELPosX' => array('diabook_ELPosX', t('Set longitude (X) for Earth Layers'), $ELPosX, '', $ELPosX),
'$ELPosY' => array('diabook_ELPosY', t('Set latitude (Y) for Earth Layers'), $ELPosY, '', $ELPosY), '$ELPosY' => array('diabook_ELPosY', t('Set latitude (Y) for Earth Layers'), $ELPosY, '', $ELPosY),
@ -166,7 +161,6 @@ function diabook_form(&$a, $font_size, $line_height, $resolution, $color, $TSear
'$close_helpers' => array('diabook_close_helpers', t('Help or @NewHere ?'), $close_helpers, '', $close_or_not), '$close_helpers' => array('diabook_close_helpers', t('Help or @NewHere ?'), $close_helpers, '', $close_or_not),
'$close_services' => array('diabook_close_services', t('Connect Services'), $close_services, '', $close_or_not), '$close_services' => array('diabook_close_services', t('Connect Services'), $close_services, '', $close_or_not),
'$close_friends' => array('diabook_close_friends', t('Find Friends'), $close_friends, '', $close_or_not), '$close_friends' => array('diabook_close_friends', t('Find Friends'), $close_friends, '', $close_or_not),
'$close_twitter' => array('diabook_close_twitter', t('Last tweets'), $close_twitter, '', $close_or_not),
'$close_lastusers' => array('diabook_close_lastusers', t('Last users'), $close_lastusers, '', $close_or_not), '$close_lastusers' => array('diabook_close_lastusers', t('Last users'), $close_lastusers, '', $close_or_not),
'$close_lastphotos' => array('diabook_close_lastphotos', t('Last photos'), $close_lastphotos, '', $close_or_not), '$close_lastphotos' => array('diabook_close_lastphotos', t('Last photos'), $close_lastphotos, '', $close_or_not),
'$close_lastlikes' => array('diabook_close_lastlikes', t('Last likes'), $close_lastlikes, '', $close_or_not), '$close_lastlikes' => array('diabook_close_lastlikes', t('Last likes'), $close_lastlikes, '', $close_or_not),

View File

@ -229,7 +229,7 @@
.type-unkn { background-position: -80px 0px; } .type-unkn { background-position: -80px 0px; }
.icon.drop, .icon.drophide { .icon.drop, .icon.drophide {
float: left; float: right;
} }
.icon { .icon {
@ -873,12 +873,14 @@ nav .nav-notify {
nav .nav-notify.show { nav .nav-notify.show {
display: block; display: block;
} }
nav #nav-help-link, nav #nav-help-link,
nav #nav-search-link, nav #nav-search-link,
nav #nav-directory-link, nav #nav-directory-link,
nav #nav-apps-link, nav #nav-apps-link,
nav #nav-site-linkmenu, nav #nav-site-linkmenu,
nav #nav-home-link, nav #nav-home-link,
nav #nav-login-link,
nav #nav-user-linkmenu nav #nav-user-linkmenu
{ {
float: right; float: right;
@ -886,18 +888,23 @@ nav #nav-user-linkmenu
nav #nav-user-linkmenu{ nav #nav-user-linkmenu{
margin-right: 0px; margin-right: 0px;
} }
nav #nav-home-link, #nav-directory-link, #nav-apps-link{ nav #nav-home-link, #nav-directory-link, #nav-login-link, #nav-apps-link{
margin-left: 0px; margin-left: 0px;
margin-right: 0px; margin-right: 0px;
font-weight: bold; font-weight: bold;
margin: 3px 5px; margin: 3px 5px;
font-size: 14px;
} }
nav #nav-directory-link{ nav #nav-directory-link{
margin-right: 0px; margin-right: 10px;
} }
li#nav-site-linkmenu.nav-menu-icon{
display: none;
}
nav #nav-home-link{ nav #nav-home-link{
margin-left: 0px; margin-left: 0px;
display: none;
} }
nav #nav-help-link .menu-popup, nav #nav-help-link .menu-popup,
nav #nav-search-link .menu-popup, nav #nav-search-link .menu-popup,
@ -908,6 +915,7 @@ nav #nav-site-linkmenu .menu-popup {
left: auto; left: auto;
} }
nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/messages.png"); background-image: url("../../../view/theme/diabook/diabook-aerith/icons/messages.png");
} }
@ -1263,6 +1271,9 @@ aside #login-extra-links{
height: 22px; height: 22px;
width: 22px; width: 22px;
} }
#group-all-contacts{
overflow: auto;
}
.icon.text_add { .icon.text_add {
background-image: url("../../../images/icons/16/add.png"); background-image: url("../../../images/icons/16/add.png");
float: right; float: right;
@ -1398,6 +1409,9 @@ body .pageheader{
#id_openid_url { #id_openid_url {
width: 173px; width: 173px;
} }
.contact-edit-submit{
display: block;
}
#contact-edit-end { #contact-edit-end {
} }
.pager { .pager {
@ -1762,6 +1776,17 @@ body .pageheader{
background-color: #fff797; background-color: #fff797;
} }
span#jot-preview-link.tab.button{
float: right;
margin-left: 10px;
margin-right: 14px;
margin-top: 2px;
font-size: 11px;
font-weight: bolder;
cursor: pointer;
border: 0px;
}
.wall-item-tags { .wall-item-tags {
padding-top: 1px; padding-top: 1px;
padding-bottom: 2px; padding-bottom: 2px;

View File

@ -228,7 +228,7 @@
.type-unkn { background-position: -80px 0px; } .type-unkn { background-position: -80px 0px; }
.icon.drop, .icon.drophide { .icon.drop, .icon.drophide {
float: left; float: right;
} }
.icon { .icon {
@ -852,6 +852,7 @@ nav #nav-directory-link,
nav #nav-apps-link, nav #nav-apps-link,
nav #nav-site-linkmenu, nav #nav-site-linkmenu,
nav #nav-home-link, nav #nav-home-link,
nav #nav-login-link,
nav #nav-user-linkmenu nav #nav-user-linkmenu
{ {
float: right; float: right;
@ -859,17 +860,23 @@ nav #nav-user-linkmenu
nav #nav-user-linkmenu{ nav #nav-user-linkmenu{
margin-right: 0px; margin-right: 0px;
} }
nav #nav-home-link, #nav-directory-link, #nav-apps-link{ nav #nav-home-link, #nav-directory-link, #nav-login-link, #nav-apps-link{
margin-left: 0px; margin-left: 0px;
margin-right: 0px; margin-right: 0px;
font-weight: bold; font-weight: bold;
margin: 3px 5px; margin: 3px 5px;
} }
nav #nav-directory-link{ nav #nav-directory-link{
margin-right: 0px; margin-right: 10px;
} }
li#nav-site-linkmenu.nav-menu-icon{
display: none;
}
nav #nav-home-link{ nav #nav-home-link{
margin-left: 0px; margin-left: 0px;
display: none;
} }
nav #nav-help-link .menu-popup, nav #nav-help-link .menu-popup,
nav #nav-search-link .menu-popup, nav #nav-search-link .menu-popup,
@ -1223,6 +1230,9 @@ aside #login-extra-links{
height: 22px; height: 22px;
width: 22px; width: 22px;
} }
#group-all-contacts{
overflow: auto;
}
.icon.text_add { .icon.text_add {
background-image: url("../../../images/icons/16/add.png"); background-image: url("../../../images/icons/16/add.png");
float: right; float: right;
@ -1358,6 +1368,9 @@ body .pageheader{
#id_openid_url { #id_openid_url {
width: 173px; width: 173px;
} }
.contact-edit-submit{
display: block;
}
#contact-edit-end { #contact-edit-end {
} }
.pager { .pager {
@ -1720,6 +1733,17 @@ body .pageheader{
background-color: #fff797; background-color: #fff797;
} }
span#jot-preview-link.tab.button{
float: right;
margin-left: 10px;
margin-right: 14px;
margin-top: 2px;
font-size: 11px;
font-weight: bolder;
cursor: pointer;
border: 0px;
}
.wall-item-tags { .wall-item-tags {
padding-top: 1px; padding-top: 1px;
padding-bottom: 2px; padding-bottom: 2px;

View File

@ -240,7 +240,7 @@
.type-unkn { background-position: -80px 0px; } .type-unkn { background-position: -80px 0px; }
.icon.drop, .icon.drophide { .icon.drop, .icon.drophide {
float: left; float: right;
} }
.icon { .icon {
@ -859,6 +859,7 @@ nav #nav-directory-link,
nav #nav-apps-link, nav #nav-apps-link,
nav #nav-site-linkmenu, nav #nav-site-linkmenu,
nav #nav-home-link, nav #nav-home-link,
nav #nav-login-link,
nav #nav-user-linkmenu nav #nav-user-linkmenu
{ {
float: right; float: right;
@ -866,17 +867,23 @@ nav #nav-user-linkmenu
nav #nav-user-linkmenu{ nav #nav-user-linkmenu{
margin-right: 0px; margin-right: 0px;
} }
nav #nav-home-link, #nav-directory-link, #nav-apps-link{ nav #nav-home-link, #nav-directory-link, #nav-login-link, #nav-apps-link{
margin-left: 0px; margin-left: 0px;
margin-right: 0px; margin-right: 0px;
font-weight: bold; font-weight: bold;
margin: 3px 5px; margin: 3px 5px;
} }
nav #nav-directory-link{ nav #nav-directory-link{
margin-right: 0px; margin-right: 10px;
} }
li#nav-site-linkmenu.nav-menu-icon{
display: none;
}
nav #nav-home-link{ nav #nav-home-link{
margin-left: 0px; margin-left: 0px;
display: none;
} }
nav #nav-help-link .menu-popup, nav #nav-help-link .menu-popup,
nav #nav-search-link .menu-popup, nav #nav-search-link .menu-popup,
@ -887,6 +894,7 @@ nav #nav-site-linkmenu .menu-popup {
left: auto; left: auto;
} }
nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
background-image: url("../../../view/theme/diabook/diabook-dark/icons/messages2.png"); background-image: url("../../../view/theme/diabook/diabook-dark/icons/messages2.png");
} }
@ -1234,6 +1242,9 @@ aside #login-extra-links{
height: 22px; height: 22px;
width: 22px; width: 22px;
} }
#group-all-contacts{
overflow: auto;
}
.icon.text_add { .icon.text_add {
background-image: url("../../../images/icons/16/add.png"); background-image: url("../../../images/icons/16/add.png");
float: right; float: right;
@ -1371,6 +1382,9 @@ body .pageheader{
} }
#contact-edit-end { #contact-edit-end {
} }
.contact-edit-submit{
display: block;
}
.pager { .pager {
padding: 10px; padding: 10px;
text-align: center; text-align: center;
@ -1732,6 +1746,17 @@ body .pageheader{
background-color: #fff797; background-color: #fff797;
} }
span#jot-preview-link.tab.button{
float: right;
margin-left: 10px;
margin-right: 14px;
margin-top: 2px;
font-size: 11px;
font-weight: bolder;
cursor: pointer;
border: 0px;
}
.wall-item-tags { .wall-item-tags {
padding-top: 1px; padding-top: 1px;
padding-bottom: 2px; padding-bottom: 2px;

View File

@ -229,7 +229,7 @@
.type-unkn { background-position: -80px 0px; } .type-unkn { background-position: -80px 0px; }
.icon.drop, .icon.drophide { .icon.drop, .icon.drophide {
float: left; float: right;
} }
.icon { .icon {
@ -859,6 +859,7 @@ nav #nav-directory-link,
nav #nav-apps-link, nav #nav-apps-link,
nav #nav-site-linkmenu, nav #nav-site-linkmenu,
nav #nav-home-link, nav #nav-home-link,
nav #nav-login-link,
nav #nav-user-linkmenu nav #nav-user-linkmenu
{ {
float: right; float: right;
@ -866,18 +867,23 @@ nav #nav-user-linkmenu
nav #nav-user-linkmenu{ nav #nav-user-linkmenu{
margin-right: 0px; margin-right: 0px;
} }
nav #nav-home-link, #nav-directory-link, #nav-apps-link{ nav #nav-home-link, #nav-directory-link, #nav-login-link, #nav-apps-link{
margin-left: 0px; margin-left: 0px;
margin-right: 0px; margin-right: 0px;
font-weight: bold; font-weight: bold;
margin: 3px 5px; margin: 3px 5px;
font-size: 14px;
} }
nav #nav-directory-link{ nav #nav-directory-link{
margin-right: 0px; margin-right: 10px;
} }
li#nav-site-linkmenu.nav-menu-icon{
display: none;
}
nav #nav-home-link{ nav #nav-home-link{
margin-left: 0px; margin-left: 0px;
display: none;
} }
nav #nav-help-link .menu-popup, nav #nav-help-link .menu-popup,
nav #nav-search-link .menu-popup, nav #nav-search-link .menu-popup,
@ -888,6 +894,7 @@ nav #nav-site-linkmenu .menu-popup {
left: auto; left: auto;
} }
nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
background-image: url("../../../view/theme/diabook/diabook-green/icons/messages.png"); background-image: url("../../../view/theme/diabook/diabook-green/icons/messages.png");
} }
@ -1246,6 +1253,9 @@ aside #login-extra-links{
height: 22px; height: 22px;
width: 22px; width: 22px;
} }
#group-all-contacts{
overflow: auto;
}
.icon.text_add { .icon.text_add {
background-image: url("../../../images/icons/16/add.png"); background-image: url("../../../images/icons/16/add.png");
float: right; float: right;
@ -1383,6 +1393,9 @@ body .pageheader{
} }
#contact-edit-end { #contact-edit-end {
} }
.contact-edit-submit{
display: block;
}
.pager { .pager {
padding: 10px; padding: 10px;
text-align: center; text-align: center;
@ -1746,6 +1759,17 @@ body .pageheader{
background-color: #fff797; background-color: #fff797;
} }
span#jot-preview-link.tab.button{
float: right;
margin-left: 10px;
margin-right: 14px;
margin-top: 2px;
font-size: 11px;
font-weight: bolder;
cursor: pointer;
border: 0px;
}
.wall-item-tags { .wall-item-tags {
padding-top: 1px; padding-top: 1px;
padding-bottom: 2px; padding-bottom: 2px;

View File

@ -228,7 +228,7 @@
.type-unkn { background-position: -80px 0px; } .type-unkn { background-position: -80px 0px; }
.icon.drop, .icon.drophide { .icon.drop, .icon.drophide {
float: left; float: right;
} }
.icon { .icon {
@ -858,6 +858,7 @@ nav #nav-directory-link,
nav #nav-apps-link, nav #nav-apps-link,
nav #nav-site-linkmenu, nav #nav-site-linkmenu,
nav #nav-home-link, nav #nav-home-link,
nav #nav-login-link,
nav #nav-user-linkmenu nav #nav-user-linkmenu
{ {
float: right; float: right;
@ -865,18 +866,23 @@ nav #nav-user-linkmenu
nav #nav-user-linkmenu{ nav #nav-user-linkmenu{
margin-right: 0px; margin-right: 0px;
} }
nav #nav-home-link, #nav-directory-link, #nav-apps-link{ nav #nav-home-link, #nav-directory-link, #nav-login-link, #nav-apps-link{
margin-left: 0px; margin-left: 0px;
margin-right: 0px; margin-right: 0px;
font-weight: bold; font-weight: bold;
margin: 3px 5px; margin: 3px 5px;
font-size: 14px;
} }
nav #nav-directory-link{ nav #nav-directory-link{
margin-right: 0px; margin-right: 10px;
} }
li#nav-site-linkmenu.nav-menu-icon{
display: none;
}
nav #nav-home-link{ nav #nav-home-link{
margin-left: 0px; margin-left: 0px;
display: none;
} }
nav #nav-help-link .menu-popup, nav #nav-help-link .menu-popup,
nav #nav-search-link .menu-popup, nav #nav-search-link .menu-popup,
@ -887,6 +893,7 @@ nav #nav-site-linkmenu .menu-popup {
left: auto; left: auto;
} }
nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
background-image: url("../../../view/theme/diabook/diabook-pink/icons/messages.png"); background-image: url("../../../view/theme/diabook/diabook-pink/icons/messages.png");
} }
@ -1245,6 +1252,9 @@ aside #login-extra-links{
height: 22px; height: 22px;
width: 22px; width: 22px;
} }
#group-all-contacts{
overflow: auto;
}
.icon.text_add { .icon.text_add {
background-image: url("../../../images/icons/16/add.png"); background-image: url("../../../images/icons/16/add.png");
float: right; float: right;
@ -1382,6 +1392,9 @@ body .pageheader{
} }
#contact-edit-end { #contact-edit-end {
} }
.contact-edit-submit{
display: block;
}
.pager { .pager {
padding: 10px; padding: 10px;
text-align: center; text-align: center;
@ -1745,6 +1758,17 @@ body .pageheader{
background-color: #fff797; background-color: #fff797;
} }
span#jot-preview-link.tab.button{
float: right;
margin-left: 10px;
margin-right: 14px;
margin-top: 2px;
font-size: 11px;
font-weight: bolder;
cursor: pointer;
border: 0px;
}
.wall-item-tags { .wall-item-tags {
padding-top: 1px; padding-top: 1px;
padding-bottom: 2px; padding-bottom: 2px;

View File

@ -227,7 +227,7 @@
.type-unkn { background-position: -80px 0px; } .type-unkn { background-position: -80px 0px; }
.icon.drop, .icon.drophide { .icon.drop, .icon.drophide {
float: left; float: right;
} }
.icon { .icon {
@ -876,6 +876,7 @@ nav #nav-directory-link,
nav #nav-apps-link, nav #nav-apps-link,
nav #nav-site-linkmenu, nav #nav-site-linkmenu,
nav #nav-home-link, nav #nav-home-link,
nav #nav-login-link,
nav #nav-user-linkmenu nav #nav-user-linkmenu
{ {
float: right; float: right;
@ -883,18 +884,23 @@ nav #nav-user-linkmenu
nav #nav-user-linkmenu{ nav #nav-user-linkmenu{
margin-right: 0px; margin-right: 0px;
} }
nav #nav-home-link, #nav-directory-link, #nav-apps-link{ nav #nav-home-link, #nav-directory-link, #nav-login-link, #nav-apps-link{
margin-left: 0px; margin-left: 0px;
margin-right: 0px; margin-right: 0px;
font-weight: bold; font-weight: bold;
margin: 3px 5px; margin: 3px 5px;
font-size: 15px;
} }
nav #nav-directory-link{ nav #nav-directory-link{
margin-right: 0px; margin-right: 10px;
} }
li#nav-site-linkmenu.nav-menu-icon{
display: none;
}
nav #nav-home-link{ nav #nav-home-link{
margin-left: 0px; margin-left: 0px;
display: none;
} }
nav #nav-help-link .menu-popup, nav #nav-help-link .menu-popup,
nav #nav-search-link .menu-popup, nav #nav-search-link .menu-popup,
@ -905,6 +911,7 @@ nav #nav-site-linkmenu .menu-popup {
left: auto; left: auto;
} }
nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
background-image: url("../../../view/theme/diabook/diabook-red/icons/messages2.png"); background-image: url("../../../view/theme/diabook/diabook-red/icons/messages2.png");
} }
@ -1250,6 +1257,9 @@ aside #login-extra-links{
height: 22px; height: 22px;
width: 22px; width: 22px;
} }
#group-all-contacts{
overflow: auto;
}
.icon.text_add { .icon.text_add {
background-image: url("../../../images/icons/16/add.png"); background-image: url("../../../images/icons/16/add.png");
float: right; float: right;
@ -1385,6 +1395,9 @@ body .pageheader{
#id_openid_url { #id_openid_url {
width: 173px; width: 173px;
} }
.contact-edit-submit{
display: block;
}
#contact-edit-end { #contact-edit-end {
} }
.pager { .pager {
@ -1746,6 +1759,17 @@ body .pageheader{
background-color: #fff797; background-color: #fff797;
} }
span#jot-preview-link.tab.button{
float: right;
margin-left: 10px;
margin-right: 14px;
margin-top: 2px;
font-size: 11px;
font-weight: bolder;
cursor: pointer;
border: 0px;
}
.wall-item-tags { .wall-item-tags {
padding-top: 1px; padding-top: 1px;
padding-bottom: 2px; padding-bottom: 2px;

View File

@ -1,289 +0,0 @@
/*!
* jQuery Twitter Search Plugin
* Examples and documentation at: http://jquery.malsup.com/twitter/
* Copyright (c) 2010 M. Alsup
* Version: 1.04 (15-SEP-2011)
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
* Requires: jQuery v1.3.2 or later
*/
;(function($) {
$.fn.twitterSearch = function(options) {
if (typeof options == 'string')
options = { term: options };
return this.each(function() {
var grabFlag = false,
grabbing = false,
$frame = $(this), text, $text, $title, $bird, $cont, height, paused = false,
opts = $.extend(true, {}, $.fn.twitterSearch.defaults, options || {}, $.metadata ? $frame.metadata() : {});
opts.formatter = opts.formatter || $.fn.twitterSearch.formatter;
opts.filter = opts.filter || $.fn.twitterSearch.filter;
if (!opts.applyStyles) { // throw away all style defs
for (var css in opts.css)
opts.css[css] = {};
}
if (opts.title === null) // user can set to '' to suppress title
opts.title = opts.term;
opts.title = opts.title || '';
text = opts.titleLink ? ('<a href="'+ opts.titleLink +'">'+ opts.title + '</a>') : ('<span>' + opts.title +'</span>');
$text = $(text);
if (opts.titleLink)
$text.css(opts.css['titleLink']);
$title = $('<div class="twitterSearchTitle"></div>').append($text).appendTo($frame).css(opts.css['title']);
if (opts.bird) {
$bird = $('<img class="twitterSearchBird" src="'+opts.birdSrc+'" />').appendTo($title).css(opts.css['bird']);
if (opts.birdLink)
$bird.wrap('<a href="'+ opts.birdLink +'"></a>');
}
$cont = $('<div class="twitterSearchContainter"></div>').appendTo($frame).css(opts.css['container']);
cont = $cont[0];
if (opts.colorExterior)
$title.css('background-color',opts.colorExterior);
if (opts.colorInterior)
$cont.css('background-color',opts.colorInterior);
$frame.css(opts.css['frame']);
if (opts.colorExterior)
$frame.css('border-color',opts.colorExterior);
height = $frame.innerHeight() - $title.outerHeight();
$cont.height(height);
if (opts.pause)
$cont.hover(function(){paused = true;},function(){paused = false;});
$('<div class="twitterSearchLoading">Loading tweets..</div>').css(opts.css['loading']).appendTo($cont);
grabTweets();
function grabTweets() {
var url = opts.url + opts.term;
grabFlag = false;
grabbing = true;
// grab twitter stream
$.getJSONP({
url: url,
timeout: 30000,
error: function(xhr, status, e) {
failWhale(e);
},
complete: function() {
grabbing = false;
if (opts.refreshSeconds)
setTimeout(regrab, opts.refreshSeconds * 1000);
},
success: function(json) {
if (json.error) {
failWhale(json.error);
return;
}
$cont.fadeOut('fast',function() {
$cont.empty();
// iterate twitter results
$.each(json.results, function(i) {
if (!opts.filter.call(opts, this))
return; // skip this tweet
var $img, $text, w,
tweet = opts.formatter(this, opts),
$tweet = $(tweet);
$tweet.css(opts.css['tweet']);
$img = $tweet.find('.twitterSearchProfileImg').css(opts.css['img']);
$tweet.find('.twitterSearchUser').css(opts.css['user']);
$tweet.find('.twitterSearchTime').css(opts.css['time']);
$tweet.find('a').css(opts.css['a']);
$tweet.appendTo($cont);
$text = $tweet.find('.twitterSearchText').css(opts.css['text']);
if (opts.avatar) {
w = $img.outerWidth() + parseInt($tweet.css('paddingLeft'));
$text.css('paddingLeft', w);
}
});
$cont.fadeIn('fast');
if (json.results.length < 2) {
if (opts.refreshSeconds)
setTimeout(grabTweets, opts.refreshSeconds * 1000);
return;
}
// stage first animation
setTimeout(go, opts.timeout);
});
}
});
};
function regrab() {
grabFlag = true;
}
function failWhale(msg) {
var $fail = $('<div class="twitterSearchFail">' + msg + '</div>').css(opts.css['fail']);
$cont.empty().append($fail);
};
function go() {
if (paused || grabbing) {
setTimeout(go, 500);
return;
}
var h, $el = $cont.children(':first'), el = $el[0];
$el.animate(opts.animOut, opts.animOutSpeed, function() {
h = $el.outerHeight();
$el.animate({ marginTop: -h }, opts.animInSpeed, function() {
$el.css({ marginTop: 0, opacity: 1 });
/*@cc_on
try { el.style.removeAttribute('filter'); } // ie cleartype fix
catch(smother) {}
@*/
$el.css(opts.css['tweet']).show().appendTo($cont);
setTimeout(grabFlag ? grabTweets : go, opts.timeout);
});
});
}
});
};
$.fn.twitterSearch.filter = function(tweet) {
return true;
};
$.fn.twitterSearch.formatter = function(json, opts) {
var str, pretty,
text = json.text;
if (opts.anchors) {
text = json.text.replace(/(http:\/\/\S+)/g, '<a href="$1">$1</a>');
text = text.replace(/\@(\w+)/g, '<a href="http://twitter.com/$1">@$1</a>');
}
str = '<div class="twitterSearchTweet">';
if (opts.avatar)
str += '<img class="twitterSearchProfileImg" src="' + json.profile_image_url + '" />';
str += '<div><span class="twitterSearchUser"><a href="http://www.twitter.com/'+ json.from_user+'/status/'+ json.id_str +'">'
+ json.from_user + '</a></span>';
pretty = prettyDate(json.created_at);
if (opts.time && pretty)
str += ' <span class="twitterSearchTime">('+ pretty +')</span>'
str += '<div class="twitterSearchText">' + text + '</div></div></div>';
return str;
};
$.fn.twitterSearch.defaults = {
url: 'http://search.twitter.com/search.json?callback=?&q=',
anchors: true, // true or false (enable embedded links in tweets)
animOutSpeed: 500, // speed of animation for top tweet when removed
animInSpeed: 500, // speed of scroll animation for moving tweets up
animOut: { opacity: 0 }, // animation of top tweet when it is removed
applyStyles: true, // true or false (apply default css styling or not)
avatar: true, // true or false (show or hide twitter profile images)
bird: true, // true or false (show or hide twitter bird image)
birdLink: false, // url that twitter bird image should like to
birdSrc: 'http://cloud.github.com/downloads/malsup/twitter/tweet.gif', // twitter bird image
colorExterior: null, // css override of frame border-color and title background-color
colorInterior: null, // css override of container background-color
filter: null, // callback fn to filter tweets: fn(tweetJson) { /* return false to skip tweet */ }
formatter: null, // callback fn to build tweet markup
pause: false, // true or false (pause on hover)
refreshSeconds: 0, // number of seconds to wait before polling for newer tweets
term: '', // twitter search term
time: true, // true or false (show or hide the time that the tweet was sent)
timeout: 4000, // delay betweet tweet scroll
title: null, // title text to display when frame option is true (default = 'term' text)
titleLink: null, // url for title link
css: {
// default styling
a: { textDecoration: 'none', color: '#3B5998' },
bird: { width: '50px', height: '20px', position: 'absolute', left: '-30px', top: '-20px', border: 'none' },
container: { overflow: 'hidden', backgroundColor: '', height: '600px', width: '170px' },
fail: { background: '#6cc5c3 url(http://cloud.github.com/downloads/malsup/twitter/failwhale.png) no-repeat 50% 50%', height: '100%', padding: '10px' },
frame: { border: '0px solid #C2CFF1', borderRadius: '0px', '-moz-border-radius': '0px', '-webkit-border-radius': '0px' },
tweet: { padding: '5px 10px', clear: 'left' },
img: { 'float': 'left', margin: '5px', width: '48px', height: '48px' },
loading: { padding: '20px', textAlign: 'center', color: '#888' },
text: {},
time: { fontSize: 'smaller', color: '#888' },
title: { 'display': 'none'},
titleLink: { textDecoration: 'none', color: '#3B5998' },
user: { fontWeight: 'bold' }
}
};
// fn to handle jsonp with timeouts and errors
// hat tip to Ricardo Tomasi for the timeout logic
$.getJSONP = function(s) {
s.dataType = 'jsonp';
$.ajax(s);
// figure out what the callback fn is
var $script = $(document.getElementsByTagName('head')[0].firstChild);
var url = $script.attr('src') || '';
var cb = (url.match(/callback=(\w+)/)||[])[1];
if (!cb)
return; // bail
var t = 0, cbFn = window[cb];
$script[0].onerror = function(e) {
$script.remove();
handleError(s, {}, "error", e);
clearTimeout(t);
};
if (!s.timeout)
return;
window[cb] = function(json) {
clearTimeout(t);
cbFn(json);
cbFn = null;
};
t = setTimeout(function() {
$script.remove();
handleError(s, {}, "timeout");
if (cbFn)
window[cb] = function(){};
}, s.timeout);
function handleError(s, xhr, msg, e) {
s.error && s.error.call(s.context, xhr, msg, e);
s.global && $.event.trigger("ajaxError", [xhr, s, e || msg]);
s.complete && s.complete.call(s.context, xhr, e || msg);
}
};
/*
* JavaScript Pretty Date
* Copyright (c) 2008 John Resig (jquery.com)
* Licensed under the MIT license.
*/
// converts ISO time to casual time
function prettyDate(time){
var date = new Date((time || "").replace(/-/g,"/").replace(/TZ/g," ")),
diff = (((new Date()).getTime() - date.getTime()) / 1000),
day_diff = Math.floor(diff / 86400);
if ( isNaN(day_diff) || day_diff < 0 || day_diff >= 31 )
return;
var v = day_diff == 0 && (
diff < 60 && "just now" ||
diff < 120 && "1 minute ago" ||
diff < 3600 && Math.floor( diff / 60 ) + " minutes ago" ||
diff < 7200 && "1 hour ago" ||
diff < 86400 && Math.floor( diff / 3600 ) + " hours ago") ||
day_diff == 1 && "Yesterday" ||
day_diff < 7 && day_diff + " days ago" ||
day_diff < 31 && Math.ceil( day_diff / 7 ) + " weeks ago";
if (!v)
window.console && console.log(time);
return v ? v : '';
}
})(jQuery);

View File

@ -1769,14 +1769,7 @@ transition: all 0.2s ease-in-out;
margin-left: 45px; margin-left: 45px;
margin-top: 2px; margin-top: 2px;
} }
#jot-preview-link {
float: right;
margin-left: 10px;
margin-top: 2px;
font-size: 9px;
font-weight: bolder;
cursor: pointer;
}
#profile-jot-perms{ #profile-jot-perms{
float: right; float: right;
margin-left: 10px; margin-left: 10px;

View File

@ -141,6 +141,7 @@
.icon.language { background-image: url("../../../view/theme/diabook/icons/language.png");} .icon.language { background-image: url("../../../view/theme/diabook/icons/language.png");}
.camera { background-image: url("../../../view/theme/diabook/icons/camera.png"); .camera { background-image: url("../../../view/theme/diabook/icons/camera.png");
display: block; width: 28px; height: 28px; background-repeat: no-repeat; display: block; width: 28px; height: 28px; background-repeat: no-repeat;
} }
@ -167,7 +168,7 @@
} }
.unglobe { background-image: url("../../../view/theme/diabook/icons/unglobe.png"); .unglobe { background-image: url("../../../view/theme/diabook/icons/unglobe.png");
display: block; width: 28px; height: 28px; background-repeat: no-repeat; display: block; width: 28px; height: 28px; background-repeat: no-repeat;
} }
.edit {background-image: url("../../../view/theme/diabook/icons/pencil2.png"); .edit {background-image: url("../../../view/theme/diabook/icons/pencil2.png");
display: block; width: 28px; height: 28px; background-repeat: no-repeat;} display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
.icon.block {background-image: url("../../../view/theme/diabook/icons/block.png"); .icon.block {background-image: url("../../../view/theme/diabook/icons/block.png");
@ -231,7 +232,7 @@
.type-unkn { background-position: -80px 0px; } .type-unkn { background-position: -80px 0px; }
.icon.drop, .icon.drophide { .icon.drop, .icon.drophide {
float: left; float: right;
} }
.icon { .icon {
@ -844,6 +845,7 @@ nav #nav-directory-link,
nav #nav-apps-link, nav #nav-apps-link,
nav #nav-site-linkmenu, nav #nav-site-linkmenu,
nav #nav-home-link, nav #nav-home-link,
nav #nav-login-link,
nav #nav-user-linkmenu nav #nav-user-linkmenu
{ {
float: right; float: right;
@ -851,17 +853,23 @@ nav #nav-user-linkmenu
nav #nav-user-linkmenu{ nav #nav-user-linkmenu{
margin-right: 0px; margin-right: 0px;
} }
nav #nav-home-link, #nav-directory-link, #nav-apps-link{ nav #nav-home-link, #nav-directory-link, #nav-login-link, #nav-apps-link{
margin-left: 0px; margin-left: 0px;
margin-right: 0px; margin-right: 0px;
font-weight: bold; font-weight: bold;
margin: 3px 5px; margin: 3px 5px;
} }
nav #nav-directory-link{ nav #nav-directory-link{
margin-right: 0px; margin-right: 10px;
} }
li#nav-site-linkmenu.nav-menu-icon{
display: none;
}
nav #nav-home-link{ nav #nav-home-link{
margin-left: 0px; margin-left: 0px;
display: none;
} }
nav #nav-help-link .menu-popup, nav #nav-help-link .menu-popup,
nav #nav-search-link .menu-popup, nav #nav-search-link .menu-popup,
@ -872,6 +880,8 @@ nav #nav-site-linkmenu .menu-popup {
left: auto; left: auto;
} }
nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
background-image: url("../../../view/theme/diabook/icons/messages2.png"); background-image: url("../../../view/theme/diabook/icons/messages2.png");
} }
@ -1044,6 +1054,14 @@ ul.menu-popup .empty {
} }
.menu-profile-list-item{ .menu-profile-list-item{
padding-left: 5px; padding-left: 5px;
padding-top: 0.5em;
display: inline;
vertical-align: middle;
}
#profile-side-status .menu-profile-list-item{
padding-left: 5px;
padding-top: 0.6em;
display: inline;
vertical-align: middle; vertical-align: middle;
} }
.menu-profile-list-item:hover{ .menu-profile-list-item:hover{
@ -1279,6 +1297,9 @@ aside #login-extra-links{
height: 22px; height: 22px;
width: 22px; width: 22px;
} }
#group-all-contacts{
overflow: auto;
}
.icon.text_add { .icon.text_add {
background-image: url("../../../images/icons/16/add.png"); background-image: url("../../../images/icons/16/add.png");
float: right; float: right;
@ -1343,6 +1364,9 @@ body .pageheader{
#id_openid_url { #id_openid_url {
width: 173px; width: 173px;
} }
.contact-edit-submit{
display: block;
}
#contact-edit-end { #contact-edit-end {
} }
.pager { .pager {
@ -1352,6 +1376,15 @@ body .pageheader{
clear: both; clear: both;
display: block; display: block;
} }
.pager_current a {
margin: 3px;
color: #000;
font-weight: bolder;
}
.pager_n a {
margin: 2px;
font-weight: bold;
}
.tabs { .tabs {
background-position: 0 -20px; background-position: 0 -20px;
@ -1690,6 +1723,17 @@ body .pageheader{
background-color: #fff797; background-color: #fff797;
} }
span#jot-preview-link.tab.button{
float: right;
margin-left: 10px;
margin-right: 14px;
margin-top: 2px;
font-size: 11px;
font-weight: bolder;
cursor: pointer;
border: 0px;
}
.wall-item-tags { .wall-item-tags {
padding-top: 1px; padding-top: 1px;
padding-bottom: 2px; padding-bottom: 2px;
@ -1991,14 +2035,6 @@ body .pageheader{
margin-left: 45px; margin-left: 45px;
margin-top: 2px; margin-top: 2px;
} }
#jot-preview-link {
float: right;
margin-left: 10px;
margin-top: 2px;
font-size: 9px;
font-weight: bolder;
cursor: pointer;
}
#profile-jot-perms{ #profile-jot-perms{
float: right; float: right;
margin-left: 10px; margin-left: 10px;
@ -2154,6 +2190,10 @@ ul.tabs li .active {
box-shadow: 0 1px 1px #CFCFCF; box-shadow: 0 1px 1px #CFCFCF;
margin-left: 5px; margin-left: 5px;
} }
ul.tabs li a {
text-decoration: none;
}
//settings tabs //settings tabs
ul.rs_tabs { ul.rs_tabs {
list-style-type: none; list-style-type: none;

View File

@ -7,18 +7,7 @@
<script type="text/javascript"> <script type="text/javascript">
$(document).ready(function() { $(document).ready(function() {
$("iframe").each(function(){
var ifr_source = $(this).attr("src");
var wmode = "wmode=transparent";
if(ifr_source.indexOf("?") != -1) {
var getQString = ifr_source.split("?");
var oldString = getQString[1];
var newString = getQString[0];
$(this).attr("src",newString+"?"+wmode+"&"+oldString);
}
else $(this).attr("src",ifr_source+"?"+wmode);
});
$("div#pause").attr("style", "position: fixed;bottom: 43px;left: 5px;"); $("div#pause").attr("style", "position: fixed;bottom: 43px;left: 5px;");
$("div#pause").html("<img src='images/pause.gif' alt='pause' title='pause live-updates (ctrl+space)' style='border: 1px solid black;opacity: 0.2;'>"); $("div#pause").html("<img src='images/pause.gif' alt='pause' title='pause live-updates (ctrl+space)' style='border: 1px solid black;opacity: 0.2;'>");

View File

@ -4,14 +4,6 @@
* *
*}} *}}
<div id="twittersettings" style="display:none">
<form id="twittersettingsform" action="network" method="post" >
{{include file="field_input.tpl" field=$TSearchTerm}}
<div class="settings-submit-wrapper">
<input id="twittersub" type="submit" value="{{$sub}}" class="settings-submit" name="diabook-settings-sub"></input>
</div>
</form>
</div>
<div id="mapcontrol" style="display:none;"> <div id="mapcontrol" style="display:none;">
<form id="mapform" action="network" method="post" > <form id="mapform" action="network" method="post" >
@ -48,7 +40,6 @@ just contact me, if you are intesrested in joining</p>
{{include file="field_select.tpl" field=$close_lastusers}} {{include file="field_select.tpl" field=$close_lastusers}}
{{include file="field_select.tpl" field=$close_lastphotos}} {{include file="field_select.tpl" field=$close_lastphotos}}
{{include file="field_select.tpl" field=$close_lastlikes}} {{include file="field_select.tpl" field=$close_lastlikes}}
{{include file="field_select.tpl" field=$close_twitter}}
{{include file="field_select.tpl" field=$close_mapquery}} {{include file="field_select.tpl" field=$close_mapquery}}
<div class="settings-submit-wrapper"> <div class="settings-submit-wrapper">
<input id="boxsub" type="submit" value="{{$sub}}" class="settings-submit" name="diabook-settings-box-sub"></input> <input id="boxsub" type="submit" value="{{$sub}}" class="settings-submit" name="diabook-settings-box-sub"></input>
@ -85,8 +76,6 @@ just contact me, if you are intesrested in joining</p>
<a href="http://friendica.com/resources" title="How-to's" style="margin-left: 10px; " target="blank">How-To Guides</a><br> <a href="http://friendica.com/resources" title="How-to's" style="margin-left: 10px; " target="blank">How-To Guides</a><br>
<a href="http://kakste.com/profile/newhere" title="@NewHere" style="margin-left: 10px; " target="blank">NewHere</a><br> <a href="http://kakste.com/profile/newhere" title="@NewHere" style="margin-left: 10px; " target="blank">NewHere</a><br>
<a href="https://helpers.pyxis.uberspace.de/profile/helpers" style="margin-left: 10px; " title="Friendica Support" target="blank">Friendica Support</a><br> <a href="https://helpers.pyxis.uberspace.de/profile/helpers" style="margin-left: 10px; " title="Friendica Support" target="blank">Friendica Support</a><br>
<a href="https://letstalk.pyxis.uberspace.de/profile/letstalk" style="margin-left: 10px; " title="Let's talk" target="blank">Let's talk</a><br>
<a href="http://newzot.hydra.uberspace.de/profile/newzot" title="Local Friendica" style="margin-left: 10px; " target="blank">Local Friendica</a>
{{/if}} {{/if}}
</div> </div>
@ -160,12 +149,6 @@ just contact me, if you are intesrested in joining</p>
{{/if}} {{/if}}
</div> </div>
<div id="close_twitter">
<h3 style="height:1.17em">{{$twitter.title.1}}<a id="closeicon" href="#boxsettings" onClick="open_boxsettings(); return false;" style="text-decoration:none;" class="icon close_box" title="{{$close}}"></a></h3>
<div id="twitter">
</div>
</div>
<div id="close_mapquery"> <div id="close_mapquery">
{{if $mapquery}} {{if $mapquery}}
<h3>{{$mapquery.title.1}}<a id="closeicon" href="#boxsettings" onClick="open_boxsettings(); return false;" style="text-decoration:none;" class="icon close_box" title="{{$close}}"></a></h3> <h3>{{$mapquery.title.1}}<a id="closeicon" href="#boxsettings" onClick="open_boxsettings(); return false;" style="text-decoration:none;" class="icon close_box" title="{{$close}}"></a></h3>

View File

@ -106,7 +106,7 @@
{{if $nav.home}} {{if $nav.home}}
<li id="nav-home-link" class="nav-menu {{$sel.home}}"> <li id="nav-home-link" class="nav-menu {{$sel.home}}">
<a class="{{$nav.home.2}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" >{{$nav.home.1}} <a class="{{$nav.home.2}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" >{{$userinfo.name}}
<span id="home-update" class="nav-notify"></span></a> <span id="home-update" class="nav-notify"></span></a>
</li> </li>
{{/if}} {{/if}}
@ -127,7 +127,7 @@
{{/if}} {{/if}}
{{if $nav.login}} {{if $nav.login}}
<li id="nav-home-link" class="nav-menu {{$sel.home}}"> <li id="nav-login-link" class="nav-menu {{$sel.home}}">
<a class="{{$nav.login.2}}" href="{{$nav.login.0}}" title="{{$nav.login.3}}" >{{$nav.login.1}}</a> <a class="{{$nav.login.2}}" href="{{$nav.login.0}}" title="{{$nav.login.3}}" >{{$nav.login.1}}</a>
<li> <li>
{{/if}} {{/if}}

View File

@ -24,8 +24,6 @@
{{include file="field_select.tpl" field=$close_lastusers}} {{include file="field_select.tpl" field=$close_lastusers}}
{{include file="field_select.tpl" field=$close_lastphotos}} {{include file="field_select.tpl" field=$close_lastphotos}}
{{include file="field_select.tpl" field=$close_lastlikes}} {{include file="field_select.tpl" field=$close_lastlikes}}
{{include file="field_select.tpl" field=$close_twitter}}
{{include file="field_input.tpl" field=$TSearchTerm}}
{{include file="field_select.tpl" field=$close_mapquery}} {{include file="field_select.tpl" field=$close_mapquery}}
{{include file="field_input.tpl" field=$ELPosX}} {{include file="field_input.tpl" field=$ELPosX}}

View File

@ -2,8 +2,8 @@
/* /*
* Name: Diabook * Name: Diabook
* Description: Diabook: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu * Description: Diabook: report bugs and request here: http://pad.toktan.org/p/diabook or http://bugs.friendica.com/view_all_bug_page.php
* Version: (Version: 1.027) * Version: (Version: 1.028)
* Author: * Author:
*/ */
@ -26,7 +26,7 @@ function diabook_init(&$a) {
set_template_engine($a, 'smarty3'); set_template_engine($a, 'smarty3');
//print diabook-version for debugging //print diabook-version for debugging
$diabook_version = "Diabook (Version: 1.027)"; $diabook_version = "Diabook (Version: 1.028)";
$a->page['htmlhead'] .= sprintf('<META NAME=generator CONTENT="%s"/>', $diabook_version); $a->page['htmlhead'] .= sprintf('<META NAME=generator CONTENT="%s"/>', $diabook_version);
//init css on network and profilepages //init css on network and profilepages
@ -36,6 +36,31 @@ $cssFile = null;
load_config("diabook"); load_config("diabook");
load_pconfig(local_user(), "diabook"); load_pconfig(local_user(), "diabook");
// adjust nav-bar, depending state of user
if (local_user() ) {
$a->page['htmlhead'] .= '
<script>
$(document).ready(function() {
$("li#nav-site-linkmenu.nav-menu-icon").attr("style","display: block;");
$("li#nav-directory-link.nav-menu").attr("style","margin-right: 0px;");
$("li#nav-home-link.nav-menu").attr("style","display: block;margin-right: 8px;");
});
</script>';
}
if ($a->argv[0] == "profile" && $a->argv[1] != $a->user['nickname'] ) {
$a->page['htmlhead'] .= '
<script>
$(document).ready(function() {
$("li#nav-site-linkmenu.nav-menu-icon").attr("style","display: block;");
$("li#nav-directory-link.nav-menu").attr("style","margin-right: 0px;");
$("li#nav-home-link.nav-menu").attr("style","display: block;margin-right: 8px;");
});
</script>';
}
//get statuses of boxes at right-hand-column //get statuses of boxes at right-hand-column
$close_pages = get_diabook_config( "close_pages", 1 ); $close_pages = get_diabook_config( "close_pages", 1 );
$close_profiles = get_diabook_config( "close_profiles", 0 ); $close_profiles = get_diabook_config( "close_profiles", 0 );
@ -45,7 +70,6 @@ $close_friends = get_diabook_config( "close_friends", 0 );
$close_lastusers = get_diabook_config( "close_lastusers", 0 ); $close_lastusers = get_diabook_config( "close_lastusers", 0 );
$close_lastphotos = get_diabook_config( "close_lastphotos", 0 ); $close_lastphotos = get_diabook_config( "close_lastphotos", 0 );
$close_lastlikes = get_diabook_config( "close_lastlikes", 0 ); $close_lastlikes = get_diabook_config( "close_lastlikes", 0 );
$close_twitter = get_diabook_config( "close_twitter", 1 );
$close_mapquery = get_diabook_config( "close_mapquery", 1 ); $close_mapquery = get_diabook_config( "close_mapquery", 1 );
//get resolution (wide/normal) //get resolution (wide/normal)
@ -70,6 +94,18 @@ if ($color=="pink") $color_path = "/diabook-pink/";
if ($color=="green") $color_path = "/diabook-green/"; if ($color=="green") $color_path = "/diabook-green/";
if ($color=="dark") $color_path = "/diabook-dark/"; if ($color=="dark") $color_path = "/diabook-dark/";
// remove doubled checkboxes at contacts-edit-page
if ($a->argv[0] === "contacts" && $a->argv[1] != NULL && local_user()){
$a->page['htmlhead'] .= '
<script>
$(document).ready(function() {
$("span.group_unselected").attr("style","display: none;");
$("span.group_selected").attr("style","display: none;");
$("input.unticked.action").attr("style","float: left; margin-top: 5px;-moz-appearance: none;");
$("li.menu-profile-list").attr("style","min-height: 22px;");
});
</script>';
}
//build personal menue at lefthand-col (id="profile_side") and boxes at right-hand-col at networkpages //build personal menue at lefthand-col (id="profile_side") and boxes at right-hand-col at networkpages
if ($a->argv[0] === "network" && local_user()){ if ($a->argv[0] === "network" && local_user()){
@ -102,9 +138,9 @@ if ($color=="dark") $color_path = "/diabook-dark/";
} }
$ccCookie = $close_pages + $close_mapquery + $close_profiles + $close_helpers + $close_services + $close_friends + $close_twitter + $close_lastusers + $close_lastphotos + $close_lastlikes; $ccCookie = $close_pages + $close_mapquery + $close_profiles + $close_helpers + $close_services + $close_friends + $close_lastusers + $close_lastphotos + $close_lastlikes;
//if all boxes closed, dont build right-hand-col and dont use special css //if all boxes closed, dont build right-hand-col and dont use special css
if($ccCookie != "10") { if($ccCookie != "9") {
// COMMUNITY // COMMUNITY
diabook_community_info(); diabook_community_info();
@ -118,7 +154,7 @@ if ($color=="dark") $color_path = "/diabook-dark/";
//build boxes at right_aside at profile pages //build boxes at right_aside at profile pages
if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname']){ if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname']){
if($ccCookie != "10") { if($ccCookie != "9") {
// COMMUNITY // COMMUNITY
diabook_community_info(); diabook_community_info();
@ -137,17 +173,13 @@ if ($color=="dark") $color_path = "/diabook-dark/";
$imageresizeJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/js/jquery.ae.image.resize.min.js"; $imageresizeJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/js/jquery.ae.image.resize.min.js";
$a->page['htmlhead'] .= sprintf('<script type="text/javascript" src="%s" ></script>', $imageresizeJS); $a->page['htmlhead'] .= sprintf('<script type="text/javascript" src="%s" ></script>', $imageresizeJS);
//load jquery.ui.js //load jquery.ui.js
if($ccCookie != "10") { if($ccCookie != "9") {
$jqueryuiJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/js/jquery-ui-1.8.20.custom.min.js"; $jqueryuiJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/js/jquery-ui-1.8.20.custom.min.js";
$a->page['htmlhead'] .= sprintf('<script type="text/javascript" src="%s" ></script>', $jqueryuiJS); $a->page['htmlhead'] .= sprintf('<script type="text/javascript" src="%s" ></script>', $jqueryuiJS);
$jqueryuicssJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/jquery-ui-1.8.20.custom.css"; $jqueryuicssJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/jquery-ui-1.8.20.custom.css";
$a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $jqueryuicssJS); $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $jqueryuicssJS);
} }
//load jquery.twitter.search.js
if($close_twitter != "1") {
$twitterJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/js/jquery.twitter.search.js";
$a->page['htmlhead'] .= sprintf('<script type="text/javascript" src="%s" ></script>', $twitterJS);
}
//load jquery.mapquery.js //load jquery.mapquery.js
if($close_mapquery != "1") { if($close_mapquery != "1") {
$mqtmplJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/js/jquery.tmpl.js"; $mqtmplJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/js/jquery.tmpl.js";
@ -170,7 +202,6 @@ if ($color=="dark") $color_path = "/diabook-dark/";
<script> <script>
$(function() { $(function() {
$("a.lightbox").colorbox({maxHeight:"90%"}); // Select all links with lightbox class $("a.lightbox").colorbox({maxHeight:"90%"}); // Select all links with lightbox class
$("a#twittersettings-link").colorbox({inline:true,onClosed: function() { $("#twittersettings").attr("style","display: none;");}} );
$("a#mapcontrol-link").colorbox({inline:true,onClosed: function() { $("#mapcontrol").attr("style","display: none;");}} ); $("a#mapcontrol-link").colorbox({inline:true,onClosed: function() { $("#mapcontrol").attr("style","display: none;");}} );
$("a#closeicon").colorbox({inline:true,onClosed: function() { $("#boxsettings").attr("style","display: none;");}} ); $("a#closeicon").colorbox({inline:true,onClosed: function() { $("#boxsettings").attr("style","display: none;");}} );
}); });
@ -234,25 +265,7 @@ if ($color=="dark") $color_path = "/diabook-dark/";
}; };
</script>'; </script>';
} }
//check if twitterbox is active and print
if($close_twitter != "1") {
$TSearchTerm = get_diabook_config( "TSearchTerm", "friendica" );
$a->page['htmlhead'] .= '
<script>
$(function() {
$("#twitter").twitterSearch({
term: "'.$TSearchTerm.'",
animInSpeed: 250,
bird: false,
avatar: false,
colorExterior: "#fff",
timeout: 10000 });
});
function open_twittersettings() {
$("div#twittersettings").attr("style","display: block;");
};
</script>';}
//check if community_home-plugin is activated and change css.. we need this, that the submit-wrapper doesn't overlay the login-panel if communityhome-plugin is active //check if community_home-plugin is activated and change css.. we need this, that the submit-wrapper doesn't overlay the login-panel if communityhome-plugin is active
$nametocheck = "communityhome"; $nametocheck = "communityhome";
$r = q("select id from addon where name = '%s' and installed = 1", dbesc($nametocheck)); $r = q("select id from addon where name = '%s' and installed = 1", dbesc($nametocheck));
@ -292,7 +305,7 @@ if ($color=="dark") $color_path = "/diabook-dark/";
}); });
</script>'; </script>';
if($ccCookie != "10") { if($ccCookie != "9") {
$a->page['htmlhead'] .= ' $a->page['htmlhead'] .= '
<script> <script>
$("right_aside").ready(function(){ $("right_aside").ready(function(){
@ -327,11 +340,6 @@ if ($color=="dark") $color_path = "/diabook-dark/";
document.getElementById( "close_friends" ).style.display = "none"; document.getElementById( "close_friends" ).style.display = "none";
}; };
if('.$close_twitter.')
{
document.getElementById( "close_twitter" ).style.display = "none";
};
if('.$close_lastusers.') if('.$close_lastusers.')
{ {
document.getElementById( "close_lastusers" ).style.display = "none"; document.getElementById( "close_lastusers" ).style.display = "none";
@ -376,7 +384,6 @@ if ($color=="dark") $color_path = "/diabook-dark/";
$close_lastusers = get_diabook_config( "close_lastusers", 0 ); $close_lastusers = get_diabook_config( "close_lastusers", 0 );
$close_lastphotos = get_diabook_config( "close_lastphotos", 0 ); $close_lastphotos = get_diabook_config( "close_lastphotos", 0 );
$close_lastlikes = get_diabook_config( "close_lastlikes", 0 ); $close_lastlikes = get_diabook_config( "close_lastlikes", 0 );
$close_twitter = get_diabook_config( "close_twitter", 1 );
$close_mapquery = get_diabook_config( "close_mapquery", 1 ); $close_mapquery = get_diabook_config( "close_mapquery", 1 );
// comunity_profiles // comunity_profiles
@ -600,22 +607,8 @@ if ($color=="dark") $color_path = "/diabook-dark/";
$aside['$con_services'] = $con_services; $aside['$con_services'] = $con_services;
} }
//end connectable services //end connectable services
//twitter
if($close_twitter != "1") { if($ccCookie != "9") {
$twitter = array();
$twitter['title'] = Array("", "<a id='twittersettings-link' href='#twittersettings' style='text-decoration:none;' onclick='open_twittersettings(); return false;'>".t('Last Tweets')."</a>", "", "");
$aside['$twitter'] = $twitter;
$TSearchTerm = get_pconfig(local_user(), 'diabook', 'TSearchTerm' );
$aside['$TSearchTerm'] = array('diabook_TSearchTerm', t('Set twitter search term'), $TSearchTerm, '', $TSearchTerm);
$baseurl = $a->get_baseurl($ssl_state);
$aside['$baseurl'] = $baseurl;
if (isset($_POST['diabook-settings-sub']) && $_POST['diabook-settings-sub']!=''){
set_pconfig(local_user(), 'diabook', 'TSearchTerm', $_POST['diabook_TSearchTerm']);
header("Location: network");
}
}
//end twitter
if($ccCookie != "10") {
$close_pages = get_diabook_config( "close_pages", 1 ); $close_pages = get_diabook_config( "close_pages", 1 );
$close_profiles = get_diabook_config( "close_profiles", 0 ); $close_profiles = get_diabook_config( "close_profiles", 0 );
$close_helpers = get_diabook_config( "close_helpers", 0 ); $close_helpers = get_diabook_config( "close_helpers", 0 );
@ -624,7 +617,6 @@ if ($color=="dark") $color_path = "/diabook-dark/";
$close_lastusers = get_diabook_config( "close_lastusers", 0 ); $close_lastusers = get_diabook_config( "close_lastusers", 0 );
$close_lastphotos = get_diabook_config( "close_lastphotos", 0 ); $close_lastphotos = get_diabook_config( "close_lastphotos", 0 );
$close_lastlikes = get_diabook_config( "close_lastlikes", 0 ); $close_lastlikes = get_diabook_config( "close_lastlikes", 0 );
$close_twitter = get_diabook_config( "close_twitter", 1 );
$close_mapquery = get_diabook_config( "close_mapquery", 1 ); $close_mapquery = get_diabook_config( "close_mapquery", 1 );
$close_or_not = array('1'=>t("don't show"), '0'=>t("show"),); $close_or_not = array('1'=>t("don't show"), '0'=>t("show"),);
$boxsettings['title'] = Array("", t('Show/hide boxes at right-hand column:'), "", ""); $boxsettings['title'] = Array("", t('Show/hide boxes at right-hand column:'), "", "");
@ -635,7 +627,6 @@ if ($color=="dark") $color_path = "/diabook-dark/";
$aside['$close_helpers'] = array('diabook_close_helpers', t('Help or @NewHere ?'), $close_helpers, '', $close_or_not); $aside['$close_helpers'] = array('diabook_close_helpers', t('Help or @NewHere ?'), $close_helpers, '', $close_or_not);
$aside['$close_services'] = array('diabook_close_services', t('Connect Services'), $close_services, '', $close_or_not); $aside['$close_services'] = array('diabook_close_services', t('Connect Services'), $close_services, '', $close_or_not);
$aside['$close_friends'] = array('diabook_close_friends', t('Find Friends'), $close_friends, '', $close_or_not); $aside['$close_friends'] = array('diabook_close_friends', t('Find Friends'), $close_friends, '', $close_or_not);
$aside['$close_twitter'] = array('diabook_close_twitter', t('Last Tweets'), $close_twitter, '', $close_or_not);
$aside['$close_lastusers'] = array('diabook_close_lastusers', t('Last users'), $close_lastusers, '', $close_or_not); $aside['$close_lastusers'] = array('diabook_close_lastusers', t('Last users'), $close_lastusers, '', $close_or_not);
$aside['$close_lastphotos'] = array('diabook_close_lastphotos', t('Last photos'), $close_lastphotos, '', $close_or_not); $aside['$close_lastphotos'] = array('diabook_close_lastphotos', t('Last photos'), $close_lastphotos, '', $close_or_not);
$aside['$close_lastlikes'] = array('diabook_close_lastlikes', t('Last likes'), $close_lastlikes, '', $close_or_not); $aside['$close_lastlikes'] = array('diabook_close_lastlikes', t('Last likes'), $close_lastlikes, '', $close_or_not);
@ -649,7 +640,6 @@ if ($color=="dark") $color_path = "/diabook-dark/";
set_pconfig(local_user(), 'diabook', 'close_helpers', $_POST['diabook_close_helpers']); set_pconfig(local_user(), 'diabook', 'close_helpers', $_POST['diabook_close_helpers']);
set_pconfig(local_user(), 'diabook', 'close_services', $_POST['diabook_close_services']); set_pconfig(local_user(), 'diabook', 'close_services', $_POST['diabook_close_services']);
set_pconfig(local_user(), 'diabook', 'close_friends', $_POST['diabook_close_friends']); set_pconfig(local_user(), 'diabook', 'close_friends', $_POST['diabook_close_friends']);
set_pconfig(local_user(), 'diabook', 'close_twitter', $_POST['diabook_close_twitter']);
set_pconfig(local_user(), 'diabook', 'close_lastusers', $_POST['diabook_close_lastusers']); set_pconfig(local_user(), 'diabook', 'close_lastusers', $_POST['diabook_close_lastusers']);
set_pconfig(local_user(), 'diabook', 'close_lastphotos', $_POST['diabook_close_lastphotos']); set_pconfig(local_user(), 'diabook', 'close_lastphotos', $_POST['diabook_close_lastphotos']);
set_pconfig(local_user(), 'diabook', 'close_lastlikes', $_POST['diabook_close_lastlikes']); set_pconfig(local_user(), 'diabook', 'close_lastlikes', $_POST['diabook_close_lastlikes']);