From cf2a90dfa2d67088ec13a161abe60cf9aaa6cf92 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Tue, 30 Jun 2015 14:51:14 +0200 Subject: [PATCH 001/239] system settings is now a variable in settings_display.tpl --- mod/settings.php | 1 + view/templates/settings_display.tpl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/mod/settings.php b/mod/settings.php index a83986267..612edaaf8 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -916,6 +916,7 @@ function settings_content(&$a) { '$infinite_scroll' => array('infinite_scroll', t("Infinite scroll"), $infinite_scroll, ''), '$no_auto_update' => array('no_auto_update', t("Automatic updates only at the top of the network page"), $no_auto_update, 'When disabled, the network page is updated all the time, which could be confusing while reading.'), + 'stitle' => t('Theme settings'), '$theme_config' => $theme_config, )); diff --git a/view/templates/settings_display.tpl b/view/templates/settings_display.tpl index 12cdd3d66..ac41c1c27 100644 --- a/view/templates/settings_display.tpl +++ b/view/templates/settings_display.tpl @@ -20,7 +20,7 @@ {{if $theme_config}} -

Theme settings

+

{{$stitle}}

{{$theme_config}} {{/if}} From 055ee962c94675b7f1d02fe0fa50d6f2138bac97 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 30 Jun 2015 23:37:31 +0200 Subject: [PATCH 002/239] Ability to enter a password when the first user is created --- include/user.php | 8 +++++++ mod/register.php | 44 ++++++++++++++++++++++--------------- view/templates/register.tpl | 5 +++++ 3 files changed, 39 insertions(+), 18 deletions(-) diff --git a/include/user.php b/include/user.php index f8b1578ce..580af56f9 100644 --- a/include/user.php +++ b/include/user.php @@ -27,12 +27,20 @@ function create_user($arr) { $openid_url = ((x($arr,'openid_url')) ? notags(trim($arr['openid_url'])) : ''); $photo = ((x($arr,'photo')) ? notags(trim($arr['photo'])) : ''); $password = ((x($arr,'password')) ? trim($arr['password']) : ''); + $password1 = ((x($arr,'password1')) ? trim($arr['password1']) : ''); + $confirm = ((x($arr,'confirm')) ? trim($arr['confirm']) : ''); $blocked = ((x($arr,'blocked')) ? intval($arr['blocked']) : 0); $verified = ((x($arr,'verified')) ? intval($arr['verified']) : 0); $publish = ((x($arr,'profile_publish_reg') && intval($arr['profile_publish_reg'])) ? 1 : 0); $netpublish = ((strlen(get_config('system','directory_submit_url'))) ? $publish : 0); + if ($password1 != $confirm) { + $result['message'] .= t('Passwords do not match. Password unchanged.') . EOL; + return $result; + } elseif ($password1 != "") + $password = $password1; + $tmp_str = $openid_url; if($using_invites) { diff --git a/mod/register.php b/mod/register.php index 4c0860e6e..f8e970855 100644 --- a/mod/register.php +++ b/mod/register.php @@ -79,25 +79,27 @@ function register_post(&$a) { set_pconfig($user['uid'],'system','invites_remaining',$num_invites); } - $res = send_register_open_eml( - $user['email'], - $a->config['sitename'], - $a->get_baseurl(), - $user['username'], - $result['password']); + // Only send a password mail when the password wasn't manually provided + if (!x($_POST,'password1') OR !x($_POST,'confirm')) { + $res = send_register_open_eml( + $user['email'], + $a->config['sitename'], + $a->get_baseurl(), + $user['username'], + $result['password']); - if($res) { - info( t('Registration successful. Please check your email for further instructions.') . EOL ) ; - goaway(z_root()); - } - else { - notice( - sprintf( - t('Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login.'), - $user['email'], - $result['password'] - ). EOL - ); + if($res) { + info( t('Registration successful. Please check your email for further instructions.') . EOL ) ; + goaway(z_root()); + } else { + notice( + sprintf( + t('Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login.'), + $user['email'], + $result['password'] + ). EOL + ); + } } } elseif($a->config['register_policy'] == REGISTER_APPROVE) { @@ -235,6 +237,9 @@ function register_content(&$a) { )); } + $r = q("SELECT count(*) AS `contacts` FROM `contact`"); + $passwords = !$r[0]["contacts"]; + $license = ''; $o = get_markup_template("register.tpl"); @@ -262,6 +267,9 @@ function register_content(&$a) { '$openid' => $openid_url, '$namelabel' => t('Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '), '$addrlabel' => t('Your Email Address: '), + '$passwords' => $passwords, + '$password1' => array('password1', t('New Password:'), '', ''), + '$password2' => array('confirm', t('Confirm:'), '', ''), '$nickdesc' => str_replace('$sitename',$a->get_hostname(),t('Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'nickname@$sitename\'.')), '$nicklabel' => t('Choose a nickname: '), '$photo' => $photo, diff --git a/view/templates/register.tpl b/view/templates/register.tpl index 8a941145a..dfc357361 100644 --- a/view/templates/register.tpl +++ b/view/templates/register.tpl @@ -44,6 +44,11 @@
+{{if $passwords}} + {{include file="field_password.tpl" field=$password1}} + {{include file="field_password.tpl" field=$password2}} +{{/if}} +

{{$nickdesc}}

From 836058c47745f502890a209dfd6efcb3596ace84 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 1 Jul 2015 00:41:04 +0200 Subject: [PATCH 003/239] Added help text --- mod/register.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/register.php b/mod/register.php index f8e970855..1963bd7a6 100644 --- a/mod/register.php +++ b/mod/register.php @@ -268,7 +268,7 @@ function register_content(&$a) { '$namelabel' => t('Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '), '$addrlabel' => t('Your Email Address: '), '$passwords' => $passwords, - '$password1' => array('password1', t('New Password:'), '', ''), + '$password1' => array('password1', t('New Password:'), '', t('Leave empty for an auto generated password.')), '$password2' => array('confirm', t('Confirm:'), '', ''), '$nickdesc' => str_replace('$sitename',$a->get_hostname(),t('Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'nickname@$sitename\'.')), '$nicklabel' => t('Choose a nickname: '), From 43f98bc8542867ba3b098d8c6ba498b248d83286 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 4 Jul 2015 23:49:52 +0200 Subject: [PATCH 004/239] When posting to Diaspora, now the contact names are containing the link to the user profile. --- include/bbcode.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/bbcode.php b/include/bbcode.php index 6c5a400dd..e872d859c 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -887,8 +887,12 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal $MAILSearchString = $URLSearchString; // Remove all hashtag addresses - if ((!$tryoembed OR $simplehtml) AND ($simplehtml != 7)) + if ((!$tryoembed OR $simplehtml) AND !in_array($simplehtml, array(3, 7))) $Text = preg_replace("/([#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $Text); + elseif ($simplehtml == 3) + $Text = preg_replace("/([@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", + '$1$3', + $Text); elseif ($simplehtml == 7) $Text = preg_replace("/([@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', From c356da2cadc04d05c930ae0d4ec34a52a605b55d Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 5 Jul 2015 02:33:28 +0200 Subject: [PATCH 005/239] Diaspora: Improved parsing of linefeeds --- include/bb2diaspora.php | 9 +++++++++ view/theme/vier/style.css | 1 + 2 files changed, 10 insertions(+) diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index 34c932f74..69a87b381 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -34,6 +34,15 @@ function diaspora2bb($s) { $s = str_replace('#','#',$s); + $search = array(" \n", "\n "); + $replace = array("\n", "\n"); + do { + $oldtext = $s; + $s = str_replace($search, $replace, $s); + } while ($oldtext != $s); + + $s = str_replace("\n\n", "
", $s); + $s = html2bbcode($s); // protect the recycle symbol from turning into a tag, but without unescaping angles and naked ampersands diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 64edef301..79309e338 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -1216,6 +1216,7 @@ section.minimal { .wall-item-container .wall-item-content img { max-width: 100%; + vertical-align: middle; /* max-width: 650px; */ /* max-width: 580px; */ } From d6d51e02592d246d6b0e4e23ebfb7b9d030670ff Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 5 Jul 2015 16:27:03 +0200 Subject: [PATCH 006/239] Don't deliver answers to OStatus messages to Diaspora --- include/notifier.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/include/notifier.php b/include/notifier.php index 24dc63d69..67d5cdbbd 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -406,9 +406,13 @@ function notifier_run(&$argv, &$argc){ } } } - } - $r = q("SELECT * FROM `contact` WHERE `id` IN ( $conversant_str ) AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0"); + // It only makes sense to distribute answers to OStatus messages to Friendica and OStatus - but not Diaspora + $sql_extra = " AND `network` IN ('".NETWORK_OSTATUS."', '".NETWORK_DFRN."')"; + } else + $sql_extra = ""; + + $r = q("SELECT * FROM `contact` WHERE `id` IN ($conversant_str) AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0".$sql_extra); if(count($r)) $contacts = $r; From a22581e86cba4c96980ef7bd334aaaa43d02176d Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 8 Jul 2015 13:15:14 +0200 Subject: [PATCH 007/239] typo --- mod/friendica.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/friendica.php b/mod/friendica.php index 7b99f9e6f..9fa203f58 100644 --- a/mod/friendica.php +++ b/mod/friendica.php @@ -61,7 +61,7 @@ function friendica_content(&$a) { $o .= t('Please visit Friendica.com to learn more about the Friendica project.') . '

'; - $o .= t('Bug reports and issues: please visit') . ' ' . 'the bucktracker at github

'; + $o .= t('Bug reports and issues: please visit') . ' ' . ''.t('the bugtracker at github').'

'; $o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com') . '

'; $o .= '

'; From eb79f109d48428528b6b5ca966e88587a65a2d68 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 8 Jul 2015 13:20:43 +0200 Subject: [PATCH 008/239] update to the master strings --- util/messages.po | 9123 +++++++++++++++++++++++----------------------- 1 file changed, 4616 insertions(+), 4507 deletions(-) diff --git a/util/messages.po b/util/messages.po index ab7473b19..0a0337984 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 3.4.0\n" +"Project-Id-Version: 3.4.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-30 08:43+0200\n" +"POT-Creation-Date: 2015-07-08 13:18+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,22 +22,22 @@ msgstr "" msgid "This entry was edited" msgstr "" -#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622 +#: object/Item.php:117 mod/content.php:622 mod/photos.php:1379 msgid "Private Message" msgstr "" -#: object/Item.php:121 mod/settings.php:683 mod/content.php:730 +#: object/Item.php:121 mod/content.php:730 mod/settings.php:683 msgid "Edit" msgstr "" -#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439 -#: mod/content.php:742 include/conversation.php:612 +#: object/Item.php:130 mod/content.php:439 mod/content.php:742 +#: mod/photos.php:1672 include/conversation.php:612 msgid "Select" msgstr "" -#: object/Item.php:131 mod/admin.php:1017 mod/photos.php:1673 -#: mod/contacts.php:760 mod/settings.php:684 mod/group.php:171 -#: mod/content.php:440 mod/content.php:743 include/conversation.php:613 +#: object/Item.php:131 mod/admin.php:1017 mod/contacts.php:760 +#: mod/content.php:440 mod/content.php:743 mod/group.php:171 +#: mod/photos.php:1673 mod/settings.php:684 include/conversation.php:613 msgid "Delete" msgstr "" @@ -81,7 +81,7 @@ msgstr "" msgid "add tag" msgstr "" -#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686 +#: object/Item.php:232 mod/content.php:686 mod/photos.php:1561 msgid "I like this (toggle)" msgstr "" @@ -89,7 +89,7 @@ msgstr "" msgid "like" msgstr "" -#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687 +#: object/Item.php:233 mod/content.php:687 mod/photos.php:1562 msgid "I don't like this (toggle)" msgstr "" @@ -141,14 +141,14 @@ msgstr "" msgid "%s from %s" msgstr "" -#: object/Item.php:364 object/Item.php:680 mod/photos.php:1583 -#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:754 +#: object/Item.php:364 object/Item.php:680 mod/content.php:711 +#: mod/photos.php:1583 mod/photos.php:1627 mod/photos.php:1715 boot.php:754 msgid "Comment" msgstr "" -#: object/Item.php:367 mod/message.php:334 mod/message.php:565 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564 -#: mod/content.php:501 mod/content.php:885 include/conversation.php:691 +#: object/Item.php:367 mod/wallmessage.php:156 mod/message.php:334 +#: mod/message.php:565 mod/content.php:501 mod/content.php:885 +#: mod/editpost.php:124 mod/photos.php:1564 include/conversation.php:691 #: include/conversation.php:1074 msgid "Please wait" msgstr "" @@ -167,27 +167,30 @@ msgid_plural "comments" msgstr[0] "" msgstr[1] "" -#: object/Item.php:393 mod/content.php:608 boot.php:755 include/items.php:5133 -#: include/contact_widgets.php:205 +#: object/Item.php:393 mod/content.php:608 include/contact_widgets.php:205 +#: include/items.php:5133 boot.php:755 msgid "show more" msgstr "" -#: object/Item.php:678 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 mod/content.php:709 +#: object/Item.php:678 mod/content.php:709 mod/photos.php:1581 +#: mod/photos.php:1625 mod/photos.php:1713 msgid "This is you" msgstr "" -#: object/Item.php:681 mod/fsuggest.php:107 mod/message.php:335 -#: mod/message.php:564 mod/events.php:511 mod/photos.php:1104 -#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584 -#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:564 -#: mod/invite.php:140 mod/profiles.php:682 mod/manage.php:110 mod/poke.php:199 -#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288 -#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191 -#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 -#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70 -#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64 -#: view/theme/cleanzero/config.php:80 +#: object/Item.php:681 view/theme/perihel/config.php:95 +#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 +#: view/theme/quattro/config.php:64 +#: view/theme/zero-childs/cleanzero/config.php:80 +#: view/theme/dispy/config.php:70 view/theme/clean/config.php:83 +#: view/theme/duepuntozero/config.php:59 view/theme/cleanzero/config.php:80 +#: view/theme/vier/config.php:56 view/theme/vier-mobil/config.php:47 +#: mod/mood.php:137 mod/localtime.php:45 mod/poke.php:199 mod/fsuggest.php:107 +#: mod/invite.php:140 mod/manage.php:110 mod/message.php:335 +#: mod/message.php:564 mod/contacts.php:564 mod/content.php:712 +#: mod/crepair.php:191 mod/events.php:511 mod/install.php:250 +#: mod/install.php:288 mod/photos.php:1104 mod/photos.php:1223 +#: mod/photos.php:1533 mod/photos.php:1584 mod/photos.php:1628 +#: mod/photos.php:1716 mod/profiles.php:682 msgid "Submit" msgstr "" @@ -223,60 +226,1264 @@ msgstr "" msgid "Video" msgstr "" -#: object/Item.php:690 mod/editpost.php:145 mod/events.php:509 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: mod/content.php:721 include/conversation.php:1089 +#: object/Item.php:690 mod/content.php:721 mod/editpost.php:145 +#: mod/events.php:509 mod/photos.php:1585 mod/photos.php:1629 +#: mod/photos.php:1717 include/conversation.php:1089 msgid "Preview" msgstr "" -#: index.php:225 mod/apps.php:7 -msgid "You must be logged in to use addons. " +#: view/smarty3/compiled/a908c9746db77ea1b3b8583681c75a6737ae4de1.file.blob.tpl.php:76 +#: view/smarty3/compiled/3652bcbaa383153072aa300c238792d03867c262.file.tree.tpl.php:76 +#: view/smarty3/compiled/788b954cfdfbf400e0cd17e1e5629515d87eb32f.file.commit.tpl.php:77 +#: view/smarty3/compiled/c6d84f5d6190b86e81c93d71a9bb01aa32004841.file.project.tpl.php:76 +#: view/smarty3/compiled/75e3f44e184d57ada4cf6c86f0ab429f322f9b3e.file.project_empty.tpl.php:76 +#: view/smarty3/compiled/7fd1b71c8d07cc4e9605dd231482f4f114db46f5.file.commits.tpl.php:77 +msgid "Clone this project:" msgstr "" -#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25 -msgid "Not Found" +#: view/smarty3/compiled/a908c9746db77ea1b3b8583681c75a6737ae4de1.file.blob.tpl.php:111 +msgid "Click here to download" msgstr "" -#: index.php:272 mod/help.php:45 -msgid "Page not found." +#: view/smarty3/compiled/75e3f44e184d57ada4cf6c86f0ab429f322f9b3e.file.project_empty.tpl.php:98 +msgid "This project is empty!" msgstr "" -#: index.php:381 mod/profperm.php:19 mod/group.php:72 -msgid "Permission denied" +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:31 +msgid "Projects" msgstr "" -#: index.php:382 mod/fsuggest.php:78 mod/files.php:170 -#: mod/notifications.php:66 mod/message.php:38 mod/message.php:174 -#: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164 -#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:66 -#: mod/api.php:26 mod/api.php:31 mod/photos.php:156 mod/photos.php:1072 -#: mod/register.php:42 mod/attach.php:33 mod/contacts.php:322 mod/follow.php:9 -#: mod/follow.php:42 mod/follow.php:81 mod/uimport.php:23 mod/allfriends.php:9 -#: mod/invite.php:15 mod/invite.php:101 mod/settings.php:20 -#: mod/settings.php:107 mod/settings.php:608 mod/display.php:508 -#: mod/profiles.php:165 mod/profiles.php:614 mod/wall_attach.php:55 -#: mod/suggest.php:58 mod/manage.php:96 mod/delegate.php:12 -#: mod/viewcontacts.php:24 mod/notes.php:20 mod/poke.php:135 +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:32 +msgid "add new" +msgstr "" + +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:51 +msgid "delete" +msgstr "" + +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:68 +#, php-format +msgid "" +"Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone." +msgstr "" + +#: view/theme/perihel/theme.php:33 view/theme/diabook/theme.php:123 +#: mod/notifications.php:93 include/nav.php:105 include/nav.php:148 +msgid "Home" +msgstr "" + +#: view/theme/perihel/theme.php:33 view/theme/diabook/theme.php:123 +#: include/nav.php:76 include/nav.php:148 +msgid "Your posts and conversations" +msgstr "" + +#: view/theme/perihel/theme.php:34 view/theme/diabook/theme.php:124 +#: mod/newmember.php:32 mod/profperm.php:104 include/identity.php:529 +#: include/identity.php:610 include/identity.php:639 include/nav.php:77 +msgid "Profile" +msgstr "" + +#: view/theme/perihel/theme.php:34 view/theme/diabook/theme.php:124 +#: include/nav.php:77 +msgid "Your profile page" +msgstr "" + +#: view/theme/perihel/theme.php:35 view/theme/diabook/theme.php:126 +#: mod/fbrowser.php:25 include/identity.php:646 include/nav.php:78 +msgid "Photos" +msgstr "" + +#: view/theme/perihel/theme.php:35 view/theme/diabook/theme.php:126 +#: include/nav.php:78 +msgid "Your photos" +msgstr "" + +#: view/theme/perihel/theme.php:36 view/theme/diabook/theme.php:127 +#: mod/events.php:396 include/identity.php:663 include/nav.php:80 +msgid "Events" +msgstr "" + +#: view/theme/perihel/theme.php:36 view/theme/diabook/theme.php:127 +#: include/nav.php:80 +msgid "Your events" +msgstr "" + +#: view/theme/perihel/theme.php:37 view/theme/diabook/theme.php:128 +#: include/nav.php:81 +msgid "Personal notes" +msgstr "" + +#: view/theme/perihel/theme.php:37 view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "" + +#: view/theme/perihel/theme.php:38 view/theme/diabook/theme.php:129 +#: mod/community.php:32 include/nav.php:129 include/nav.php:131 +msgid "Community" +msgstr "" + +#: view/theme/perihel/config.php:89 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 include/acl_selectors.php:337 +msgid "don't show" +msgstr "" + +#: view/theme/perihel/config.php:89 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 include/acl_selectors.php:336 +msgid "show" +msgstr "" + +#: view/theme/perihel/config.php:97 view/theme/diabook/config.php:150 +#: view/theme/quattro/config.php:66 +#: view/theme/zero-childs/cleanzero/config.php:82 +#: view/theme/dispy/config.php:72 view/theme/clean/config.php:85 +#: view/theme/duepuntozero/config.php:61 view/theme/cleanzero/config.php:82 +#: view/theme/vier/config.php:58 view/theme/vier-mobil/config.php:49 +#: mod/settings.php:919 +msgid "Theme settings" +msgstr "" + +#: view/theme/perihel/config.php:98 view/theme/diabook/config.php:151 +#: view/theme/zero-childs/cleanzero/config.php:84 +#: view/theme/dispy/config.php:73 view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "" + +#: view/theme/perihel/config.php:99 view/theme/diabook/config.php:152 +#: view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "" + +#: view/theme/perihel/config.php:100 view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "" + +#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "" + +#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 +msgid "Community Pages" +msgstr "" + +#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 +#: view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "" + +#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 +#: view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "" + +#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 +#: view/theme/diabook/theme.php:627 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 +#: view/theme/diabook/theme.php:628 +msgid "Connect Services" +msgstr "" + +#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 +#: view/theme/diabook/theme.php:629 +msgid "Find Friends" +msgstr "" + +#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 +#: view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "" + +#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 +#: view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "" + +#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 +#: view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "" + +#: view/theme/diabook/theme.php:125 mod/contacts.php:745 include/nav.php:178 +msgid "Contacts" +msgstr "" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "" + +#: view/theme/diabook/theme.php:463 include/conversation.php:118 +#: include/conversation.php:245 include/text.php:1998 +msgid "event" +msgstr "" + +#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 +#: mod/tagger.php:62 mod/like.php:149 mod/like.php:319 mod/subthread.php:87 +#: include/conversation.php:121 include/conversation.php:130 +#: include/conversation.php:248 include/conversation.php:257 +#: include/diaspora.php:2106 +msgid "status" +msgstr "" + +#: view/theme/diabook/theme.php:471 mod/tagger.php:62 mod/like.php:149 +#: mod/subthread.php:87 include/conversation.php:126 +#: include/conversation.php:253 include/diaspora.php:2106 +#: include/text.php:2000 +msgid "photo" +msgstr "" + +#: view/theme/diabook/theme.php:480 mod/like.php:166 +#: include/conversation.php:137 include/diaspora.php:2122 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: view/theme/diabook/theme.php:499 mod/photos.php:50 mod/photos.php:177 +#: mod/photos.php:1086 mod/photos.php:1207 mod/photos.php:1230 +#: mod/photos.php:1779 mod/photos.php:1791 +msgid "Contact Photos" +msgstr "" + +#: view/theme/diabook/theme.php:500 mod/photos.php:177 mod/photos.php:753 +#: mod/photos.php:1207 mod/photos.php:1230 mod/profile_photo.php:74 +#: mod/profile_photo.php:81 mod/profile_photo.php:88 mod/profile_photo.php:204 +#: mod/profile_photo.php:296 mod/profile_photo.php:305 include/user.php:343 +#: include/user.php:350 include/user.php:357 +msgid "Profile Photos" +msgstr "" + +#: view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "" + +#: view/theme/diabook/theme.php:525 mod/directory.php:53 +msgid "Global Directory" +msgstr "" + +#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "" + +#: view/theme/diabook/theme.php:527 mod/suggest.php:69 +#: include/contact_widgets.php:35 +msgid "Friend Suggestions" +msgstr "" + +#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 +msgid "Invite Friends" +msgstr "" + +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648 +#: mod/newmember.php:22 mod/admin.php:1114 mod/admin.php:1335 +#: mod/settings.php:90 include/nav.php:173 +msgid "Settings" +msgstr "" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "" + +#: view/theme/quattro/config.php:68 +#: view/theme/zero-childs/cleanzero/config.php:86 +#: view/theme/clean/config.php:88 view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "" + +#: view/theme/zero-childs/cleanzero/config.php:83 +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "" + +#: view/theme/zero-childs/cleanzero/config.php:85 +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "" + +#: view/theme/clean/config.php:56 view/theme/duepuntozero/config.php:44 +#: include/text.php:1734 include/user.php:255 +msgid "default" +msgstr "" + +#: view/theme/clean/config.php:57 +msgid "Midnight" +msgstr "" + +#: view/theme/clean/config.php:58 +msgid "Zenburn" +msgstr "" + +#: view/theme/clean/config.php:59 +msgid "Bootstrap" +msgstr "" + +#: view/theme/clean/config.php:60 +msgid "Shades of Pink" +msgstr "" + +#: view/theme/clean/config.php:61 +msgid "Lime and Orange" +msgstr "" + +#: view/theme/clean/config.php:62 +msgid "GeoCities Retro" +msgstr "" + +#: view/theme/clean/config.php:86 +msgid "Background Image" +msgstr "" + +#: view/theme/clean/config.php:86 +msgid "" +"The URL to a picture (e.g. from your photo album) that should be used as " +"background image." +msgstr "" + +#: view/theme/clean/config.php:87 +msgid "Background Color" +msgstr "" + +#: view/theme/clean/config.php:87 +msgid "HEX value for the background color. Don't include the #" +msgstr "" + +#: view/theme/clean/config.php:89 +msgid "font size" +msgstr "" + +#: view/theme/clean/config.php:89 +msgid "base font size for your interface" +msgstr "" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "" + +#: view/theme/vier/config.php:59 view/theme/vier-mobil/config.php:50 +msgid "Set style" +msgstr "" + +#: mod/mood.php:62 include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: mod/mood.php:114 mod/api.php:26 mod/api.php:31 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/attach.php:33 mod/regmod.php:110 mod/uimport.php:23 mod/poke.php:135 +#: mod/delegate.php:12 mod/nogroup.php:25 mod/fsuggest.php:78 +#: mod/invite.php:15 mod/invite.php:101 mod/manage.php:96 mod/message.php:38 +#: mod/message.php:174 mod/viewcontacts.php:24 mod/notifications.php:66 +#: mod/allfriends.php:9 mod/contacts.php:322 mod/crepair.php:120 +#: mod/dfrn_confirm.php:55 mod/display.php:508 mod/editpost.php:10 +#: mod/events.php:164 mod/follow.php:9 mod/follow.php:42 mod/follow.php:81 +#: mod/group.php:19 mod/item.php:170 mod/item.php:186 mod/network.php:4 +#: mod/notes.php:20 mod/photos.php:156 mod/photos.php:1072 #: mod/profile_photo.php:19 mod/profile_photo.php:169 -#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/group.php:19 -#: mod/regmod.php:110 mod/item.php:170 mod/item.php:186 mod/mood.php:114 -#: mod/network.php:4 mod/crepair.php:120 include/items.php:5022 +#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/profiles.php:165 +#: mod/profiles.php:614 mod/suggest.php:58 mod/wall_attach.php:55 +#: mod/wall_upload.php:66 mod/register.php:42 mod/settings.php:20 +#: mod/settings.php:107 mod/settings.php:608 include/items.php:5022 +#: index.php:382 msgid "Permission denied." msgstr "" -#: index.php:441 -msgid "toggle mobile" +#: mod/mood.php:133 +msgid "Mood" msgstr "" -#: mod/update_notes.php:37 mod/update_profile.php:41 -#: mod/update_community.php:18 mod/update_network.php:25 -#: mod/update_display.php:22 +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: mod/decrypt.php:9 mod/viewsrc.php:7 +msgid "Access denied." +msgstr "" + +#: mod/decrypt.php:15 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:169 +#: mod/admin.php:1062 mod/admin.php:1275 mod/display.php:82 +#: mod/display.php:295 mod/display.php:512 include/items.php:4813 +msgid "Item not found." +msgstr "" + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "" + +#: mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" +msgstr "" + +#: mod/api.php:105 mod/message.php:209 mod/contacts.php:413 +#: mod/dfrn_request.php:845 mod/follow.php:57 mod/profiles.php:657 +#: mod/profiles.php:660 mod/suggest.php:29 mod/register.php:235 +#: mod/settings.php:1036 mod/settings.php:1042 mod/settings.php:1050 +#: mod/settings.php:1054 mod/settings.php:1059 mod/settings.php:1065 +#: mod/settings.php:1071 mod/settings.php:1077 mod/settings.php:1105 +#: mod/settings.php:1106 mod/settings.php:1107 mod/settings.php:1108 +#: mod/settings.php:1109 include/items.php:4854 +msgid "Yes" +msgstr "" + +#: mod/api.php:106 mod/dfrn_request.php:845 mod/follow.php:57 +#: mod/profiles.php:657 mod/profiles.php:661 mod/register.php:236 +#: mod/settings.php:1036 mod/settings.php:1042 mod/settings.php:1050 +#: mod/settings.php:1054 mod/settings.php:1059 mod/settings.php:1065 +#: mod/settings.php:1071 mod/settings.php:1077 mod/settings.php:1105 +#: mod/settings.php:1106 mod/settings.php:1107 mod/settings.php:1108 +#: mod/settings.php:1109 +msgid "No" +msgstr "" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "" + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: mod/lostpass.php:42 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the " +"verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "" + +#: mod/lostpass.php:53 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after " +"logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: mod/lostpass.php:109 boot.php:1277 +msgid "Password Reset" +msgstr "" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "" + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: mod/lostpass.php:125 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately " +"to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "" + +#: mod/lostpass.php:131 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after " +"logging in.\n" +"\t\t\t" +msgstr "" + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "" + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: mod/wallmessage.php:56 mod/message.php:63 +msgid "No recipient selected." +msgstr "" + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "" + +#: mod/wallmessage.php:62 mod/message.php:70 +msgid "Message could not be sent." +msgstr "" + +#: mod/wallmessage.php:65 mod/message.php:73 +msgid "Message collection failure." +msgstr "" + +#: mod/wallmessage.php:68 mod/message.php:76 +msgid "Message sent." +msgstr "" + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "" + +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:283 +#: mod/message.php:291 mod/message.php:466 mod/message.php:474 +#: include/conversation.php:1001 include/conversation.php:1019 +msgid "Please enter a link URL:" +msgstr "" + +#: mod/wallmessage.php:142 mod/message.php:319 +msgid "Send Private Message" +msgstr "" + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "" + +#: mod/wallmessage.php:144 mod/message.php:320 mod/message.php:553 +msgid "To:" +msgstr "" + +#: mod/wallmessage.php:145 mod/message.php:325 mod/message.php:555 +msgid "Subject:" +msgstr "" + +#: mod/wallmessage.php:151 mod/invite.php:134 mod/message.php:329 +#: mod/message.php:558 +msgid "Your message:" +msgstr "" + +#: mod/wallmessage.php:154 mod/message.php:332 mod/message.php:562 +#: mod/editpost.php:110 include/conversation.php:1056 +msgid "Upload photo" +msgstr "" + +#: mod/wallmessage.php:155 mod/message.php:333 mod/message.php:563 +#: mod/editpost.php:114 include/conversation.php:1060 +msgid "Insert web link" +msgstr "" + +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "" + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "" + +#: mod/newmember.php:12 +msgid "" +"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." +msgstr "" + +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "" + +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "" + +#: mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to " +"join." +msgstr "" + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "" + +#: mod/newmember.php:26 +msgid "" +"On your Settings 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." +msgstr "" + +#: mod/newmember.php:28 +msgid "" +"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." +msgstr "" + +#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:695 +msgid "Upload Profile Photo" +msgstr "" + +#: mod/newmember.php:36 +msgid "" +"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." +msgstr "" + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "" + +#: mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown " +"visitors." +msgstr "" + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "" + +#: mod/newmember.php:40 +msgid "" +"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." +msgstr "" + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "" + +#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81 +msgid "Facebook" +msgstr "" + +#: mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "" + +#: mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "" + +#: mod/newmember.php:56 +msgid "Importing Emails" +msgstr "" + +#: mod/newmember.php:56 +msgid "" +"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" +msgstr "" + +#: mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "" + +#: mod/newmember.php:58 +msgid "" +"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 Add New Contact dialog." +msgstr "" + +#: mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "" + +#: mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "" + +#: mod/newmember.php:62 +msgid "Finding New People" +msgstr "" + +#: mod/newmember.php:62 +msgid "" +"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." +msgstr "" + +#: mod/newmember.php:66 include/group.php:270 +msgid "Groups" +msgstr "" + +#: mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "" + +#: mod/newmember.php:70 +msgid "" +"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." +msgstr "" + +#: mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "" + +#: mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to " +"people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "" + +#: mod/newmember.php:78 +msgid "Getting Help" +msgstr "" + +#: mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "" + +#: mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program " +"features and resources." +msgstr "" + +#: mod/_search.php:21 mod/network.php:187 mod/search.php:21 +msgid "Remove term" +msgstr "" + +#: mod/_search.php:30 mod/network.php:196 mod/search.php:30 +#: include/features.php:42 +msgid "Saved Searches" +msgstr "" + +#: mod/_search.php:89 mod/viewcontacts.php:19 mod/community.php:18 +#: mod/dfrn_request.php:777 mod/directory.php:35 mod/display.php:223 +#: mod/photos.php:942 mod/search.php:89 mod/videos.php:187 +msgid "Public access denied." +msgstr "" + +#: mod/_search.php:99 mod/search.php:99 include/nav.php:119 +#: include/text.php:977 +msgid "Search" +msgstr "" + +#: mod/_search.php:180 mod/_search.php:206 mod/community.php:62 +#: mod/community.php:71 mod/search.php:174 +msgid "No results." +msgstr "" + +#: mod/tagger.php:95 include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "" + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "" + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "" + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "" + +#: mod/uimport.php:50 mod/register.php:188 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: mod/uimport.php:64 mod/register.php:283 +msgid "Import" +msgstr "" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also " +"to inform your friends that you moved here." +msgstr "" + +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "" + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "" + +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "" + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "" + +#: mod/update_profile.php:41 mod/update_network.php:25 +#: mod/update_display.php:22 mod/update_community.php:18 +#: mod/update_notes.php:37 msgid "[Embedded content - reload page to view]" msgstr "" -#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120 -#: mod/crepair.php:134 +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "" + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "" + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "" + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "" + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "" + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "" + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "" + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "" + +#: mod/like.php:168 include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "" + +#: mod/localtime.php:12 include/bb2diaspora.php:139 include/event.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "" + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "" + +#: mod/filer.php:30 include/conversation.php:1005 +#: include/conversation.php:1023 +msgid "Save to Folder:" +msgstr "" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "" + +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:978 +msgid "Save" +msgstr "" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: mod/uexport.php:77 +msgid "Export account" +msgstr "" + +#: mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "" + +#: mod/uexport.php:78 +msgid "Export all" +msgstr "" + +#: mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "" + +#: mod/uexport.php:85 mod/settings.php:77 +msgid "Export personal data" +msgstr "" + +#: mod/apps.php:7 index.php:225 +msgid "You must be logged in to use addons. " +msgstr "" + +#: mod/apps.php:11 +msgid "Applications" +msgstr "" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "" + +#: mod/navigation.php:20 include/nav.php:34 +msgid "Nothing new here" +msgstr "" + +#: mod/navigation.php:24 include/nav.php:38 +msgid "Clear notifications" +msgstr "" + +#: mod/tagrm.php:11 mod/tagrm.php:94 mod/fbrowser.php:81 mod/fbrowser.php:116 +#: mod/message.php:212 mod/contacts.php:416 mod/dfrn_request.php:859 +#: mod/editpost.php:148 mod/follow.php:68 mod/photos.php:225 +#: mod/photos.php:314 mod/suggest.php:32 mod/videos.php:121 +#: mod/settings.php:622 mod/settings.php:648 include/conversation.php:1093 +#: include/items.php:4857 +msgid "Cancel" +msgstr "" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "" + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "" + +#: mod/delegate.php:130 include/nav.php:171 +msgid "Delegate Page Management" +msgstr "" + +#: mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "" + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "" + +#: mod/nogroup.php:40 mod/viewcontacts.php:64 mod/contacts.php:573 +#: mod/contacts.php:797 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: mod/nogroup.php:41 mod/contacts.php:798 +msgid "Edit contact" +msgstr "" + +#: mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "" + +#: mod/fbrowser.php:113 +msgid "Files" +msgstr "" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "" + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "" + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "" + +#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/crepair.php:134 +#: mod/dfrn_confirm.php:120 msgid "Contact not found." msgstr "" @@ -293,241 +1500,232 @@ msgstr "" msgid "Suggest a friend for %s" msgstr "" -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." msgstr "" -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "" - -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "" - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "" - -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#: mod/invite.php:49 #, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" +msgid "%s : Not a valid email address." +msgstr "" + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "" + +#: mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." msgstr[0] "" msgstr[1] "" -#: mod/dfrn_request.php:172 -msgid "Introduction complete." +#: mod/invite.php:112 +msgid "You have no more invitations available" msgstr "" -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "" - -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "" - -#: mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "" - -#: mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "" - -#: mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "" - -#: mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "" - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "" - -#: mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "" - -#: mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "" - -#: mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "" - -#: mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "" - -#: mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "" - -#: mod/dfrn_request.php:507 include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "" - -#: mod/dfrn_request.php:576 mod/contacts.php:194 -msgid "Failed to update contact record." -msgstr "" - -#: mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "" - -#: mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "" - -#: mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to this profile." -msgstr "" - -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "" - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "" - -#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4236 -msgid "[Name Withheld]" -msgstr "" - -#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187 -#: mod/search.php:89 mod/display.php:223 mod/community.php:18 -#: mod/viewcontacts.php:19 mod/directory.php:35 -msgid "Public access denied." -msgstr "" - -#: mod/dfrn_request.php:819 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "" - -#: mod/dfrn_request.php:839 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site " -"and join us today." -msgstr "" - -#: mod/dfrn_request.php:842 -msgid "Friend/Connection Request" -msgstr "" - -#: mod/dfrn_request.php:843 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "" - -#: mod/dfrn_request.php:844 mod/follow.php:56 -msgid "Please answer the following:" -msgstr "" - -#: mod/dfrn_request.php:845 mod/follow.php:57 -#, php-format -msgid "Does %s know you?" -msgstr "" - -#: mod/dfrn_request.php:845 mod/api.php:106 mod/register.php:234 -#: mod/follow.php:57 mod/settings.php:1035 mod/settings.php:1041 -#: mod/settings.php:1049 mod/settings.php:1053 mod/settings.php:1058 -#: mod/settings.php:1064 mod/settings.php:1070 mod/settings.php:1076 -#: mod/settings.php:1104 mod/settings.php:1105 mod/settings.php:1106 -#: mod/settings.php:1107 mod/settings.php:1108 mod/profiles.php:657 -#: mod/profiles.php:661 -msgid "No" -msgstr "" - -#: mod/dfrn_request.php:845 mod/message.php:209 mod/api.php:105 -#: mod/register.php:233 mod/contacts.php:413 mod/follow.php:57 -#: mod/settings.php:1035 mod/settings.php:1041 mod/settings.php:1049 -#: mod/settings.php:1053 mod/settings.php:1058 mod/settings.php:1064 -#: mod/settings.php:1070 mod/settings.php:1076 mod/settings.php:1104 -#: mod/settings.php:1105 mod/settings.php:1106 mod/settings.php:1107 -#: mod/settings.php:1108 mod/profiles.php:657 mod/profiles.php:660 -#: mod/suggest.php:29 include/items.php:4854 -msgid "Yes" -msgstr "" - -#: mod/dfrn_request.php:849 mod/follow.php:58 -msgid "Add a personal note:" -msgstr "" - -#: mod/dfrn_request.php:851 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "" - -#: mod/dfrn_request.php:852 -msgid "StatusNet/Federated Social Web" -msgstr "" - -#: mod/dfrn_request.php:853 mod/settings.php:761 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "" - -#: mod/dfrn_request.php:854 +#: mod/invite.php:120 #, php-format msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search " -"bar." +"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." msgstr "" -#: mod/dfrn_request.php:855 mod/follow.php:64 -msgid "Your Identity Address:" +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." msgstr "" -#: mod/dfrn_request.php:858 mod/follow.php:67 -msgid "Submit Request" +#: mod/invite.php:123 +#, php-format +msgid "" +"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." msgstr "" -#: mod/dfrn_request.php:859 mod/message.php:212 mod/editpost.php:148 -#: mod/fbrowser.php:81 mod/fbrowser.php:116 mod/photos.php:225 -#: mod/photos.php:314 mod/contacts.php:416 mod/videos.php:121 -#: mod/follow.php:68 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:622 -#: mod/settings.php:648 mod/suggest.php:32 include/items.php:4857 -#: include/conversation.php:1093 -msgid "Cancel" +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other " +"public sites or invite members." msgstr "" -#: mod/files.php:156 mod/videos.php:373 include/text.php:1429 -msgid "View Video" +#: mod/invite.php:132 +msgid "Send invitations" msgstr "" -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" msgstr "" -#: mod/profile.php:155 mod/display.php:343 -msgid "Access to this profile has been restricted." +#: mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." msgstr "" -#: mod/profile.php:179 -msgid "Tips for New Members" +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "" + +#: mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "" + +#: mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "" + +#: mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "" + +#: mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: mod/message.php:9 include/nav.php:165 +msgid "New Message" +msgstr "" + +#: mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "" + +#: mod/message.php:182 include/nav.php:162 +msgid "Messages" +msgstr "" + +#: mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "" + +#: mod/message.php:227 +msgid "Message deleted." +msgstr "" + +#: mod/message.php:258 +msgid "Conversation removed." +msgstr "" + +#: mod/message.php:371 +msgid "No messages." +msgstr "" + +#: mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "" + +#: mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "" + +#: mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "" + +#: mod/message.php:405 mod/message.php:546 +msgid "Delete conversation" +msgstr "" + +#: mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "" + +#: mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" +msgstr[1] "" + +#: mod/message.php:450 +msgid "Message not available." +msgstr "" + +#: mod/message.php:520 +msgid "Delete message" +msgstr "" + +#: mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: mod/message.php:552 +msgid "Send Reply" +msgstr "" + +#: mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "" + +#: mod/viewcontacts.php:78 include/text.php:899 +msgid "View Contacts" +msgstr "" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "" + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "" + +#: mod/community.php:23 +msgid "Not available." +msgstr "" + +#: mod/help.php:31 +msgid "Help:" +msgstr "" + +#: mod/help.php:36 include/nav.php:114 +msgid "Help" +msgstr "" + +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 +msgid "Not Found" +msgstr "" + +#: mod/help.php:45 index.php:272 +msgid "Page not found." msgstr "" #: mod/notifications.php:26 @@ -557,11 +1755,6 @@ msgstr "" msgid "Personal" msgstr "" -#: mod/notifications.php:93 view/theme/diabook/theme.php:123 -#: include/nav.php:105 include/nav.php:148 -msgid "Home" -msgstr "" - #: mod/notifications.php:98 include/nav.php:153 msgid "Introductions" msgstr "" @@ -718,93 +1911,6 @@ msgstr "" msgid "Home Notifications" msgstr "" -#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:471 include/text.php:2000 -#: include/diaspora.php:2106 include/conversation.php:126 -#: include/conversation.php:253 -msgid "photo" -msgstr "" - -#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 -#: include/diaspora.php:2106 include/conversation.php:121 -#: include/conversation.php:130 include/conversation.php:248 -#: include/conversation.php:257 -msgid "status" -msgstr "" - -#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2122 -#: include/conversation.php:137 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: mod/like.php:168 include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "" - -#: mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "" - -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." -msgstr "" - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "" - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "" - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "" - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "" - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "" - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "" - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "" - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "" - -#: mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "" - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "" - #: mod/admin.php:57 msgid "Theme settings updated." msgstr "" @@ -857,12 +1963,6 @@ msgstr "" msgid "User registrations waiting for confirmation" msgstr "" -#: mod/admin.php:169 mod/admin.php:1062 mod/admin.php:1275 mod/notice.php:15 -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 include/items.php:4813 -msgid "Item not found." -msgstr "" - #: mod/admin.php:193 mod/admin.php:961 msgid "Normal Account" msgstr "" @@ -994,11 +2094,11 @@ msgstr "" #: mod/admin.php:628 mod/admin.php:1166 mod/admin.php:1368 mod/admin.php:1455 #: mod/settings.php:621 mod/settings.php:731 mod/settings.php:754 -#: mod/settings.php:823 mod/settings.php:905 mod/settings.php:1136 +#: mod/settings.php:823 mod/settings.php:905 mod/settings.php:1137 msgid "Save Settings" msgstr "" -#: mod/admin.php:629 mod/register.php:255 +#: mod/admin.php:629 mod/register.php:260 msgid "Registration" msgstr "" @@ -1656,7 +2756,7 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "" -#: mod/admin.php:850 include/user.php:413 +#: mod/admin.php:850 include/user.php:421 #, php-format msgid "Registration details for %s" msgstr "" @@ -1711,7 +2811,7 @@ msgid "Request date" msgstr "" #: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1039 -#: mod/settings.php:623 mod/settings.php:649 mod/crepair.php:170 +#: mod/crepair.php:170 mod/settings.php:623 mod/settings.php:649 msgid "Name" msgstr "" @@ -1820,12 +2920,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: mod/admin.php:1114 mod/admin.php:1335 mod/newmember.php:22 -#: mod/settings.php:90 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:648 include/nav.php:173 -msgid "Settings" -msgstr "" - #: mod/admin.php:1121 mod/admin.php:1344 msgid "Author: " msgstr "" @@ -1900,981 +2994,21 @@ msgstr "" msgid "FTP Password" msgstr "" -#: mod/message.php:9 include/nav.php:165 -msgid "New Message" -msgstr "" - -#: mod/message.php:63 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "" - -#: mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "" - -#: mod/message.php:70 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "" - -#: mod/message.php:73 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "" - -#: mod/message.php:76 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "" - -#: mod/message.php:182 include/nav.php:162 -msgid "Messages" -msgstr "" - -#: mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "" - -#: mod/message.php:227 -msgid "Message deleted." -msgstr "" - -#: mod/message.php:258 -msgid "Conversation removed." -msgstr "" - -#: mod/message.php:283 mod/message.php:291 mod/message.php:466 -#: mod/message.php:474 mod/wallmessage.php:127 mod/wallmessage.php:135 -#: include/conversation.php:1001 include/conversation.php:1019 -msgid "Please enter a link URL:" -msgstr "" - -#: mod/message.php:319 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "" - -#: mod/message.php:320 mod/message.php:553 mod/wallmessage.php:144 -msgid "To:" -msgstr "" - -#: mod/message.php:325 mod/message.php:555 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "" - -#: mod/message.php:329 mod/message.php:558 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "" - -#: mod/message.php:332 mod/message.php:562 mod/editpost.php:110 -#: mod/wallmessage.php:154 include/conversation.php:1056 -msgid "Upload photo" -msgstr "" - -#: mod/message.php:333 mod/message.php:563 mod/editpost.php:114 -#: mod/wallmessage.php:155 include/conversation.php:1060 -msgid "Insert web link" -msgstr "" - -#: mod/message.php:371 -msgid "No messages." -msgstr "" - -#: mod/message.php:378 +#: mod/allfriends.php:37 #, php-format -msgid "Unknown sender - %s" +msgid "Friends of %s" msgstr "" -#: mod/message.php:381 -#, php-format -msgid "You and %s" +#: mod/allfriends.php:44 +msgid "No friends to display." msgstr "" -#: mod/message.php:384 -#, php-format -msgid "%s and You" +#: mod/common.php:45 +msgid "Common Friends" msgstr "" -#: mod/message.php:405 mod/message.php:546 -msgid "Delete conversation" -msgstr "" - -#: mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "" - -#: mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "" -msgstr[1] "" - -#: mod/message.php:450 -msgid "Message not available." -msgstr "" - -#: mod/message.php:520 -msgid "Delete message" -msgstr "" - -#: mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: mod/message.php:552 -msgid "Send Reply" -msgstr "" - -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "" - -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "" - -#: mod/editpost.php:109 mod/filer.php:31 mod/notes.php:59 include/text.php:978 -msgid "Save" -msgstr "" - -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "" - -#: mod/editpost.php:119 include/conversation.php:1065 -msgid "audio link" -msgstr "" - -#: mod/editpost.php:120 include/conversation.php:1066 -msgid "Set your location" -msgstr "" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "" - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -msgstr "" - -#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:626 -msgid "Profile not found." -msgstr "" - -#: mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it " -"has already been approved." -msgstr "" - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "" - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "" - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "" - -#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "" - -#: mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "" - -#: mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "" - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "" - -#: mod/dfrn_confirm.php:487 include/diaspora.php:622 -#: include/conversation.php:172 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "" - -#: mod/dfrn_confirm.php:572 -#, php-format -msgid "No user record found for '%s' " -msgstr "" - -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." -msgstr "" - -#: mod/dfrn_confirm.php:593 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "" - -#: mod/dfrn_confirm.php:614 -msgid "Contact record was not found for you on our site." -msgstr "" - -#: mod/dfrn_confirm.php:628 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "" - -#: mod/dfrn_confirm.php:648 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "" - -#: mod/dfrn_confirm.php:659 -msgid "Unable to set your contact credentials on our system." -msgstr "" - -#: mod/dfrn_confirm.php:726 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "" - -#: mod/events.php:71 mod/events.php:73 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:80 mod/events.php:82 -msgid "Event title and start time are required." -msgstr "" - -#: mod/events.php:317 -msgid "l, F j" -msgstr "" - -#: mod/events.php:339 -msgid "Edit event" -msgstr "" - -#: mod/events.php:361 include/text.php:1679 include/text.php:1689 -msgid "link to source" -msgstr "" - -#: mod/events.php:396 view/theme/diabook/theme.php:127 -#: include/identity.php:663 include/nav.php:80 -msgid "Events" -msgstr "" - -#: mod/events.php:397 -msgid "Create New Event" -msgstr "" - -#: mod/events.php:398 -msgid "Previous" -msgstr "" - -#: mod/events.php:399 mod/install.php:209 -msgid "Next" -msgstr "" - -#: mod/events.php:491 -msgid "Event details" -msgstr "" - -#: mod/events.php:492 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:493 -msgid "Event Starts:" -msgstr "" - -#: mod/events.php:493 mod/events.php:505 -msgid "Required" -msgstr "" - -#: mod/events.php:495 -msgid "Finish date/time is not known or not relevant" -msgstr "" - -#: mod/events.php:497 -msgid "Event Finishes:" -msgstr "" - -#: mod/events.php:499 -msgid "Adjust for viewer timezone" -msgstr "" - -#: mod/events.php:501 -msgid "Description:" -msgstr "" - -#: mod/events.php:503 mod/directory.php:152 include/event.php:42 -#: include/identity.php:268 include/bb2diaspora.php:161 -msgid "Location:" -msgstr "" - -#: mod/events.php:505 -msgid "Title:" -msgstr "" - -#: mod/events.php:507 -msgid "Share this event" -msgstr "" - -#: mod/fbrowser.php:25 view/theme/diabook/theme.php:126 -#: include/identity.php:646 include/nav.php:78 -msgid "Photos" -msgstr "" - -#: mod/fbrowser.php:113 -msgid "Files" -msgstr "" - -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "" - -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "" - -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "" - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "" - -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "" - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "" - -#: mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "" - -#: mod/nogroup.php:40 mod/contacts.php:573 mod/contacts.php:797 -#: mod/viewcontacts.php:64 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "" - -#: mod/nogroup.php:41 mod/contacts.php:798 -msgid "Edit contact" -msgstr "" - -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "" - -#: mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "" - -#: mod/friendica.php:60 -msgid "running at web location" -msgstr "" - -#: mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "" - -#: mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "" - -#: mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "" - -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" -msgstr "" - -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "" - -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "" - -#: mod/wall_upload.php:122 mod/photos.php:789 mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "" - -#: mod/wall_upload.php:144 mod/photos.php:829 mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "" - -#: mod/wall_upload.php:169 mod/wall_upload.php:178 mod/wall_upload.php:185 -#: mod/item.php:486 include/message.php:144 include/Photo.php:951 -#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 -msgid "Wall Photos" -msgstr "" - -#: mod/wall_upload.php:172 mod/photos.php:856 mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "" - -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "" - -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "" - -#: mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "" - -#: mod/tagger.php:95 include/conversation.php:265 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 -#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 -#: mod/photos.php:1791 view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "" - -#: mod/photos.php:84 include/identity.php:649 -msgid "Photo Albums" -msgstr "" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "" - -#: mod/photos.php:102 mod/settings.php:34 -msgid "everybody" -msgstr "" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "" - -#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207 -#: mod/photos.php:1230 mod/profile_photo.php:74 mod/profile_photo.php:81 -#: mod/profile_photo.php:88 mod/profile_photo.php:204 -#: mod/profile_photo.php:296 mod/profile_photo.php:305 -#: view/theme/diabook/theme.php:500 include/user.php:335 include/user.php:342 -#: include/user.php:349 -msgid "Profile Photos" -msgstr "" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "" - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "" - -#: mod/photos.php:220 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" - -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "" - -#: mod/photos.php:684 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: mod/photos.php:684 -msgid "a photo" -msgstr "" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "" - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "" - -#: mod/photos.php:1053 mod/videos.php:298 -msgid "Access to this item is restricted." -msgstr "" - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" - -#: mod/photos.php:1149 -msgid "Upload Photos" -msgstr "" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "" - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "" - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "" - -#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1171 -msgid "Show to Groups" -msgstr "" - -#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1172 -msgid "Show to Contacts" -msgstr "" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: mod/photos.php:1316 -msgid "Photo not available" -msgstr "" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "" - -#: mod/photos.php:1477 -msgid "Tags: " -msgstr "" - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "" - -#: mod/photos.php:1522 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" - -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "" - -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "" - -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "" - -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "" - -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "" - -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "" - -#: mod/photos.php:1827 mod/videos.php:380 -msgid "View Album" -msgstr "" - -#: mod/hcard.php:10 -msgid "No profile" -msgstr "" - -#: mod/register.php:90 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "" - -#: mod/register.php:96 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "" - -#: mod/register.php:105 -msgid "Your registration can not be processed." -msgstr "" - -#: mod/register.php:148 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: mod/register.php:186 mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: mod/register.php:214 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "" - -#: mod/register.php:215 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "" - -#: mod/register.php:216 -msgid "Your OpenID (optional): " -msgstr "" - -#: mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "" - -#: mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: mod/register.php:252 -msgid "Your invitation ID: " -msgstr "" - -#: mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "" - -#: mod/register.php:264 -msgid "Your Email Address: " -msgstr "" - -#: mod/register.php:265 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@$sitename'." -msgstr "" - -#: mod/register.php:266 -msgid "Choose a nickname: " -msgstr "" - -#: mod/register.php:269 boot.php:1238 include/nav.php:109 -msgid "Register" -msgstr "" - -#: mod/register.php:275 mod/uimport.php:64 -msgid "Import" -msgstr "" - -#: mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "" - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the " -"verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "" - -#: mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after " -"logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "" - -#: mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: mod/lostpass.php:109 boot.php:1277 -msgid "Password Reset" -msgstr "" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "" - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately " -"to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "" - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after " -"logging in.\n" -"\t\t\t" -msgstr "" - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "" - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "" - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "" - -#: mod/apps.php:11 -msgid "Applications" -msgstr "" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "" - -#: mod/help.php:31 -msgid "Help:" -msgstr "" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" +#: mod/common.php:82 +msgid "No contacts in common." msgstr "" #: mod/contacts.php:114 @@ -2896,6 +3030,10 @@ msgstr "" msgid "Contact updated." msgstr "" +#: mod/contacts.php:194 mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "" + #: mod/contacts.php:361 msgid "Contact has been blocked" msgstr "" @@ -3169,10 +3307,6 @@ msgstr "" msgid "Only show hidden contacts" msgstr "" -#: mod/contacts.php:745 view/theme/diabook/theme.php:125 include/nav.php:178 -msgid "Contacts" -msgstr "" - #: mod/contacts.php:749 msgid "Search your contacts" msgstr "" @@ -3201,32 +3335,588 @@ msgstr "" msgid "you are a fan of" msgstr "" -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" +#: mod/content.php:119 mod/network.php:526 +msgid "No such group" msgstr "" -#: mod/videos.php:118 -msgid "Delete Video" +#: mod/content.php:130 mod/network.php:543 +msgid "Group is empty" msgstr "" -#: mod/videos.php:197 -msgid "No videos selected" +#: mod/content.php:135 mod/network.php:554 +#, php-format +msgid "Group: %s" msgstr "" -#: mod/videos.php:389 -msgid "Recent Videos" +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" msgstr "" -#: mod/videos.php:391 -msgid "Upload New Videos" +#: mod/crepair.php:107 +msgid "Contact settings applied." msgstr "" -#: mod/common.php:45 -msgid "Common Friends" +#: mod/crepair.php:109 +msgid "Contact update failed." msgstr "" -#: mod/common.php:82 -msgid "No contacts in common." +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "" + +#: mod/crepair.php:142 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect " +"information your communications with this contact may stop working." +msgstr "" + +#: mod/crepair.php:143 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "" + +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:160 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "" + +#: mod/crepair.php:179 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:181 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:626 +msgid "Profile not found." +msgstr "" + +#: mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it " +"has already been approved." +msgstr "" + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "" + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "" + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "" + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "" + +#: mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "" + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "" + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "" + +#: mod/dfrn_confirm.php:487 include/conversation.php:172 +#: include/diaspora.php:622 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "" + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "" + +#: mod/dfrn_confirm.php:593 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "" + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "" + +#: mod/dfrn_confirm.php:628 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "" + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "" + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "" + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4236 +msgid "[Name Withheld]" +msgstr "" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "" + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "" + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "" + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "" + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "" +msgstr[1] "" + +#: mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "" + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "" + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "" + +#: mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "" + +#: mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "" + +#: mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "" + +#: mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "" + +#: mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "" + +#: mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "" + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "" + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "" + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "" + +#: mod/dfrn_request.php:507 include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "" + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "" + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "" + +#: mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to this profile." +msgstr "" + +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "" + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "" + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "" + +#: mod/dfrn_request.php:839 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site " +"and join us today." +msgstr "" + +#: mod/dfrn_request.php:842 +msgid "Friend/Connection Request" +msgstr "" + +#: mod/dfrn_request.php:843 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "" + +#: mod/dfrn_request.php:844 mod/follow.php:56 +msgid "Please answer the following:" +msgstr "" + +#: mod/dfrn_request.php:845 mod/follow.php:57 +#, php-format +msgid "Does %s know you?" +msgstr "" + +#: mod/dfrn_request.php:849 mod/follow.php:58 +msgid "Add a personal note:" +msgstr "" + +#: mod/dfrn_request.php:851 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "" + +#: mod/dfrn_request.php:852 +msgid "StatusNet/Federated Social Web" +msgstr "" + +#: mod/dfrn_request.php:853 mod/settings.php:761 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "" + +#: mod/dfrn_request.php:854 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search " +"bar." +msgstr "" + +#: mod/dfrn_request.php:855 mod/follow.php:64 +msgid "Your Identity Address:" +msgstr "" + +#: mod/dfrn_request.php:858 mod/follow.php:67 +msgid "Submit Request" +msgstr "" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "" + +#: mod/directory.php:129 mod/profiles.php:746 +msgid "Age: " +msgstr "" + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "" + +#: mod/directory.php:152 mod/events.php:503 include/bb2diaspora.php:161 +#: include/event.php:42 include/identity.php:268 +msgid "Location:" +msgstr "" + +#: mod/directory.php:154 include/identity.php:270 include/identity.php:540 +msgid "Gender:" +msgstr "" + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 +msgid "Status:" +msgstr "" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 +msgid "Homepage:" +msgstr "" + +#: mod/directory.php:160 include/identity.php:277 include/identity.php:581 +msgid "About:" +msgstr "" + +#: mod/directory.php:205 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: mod/dirfind.php:27 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:62 mod/match.php:73 +msgid "No matches" +msgstr "" + +#: mod/display.php:343 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "" + +#: mod/display.php:505 +msgid "Item has been removed." +msgstr "" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "" + +#: mod/editpost.php:111 include/conversation.php:1057 +msgid "upload photo" +msgstr "" + +#: mod/editpost.php:112 include/conversation.php:1058 +msgid "Attach file" +msgstr "" + +#: mod/editpost.php:113 include/conversation.php:1059 +msgid "attach file" +msgstr "" + +#: mod/editpost.php:115 include/conversation.php:1061 +msgid "web link" +msgstr "" + +#: mod/editpost.php:116 include/conversation.php:1062 +msgid "Insert video link" +msgstr "" + +#: mod/editpost.php:117 include/conversation.php:1063 +msgid "video link" +msgstr "" + +#: mod/editpost.php:118 include/conversation.php:1064 +msgid "Insert audio link" +msgstr "" + +#: mod/editpost.php:119 include/conversation.php:1065 +msgid "audio link" +msgstr "" + +#: mod/editpost.php:120 include/conversation.php:1066 +msgid "Set your location" +msgstr "" + +#: mod/editpost.php:121 include/conversation.php:1067 +msgid "set location" +msgstr "" + +#: mod/editpost.php:122 include/conversation.php:1068 +msgid "Clear browser location" +msgstr "" + +#: mod/editpost.php:123 include/conversation.php:1069 +msgid "clear location" +msgstr "" + +#: mod/editpost.php:125 include/conversation.php:1075 +msgid "Permission settings" +msgstr "" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "" + +#: mod/editpost.php:134 include/conversation.php:1084 +msgid "Public post" +msgstr "" + +#: mod/editpost.php:137 include/conversation.php:1071 +msgid "Set title" +msgstr "" + +#: mod/editpost.php:139 include/conversation.php:1073 +msgid "Categories (comma-separated list)" +msgstr "" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "" + +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:80 mod/events.php:82 +msgid "Event title and start time are required." +msgstr "" + +#: mod/events.php:317 +msgid "l, F j" +msgstr "" + +#: mod/events.php:339 +msgid "Edit event" +msgstr "" + +#: mod/events.php:361 include/text.php:1679 include/text.php:1689 +msgid "link to source" +msgstr "" + +#: mod/events.php:397 +msgid "Create New Event" +msgstr "" + +#: mod/events.php:398 +msgid "Previous" +msgstr "" + +#: mod/events.php:399 mod/install.php:209 +msgid "Next" +msgstr "" + +#: mod/events.php:491 +msgid "Event details" +msgstr "" + +#: mod/events.php:492 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:493 +msgid "Event Starts:" +msgstr "" + +#: mod/events.php:493 mod/events.php:505 +msgid "Required" +msgstr "" + +#: mod/events.php:495 +msgid "Finish date/time is not known or not relevant" +msgstr "" + +#: mod/events.php:497 +msgid "Event Finishes:" +msgstr "" + +#: mod/events.php:499 +msgid "Adjust for viewer timezone" +msgstr "" + +#: mod/events.php:501 +msgid "Description:" +msgstr "" + +#: mod/events.php:505 +msgid "Title:" +msgstr "" + +#: mod/events.php:507 +msgid "Share this event" msgstr "" #: mod/follow.php:24 @@ -3237,1033 +3927,779 @@ msgstr "" msgid "Contact added" msgstr "" -#: mod/bookmarklet.php:12 boot.php:1263 include/nav.php:92 -msgid "Login" +#: mod/group.php:29 +msgid "Group created." msgstr "" -#: mod/bookmarklet.php:41 -msgid "The post was created" +#: mod/group.php:35 +msgid "Could not create group." msgstr "" -#: mod/uimport.php:66 -msgid "Move account" +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." msgstr "" -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." +#: mod/group.php:60 +msgid "Group name changed." msgstr "" -#: mod/uimport.php:68 +#: mod/group.php:72 mod/profperm.php:19 index.php:381 +msgid "Permission denied" +msgstr "" + +#: mod/group.php:87 +msgid "Save Group" +msgstr "" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "" + +#: mod/group.php:94 mod/group.php:178 include/group.php:273 +msgid "Group Name: " +msgstr "" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "" + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "" + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "" + +#: mod/group.php:190 +msgid "Members" +msgstr "" + +#: mod/group.php:222 mod/profperm.php:106 +msgid "Click on a contact to add or remove." +msgstr "" + +#: mod/install.php:119 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: mod/install.php:125 +msgid "Could not connect to database." +msgstr "" + +#: mod/install.php:129 +msgid "Could not create table." +msgstr "" + +#: mod/install.php:135 +msgid "Your Friendica site database has been installed." +msgstr "" + +#: mod/install.php:140 msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also " -"to inform your friends that you moved here." +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." msgstr "" -#: mod/uimport.php:69 +#: mod/install.php:141 mod/install.php:208 mod/install.php:530 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "" + +#: mod/install.php:153 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:205 +msgid "System check" +msgstr "" + +#: mod/install.php:210 +msgid "Check again" +msgstr "" + +#: mod/install.php:229 +msgid "Database connection" +msgstr "" + +#: mod/install.php:230 msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" +"In order to install Friendica we need to know how to connect to your " +"database." msgstr "" -#: mod/uimport.php:70 -msgid "Account file" -msgstr "" - -#: mod/uimport.php:70 +#: mod/install.php:231 msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: mod/subthread.php:103 +#: mod/install.php:232 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" + +#: mod/install.php:236 +msgid "Database Server Name" +msgstr "" + +#: mod/install.php:237 +msgid "Database Login Name" +msgstr "" + +#: mod/install.php:238 +msgid "Database Login Password" +msgstr "" + +#: mod/install.php:239 +msgid "Database Name" +msgstr "" + +#: mod/install.php:240 mod/install.php:279 +msgid "Site administrator email address" +msgstr "" + +#: mod/install.php:240 mod/install.php:279 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: mod/install.php:244 mod/install.php:282 +msgid "Please select a default timezone for your website" +msgstr "" + +#: mod/install.php:269 +msgid "Site settings" +msgstr "" + +#: mod/install.php:323 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: mod/install.php:324 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "" + +#: mod/install.php:328 +msgid "PHP executable path" +msgstr "" + +#: mod/install.php:328 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: mod/install.php:333 +msgid "Command line PHP" +msgstr "" + +#: mod/install.php:342 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:343 +msgid "Found PHP version: " +msgstr "" + +#: mod/install.php:345 +msgid "PHP cli binary" +msgstr "" + +#: mod/install.php:356 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: mod/install.php:357 +msgid "This is required for message delivery to work." +msgstr "" + +#: mod/install.php:359 +msgid "PHP register_argc_argv" +msgstr "" + +#: mod/install.php:380 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: mod/install.php:381 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" + +#: mod/install.php:383 +msgid "Generate encryption keys" +msgstr "" + +#: mod/install.php:390 +msgid "libCurl PHP module" +msgstr "" + +#: mod/install.php:391 +msgid "GD graphics PHP module" +msgstr "" + +#: mod/install.php:392 +msgid "OpenSSL PHP module" +msgstr "" + +#: mod/install.php:393 +msgid "mysqli PHP module" +msgstr "" + +#: mod/install.php:394 +msgid "mb_string PHP module" +msgstr "" + +#: mod/install.php:399 mod/install.php:401 +msgid "Apache mod_rewrite module" +msgstr "" + +#: mod/install.php:399 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: mod/install.php:407 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: mod/install.php:411 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: mod/install.php:415 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: mod/install.php:419 +msgid "Error: mysqli PHP module required but not installed." +msgstr "" + +#: mod/install.php:423 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: mod/install.php:440 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." +msgstr "" + +#: mod/install.php:441 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "" + +#: mod/install.php:442 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "" + +#: mod/install.php:443 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"INSTALL.txt\" for instructions." +msgstr "" + +#: mod/install.php:446 +msgid ".htconfig.php is writable" +msgstr "" + +#: mod/install.php:456 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: mod/install.php:457 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "" + +#: mod/install.php:458 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." +msgstr "" + +#: mod/install.php:459 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "" + +#: mod/install.php:462 +msgid "view/smarty3 is writable" +msgstr "" + +#: mod/install.php:478 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: mod/install.php:480 +msgid "Url rewrite is working" +msgstr "" + +#: mod/install.php:489 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "" + +#: mod/install.php:528 +msgid "

What next

" +msgstr "" + +#: mod/install.php:529 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgstr "" + +#: mod/item.php:115 +msgid "Unable to locate original post." +msgstr "" + +#: mod/item.php:347 +msgid "Empty post discarded." +msgstr "" + +#: mod/item.php:486 mod/wall_upload.php:169 mod/wall_upload.php:178 +#: mod/wall_upload.php:185 include/message.php:144 include/Photo.php:951 +#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 +msgid "Wall Photos" +msgstr "" + +#: mod/item.php:860 +msgid "System error. Post not saved." +msgstr "" + +#: mod/item.php:989 #, php-format -msgid "%1$s is following %2$s's %3$s" +msgid "" +"This message was sent to you by %s, a member of the Friendica social network." msgstr "" -#: mod/allfriends.php:37 +#: mod/item.php:991 #, php-format -msgid "Friends of %s" +msgid "You may visit them online at %s" msgstr "" -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "" - -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "" - -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "" - -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "" - -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "" - -#: mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "" - -#: mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "" - -#: mod/newmember.php:12 +#: mod/item.php:992 msgid "" -"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." +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." msgstr "" -#: mod/newmember.php:14 -msgid "Getting Started" -msgstr "" - -#: mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "" - -#: mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to " -"join." -msgstr "" - -#: mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "" - -#: mod/newmember.php:26 -msgid "" -"On your Settings 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." -msgstr "" - -#: mod/newmember.php:28 -msgid "" -"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." -msgstr "" - -#: mod/newmember.php:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 -#: include/identity.php:529 include/identity.php:610 include/identity.php:639 -#: include/nav.php:77 -msgid "Profile" -msgstr "" - -#: mod/newmember.php:36 mod/profiles.php:695 mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "" - -#: mod/newmember.php:36 -msgid "" -"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." -msgstr "" - -#: mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "" - -#: mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown " -"visitors." -msgstr "" - -#: mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "" - -#: mod/newmember.php:40 -msgid "" -"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." -msgstr "" - -#: mod/newmember.php:44 -msgid "Connecting" -msgstr "" - -#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81 -msgid "Facebook" -msgstr "" - -#: mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "" - -#: mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "" - -#: mod/newmember.php:56 -msgid "Importing Emails" -msgstr "" - -#: mod/newmember.php:56 -msgid "" -"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" -msgstr "" - -#: mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "" - -#: mod/newmember.php:58 -msgid "" -"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 Add New Contact dialog." -msgstr "" - -#: mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "" - -#: mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "" - -#: mod/newmember.php:62 -msgid "Finding New People" -msgstr "" - -#: mod/newmember.php:62 -msgid "" -"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." -msgstr "" - -#: mod/newmember.php:66 include/group.php:270 -msgid "Groups" -msgstr "" - -#: mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "" - -#: mod/newmember.php:70 -msgid "" -"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." -msgstr "" - -#: mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "" - -#: mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to " -"people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "" - -#: mod/newmember.php:78 -msgid "Getting Help" -msgstr "" - -#: mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "" - -#: mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program " -"features and resources." -msgstr "" - -#: mod/search.php:21 mod/network.php:187 -msgid "Remove term" -msgstr "" - -#: mod/search.php:30 mod/network.php:196 include/features.php:42 -msgid "Saved Searches" -msgstr "" - -#: mod/search.php:99 include/text.php:977 include/nav.php:119 -msgid "Search" -msgstr "" - -#: mod/search.php:174 mod/community.php:62 mod/community.php:71 -msgid "No results." -msgstr "" - -#: mod/search.php:180 +#: mod/item.php:996 #, php-format -msgid "Items tagged with: %s" +msgid "%s posted an update." msgstr "" -#: mod/search.php:182 +#: mod/match.php:13 +msgid "Profile Match" +msgstr "" + +#: mod/match.php:22 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "" + +#: mod/match.php:64 +msgid "is interested in:" +msgstr "" + +#: mod/match.php:65 mod/suggest.php:92 include/contact_widgets.php:10 +#: include/identity.php:188 +msgid "Connect" +msgstr "" + +#: mod/network.php:143 #, php-format -msgid "Search results for: %s" +msgid "Search Results For: %s" msgstr "" -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." +#: mod/network.php:197 include/group.php:277 +msgid "add" msgstr "" -#: mod/invite.php:49 +#: mod/network.php:358 +msgid "Commented Order" +msgstr "" + +#: mod/network.php:361 +msgid "Sort by Comment Date" +msgstr "" + +#: mod/network.php:364 +msgid "Posted Order" +msgstr "" + +#: mod/network.php:367 +msgid "Sort by Post Date" +msgstr "" + +#: mod/network.php:376 +msgid "Posts that mention or involve you" +msgstr "" + +#: mod/network.php:382 +msgid "New" +msgstr "" + +#: mod/network.php:385 +msgid "Activity Stream - by date" +msgstr "" + +#: mod/network.php:391 +msgid "Shared Links" +msgstr "" + +#: mod/network.php:394 +msgid "Interesting Links" +msgstr "" + +#: mod/network.php:400 +msgid "Starred" +msgstr "" + +#: mod/network.php:403 +msgid "Favourite Posts" +msgstr "" + +#: mod/network.php:460 #, php-format -msgid "%s : Not a valid email address." -msgstr "" - -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "" - -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "" - -#: mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." msgstr[0] "" msgstr[1] "" -#: mod/invite.php:112 -msgid "You have no more invitations available" +#: mod/network.php:463 +msgid "Private messages to this group are at risk of public disclosure." msgstr "" -#: mod/invite.php:120 +#: mod/network.php:572 #, php-format -msgid "" -"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." +msgid "Contact: %s" msgstr "" -#: mod/invite.php:122 +#: mod/network.php:576 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "" + +#: mod/network.php:581 +msgid "Invalid contact." +msgstr "" + +#: mod/notes.php:44 include/identity.php:670 +msgid "Personal Notes" +msgstr "" + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "" + +#: mod/photos.php:84 include/identity.php:649 +msgid "Photo Albums" +msgstr "" + +#: mod/photos.php:85 mod/photos.php:1836 +msgid "Recent Photos" +msgstr "" + +#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 +msgid "Upload New Photos" +msgstr "" + +#: mod/photos.php:102 mod/settings.php:34 +msgid "everybody" +msgstr "" + +#: mod/photos.php:166 +msgid "Contact information unavailable" +msgstr "" + +#: mod/photos.php:187 +msgid "Album not found." +msgstr "" + +#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 +msgid "Delete Album" +msgstr "" + +#: mod/photos.php:220 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "" + +#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 +msgid "Delete Photo" +msgstr "" + +#: mod/photos.php:309 +msgid "Do you really want to delete this photo?" +msgstr "" + +#: mod/photos.php:684 #, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." +msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: mod/invite.php:123 +#: mod/photos.php:684 +msgid "a photo" +msgstr "" + +#: mod/photos.php:789 mod/profile_photo.php:144 mod/wall_upload.php:122 #, php-format -msgid "" -"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." +msgid "Image exceeds size limit of %s" msgstr "" -#: mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other " -"public sites or invite members." +#: mod/photos.php:797 +msgid "Image file is empty." msgstr "" -#: mod/invite.php:132 -msgid "Send invitations" +#: mod/photos.php:829 mod/profile_photo.php:153 mod/wall_upload.php:144 +msgid "Unable to process image." msgstr "" -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" +#: mod/photos.php:856 mod/profile_photo.php:301 mod/wall_upload.php:172 +msgid "Image upload failed." msgstr "" -#: mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." +#: mod/photos.php:952 +msgid "No photos selected" msgstr "" -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" +#: mod/photos.php:1053 mod/videos.php:298 +msgid "Access to this item is restricted." msgstr "" -#: mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "" - -#: mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "" - -#: mod/settings.php:46 -msgid "Additional features" -msgstr "" - -#: mod/settings.php:51 -msgid "Display" -msgstr "" - -#: mod/settings.php:57 mod/settings.php:805 -msgid "Social Networks" -msgstr "" - -#: mod/settings.php:67 include/nav.php:171 -msgid "Delegations" -msgstr "" - -#: mod/settings.php:72 -msgid "Connected apps" -msgstr "" - -#: mod/settings.php:77 mod/uexport.php:85 -msgid "Export personal data" -msgstr "" - -#: mod/settings.php:82 -msgid "Remove account" -msgstr "" - -#: mod/settings.php:134 -msgid "Missing some important data!" -msgstr "" - -#: mod/settings.php:245 -msgid "Failed to connect with email account using the settings provided." -msgstr "" - -#: mod/settings.php:250 -msgid "Email settings updated." -msgstr "" - -#: mod/settings.php:265 -msgid "Features updated" -msgstr "" - -#: mod/settings.php:328 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: mod/settings.php:342 -msgid "Passwords do not match. Password unchanged." -msgstr "" - -#: mod/settings.php:347 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: mod/settings.php:355 -msgid "Wrong password." -msgstr "" - -#: mod/settings.php:366 -msgid "Password changed." -msgstr "" - -#: mod/settings.php:368 -msgid "Password update failed. Please try again." -msgstr "" - -#: mod/settings.php:435 -msgid " Please use a shorter name." -msgstr "" - -#: mod/settings.php:437 -msgid " Name too short." -msgstr "" - -#: mod/settings.php:446 -msgid "Wrong Password" -msgstr "" - -#: mod/settings.php:451 -msgid " Not valid email." -msgstr "" - -#: mod/settings.php:457 -msgid " Cannot change to that email." -msgstr "" - -#: mod/settings.php:513 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" - -#: mod/settings.php:517 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: mod/settings.php:547 -msgid "Settings updated." -msgstr "" - -#: mod/settings.php:620 mod/settings.php:646 mod/settings.php:682 -msgid "Add application" -msgstr "" - -#: mod/settings.php:624 mod/settings.php:650 -msgid "Consumer Key" -msgstr "" - -#: mod/settings.php:625 mod/settings.php:651 -msgid "Consumer Secret" -msgstr "" - -#: mod/settings.php:626 mod/settings.php:652 -msgid "Redirect" -msgstr "" - -#: mod/settings.php:627 mod/settings.php:653 -msgid "Icon url" -msgstr "" - -#: mod/settings.php:638 -msgid "You can't edit this application." -msgstr "" - -#: mod/settings.php:681 -msgid "Connected Apps" -msgstr "" - -#: mod/settings.php:685 -msgid "Client key starts with" -msgstr "" - -#: mod/settings.php:686 -msgid "No name" -msgstr "" - -#: mod/settings.php:687 -msgid "Remove authorization" -msgstr "" - -#: mod/settings.php:699 -msgid "No Plugin settings configured" -msgstr "" - -#: mod/settings.php:707 -msgid "Plugin Settings" -msgstr "" - -#: mod/settings.php:721 -msgid "Off" -msgstr "" - -#: mod/settings.php:721 -msgid "On" -msgstr "" - -#: mod/settings.php:729 -msgid "Additional Features" -msgstr "" - -#: mod/settings.php:739 mod/settings.php:743 -msgid "General Social Media Settings" -msgstr "" - -#: mod/settings.php:749 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:751 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the " -"original friendica post." -msgstr "" - -#: mod/settings.php:761 mod/settings.php:762 +#: mod/photos.php:1114 #, php-format -msgid "Built-in support for %s connectivity is %s" +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "" -#: mod/settings.php:761 mod/settings.php:762 -msgid "enabled" +#: mod/photos.php:1149 +msgid "Upload Photos" msgstr "" -#: mod/settings.php:761 mod/settings.php:762 -msgid "disabled" +#: mod/photos.php:1153 mod/photos.php:1219 +msgid "New album name: " msgstr "" -#: mod/settings.php:762 -msgid "StatusNet" +#: mod/photos.php:1154 +msgid "or existing album name: " msgstr "" -#: mod/settings.php:798 -msgid "Email access is disabled on this site." +#: mod/photos.php:1155 +msgid "Do not show a status post for this upload" msgstr "" -#: mod/settings.php:810 -msgid "Email/Mailbox Setup" +#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 +msgid "Permissions" msgstr "" -#: mod/settings.php:811 +#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1172 +msgid "Show to Groups" +msgstr "" + +#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1173 +msgid "Show to Contacts" +msgstr "" + +#: mod/photos.php:1168 +msgid "Private Photo" +msgstr "" + +#: mod/photos.php:1169 +msgid "Public Photo" +msgstr "" + +#: mod/photos.php:1232 +msgid "Edit Album" +msgstr "" + +#: mod/photos.php:1238 +msgid "Show Newest First" +msgstr "" + +#: mod/photos.php:1240 +msgid "Show Oldest First" +msgstr "" + +#: mod/photos.php:1268 mod/photos.php:1821 +msgid "View Photo" +msgstr "" + +#: mod/photos.php:1314 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: mod/photos.php:1316 +msgid "Photo not available" +msgstr "" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "" + +#: mod/photos.php:1477 +msgid "Tags: " +msgstr "" + +#: mod/photos.php:1480 +msgid "[Remove any tag]" +msgstr "" + +#: mod/photos.php:1520 +msgid "New album name" +msgstr "" + +#: mod/photos.php:1521 +msgid "Caption" +msgstr "" + +#: mod/photos.php:1522 +msgid "Add a Tag" +msgstr "" + +#: mod/photos.php:1522 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "" + +#: mod/photos.php:1523 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1524 +msgid "Rotate CW (right)" +msgstr "" + +#: mod/photos.php:1525 +msgid "Rotate CCW (left)" +msgstr "" + +#: mod/photos.php:1540 +msgid "Private photo" +msgstr "" + +#: mod/photos.php:1541 +msgid "Public photo" +msgstr "" + +#: mod/photos.php:1563 include/conversation.php:1055 +msgid "Share" +msgstr "" + +#: mod/photos.php:1827 mod/videos.php:380 +msgid "View Album" +msgstr "" + +#: mod/ping.php:233 +msgid "{0} wants to be your friend" +msgstr "" + +#: mod/ping.php:248 +msgid "{0} sent you a message" +msgstr "" + +#: mod/ping.php:263 +msgid "{0} requested registration" +msgstr "" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "" + +#: mod/profile_photo.php:118 msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: mod/settings.php:812 -msgid "Last successful email check:" +#: mod/profile_photo.php:128 +msgid "Unable to process image" msgstr "" -#: mod/settings.php:814 -msgid "IMAP server name:" +#: mod/profile_photo.php:242 +msgid "Upload File:" msgstr "" -#: mod/settings.php:815 -msgid "IMAP port:" +#: mod/profile_photo.php:243 +msgid "Select a profile:" msgstr "" -#: mod/settings.php:816 -msgid "Security:" +#: mod/profile_photo.php:245 +msgid "Upload" msgstr "" -#: mod/settings.php:816 mod/settings.php:821 -msgid "None" -msgstr "" - -#: mod/settings.php:817 -msgid "Email login name:" -msgstr "" - -#: mod/settings.php:818 -msgid "Email password:" -msgstr "" - -#: mod/settings.php:819 -msgid "Reply-to address:" -msgstr "" - -#: mod/settings.php:820 -msgid "Send public posts to all email contacts:" -msgstr "" - -#: mod/settings.php:821 -msgid "Action after import:" -msgstr "" - -#: mod/settings.php:821 -msgid "Mark as seen" -msgstr "" - -#: mod/settings.php:821 -msgid "Move to folder" -msgstr "" - -#: mod/settings.php:822 -msgid "Move to folder:" -msgstr "" - -#: mod/settings.php:903 -msgid "Display Settings" -msgstr "" - -#: mod/settings.php:909 mod/settings.php:924 -msgid "Display Theme:" -msgstr "" - -#: mod/settings.php:910 -msgid "Mobile Theme:" -msgstr "" - -#: mod/settings.php:911 -msgid "Update browser every xx seconds" -msgstr "" - -#: mod/settings.php:911 -msgid "Minimum of 10 seconds, no maximum" -msgstr "" - -#: mod/settings.php:912 -msgid "Number of items to display per page:" -msgstr "" - -#: mod/settings.php:912 mod/settings.php:913 -msgid "Maximum of 100 items" -msgstr "" - -#: mod/settings.php:913 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: mod/settings.php:914 -msgid "Don't show emoticons" -msgstr "" - -#: mod/settings.php:915 -msgid "Don't show notices" -msgstr "" - -#: mod/settings.php:916 -msgid "Infinite scroll" -msgstr "" - -#: mod/settings.php:917 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:994 -msgid "User Types" -msgstr "" - -#: mod/settings.php:995 -msgid "Community Types" -msgstr "" - -#: mod/settings.php:996 -msgid "Normal Account Page" -msgstr "" - -#: mod/settings.php:997 -msgid "This account is a normal personal profile" -msgstr "" - -#: mod/settings.php:1000 -msgid "Soapbox Page" -msgstr "" - -#: mod/settings.php:1001 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "" - -#: mod/settings.php:1004 -msgid "Community Forum/Celebrity Account" -msgstr "" - -#: mod/settings.php:1005 -msgid "Automatically approve all connection/friend requests as read-write fans" -msgstr "" - -#: mod/settings.php:1008 -msgid "Automatic Friend Page" -msgstr "" - -#: mod/settings.php:1009 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "" - -#: mod/settings.php:1012 -msgid "Private Forum [Experimental]" -msgstr "" - -#: mod/settings.php:1013 -msgid "Private forum - approved members only" -msgstr "" - -#: mod/settings.php:1025 -msgid "OpenID:" -msgstr "" - -#: mod/settings.php:1025 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "" - -#: mod/settings.php:1035 -msgid "Publish your default profile in your local site directory?" -msgstr "" - -#: mod/settings.php:1041 -msgid "Publish your default profile in the global social directory?" -msgstr "" - -#: mod/settings.php:1049 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "" - -#: mod/settings.php:1053 include/acl_selectors.php:330 -msgid "Hide your profile details from unknown viewers?" -msgstr "" - -#: mod/settings.php:1053 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: mod/settings.php:1058 -msgid "Allow friends to post to your profile page?" -msgstr "" - -#: mod/settings.php:1064 -msgid "Allow friends to tag your posts?" -msgstr "" - -#: mod/settings.php:1070 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: mod/settings.php:1076 -msgid "Permit unknown people to send you private mail?" -msgstr "" - -#: mod/settings.php:1084 -msgid "Profile is not published." -msgstr "" - -#: mod/settings.php:1087 mod/profile_photo.php:248 +#: mod/profile_photo.php:248 mod/settings.php:1088 msgid "or" msgstr "" -#: mod/settings.php:1092 -msgid "Your Identity Address is" +#: mod/profile_photo.php:248 +msgid "skip this step" msgstr "" -#: mod/settings.php:1101 -msgid "Automatically expire posts after this many days:" +#: mod/profile_photo.php:248 +msgid "select a photo from your photo albums" msgstr "" -#: mod/settings.php:1101 -msgid "If empty, posts will not expire. Expired posts will be deleted" +#: mod/profile_photo.php:262 +msgid "Crop Image" msgstr "" -#: mod/settings.php:1102 -msgid "Advanced expiration settings" +#: mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: mod/settings.php:1103 -msgid "Advanced Expiration" +#: mod/profile_photo.php:265 +msgid "Done Editing" msgstr "" -#: mod/settings.php:1104 -msgid "Expire posts:" -msgstr "" - -#: mod/settings.php:1105 -msgid "Expire personal notes:" -msgstr "" - -#: mod/settings.php:1106 -msgid "Expire starred posts:" -msgstr "" - -#: mod/settings.php:1107 -msgid "Expire photos:" -msgstr "" - -#: mod/settings.php:1108 -msgid "Only expire posts by others:" -msgstr "" - -#: mod/settings.php:1134 -msgid "Account Settings" -msgstr "" - -#: mod/settings.php:1142 -msgid "Password Settings" -msgstr "" - -#: mod/settings.php:1143 -msgid "New Password:" -msgstr "" - -#: mod/settings.php:1144 -msgid "Confirm:" -msgstr "" - -#: mod/settings.php:1144 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: mod/settings.php:1145 -msgid "Current Password:" -msgstr "" - -#: mod/settings.php:1145 mod/settings.php:1146 -msgid "Your current password to confirm the changes" -msgstr "" - -#: mod/settings.php:1146 -msgid "Password:" -msgstr "" - -#: mod/settings.php:1150 -msgid "Basic Settings" -msgstr "" - -#: mod/settings.php:1151 include/identity.php:538 -msgid "Full Name:" -msgstr "" - -#: mod/settings.php:1152 -msgid "Email Address:" -msgstr "" - -#: mod/settings.php:1153 -msgid "Your Timezone:" -msgstr "" - -#: mod/settings.php:1154 -msgid "Default Post Location:" -msgstr "" - -#: mod/settings.php:1155 -msgid "Use Browser Location:" -msgstr "" - -#: mod/settings.php:1158 -msgid "Security and Privacy Settings" -msgstr "" - -#: mod/settings.php:1160 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: mod/settings.php:1160 mod/settings.php:1190 -msgid "(to prevent spam abuse)" -msgstr "" - -#: mod/settings.php:1161 -msgid "Default Post Permissions" -msgstr "" - -#: mod/settings.php:1162 -msgid "(click to open/close)" -msgstr "" - -#: mod/settings.php:1173 -msgid "Default Private Post" -msgstr "" - -#: mod/settings.php:1174 -msgid "Default Public Post" -msgstr "" - -#: mod/settings.php:1178 -msgid "Default Permissions for New Posts" -msgstr "" - -#: mod/settings.php:1190 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: mod/settings.php:1193 -msgid "Notification Settings" -msgstr "" - -#: mod/settings.php:1194 -msgid "By default post a status message when:" -msgstr "" - -#: mod/settings.php:1195 -msgid "accepting a friend request" -msgstr "" - -#: mod/settings.php:1196 -msgid "joining a forum/community" -msgstr "" - -#: mod/settings.php:1197 -msgid "making an interesting profile change" -msgstr "" - -#: mod/settings.php:1198 -msgid "Send a notification email when:" -msgstr "" - -#: mod/settings.php:1199 -msgid "You receive an introduction" -msgstr "" - -#: mod/settings.php:1200 -msgid "Your introductions are confirmed" -msgstr "" - -#: mod/settings.php:1201 -msgid "Someone writes on your profile wall" -msgstr "" - -#: mod/settings.php:1202 -msgid "Someone writes a followup comment" -msgstr "" - -#: mod/settings.php:1203 -msgid "You receive a private message" -msgstr "" - -#: mod/settings.php:1204 -msgid "You receive a friend suggestion" -msgstr "" - -#: mod/settings.php:1205 -msgid "You are tagged in a post" -msgstr "" - -#: mod/settings.php:1206 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: mod/settings.php:1208 -msgid "Activate desktop notifications" -msgstr "" - -#: mod/settings.php:1208 -msgid "Show desktop popup on new notifications" -msgstr "" - -#: mod/settings.php:1210 -msgid "Text-only notification emails" -msgstr "" - -#: mod/settings.php:1212 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: mod/settings.php:1214 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: mod/settings.php:1215 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: mod/settings.php:1218 -msgid "Relocate" -msgstr "" - -#: mod/settings.php:1219 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "" - -#: mod/settings.php:1220 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "" - -#: mod/dirfind.php:27 -#, php-format -msgid "People Search - %s" -msgstr "" - -#: mod/dirfind.php:62 mod/match.php:73 -msgid "No matches" +#: mod/profile_photo.php:299 +msgid "Image uploaded successfully." msgstr "" #: mod/profiles.php:37 @@ -4567,10 +5003,6 @@ msgid "" "be visible to anybody using the internet." msgstr "" -#: mod/profiles.php:746 mod/directory.php:129 -msgid "Age: " -msgstr "" - #: mod/profiles.php:799 msgid "Edit/Manage Profiles" msgstr "" @@ -4595,67 +5027,72 @@ msgstr "" msgid "Edit visibility" msgstr "" +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "" + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "" + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "" + +#: mod/search.php:180 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: mod/search.php:182 +#, php-format +msgid "Search results for: %s" +msgstr "" + #: mod/share.php:38 msgid "link" msgstr "" -#: mod/uexport.php:77 -msgid "Export account" +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" msgstr "" -#: mod/uexport.php:77 +#: mod/suggest.php:76 msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: mod/uexport.php:78 -msgid "Export all" +#: mod/suggest.php:94 +msgid "Ignore/Hide" msgstr "" -#: mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" +#: mod/videos.php:113 +msgid "Do you really want to delete this video?" msgstr "" -#: mod/ping.php:233 -msgid "{0} wants to be your friend" +#: mod/videos.php:118 +msgid "Delete Video" msgstr "" -#: mod/ping.php:248 -msgid "{0} sent you a message" +#: mod/videos.php:197 +msgid "No videos selected" msgstr "" -#: mod/ping.php:263 -msgid "{0} requested registration" +#: mod/videos.php:373 include/text.php:1429 +msgid "View Video" msgstr "" -#: mod/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" +#: mod/videos.php:389 +msgid "Recent Videos" msgstr "" -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "" - -#: mod/community.php:23 -msgid "Not available." -msgstr "" - -#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:129 -#: include/nav.php:131 -msgid "Community" -msgstr "" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "" - -#: mod/filer.php:30 -msgid "- select -" +#: mod/videos.php:391 +msgid "Upload New Videos" msgstr "" #: mod/wall_attach.php:75 @@ -4675,1142 +5112,963 @@ msgstr "" msgid "File upload failed." msgstr "" -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "" - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "" - -#: mod/profperm.php:106 mod/group.php:222 -msgid "Click on a contact to add or remove." -msgstr "" - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "" - -#: mod/suggest.php:69 view/theme/diabook/theme.php:527 -#: include/contact_widgets.php:35 -msgid "Friend Suggestions" -msgstr "" - -#: mod/suggest.php:76 +#: mod/register.php:92 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +"Registration successful. Please check your email for further instructions." msgstr "" -#: mod/suggest.php:92 mod/match.php:65 include/identity.php:188 -#: include/contact_widgets.php:10 -msgid "Connect" -msgstr "" - -#: mod/suggest.php:94 -msgid "Ignore/Hide" -msgstr "" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "" - -#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "" - -#: mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "" - -#: mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "" - -#: mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "" - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "" - -#: mod/delegate.php:130 include/nav.php:171 -msgid "Delegate Page Management" -msgstr "" - -#: mod/delegate.php:132 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "" - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "" - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "" - -#: mod/viewcontacts.php:78 include/text.php:899 -msgid "View Contacts" -msgstr "" - -#: mod/notes.php:44 include/identity.php:670 -msgid "Personal Notes" -msgstr "" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "" - -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "" - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "" - -#: mod/directory.php:154 include/identity.php:270 include/identity.php:540 -msgid "Gender:" -msgstr "" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 -msgid "Status:" -msgstr "" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 -msgid "Homepage:" -msgstr "" - -#: mod/directory.php:160 include/identity.php:277 include/identity.php:581 -msgid "About:" -msgstr "" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: mod/localtime.php:12 include/event.php:13 include/bb2diaspora.php:139 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "" - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "" - -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "" - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "" - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "" - -#: mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "" - -#: mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "" - -#: mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "" - -#: mod/profile_photo.php:245 -msgid "Upload" -msgstr "" - -#: mod/profile_photo.php:248 -msgid "skip this step" -msgstr "" - -#: mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "" - -#: mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "" - -#: mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "" - -#: mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "" - -#: mod/install.php:119 -msgid "Friendica Communications Server - Setup" -msgstr "" - -#: mod/install.php:125 -msgid "Could not connect to database." -msgstr "" - -#: mod/install.php:129 -msgid "Could not create table." -msgstr "" - -#: mod/install.php:135 -msgid "Your Friendica site database has been installed." -msgstr "" - -#: mod/install.php:140 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "" - -#: mod/install.php:141 mod/install.php:208 mod/install.php:530 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "" - -#: mod/install.php:153 -msgid "Database already in use." -msgstr "" - -#: mod/install.php:205 -msgid "System check" -msgstr "" - -#: mod/install.php:210 -msgid "Check again" -msgstr "" - -#: mod/install.php:229 -msgid "Database connection" -msgstr "" - -#: mod/install.php:230 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "" - -#: mod/install.php:231 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" - -#: mod/install.php:232 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" - -#: mod/install.php:236 -msgid "Database Server Name" -msgstr "" - -#: mod/install.php:237 -msgid "Database Login Name" -msgstr "" - -#: mod/install.php:238 -msgid "Database Login Password" -msgstr "" - -#: mod/install.php:239 -msgid "Database Name" -msgstr "" - -#: mod/install.php:240 mod/install.php:279 -msgid "Site administrator email address" -msgstr "" - -#: mod/install.php:240 mod/install.php:279 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: mod/install.php:244 mod/install.php:282 -msgid "Please select a default timezone for your website" -msgstr "" - -#: mod/install.php:269 -msgid "Site settings" -msgstr "" - -#: mod/install.php:323 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: mod/install.php:324 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "" - -#: mod/install.php:328 -msgid "PHP executable path" -msgstr "" - -#: mod/install.php:328 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: mod/install.php:333 -msgid "Command line PHP" -msgstr "" - -#: mod/install.php:342 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: mod/install.php:343 -msgid "Found PHP version: " -msgstr "" - -#: mod/install.php:345 -msgid "PHP cli binary" -msgstr "" - -#: mod/install.php:356 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: mod/install.php:357 -msgid "This is required for message delivery to work." -msgstr "" - -#: mod/install.php:359 -msgid "PHP register_argc_argv" -msgstr "" - -#: mod/install.php:380 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: mod/install.php:381 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" - -#: mod/install.php:383 -msgid "Generate encryption keys" -msgstr "" - -#: mod/install.php:390 -msgid "libCurl PHP module" -msgstr "" - -#: mod/install.php:391 -msgid "GD graphics PHP module" -msgstr "" - -#: mod/install.php:392 -msgid "OpenSSL PHP module" -msgstr "" - -#: mod/install.php:393 -msgid "mysqli PHP module" -msgstr "" - -#: mod/install.php:394 -msgid "mb_string PHP module" -msgstr "" - -#: mod/install.php:399 mod/install.php:401 -msgid "Apache mod_rewrite module" -msgstr "" - -#: mod/install.php:399 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: mod/install.php:407 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: mod/install.php:411 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: mod/install.php:415 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: mod/install.php:419 -msgid "Error: mysqli PHP module required but not installed." -msgstr "" - -#: mod/install.php:423 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: mod/install.php:440 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." -msgstr "" - -#: mod/install.php:441 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "" - -#: mod/install.php:442 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "" - -#: mod/install.php:443 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"INSTALL.txt\" for instructions." -msgstr "" - -#: mod/install.php:446 -msgid ".htconfig.php is writable" -msgstr "" - -#: mod/install.php:456 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: mod/install.php:457 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "" - -#: mod/install.php:458 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." -msgstr "" - -#: mod/install.php:459 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "" - -#: mod/install.php:462 -msgid "view/smarty3 is writable" -msgstr "" - -#: mod/install.php:478 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: mod/install.php:480 -msgid "Url rewrite is working" -msgstr "" - -#: mod/install.php:489 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "" - -#: mod/install.php:528 -msgid "

What next

" -msgstr "" - -#: mod/install.php:529 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" - -#: mod/p.php:9 -msgid "Not Extended" -msgstr "" - -#: mod/group.php:29 -msgid "Group created." -msgstr "" - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "" - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "" - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "" - -#: mod/group.php:87 -msgid "Save Group" -msgstr "" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "" - -#: mod/group.php:94 mod/group.php:178 include/group.php:273 -msgid "Group Name: " -msgstr "" - -#: mod/group.php:113 -msgid "Group removed." -msgstr "" - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "" - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "" - -#: mod/group.php:190 -msgid "Members" -msgstr "" - -#: mod/content.php:119 mod/network.php:526 -msgid "No such group" -msgstr "" - -#: mod/content.php:130 mod/network.php:543 -msgid "Group is empty" -msgstr "" - -#: mod/content.php:135 mod/network.php:554 -#, php-format -msgid "Group: %s" -msgstr "" - -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" -msgstr "" - -#: mod/regmod.php:55 -msgid "Account approved." -msgstr "" - -#: mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: mod/regmod.php:104 -msgid "Please login." -msgstr "" - -#: mod/match.php:13 -msgid "Profile Match" -msgstr "" - -#: mod/match.php:22 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" - -#: mod/match.php:64 -msgid "is interested in:" -msgstr "" - -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "" - -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "" - -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "" - -#: mod/item.php:989 +#: mod/register.php:97 #, php-format msgid "" -"This message was sent to you by %s, a member of the Friendica social network." +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." msgstr "" -#: mod/item.php:991 -#, php-format -msgid "You may visit them online at %s" +#: mod/register.php:107 +msgid "Your registration can not be processed." msgstr "" -#: mod/item.php:992 +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: mod/register.php:216 msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." msgstr "" -#: mod/item.php:996 +#: mod/register.php:217 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "" + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "" + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "" + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "" + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "" + +#: mod/register.php:271 mod/settings.php:1144 +msgid "New Password:" +msgstr "" + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:272 mod/settings.php:1145 +msgid "Confirm:" +msgstr "" + +#: mod/register.php:273 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be 'nickname@$sitename'." +msgstr "" + +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "" + +#: mod/register.php:277 include/nav.php:109 boot.php:1238 +msgid "Register" +msgstr "" + +#: mod/register.php:284 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/settings.php:46 +msgid "Additional features" +msgstr "" + +#: mod/settings.php:51 +msgid "Display" +msgstr "" + +#: mod/settings.php:57 mod/settings.php:805 +msgid "Social Networks" +msgstr "" + +#: mod/settings.php:67 include/nav.php:171 +msgid "Delegations" +msgstr "" + +#: mod/settings.php:72 +msgid "Connected apps" +msgstr "" + +#: mod/settings.php:82 +msgid "Remove account" +msgstr "" + +#: mod/settings.php:134 +msgid "Missing some important data!" +msgstr "" + +#: mod/settings.php:245 +msgid "Failed to connect with email account using the settings provided." +msgstr "" + +#: mod/settings.php:250 +msgid "Email settings updated." +msgstr "" + +#: mod/settings.php:265 +msgid "Features updated" +msgstr "" + +#: mod/settings.php:328 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:342 include/user.php:39 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: mod/settings.php:347 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: mod/settings.php:355 +msgid "Wrong password." +msgstr "" + +#: mod/settings.php:366 +msgid "Password changed." +msgstr "" + +#: mod/settings.php:368 +msgid "Password update failed. Please try again." +msgstr "" + +#: mod/settings.php:435 +msgid " Please use a shorter name." +msgstr "" + +#: mod/settings.php:437 +msgid " Name too short." +msgstr "" + +#: mod/settings.php:446 +msgid "Wrong Password" +msgstr "" + +#: mod/settings.php:451 +msgid " Not valid email." +msgstr "" + +#: mod/settings.php:457 +msgid " Cannot change to that email." +msgstr "" + +#: mod/settings.php:513 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: mod/settings.php:517 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: mod/settings.php:547 +msgid "Settings updated." +msgstr "" + +#: mod/settings.php:620 mod/settings.php:646 mod/settings.php:682 +msgid "Add application" +msgstr "" + +#: mod/settings.php:624 mod/settings.php:650 +msgid "Consumer Key" +msgstr "" + +#: mod/settings.php:625 mod/settings.php:651 +msgid "Consumer Secret" +msgstr "" + +#: mod/settings.php:626 mod/settings.php:652 +msgid "Redirect" +msgstr "" + +#: mod/settings.php:627 mod/settings.php:653 +msgid "Icon url" +msgstr "" + +#: mod/settings.php:638 +msgid "You can't edit this application." +msgstr "" + +#: mod/settings.php:681 +msgid "Connected Apps" +msgstr "" + +#: mod/settings.php:685 +msgid "Client key starts with" +msgstr "" + +#: mod/settings.php:686 +msgid "No name" +msgstr "" + +#: mod/settings.php:687 +msgid "Remove authorization" +msgstr "" + +#: mod/settings.php:699 +msgid "No Plugin settings configured" +msgstr "" + +#: mod/settings.php:707 +msgid "Plugin Settings" +msgstr "" + +#: mod/settings.php:721 +msgid "Off" +msgstr "" + +#: mod/settings.php:721 +msgid "On" +msgstr "" + +#: mod/settings.php:729 +msgid "Additional Features" +msgstr "" + +#: mod/settings.php:739 mod/settings.php:743 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:749 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:751 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the " +"original friendica post." +msgstr "" + +#: mod/settings.php:761 mod/settings.php:762 #, php-format -msgid "%s posted an update." +msgid "Built-in support for %s connectivity is %s" msgstr "" -#: mod/mood.php:62 include/conversation.php:226 +#: mod/settings.php:761 mod/settings.php:762 +msgid "enabled" +msgstr "" + +#: mod/settings.php:761 mod/settings.php:762 +msgid "disabled" +msgstr "" + +#: mod/settings.php:762 +msgid "StatusNet" +msgstr "" + +#: mod/settings.php:798 +msgid "Email access is disabled on this site." +msgstr "" + +#: mod/settings.php:810 +msgid "Email/Mailbox Setup" +msgstr "" + +#: mod/settings.php:811 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "" + +#: mod/settings.php:812 +msgid "Last successful email check:" +msgstr "" + +#: mod/settings.php:814 +msgid "IMAP server name:" +msgstr "" + +#: mod/settings.php:815 +msgid "IMAP port:" +msgstr "" + +#: mod/settings.php:816 +msgid "Security:" +msgstr "" + +#: mod/settings.php:816 mod/settings.php:821 +msgid "None" +msgstr "" + +#: mod/settings.php:817 +msgid "Email login name:" +msgstr "" + +#: mod/settings.php:818 +msgid "Email password:" +msgstr "" + +#: mod/settings.php:819 +msgid "Reply-to address:" +msgstr "" + +#: mod/settings.php:820 +msgid "Send public posts to all email contacts:" +msgstr "" + +#: mod/settings.php:821 +msgid "Action after import:" +msgstr "" + +#: mod/settings.php:821 +msgid "Mark as seen" +msgstr "" + +#: mod/settings.php:821 +msgid "Move to folder" +msgstr "" + +#: mod/settings.php:822 +msgid "Move to folder:" +msgstr "" + +#: mod/settings.php:903 +msgid "Display Settings" +msgstr "" + +#: mod/settings.php:909 mod/settings.php:925 +msgid "Display Theme:" +msgstr "" + +#: mod/settings.php:910 +msgid "Mobile Theme:" +msgstr "" + +#: mod/settings.php:911 +msgid "Update browser every xx seconds" +msgstr "" + +#: mod/settings.php:911 +msgid "Minimum of 10 seconds, no maximum" +msgstr "" + +#: mod/settings.php:912 +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:912 mod/settings.php:913 +msgid "Maximum of 100 items" +msgstr "" + +#: mod/settings.php:913 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: mod/settings.php:914 +msgid "Don't show emoticons" +msgstr "" + +#: mod/settings.php:915 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:916 +msgid "Infinite scroll" +msgstr "" + +#: mod/settings.php:917 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:995 +msgid "User Types" +msgstr "" + +#: mod/settings.php:996 +msgid "Community Types" +msgstr "" + +#: mod/settings.php:997 +msgid "Normal Account Page" +msgstr "" + +#: mod/settings.php:998 +msgid "This account is a normal personal profile" +msgstr "" + +#: mod/settings.php:1001 +msgid "Soapbox Page" +msgstr "" + +#: mod/settings.php:1002 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "" + +#: mod/settings.php:1005 +msgid "Community Forum/Celebrity Account" +msgstr "" + +#: mod/settings.php:1006 +msgid "Automatically approve all connection/friend requests as read-write fans" +msgstr "" + +#: mod/settings.php:1009 +msgid "Automatic Friend Page" +msgstr "" + +#: mod/settings.php:1010 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "" + +#: mod/settings.php:1013 +msgid "Private Forum [Experimental]" +msgstr "" + +#: mod/settings.php:1014 +msgid "Private forum - approved members only" +msgstr "" + +#: mod/settings.php:1026 +msgid "OpenID:" +msgstr "" + +#: mod/settings.php:1026 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "" + +#: mod/settings.php:1036 +msgid "Publish your default profile in your local site directory?" +msgstr "" + +#: mod/settings.php:1042 +msgid "Publish your default profile in the global social directory?" +msgstr "" + +#: mod/settings.php:1050 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "" + +#: mod/settings.php:1054 include/acl_selectors.php:330 +msgid "Hide your profile details from unknown viewers?" +msgstr "" + +#: mod/settings.php:1054 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1059 +msgid "Allow friends to post to your profile page?" +msgstr "" + +#: mod/settings.php:1065 +msgid "Allow friends to tag your posts?" +msgstr "" + +#: mod/settings.php:1071 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: mod/settings.php:1077 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: mod/settings.php:1085 +msgid "Profile is not published." +msgstr "" + +#: mod/settings.php:1093 +msgid "Your Identity Address is" +msgstr "" + +#: mod/settings.php:1102 +msgid "Automatically expire posts after this many days:" +msgstr "" + +#: mod/settings.php:1102 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "" + +#: mod/settings.php:1103 +msgid "Advanced expiration settings" +msgstr "" + +#: mod/settings.php:1104 +msgid "Advanced Expiration" +msgstr "" + +#: mod/settings.php:1105 +msgid "Expire posts:" +msgstr "" + +#: mod/settings.php:1106 +msgid "Expire personal notes:" +msgstr "" + +#: mod/settings.php:1107 +msgid "Expire starred posts:" +msgstr "" + +#: mod/settings.php:1108 +msgid "Expire photos:" +msgstr "" + +#: mod/settings.php:1109 +msgid "Only expire posts by others:" +msgstr "" + +#: mod/settings.php:1135 +msgid "Account Settings" +msgstr "" + +#: mod/settings.php:1143 +msgid "Password Settings" +msgstr "" + +#: mod/settings.php:1145 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: mod/settings.php:1146 +msgid "Current Password:" +msgstr "" + +#: mod/settings.php:1146 mod/settings.php:1147 +msgid "Your current password to confirm the changes" +msgstr "" + +#: mod/settings.php:1147 +msgid "Password:" +msgstr "" + +#: mod/settings.php:1151 +msgid "Basic Settings" +msgstr "" + +#: mod/settings.php:1152 include/identity.php:538 +msgid "Full Name:" +msgstr "" + +#: mod/settings.php:1153 +msgid "Email Address:" +msgstr "" + +#: mod/settings.php:1154 +msgid "Your Timezone:" +msgstr "" + +#: mod/settings.php:1155 +msgid "Default Post Location:" +msgstr "" + +#: mod/settings.php:1156 +msgid "Use Browser Location:" +msgstr "" + +#: mod/settings.php:1159 +msgid "Security and Privacy Settings" +msgstr "" + +#: mod/settings.php:1161 +msgid "Maximum Friend Requests/Day:" +msgstr "" + +#: mod/settings.php:1161 mod/settings.php:1191 +msgid "(to prevent spam abuse)" +msgstr "" + +#: mod/settings.php:1162 +msgid "Default Post Permissions" +msgstr "" + +#: mod/settings.php:1163 +msgid "(click to open/close)" +msgstr "" + +#: mod/settings.php:1174 +msgid "Default Private Post" +msgstr "" + +#: mod/settings.php:1175 +msgid "Default Public Post" +msgstr "" + +#: mod/settings.php:1179 +msgid "Default Permissions for New Posts" +msgstr "" + +#: mod/settings.php:1191 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: mod/settings.php:1194 +msgid "Notification Settings" +msgstr "" + +#: mod/settings.php:1195 +msgid "By default post a status message when:" +msgstr "" + +#: mod/settings.php:1196 +msgid "accepting a friend request" +msgstr "" + +#: mod/settings.php:1197 +msgid "joining a forum/community" +msgstr "" + +#: mod/settings.php:1198 +msgid "making an interesting profile change" +msgstr "" + +#: mod/settings.php:1199 +msgid "Send a notification email when:" +msgstr "" + +#: mod/settings.php:1200 +msgid "You receive an introduction" +msgstr "" + +#: mod/settings.php:1201 +msgid "Your introductions are confirmed" +msgstr "" + +#: mod/settings.php:1202 +msgid "Someone writes on your profile wall" +msgstr "" + +#: mod/settings.php:1203 +msgid "Someone writes a followup comment" +msgstr "" + +#: mod/settings.php:1204 +msgid "You receive a private message" +msgstr "" + +#: mod/settings.php:1205 +msgid "You receive a friend suggestion" +msgstr "" + +#: mod/settings.php:1206 +msgid "You are tagged in a post" +msgstr "" + +#: mod/settings.php:1207 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: mod/settings.php:1209 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1209 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1211 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1213 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1215 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: mod/settings.php:1216 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: mod/settings.php:1219 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1220 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: mod/settings.php:1221 +msgid "Resend relocate message to contacts" +msgstr "" + +#: mod/bookmarklet.php:12 include/nav.php:92 boot.php:1263 +msgid "Login" +msgstr "" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "" + +#: mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "" + +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "" + +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "" + +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "" + +#: include/contact_widgets.php:24 #, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: mod/mood.php:133 -msgid "Mood" -msgstr "" - -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: mod/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "" - -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "" - -#: mod/network.php:358 -msgid "Commented Order" -msgstr "" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "" - -#: mod/network.php:364 -msgid "Posted Order" -msgstr "" - -#: mod/network.php:367 -msgid "Sort by Post Date" -msgstr "" - -#: mod/network.php:376 -msgid "Posts that mention or involve you" -msgstr "" - -#: mod/network.php:382 -msgid "New" -msgstr "" - -#: mod/network.php:385 -msgid "Activity Stream - by date" -msgstr "" - -#: mod/network.php:391 -msgid "Shared Links" -msgstr "" - -#: mod/network.php:394 -msgid "Interesting Links" -msgstr "" - -#: mod/network.php:400 -msgid "Starred" -msgstr "" - -#: mod/network.php:403 -msgid "Favourite Posts" -msgstr "" - -#: mod/network.php:460 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." +msgid "%d invitation available" +msgid_plural "%d invitations available" msgstr[0] "" msgstr[1] "" -#: mod/network.php:463 -msgid "Private messages to this group are at risk of public disclosure." +#: include/contact_widgets.php:30 +msgid "Find People" msgstr "" -#: mod/network.php:572 +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "" + +#: include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "" + +#: include/contact_widgets.php:104 include/features.php:60 +msgid "Saved Folders" +msgstr "" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "" + +#: include/plugin.php:455 include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "" + +#: include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: include/dba_pdo.php:72 include/dba.php:56 #, php-format -msgid "Contact: %s" +msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: mod/network.php:576 -msgid "Private messages to this person are at risk of public disclosure." +#: include/auth.php:38 +msgid "Logged out." msgstr "" -#: mod/network.php:581 -msgid "Invalid contact." -msgstr "" - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "" - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "" - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "" - -#: mod/crepair.php:142 +#: include/auth.php:128 include/user.php:75 msgid "" -"WARNING: This is highly advanced and if you enter incorrect " -"information your communications with this contact may stop working." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." msgstr "" -#: mod/crepair.php:143 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." +#: include/auth.php:128 include/user.php:75 +msgid "The error message was:" msgstr "" -#: mod/crepair.php:149 -msgid "Return to contact editor" +#: include/uimport.php:94 +msgid "Error decoding account file" msgstr "" -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" msgstr "" -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "" - -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "" - -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "" - -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "" - -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "" - -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "" - -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "" - -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "" - -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "" - -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:181 -msgid "Mirror postings from this contact" -msgstr "" - -#: mod/crepair.php:181 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:148 -msgid "Your posts and conversations" -msgstr "" - -#: view/theme/diabook/theme.php:124 include/nav.php:77 -msgid "Your profile page" -msgstr "" - -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "" - -#: view/theme/diabook/theme.php:126 include/nav.php:78 -msgid "Your photos" -msgstr "" - -#: view/theme/diabook/theme.php:127 include/nav.php:80 -msgid "Your events" -msgstr "" - -#: view/theme/diabook/theme.php:128 include/nav.php:81 -msgid "Personal notes" -msgstr "" - -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "" - -#: view/theme/diabook/theme.php:130 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:624 view/theme/diabook/config.php:158 -msgid "Community Pages" -msgstr "" - -#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 -#: view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "" - -#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 -#: view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "" - -#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 -#: view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "" - -#: view/theme/diabook/theme.php:463 include/text.php:1998 -#: include/conversation.php:118 include/conversation.php:245 -msgid "event" -msgstr "" - -#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 -#: view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "" - -#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 -#: view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "" - -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "" - -#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "" - -#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "" - -#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 -#: view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:599 view/theme/diabook/theme.php:627 -#: view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" -msgstr "" - -#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 -#: view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "" - -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:337 -msgid "don't show" -msgstr "" - -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:336 -msgid "show" -msgstr "" - -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 -#: view/theme/dispy/config.php:72 view/theme/duepuntozero/config.php:61 -#: view/theme/quattro/config.php:66 view/theme/cleanzero/config.php:82 -msgid "Theme settings" -msgstr "" - -#: view/theme/diabook/config.php:151 view/theme/dispy/config.php:73 -#: view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "" - -#: view/theme/diabook/config.php:152 view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "" - -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "" - -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - -#: view/theme/vier/config.php:59 -msgid "Set style" -msgstr "" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "" - -#: view/theme/duepuntozero/config.php:44 include/text.php:1734 -#: include/user.php:247 -msgid "default" -msgstr "" - -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "" - -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "" - -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "" - -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "" - -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "" - -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "" - -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "" - -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "" - -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "" - -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "" - -#: view/theme/quattro/config.php:68 view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "" - -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "" - -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "" - -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "" - -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "" - -#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 -msgid "Drop contact" -msgstr "" - -#: boot.php:753 -msgid "Delete this item?" -msgstr "" - -#: boot.php:756 -msgid "show fewer" -msgstr "" - -#: boot.php:1130 +#: include/uimport.php:120 include/uimport.php:131 #, php-format -msgid "Update %s failed. See error logs." +msgid "User '%s' already exists on this server!" msgstr "" -#: boot.php:1237 -msgid "Create a New Account" +#: include/uimport.php:153 +msgid "User creation error" msgstr "" -#: boot.php:1262 include/nav.php:73 -msgid "Logout" +#: include/uimport.php:171 +msgid "User profile creation error" msgstr "" -#: boot.php:1265 -msgid "Nickname or Email address: " +#: include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: include/uimport.php:290 +msgid "Done. You can now login with your username and password" msgstr "" -#: boot.php:1266 -msgid "Password: " +#: include/message.php:15 include/message.php:172 +msgid "[no subject]" msgstr "" -#: boot.php:1267 -msgid "Remember me" +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" msgstr "" -#: boot.php:1270 -msgid "Or login using OpenID: " +#: include/contact_selectors.php:33 +msgid "Block immediately" msgstr "" -#: boot.php:1276 -msgid "Forgot your password?" +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" msgstr "" -#: boot.php:1279 -msgid "Website Terms of Service" +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" msgstr "" -#: boot.php:1280 -msgid "terms of service" +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" msgstr "" -#: boot.php:1282 -msgid "Website Privacy Policy" +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" msgstr "" -#: boot.php:1283 -msgid "privacy policy" +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "" + +#: include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "" + +#: include/contact_selectors.php:92 +msgid "App.net" msgstr "" #: include/features.php:23 @@ -5950,10 +6208,6 @@ msgstr "" msgid "Add categories to your posts" msgstr "" -#: include/features.php:60 include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "" - #: include/features.php:60 msgid "Ability to file posts under folders" msgstr "" @@ -5982,608 +6236,6 @@ msgstr "" msgid "Ability to mute notifications for a thread" msgstr "" -#: include/auth.php:38 -msgid "Logged out." -msgstr "" - -#: include/auth.php:128 include/user.php:67 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: include/auth.php:128 include/user.php:67 -msgid "The error message was:" -msgstr "" - -#: include/event.php:22 include/bb2diaspora.php:145 -msgid "Starts:" -msgstr "" - -#: include/event.php:32 include/bb2diaspora.php:153 -msgid "Finishes:" -msgstr "" - -#: include/message.php:15 include/message.php:172 -msgid "[no subject]" -msgstr "" - -#: include/Scrape.php:608 -msgid " on Last.fm" -msgstr "" - -#: include/text.php:299 -msgid "newer" -msgstr "" - -#: include/text.php:301 -msgid "older" -msgstr "" - -#: include/text.php:306 -msgid "prev" -msgstr "" - -#: include/text.php:308 -msgid "first" -msgstr "" - -#: include/text.php:340 -msgid "last" -msgstr "" - -#: include/text.php:343 -msgid "next" -msgstr "" - -#: include/text.php:398 -msgid "Loading more entries..." -msgstr "" - -#: include/text.php:399 -msgid "The end" -msgstr "" - -#: include/text.php:878 -msgid "No contacts" -msgstr "" - -#: include/text.php:887 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "" -msgstr[1] "" - -#: include/text.php:1027 -msgid "poke" -msgstr "" - -#: include/text.php:1027 -msgid "poked" -msgstr "" - -#: include/text.php:1028 -msgid "ping" -msgstr "" - -#: include/text.php:1028 -msgid "pinged" -msgstr "" - -#: include/text.php:1029 -msgid "prod" -msgstr "" - -#: include/text.php:1029 -msgid "prodded" -msgstr "" - -#: include/text.php:1030 -msgid "slap" -msgstr "" - -#: include/text.php:1030 -msgid "slapped" -msgstr "" - -#: include/text.php:1031 -msgid "finger" -msgstr "" - -#: include/text.php:1031 -msgid "fingered" -msgstr "" - -#: include/text.php:1032 -msgid "rebuff" -msgstr "" - -#: include/text.php:1032 -msgid "rebuffed" -msgstr "" - -#: include/text.php:1046 -msgid "happy" -msgstr "" - -#: include/text.php:1047 -msgid "sad" -msgstr "" - -#: include/text.php:1048 -msgid "mellow" -msgstr "" - -#: include/text.php:1049 -msgid "tired" -msgstr "" - -#: include/text.php:1050 -msgid "perky" -msgstr "" - -#: include/text.php:1051 -msgid "angry" -msgstr "" - -#: include/text.php:1052 -msgid "stupified" -msgstr "" - -#: include/text.php:1053 -msgid "puzzled" -msgstr "" - -#: include/text.php:1054 -msgid "interested" -msgstr "" - -#: include/text.php:1055 -msgid "bitter" -msgstr "" - -#: include/text.php:1056 -msgid "cheerful" -msgstr "" - -#: include/text.php:1057 -msgid "alive" -msgstr "" - -#: include/text.php:1058 -msgid "annoyed" -msgstr "" - -#: include/text.php:1059 -msgid "anxious" -msgstr "" - -#: include/text.php:1060 -msgid "cranky" -msgstr "" - -#: include/text.php:1061 -msgid "disturbed" -msgstr "" - -#: include/text.php:1062 -msgid "frustrated" -msgstr "" - -#: include/text.php:1063 -msgid "motivated" -msgstr "" - -#: include/text.php:1064 -msgid "relaxed" -msgstr "" - -#: include/text.php:1065 -msgid "surprised" -msgstr "" - -#: include/text.php:1235 -msgid "Monday" -msgstr "" - -#: include/text.php:1235 -msgid "Tuesday" -msgstr "" - -#: include/text.php:1235 -msgid "Wednesday" -msgstr "" - -#: include/text.php:1235 -msgid "Thursday" -msgstr "" - -#: include/text.php:1235 -msgid "Friday" -msgstr "" - -#: include/text.php:1235 -msgid "Saturday" -msgstr "" - -#: include/text.php:1235 -msgid "Sunday" -msgstr "" - -#: include/text.php:1239 -msgid "January" -msgstr "" - -#: include/text.php:1239 -msgid "February" -msgstr "" - -#: include/text.php:1239 -msgid "March" -msgstr "" - -#: include/text.php:1239 -msgid "April" -msgstr "" - -#: include/text.php:1239 -msgid "May" -msgstr "" - -#: include/text.php:1239 -msgid "June" -msgstr "" - -#: include/text.php:1239 -msgid "July" -msgstr "" - -#: include/text.php:1239 -msgid "August" -msgstr "" - -#: include/text.php:1239 -msgid "September" -msgstr "" - -#: include/text.php:1239 -msgid "October" -msgstr "" - -#: include/text.php:1239 -msgid "November" -msgstr "" - -#: include/text.php:1239 -msgid "December" -msgstr "" - -#: include/text.php:1461 -msgid "bytes" -msgstr "" - -#: include/text.php:1493 include/text.php:1505 -msgid "Click to open/close" -msgstr "" - -#: include/text.php:1746 -msgid "Select an alternate language" -msgstr "" - -#: include/text.php:2002 -msgid "activity" -msgstr "" - -#: include/text.php:2005 -msgid "post" -msgstr "" - -#: include/text.php:2173 -msgid "Item filed" -msgstr "" - -#: include/api.php:310 include/api.php:321 include/api.php:430 -#: include/api.php:1133 include/api.php:1135 -msgid "User not found." -msgstr "" - -#: include/api.php:784 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:803 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:822 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:1342 -msgid "There is no status with this id." -msgstr "" - -#: include/api.php:1416 -msgid "There is no conversation with this id." -msgstr "" - -#: include/api.php:1686 -msgid "Invalid request." -msgstr "" - -#: include/api.php:1697 -msgid "Invalid item." -msgstr "" - -#: include/api.php:1707 -msgid "Invalid action. " -msgstr "" - -#: include/api.php:1715 -msgid "DB error" -msgstr "" - -#: include/dba.php:56 include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" - -#: include/items.php:2431 include/datetime.php:459 -#, php-format -msgid "%s's birthday" -msgstr "" - -#: include/items.php:2432 include/datetime.php:460 -#, php-format -msgid "Happy Birthday %s" -msgstr "" - -#: include/items.php:4852 -msgid "Do you really want to delete this item?" -msgstr "" - -#: include/items.php:5127 -msgid "Archives" -msgstr "" - -#: include/delivery.php:456 include/notifier.php:825 -msgid "(no subject)" -msgstr "" - -#: include/delivery.php:467 include/notifier.php:835 include/enotify.php:33 -msgid "noreply" -msgstr "" - -#: include/diaspora.php:705 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: include/diaspora.php:2539 -msgid "Attachments:" -msgstr "" - -#: include/identity.php:38 -msgid "Requested account is not available." -msgstr "" - -#: include/identity.php:121 include/identity.php:255 include/identity.php:607 -msgid "Edit profile" -msgstr "" - -#: include/identity.php:220 -msgid "Message" -msgstr "" - -#: include/identity.php:226 include/nav.php:176 -msgid "Profiles" -msgstr "" - -#: include/identity.php:226 -msgid "Manage/edit profiles" -msgstr "" - -#: include/identity.php:341 -msgid "Network:" -msgstr "" - -#: include/identity.php:373 include/identity.php:459 -msgid "g A l F d" -msgstr "" - -#: include/identity.php:374 include/identity.php:460 -msgid "F d" -msgstr "" - -#: include/identity.php:419 include/identity.php:506 -msgid "[today]" -msgstr "" - -#: include/identity.php:431 -msgid "Birthday Reminders" -msgstr "" - -#: include/identity.php:432 -msgid "Birthdays this week:" -msgstr "" - -#: include/identity.php:493 -msgid "[No description]" -msgstr "" - -#: include/identity.php:517 -msgid "Event Reminders" -msgstr "" - -#: include/identity.php:518 -msgid "Events this week:" -msgstr "" - -#: include/identity.php:545 -msgid "j F, Y" -msgstr "" - -#: include/identity.php:546 -msgid "j F" -msgstr "" - -#: include/identity.php:553 -msgid "Birthday:" -msgstr "" - -#: include/identity.php:557 -msgid "Age:" -msgstr "" - -#: include/identity.php:566 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: include/identity.php:575 -msgid "Tags:" -msgstr "" - -#: include/identity.php:579 -msgid "Religion:" -msgstr "" - -#: include/identity.php:583 -msgid "Hobbies/Interests:" -msgstr "" - -#: include/identity.php:590 -msgid "Contact information and Social Networks:" -msgstr "" - -#: include/identity.php:592 -msgid "Musical interests:" -msgstr "" - -#: include/identity.php:594 -msgid "Books, literature:" -msgstr "" - -#: include/identity.php:596 -msgid "Television:" -msgstr "" - -#: include/identity.php:598 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: include/identity.php:600 -msgid "Love/Romance:" -msgstr "" - -#: include/identity.php:602 -msgid "Work/employment:" -msgstr "" - -#: include/identity.php:604 -msgid "School/education:" -msgstr "" - -#: include/identity.php:632 include/nav.php:76 -msgid "Status" -msgstr "" - -#: include/identity.php:635 -msgid "Status Messages and Posts" -msgstr "" - -#: include/identity.php:642 -msgid "Profile Details" -msgstr "" - -#: include/identity.php:653 include/identity.php:656 include/nav.php:79 -msgid "Videos" -msgstr "" - -#: include/identity.php:666 -msgid "Events and Calendar" -msgstr "" - -#: include/identity.php:673 -msgid "Only You Can See This" -msgstr "" - -#: include/follow.php:32 -msgid "Connect URL missing." -msgstr "" - -#: include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "" - -#: include/follow.php:60 include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "" - -#: include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: include/follow.php:82 -msgid "An author or name was not found." -msgstr "" - -#: include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "" - -#: include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "" - -#: include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "" - -#: include/follow.php:258 -msgid "following" -msgstr "" - -#: include/security.php:22 -msgid "Welcome " -msgstr "" - -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "" - -#: include/security.php:26 -msgid "Welcome back " -msgstr "" - -#: include/security.php:375 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "" - #: include/profile_selectors.php:6 msgid "Male" msgstr "" @@ -6728,7 +6380,7 @@ msgstr "" msgid "Sex Addict" msgstr "" -#: include/profile_selectors.php:42 include/user.php:289 include/user.php:293 +#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 msgid "Friends" msgstr "" @@ -6816,52 +6468,136 @@ msgstr "" msgid "Ask me" msgstr "" -#: include/uimport.php:94 -msgid "Error decoding account file" +#: include/Contact.php:119 +msgid "stopped following" msgstr "" -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" +#: include/Contact.php:232 include/conversation.php:881 +msgid "Poke" msgstr "" -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" +#: include/Contact.php:233 include/conversation.php:875 +msgid "View Status" msgstr "" -#: include/uimport.php:120 include/uimport.php:131 +#: include/Contact.php:234 include/conversation.php:876 +msgid "View Profile" +msgstr "" + +#: include/Contact.php:235 include/conversation.php:877 +msgid "View Photos" +msgstr "" + +#: include/Contact.php:236 include/Contact.php:259 +#: include/conversation.php:878 +msgid "Network Posts" +msgstr "" + +#: include/Contact.php:237 include/Contact.php:259 +#: include/conversation.php:879 +msgid "Edit Contact" +msgstr "" + +#: include/Contact.php:238 +msgid "Drop Contact" +msgstr "" + +#: include/Contact.php:239 include/Contact.php:259 +#: include/conversation.php:880 +msgid "Send PM" +msgstr "" + +#: include/Scrape.php:608 +msgid " on Last.fm" +msgstr "" + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "" + +#: include/acl_selectors.php:329 #, php-format -msgid "User '%s' already exists on this server!" +msgid "Connectors disabled, since \"%s\" is enabled." msgstr "" -#: include/uimport.php:153 -msgid "User creation error" +#: include/acl_selectors.php:335 +msgid "Visible to everybody" msgstr "" -#: include/uimport.php:171 -msgid "User profile creation error" +#: include/api.php:310 include/api.php:321 include/api.php:430 +#: include/api.php:1133 include/api.php:1135 +msgid "User not found." msgstr "" -#: include/uimport.php:220 +#: include/api.php:784 #, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: include/uimport.php:290 -msgid "Done. You can now login with your username and password" +msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "" -#: include/plugin.php:455 include/plugin.php:457 -msgid "Click here to upgrade." +#: include/api.php:803 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "" -#: include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." +#: include/api.php:822 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "" -#: include/plugin.php:468 -msgid "This action is not available under your subscription plan." +#: include/api.php:1342 +msgid "There is no status with this id." +msgstr "" + +#: include/api.php:1416 +msgid "There is no conversation with this id." +msgstr "" + +#: include/api.php:1686 +msgid "Invalid request." +msgstr "" + +#: include/api.php:1697 +msgid "Invalid item." +msgstr "" + +#: include/api.php:1707 +msgid "Invalid action. " +msgstr "" + +#: include/api.php:1715 +msgid "DB error" +msgstr "" + +#: include/bb2diaspora.php:145 include/event.php:22 +msgid "Starts:" +msgstr "" + +#: include/bb2diaspora.php:153 include/event.php:32 +msgid "Finishes:" +msgstr "" + +#: include/bbcode.php:451 include/bbcode.php:1101 include/bbcode.php:1102 +msgid "Image/photo" +msgstr "" + +#: include/bbcode.php:549 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: include/bbcode.php:583 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "" + +#: include/bbcode.php:1065 include/bbcode.php:1085 +msgid "$1 wrote:" +msgstr "" + +#: include/bbcode.php:1110 include/bbcode.php:1111 +msgid "Encrypted content" msgstr "" #: include/conversation.php:206 @@ -6890,37 +6626,6 @@ msgstr "" msgid "Follow Thread" msgstr "" -#: include/conversation.php:875 include/Contact.php:233 -msgid "View Status" -msgstr "" - -#: include/conversation.php:876 include/Contact.php:234 -msgid "View Profile" -msgstr "" - -#: include/conversation.php:877 include/Contact.php:235 -msgid "View Photos" -msgstr "" - -#: include/conversation.php:878 include/Contact.php:236 -#: include/Contact.php:259 -msgid "Network Posts" -msgstr "" - -#: include/conversation.php:879 include/Contact.php:237 -#: include/Contact.php:259 -msgid "Edit Contact" -msgstr "" - -#: include/conversation.php:880 include/Contact.php:239 -#: include/Contact.php:259 -msgid "Send PM" -msgstr "" - -#: include/conversation.php:881 include/Contact.php:232 -msgid "Poke" -msgstr "" - #: include/conversation.php:943 #, php-format msgid "%s likes this." @@ -7000,271 +6705,133 @@ msgstr "" msgid "Private post" msgstr "" -#: include/contact_widgets.php:6 -msgid "Add New Contact" +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" msgstr "" -#: include/contact_widgets.php:7 -msgid "Enter address or web location" +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" +#: include/datetime.php:256 +msgid "never" msgstr "" -#: include/contact_widgets.php:24 +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "" + +#: include/datetime.php:272 +msgid "year" +msgstr "" + +#: include/datetime.php:272 +msgid "years" +msgstr "" + +#: include/datetime.php:273 +msgid "month" +msgstr "" + +#: include/datetime.php:273 +msgid "months" +msgstr "" + +#: include/datetime.php:274 +msgid "week" +msgstr "" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "" + +#: include/datetime.php:275 +msgid "day" +msgstr "" + +#: include/datetime.php:275 +msgid "days" +msgstr "" + +#: include/datetime.php:276 +msgid "hour" +msgstr "" + +#: include/datetime.php:276 +msgid "hours" +msgstr "" + +#: include/datetime.php:277 +msgid "minute" +msgstr "" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "" + +#: include/datetime.php:278 +msgid "second" +msgstr "" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "" + +#: include/datetime.php:287 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: include/contact_widgets.php:30 -msgid "Find People" +msgid "%1$d %2$s ago" msgstr "" -#: include/contact_widgets.php:31 -msgid "Enter name or interest" +#: include/datetime.php:459 include/items.php:2431 +#, php-format +msgid "%s's birthday" msgstr "" -#: include/contact_widgets.php:32 -msgid "Connect/Follow" +#: include/datetime.php:460 include/items.php:2432 +#, php-format +msgid "Happy Birthday %s" msgstr "" -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" +#: include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database " +"might be invalid." msgstr "" -#: include/contact_widgets.php:37 -msgid "Random Profile" +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" msgstr "" -#: include/contact_widgets.php:71 -msgid "Networks" +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." msgstr "" -#: include/contact_widgets.php:74 -msgid "All Networks" +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." msgstr "" -#: include/contact_widgets.php:107 include/contact_widgets.php:139 -msgid "Everything" +#: include/delivery.php:456 include/notifier.php:825 +msgid "(no subject)" msgstr "" -#: include/contact_widgets.php:136 -msgid "Categories" +#: include/delivery.php:467 include/enotify.php:33 include/notifier.php:835 +msgid "noreply" msgstr "" -#: include/nav.php:73 -msgid "End this session" +#: include/diaspora.php:705 +msgid "Sharing notification from Diaspora network" msgstr "" -#: include/nav.php:79 -msgid "Your videos" -msgstr "" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "" - -#: include/nav.php:117 -msgid "Apps" -msgstr "" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "" - -#: include/nav.php:129 -msgid "Conversations on this site" -msgstr "" - -#: include/nav.php:131 -msgid "Conversations on the network" -msgstr "" - -#: include/nav.php:133 -msgid "Directory" -msgstr "" - -#: include/nav.php:133 -msgid "People directory" -msgstr "" - -#: include/nav.php:135 -msgid "Information" -msgstr "" - -#: include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "" - -#: include/nav.php:145 -msgid "Conversations from your friends" -msgstr "" - -#: include/nav.php:146 -msgid "Network Reset" -msgstr "" - -#: include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "" - -#: include/nav.php:153 -msgid "Friend Requests" -msgstr "" - -#: include/nav.php:157 -msgid "See all notifications" -msgstr "" - -#: include/nav.php:158 -msgid "Mark all system notifications seen" -msgstr "" - -#: include/nav.php:162 -msgid "Private mail" -msgstr "" - -#: include/nav.php:163 -msgid "Inbox" -msgstr "" - -#: include/nav.php:164 -msgid "Outbox" -msgstr "" - -#: include/nav.php:168 -msgid "Manage" -msgstr "" - -#: include/nav.php:168 -msgid "Manage other pages" -msgstr "" - -#: include/nav.php:173 -msgid "Account settings" -msgstr "" - -#: include/nav.php:176 -msgid "Manage/Edit Profiles" -msgstr "" - -#: include/nav.php:178 -msgid "Manage/edit friends and contacts" -msgstr "" - -#: include/nav.php:185 -msgid "Site setup and configuration" -msgstr "" - -#: include/nav.php:189 -msgid "Navigation" -msgstr "" - -#: include/nav.php:189 -msgid "Site map" -msgstr "" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "" - -#: include/contact_selectors.php:92 -msgid "App.net" +#: include/diaspora.php:2539 +msgid "Attachments:" msgstr "" #: include/enotify.php:18 @@ -7550,75 +7117,751 @@ msgstr "" msgid "Please visit %s to approve or reject the request." msgstr "" -#: include/user.php:40 +#: include/follow.php:32 +msgid "Connect URL missing." +msgstr "" + +#: include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "" + +#: include/follow.php:60 include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "" + +#: include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "" + +#: include/follow.php:82 +msgid "An author or name was not found." +msgstr "" + +#: include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "" + +#: include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" + +#: include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "" + +#: include/follow.php:258 +msgid "following" +msgstr "" + +#: include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "" + +#: include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "" + +#: include/group.php:226 +msgid "Everybody" +msgstr "" + +#: include/group.php:249 +msgid "edit" +msgstr "" + +#: include/group.php:271 +msgid "Edit group" +msgstr "" + +#: include/group.php:272 +msgid "Create a new group" +msgstr "" + +#: include/group.php:275 +msgid "Contacts not in any group" +msgstr "" + +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "" + +#: include/identity.php:121 include/identity.php:255 include/identity.php:607 +msgid "Edit profile" +msgstr "" + +#: include/identity.php:220 +msgid "Message" +msgstr "" + +#: include/identity.php:226 include/nav.php:176 +msgid "Profiles" +msgstr "" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "" + +#: include/identity.php:341 +msgid "Network:" +msgstr "" + +#: include/identity.php:373 include/identity.php:459 +msgid "g A l F d" +msgstr "" + +#: include/identity.php:374 include/identity.php:460 +msgid "F d" +msgstr "" + +#: include/identity.php:419 include/identity.php:506 +msgid "[today]" +msgstr "" + +#: include/identity.php:431 +msgid "Birthday Reminders" +msgstr "" + +#: include/identity.php:432 +msgid "Birthdays this week:" +msgstr "" + +#: include/identity.php:493 +msgid "[No description]" +msgstr "" + +#: include/identity.php:517 +msgid "Event Reminders" +msgstr "" + +#: include/identity.php:518 +msgid "Events this week:" +msgstr "" + +#: include/identity.php:545 +msgid "j F, Y" +msgstr "" + +#: include/identity.php:546 +msgid "j F" +msgstr "" + +#: include/identity.php:553 +msgid "Birthday:" +msgstr "" + +#: include/identity.php:557 +msgid "Age:" +msgstr "" + +#: include/identity.php:566 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: include/identity.php:575 +msgid "Tags:" +msgstr "" + +#: include/identity.php:579 +msgid "Religion:" +msgstr "" + +#: include/identity.php:583 +msgid "Hobbies/Interests:" +msgstr "" + +#: include/identity.php:590 +msgid "Contact information and Social Networks:" +msgstr "" + +#: include/identity.php:592 +msgid "Musical interests:" +msgstr "" + +#: include/identity.php:594 +msgid "Books, literature:" +msgstr "" + +#: include/identity.php:596 +msgid "Television:" +msgstr "" + +#: include/identity.php:598 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: include/identity.php:600 +msgid "Love/Romance:" +msgstr "" + +#: include/identity.php:602 +msgid "Work/employment:" +msgstr "" + +#: include/identity.php:604 +msgid "School/education:" +msgstr "" + +#: include/identity.php:632 include/nav.php:76 +msgid "Status" +msgstr "" + +#: include/identity.php:635 +msgid "Status Messages and Posts" +msgstr "" + +#: include/identity.php:642 +msgid "Profile Details" +msgstr "" + +#: include/identity.php:653 include/identity.php:656 include/nav.php:79 +msgid "Videos" +msgstr "" + +#: include/identity.php:666 +msgid "Events and Calendar" +msgstr "" + +#: include/identity.php:673 +msgid "Only You Can See This" +msgstr "" + +#: include/items.php:4852 +msgid "Do you really want to delete this item?" +msgstr "" + +#: include/items.php:5127 +msgid "Archives" +msgstr "" + +#: include/nav.php:73 boot.php:1262 +msgid "Logout" +msgstr "" + +#: include/nav.php:73 +msgid "End this session" +msgstr "" + +#: include/nav.php:79 +msgid "Your videos" +msgstr "" + +#: include/nav.php:81 +msgid "Your personal notes" +msgstr "" + +#: include/nav.php:92 +msgid "Sign in" +msgstr "" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "" + +#: include/nav.php:114 +msgid "Help and documentation" +msgstr "" + +#: include/nav.php:117 +msgid "Apps" +msgstr "" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "" + +#: include/nav.php:129 +msgid "Conversations on this site" +msgstr "" + +#: include/nav.php:131 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:133 +msgid "Directory" +msgstr "" + +#: include/nav.php:133 +msgid "People directory" +msgstr "" + +#: include/nav.php:135 +msgid "Information" +msgstr "" + +#: include/nav.php:135 +msgid "Information about this friendica instance" +msgstr "" + +#: include/nav.php:145 +msgid "Conversations from your friends" +msgstr "" + +#: include/nav.php:146 +msgid "Network Reset" +msgstr "" + +#: include/nav.php:146 +msgid "Load Network page with no filters" +msgstr "" + +#: include/nav.php:153 +msgid "Friend Requests" +msgstr "" + +#: include/nav.php:157 +msgid "See all notifications" +msgstr "" + +#: include/nav.php:158 +msgid "Mark all system notifications seen" +msgstr "" + +#: include/nav.php:162 +msgid "Private mail" +msgstr "" + +#: include/nav.php:163 +msgid "Inbox" +msgstr "" + +#: include/nav.php:164 +msgid "Outbox" +msgstr "" + +#: include/nav.php:168 +msgid "Manage" +msgstr "" + +#: include/nav.php:168 +msgid "Manage other pages" +msgstr "" + +#: include/nav.php:173 +msgid "Account settings" +msgstr "" + +#: include/nav.php:176 +msgid "Manage/Edit Profiles" +msgstr "" + +#: include/nav.php:178 +msgid "Manage/edit friends and contacts" +msgstr "" + +#: include/nav.php:185 +msgid "Site setup and configuration" +msgstr "" + +#: include/nav.php:189 +msgid "Navigation" +msgstr "" + +#: include/nav.php:189 +msgid "Site map" +msgstr "" + +#: include/network.php:959 +msgid "view full size" +msgstr "" + +#: include/oembed.php:224 +msgid "Embedded content" +msgstr "" + +#: include/oembed.php:233 +msgid "Embedding disabled" +msgstr "" + +#: include/security.php:22 +msgid "Welcome " +msgstr "" + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "" + +#: include/security.php:26 +msgid "Welcome back " +msgstr "" + +#: include/security.php:375 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + +#: include/text.php:299 +msgid "newer" +msgstr "" + +#: include/text.php:301 +msgid "older" +msgstr "" + +#: include/text.php:306 +msgid "prev" +msgstr "" + +#: include/text.php:308 +msgid "first" +msgstr "" + +#: include/text.php:340 +msgid "last" +msgstr "" + +#: include/text.php:343 +msgid "next" +msgstr "" + +#: include/text.php:398 +msgid "Loading more entries..." +msgstr "" + +#: include/text.php:399 +msgid "The end" +msgstr "" + +#: include/text.php:878 +msgid "No contacts" +msgstr "" + +#: include/text.php:887 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "" +msgstr[1] "" + +#: include/text.php:1027 +msgid "poke" +msgstr "" + +#: include/text.php:1027 +msgid "poked" +msgstr "" + +#: include/text.php:1028 +msgid "ping" +msgstr "" + +#: include/text.php:1028 +msgid "pinged" +msgstr "" + +#: include/text.php:1029 +msgid "prod" +msgstr "" + +#: include/text.php:1029 +msgid "prodded" +msgstr "" + +#: include/text.php:1030 +msgid "slap" +msgstr "" + +#: include/text.php:1030 +msgid "slapped" +msgstr "" + +#: include/text.php:1031 +msgid "finger" +msgstr "" + +#: include/text.php:1031 +msgid "fingered" +msgstr "" + +#: include/text.php:1032 +msgid "rebuff" +msgstr "" + +#: include/text.php:1032 +msgid "rebuffed" +msgstr "" + +#: include/text.php:1046 +msgid "happy" +msgstr "" + +#: include/text.php:1047 +msgid "sad" +msgstr "" + +#: include/text.php:1048 +msgid "mellow" +msgstr "" + +#: include/text.php:1049 +msgid "tired" +msgstr "" + +#: include/text.php:1050 +msgid "perky" +msgstr "" + +#: include/text.php:1051 +msgid "angry" +msgstr "" + +#: include/text.php:1052 +msgid "stupified" +msgstr "" + +#: include/text.php:1053 +msgid "puzzled" +msgstr "" + +#: include/text.php:1054 +msgid "interested" +msgstr "" + +#: include/text.php:1055 +msgid "bitter" +msgstr "" + +#: include/text.php:1056 +msgid "cheerful" +msgstr "" + +#: include/text.php:1057 +msgid "alive" +msgstr "" + +#: include/text.php:1058 +msgid "annoyed" +msgstr "" + +#: include/text.php:1059 +msgid "anxious" +msgstr "" + +#: include/text.php:1060 +msgid "cranky" +msgstr "" + +#: include/text.php:1061 +msgid "disturbed" +msgstr "" + +#: include/text.php:1062 +msgid "frustrated" +msgstr "" + +#: include/text.php:1063 +msgid "motivated" +msgstr "" + +#: include/text.php:1064 +msgid "relaxed" +msgstr "" + +#: include/text.php:1065 +msgid "surprised" +msgstr "" + +#: include/text.php:1235 +msgid "Monday" +msgstr "" + +#: include/text.php:1235 +msgid "Tuesday" +msgstr "" + +#: include/text.php:1235 +msgid "Wednesday" +msgstr "" + +#: include/text.php:1235 +msgid "Thursday" +msgstr "" + +#: include/text.php:1235 +msgid "Friday" +msgstr "" + +#: include/text.php:1235 +msgid "Saturday" +msgstr "" + +#: include/text.php:1235 +msgid "Sunday" +msgstr "" + +#: include/text.php:1239 +msgid "January" +msgstr "" + +#: include/text.php:1239 +msgid "February" +msgstr "" + +#: include/text.php:1239 +msgid "March" +msgstr "" + +#: include/text.php:1239 +msgid "April" +msgstr "" + +#: include/text.php:1239 +msgid "May" +msgstr "" + +#: include/text.php:1239 +msgid "June" +msgstr "" + +#: include/text.php:1239 +msgid "July" +msgstr "" + +#: include/text.php:1239 +msgid "August" +msgstr "" + +#: include/text.php:1239 +msgid "September" +msgstr "" + +#: include/text.php:1239 +msgid "October" +msgstr "" + +#: include/text.php:1239 +msgid "November" +msgstr "" + +#: include/text.php:1239 +msgid "December" +msgstr "" + +#: include/text.php:1461 +msgid "bytes" +msgstr "" + +#: include/text.php:1493 include/text.php:1505 +msgid "Click to open/close" +msgstr "" + +#: include/text.php:1746 +msgid "Select an alternate language" +msgstr "" + +#: include/text.php:2002 +msgid "activity" +msgstr "" + +#: include/text.php:2005 +msgid "post" +msgstr "" + +#: include/text.php:2173 +msgid "Item filed" +msgstr "" + +#: include/user.php:48 msgid "An invitation is required." msgstr "" -#: include/user.php:45 +#: include/user.php:53 msgid "Invitation could not be verified." msgstr "" -#: include/user.php:53 +#: include/user.php:61 msgid "Invalid OpenID url" msgstr "" -#: include/user.php:74 +#: include/user.php:82 msgid "Please enter the required information." msgstr "" -#: include/user.php:88 +#: include/user.php:96 msgid "Please use a shorter name." msgstr "" -#: include/user.php:90 +#: include/user.php:98 msgid "Name too short." msgstr "" -#: include/user.php:105 +#: include/user.php:113 msgid "That doesn't appear to be your full (First Last) name." msgstr "" -#: include/user.php:110 +#: include/user.php:118 msgid "Your email domain is not among those allowed on this site." msgstr "" -#: include/user.php:113 +#: include/user.php:121 msgid "Not a valid email address." msgstr "" -#: include/user.php:126 +#: include/user.php:134 msgid "Cannot use that email." msgstr "" -#: include/user.php:132 +#: include/user.php:140 msgid "" "Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " "must also begin with a letter." msgstr "" -#: include/user.php:138 include/user.php:236 +#: include/user.php:146 include/user.php:244 msgid "Nickname is already registered. Please choose another." msgstr "" -#: include/user.php:148 +#: include/user.php:156 msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." msgstr "" -#: include/user.php:164 +#: include/user.php:172 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "" -#: include/user.php:222 +#: include/user.php:230 msgid "An error occurred during registration. Please try again." msgstr "" -#: include/user.php:257 +#: include/user.php:265 msgid "An error occurred creating your default profile. Please try again." msgstr "" -#: include/user.php:377 +#: include/user.php:385 #, php-format msgid "" "\n" @@ -7627,7 +7870,7 @@ msgid "" "\t" msgstr "" -#: include/user.php:381 +#: include/user.php:389 #, php-format msgid "" "\n" @@ -7662,193 +7905,59 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "" -#: include/acl_selectors.php:324 -msgid "Post to Email" +#: index.php:441 +msgid "toggle mobile" msgstr "" -#: include/acl_selectors.php:329 +#: boot.php:753 +msgid "Delete this item?" +msgstr "" + +#: boot.php:756 +msgid "show fewer" +msgstr "" + +#: boot.php:1130 #, php-format -msgid "Connectors disabled, since \"%s\" is enabled." +msgid "Update %s failed. See error logs." msgstr "" -#: include/acl_selectors.php:335 -msgid "Visible to everybody" +#: boot.php:1237 +msgid "Create a New Account" msgstr "" -#: include/bbcode.php:451 include/bbcode.php:1101 include/bbcode.php:1102 -msgid "Image/photo" +#: boot.php:1265 +msgid "Nickname or Email address: " msgstr "" -#: include/bbcode.php:549 -#, php-format -msgid "%2$s %3$s" +#: boot.php:1266 +msgid "Password: " msgstr "" -#: include/bbcode.php:583 -#, php-format -msgid "" -"%s wrote the following post" +#: boot.php:1267 +msgid "Remember me" msgstr "" -#: include/bbcode.php:1065 include/bbcode.php:1085 -msgid "$1 wrote:" +#: boot.php:1270 +msgid "Or login using OpenID: " msgstr "" -#: include/bbcode.php:1110 include/bbcode.php:1111 -msgid "Encrypted content" +#: boot.php:1276 +msgid "Forgot your password?" msgstr "" -#: include/oembed.php:224 -msgid "Embedded content" +#: boot.php:1279 +msgid "Website Terms of Service" msgstr "" -#: include/oembed.php:233 -msgid "Embedding disabled" +#: boot.php:1280 +msgid "terms of service" msgstr "" -#: include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." +#: boot.php:1282 +msgid "Website Privacy Policy" msgstr "" -#: include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "" - -#: include/group.php:226 -msgid "Everybody" -msgstr "" - -#: include/group.php:249 -msgid "edit" -msgstr "" - -#: include/group.php:271 -msgid "Edit group" -msgstr "" - -#: include/group.php:272 -msgid "Create a new group" -msgstr "" - -#: include/group.php:275 -msgid "Contacts not in any group" -msgstr "" - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "" - -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "" - -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "" - -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: include/datetime.php:256 -msgid "never" -msgstr "" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "" - -#: include/datetime.php:272 -msgid "year" -msgstr "" - -#: include/datetime.php:272 -msgid "years" -msgstr "" - -#: include/datetime.php:273 -msgid "month" -msgstr "" - -#: include/datetime.php:273 -msgid "months" -msgstr "" - -#: include/datetime.php:274 -msgid "week" -msgstr "" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "" - -#: include/datetime.php:275 -msgid "day" -msgstr "" - -#: include/datetime.php:275 -msgid "days" -msgstr "" - -#: include/datetime.php:276 -msgid "hour" -msgstr "" - -#: include/datetime.php:276 -msgid "hours" -msgstr "" - -#: include/datetime.php:277 -msgid "minute" -msgstr "" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "" - -#: include/datetime.php:278 -msgid "second" -msgstr "" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "" - -#: include/datetime.php:287 -#, php-format -msgid "%1$d %2$s ago" -msgstr "" - -#: include/network.php:959 -msgid "view full size" -msgstr "" - -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database " -"might be invalid." -msgstr "" - -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "" - -#: include/dbstructure.php:152 -msgid "Errors encountered creating database tables." -msgstr "" - -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." +#: boot.php:1283 +msgid "privacy policy" msgstr "" From fe137a92ef20109708e7af1359b694c8d76576f6 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 11 Jul 2015 14:36:04 +0200 Subject: [PATCH 009/239] Automatically update contact data. --- include/follow.php | 32 +++++++++++++++++++++++++++++--- include/items.php | 8 ++++---- include/onepoll.php | 21 ++++++++++++++------- mod/receive.php | 2 +- 4 files changed, 48 insertions(+), 15 deletions(-) diff --git a/include/follow.php b/include/follow.php index 287a38b6b..b2b6c7502 100644 --- a/include/follow.php +++ b/include/follow.php @@ -1,5 +1,30 @@ Date: Sat, 11 Jul 2015 14:37:02 +0200 Subject: [PATCH 010/239] GUID should be urlencoded in template since it is urlencoded in uri as well. --- include/diaspora.php | 6 ++++++ object/Item.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/include/diaspora.php b/include/diaspora.php index b70cffdc3..86a55f473 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -1,5 +1,11 @@ $body_e, 'text' => $text_e, 'id' => $this->get_id(), - 'guid' => $item['guid'], + 'guid' => urlencode($item['guid']), 'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])), 'olinktitle' => sprintf( t('View %s\'s profile @ %s'), $this->get_owner_name(), ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])), 'to' => t('to'), From 0ac75deee158aa8f985d5275824ed283a0bca236 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 12 Jul 2015 11:19:40 +0200 Subject: [PATCH 011/239] Some precaution to avoid overwriting of existing data with blanks --- include/follow.php | 12 +++++++++++- include/items.php | 2 +- object/Item.php | 3 +++ 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/include/follow.php b/include/follow.php index b2b6c7502..62180e4c6 100644 --- a/include/follow.php +++ b/include/follow.php @@ -1,7 +1,12 @@ $val) + if (isset($r[0][$key]) AND ($r[0][$key] != "") AND ($val == "")) + $ret[$key] = $r[0][$key]; + q("UPDATE `contact` SET `url` = '%s', `nurl` = '%s', `addr` = '%s', `alias` = '%s', `batch` = '%s', `notify` = '%s', `poll` = '%s', `poco` = '%s', `name` = '%s', `nick` = '%s' WHERE `id` = %d", dbesc($ret['url']), dbesc(normalise_link($ret['url'])), diff --git a/include/items.php b/include/items.php index c61ad1b1e..8fd1cbcb4 100644 --- a/include/items.php +++ b/include/items.php @@ -2076,7 +2076,7 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) { $final_dfrn_id = substr($final_dfrn_id,2); if($final_dfrn_id != $orig_id) { - logger('dfrn_deliver: wrong dfrn_id. Original: '.$orig_id.' Target: '.$final_dfrn_id.' Test: '.$test); + logger('dfrn_deliver: wrong dfrn_id.'); // did not decode properly - cannot trust this site return 3; } diff --git a/object/Item.php b/object/Item.php index 3211048ce..fcc5ea3dc 100644 --- a/object/Item.php +++ b/object/Item.php @@ -308,6 +308,9 @@ class Item extends BaseObject { if (($item["item_network"] == NETWORK_FACEBOOK) AND ($indent == 'comment') AND isset($buttons["like"])) unset($buttons["like"]); + // Likes don't federate at OStatus + if (($item["item_network"] == NETWORK_OSTATUS) AND isset($buttons["like"])) + unset($buttons["like"]); $tmp_item = array( 'template' => $this->get_template(), From cf663df69f7f266ebc58e500ec7c663400c8b716 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 12 Jul 2015 11:22:36 +0200 Subject: [PATCH 012/239] Testing code removed --- include/items.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/items.php b/include/items.php index 8fd1cbcb4..45d25e379 100644 --- a/include/items.php +++ b/include/items.php @@ -2064,11 +2064,11 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) { || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))) { openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']); openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']); - } elseif($contact['prvkey']) { + } + else { openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']); openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']); - } else - logger("No private or public key for contact ".$contact['id']." ".$contact['url']); + } $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.')); From 9106baf10f5d261b866028826c427636302c0e37 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 12 Jul 2015 11:24:01 +0200 Subject: [PATCH 013/239] Some more test code removed --- include/onepoll.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/onepoll.php b/include/onepoll.php index 57b3521d5..eb52a97ea 100644 --- a/include/onepoll.php +++ b/include/onepoll.php @@ -237,11 +237,11 @@ function onepoll_run(&$argv, &$argc){ if(($contact['duplex']) && strlen($contact['prvkey'])) { openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']); openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']); - } elseif($contact['pubkey']) { + } + else { openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']); openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']); - } else - logger("No private or public key for contact ".$contact['id']." ".$contact['url']); + } $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.')); From f48f7394e9a56f2f54159d4269c9c1b4bffa06c9 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 12 Jul 2015 11:46:08 +0200 Subject: [PATCH 014/239] Only update communication relevant data. And only update if needed. --- include/follow.php | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/include/follow.php b/include/follow.php index 62180e4c6..79666f30d 100644 --- a/include/follow.php +++ b/include/follow.php @@ -6,7 +6,7 @@ function update_contact($id) { This will reliably kill your communication with Friendica contacts. */ - $r = q("SELECT `url`, `nurl`, `addr`, `alias`, `batch`, `notify`, `poll`, `poco`, `name`, `nick`, `network` FROM `contact` WHERE `id` = %d", intval($id)); + $r = q("SELECT `url`, `nurl`, `addr`, `alias`, `batch`, `notify`, `poll`, `poco`, `network` FROM `contact` WHERE `id` = %d", intval($id)); if (!$r) return; @@ -16,12 +16,21 @@ function update_contact($id) { if ($ret["network"] != $r[0]["network"]) return; + $update = false; + // make sure to not overwrite existing values with blank entries - foreach ($ret AS $key => $val) + foreach ($ret AS $key => $val) { if (isset($r[0][$key]) AND ($r[0][$key] != "") AND ($val == "")) $ret[$key] = $r[0][$key]; - q("UPDATE `contact` SET `url` = '%s', `nurl` = '%s', `addr` = '%s', `alias` = '%s', `batch` = '%s', `notify` = '%s', `poll` = '%s', `poco` = '%s', `name` = '%s', `nick` = '%s' WHERE `id` = %d", + if (isset($r[0][$key]) AND ($ret[$key] != $r[0][$key])) + $update = true; + } + + if (!$update) + return; + + q("UPDATE `contact` SET `url` = '%s', `nurl` = '%s', `addr` = '%s', `alias` = '%s', `batch` = '%s', `notify` = '%s', `poll` = '%s', `poco` = '%s' WHERE `id` = %d", dbesc($ret['url']), dbesc(normalise_link($ret['url'])), dbesc($ret['addr']), @@ -30,8 +39,6 @@ function update_contact($id) { dbesc($ret['notify']), dbesc($ret['poll']), dbesc($ret['poco']), - dbesc($ret['name']), - dbesc($ret['nick']), intval($id) ); } From 65468bf202ef3188a86fb18cd4ec1d553f78b16d Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 12 Jul 2015 12:03:39 +0200 Subject: [PATCH 015/239] Moved the needed include to a better place. --- include/follow.php | 1 + include/onepoll.php | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/include/follow.php b/include/follow.php index 79666f30d..6c998e178 100644 --- a/include/follow.php +++ b/include/follow.php @@ -1,4 +1,5 @@ Date: Sun, 12 Jul 2015 12:17:12 +0200 Subject: [PATCH 016/239] Remove a useless comment --- include/diaspora.php | 1 - 1 file changed, 1 deletion(-) diff --git a/include/diaspora.php b/include/diaspora.php index 86a55f473..534e2541c 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -3,7 +3,6 @@ /* To-Do: - GET /people/9aed8882b9f64896/stream -- POST /receive/users/9aed8882b9f64896/ */ require_once('include/crypto.php'); From c8fdff32b311ef9e547e8d29f06725c8378c8c6e Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 12 Jul 2015 14:57:09 +0200 Subject: [PATCH 017/239] Likes do federate ... --- object/Item.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/object/Item.php b/object/Item.php index fcc5ea3dc..8e38080e4 100644 --- a/object/Item.php +++ b/object/Item.php @@ -308,10 +308,6 @@ class Item extends BaseObject { if (($item["item_network"] == NETWORK_FACEBOOK) AND ($indent == 'comment') AND isset($buttons["like"])) unset($buttons["like"]); - // Likes don't federate at OStatus - if (($item["item_network"] == NETWORK_OSTATUS) AND isset($buttons["like"])) - unset($buttons["like"]); - $tmp_item = array( 'template' => $this->get_template(), From d920cf25b0516be7dfbe5115044c694fa192dc5e Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 12 Jul 2015 16:16:54 +0200 Subject: [PATCH 018/239] dont use an empty li, but make a new list for visual separation --- view/templates/contact_edit.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/templates/contact_edit.tpl b/view/templates/contact_edit.tpl index c63166aa7..1b13dcdad 100644 --- a/view/templates/contact_edit.tpl +++ b/view/templates/contact_edit.tpl @@ -35,8 +35,8 @@ {{if $archived}}
  • {{$archived}}
  • {{/if}} - -
  •  
  • + +
      {{if $common_text}}
    • From 2c39387e44935c27e60d746591d05949487ed3dd Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 12 Jul 2015 17:43:50 +0200 Subject: [PATCH 019/239] fix for saving searches --- view/templates/searchbox.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/templates/searchbox.tpl b/view/templates/searchbox.tpl index ce656433b..c3b875294 100644 --- a/view/templates/searchbox.tpl +++ b/view/templates/searchbox.tpl @@ -4,7 +4,7 @@ {{if $savedsearch}} - + {{/if}} {{/strip}} From e5809dce79057ca59668c0715be93d80a78635dc Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 12 Jul 2015 17:52:25 +0200 Subject: [PATCH 020/239] add jotnets for sharing posts --- mod/display.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/display.php b/mod/display.php index 60dfdeff2..95f248bfe 100644 --- a/mod/display.php +++ b/mod/display.php @@ -351,7 +351,7 @@ function display_content(&$a, $update = 0) { 'default_location' => $a->user['default-location'], 'nickname' => $a->user['nickname'], 'lockstate' => ( (is_array($a->user)) && ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid']))) ? 'lock' : 'unlock'), - 'acl' => populate_acl($a->user), + 'acl' => populate_acl($a->user, true), 'bang' => '', 'visitor' => 'block', 'profile_uid' => local_user(), From 6a646d68c5117afc84db0d4552c335fe1e9c0aba Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 12 Jul 2015 20:27:54 +0200 Subject: [PATCH 021/239] Updated templates for "vier" (See issue 1733) --- view/templates/profile-hide-friends.tpl | 20 +++----------- view/templates/profile_vcard.tpl | 16 ++++++------ .../vier/templates/profile-hide-friends.tpl | 3 --- view/theme/vier/templates/profile_vcard.tpl | 26 +++++++++---------- 4 files changed, 24 insertions(+), 41 deletions(-) delete mode 100644 view/theme/vier/templates/profile-hide-friends.tpl diff --git a/view/templates/profile-hide-friends.tpl b/view/templates/profile-hide-friends.tpl index e2873b01a..80e6dcb94 100644 --- a/view/templates/profile-hide-friends.tpl +++ b/view/templates/profile-hide-friends.tpl @@ -1,17 +1,3 @@ - -

      -{{$desc}} -

      - -
      - - - -
      -
      -
      - - - -
      -
      +
      + {{include file="field_yesno.tpl" field=$yesno}} +
      diff --git a/view/templates/profile_vcard.tpl b/view/templates/profile_vcard.tpl index 056aabc96..fe5762973 100644 --- a/view/templates/profile_vcard.tpl +++ b/view/templates/profile_vcard.tpl @@ -9,9 +9,9 @@ {{if $profile.picdate}}
      {{$profile.name}}
      - {{else}} + {{else}}
      {{$profile.name}}
      - {{/if}} + {{/if}} {{if $profile.network_name}}
      {{$network}}
      {{$profile.network_name}}
      {{/if}} {{if $location}}
      {{$location}}
      @@ -46,12 +46,12 @@ - - {{if $profile.picdate}} -
      {{$profile.name}}
      - {{else}} -
      {{$profile.name}}
      - {{/if}} {{if $pdesc}}
      {{$profile.pdesc}}
      {{/if}} + {{if $profile.picdate}} +
      {{$profile.name}}
      + {{else}} +
      {{$profile.name}}
      + {{/if}} {{if $profile.network_name}}
      {{$network}}
      {{$profile.network_name}}
      {{/if}} {{if $location}} -
      {{$location}}

      +
      {{$location}}
      {{if $profile.address}}
      {{$profile.address}}
      {{/if}} @@ -31,14 +30,14 @@ {{$profile.region}} {{$profile.postal_code}} - {{if $profile.country_name}}{{$profile.country_name}}{{/if}} + {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
      {{/if}} - {{if $gender}}
      {{$gender}}
      {{$profile.gender}}
      {{/if}} + {{if $gender}}
      {{$gender}}
      {{$profile.gender}}
      {{/if}} - {{if $profile.pubkey}}{{/if}} + {{if $profile.pubkey}}{{/if}} {{if $contacts}}{{/if}} @@ -46,7 +45,7 @@ {{if $marital}}
      {{$marital}}
      {{$profile.marital}}
      {{/if}} - {{if $homepage}}
      {{$homepage}}
      {{$profile.homepage}}
      {{/if}} + {{if $homepage}}
      {{$homepage}}
      {{$profile.homepage}}
      {{/if}} {{if $about}}
      {{$about}}
      {{$profile.about}}
      {{/if}} @@ -61,10 +60,11 @@
    • {{$connect}}
    • {{/if}} {{/if}} + {{if $wallmessage}} +
    • {{$wallmessage}}
    • + {{/if}}
    {{$contact_block}} - - From 5f86d3d3254598a67e6629bccff2e3fb028ba1a5 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 12 Jul 2015 20:31:49 +0200 Subject: [PATCH 022/239] removed the picture width, since it is already in the style sheet. --- view/theme/vier/templates/profile_vcard.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/theme/vier/templates/profile_vcard.tpl b/view/theme/vier/templates/profile_vcard.tpl index af2ae648f..3317d668c 100644 --- a/view/theme/vier/templates/profile_vcard.tpl +++ b/view/theme/vier/templates/profile_vcard.tpl @@ -16,9 +16,9 @@ {{if $pdesc}}
    {{$profile.pdesc}}
    {{/if}} {{if $profile.picdate}} -
    {{$profile.name}}
    +
    {{$profile.name}}
    {{else}} -
    {{$profile.name}}
    +
    {{$profile.name}}
    {{/if}} {{if $profile.network_name}}
    {{$network}}
    {{$profile.network_name}}
    {{/if}} {{if $location}} From 5f89cb09234bc79aab2be93778609b344239c3da Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 12 Jul 2015 21:37:49 +0200 Subject: [PATCH 023/239] The autofollow option is moved from the addons to the core. --- mod/settings.php | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/mod/settings.php b/mod/settings.php index 612edaaf8..e4ef30a61 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -178,7 +178,8 @@ function settings_post(&$a) { check_form_security_token_redirectOnErr('/settings/connectors', 'settings_connectors'); if(x($_POST, 'general-submit')) { - set_pconfig(local_user(), 'system', 'no_intelligent_shortening', $_POST['no_intelligent_shortening']); + set_pconfig(local_user(), 'system', 'no_intelligent_shortening', intval($_POST['no_intelligent_shortening'])); + set_pconfig(local_user(), 'system', 'ostatus_autofriend', intval($_POST['snautofollow'])); } elseif(x($_POST, 'imap-submit')) { $mail_server = ((x($_POST,'mail_server')) ? $_POST['mail_server'] : ''); @@ -751,6 +752,14 @@ function settings_content(&$a) { $settings_connectors .= ''.t('Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post.').''; $settings_connectors .= ''; + $checked = ((get_pconfig(local_user(), 'system', 'ostatus_autofriend')) ? ' checked="checked" ' : ''); + + $settings_connectors .= '
    '; + $settings_connectors .= ''; + $settings_connectors .= ''; + $settings_connectors .= ''.t('If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user.').''; + $settings_connectors .= '
    '; + $settings_connectors .= '
    '; $settings_connectors .= '
    '; @@ -759,7 +768,7 @@ function settings_content(&$a) { if (is_site_admin()) { $diasp_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('Diaspora'), ((get_config('system','diaspora_enabled')) ? t('enabled') : t('disabled'))); - $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('StatusNet'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled'))); + $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('GNU Social (OStatus)'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled'))); } else { $diasp_enabled = ""; $ostat_enabled = ""; From 0398bb67be0acbbc6dc135c4c49519daf9777e0a Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 13 Jul 2015 08:06:51 +0200 Subject: [PATCH 024/239] Reworked salmon import --- include/ostatus.php | 33 ++++++++++++++++++++++++++++ mod/salmon.php | 53 +++++++++++++-------------------------------- 2 files changed, 48 insertions(+), 38 deletions(-) diff --git a/include/ostatus.php b/include/ostatus.php index 782541847..7b657577a 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -109,6 +109,34 @@ function ostatus_fetchauthor($xpath, $context, $importer, &$contact) { return($author); } +function ostatus_salmon_author($xml, $importer) { + $a = get_app(); + + if ($xml == "") + return; + + $doc = new DOMDocument(); + @$doc->loadXML($xml); + + $xpath = new DomXPath($doc); + $xpath->registerNamespace('atom', "http://www.w3.org/2005/Atom"); + $xpath->registerNamespace('thr', "http://purl.org/syndication/thread/1.0"); + $xpath->registerNamespace('georss', "http://www.georss.org/georss"); + $xpath->registerNamespace('activity', "http://activitystrea.ms/spec/1.0/"); + $xpath->registerNamespace('media', "http://purl.org/syndication/atommedia"); + $xpath->registerNamespace('poco', "http://portablecontacts.net/spec/1.0"); + $xpath->registerNamespace('ostatus', "http://ostatus.org/schema/1.0"); + $xpath->registerNamespace('statusnet', "http://status.net/schema/api/1/"); + + $entries = $xpath->query('/atom:entry'); + + foreach ($entries AS $entry) { + // fetch the author + $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact); + return $author; + } +} + function ostatus_import($xml,$importer,&$contact, &$hub) { $a = get_app(); @@ -218,6 +246,11 @@ function ostatus_import($xml,$importer,&$contact, &$hub) { continue; } + if ($item["verb"] == NAMESPACE_OSTATUS."/unfollow") { + // ignore "Unfollow" messages + continue; + } + if ($item["verb"] == ACTIVITY_FAVORITE) { // ignore "Favorite" messages continue; diff --git a/mod/salmon.php b/mod/salmon.php index 11e42d943..f04a2e228 100644 --- a/mod/salmon.php +++ b/mod/salmon.php @@ -2,11 +2,11 @@ // There is a lot of debug stuff in here because this is quite a -// complicated process to try and sort out. +// complicated process to try and sort out. require_once('include/salmon.php'); +require_once('include/ostatus.php'); require_once('include/crypto.php'); -require_once('library/simplepie/simplepie.inc'); function salmon_return($val) { @@ -86,35 +86,8 @@ function salmon_post(&$a) { // decode the data $data = base64url_decode($data); - // Remove the xml declaration - $data = preg_replace('/\<\?xml[^\?].*\?\>/','',$data); - - // Create a fake feed wrapper so simplepie doesn't choke - - $tpl = get_markup_template('fake_feed.tpl'); - - $base = substr($data,strpos($data,''; - - logger('mod-salmon: Processed feed: ' . $feedxml); - - // Now parse it like a normal atom feed to scrape out the author URI - - $feed = new SimplePie(); - $feed->set_raw_data($feedxml); - $feed->enable_order_by_date(false); - $feed->init(); - - logger('mod-salmon: Feed parsed.'); - - if($feed->get_item_quantity()) { - foreach($feed->get_items() as $item) { - $author = $item->get_author(); - $author_link = unxmlify($author->get_link()); - break; - } - } + $author = ostatus_salmon_author($data,$importer); + $author_link = $author["author-link"]; if(! $author_link) { logger('mod-salmon: Could not retrieve author URI.'); @@ -144,17 +117,17 @@ function salmon_post(&$a) { // We should have everything we need now. Let's see if it verifies. - $verify = rsa_verify($compliant_format,$signature,$pubkey); + $verify = rsa_verify($compliant_format,$signature,$pubkey); if(! $verify) { logger('mod-salmon: message did not verify using protocol. Trying padding hack.'); $verify = rsa_verify($signed_data,$signature,$pubkey); - } + } if(! $verify) { logger('mod-salmon: message did not verify using padding. Trying old statusnet hack.'); $verify = rsa_verify($stnet_signed_data,$signature,$pubkey); - } + } if(! $verify) { logger('mod-salmon: Message did not verify. Discarding.'); @@ -170,11 +143,14 @@ function salmon_post(&$a) { * */ - $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND ( `url` = '%s' OR `alias` = '%s' ) - AND `uid` = %d LIMIT 1", + $r = q("SELECT * FROM `contact` WHERE `network` IN ('%s', '%s') + AND (`nurl` = '%s' OR `alias` = '%s' OR `alias` = '%s') + AND `uid` = %d LIMIT 1", dbesc(NETWORK_OSTATUS), + dbesc(NETWORK_DFRN), + dbesc(normalise_link($author_link)), dbesc($author_link), - dbesc($author_link), + dbesc(normalise_link($author_link)), intval($importer['uid']) ); if(! count($r)) { @@ -219,7 +195,8 @@ function salmon_post(&$a) { $contact_rec = ((count($r)) ? $r[0] : null); - consume_feed($feedxml,$importer,$contact_rec,$hub); + //consume_feed($feedxml,$importer,$contact_rec,$hub); + ostatus_import($data,$importer,$contact_rec, $hub); http_status_exit(200); } From a54dd8a9dbddf276f998f6c6948ec20a7cc1be02 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 13 Jul 2015 08:14:00 +0200 Subject: [PATCH 025/239] DE: update to the strings --- view/de/messages.po | 9508 ++++++++++++++++++++++--------------------- view/de/strings.php | 2206 +++++----- 2 files changed, 5922 insertions(+), 5792 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index befe76bf0..c61ab829e 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -30,10 +30,10 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-30 08:43+0200\n" -"PO-Revision-Date: 2015-06-30 07:40+0000\n" +"POT-Creation-Date: 2015-07-08 13:18+0200\n" +"PO-Revision-Date: 2015-07-13 06:10+0000\n" "Last-Translator: bavatar \n" -"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" +"Language-Team: German (http://www.transifex.com/p/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -44,22 +44,22 @@ msgstr "" msgid "This entry was edited" msgstr "Dieser Beitrag wurde bearbeitet." -#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622 +#: object/Item.php:117 mod/content.php:622 mod/photos.php:1379 msgid "Private Message" msgstr "Private Nachricht" -#: object/Item.php:121 mod/settings.php:683 mod/content.php:730 +#: object/Item.php:121 mod/content.php:730 mod/settings.php:683 msgid "Edit" msgstr "Bearbeiten" -#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439 -#: mod/content.php:742 include/conversation.php:612 +#: object/Item.php:130 mod/content.php:439 mod/content.php:742 +#: mod/photos.php:1672 include/conversation.php:612 msgid "Select" msgstr "Auswählen" -#: object/Item.php:131 mod/admin.php:1017 mod/photos.php:1673 -#: mod/contacts.php:760 mod/settings.php:684 mod/group.php:171 -#: mod/content.php:440 mod/content.php:743 include/conversation.php:613 +#: object/Item.php:131 mod/admin.php:1017 mod/contacts.php:760 +#: mod/content.php:440 mod/content.php:743 mod/group.php:171 +#: mod/photos.php:1673 mod/settings.php:684 include/conversation.php:613 msgid "Delete" msgstr "Löschen" @@ -103,7 +103,7 @@ msgstr "Ignoriert" msgid "add tag" msgstr "Tag hinzufügen" -#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686 +#: object/Item.php:232 mod/content.php:686 mod/photos.php:1561 msgid "I like this (toggle)" msgstr "Ich mag das (toggle)" @@ -111,7 +111,7 @@ msgstr "Ich mag das (toggle)" msgid "like" msgstr "mag ich" -#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687 +#: object/Item.php:233 mod/content.php:687 mod/photos.php:1562 msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" @@ -163,14 +163,14 @@ msgstr "via Wall-To-Wall:" msgid "%s from %s" msgstr "%s von %s" -#: object/Item.php:364 object/Item.php:680 mod/photos.php:1583 -#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:754 +#: object/Item.php:364 object/Item.php:680 mod/content.php:711 +#: mod/photos.php:1583 mod/photos.php:1627 mod/photos.php:1715 boot.php:754 msgid "Comment" msgstr "Kommentar" -#: object/Item.php:367 mod/message.php:334 mod/message.php:565 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564 -#: mod/content.php:501 mod/content.php:885 include/conversation.php:691 +#: object/Item.php:367 mod/wallmessage.php:156 mod/message.php:334 +#: mod/message.php:565 mod/content.php:501 mod/content.php:885 +#: mod/editpost.php:124 mod/photos.php:1564 include/conversation.php:691 #: include/conversation.php:1074 msgid "Please wait" msgstr "Bitte warten" @@ -189,27 +189,30 @@ msgid_plural "comments" msgstr[0] "Kommentar" msgstr[1] "Kommentare" -#: object/Item.php:393 mod/content.php:608 boot.php:755 include/items.php:5133 -#: include/contact_widgets.php:205 +#: object/Item.php:393 mod/content.php:608 include/contact_widgets.php:205 +#: include/items.php:5133 boot.php:755 msgid "show more" msgstr "mehr anzeigen" -#: object/Item.php:678 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 mod/content.php:709 +#: object/Item.php:678 mod/content.php:709 mod/photos.php:1581 +#: mod/photos.php:1625 mod/photos.php:1713 msgid "This is you" msgstr "Das bist Du" -#: object/Item.php:681 mod/fsuggest.php:107 mod/message.php:335 -#: mod/message.php:564 mod/events.php:511 mod/photos.php:1104 -#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584 -#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:564 -#: mod/invite.php:140 mod/profiles.php:682 mod/manage.php:110 mod/poke.php:199 -#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288 -#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191 -#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 -#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70 -#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64 -#: view/theme/cleanzero/config.php:80 +#: object/Item.php:681 view/theme/perihel/config.php:95 +#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 +#: view/theme/quattro/config.php:64 +#: view/theme/zero-childs/cleanzero/config.php:80 +#: view/theme/dispy/config.php:70 view/theme/clean/config.php:83 +#: view/theme/duepuntozero/config.php:59 view/theme/cleanzero/config.php:80 +#: view/theme/vier/config.php:56 view/theme/vier-mobil/config.php:47 +#: mod/mood.php:137 mod/localtime.php:45 mod/poke.php:199 mod/fsuggest.php:107 +#: mod/invite.php:140 mod/manage.php:110 mod/message.php:335 +#: mod/message.php:564 mod/contacts.php:564 mod/content.php:712 +#: mod/crepair.php:191 mod/events.php:511 mod/install.php:250 +#: mod/install.php:288 mod/photos.php:1104 mod/photos.php:1223 +#: mod/photos.php:1533 mod/photos.php:1584 mod/photos.php:1628 +#: mod/photos.php:1716 mod/profiles.php:682 msgid "Submit" msgstr "Senden" @@ -245,60 +248,1261 @@ msgstr "Link" msgid "Video" msgstr "Video" -#: object/Item.php:690 mod/editpost.php:145 mod/events.php:509 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: mod/content.php:721 include/conversation.php:1089 +#: object/Item.php:690 mod/content.php:721 mod/editpost.php:145 +#: mod/events.php:509 mod/photos.php:1585 mod/photos.php:1629 +#: mod/photos.php:1717 include/conversation.php:1089 msgid "Preview" msgstr "Vorschau" -#: index.php:225 mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." +#: view/smarty3/compiled/a908c9746db77ea1b3b8583681c75a6737ae4de1.file.blob.tpl.php:76 +#: view/smarty3/compiled/3652bcbaa383153072aa300c238792d03867c262.file.tree.tpl.php:76 +#: view/smarty3/compiled/788b954cfdfbf400e0cd17e1e5629515d87eb32f.file.commit.tpl.php:77 +#: view/smarty3/compiled/c6d84f5d6190b86e81c93d71a9bb01aa32004841.file.project.tpl.php:76 +#: view/smarty3/compiled/75e3f44e184d57ada4cf6c86f0ab429f322f9b3e.file.project_empty.tpl.php:76 +#: view/smarty3/compiled/7fd1b71c8d07cc4e9605dd231482f4f114db46f5.file.commits.tpl.php:77 +msgid "Clone this project:" +msgstr "Dieses Projekt clonen" -#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25 -msgid "Not Found" -msgstr "Nicht gefunden" +#: view/smarty3/compiled/a908c9746db77ea1b3b8583681c75a6737ae4de1.file.blob.tpl.php:111 +msgid "Click here to download" +msgstr "Zum Download hier klicken" -#: index.php:272 mod/help.php:45 -msgid "Page not found." -msgstr "Seite nicht gefunden." +#: view/smarty3/compiled/75e3f44e184d57ada4cf6c86f0ab429f322f9b3e.file.project_empty.tpl.php:98 +msgid "This project is empty!" +msgstr "Dieses Projekt is leer!" -#: index.php:381 mod/profperm.php:19 mod/group.php:72 -msgid "Permission denied" -msgstr "Zugriff verweigert" +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:31 +msgid "Projects" +msgstr "Projekte" -#: index.php:382 mod/fsuggest.php:78 mod/files.php:170 -#: mod/notifications.php:66 mod/message.php:38 mod/message.php:174 -#: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164 -#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:66 -#: mod/api.php:26 mod/api.php:31 mod/photos.php:156 mod/photos.php:1072 -#: mod/register.php:42 mod/attach.php:33 mod/contacts.php:322 mod/follow.php:9 -#: mod/follow.php:42 mod/follow.php:81 mod/uimport.php:23 mod/allfriends.php:9 -#: mod/invite.php:15 mod/invite.php:101 mod/settings.php:20 -#: mod/settings.php:107 mod/settings.php:608 mod/display.php:508 -#: mod/profiles.php:165 mod/profiles.php:614 mod/wall_attach.php:55 -#: mod/suggest.php:58 mod/manage.php:96 mod/delegate.php:12 -#: mod/viewcontacts.php:24 mod/notes.php:20 mod/poke.php:135 +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:32 +msgid "add new" +msgstr "neues hinzufügen" + +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:51 +msgid "delete" +msgstr "löschen" + +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:68 +#, php-format +msgid "" +"Do you want to delete the project '%s'?\\n\\nThis operation cannot be " +"undone." +msgstr "Möchtest du das Projekt '%s' löschen?\\n\\nDies kann nicht rückgängig gemacht werden." + +#: view/theme/perihel/theme.php:33 view/theme/diabook/theme.php:123 +#: mod/notifications.php:93 include/nav.php:105 include/nav.php:148 +msgid "Home" +msgstr "Pinnwand" + +#: view/theme/perihel/theme.php:33 view/theme/diabook/theme.php:123 +#: include/nav.php:76 include/nav.php:148 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: view/theme/perihel/theme.php:34 view/theme/diabook/theme.php:124 +#: mod/newmember.php:32 mod/profperm.php:104 include/identity.php:529 +#: include/identity.php:610 include/identity.php:639 include/nav.php:77 +msgid "Profile" +msgstr "Profil" + +#: view/theme/perihel/theme.php:34 view/theme/diabook/theme.php:124 +#: include/nav.php:77 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: view/theme/perihel/theme.php:35 view/theme/diabook/theme.php:126 +#: mod/fbrowser.php:25 include/identity.php:646 include/nav.php:78 +msgid "Photos" +msgstr "Bilder" + +#: view/theme/perihel/theme.php:35 view/theme/diabook/theme.php:126 +#: include/nav.php:78 +msgid "Your photos" +msgstr "Deine Fotos" + +#: view/theme/perihel/theme.php:36 view/theme/diabook/theme.php:127 +#: mod/events.php:396 include/identity.php:663 include/nav.php:80 +msgid "Events" +msgstr "Veranstaltungen" + +#: view/theme/perihel/theme.php:36 view/theme/diabook/theme.php:127 +#: include/nav.php:80 +msgid "Your events" +msgstr "Deine Ereignisse" + +#: view/theme/perihel/theme.php:37 view/theme/diabook/theme.php:128 +#: include/nav.php:81 +msgid "Personal notes" +msgstr "Persönliche Notizen" + +#: view/theme/perihel/theme.php:37 view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Deine privaten Fotos" + +#: view/theme/perihel/theme.php:38 view/theme/diabook/theme.php:129 +#: mod/community.php:32 include/nav.php:129 include/nav.php:131 +msgid "Community" +msgstr "Gemeinschaft" + +#: view/theme/perihel/config.php:89 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 include/acl_selectors.php:337 +msgid "don't show" +msgstr "nicht zeigen" + +#: view/theme/perihel/config.php:89 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 include/acl_selectors.php:336 +msgid "show" +msgstr "zeigen" + +#: view/theme/perihel/config.php:97 view/theme/diabook/config.php:150 +#: view/theme/quattro/config.php:66 +#: view/theme/zero-childs/cleanzero/config.php:82 +#: view/theme/dispy/config.php:72 view/theme/clean/config.php:85 +#: view/theme/duepuntozero/config.php:61 view/theme/cleanzero/config.php:82 +#: view/theme/vier/config.php:58 view/theme/vier-mobil/config.php:49 +#: mod/settings.php:919 +msgid "Theme settings" +msgstr "Themeneinstellungen" + +#: view/theme/perihel/config.php:98 view/theme/diabook/config.php:151 +#: view/theme/zero-childs/cleanzero/config.php:84 +#: view/theme/dispy/config.php:73 view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Schriftgröße für Beiträge und Kommentare festlegen" + +#: view/theme/perihel/config.php:99 view/theme/diabook/config.php:152 +#: view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Liniengröße für Beiträge und Kommantare festlegen" + +#: view/theme/perihel/config.php:100 view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Auflösung für die Mittelspalte setzen" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Wähle Farbschema" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Zoomfaktor der Earth Layer" + +#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitude (X) der Earth Layer" + +#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitude (Y) der Earth Layer" + +#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 +msgid "Community Pages" +msgstr "Foren" + +#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 +#: view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 +#: view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Community-Profile" + +#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 +#: view/theme/diabook/theme.php:627 +msgid "Help or @NewHere ?" +msgstr "Hilfe oder @NewHere" + +#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 +#: view/theme/diabook/theme.php:628 +msgid "Connect Services" +msgstr "Verbinde Dienste" + +#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 +#: view/theme/diabook/theme.php:629 +msgid "Find Friends" +msgstr "Freunde finden" + +#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 +#: view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "Letzte Nutzer" + +#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 +#: view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Letzte Fotos" + +#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 +#: view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Zuletzt gemocht" + +#: view/theme/diabook/theme.php:125 mod/contacts.php:745 include/nav.php:178 +msgid "Contacts" +msgstr "Kontakte" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Deine Kontakte" + +#: view/theme/diabook/theme.php:463 include/conversation.php:118 +#: include/conversation.php:245 include/text.php:1998 +msgid "event" +msgstr "Veranstaltung" + +#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 +#: mod/tagger.php:62 mod/like.php:149 mod/like.php:319 mod/subthread.php:87 +#: include/conversation.php:121 include/conversation.php:130 +#: include/conversation.php:248 include/conversation.php:257 +#: include/diaspora.php:2106 +msgid "status" +msgstr "Status" + +#: view/theme/diabook/theme.php:471 mod/tagger.php:62 mod/like.php:149 +#: mod/subthread.php:87 include/conversation.php:126 +#: include/conversation.php:253 include/diaspora.php:2106 +#: include/text.php:2000 +msgid "photo" +msgstr "Foto" + +#: view/theme/diabook/theme.php:480 mod/like.php:166 +#: include/conversation.php:137 include/diaspora.php:2122 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s" + +#: view/theme/diabook/theme.php:499 mod/photos.php:50 mod/photos.php:177 +#: mod/photos.php:1086 mod/photos.php:1207 mod/photos.php:1230 +#: mod/photos.php:1779 mod/photos.php:1791 +msgid "Contact Photos" +msgstr "Kontaktbilder" + +#: view/theme/diabook/theme.php:500 mod/photos.php:177 mod/photos.php:753 +#: mod/photos.php:1207 mod/photos.php:1230 mod/profile_photo.php:74 +#: mod/profile_photo.php:81 mod/profile_photo.php:88 mod/profile_photo.php:204 +#: mod/profile_photo.php:296 mod/profile_photo.php:305 include/user.php:343 +#: include/user.php:350 include/user.php:357 +msgid "Profile Photos" +msgstr "Profilbilder" + +#: view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" + +#: view/theme/diabook/theme.php:525 mod/directory.php:53 +msgid "Global Directory" +msgstr "Weltweites Verzeichnis" + +#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "Ähnliche Interessen" + +#: view/theme/diabook/theme.php:527 mod/suggest.php:69 +#: include/contact_widgets.php:35 +msgid "Friend Suggestions" +msgstr "Kontaktvorschläge" + +#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 +msgid "Invite Friends" +msgstr "Freunde einladen" + +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648 +#: mod/newmember.php:22 mod/admin.php:1114 mod/admin.php:1335 +#: mod/settings.php:90 include/nav.php:173 +msgid "Settings" +msgstr "Einstellungen" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Zoomfaktor der Earth Layer" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Ausrichtung" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Links" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Mitte" + +#: view/theme/quattro/config.php:68 +#: view/theme/zero-childs/cleanzero/config.php:86 +#: view/theme/clean/config.php:88 view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Farbschema" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Schriftgröße in Beiträgen" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Schriftgröße in Eingabefeldern" + +#: view/theme/zero-childs/cleanzero/config.php:83 +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)" + +#: view/theme/zero-childs/cleanzero/config.php:85 +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Theme Breite festlegen" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Farbschema wählen" + +#: view/theme/clean/config.php:56 view/theme/duepuntozero/config.php:44 +#: include/text.php:1734 include/user.php:255 +msgid "default" +msgstr "Standard" + +#: view/theme/clean/config.php:57 +msgid "Midnight" +msgstr "Mitternacht" + +#: view/theme/clean/config.php:58 +msgid "Zenburn" +msgstr "Zenburn" + +#: view/theme/clean/config.php:59 +msgid "Bootstrap" +msgstr "Bootstrap" + +#: view/theme/clean/config.php:60 +msgid "Shades of Pink" +msgstr "Shades of Pink" + +#: view/theme/clean/config.php:61 +msgid "Lime and Orange" +msgstr "Lime and Orange" + +#: view/theme/clean/config.php:62 +msgid "GeoCities Retro" +msgstr "GeoCities Retro" + +#: view/theme/clean/config.php:86 +msgid "Background Image" +msgstr "Hintergrundbild" + +#: view/theme/clean/config.php:86 +msgid "" +"The URL to a picture (e.g. from your photo album) that should be used as " +"background image." +msgstr "Die URL des Bildes (z.B. aus deinem Fotoalbum), das als Hintergrundbild verwendet werden soll." + +#: view/theme/clean/config.php:87 +msgid "Background Color" +msgstr "Hintergrundfarbe" + +#: view/theme/clean/config.php:87 +msgid "HEX value for the background color. Don't include the #" +msgstr "HEX Wert der Hintergrundfarbe. Gib die # nicht mit an." + +#: view/theme/clean/config.php:89 +msgid "font size" +msgstr "Schriftgröße" + +#: view/theme/clean/config.php:89 +msgid "base font size for your interface" +msgstr "Grundschriftgröße für dein Web-Interface" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "Variationen" + +#: view/theme/vier/config.php:59 view/theme/vier-mobil/config.php:50 +msgid "Set style" +msgstr "Stil auswählen" + +#: mod/mood.php:62 include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s ist momentan %2$s" + +#: mod/mood.php:114 mod/api.php:26 mod/api.php:31 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/attach.php:33 mod/regmod.php:110 mod/uimport.php:23 mod/poke.php:135 +#: mod/delegate.php:12 mod/nogroup.php:25 mod/fsuggest.php:78 +#: mod/invite.php:15 mod/invite.php:101 mod/manage.php:96 mod/message.php:38 +#: mod/message.php:174 mod/viewcontacts.php:24 mod/notifications.php:66 +#: mod/allfriends.php:9 mod/contacts.php:322 mod/crepair.php:120 +#: mod/dfrn_confirm.php:55 mod/display.php:508 mod/editpost.php:10 +#: mod/events.php:164 mod/follow.php:9 mod/follow.php:42 mod/follow.php:81 +#: mod/group.php:19 mod/item.php:170 mod/item.php:186 mod/network.php:4 +#: mod/notes.php:20 mod/photos.php:156 mod/photos.php:1072 #: mod/profile_photo.php:19 mod/profile_photo.php:169 -#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/group.php:19 -#: mod/regmod.php:110 mod/item.php:170 mod/item.php:186 mod/mood.php:114 -#: mod/network.php:4 mod/crepair.php:120 include/items.php:5022 +#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/profiles.php:165 +#: mod/profiles.php:614 mod/suggest.php:58 mod/wall_attach.php:55 +#: mod/wall_upload.php:66 mod/register.php:42 mod/settings.php:20 +#: mod/settings.php:107 mod/settings.php:608 include/items.php:5022 +#: index.php:382 msgid "Permission denied." msgstr "Zugriff verweigert." -#: index.php:441 -msgid "toggle mobile" -msgstr "auf/von Mobile Ansicht wechseln" +#: mod/mood.php:133 +msgid "Mood" +msgstr "Stimmung" -#: mod/update_notes.php:37 mod/update_profile.php:41 -#: mod/update_community.php:18 mod/update_network.php:25 -#: mod/update_display.php:22 +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden" + +#: mod/decrypt.php:9 mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Zugriff verweigert." + +#: mod/decrypt.php:15 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:169 +#: mod/admin.php:1062 mod/admin.php:1275 mod/display.php:82 +#: mod/display.php:295 mod/display.php:512 include/items.php:4813 +msgid "Item not found." +msgstr "Beitrag nicht gefunden." + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s heißt %2$s herzlich willkommen" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Verbindung der Applikation autorisieren" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Bitte melde Dich an um fortzufahren." + +#: mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?" + +#: mod/api.php:105 mod/message.php:209 mod/contacts.php:413 +#: mod/dfrn_request.php:845 mod/follow.php:57 mod/profiles.php:657 +#: mod/profiles.php:660 mod/suggest.php:29 mod/register.php:235 +#: mod/settings.php:1036 mod/settings.php:1042 mod/settings.php:1050 +#: mod/settings.php:1054 mod/settings.php:1059 mod/settings.php:1065 +#: mod/settings.php:1071 mod/settings.php:1077 mod/settings.php:1105 +#: mod/settings.php:1106 mod/settings.php:1107 mod/settings.php:1108 +#: mod/settings.php:1109 include/items.php:4854 +msgid "Yes" +msgstr "Ja" + +#: mod/api.php:106 mod/dfrn_request.php:845 mod/follow.php:57 +#: mod/profiles.php:657 mod/profiles.php:661 mod/register.php:236 +#: mod/settings.php:1036 mod/settings.php:1042 mod/settings.php:1050 +#: mod/settings.php:1054 mod/settings.php:1059 mod/settings.php:1065 +#: mod/settings.php:1071 mod/settings.php:1077 mod/settings.php:1105 +#: mod/settings.php:1106 mod/settings.php:1107 mod/settings.php:1108 +#: mod/settings.php:1109 +msgid "No" +msgstr "Nein" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." + +#: mod/lostpass.php:42 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast." + +#: mod/lostpass.php:53 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." + +#: mod/lostpass.php:109 boot.php:1277 +msgid "Password Reset" +msgstr "Passwort zurücksetzen" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort - und dann" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "hier klicken, um Dich anzumelden" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast." + +#: mod/lostpass.php:125 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)." + +#: mod/lostpass.php:131 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden." + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Hast Du Dein Passwort vergessen?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet." + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Spitzname oder E-Mail:" + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Zurücksetzen" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen." + +#: mod/wallmessage.php:56 mod/message.php:63 +msgid "No recipient selected." +msgstr "Kein Empfänger gewählt." + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Konnte Deinen Heimatort nicht bestimmen." + +#: mod/wallmessage.php:62 mod/message.php:70 +msgid "Message could not be sent." +msgstr "Nachricht konnte nicht gesendet werden." + +#: mod/wallmessage.php:65 mod/message.php:73 +msgid "Message collection failure." +msgstr "Konnte Nachrichten nicht abrufen." + +#: mod/wallmessage.php:68 mod/message.php:76 +msgid "Message sent." +msgstr "Nachricht gesendet." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Kein Empfänger." + +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:283 +#: mod/message.php:291 mod/message.php:466 mod/message.php:474 +#: include/conversation.php:1001 include/conversation.php:1019 +msgid "Please enter a link URL:" +msgstr "Bitte gib die URL des Links ein:" + +#: mod/wallmessage.php:142 mod/message.php:319 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." + +#: mod/wallmessage.php:144 mod/message.php:320 mod/message.php:553 +msgid "To:" +msgstr "An:" + +#: mod/wallmessage.php:145 mod/message.php:325 mod/message.php:555 +msgid "Subject:" +msgstr "Betreff:" + +#: mod/wallmessage.php:151 mod/invite.php:134 mod/message.php:329 +#: mod/message.php:558 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: mod/wallmessage.php:154 mod/message.php:332 mod/message.php:562 +#: mod/editpost.php:110 include/conversation.php:1056 +msgid "Upload photo" +msgstr "Foto hochladen" + +#: mod/wallmessage.php:155 mod/message.php:333 mod/message.php:563 +#: mod/editpost.php:114 include/conversation.php:1060 +msgid "Insert web link" +msgstr "Einen Link einfügen" + +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Willkommen bei Friendica" + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Checkliste für neue Mitglieder" + +#: mod/newmember.php:12 +msgid "" +"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." +msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden." + +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "Einstieg" + +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica Rundgang" + +#: mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst." + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Gehe zu deinen Einstellungen" + +#: mod/newmember.php:26 +msgid "" +"On your Settings 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." +msgstr "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen." + +#: mod/newmember.php:28 +msgid "" +"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." +msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können." + +#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:695 +msgid "Upload Profile Photo" +msgstr "Profilbild hochladen" + +#: mod/newmember.php:36 +msgid "" +"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." +msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust." + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editiere dein Profil" + +#: mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils." + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Profil Schlüsselbegriffe" + +#: mod/newmember.php:40 +msgid "" +"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." +msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen." + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "Verbindungen knüpfen" + +#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst." + +#: mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten." + +#: mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Emails Importieren" + +#: mod/newmember.php:56 +msgid "" +"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" +msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst." + +#: mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Gehe zu deiner Kontakt-Seite" + +#: mod/newmember.php:58 +msgid "" +"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 Add New Contact dialog." +msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein." + +#: mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz" + +#: mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst." + +#: mod/newmember.php:62 +msgid "Finding New People" +msgstr "Neue Leute kennenlernen" + +#: mod/newmember.php:62 +msgid "" +"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." +msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." + +#: mod/newmember.php:66 include/group.php:270 +msgid "Groups" +msgstr "Gruppen" + +#: mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Gruppiere deine Kontakte" + +#: mod/newmember.php:70 +msgid "" +"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." +msgstr "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren." + +#: mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Warum sind meine Beiträge nicht öffentlich?" + +#: mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch." + +#: mod/newmember.php:78 +msgid "Getting Help" +msgstr "Hilfe bekommen" + +#: mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Zum Hilfe Abschnitt gehen" + +#: mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten." + +#: mod/_search.php:21 mod/network.php:187 mod/search.php:21 +msgid "Remove term" +msgstr "Begriff entfernen" + +#: mod/_search.php:30 mod/network.php:196 mod/search.php:30 +#: include/features.php:42 +msgid "Saved Searches" +msgstr "Gespeicherte Suchen" + +#: mod/_search.php:89 mod/viewcontacts.php:19 mod/community.php:18 +#: mod/dfrn_request.php:777 mod/directory.php:35 mod/display.php:223 +#: mod/photos.php:942 mod/search.php:89 mod/videos.php:187 +msgid "Public access denied." +msgstr "Öffentlicher Zugriff verweigert." + +#: mod/_search.php:99 mod/search.php:99 include/nav.php:119 +#: include/text.php:977 +msgid "Search" +msgstr "Suche" + +#: mod/_search.php:180 mod/_search.php:206 mod/community.php:62 +#: mod/community.php:71 mod/search.php:174 +msgid "No results." +msgstr "Keine Ergebnisse." + +#: mod/tagger.php:95 include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Beitrag nicht verfügbar." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Beitrag konnte nicht gefunden werden." + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Konto freigegeben." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s wurde zurückgezogen" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Bitte melde Dich an." + +#: mod/uimport.php:50 mod/register.php:188 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." + +#: mod/uimport.php:64 mod/register.php:283 +msgid "Import" +msgstr "Import" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Account umziehen" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." + +#: mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist." + +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren" + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "Account Datei" + +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Sichtbar für:" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Kein Profil" + +#: mod/update_profile.php:41 mod/update_network.php:25 +#: mod/update_display.php:22 mod/update_community.php:18 +#: mod/update_notes.php:37 msgid "[Embedded content - reload page to view]" msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" -#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120 -#: mod/crepair.php:134 +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Quelle (bbcode) Text:" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Originaltext:" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (reines HTML): " + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Originaltext (Diaspora Format): " + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/like.php:168 include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s nicht" + +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Beitrag erfolgreich veröffentlicht." + +#: mod/localtime.php:12 include/bb2diaspora.php:139 include/event.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y\\, H:i" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Zeitumrechnung" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann." + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC Zeit: %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Aktuelle Zeitzone: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Umgerechnete lokale Zeit: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Bitte wähle Deine Zeitzone:" + +#: mod/filer.php:30 include/conversation.php:1005 +#: include/conversation.php:1023 +msgid "Save to Folder:" +msgstr "In diesem Ordner speichern:" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- auswählen -" + +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:978 +msgid "Save" +msgstr "Speichern" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Anstupsen" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Empfänger" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Was willst Du mit dem Empfänger machen:" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt %2$s %3$s" + +#: mod/uexport.php:77 +msgid "Export account" +msgstr "Account exportieren" + +#: mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." + +#: mod/uexport.php:78 +msgid "Export all" +msgstr "Alles exportieren" + +#: mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)." + +#: mod/uexport.php:85 mod/settings.php:77 +msgid "Export personal data" +msgstr "Persönliche Daten exportieren" + +#: mod/apps.php:7 index.php:225 +msgid "You must be logged in to use addons. " +msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Anwendungen" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Keine Applikationen installiert." + +#: mod/navigation.php:20 include/nav.php:34 +msgid "Nothing new here" +msgstr "Keine Neuigkeiten" + +#: mod/navigation.php:24 include/nav.php:38 +msgid "Clear notifications" +msgstr "Bereinige Benachrichtigungen" + +#: mod/tagrm.php:11 mod/tagrm.php:94 mod/fbrowser.php:81 mod/fbrowser.php:116 +#: mod/message.php:212 mod/contacts.php:416 mod/dfrn_request.php:859 +#: mod/editpost.php:148 mod/follow.php:68 mod/photos.php:225 +#: mod/photos.php:314 mod/suggest.php:32 mod/videos.php:121 +#: mod/settings.php:622 mod/settings.php:648 include/conversation.php:1093 +#: include/items.php:4857 +msgid "Cancel" +msgstr "Abbrechen" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag entfernt" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Gegenstands-Tag entfernen" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Wähle ein Tag zum Entfernen aus: " + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Entfernen" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." + +#: mod/delegate.php:130 include/nav.php:171 +msgid "Delegate Page Management" +msgstr "Delegiere das Management für die Seite" + +#: mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!" + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Vorhandene Seitenmanager" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Vorhandene Bevollmächtigte für die Seite" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Potentielle Bevollmächtigte" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Hinzufügen" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Keine Einträge." + +#: mod/nogroup.php:40 mod/viewcontacts.php:64 mod/contacts.php:573 +#: mod/contacts.php:797 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besuche %ss Profil [%s]" + +#: mod/nogroup.php:41 mod/contacts.php:798 +msgid "Edit contact" +msgstr "Kontakt bearbeiten" + +#: mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Kontakte, die keiner Gruppe zugewiesen sind" + +#: mod/fbrowser.php:113 +msgid "Files" +msgstr "Dateien" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "System zur Wartung abgeschaltet" + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Konto löschen" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Bitte gib Dein Passwort zur Verifikation ein:" + +#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/crepair.php:134 +#: mod/dfrn_confirm.php:120 msgid "Contact not found." msgstr "Kontakt nicht gefunden." @@ -315,242 +1519,233 @@ msgstr "Kontakte vorschlagen" msgid "Suggest a friend for %s" msgstr "Schlage %s einen Kontakt vor" -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limit für Einladungen erreicht." -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung." - -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden." - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." - -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#: mod/invite.php:49 #, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden" -msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden" +msgid "%s : Not a valid email address." +msgstr "%s: Keine gültige Email Adresse." -#: mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Kontaktanfrage abgeschlossen." +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein" -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Nicht behebbarer Protokollfehler." +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite." -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profil nicht verfügbar." - -#: mod/dfrn_request.php:267 +#: mod/invite.php:89 #, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." +msgid "%s : Message delivery failed." +msgstr "%s: Zustellung der Nachricht fehlgeschlagen." -#: mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Maßnahmen zum Spamschutz wurden ergriffen." - -#: mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen." - -#: mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Ungültiger Locator" - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Ungültige E-Mail-Adresse." - -#: mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen." - -#: mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Konnte Deinen Namen an der angegebenen Stelle nicht finden." - -#: mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Du hast Dich hier bereits vorgestellt." - -#: mod/dfrn_request.php:480 +#: mod/invite.php:93 #, php-format -msgid "Apparently you are already friends with %s." -msgstr "Es scheint so, als ob Du bereits mit %s befreundet bist." +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." -#: mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Ungültige Profil-URL." +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren Einladungen" -#: mod/dfrn_request.php:507 include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Nicht erlaubte Profil-URL." - -#: mod/dfrn_request.php:576 mod/contacts.php:194 -msgid "Failed to update contact record." -msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." - -#: mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Deine Kontaktanfrage wurde gesendet." - -#: mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen." - -#: mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." - -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "Bestätigen" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "Verberge diesen Kontakt" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "Willkommen zurück %s." - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." - -#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4236 -msgid "[Name Withheld]" -msgstr "[Name unterdrückt]" - -#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187 -#: mod/search.php:89 mod/display.php:223 mod/community.php:18 -#: mod/viewcontacts.php:19 mod/directory.php:35 -msgid "Public access denied." -msgstr "Öffentlicher Zugriff verweigert." - -#: mod/dfrn_request.php:819 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:" - -#: mod/dfrn_request.php:839 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Wenn Du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." - -#: mod/dfrn_request.php:842 -msgid "Friend/Connection Request" -msgstr "Freundschafts-/Kontaktanfrage" - -#: mod/dfrn_request.php:843 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: mod/dfrn_request.php:844 mod/follow.php:56 -msgid "Please answer the following:" -msgstr "Bitte beantworte folgendes:" - -#: mod/dfrn_request.php:845 mod/follow.php:57 -#, php-format -msgid "Does %s know you?" -msgstr "Kennt %s Dich?" - -#: mod/dfrn_request.php:845 mod/api.php:106 mod/register.php:234 -#: mod/follow.php:57 mod/settings.php:1035 mod/settings.php:1041 -#: mod/settings.php:1049 mod/settings.php:1053 mod/settings.php:1058 -#: mod/settings.php:1064 mod/settings.php:1070 mod/settings.php:1076 -#: mod/settings.php:1104 mod/settings.php:1105 mod/settings.php:1106 -#: mod/settings.php:1107 mod/settings.php:1108 mod/profiles.php:657 -#: mod/profiles.php:661 -msgid "No" -msgstr "Nein" - -#: mod/dfrn_request.php:845 mod/message.php:209 mod/api.php:105 -#: mod/register.php:233 mod/contacts.php:413 mod/follow.php:57 -#: mod/settings.php:1035 mod/settings.php:1041 mod/settings.php:1049 -#: mod/settings.php:1053 mod/settings.php:1058 mod/settings.php:1064 -#: mod/settings.php:1070 mod/settings.php:1076 mod/settings.php:1104 -#: mod/settings.php:1105 mod/settings.php:1106 mod/settings.php:1107 -#: mod/settings.php:1108 mod/profiles.php:657 mod/profiles.php:660 -#: mod/suggest.php:29 include/items.php:4854 -msgid "Yes" -msgstr "Ja" - -#: mod/dfrn_request.php:849 mod/follow.php:58 -msgid "Add a personal note:" -msgstr "Eine persönliche Notiz beifügen:" - -#: mod/dfrn_request.php:851 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:852 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: mod/dfrn_request.php:853 mod/settings.php:761 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/dfrn_request.php:854 +#: mod/invite.php:120 #, php-format msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste." +"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." +msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke." -#: mod/dfrn_request.php:855 mod/follow.php:64 -msgid "Your Identity Address:" -msgstr "Adresse Deines Profils:" +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website." -#: mod/dfrn_request.php:858 mod/follow.php:67 -msgid "Submit Request" -msgstr "Anfrage abschicken" +#: mod/invite.php:123 +#, php-format +msgid "" +"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." +msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst." -#: mod/dfrn_request.php:859 mod/message.php:212 mod/editpost.php:148 -#: mod/fbrowser.php:81 mod/fbrowser.php:116 mod/photos.php:225 -#: mod/photos.php:314 mod/contacts.php:416 mod/videos.php:121 -#: mod/follow.php:68 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:622 -#: mod/settings.php:648 mod/suggest.php:32 include/items.php:4857 -#: include/conversation.php:1093 -msgid "Cancel" -msgstr "Abbrechen" +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen." -#: mod/files.php:156 mod/videos.php:373 include/text.php:1429 -msgid "View Video" -msgstr "Video ansehen" +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Einladungen senden" -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" -#: mod/profile.php:155 mod/display.php:343 -msgid "Access to this profile has been restricted." -msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." +#: mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen." -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Tipps für neue Nutzer" +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Du benötigst den folgenden Einladungscode: $invite_code" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:" + +#: mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" + +#: mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Verwalte Identitäten und/oder Seiten" + +#: mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast." + +#: mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Wähle eine Identität zum Verwalten aus: " + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen zu %s" + +#: mod/message.php:9 include/nav.php:165 +msgid "New Message" +msgstr "Neue Nachricht" + +#: mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Konnte die Kontaktinformationen nicht finden." + +#: mod/message.php:182 include/nav.php:162 +msgid "Messages" +msgstr "Nachrichten" + +#: mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Möchtest Du wirklich diese Nachricht löschen?" + +#: mod/message.php:227 +msgid "Message deleted." +msgstr "Nachricht gelöscht." + +#: mod/message.php:258 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." + +#: mod/message.php:371 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "'Unbekannter Absender - %s" + +#: mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Du und %s" + +#: mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s und Du" + +#: mod/message.php:405 mod/message.php:546 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - g:i A" + +#: mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d Nachricht" +msgstr[1] "%d Nachrichten" + +#: mod/message.php:450 +msgid "Message not available." +msgstr "Nachricht nicht verfügbar." + +#: mod/message.php:520 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." + +#: mod/message.php:552 +msgid "Send Reply" +msgstr "Antwort senden" + +#: mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "Keine Kontakte." + +#: mod/viewcontacts.php:78 include/text.php:899 +msgid "View Contacts" +msgstr "Kontakte anzeigen" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet." + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Anmeldung fehlgeschlagen." + +#: mod/community.php:23 +msgid "Not available." +msgstr "Nicht verfügbar." + +#: mod/help.php:31 +msgid "Help:" +msgstr "Hilfe:" + +#: mod/help.php:36 include/nav.php:114 +msgid "Help" +msgstr "Hilfe" + +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: mod/help.php:45 index.php:272 +msgid "Page not found." +msgstr "Seite nicht gefunden." #: mod/notifications.php:26 msgid "Invalid request identifier." @@ -579,11 +1774,6 @@ msgstr "Netzwerk" msgid "Personal" msgstr "Persönlich" -#: mod/notifications.php:93 view/theme/diabook/theme.php:123 -#: include/nav.php:105 include/nav.php:148 -msgid "Home" -msgstr "Pinnwand" - #: mod/notifications.php:98 include/nav.php:153 msgid "Introductions" msgstr "Kontaktanfragen" @@ -740,93 +1930,6 @@ msgstr "Keine weiteren Pinnwand-Benachrichtigungen" msgid "Home Notifications" msgstr "Pinnwand Benachrichtigungen" -#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:471 include/text.php:2000 -#: include/diaspora.php:2106 include/conversation.php:126 -#: include/conversation.php:253 -msgid "photo" -msgstr "Foto" - -#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 -#: include/diaspora.php:2106 include/conversation.php:121 -#: include/conversation.php:130 include/conversation.php:248 -#: include/conversation.php:257 -msgid "status" -msgstr "Status" - -#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2122 -#: include/conversation.php:137 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s mag %2$ss %3$s" - -#: mod/like.php:168 include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s mag %2$ss %3$s nicht" - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - -#: mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet." - -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." -msgstr "Anmeldung fehlgeschlagen." - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Quelle (bbcode) Text:" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Originaltext:" - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (reines HTML): " - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Originaltext (Diaspora Format): " - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - #: mod/admin.php:57 msgid "Theme settings updated." msgstr "Themeneinstellungen aktualisiert." @@ -879,12 +1982,6 @@ msgstr "Diagnose" msgid "User registrations waiting for confirmation" msgstr "Nutzeranmeldungen die auf Bestätigung warten" -#: mod/admin.php:169 mod/admin.php:1062 mod/admin.php:1275 mod/notice.php:15 -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 include/items.php:4813 -msgid "Item not found." -msgstr "Beitrag nicht gefunden." - #: mod/admin.php:193 mod/admin.php:961 msgid "Normal Account" msgstr "Normales Konto" @@ -1016,11 +2113,11 @@ msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden ( #: mod/admin.php:628 mod/admin.php:1166 mod/admin.php:1368 mod/admin.php:1455 #: mod/settings.php:621 mod/settings.php:731 mod/settings.php:754 -#: mod/settings.php:823 mod/settings.php:905 mod/settings.php:1136 +#: mod/settings.php:823 mod/settings.php:905 mod/settings.php:1137 msgid "Save Settings" msgstr "Einstellungen speichern" -#: mod/admin.php:629 mod/register.php:255 +#: mod/admin.php:629 mod/register.php:260 msgid "Registration" msgstr "Registrierung" @@ -1674,7 +2771,7 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s." -#: mod/admin.php:850 include/user.php:413 +#: mod/admin.php:850 include/user.php:421 #, php-format msgid "Registration details for %s" msgstr "Details der Registration von %s" @@ -1729,7 +2826,7 @@ msgid "Request date" msgstr "Anfragedatum" #: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1039 -#: mod/settings.php:623 mod/settings.php:649 mod/crepair.php:170 +#: mod/crepair.php:170 mod/settings.php:623 mod/settings.php:649 msgid "Name" msgstr "Name" @@ -1838,12 +2935,6 @@ msgstr "Einschalten" msgid "Toggle" msgstr "Umschalten" -#: mod/admin.php:1114 mod/admin.php:1335 mod/newmember.php:22 -#: mod/settings.php:90 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:648 include/nav.php:173 -msgid "Settings" -msgstr "Einstellungen" - #: mod/admin.php:1121 mod/admin.php:1344 msgid "Author: " msgstr "Autor:" @@ -1918,979 +3009,22 @@ msgstr "FTP Nutzername" msgid "FTP Password" msgstr "FTP Passwort" -#: mod/message.php:9 include/nav.php:165 -msgid "New Message" -msgstr "Neue Nachricht" - -#: mod/message.php:63 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Kein Empfänger gewählt." - -#: mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Konnte die Kontaktinformationen nicht finden." - -#: mod/message.php:70 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Nachricht konnte nicht gesendet werden." - -#: mod/message.php:73 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Konnte Nachrichten nicht abrufen." - -#: mod/message.php:76 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Nachricht gesendet." - -#: mod/message.php:182 include/nav.php:162 -msgid "Messages" -msgstr "Nachrichten" - -#: mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Möchtest Du wirklich diese Nachricht löschen?" - -#: mod/message.php:227 -msgid "Message deleted." -msgstr "Nachricht gelöscht." - -#: mod/message.php:258 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: mod/message.php:283 mod/message.php:291 mod/message.php:466 -#: mod/message.php:474 mod/wallmessage.php:127 mod/wallmessage.php:135 -#: include/conversation.php:1001 include/conversation.php:1019 -msgid "Please enter a link URL:" -msgstr "Bitte gib die URL des Links ein:" - -#: mod/message.php:319 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: mod/message.php:320 mod/message.php:553 mod/wallmessage.php:144 -msgid "To:" -msgstr "An:" - -#: mod/message.php:325 mod/message.php:555 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Betreff:" - -#: mod/message.php:329 mod/message.php:558 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: mod/message.php:332 mod/message.php:562 mod/editpost.php:110 -#: mod/wallmessage.php:154 include/conversation.php:1056 -msgid "Upload photo" -msgstr "Foto hochladen" - -#: mod/message.php:333 mod/message.php:563 mod/editpost.php:114 -#: mod/wallmessage.php:155 include/conversation.php:1060 -msgid "Insert web link" -msgstr "Einen Link einfügen" - -#: mod/message.php:371 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: mod/message.php:378 +#: mod/allfriends.php:37 #, php-format -msgid "Unknown sender - %s" -msgstr "'Unbekannter Absender - %s" +msgid "Friends of %s" +msgstr "Freunde von %s" -#: mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Du und %s" +#: mod/allfriends.php:44 +msgid "No friends to display." +msgstr "Keine Freunde zum Anzeigen." -#: mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s und Du" +#: mod/common.php:45 +msgid "Common Friends" +msgstr "Gemeinsame Freunde" -#: mod/message.php:405 mod/message.php:546 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - g:i A" - -#: mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d Nachricht" -msgstr[1] "%d Nachrichten" - -#: mod/message.php:450 -msgid "Message not available." -msgstr "Nachricht nicht verfügbar." - -#: mod/message.php:520 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." - -#: mod/message.php:552 -msgid "Send Reply" -msgstr "Antwort senden" - -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Beitrag nicht gefunden" - -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Beitrag bearbeiten" - -#: mod/editpost.php:109 mod/filer.php:31 mod/notes.php:59 include/text.php:978 -msgid "Save" -msgstr "Speichern" - -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "Bild hochladen" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "Datei anhängen" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "Datei anhängen" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "Weblink" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "Video-Adresse einfügen" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "Video-Link" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "Audio-Adresse einfügen" - -#: mod/editpost.php:119 include/conversation.php:1065 -msgid "audio link" -msgstr "Audio-Link" - -#: mod/editpost.php:120 include/conversation.php:1066 -msgid "Set your location" -msgstr "Deinen Standort festlegen" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "Ort setzen" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "Browser-Standort leeren" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "Ort löschen" - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "Berechtigungseinstellungen" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "Cc: E-Mail-Addressen" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "Öffentlicher Beitrag" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "Titel setzen" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (kommasepariert)" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Z.B.: bob@example.com, mary@example.com" - -#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:626 -msgid "Profile not found." -msgstr "Profil nicht gefunden." - -#: mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Antwort der Gegenstelle unverständlich." - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Unerwartete Antwort der Gegenstelle: " - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Bestätigung erfolgreich abgeschlossen." - -#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Gegenstelle meldet: " - -#: mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." - -#: mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "Konnte das Bild des Kontakts nicht speichern." - -#: mod/dfrn_confirm.php:487 include/diaspora.php:622 -#: include/conversation.php:172 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s ist nun mit %2$s befreundet" - -#: mod/dfrn_confirm.php:572 -#, php-format -msgid "No user record found for '%s' " -msgstr "Für '%s' wurde kein Nutzer gefunden" - -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." -msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." - -#: mod/dfrn_confirm.php:593 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden." - -#: mod/dfrn_confirm.php:614 -msgid "Contact record was not found for you on our site." -msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." - -#: mod/dfrn_confirm.php:628 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server." - -#: mod/dfrn_confirm.php:648 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." - -#: mod/dfrn_confirm.php:659 -msgid "Unable to set your contact credentials on our system." -msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." - -#: mod/dfrn_confirm.php:726 -msgid "Unable to update your contact profile details on our system" -msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s ist %2$s beigetreten" - -#: mod/events.php:71 mod/events.php:73 -msgid "Event can not end before it has started." -msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." - -#: mod/events.php:80 mod/events.php:82 -msgid "Event title and start time are required." -msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." - -#: mod/events.php:317 -msgid "l, F j" -msgstr "l, F j" - -#: mod/events.php:339 -msgid "Edit event" -msgstr "Veranstaltung bearbeiten" - -#: mod/events.php:361 include/text.php:1679 include/text.php:1689 -msgid "link to source" -msgstr "Link zum Originalbeitrag" - -#: mod/events.php:396 view/theme/diabook/theme.php:127 -#: include/identity.php:663 include/nav.php:80 -msgid "Events" -msgstr "Veranstaltungen" - -#: mod/events.php:397 -msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" - -#: mod/events.php:398 -msgid "Previous" -msgstr "Vorherige" - -#: mod/events.php:399 mod/install.php:209 -msgid "Next" -msgstr "Nächste" - -#: mod/events.php:491 -msgid "Event details" -msgstr "Veranstaltungsdetails" - -#: mod/events.php:492 -msgid "Starting date and Title are required." -msgstr "Anfangszeitpunkt und Titel werden benötigt" - -#: mod/events.php:493 -msgid "Event Starts:" -msgstr "Veranstaltungsbeginn:" - -#: mod/events.php:493 mod/events.php:505 -msgid "Required" -msgstr "Benötigt" - -#: mod/events.php:495 -msgid "Finish date/time is not known or not relevant" -msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" - -#: mod/events.php:497 -msgid "Event Finishes:" -msgstr "Veranstaltungsende:" - -#: mod/events.php:499 -msgid "Adjust for viewer timezone" -msgstr "An Zeitzone des Betrachters anpassen" - -#: mod/events.php:501 -msgid "Description:" -msgstr "Beschreibung" - -#: mod/events.php:503 mod/directory.php:152 include/event.php:42 -#: include/identity.php:268 include/bb2diaspora.php:161 -msgid "Location:" -msgstr "Ort:" - -#: mod/events.php:505 -msgid "Title:" -msgstr "Titel:" - -#: mod/events.php:507 -msgid "Share this event" -msgstr "Veranstaltung teilen" - -#: mod/fbrowser.php:25 view/theme/diabook/theme.php:126 -#: include/identity.php:646 include/nav.php:78 -msgid "Photos" -msgstr "Bilder" - -#: mod/fbrowser.php:113 -msgid "Files" -msgstr "Dateien" - -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen zu %s" - -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." - -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Sichtbar für:" - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen." - -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Konnte Deinen Heimatort nicht bestimmen." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Kein Empfänger." - -#: mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." - -#: mod/nogroup.php:40 mod/contacts.php:573 mod/contacts.php:797 -#: mod/viewcontacts.php:64 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besuche %ss Profil [%s]" - -#: mod/nogroup.php:41 mod/contacts.php:798 -msgid "Edit contact" -msgstr "Kontakt bearbeiten" - -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakte, die keiner Gruppe zugewiesen sind" - -#: mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Dies ist Friendica, Version" - -#: mod/friendica.php:60 -msgid "running at web location" -msgstr "die unter folgender Webadresse zu finden ist" - -#: mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." - -#: mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" - -#: mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com" - -#: mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Erweiterungen/Apps" - -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Keine Plugins/Erweiterungen/Apps installiert" - -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Konto löschen" - -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." - -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Bitte gib Dein Passwort zur Verifikation ein:" - -#: mod/wall_upload.php:122 mod/photos.php:789 mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Bildgröße überschreitet das Limit von %s" - -#: mod/wall_upload.php:144 mod/photos.php:829 mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Konnte das Bild nicht bearbeiten." - -#: mod/wall_upload.php:169 mod/wall_upload.php:178 mod/wall_upload.php:185 -#: mod/item.php:486 include/message.php:144 include/Photo.php:951 -#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 -msgid "Wall Photos" -msgstr "Pinnwand-Bilder" - -#: mod/wall_upload.php:172 mod/photos.php:856 mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Hochladen des Bildes gescheitert." - -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Verbindung der Applikation autorisieren" - -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:" - -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Bitte melde Dich an um fortzufahren." - -#: mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?" - -#: mod/tagger.php:95 include/conversation.php:265 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" - -#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 -#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 -#: mod/photos.php:1791 view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Kontaktbilder" - -#: mod/photos.php:84 include/identity.php:649 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" - -#: mod/photos.php:102 mod/settings.php:34 -msgid "everybody" -msgstr "jeder" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "Kontaktinformationen nicht verfügbar" - -#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207 -#: mod/photos.php:1230 mod/profile_photo.php:74 mod/profile_photo.php:81 -#: mod/profile_photo.php:88 mod/profile_photo.php:204 -#: mod/profile_photo.php:296 mod/profile_photo.php:305 -#: view/theme/diabook/theme.php:500 include/user.php:335 include/user.php:342 -#: include/user.php:349 -msgid "Profile Photos" -msgstr "Profilbilder" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "Album löschen" - -#: mod/photos.php:220 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?" - -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "Möchtest Du wirklich dieses Foto löschen?" - -#: mod/photos.php:684 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s wurde von %3$s in %2$s getaggt" - -#: mod/photos.php:684 -msgid "a photo" -msgstr "einem Foto" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "Keine Bilder ausgewählt" - -#: mod/photos.php:1053 mod/videos.php:298 -msgid "Access to this item is restricted." -msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." - -#: mod/photos.php:1149 -msgid "Upload Photos" -msgstr "Bilder hochladen" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "Name des neuen Albums: " - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "oder existierender Albumname: " - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "Berechtigungen" - -#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1171 -msgid "Show to Groups" -msgstr "Zeige den Gruppen" - -#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1172 -msgid "Show to Contacts" -msgstr "Zeige den Kontakten" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "Privates Foto" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "Öffentliches Foto" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "Zeige neueste zuerst" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "Zeige älteste zuerst" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "Foto betrachten" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." - -#: mod/photos.php:1316 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Fotos ansehen" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Als Profilbild verwenden" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Betrachte Originalgröße" - -#: mod/photos.php:1477 -msgid "Tags: " -msgstr "Tags: " - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "[Tag entfernen]" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "Name des neuen Albums" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "Bildunterschrift" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "Tag hinzufügen" - -#: mod/photos.php:1522 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "Nicht rotieren" - -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "Drehen US (rechts)" - -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "Drehen EUS (links)" - -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "Privates Foto" - -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "Öffentliches Foto" - -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "Teilen" - -#: mod/photos.php:1827 mod/videos.php:380 -msgid "View Album" -msgstr "Album betrachten" - -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Kein Profil" - -#: mod/register.php:90 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." - -#: mod/register.php:96 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern." - -#: mod/register.php:105 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: mod/register.php:148 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." - -#: mod/register.php:186 mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." - -#: mod/register.php:214 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst." - -#: mod/register.php:215 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." - -#: mod/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Deine OpenID (optional): " - -#: mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?" - -#: mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." - -#: mod/register.php:252 -msgid "Your invitation ID: " -msgstr "ID Deiner Einladung: " - -#: mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Vollständiger Name (z.B. Max Mustermann): " - -#: mod/register.php:264 -msgid "Your Email Address: " -msgstr "Deine E-Mail-Adresse: " - -#: mod/register.php:265 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@$sitename' sein." - -#: mod/register.php:266 -msgid "Choose a nickname: " -msgstr "Spitznamen wählen: " - -#: mod/register.php:269 boot.php:1238 include/nav.php:109 -msgid "Register" -msgstr "Registrieren" - -#: mod/register.php:275 mod/uimport.php:64 -msgid "Import" -msgstr "Import" - -#: mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "Importiere Dein Profil auf diese Friendica Instanz" - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." - -#: mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast." - -#: mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s" - -#: mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." - -#: mod/lostpass.php:109 boot.php:1277 -msgid "Password Reset" -msgstr "Passwort zurücksetzen" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort - und dann" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "hier klicken, um Dich anzumelden" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast." - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)." - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden." - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Hast Du Dein Passwort vergessen?" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet." - -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Spitzname oder E-Mail:" - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Zurücksetzen" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "System zur Wartung abgeschaltet" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Beitrag nicht verfügbar." - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Beitrag konnte nicht gefunden werden." - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Anwendungen" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Keine Applikationen installiert." - -#: mod/help.php:31 -msgid "Help:" -msgstr "Hilfe:" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "Hilfe" +#: mod/common.php:82 +msgid "No contacts in common." +msgstr "Keine gemeinsamen Kontakte." #: mod/contacts.php:114 #, php-format @@ -2911,6 +3045,10 @@ msgstr "Konnte das ausgewählte Profil nicht finden." msgid "Contact updated." msgstr "Kontakt aktualisiert." +#: mod/contacts.php:194 mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." + #: mod/contacts.php:361 msgid "Contact has been blocked" msgstr "Kontakt wurde blockiert" @@ -3184,10 +3322,6 @@ msgstr "Verborgen" msgid "Only show hidden contacts" msgstr "Nur verborgene Kontakte anzeigen" -#: mod/contacts.php:745 view/theme/diabook/theme.php:125 include/nav.php:178 -msgid "Contacts" -msgstr "Kontakte" - #: mod/contacts.php:749 msgid "Search your contacts" msgstr "Suche in deinen Kontakten" @@ -3216,1062 +3350,420 @@ msgstr "ist ein Fan von dir" msgid "you are a fan of" msgstr "Du bist Fan von" -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" -msgstr "Möchtest Du dieses Video wirklich löschen?" +#: mod/content.php:119 mod/network.php:526 +msgid "No such group" +msgstr "Es gibt keine solche Gruppe" -#: mod/videos.php:118 -msgid "Delete Video" -msgstr "Video Löschen" +#: mod/content.php:130 mod/network.php:543 +msgid "Group is empty" +msgstr "Gruppe ist leer" -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "Keine Videos ausgewählt" - -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "Neueste Videos" - -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "Neues Video hochladen" - -#: mod/common.php:45 -msgid "Common Friends" -msgstr "Gemeinsame Freunde" - -#: mod/common.php:82 -msgid "No contacts in common." -msgstr "Keine gemeinsamen Kontakte." - -#: mod/follow.php:24 -msgid "You already added this contact." -msgstr "Du hast den Kontakt bereits hinzugefügt." - -#: mod/follow.php:106 -msgid "Contact added" -msgstr "Kontakt hinzugefügt" - -#: mod/bookmarklet.php:12 boot.php:1263 include/nav.php:92 -msgid "Login" -msgstr "Anmeldung" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "Der Beitrag wurde angelegt" - -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Account umziehen" - -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." - -#: mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist." - -#: mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren" - -#: mod/uimport.php:70 -msgid "Account file" -msgstr "Account Datei" - -#: mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" - -#: mod/subthread.php:103 +#: mod/content.php:135 mod/network.php:554 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt %2$s %3$s" +msgid "Group: %s" +msgstr "Gruppe: %s" -#: mod/allfriends.php:37 +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" +msgstr "Im Zusammenhang betrachten" + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "Einstellungen zum Kontakt angewandt." + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "Konnte den Kontakt nicht aktualisieren." + +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "Kontakteinstellungen reparieren" + +#: mod/crepair.php:142 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." + +#: mod/crepair.php:143 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." + +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "Zurück zum Kontakteditor" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "No mirroring" +msgstr "Kein Spiegeln" + +#: mod/crepair.php:160 +msgid "Mirror as forwarded posting" +msgstr "Spiegeln als weitergeleitete Beiträge" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "Mirror as my own posting" +msgstr "Spiegeln als meine eigenen Beiträge" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "Kontaktdaten neu laden" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "Konto-Spitzname" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - überschreibt Name/Spitzname" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "Konto-URL" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "URL für Freundschaftsanfragen" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "URL für Bestätigungen von Freundschaftsanfragen" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "URL-Endpunkt für Benachrichtigungen" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "Pull/Feed-URL" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "Neues Foto von dieser URL" + +#: mod/crepair.php:179 +msgid "Remote Self" +msgstr "Entfernte Konten" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "Spiegle Beiträge dieses Kontakts" + +#: mod/crepair.php:181 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden." + +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:626 +msgid "Profile not found." +msgstr "Profil nicht gefunden." + +#: mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Antwort der Gegenstelle unverständlich." + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Unerwartete Antwort der Gegenstelle: " + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Bestätigung erfolgreich abgeschlossen." + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Gegenstelle meldet: " + +#: mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "Konnte das Bild des Kontakts nicht speichern." + +#: mod/dfrn_confirm.php:487 include/conversation.php:172 +#: include/diaspora.php:622 #, php-format -msgid "Friends of %s" -msgstr "Freunde von %s" +msgid "%1$s is now friends with %2$s" +msgstr "%1$s ist nun mit %2$s befreundet" -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Keine Freunde zum Anzeigen." - -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag entfernt" - -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Gegenstands-Tag entfernen" - -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Wähle ein Tag zum Entfernen aus: " - -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Entfernen" - -#: mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Willkommen bei Friendica" - -#: mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Checkliste für neue Mitglieder" - -#: mod/newmember.php:12 -msgid "" -"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." -msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden." - -#: mod/newmember.php:14 -msgid "Getting Started" -msgstr "Einstieg" - -#: mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Friendica Rundgang" - -#: mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst." - -#: mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Gehe zu deinen Einstellungen" - -#: mod/newmember.php:26 -msgid "" -"On your Settings 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." -msgstr "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen." - -#: mod/newmember.php:28 -msgid "" -"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." -msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können." - -#: mod/newmember.php:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 -#: include/identity.php:529 include/identity.php:610 include/identity.php:639 -#: include/nav.php:77 -msgid "Profile" -msgstr "Profil" - -#: mod/newmember.php:36 mod/profiles.php:695 mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Profilbild hochladen" - -#: mod/newmember.php:36 -msgid "" -"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." -msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust." - -#: mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editiere dein Profil" - -#: mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils." - -#: mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Profil Schlüsselbegriffe" - -#: mod/newmember.php:40 -msgid "" -"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." -msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen." - -#: mod/newmember.php:44 -msgid "Connecting" -msgstr "Verbindungen knüpfen" - -#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst." - -#: mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten." - -#: mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Emails Importieren" - -#: mod/newmember.php:56 -msgid "" -"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" -msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst." - -#: mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Gehe zu deiner Kontakt-Seite" - -#: mod/newmember.php:58 -msgid "" -"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 Add New Contact dialog." -msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein." - -#: mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz" - -#: mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst." - -#: mod/newmember.php:62 -msgid "Finding New People" -msgstr "Neue Leute kennenlernen" - -#: mod/newmember.php:62 -msgid "" -"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." -msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." - -#: mod/newmember.php:66 include/group.php:270 -msgid "Groups" -msgstr "Gruppen" - -#: mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Gruppiere deine Kontakte" - -#: mod/newmember.php:70 -msgid "" -"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." -msgstr "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren." - -#: mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Warum sind meine Beiträge nicht öffentlich?" - -#: mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch." - -#: mod/newmember.php:78 -msgid "Getting Help" -msgstr "Hilfe bekommen" - -#: mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Zum Hilfe Abschnitt gehen" - -#: mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten." - -#: mod/search.php:21 mod/network.php:187 -msgid "Remove term" -msgstr "Begriff entfernen" - -#: mod/search.php:30 mod/network.php:196 include/features.php:42 -msgid "Saved Searches" -msgstr "Gespeicherte Suchen" - -#: mod/search.php:99 include/text.php:977 include/nav.php:119 -msgid "Search" -msgstr "Suche" - -#: mod/search.php:174 mod/community.php:62 mod/community.php:71 -msgid "No results." -msgstr "Keine Ergebnisse." - -#: mod/search.php:180 +#: mod/dfrn_confirm.php:572 #, php-format -msgid "Items tagged with: %s" -msgstr "Beiträge markiert mit: %s" +msgid "No user record found for '%s' " +msgstr "Für '%s' wurde kein Nutzer gefunden" -#: mod/search.php:182 +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." + +#: mod/dfrn_confirm.php:593 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden." + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." + +#: mod/dfrn_confirm.php:628 #, php-format -msgid "Search results for: %s" -msgstr "Suchergebnisse für: %s" +msgid "Site public key not available in contact record for URL %s." +msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server." -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limit für Einladungen erreicht." +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." -#: mod/invite.php:49 +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" + +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4236 +msgid "[Name Withheld]" +msgstr "[Name unterdrückt]" + +#: mod/dfrn_confirm.php:798 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Keine gültige Email Adresse." +msgid "%1$s has joined %2$s" +msgstr "%1$s ist %2$s beigetreten" -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein" +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite." +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung." -#: mod/invite.php:89 +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden." + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 #, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Zustellung der Nachricht fehlgeschlagen." +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden" +msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden" -#: mod/invite.php:93 +#: mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Kontaktanfrage abgeschlossen." + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Nicht behebbarer Protokollfehler." + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profil nicht verfügbar." + +#: mod/dfrn_request.php:267 #, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." +msgid "%s has received too many connection requests today." +msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." -#: mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren Einladungen" +#: mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Maßnahmen zum Spamschutz wurden ergriffen." -#: mod/invite.php:120 +#: mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen." + +#: mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Ungültiger Locator" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Ungültige E-Mail-Adresse." + +#: mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen." + +#: mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Konnte Deinen Namen an der angegebenen Stelle nicht finden." + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Du hast Dich hier bereits vorgestellt." + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Es scheint so, als ob Du bereits mit %s befreundet bist." + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Ungültige Profil-URL." + +#: mod/dfrn_request.php:507 include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Nicht erlaubte Profil-URL." + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Deine Kontaktanfrage wurde gesendet." + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen." + +#: mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." + +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Bestätigen" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "Verberge diesen Kontakt" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "Willkommen zurück %s." + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:" + +#: mod/dfrn_request.php:839 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "Wenn Du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." + +#: mod/dfrn_request.php:842 +msgid "Friend/Connection Request" +msgstr "Freundschafts-/Kontaktanfrage" + +#: mod/dfrn_request.php:843 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:844 mod/follow.php:56 +msgid "Please answer the following:" +msgstr "Bitte beantworte folgendes:" + +#: mod/dfrn_request.php:845 mod/follow.php:57 +#, php-format +msgid "Does %s know you?" +msgstr "Kennt %s Dich?" + +#: mod/dfrn_request.php:849 mod/follow.php:58 +msgid "Add a personal note:" +msgstr "Eine persönliche Notiz beifügen:" + +#: mod/dfrn_request.php:851 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:852 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: mod/dfrn_request.php:853 mod/settings.php:761 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/dfrn_request.php:854 #, php-format msgid "" -"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." -msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke." - -#: mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website." - -#: mod/invite.php:123 -#, php-format -msgid "" -"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." -msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst." - -#: mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen." - -#: mod/invite.php:132 -msgid "Send invitations" -msgstr "Einladungen senden" - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" - -#: mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen." - -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Du benötigst den folgenden Einladungscode: $invite_code" - -#: mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:" - -#: mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" - -#: mod/settings.php:46 -msgid "Additional features" -msgstr "Zusätzliche Features" - -#: mod/settings.php:51 -msgid "Display" -msgstr "Anzeige" - -#: mod/settings.php:57 mod/settings.php:805 -msgid "Social Networks" -msgstr "Soziale Netzwerke" - -#: mod/settings.php:67 include/nav.php:171 -msgid "Delegations" -msgstr "Delegationen" - -#: mod/settings.php:72 -msgid "Connected apps" -msgstr "Verbundene Programme" - -#: mod/settings.php:77 mod/uexport.php:85 -msgid "Export personal data" -msgstr "Persönliche Daten exportieren" - -#: mod/settings.php:82 -msgid "Remove account" -msgstr "Konto löschen" - -#: mod/settings.php:134 -msgid "Missing some important data!" -msgstr "Wichtige Daten fehlen!" - -#: mod/settings.php:245 -msgid "Failed to connect with email account using the settings provided." -msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich." - -#: mod/settings.php:250 -msgid "Email settings updated." -msgstr "E-Mail Einstellungen bearbeitet." - -#: mod/settings.php:265 -msgid "Features updated" -msgstr "Features aktualisiert" - -#: mod/settings.php:328 -msgid "Relocate message has been send to your contacts" -msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." - -#: mod/settings.php:342 -msgid "Passwords do not match. Password unchanged." -msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." - -#: mod/settings.php:347 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." - -#: mod/settings.php:355 -msgid "Wrong password." -msgstr "Falsches Passwort." - -#: mod/settings.php:366 -msgid "Password changed." -msgstr "Passwort geändert." - -#: mod/settings.php:368 -msgid "Password update failed. Please try again." -msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." - -#: mod/settings.php:435 -msgid " Please use a shorter name." -msgstr " Bitte verwende einen kürzeren Namen." - -#: mod/settings.php:437 -msgid " Name too short." -msgstr " Name ist zu kurz." - -#: mod/settings.php:446 -msgid "Wrong Password" -msgstr "Falsches Passwort" - -#: mod/settings.php:451 -msgid " Not valid email." -msgstr " Keine gültige E-Mail." - -#: mod/settings.php:457 -msgid " Cannot change to that email." -msgstr "Ändern der E-Mail nicht möglich. " - -#: mod/settings.php:513 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt." - -#: mod/settings.php:517 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte." - -#: mod/settings.php:547 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." - -#: mod/settings.php:620 mod/settings.php:646 mod/settings.php:682 -msgid "Add application" -msgstr "Programm hinzufügen" - -#: mod/settings.php:624 mod/settings.php:650 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: mod/settings.php:625 mod/settings.php:651 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: mod/settings.php:626 mod/settings.php:652 -msgid "Redirect" -msgstr "Umleiten" - -#: mod/settings.php:627 mod/settings.php:653 -msgid "Icon url" -msgstr "Icon URL" - -#: mod/settings.php:638 -msgid "You can't edit this application." -msgstr "Du kannst dieses Programm nicht bearbeiten." - -#: mod/settings.php:681 -msgid "Connected Apps" -msgstr "Verbundene Programme" - -#: mod/settings.php:685 -msgid "Client key starts with" -msgstr "Anwenderschlüssel beginnt mit" - -#: mod/settings.php:686 -msgid "No name" -msgstr "Kein Name" - -#: mod/settings.php:687 -msgid "Remove authorization" -msgstr "Autorisierung entziehen" - -#: mod/settings.php:699 -msgid "No Plugin settings configured" -msgstr "Keine Plugin-Einstellungen konfiguriert" - -#: mod/settings.php:707 -msgid "Plugin Settings" -msgstr "Plugin-Einstellungen" - -#: mod/settings.php:721 -msgid "Off" -msgstr "Aus" - -#: mod/settings.php:721 -msgid "On" -msgstr "An" - -#: mod/settings.php:729 -msgid "Additional Features" -msgstr "Zusätzliche Features" - -#: mod/settings.php:739 mod/settings.php:743 -msgid "General Social Media Settings" -msgstr "Allgemeine Einstellungen zu Sozialen Medien" - -#: mod/settings.php:749 -msgid "Disable intelligent shortening" -msgstr "Intelligentes Link kürzen ausschalten" - -#: mod/settings.php:751 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt." - -#: mod/settings.php:761 mod/settings.php:762 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s" - -#: mod/settings.php:761 mod/settings.php:762 -msgid "enabled" -msgstr "eingeschaltet" - -#: mod/settings.php:761 mod/settings.php:762 -msgid "disabled" -msgstr "ausgeschaltet" - -#: mod/settings.php:762 -msgid "StatusNet" -msgstr "StatusNet" - -#: mod/settings.php:798 -msgid "Email access is disabled on this site." -msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." - -#: mod/settings.php:810 -msgid "Email/Mailbox Setup" -msgstr "E-Mail/Postfach-Einstellungen" - -#: mod/settings.php:811 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an." - -#: mod/settings.php:812 -msgid "Last successful email check:" -msgstr "Letzter erfolgreicher E-Mail Check" - -#: mod/settings.php:814 -msgid "IMAP server name:" -msgstr "IMAP-Server-Name:" - -#: mod/settings.php:815 -msgid "IMAP port:" -msgstr "IMAP-Port:" - -#: mod/settings.php:816 -msgid "Security:" -msgstr "Sicherheit:" - -#: mod/settings.php:816 mod/settings.php:821 -msgid "None" -msgstr "Keine" - -#: mod/settings.php:817 -msgid "Email login name:" -msgstr "E-Mail-Login-Name:" - -#: mod/settings.php:818 -msgid "Email password:" -msgstr "E-Mail-Passwort:" - -#: mod/settings.php:819 -msgid "Reply-to address:" -msgstr "Reply-to Adresse:" - -#: mod/settings.php:820 -msgid "Send public posts to all email contacts:" -msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" - -#: mod/settings.php:821 -msgid "Action after import:" -msgstr "Aktion nach Import:" - -#: mod/settings.php:821 -msgid "Mark as seen" -msgstr "Als gelesen markieren" - -#: mod/settings.php:821 -msgid "Move to folder" -msgstr "In einen Ordner verschieben" - -#: mod/settings.php:822 -msgid "Move to folder:" -msgstr "In diesen Ordner verschieben:" - -#: mod/settings.php:903 -msgid "Display Settings" -msgstr "Anzeige-Einstellungen" - -#: mod/settings.php:909 mod/settings.php:924 -msgid "Display Theme:" -msgstr "Theme:" - -#: mod/settings.php:910 -msgid "Mobile Theme:" -msgstr "Mobiles Theme" - -#: mod/settings.php:911 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" - -#: mod/settings.php:911 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimal 10 Sekunden, kein Maximum" - -#: mod/settings.php:912 -msgid "Number of items to display per page:" -msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " - -#: mod/settings.php:912 mod/settings.php:913 -msgid "Maximum of 100 items" -msgstr "Maximal 100 Beiträge" - -#: mod/settings.php:913 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" - -#: mod/settings.php:914 -msgid "Don't show emoticons" -msgstr "Keine Smilies anzeigen" - -#: mod/settings.php:915 -msgid "Don't show notices" -msgstr "Info-Popups nicht anzeigen" - -#: mod/settings.php:916 -msgid "Infinite scroll" -msgstr "Endloses Scrollen" - -#: mod/settings.php:917 -msgid "Automatic updates only at the top of the network page" -msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist." - -#: mod/settings.php:994 -msgid "User Types" -msgstr "Nutzer Art" - -#: mod/settings.php:995 -msgid "Community Types" -msgstr "Gemeinschafts Art" - -#: mod/settings.php:996 -msgid "Normal Account Page" -msgstr "Normales Konto" - -#: mod/settings.php:997 -msgid "This account is a normal personal profile" -msgstr "Dieses Konto ist ein normales persönliches Profil" - -#: mod/settings.php:1000 -msgid "Soapbox Page" -msgstr "Marktschreier-Konto" - -#: mod/settings.php:1001 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" - -#: mod/settings.php:1004 -msgid "Community Forum/Celebrity Account" -msgstr "Forum/Promi-Konto" - -#: mod/settings.php:1005 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" - -#: mod/settings.php:1008 -msgid "Automatic Friend Page" -msgstr "Automatische Freunde Seite" - -#: mod/settings.php:1009 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" - -#: mod/settings.php:1012 -msgid "Private Forum [Experimental]" -msgstr "Privates Forum [Versuchsstadium]" - -#: mod/settings.php:1013 -msgid "Private forum - approved members only" -msgstr "Privates Forum, nur für Mitglieder" - -#: mod/settings.php:1025 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1025 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." - -#: mod/settings.php:1035 -msgid "Publish your default profile in your local site directory?" -msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" - -#: mod/settings.php:1041 -msgid "Publish your default profile in the global social directory?" -msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" - -#: mod/settings.php:1049 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" - -#: mod/settings.php:1053 include/acl_selectors.php:330 -msgid "Hide your profile details from unknown viewers?" -msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" - -#: mod/settings.php:1053 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich" - -#: mod/settings.php:1058 -msgid "Allow friends to post to your profile page?" -msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" - -#: mod/settings.php:1064 -msgid "Allow friends to tag your posts?" -msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" - -#: mod/settings.php:1070 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" - -#: mod/settings.php:1076 -msgid "Permit unknown people to send you private mail?" -msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" - -#: mod/settings.php:1084 -msgid "Profile is not published." -msgstr "Profil ist nicht veröffentlicht." - -#: mod/settings.php:1087 mod/profile_photo.php:248 -msgid "or" -msgstr "oder" - -#: mod/settings.php:1092 -msgid "Your Identity Address is" -msgstr "Die Adresse Deines Profils lautet:" - -#: mod/settings.php:1101 -msgid "Automatically expire posts after this many days:" -msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" - -#: mod/settings.php:1101 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." - -#: mod/settings.php:1102 -msgid "Advanced expiration settings" -msgstr "Erweiterte Verfallseinstellungen" - -#: mod/settings.php:1103 -msgid "Advanced Expiration" -msgstr "Erweitertes Verfallen" - -#: mod/settings.php:1104 -msgid "Expire posts:" -msgstr "Beiträge verfallen lassen:" - -#: mod/settings.php:1105 -msgid "Expire personal notes:" -msgstr "Persönliche Notizen verfallen lassen:" - -#: mod/settings.php:1106 -msgid "Expire starred posts:" -msgstr "Markierte Beiträge verfallen lassen:" - -#: mod/settings.php:1107 -msgid "Expire photos:" -msgstr "Fotos verfallen lassen:" - -#: mod/settings.php:1108 -msgid "Only expire posts by others:" -msgstr "Nur Beiträge anderer verfallen:" - -#: mod/settings.php:1134 -msgid "Account Settings" -msgstr "Kontoeinstellungen" - -#: mod/settings.php:1142 -msgid "Password Settings" -msgstr "Passwort-Einstellungen" - -#: mod/settings.php:1143 -msgid "New Password:" -msgstr "Neues Passwort:" - -#: mod/settings.php:1144 -msgid "Confirm:" -msgstr "Bestätigen:" - -#: mod/settings.php:1144 -msgid "Leave password fields blank unless changing" -msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" - -#: mod/settings.php:1145 -msgid "Current Password:" -msgstr "Aktuelles Passwort:" - -#: mod/settings.php:1145 mod/settings.php:1146 -msgid "Your current password to confirm the changes" -msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" - -#: mod/settings.php:1146 -msgid "Password:" -msgstr "Passwort:" - -#: mod/settings.php:1150 -msgid "Basic Settings" -msgstr "Grundeinstellungen" - -#: mod/settings.php:1151 include/identity.php:538 -msgid "Full Name:" -msgstr "Kompletter Name:" - -#: mod/settings.php:1152 -msgid "Email Address:" -msgstr "E-Mail-Adresse:" - -#: mod/settings.php:1153 -msgid "Your Timezone:" -msgstr "Deine Zeitzone:" - -#: mod/settings.php:1154 -msgid "Default Post Location:" -msgstr "Standardstandort:" - -#: mod/settings.php:1155 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" - -#: mod/settings.php:1158 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Privatsphäre-Einstellungen" - -#: mod/settings.php:1160 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" - -#: mod/settings.php:1160 mod/settings.php:1190 -msgid "(to prevent spam abuse)" -msgstr "(um SPAM zu vermeiden)" - -#: mod/settings.php:1161 -msgid "Default Post Permissions" -msgstr "Standard-Zugriffsrechte für Beiträge" - -#: mod/settings.php:1162 -msgid "(click to open/close)" -msgstr "(klicke zum öffnen/schließen)" - -#: mod/settings.php:1173 -msgid "Default Private Post" -msgstr "Privater Standardbeitrag" - -#: mod/settings.php:1174 -msgid "Default Public Post" -msgstr "Öffentlicher Standardbeitrag" - -#: mod/settings.php:1178 -msgid "Default Permissions for New Posts" -msgstr "Standardberechtigungen für neue Beiträge" - -#: mod/settings.php:1190 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" - -#: mod/settings.php:1193 -msgid "Notification Settings" -msgstr "Benachrichtigungseinstellungen" - -#: mod/settings.php:1194 -msgid "By default post a status message when:" -msgstr "Standardmäßig eine Statusnachricht posten, wenn:" - -#: mod/settings.php:1195 -msgid "accepting a friend request" -msgstr "– Du eine Kontaktanfrage akzeptierst" - -#: mod/settings.php:1196 -msgid "joining a forum/community" -msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" - -#: mod/settings.php:1197 -msgid "making an interesting profile change" -msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" - -#: mod/settings.php:1198 -msgid "Send a notification email when:" -msgstr "Benachrichtigungs-E-Mail senden wenn:" - -#: mod/settings.php:1199 -msgid "You receive an introduction" -msgstr "– Du eine Kontaktanfrage erhältst" - -#: mod/settings.php:1200 -msgid "Your introductions are confirmed" -msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" - -#: mod/settings.php:1201 -msgid "Someone writes on your profile wall" -msgstr "– jemand etwas auf Deine Pinnwand schreibt" - -#: mod/settings.php:1202 -msgid "Someone writes a followup comment" -msgstr "– jemand auch einen Kommentar verfasst" - -#: mod/settings.php:1203 -msgid "You receive a private message" -msgstr "– Du eine private Nachricht erhältst" - -#: mod/settings.php:1204 -msgid "You receive a friend suggestion" -msgstr "– Du eine Empfehlung erhältst" - -#: mod/settings.php:1205 -msgid "You are tagged in a post" -msgstr "– Du in einem Beitrag erwähnt wirst" - -#: mod/settings.php:1206 -msgid "You are poked/prodded/etc. in a post" -msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" - -#: mod/settings.php:1208 -msgid "Activate desktop notifications" -msgstr "Desktop Benachrichtigungen einschalten" - -#: mod/settings.php:1208 -msgid "Show desktop popup on new notifications" -msgstr "Desktop Benachrichtigungen einschalten" - -#: mod/settings.php:1210 -msgid "Text-only notification emails" -msgstr "Benachrichtigungs E-Mail als Rein-Text." - -#: mod/settings.php:1212 -msgid "Send text only notification emails, without the html part" -msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" - -#: mod/settings.php:1214 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" - -#: mod/settings.php:1215 -msgid "Change the behaviour of this account for special situations" -msgstr "Verhalten dieses Kontos in bestimmten Situationen:" - -#: mod/settings.php:1218 -msgid "Relocate" -msgstr "Umziehen" - -#: mod/settings.php:1219 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button." - -#: mod/settings.php:1220 -msgid "Resend relocate message to contacts" -msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "Eintrag wurde entfernt." +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste." + +#: mod/dfrn_request.php:855 mod/follow.php:64 +msgid "Your Identity Address:" +msgstr "Adresse Deines Profils:" + +#: mod/dfrn_request.php:858 mod/follow.php:67 +msgid "Submit Request" +msgstr "Anfrage abschicken" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "Auf diesem Server suchen" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "Verzeichnis" + +#: mod/directory.php:129 mod/profiles.php:746 +msgid "Age: " +msgstr "Alter: " + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "Geschlecht:" + +#: mod/directory.php:152 mod/events.php:503 include/bb2diaspora.php:161 +#: include/event.php:42 include/identity.php:268 +msgid "Location:" +msgstr "Ort:" + +#: mod/directory.php:154 include/identity.php:270 include/identity.php:540 +msgid "Gender:" +msgstr "Geschlecht:" + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 +msgid "Status:" +msgstr "Status:" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 +msgid "Homepage:" +msgstr "Homepage:" + +#: mod/directory.php:160 include/identity.php:277 include/identity.php:581 +msgid "About:" +msgstr "Über:" + +#: mod/directory.php:205 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." #: mod/dirfind.php:27 #, php-format @@ -4282,6 +3774,952 @@ msgstr "Personensuche - %s" msgid "No matches" msgstr "Keine Übereinstimmungen" +#: mod/display.php:343 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." + +#: mod/display.php:505 +msgid "Item has been removed." +msgstr "Eintrag wurde entfernt." + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Beitrag nicht gefunden" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Beitrag bearbeiten" + +#: mod/editpost.php:111 include/conversation.php:1057 +msgid "upload photo" +msgstr "Bild hochladen" + +#: mod/editpost.php:112 include/conversation.php:1058 +msgid "Attach file" +msgstr "Datei anhängen" + +#: mod/editpost.php:113 include/conversation.php:1059 +msgid "attach file" +msgstr "Datei anhängen" + +#: mod/editpost.php:115 include/conversation.php:1061 +msgid "web link" +msgstr "Weblink" + +#: mod/editpost.php:116 include/conversation.php:1062 +msgid "Insert video link" +msgstr "Video-Adresse einfügen" + +#: mod/editpost.php:117 include/conversation.php:1063 +msgid "video link" +msgstr "Video-Link" + +#: mod/editpost.php:118 include/conversation.php:1064 +msgid "Insert audio link" +msgstr "Audio-Adresse einfügen" + +#: mod/editpost.php:119 include/conversation.php:1065 +msgid "audio link" +msgstr "Audio-Link" + +#: mod/editpost.php:120 include/conversation.php:1066 +msgid "Set your location" +msgstr "Deinen Standort festlegen" + +#: mod/editpost.php:121 include/conversation.php:1067 +msgid "set location" +msgstr "Ort setzen" + +#: mod/editpost.php:122 include/conversation.php:1068 +msgid "Clear browser location" +msgstr "Browser-Standort leeren" + +#: mod/editpost.php:123 include/conversation.php:1069 +msgid "clear location" +msgstr "Ort löschen" + +#: mod/editpost.php:125 include/conversation.php:1075 +msgid "Permission settings" +msgstr "Berechtigungseinstellungen" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "Cc: E-Mail-Addressen" + +#: mod/editpost.php:134 include/conversation.php:1084 +msgid "Public post" +msgstr "Öffentlicher Beitrag" + +#: mod/editpost.php:137 include/conversation.php:1071 +msgid "Set title" +msgstr "Titel setzen" + +#: mod/editpost.php:139 include/conversation.php:1073 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (kommasepariert)" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Z.B.: bob@example.com, mary@example.com" + +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." + +#: mod/events.php:80 mod/events.php:82 +msgid "Event title and start time are required." +msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." + +#: mod/events.php:317 +msgid "l, F j" +msgstr "l, F j" + +#: mod/events.php:339 +msgid "Edit event" +msgstr "Veranstaltung bearbeiten" + +#: mod/events.php:361 include/text.php:1679 include/text.php:1689 +msgid "link to source" +msgstr "Link zum Originalbeitrag" + +#: mod/events.php:397 +msgid "Create New Event" +msgstr "Neue Veranstaltung erstellen" + +#: mod/events.php:398 +msgid "Previous" +msgstr "Vorherige" + +#: mod/events.php:399 mod/install.php:209 +msgid "Next" +msgstr "Nächste" + +#: mod/events.php:491 +msgid "Event details" +msgstr "Veranstaltungsdetails" + +#: mod/events.php:492 +msgid "Starting date and Title are required." +msgstr "Anfangszeitpunkt und Titel werden benötigt" + +#: mod/events.php:493 +msgid "Event Starts:" +msgstr "Veranstaltungsbeginn:" + +#: mod/events.php:493 mod/events.php:505 +msgid "Required" +msgstr "Benötigt" + +#: mod/events.php:495 +msgid "Finish date/time is not known or not relevant" +msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" + +#: mod/events.php:497 +msgid "Event Finishes:" +msgstr "Veranstaltungsende:" + +#: mod/events.php:499 +msgid "Adjust for viewer timezone" +msgstr "An Zeitzone des Betrachters anpassen" + +#: mod/events.php:501 +msgid "Description:" +msgstr "Beschreibung" + +#: mod/events.php:505 +msgid "Title:" +msgstr "Titel:" + +#: mod/events.php:507 +msgid "Share this event" +msgstr "Veranstaltung teilen" + +#: mod/follow.php:24 +msgid "You already added this contact." +msgstr "Du hast den Kontakt bereits hinzugefügt." + +#: mod/follow.php:106 +msgid "Contact added" +msgstr "Kontakt hinzugefügt" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Gruppe erstellt." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Konnte die Gruppe nicht erstellen." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Gruppe nicht gefunden." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Gruppenname geändert." + +#: mod/group.php:72 mod/profperm.php:19 index.php:381 +msgid "Permission denied" +msgstr "Zugriff verweigert" + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Gruppe speichern" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Eine Gruppe von Kontakten/Freunden anlegen." + +#: mod/group.php:94 mod/group.php:178 include/group.php:273 +msgid "Group Name: " +msgstr "Gruppenname:" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Gruppe entfernt." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Konnte die Gruppe nicht entfernen." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Gruppeneditor" + +#: mod/group.php:190 +msgid "Members" +msgstr "Mitglieder" + +#: mod/group.php:222 mod/profperm.php:106 +msgid "Click on a contact to add or remove." +msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" + +#: mod/install.php:119 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica-Server für soziale Netzwerke – Setup" + +#: mod/install.php:125 +msgid "Could not connect to database." +msgstr "Verbindung zur Datenbank gescheitert." + +#: mod/install.php:129 +msgid "Could not create table." +msgstr "Tabelle konnte nicht angelegt werden." + +#: mod/install.php:135 +msgid "Your Friendica site database has been installed." +msgstr "Die Datenbank Deiner Friendicaseite wurde installiert." + +#: mod/install.php:140 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren." + +#: mod/install.php:141 mod/install.php:208 mod/install.php:530 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Lies bitte die \"INSTALL.txt\"." + +#: mod/install.php:153 +msgid "Database already in use." +msgstr "Die Datenbank wird bereits verwendet." + +#: mod/install.php:205 +msgid "System check" +msgstr "Systemtest" + +#: mod/install.php:210 +msgid "Check again" +msgstr "Noch einmal testen" + +#: mod/install.php:229 +msgid "Database connection" +msgstr "Datenbankverbindung" + +#: mod/install.php:230 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können." + +#: mod/install.php:231 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest." + +#: mod/install.php:232 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst." + +#: mod/install.php:236 +msgid "Database Server Name" +msgstr "Datenbank-Server" + +#: mod/install.php:237 +msgid "Database Login Name" +msgstr "Datenbank-Nutzer" + +#: mod/install.php:238 +msgid "Database Login Password" +msgstr "Datenbank-Passwort" + +#: mod/install.php:239 +msgid "Database Name" +msgstr "Datenbank-Name" + +#: mod/install.php:240 mod/install.php:279 +msgid "Site administrator email address" +msgstr "E-Mail-Adresse des Administrators" + +#: mod/install.php:240 mod/install.php:279 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst." + +#: mod/install.php:244 mod/install.php:282 +msgid "Please select a default timezone for your website" +msgstr "Bitte wähle die Standardzeitzone Deiner Webseite" + +#: mod/install.php:269 +msgid "Site settings" +msgstr "Server-Einstellungen" + +#: mod/install.php:323 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden." + +#: mod/install.php:324 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'" + +#: mod/install.php:328 +msgid "PHP executable path" +msgstr "Pfad zu PHP" + +#: mod/install.php:328 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren." + +#: mod/install.php:333 +msgid "Command line PHP" +msgstr "Kommandozeilen-PHP" + +#: mod/install.php:342 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)" + +#: mod/install.php:343 +msgid "Found PHP version: " +msgstr "Gefundene PHP Version:" + +#: mod/install.php:345 +msgid "PHP cli binary" +msgstr "PHP CLI Binary" + +#: mod/install.php:356 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert." + +#: mod/install.php:357 +msgid "This is required for message delivery to work." +msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." + +#: mod/install.php:359 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:380 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen" + +#: mod/install.php:381 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an." + +#: mod/install.php:383 +msgid "Generate encryption keys" +msgstr "Schlüssel erzeugen" + +#: mod/install.php:390 +msgid "libCurl PHP module" +msgstr "PHP: libCurl-Modul" + +#: mod/install.php:391 +msgid "GD graphics PHP module" +msgstr "PHP: GD-Grafikmodul" + +#: mod/install.php:392 +msgid "OpenSSL PHP module" +msgstr "PHP: OpenSSL-Modul" + +#: mod/install.php:393 +msgid "mysqli PHP module" +msgstr "PHP: mysqli-Modul" + +#: mod/install.php:394 +msgid "mb_string PHP module" +msgstr "PHP: mb_string-Modul" + +#: mod/install.php:399 mod/install.php:401 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: mod/install.php:399 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert." + +#: mod/install.php:407 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert." + +#: mod/install.php:411 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert." + +#: mod/install.php:415 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." + +#: mod/install.php:419 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert." + +#: mod/install.php:423 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert." + +#: mod/install.php:440 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun." + +#: mod/install.php:441 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast." + +#: mod/install.php:442 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst." + +#: mod/install.php:443 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt." + +#: mod/install.php:446 +msgid ".htconfig.php is writable" +msgstr "Schreibrechte auf .htconfig.php" + +#: mod/install.php:456 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen." + +#: mod/install.php:457 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica." + +#: mod/install.php:458 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat." + +#: mod/install.php:459 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten." + +#: mod/install.php:462 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 ist schreibbar" + +#: mod/install.php:478 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers." + +#: mod/install.php:480 +msgid "Url rewrite is working" +msgstr "URL rewrite funktioniert" + +#: mod/install.php:489 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen." + +#: mod/install.php:528 +msgid "

    What next

    " +msgstr "

    Wie geht es weiter?

    " + +#: mod/install.php:529 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." + +#: mod/item.php:115 +msgid "Unable to locate original post." +msgstr "Konnte den Originalbeitrag nicht finden." + +#: mod/item.php:347 +msgid "Empty post discarded." +msgstr "Leerer Beitrag wurde verworfen." + +#: mod/item.php:486 mod/wall_upload.php:169 mod/wall_upload.php:178 +#: mod/wall_upload.php:185 include/message.php:144 include/Photo.php:951 +#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 +msgid "Wall Photos" +msgstr "Pinnwand-Bilder" + +#: mod/item.php:860 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." + +#: mod/item.php:989 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." + +#: mod/item.php:991 +#, php-format +msgid "You may visit them online at %s" +msgstr "Du kannst sie online unter %s besuchen" + +#: mod/item.php:992 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest." + +#: mod/item.php:996 +#, php-format +msgid "%s posted an update." +msgstr "%s hat ein Update veröffentlicht." + +#: mod/match.php:13 +msgid "Profile Match" +msgstr "Profilübereinstimmungen" + +#: mod/match.php:22 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu." + +#: mod/match.php:64 +msgid "is interested in:" +msgstr "ist interessiert an:" + +#: mod/match.php:65 mod/suggest.php:92 include/contact_widgets.php:10 +#: include/identity.php:188 +msgid "Connect" +msgstr "Verbinden" + +#: mod/network.php:143 +#, php-format +msgid "Search Results For: %s" +msgstr "Suchergebnisse für: %s" + +#: mod/network.php:197 include/group.php:277 +msgid "add" +msgstr "hinzufügen" + +#: mod/network.php:358 +msgid "Commented Order" +msgstr "Neueste Kommentare" + +#: mod/network.php:361 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortieren" + +#: mod/network.php:364 +msgid "Posted Order" +msgstr "Neueste Beiträge" + +#: mod/network.php:367 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortieren" + +#: mod/network.php:376 +msgid "Posts that mention or involve you" +msgstr "Beiträge, in denen es um Dich geht" + +#: mod/network.php:382 +msgid "New" +msgstr "Neue" + +#: mod/network.php:385 +msgid "Activity Stream - by date" +msgstr "Aktivitäten-Stream - nach Datum" + +#: mod/network.php:391 +msgid "Shared Links" +msgstr "Geteilte Links" + +#: mod/network.php:394 +msgid "Interesting Links" +msgstr "Interessante Links" + +#: mod/network.php:400 +msgid "Starred" +msgstr "Markierte" + +#: mod/network.php:403 +msgid "Favourite Posts" +msgstr "Favorisierte Beiträge" + +#: mod/network.php:460 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk." +msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken." + +#: mod/network.php:463 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." + +#: mod/network.php:572 +#, php-format +msgid "Contact: %s" +msgstr "Kontakt: %s" + +#: mod/network.php:576 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." + +#: mod/network.php:581 +msgid "Invalid contact." +msgstr "Ungültiger Kontakt." + +#: mod/notes.php:44 include/identity.php:670 +msgid "Personal Notes" +msgstr "Persönliche Notizen" + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "Nicht erweitert." + +#: mod/photos.php:84 include/identity.php:649 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: mod/photos.php:85 mod/photos.php:1836 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" + +#: mod/photos.php:102 mod/settings.php:34 +msgid "everybody" +msgstr "jeder" + +#: mod/photos.php:166 +msgid "Contact information unavailable" +msgstr "Kontaktinformationen nicht verfügbar" + +#: mod/photos.php:187 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 +msgid "Delete Album" +msgstr "Album löschen" + +#: mod/photos.php:220 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?" + +#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: mod/photos.php:309 +msgid "Do you really want to delete this photo?" +msgstr "Möchtest Du wirklich dieses Foto löschen?" + +#: mod/photos.php:684 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s wurde von %3$s in %2$s getaggt" + +#: mod/photos.php:684 +msgid "a photo" +msgstr "einem Foto" + +#: mod/photos.php:789 mod/profile_photo.php:144 mod/wall_upload.php:122 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Bildgröße überschreitet das Limit von %s" + +#: mod/photos.php:797 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: mod/photos.php:829 mod/profile_photo.php:153 mod/wall_upload.php:144 +msgid "Unable to process image." +msgstr "Konnte das Bild nicht bearbeiten." + +#: mod/photos.php:856 mod/profile_photo.php:301 mod/wall_upload.php:172 +msgid "Image upload failed." +msgstr "Hochladen des Bildes gescheitert." + +#: mod/photos.php:952 +msgid "No photos selected" +msgstr "Keine Bilder ausgewählt" + +#: mod/photos.php:1053 mod/videos.php:298 +msgid "Access to this item is restricted." +msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." + +#: mod/photos.php:1114 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." + +#: mod/photos.php:1149 +msgid "Upload Photos" +msgstr "Bilder hochladen" + +#: mod/photos.php:1153 mod/photos.php:1219 +msgid "New album name: " +msgstr "Name des neuen Albums: " + +#: mod/photos.php:1154 +msgid "or existing album name: " +msgstr "oder existierender Albumname: " + +#: mod/photos.php:1155 +msgid "Do not show a status post for this upload" +msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" + +#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 +msgid "Permissions" +msgstr "Berechtigungen" + +#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1172 +msgid "Show to Groups" +msgstr "Zeige den Gruppen" + +#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1173 +msgid "Show to Contacts" +msgstr "Zeige den Kontakten" + +#: mod/photos.php:1168 +msgid "Private Photo" +msgstr "Privates Foto" + +#: mod/photos.php:1169 +msgid "Public Photo" +msgstr "Öffentliches Foto" + +#: mod/photos.php:1232 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: mod/photos.php:1238 +msgid "Show Newest First" +msgstr "Zeige neueste zuerst" + +#: mod/photos.php:1240 +msgid "Show Oldest First" +msgstr "Zeige älteste zuerst" + +#: mod/photos.php:1268 mod/photos.php:1821 +msgid "View Photo" +msgstr "Foto betrachten" + +#: mod/photos.php:1314 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." + +#: mod/photos.php:1316 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Fotos ansehen" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Als Profilbild verwenden" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Betrachte Originalgröße" + +#: mod/photos.php:1477 +msgid "Tags: " +msgstr "Tags: " + +#: mod/photos.php:1480 +msgid "[Remove any tag]" +msgstr "[Tag entfernen]" + +#: mod/photos.php:1520 +msgid "New album name" +msgstr "Name des neuen Albums" + +#: mod/photos.php:1521 +msgid "Caption" +msgstr "Bildunterschrift" + +#: mod/photos.php:1522 +msgid "Add a Tag" +msgstr "Tag hinzufügen" + +#: mod/photos.php:1522 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1523 +msgid "Do not rotate" +msgstr "Nicht rotieren" + +#: mod/photos.php:1524 +msgid "Rotate CW (right)" +msgstr "Drehen US (rechts)" + +#: mod/photos.php:1525 +msgid "Rotate CCW (left)" +msgstr "Drehen EUS (links)" + +#: mod/photos.php:1540 +msgid "Private photo" +msgstr "Privates Foto" + +#: mod/photos.php:1541 +msgid "Public photo" +msgstr "Öffentliches Foto" + +#: mod/photos.php:1563 include/conversation.php:1055 +msgid "Share" +msgstr "Teilen" + +#: mod/photos.php:1827 mod/videos.php:380 +msgid "View Album" +msgstr "Album betrachten" + +#: mod/ping.php:233 +msgid "{0} wants to be your friend" +msgstr "{0} möchte mit Dir in Kontakt treten" + +#: mod/ping.php:248 +msgid "{0} sent you a message" +msgstr "{0} schickte Dir eine Nachricht" + +#: mod/ping.php:263 +msgid "{0} requested registration" +msgstr "{0} möchte sich registrieren" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Tipps für neue Nutzer" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Verkleinern der Bildgröße von [%s] scheiterte." + +#: mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." + +#: mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Bild konnte nicht verarbeitet werden" + +#: mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Datei hochladen:" + +#: mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Profil auswählen:" + +#: mod/profile_photo.php:245 +msgid "Upload" +msgstr "Hochladen" + +#: mod/profile_photo.php:248 mod/settings.php:1088 +msgid "or" +msgstr "oder" + +#: mod/profile_photo.php:248 +msgid "skip this step" +msgstr "diesen Schritt überspringen" + +#: mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "wähle ein Foto aus deinen Fotoalben" + +#: mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Bild zurechtschneiden" + +#: mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." + +#: mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Bearbeitung abgeschlossen" + +#: mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Bild erfolgreich hochgeladen." + #: mod/profiles.php:37 msgid "Profile deleted." msgstr "Profil gelöscht." @@ -4583,10 +5021,6 @@ msgid "" "be visible to anybody using the internet." msgstr "Dies ist Dein öffentliches Profil.
    Es könnte für jeden Nutzer des Internets sichtbar sein." -#: mod/profiles.php:746 mod/directory.php:129 -msgid "Age: " -msgstr "Alter: " - #: mod/profiles.php:799 msgid "Edit/Manage Profiles" msgstr "Bearbeite/Verwalte Profile" @@ -4611,68 +5045,73 @@ msgstr "sichtbar für jeden" msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Bezeichner." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Editor für die Profil-Sichtbarkeit" + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Sichtbar für" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" + +#: mod/search.php:180 +#, php-format +msgid "Items tagged with: %s" +msgstr "Beiträge markiert mit: %s" + +#: mod/search.php:182 +#, php-format +msgid "Search results for: %s" +msgstr "Suchergebnisse für: %s" + #: mod/share.php:38 msgid "link" msgstr "Link" -#: mod/uexport.php:77 -msgid "Export account" -msgstr "Account exportieren" +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Möchtest Du wirklich diese Empfehlung löschen?" -#: mod/uexport.php:77 +#: mod/suggest.php:76 msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." -#: mod/uexport.php:78 -msgid "Export all" -msgstr "Alles exportieren" +#: mod/suggest.php:94 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verbergen" -#: mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)." +#: mod/videos.php:113 +msgid "Do you really want to delete this video?" +msgstr "Möchtest Du dieses Video wirklich löschen?" -#: mod/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "{0} möchte mit Dir in Kontakt treten" +#: mod/videos.php:118 +msgid "Delete Video" +msgstr "Video Löschen" -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "{0} schickte Dir eine Nachricht" +#: mod/videos.php:197 +msgid "No videos selected" +msgstr "Keine Videos ausgewählt" -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "{0} möchte sich registrieren" +#: mod/videos.php:373 include/text.php:1429 +msgid "View Video" +msgstr "Video ansehen" -#: mod/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "Keine Neuigkeiten" +#: mod/videos.php:389 +msgid "Recent Videos" +msgstr "Neueste Videos" -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "Bereinige Benachrichtigungen" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Nicht verfügbar." - -#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:129 -#: include/nav.php:131 -msgid "Community" -msgstr "Gemeinschaft" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "In diesem Ordner speichern:" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- auswählen -" +#: mod/videos.php:391 +msgid "Upload New Videos" +msgstr "Neues Video hochladen" #: mod/wall_attach.php:75 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" @@ -4691,1145 +5130,965 @@ msgstr "Die Datei ist größer als das erlaubte Limit von %s" msgid "File upload failed." msgstr "Hochladen der Datei fehlgeschlagen." -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Bezeichner." - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Editor für die Profil-Sichtbarkeit" - -#: mod/profperm.php:106 mod/group.php:222 -msgid "Click on a contact to add or remove." -msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Sichtbar für" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Möchtest Du wirklich diese Empfehlung löschen?" - -#: mod/suggest.php:69 view/theme/diabook/theme.php:527 -#: include/contact_widgets.php:35 -msgid "Friend Suggestions" -msgstr "Kontaktvorschläge" - -#: mod/suggest.php:76 +#: mod/register.php:92 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." +"Registration successful. Please check your email for further instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." -#: mod/suggest.php:92 mod/match.php:65 include/identity.php:188 -#: include/contact_widgets.php:10 -msgid "Connect" -msgstr "Verbinden" - -#: mod/suggest.php:94 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verbergen" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Zugriff verweigert." - -#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s heißt %2$s herzlich willkommen" - -#: mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Verwalte Identitäten und/oder Seiten" - -#: mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast." - -#: mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Wähle eine Identität zum Verwalten aus: " - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." - -#: mod/delegate.php:130 include/nav.php:171 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für die Seite" - -#: mod/delegate.php:132 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!" - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Vorhandene Seitenmanager" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Hinzufügen" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Keine Einträge." - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Keine Kontakte." - -#: mod/viewcontacts.php:78 include/text.php:899 -msgid "View Contacts" -msgstr "Kontakte anzeigen" - -#: mod/notes.php:44 include/identity.php:670 -msgid "Personal Notes" -msgstr "Persönliche Notizen" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Anstupsen" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Empfänger" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Was willst Du mit dem Empfänger machen:" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Weltweites Verzeichnis" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Auf diesem Server suchen" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Verzeichnis" - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "Geschlecht:" - -#: mod/directory.php:154 include/identity.php:270 include/identity.php:540 -msgid "Gender:" -msgstr "Geschlecht:" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 -msgid "Status:" -msgstr "Status:" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 -msgid "Homepage:" -msgstr "Homepage:" - -#: mod/directory.php:160 include/identity.php:277 include/identity.php:581 -msgid "About:" -msgstr "Über:" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." - -#: mod/localtime.php:12 include/event.php:13 include/bb2diaspora.php:139 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y\\, H:i" - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Zeitumrechnung" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann." - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "UTC Zeit: %s" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Aktuelle Zeitzone: %s" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Umgerechnete lokale Zeit: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Bitte wähle Deine Zeitzone:" - -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Beitrag erfolgreich veröffentlicht." - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleinern der Bildgröße von [%s] scheiterte." - -#: mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." - -#: mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Bild konnte nicht verarbeitet werden" - -#: mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Datei hochladen:" - -#: mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Profil auswählen:" - -#: mod/profile_photo.php:245 -msgid "Upload" -msgstr "Hochladen" - -#: mod/profile_photo.php:248 -msgid "skip this step" -msgstr "diesen Schritt überspringen" - -#: mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "wähle ein Foto aus deinen Fotoalben" - -#: mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Bild zurechtschneiden" - -#: mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." - -#: mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Bearbeitung abgeschlossen" - -#: mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Bild erfolgreich hochgeladen." - -#: mod/install.php:119 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica-Server für soziale Netzwerke – Setup" - -#: mod/install.php:125 -msgid "Could not connect to database." -msgstr "Verbindung zur Datenbank gescheitert." - -#: mod/install.php:129 -msgid "Could not create table." -msgstr "Tabelle konnte nicht angelegt werden." - -#: mod/install.php:135 -msgid "Your Friendica site database has been installed." -msgstr "Die Datenbank Deiner Friendicaseite wurde installiert." - -#: mod/install.php:140 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren." - -#: mod/install.php:141 mod/install.php:208 mod/install.php:530 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Lies bitte die \"INSTALL.txt\"." - -#: mod/install.php:153 -msgid "Database already in use." -msgstr "Die Datenbank wird bereits verwendet." - -#: mod/install.php:205 -msgid "System check" -msgstr "Systemtest" - -#: mod/install.php:210 -msgid "Check again" -msgstr "Noch einmal testen" - -#: mod/install.php:229 -msgid "Database connection" -msgstr "Datenbankverbindung" - -#: mod/install.php:230 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können." - -#: mod/install.php:231 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest." - -#: mod/install.php:232 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst." - -#: mod/install.php:236 -msgid "Database Server Name" -msgstr "Datenbank-Server" - -#: mod/install.php:237 -msgid "Database Login Name" -msgstr "Datenbank-Nutzer" - -#: mod/install.php:238 -msgid "Database Login Password" -msgstr "Datenbank-Passwort" - -#: mod/install.php:239 -msgid "Database Name" -msgstr "Datenbank-Name" - -#: mod/install.php:240 mod/install.php:279 -msgid "Site administrator email address" -msgstr "E-Mail-Adresse des Administrators" - -#: mod/install.php:240 mod/install.php:279 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst." - -#: mod/install.php:244 mod/install.php:282 -msgid "Please select a default timezone for your website" -msgstr "Bitte wähle die Standardzeitzone Deiner Webseite" - -#: mod/install.php:269 -msgid "Site settings" -msgstr "Server-Einstellungen" - -#: mod/install.php:323 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden." - -#: mod/install.php:324 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'" - -#: mod/install.php:328 -msgid "PHP executable path" -msgstr "Pfad zu PHP" - -#: mod/install.php:328 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren." - -#: mod/install.php:333 -msgid "Command line PHP" -msgstr "Kommandozeilen-PHP" - -#: mod/install.php:342 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)" - -#: mod/install.php:343 -msgid "Found PHP version: " -msgstr "Gefundene PHP Version:" - -#: mod/install.php:345 -msgid "PHP cli binary" -msgstr "PHP CLI Binary" - -#: mod/install.php:356 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert." - -#: mod/install.php:357 -msgid "This is required for message delivery to work." -msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." - -#: mod/install.php:359 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:380 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen" - -#: mod/install.php:381 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an." - -#: mod/install.php:383 -msgid "Generate encryption keys" -msgstr "Schlüssel erzeugen" - -#: mod/install.php:390 -msgid "libCurl PHP module" -msgstr "PHP: libCurl-Modul" - -#: mod/install.php:391 -msgid "GD graphics PHP module" -msgstr "PHP: GD-Grafikmodul" - -#: mod/install.php:392 -msgid "OpenSSL PHP module" -msgstr "PHP: OpenSSL-Modul" - -#: mod/install.php:393 -msgid "mysqli PHP module" -msgstr "PHP: mysqli-Modul" - -#: mod/install.php:394 -msgid "mb_string PHP module" -msgstr "PHP: mb_string-Modul" - -#: mod/install.php:399 mod/install.php:401 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" - -#: mod/install.php:399 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert." - -#: mod/install.php:407 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert." - -#: mod/install.php:411 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert." - -#: mod/install.php:415 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." - -#: mod/install.php:419 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert." - -#: mod/install.php:423 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert." - -#: mod/install.php:440 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun." - -#: mod/install.php:441 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast." - -#: mod/install.php:442 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst." - -#: mod/install.php:443 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt." - -#: mod/install.php:446 -msgid ".htconfig.php is writable" -msgstr "Schreibrechte auf .htconfig.php" - -#: mod/install.php:456 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen." - -#: mod/install.php:457 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica." - -#: mod/install.php:458 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat." - -#: mod/install.php:459 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten." - -#: mod/install.php:462 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 ist schreibbar" - -#: mod/install.php:478 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers." - -#: mod/install.php:480 -msgid "Url rewrite is working" -msgstr "URL rewrite funktioniert" - -#: mod/install.php:489 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen." - -#: mod/install.php:528 -msgid "

    What next

    " -msgstr "

    Wie geht es weiter?

    " - -#: mod/install.php:529 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." - -#: mod/p.php:9 -msgid "Not Extended" -msgstr "Nicht erweitert." - -#: mod/group.php:29 -msgid "Group created." -msgstr "Gruppe erstellt." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Konnte die Gruppe nicht erstellen." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Gruppe nicht gefunden." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Gruppenname geändert." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "Gruppe speichern" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Eine Gruppe von Kontakten/Freunden anlegen." - -#: mod/group.php:94 mod/group.php:178 include/group.php:273 -msgid "Group Name: " -msgstr "Gruppenname:" - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Gruppe entfernt." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Konnte die Gruppe nicht entfernen." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Gruppeneditor" - -#: mod/group.php:190 -msgid "Members" -msgstr "Mitglieder" - -#: mod/content.php:119 mod/network.php:526 -msgid "No such group" -msgstr "Es gibt keine solche Gruppe" - -#: mod/content.php:130 mod/network.php:543 -msgid "Group is empty" -msgstr "Gruppe ist leer" - -#: mod/content.php:135 mod/network.php:554 -#, php-format -msgid "Group: %s" -msgstr "Gruppe: %s" - -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" -msgstr "Im Zusammenhang betrachten" - -#: mod/regmod.php:55 -msgid "Account approved." -msgstr "Konto freigegeben." - -#: mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s wurde zurückgezogen" - -#: mod/regmod.php:104 -msgid "Please login." -msgstr "Bitte melde Dich an." - -#: mod/match.php:13 -msgid "Profile Match" -msgstr "Profilübereinstimmungen" - -#: mod/match.php:22 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu." - -#: mod/match.php:64 -msgid "is interested in:" -msgstr "ist interessiert an:" - -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "Konnte den Originalbeitrag nicht finden." - -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "Leerer Beitrag wurde verworfen." - -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." - -#: mod/item.php:989 +#: mod/register.php:97 #, php-format msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern." -#: mod/item.php:991 -#, php-format -msgid "You may visit them online at %s" -msgstr "Du kannst sie online unter %s besuchen" +#: mod/register.php:107 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." -#: mod/item.php:992 +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." + +#: mod/register.php:216 msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest." +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst." -#: mod/item.php:996 -#, php-format -msgid "%s posted an update." -msgstr "%s hat ein Update veröffentlicht." - -#: mod/mood.php:62 include/conversation.php:226 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s ist momentan %2$s" - -#: mod/mood.php:133 -msgid "Mood" -msgstr "Stimmung" - -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden" - -#: mod/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "Suchergebnisse für: %s" - -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "hinzufügen" - -#: mod/network.php:358 -msgid "Commented Order" -msgstr "Neueste Kommentare" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortieren" - -#: mod/network.php:364 -msgid "Posted Order" -msgstr "Neueste Beiträge" - -#: mod/network.php:367 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortieren" - -#: mod/network.php:376 -msgid "Posts that mention or involve you" -msgstr "Beiträge, in denen es um Dich geht" - -#: mod/network.php:382 -msgid "New" -msgstr "Neue" - -#: mod/network.php:385 -msgid "Activity Stream - by date" -msgstr "Aktivitäten-Stream - nach Datum" - -#: mod/network.php:391 -msgid "Shared Links" -msgstr "Geteilte Links" - -#: mod/network.php:394 -msgid "Interesting Links" -msgstr "Interessante Links" - -#: mod/network.php:400 -msgid "Starred" -msgstr "Markierte" - -#: mod/network.php:403 -msgid "Favourite Posts" -msgstr "Favorisierte Beiträge" - -#: mod/network.php:460 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk." -msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken." - -#: mod/network.php:463 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." - -#: mod/network.php:572 -#, php-format -msgid "Contact: %s" -msgstr "Kontakt: %s" - -#: mod/network.php:576 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." - -#: mod/network.php:581 -msgid "Invalid contact." -msgstr "Ungültiger Kontakt." - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "Einstellungen zum Kontakt angewandt." - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "Konnte den Kontakt nicht aktualisieren." - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Kontakteinstellungen reparieren" - -#: mod/crepair.php:142 +#: mod/register.php:217 msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." -#: mod/crepair.php:143 +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "Deine OpenID (optional): " + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "ID Deiner Einladung: " + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Vollständiger Name (z.B. Max Mustermann): " + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "Deine E-Mail-Adresse: " + +#: mod/register.php:271 mod/settings.php:1144 +msgid "New Password:" +msgstr "Neues Passwort:" + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "Leer lassen um das Passwort automatisch zu generieren." + +#: mod/register.php:272 mod/settings.php:1145 +msgid "Confirm:" +msgstr "Bestätigen:" + +#: mod/register.php:273 msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@$sitename' sein." -#: mod/crepair.php:149 -msgid "Return to contact editor" -msgstr "Zurück zum Kontakteditor" +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "Spitznamen wählen: " -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "Kein Spiegeln" +#: mod/register.php:277 include/nav.php:109 boot.php:1238 +msgid "Register" +msgstr "Registrieren" -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "Spiegeln als weitergeleitete Beiträge" +#: mod/register.php:284 +msgid "Import your profile to this friendica instance" +msgstr "Importiere Dein Profil auf diese Friendica Instanz" -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "Spiegeln als meine eigenen Beiträge" +#: mod/settings.php:46 +msgid "Additional features" +msgstr "Zusätzliche Features" -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "Kontaktdaten neu laden" +#: mod/settings.php:51 +msgid "Display" +msgstr "Anzeige" -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "Konto-Spitzname" +#: mod/settings.php:57 mod/settings.php:805 +msgid "Social Networks" +msgstr "Soziale Netzwerke" -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - überschreibt Name/Spitzname" +#: mod/settings.php:67 include/nav.php:171 +msgid "Delegations" +msgstr "Delegationen" -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "Konto-URL" +#: mod/settings.php:72 +msgid "Connected apps" +msgstr "Verbundene Programme" -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "URL für Freundschaftsanfragen" +#: mod/settings.php:82 +msgid "Remove account" +msgstr "Konto löschen" -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "URL für Bestätigungen von Freundschaftsanfragen" +#: mod/settings.php:134 +msgid "Missing some important data!" +msgstr "Wichtige Daten fehlen!" -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "URL-Endpunkt für Benachrichtigungen" +#: mod/settings.php:245 +msgid "Failed to connect with email account using the settings provided." +msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich." -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "Pull/Feed-URL" +#: mod/settings.php:250 +msgid "Email settings updated." +msgstr "E-Mail Einstellungen bearbeitet." -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "Neues Foto von dieser URL" +#: mod/settings.php:265 +msgid "Features updated" +msgstr "Features aktualisiert" -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "Entfernte Konten" +#: mod/settings.php:328 +msgid "Relocate message has been send to your contacts" +msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." -#: mod/crepair.php:181 -msgid "Mirror postings from this contact" -msgstr "Spiegle Beiträge dieses Kontakts" +#: mod/settings.php:342 include/user.php:39 +msgid "Passwords do not match. Password unchanged." +msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." -#: mod/crepair.php:181 +#: mod/settings.php:347 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." + +#: mod/settings.php:355 +msgid "Wrong password." +msgstr "Falsches Passwort." + +#: mod/settings.php:366 +msgid "Password changed." +msgstr "Passwort geändert." + +#: mod/settings.php:368 +msgid "Password update failed. Please try again." +msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." + +#: mod/settings.php:435 +msgid " Please use a shorter name." +msgstr " Bitte verwende einen kürzeren Namen." + +#: mod/settings.php:437 +msgid " Name too short." +msgstr " Name ist zu kurz." + +#: mod/settings.php:446 +msgid "Wrong Password" +msgstr "Falsches Passwort" + +#: mod/settings.php:451 +msgid " Not valid email." +msgstr " Keine gültige E-Mail." + +#: mod/settings.php:457 +msgid " Cannot change to that email." +msgstr "Ändern der E-Mail nicht möglich. " + +#: mod/settings.php:513 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt." + +#: mod/settings.php:517 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte." + +#: mod/settings.php:547 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." + +#: mod/settings.php:620 mod/settings.php:646 mod/settings.php:682 +msgid "Add application" +msgstr "Programm hinzufügen" + +#: mod/settings.php:624 mod/settings.php:650 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: mod/settings.php:625 mod/settings.php:651 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: mod/settings.php:626 mod/settings.php:652 +msgid "Redirect" +msgstr "Umleiten" + +#: mod/settings.php:627 mod/settings.php:653 +msgid "Icon url" +msgstr "Icon URL" + +#: mod/settings.php:638 +msgid "You can't edit this application." +msgstr "Du kannst dieses Programm nicht bearbeiten." + +#: mod/settings.php:681 +msgid "Connected Apps" +msgstr "Verbundene Programme" + +#: mod/settings.php:685 +msgid "Client key starts with" +msgstr "Anwenderschlüssel beginnt mit" + +#: mod/settings.php:686 +msgid "No name" +msgstr "Kein Name" + +#: mod/settings.php:687 +msgid "Remove authorization" +msgstr "Autorisierung entziehen" + +#: mod/settings.php:699 +msgid "No Plugin settings configured" +msgstr "Keine Plugin-Einstellungen konfiguriert" + +#: mod/settings.php:707 +msgid "Plugin Settings" +msgstr "Plugin-Einstellungen" + +#: mod/settings.php:721 +msgid "Off" +msgstr "Aus" + +#: mod/settings.php:721 +msgid "On" +msgstr "An" + +#: mod/settings.php:729 +msgid "Additional Features" +msgstr "Zusätzliche Features" + +#: mod/settings.php:739 mod/settings.php:743 +msgid "General Social Media Settings" +msgstr "Allgemeine Einstellungen zu Sozialen Medien" + +#: mod/settings.php:749 +msgid "Disable intelligent shortening" +msgstr "Intelligentes Link kürzen ausschalten" + +#: mod/settings.php:751 msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden." +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt." -#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:148 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: view/theme/diabook/theme.php:124 include/nav.php:77 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Deine Kontakte" - -#: view/theme/diabook/theme.php:126 include/nav.php:78 -msgid "Your photos" -msgstr "Deine Fotos" - -#: view/theme/diabook/theme.php:127 include/nav.php:80 -msgid "Your events" -msgstr "Deine Ereignisse" - -#: view/theme/diabook/theme.php:128 include/nav.php:81 -msgid "Personal notes" -msgstr "Persönliche Notizen" - -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Deine privaten Fotos" - -#: view/theme/diabook/theme.php:130 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:624 view/theme/diabook/config.php:158 -msgid "Community Pages" -msgstr "Foren" - -#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 -#: view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "Community-Profile" - -#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 -#: view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "Letzte Nutzer" - -#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 -#: view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "Zuletzt gemocht" - -#: view/theme/diabook/theme.php:463 include/text.php:1998 -#: include/conversation.php:118 include/conversation.php:245 -msgid "event" -msgstr "Veranstaltung" - -#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 -#: view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "Letzte Fotos" - -#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 -#: view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "Freunde finden" - -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokales Verzeichnis" - -#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Ähnliche Interessen" - -#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Freunde einladen" - -#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 -#: view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Zoomfaktor der Earth Layer" - -#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitude (X) der Earth Layer" - -#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitude (Y) der Earth Layer" - -#: view/theme/diabook/theme.php:599 view/theme/diabook/theme.php:627 -#: view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" -msgstr "Hilfe oder @NewHere" - -#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 -#: view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "Verbinde Dienste" - -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:337 -msgid "don't show" -msgstr "nicht zeigen" - -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:336 -msgid "show" -msgstr "zeigen" - -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" - -#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 -#: view/theme/dispy/config.php:72 view/theme/duepuntozero/config.php:61 -#: view/theme/quattro/config.php:66 view/theme/cleanzero/config.php:82 -msgid "Theme settings" -msgstr "Themeneinstellungen" - -#: view/theme/diabook/config.php:151 view/theme/dispy/config.php:73 -#: view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "Schriftgröße für Beiträge und Kommentare festlegen" - -#: view/theme/diabook/config.php:152 view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Liniengröße für Beiträge und Kommantare festlegen" - -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Auflösung für die Mittelspalte setzen" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Wähle Farbschema" - -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Zoomfaktor der Earth Layer" - -#: view/theme/vier/config.php:59 -msgid "Set style" -msgstr "Stil auswählen" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Farbschema wählen" - -#: view/theme/duepuntozero/config.php:44 include/text.php:1734 -#: include/user.php:247 -msgid "default" -msgstr "Standard" - -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Variationen" - -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Ausrichtung" - -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Links" - -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Mitte" - -#: view/theme/quattro/config.php:68 view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "Farbschema" - -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Schriftgröße in Beiträgen" - -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Schriftgröße in Eingabefeldern" - -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)" - -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Theme Breite festlegen" - -#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 -msgid "Drop contact" -msgstr "Kontakt löschen" - -#: boot.php:753 -msgid "Delete this item?" -msgstr "Diesen Beitrag löschen?" - -#: boot.php:756 -msgid "show fewer" -msgstr "weniger anzeigen" - -#: boot.php:1130 +#: mod/settings.php:761 mod/settings.php:762 #, php-format -msgid "Update %s failed. See error logs." -msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." +msgid "Built-in support for %s connectivity is %s" +msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s" -#: boot.php:1237 -msgid "Create a New Account" -msgstr "Neues Konto erstellen" +#: mod/settings.php:761 mod/settings.php:762 +msgid "enabled" +msgstr "eingeschaltet" -#: boot.php:1262 include/nav.php:73 -msgid "Logout" -msgstr "Abmelden" +#: mod/settings.php:761 mod/settings.php:762 +msgid "disabled" +msgstr "ausgeschaltet" -#: boot.php:1265 -msgid "Nickname or Email address: " -msgstr "Spitzname oder E-Mail-Adresse: " +#: mod/settings.php:762 +msgid "StatusNet" +msgstr "StatusNet" -#: boot.php:1266 -msgid "Password: " -msgstr "Passwort: " +#: mod/settings.php:798 +msgid "Email access is disabled on this site." +msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." -#: boot.php:1267 -msgid "Remember me" -msgstr "Anmeldedaten merken" +#: mod/settings.php:810 +msgid "Email/Mailbox Setup" +msgstr "E-Mail/Postfach-Einstellungen" -#: boot.php:1270 -msgid "Or login using OpenID: " -msgstr "Oder melde Dich mit Deiner OpenID an: " +#: mod/settings.php:811 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an." -#: boot.php:1276 -msgid "Forgot your password?" -msgstr "Passwort vergessen?" +#: mod/settings.php:812 +msgid "Last successful email check:" +msgstr "Letzter erfolgreicher E-Mail Check" -#: boot.php:1279 -msgid "Website Terms of Service" -msgstr "Website Nutzungsbedingungen" +#: mod/settings.php:814 +msgid "IMAP server name:" +msgstr "IMAP-Server-Name:" -#: boot.php:1280 -msgid "terms of service" -msgstr "Nutzungsbedingungen" +#: mod/settings.php:815 +msgid "IMAP port:" +msgstr "IMAP-Port:" -#: boot.php:1282 -msgid "Website Privacy Policy" -msgstr "Website Datenschutzerklärung" +#: mod/settings.php:816 +msgid "Security:" +msgstr "Sicherheit:" -#: boot.php:1283 -msgid "privacy policy" -msgstr "Datenschutzerklärung" +#: mod/settings.php:816 mod/settings.php:821 +msgid "None" +msgstr "Keine" + +#: mod/settings.php:817 +msgid "Email login name:" +msgstr "E-Mail-Login-Name:" + +#: mod/settings.php:818 +msgid "Email password:" +msgstr "E-Mail-Passwort:" + +#: mod/settings.php:819 +msgid "Reply-to address:" +msgstr "Reply-to Adresse:" + +#: mod/settings.php:820 +msgid "Send public posts to all email contacts:" +msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" + +#: mod/settings.php:821 +msgid "Action after import:" +msgstr "Aktion nach Import:" + +#: mod/settings.php:821 +msgid "Mark as seen" +msgstr "Als gelesen markieren" + +#: mod/settings.php:821 +msgid "Move to folder" +msgstr "In einen Ordner verschieben" + +#: mod/settings.php:822 +msgid "Move to folder:" +msgstr "In diesen Ordner verschieben:" + +#: mod/settings.php:903 +msgid "Display Settings" +msgstr "Anzeige-Einstellungen" + +#: mod/settings.php:909 mod/settings.php:925 +msgid "Display Theme:" +msgstr "Theme:" + +#: mod/settings.php:910 +msgid "Mobile Theme:" +msgstr "Mobiles Theme" + +#: mod/settings.php:911 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" + +#: mod/settings.php:911 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimal 10 Sekunden, kein Maximum" + +#: mod/settings.php:912 +msgid "Number of items to display per page:" +msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " + +#: mod/settings.php:912 mod/settings.php:913 +msgid "Maximum of 100 items" +msgstr "Maximal 100 Beiträge" + +#: mod/settings.php:913 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" + +#: mod/settings.php:914 +msgid "Don't show emoticons" +msgstr "Keine Smilies anzeigen" + +#: mod/settings.php:915 +msgid "Don't show notices" +msgstr "Info-Popups nicht anzeigen" + +#: mod/settings.php:916 +msgid "Infinite scroll" +msgstr "Endloses Scrollen" + +#: mod/settings.php:917 +msgid "Automatic updates only at the top of the network page" +msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist." + +#: mod/settings.php:995 +msgid "User Types" +msgstr "Nutzer Art" + +#: mod/settings.php:996 +msgid "Community Types" +msgstr "Gemeinschafts Art" + +#: mod/settings.php:997 +msgid "Normal Account Page" +msgstr "Normales Konto" + +#: mod/settings.php:998 +msgid "This account is a normal personal profile" +msgstr "Dieses Konto ist ein normales persönliches Profil" + +#: mod/settings.php:1001 +msgid "Soapbox Page" +msgstr "Marktschreier-Konto" + +#: mod/settings.php:1002 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" + +#: mod/settings.php:1005 +msgid "Community Forum/Celebrity Account" +msgstr "Forum/Promi-Konto" + +#: mod/settings.php:1006 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" + +#: mod/settings.php:1009 +msgid "Automatic Friend Page" +msgstr "Automatische Freunde Seite" + +#: mod/settings.php:1010 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" + +#: mod/settings.php:1013 +msgid "Private Forum [Experimental]" +msgstr "Privates Forum [Versuchsstadium]" + +#: mod/settings.php:1014 +msgid "Private forum - approved members only" +msgstr "Privates Forum, nur für Mitglieder" + +#: mod/settings.php:1026 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1026 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." + +#: mod/settings.php:1036 +msgid "Publish your default profile in your local site directory?" +msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" + +#: mod/settings.php:1042 +msgid "Publish your default profile in the global social directory?" +msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" + +#: mod/settings.php:1050 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" + +#: mod/settings.php:1054 include/acl_selectors.php:330 +msgid "Hide your profile details from unknown viewers?" +msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" + +#: mod/settings.php:1054 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich" + +#: mod/settings.php:1059 +msgid "Allow friends to post to your profile page?" +msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" + +#: mod/settings.php:1065 +msgid "Allow friends to tag your posts?" +msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" + +#: mod/settings.php:1071 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" + +#: mod/settings.php:1077 +msgid "Permit unknown people to send you private mail?" +msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" + +#: mod/settings.php:1085 +msgid "Profile is not published." +msgstr "Profil ist nicht veröffentlicht." + +#: mod/settings.php:1093 +msgid "Your Identity Address is" +msgstr "Die Adresse Deines Profils lautet:" + +#: mod/settings.php:1102 +msgid "Automatically expire posts after this many days:" +msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" + +#: mod/settings.php:1102 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." + +#: mod/settings.php:1103 +msgid "Advanced expiration settings" +msgstr "Erweiterte Verfallseinstellungen" + +#: mod/settings.php:1104 +msgid "Advanced Expiration" +msgstr "Erweitertes Verfallen" + +#: mod/settings.php:1105 +msgid "Expire posts:" +msgstr "Beiträge verfallen lassen:" + +#: mod/settings.php:1106 +msgid "Expire personal notes:" +msgstr "Persönliche Notizen verfallen lassen:" + +#: mod/settings.php:1107 +msgid "Expire starred posts:" +msgstr "Markierte Beiträge verfallen lassen:" + +#: mod/settings.php:1108 +msgid "Expire photos:" +msgstr "Fotos verfallen lassen:" + +#: mod/settings.php:1109 +msgid "Only expire posts by others:" +msgstr "Nur Beiträge anderer verfallen:" + +#: mod/settings.php:1135 +msgid "Account Settings" +msgstr "Kontoeinstellungen" + +#: mod/settings.php:1143 +msgid "Password Settings" +msgstr "Passwort-Einstellungen" + +#: mod/settings.php:1145 +msgid "Leave password fields blank unless changing" +msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" + +#: mod/settings.php:1146 +msgid "Current Password:" +msgstr "Aktuelles Passwort:" + +#: mod/settings.php:1146 mod/settings.php:1147 +msgid "Your current password to confirm the changes" +msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" + +#: mod/settings.php:1147 +msgid "Password:" +msgstr "Passwort:" + +#: mod/settings.php:1151 +msgid "Basic Settings" +msgstr "Grundeinstellungen" + +#: mod/settings.php:1152 include/identity.php:538 +msgid "Full Name:" +msgstr "Kompletter Name:" + +#: mod/settings.php:1153 +msgid "Email Address:" +msgstr "E-Mail-Adresse:" + +#: mod/settings.php:1154 +msgid "Your Timezone:" +msgstr "Deine Zeitzone:" + +#: mod/settings.php:1155 +msgid "Default Post Location:" +msgstr "Standardstandort:" + +#: mod/settings.php:1156 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" + +#: mod/settings.php:1159 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Privatsphäre-Einstellungen" + +#: mod/settings.php:1161 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" + +#: mod/settings.php:1161 mod/settings.php:1191 +msgid "(to prevent spam abuse)" +msgstr "(um SPAM zu vermeiden)" + +#: mod/settings.php:1162 +msgid "Default Post Permissions" +msgstr "Standard-Zugriffsrechte für Beiträge" + +#: mod/settings.php:1163 +msgid "(click to open/close)" +msgstr "(klicke zum öffnen/schließen)" + +#: mod/settings.php:1174 +msgid "Default Private Post" +msgstr "Privater Standardbeitrag" + +#: mod/settings.php:1175 +msgid "Default Public Post" +msgstr "Öffentlicher Standardbeitrag" + +#: mod/settings.php:1179 +msgid "Default Permissions for New Posts" +msgstr "Standardberechtigungen für neue Beiträge" + +#: mod/settings.php:1191 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" + +#: mod/settings.php:1194 +msgid "Notification Settings" +msgstr "Benachrichtigungseinstellungen" + +#: mod/settings.php:1195 +msgid "By default post a status message when:" +msgstr "Standardmäßig eine Statusnachricht posten, wenn:" + +#: mod/settings.php:1196 +msgid "accepting a friend request" +msgstr "– Du eine Kontaktanfrage akzeptierst" + +#: mod/settings.php:1197 +msgid "joining a forum/community" +msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" + +#: mod/settings.php:1198 +msgid "making an interesting profile change" +msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" + +#: mod/settings.php:1199 +msgid "Send a notification email when:" +msgstr "Benachrichtigungs-E-Mail senden wenn:" + +#: mod/settings.php:1200 +msgid "You receive an introduction" +msgstr "– Du eine Kontaktanfrage erhältst" + +#: mod/settings.php:1201 +msgid "Your introductions are confirmed" +msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" + +#: mod/settings.php:1202 +msgid "Someone writes on your profile wall" +msgstr "– jemand etwas auf Deine Pinnwand schreibt" + +#: mod/settings.php:1203 +msgid "Someone writes a followup comment" +msgstr "– jemand auch einen Kommentar verfasst" + +#: mod/settings.php:1204 +msgid "You receive a private message" +msgstr "– Du eine private Nachricht erhältst" + +#: mod/settings.php:1205 +msgid "You receive a friend suggestion" +msgstr "– Du eine Empfehlung erhältst" + +#: mod/settings.php:1206 +msgid "You are tagged in a post" +msgstr "– Du in einem Beitrag erwähnt wirst" + +#: mod/settings.php:1207 +msgid "You are poked/prodded/etc. in a post" +msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" + +#: mod/settings.php:1209 +msgid "Activate desktop notifications" +msgstr "Desktop Benachrichtigungen einschalten" + +#: mod/settings.php:1209 +msgid "Show desktop popup on new notifications" +msgstr "Desktop Benachrichtigungen einschalten" + +#: mod/settings.php:1211 +msgid "Text-only notification emails" +msgstr "Benachrichtigungs E-Mail als Rein-Text." + +#: mod/settings.php:1213 +msgid "Send text only notification emails, without the html part" +msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" + +#: mod/settings.php:1215 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" + +#: mod/settings.php:1216 +msgid "Change the behaviour of this account for special situations" +msgstr "Verhalten dieses Kontos in bestimmten Situationen:" + +#: mod/settings.php:1219 +msgid "Relocate" +msgstr "Umziehen" + +#: mod/settings.php:1220 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button." + +#: mod/settings.php:1221 +msgid "Resend relocate message to contacts" +msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" + +#: mod/bookmarklet.php:12 include/nav.php:92 boot.php:1263 +msgid "Login" +msgstr "Anmeldung" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "Der Beitrag wurde angelegt" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Dies ist Friendica, Version" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "die unter folgender Webadresse zu finden ist" + +#: mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." + +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" + +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "dem Bugtracker auf github" + +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com" + +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Erweiterungen/Apps" + +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Keine Plugins/Erweiterungen/Apps installiert" + +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Neuen Kontakt hinzufügen" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Adresse oder Web-Link eingeben" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@example.com, http://example.com/barbara" + +#: include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Leute finden" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" + +#: include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiel: Robert Morgenstein, Angeln" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Zufälliges Profil" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "Netzwerke" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Alle Netzwerke" + +#: include/contact_widgets.php:104 include/features.php:60 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "Alles" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "Kategorien" + +#: include/plugin.php:455 include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Zum Upgraden hier klicken." + +#: include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." + +#: include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." + +#: include/dba_pdo.php:72 include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." + +#: include/auth.php:38 +msgid "Logged out." +msgstr "Abgemeldet." + +#: include/auth.php:128 include/user.php:75 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast." + +#: include/auth.php:128 include/user.php:75 +msgid "The error message was:" +msgstr "Die Fehlermeldung lautete:" + +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Fehler beim Verarbeiten der Account Datei" + +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?" + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Fehler! Konnte den Nickname nicht überprüfen." + +#: include/uimport.php:120 include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Nutzer '%s' existiert bereits auf diesem Server!" + +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" + +#: include/uimport.php:171 +msgid "User profile creation error" +msgstr "Fehler beim Anlegen des Nutzerkontos" + +#: include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d Kontakt nicht importiert" +msgstr[1] "%d Kontakte nicht importiert" + +#: include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden" + +#: include/message.php:15 include/message.php:172 +msgid "[no subject]" +msgstr "[kein Betreff]" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Unbekannt | Nicht kategorisiert" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Sofort blockieren" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Zwielichtig, Spammer, Selbstdarsteller" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Ist mir bekannt, hab aber keine Meinung" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, wahrscheinlich harmlos" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Seriös, hat mein Vertrauen" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monatlich" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zott" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/Chat" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora" + +#: include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "StatusNet" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" #: include/features.php:23 msgid "General Features" @@ -5968,10 +6227,6 @@ msgstr "Beitragskategorien" msgid "Add categories to your posts" msgstr "Eigene Beiträge mit Kategorien versehen" -#: include/features.php:60 include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - #: include/features.php:60 msgid "Ability to file posts under folders" msgstr "Beiträge in Ordnern speichern aktivieren" @@ -6000,608 +6255,6 @@ msgstr "Benachrichtigungen für Beiträge Stumm schalten" msgid "Ability to mute notifications for a thread" msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können" -#: include/auth.php:38 -msgid "Logged out." -msgstr "Abgemeldet." - -#: include/auth.php:128 include/user.php:67 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast." - -#: include/auth.php:128 include/user.php:67 -msgid "The error message was:" -msgstr "Die Fehlermeldung lautete:" - -#: include/event.php:22 include/bb2diaspora.php:145 -msgid "Starts:" -msgstr "Beginnt:" - -#: include/event.php:32 include/bb2diaspora.php:153 -msgid "Finishes:" -msgstr "Endet:" - -#: include/message.php:15 include/message.php:172 -msgid "[no subject]" -msgstr "[kein Betreff]" - -#: include/Scrape.php:608 -msgid " on Last.fm" -msgstr " bei Last.fm" - -#: include/text.php:299 -msgid "newer" -msgstr "neuer" - -#: include/text.php:301 -msgid "older" -msgstr "älter" - -#: include/text.php:306 -msgid "prev" -msgstr "vorige" - -#: include/text.php:308 -msgid "first" -msgstr "erste" - -#: include/text.php:340 -msgid "last" -msgstr "letzte" - -#: include/text.php:343 -msgid "next" -msgstr "nächste" - -#: include/text.php:398 -msgid "Loading more entries..." -msgstr "lade weitere Einträge..." - -#: include/text.php:399 -msgid "The end" -msgstr "Das Ende" - -#: include/text.php:878 -msgid "No contacts" -msgstr "Keine Kontakte" - -#: include/text.php:887 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d Kontakt" -msgstr[1] "%d Kontakte" - -#: include/text.php:1027 -msgid "poke" -msgstr "anstupsen" - -#: include/text.php:1027 -msgid "poked" -msgstr "stupste" - -#: include/text.php:1028 -msgid "ping" -msgstr "anpingen" - -#: include/text.php:1028 -msgid "pinged" -msgstr "pingte" - -#: include/text.php:1029 -msgid "prod" -msgstr "knuffen" - -#: include/text.php:1029 -msgid "prodded" -msgstr "knuffte" - -#: include/text.php:1030 -msgid "slap" -msgstr "ohrfeigen" - -#: include/text.php:1030 -msgid "slapped" -msgstr "ohrfeigte" - -#: include/text.php:1031 -msgid "finger" -msgstr "befummeln" - -#: include/text.php:1031 -msgid "fingered" -msgstr "befummelte" - -#: include/text.php:1032 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: include/text.php:1032 -msgid "rebuffed" -msgstr "abfuhrerteilte" - -#: include/text.php:1046 -msgid "happy" -msgstr "glücklich" - -#: include/text.php:1047 -msgid "sad" -msgstr "traurig" - -#: include/text.php:1048 -msgid "mellow" -msgstr "sanft" - -#: include/text.php:1049 -msgid "tired" -msgstr "müde" - -#: include/text.php:1050 -msgid "perky" -msgstr "frech" - -#: include/text.php:1051 -msgid "angry" -msgstr "sauer" - -#: include/text.php:1052 -msgid "stupified" -msgstr "verblüfft" - -#: include/text.php:1053 -msgid "puzzled" -msgstr "verwirrt" - -#: include/text.php:1054 -msgid "interested" -msgstr "interessiert" - -#: include/text.php:1055 -msgid "bitter" -msgstr "verbittert" - -#: include/text.php:1056 -msgid "cheerful" -msgstr "fröhlich" - -#: include/text.php:1057 -msgid "alive" -msgstr "lebendig" - -#: include/text.php:1058 -msgid "annoyed" -msgstr "verärgert" - -#: include/text.php:1059 -msgid "anxious" -msgstr "unruhig" - -#: include/text.php:1060 -msgid "cranky" -msgstr "schrullig" - -#: include/text.php:1061 -msgid "disturbed" -msgstr "verstört" - -#: include/text.php:1062 -msgid "frustrated" -msgstr "frustriert" - -#: include/text.php:1063 -msgid "motivated" -msgstr "motiviert" - -#: include/text.php:1064 -msgid "relaxed" -msgstr "entspannt" - -#: include/text.php:1065 -msgid "surprised" -msgstr "überrascht" - -#: include/text.php:1235 -msgid "Monday" -msgstr "Montag" - -#: include/text.php:1235 -msgid "Tuesday" -msgstr "Dienstag" - -#: include/text.php:1235 -msgid "Wednesday" -msgstr "Mittwoch" - -#: include/text.php:1235 -msgid "Thursday" -msgstr "Donnerstag" - -#: include/text.php:1235 -msgid "Friday" -msgstr "Freitag" - -#: include/text.php:1235 -msgid "Saturday" -msgstr "Samstag" - -#: include/text.php:1235 -msgid "Sunday" -msgstr "Sonntag" - -#: include/text.php:1239 -msgid "January" -msgstr "Januar" - -#: include/text.php:1239 -msgid "February" -msgstr "Februar" - -#: include/text.php:1239 -msgid "March" -msgstr "März" - -#: include/text.php:1239 -msgid "April" -msgstr "April" - -#: include/text.php:1239 -msgid "May" -msgstr "Mai" - -#: include/text.php:1239 -msgid "June" -msgstr "Juni" - -#: include/text.php:1239 -msgid "July" -msgstr "Juli" - -#: include/text.php:1239 -msgid "August" -msgstr "August" - -#: include/text.php:1239 -msgid "September" -msgstr "September" - -#: include/text.php:1239 -msgid "October" -msgstr "Oktober" - -#: include/text.php:1239 -msgid "November" -msgstr "November" - -#: include/text.php:1239 -msgid "December" -msgstr "Dezember" - -#: include/text.php:1461 -msgid "bytes" -msgstr "Byte" - -#: include/text.php:1493 include/text.php:1505 -msgid "Click to open/close" -msgstr "Zum öffnen/schließen klicken" - -#: include/text.php:1746 -msgid "Select an alternate language" -msgstr "Alternative Sprache auswählen" - -#: include/text.php:2002 -msgid "activity" -msgstr "Aktivität" - -#: include/text.php:2005 -msgid "post" -msgstr "Beitrag" - -#: include/text.php:2173 -msgid "Item filed" -msgstr "Beitrag abgelegt" - -#: include/api.php:310 include/api.php:321 include/api.php:430 -#: include/api.php:1133 include/api.php:1135 -msgid "User not found." -msgstr "Nutzer nicht gefunden." - -#: include/api.php:784 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." - -#: include/api.php:803 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." - -#: include/api.php:822 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." - -#: include/api.php:1342 -msgid "There is no status with this id." -msgstr "Es gibt keinen Status mit dieser ID." - -#: include/api.php:1416 -msgid "There is no conversation with this id." -msgstr "Es existiert keine Unterhaltung mit dieser ID." - -#: include/api.php:1686 -msgid "Invalid request." -msgstr "Ungültige Anfrage" - -#: include/api.php:1697 -msgid "Invalid item." -msgstr "Ungültiges Objekt" - -#: include/api.php:1707 -msgid "Invalid action. " -msgstr "Ungültige Aktion" - -#: include/api.php:1715 -msgid "DB error" -msgstr "DB Error" - -#: include/dba.php:56 include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." - -#: include/items.php:2431 include/datetime.php:459 -#, php-format -msgid "%s's birthday" -msgstr "%ss Geburtstag" - -#: include/items.php:2432 include/datetime.php:460 -#, php-format -msgid "Happy Birthday %s" -msgstr "Herzlichen Glückwunsch %s" - -#: include/items.php:4852 -msgid "Do you really want to delete this item?" -msgstr "Möchtest Du wirklich dieses Item löschen?" - -#: include/items.php:5127 -msgid "Archives" -msgstr "Archiv" - -#: include/delivery.php:456 include/notifier.php:825 -msgid "(no subject)" -msgstr "(kein Betreff)" - -#: include/delivery.php:467 include/notifier.php:835 include/enotify.php:33 -msgid "noreply" -msgstr "noreply" - -#: include/diaspora.php:705 -msgid "Sharing notification from Diaspora network" -msgstr "Freigabe-Benachrichtigung von Diaspora" - -#: include/diaspora.php:2539 -msgid "Attachments:" -msgstr "Anhänge:" - -#: include/identity.php:38 -msgid "Requested account is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: include/identity.php:121 include/identity.php:255 include/identity.php:607 -msgid "Edit profile" -msgstr "Profil bearbeiten" - -#: include/identity.php:220 -msgid "Message" -msgstr "Nachricht" - -#: include/identity.php:226 include/nav.php:176 -msgid "Profiles" -msgstr "Profile" - -#: include/identity.php:226 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/editieren" - -#: include/identity.php:341 -msgid "Network:" -msgstr "Netzwerk" - -#: include/identity.php:373 include/identity.php:459 -msgid "g A l F d" -msgstr "l, d. F G \\U\\h\\r" - -#: include/identity.php:374 include/identity.php:460 -msgid "F d" -msgstr "d. F" - -#: include/identity.php:419 include/identity.php:506 -msgid "[today]" -msgstr "[heute]" - -#: include/identity.php:431 -msgid "Birthday Reminders" -msgstr "Geburtstagserinnerungen" - -#: include/identity.php:432 -msgid "Birthdays this week:" -msgstr "Geburtstage diese Woche:" - -#: include/identity.php:493 -msgid "[No description]" -msgstr "[keine Beschreibung]" - -#: include/identity.php:517 -msgid "Event Reminders" -msgstr "Veranstaltungserinnerungen" - -#: include/identity.php:518 -msgid "Events this week:" -msgstr "Veranstaltungen diese Woche" - -#: include/identity.php:545 -msgid "j F, Y" -msgstr "j F, Y" - -#: include/identity.php:546 -msgid "j F" -msgstr "j F" - -#: include/identity.php:553 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: include/identity.php:557 -msgid "Age:" -msgstr "Alter:" - -#: include/identity.php:566 -#, php-format -msgid "for %1$d %2$s" -msgstr "für %1$d %2$s" - -#: include/identity.php:575 -msgid "Tags:" -msgstr "Tags" - -#: include/identity.php:579 -msgid "Religion:" -msgstr "Religion:" - -#: include/identity.php:583 -msgid "Hobbies/Interests:" -msgstr "Hobbies/Interessen:" - -#: include/identity.php:590 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformationen und Soziale Netzwerke:" - -#: include/identity.php:592 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" - -#: include/identity.php:594 -msgid "Books, literature:" -msgstr "Literatur/Bücher:" - -#: include/identity.php:596 -msgid "Television:" -msgstr "Fernsehen:" - -#: include/identity.php:598 -msgid "Film/dance/culture/entertainment:" -msgstr "Filme/Tänze/Kultur/Unterhaltung:" - -#: include/identity.php:600 -msgid "Love/Romance:" -msgstr "Liebesleben:" - -#: include/identity.php:602 -msgid "Work/employment:" -msgstr "Arbeit/Beschäftigung:" - -#: include/identity.php:604 -msgid "School/education:" -msgstr "Schule/Ausbildung:" - -#: include/identity.php:632 include/nav.php:76 -msgid "Status" -msgstr "Status" - -#: include/identity.php:635 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: include/identity.php:642 -msgid "Profile Details" -msgstr "Profildetails" - -#: include/identity.php:653 include/identity.php:656 include/nav.php:79 -msgid "Videos" -msgstr "Videos" - -#: include/identity.php:666 -msgid "Events and Calendar" -msgstr "Ereignisse und Kalender" - -#: include/identity.php:673 -msgid "Only You Can See This" -msgstr "Nur Du kannst das sehen" - -#: include/follow.php:32 -msgid "Connect URL missing." -msgstr "Connect-URL fehlt" - -#: include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann." - -#: include/follow.php:60 include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." - -#: include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." - -#: include/follow.php:82 -msgid "An author or name was not found." -msgstr "Es wurde kein Autor oder Name gefunden." - -#: include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." - -#: include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." - -#: include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." - -#: include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." - -#: include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können." - -#: include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Konnte die Kontaktinformationen nicht empfangen." - -#: include/follow.php:258 -msgid "following" -msgstr "folgen" - -#: include/security.php:22 -msgid "Welcome " -msgstr "Willkommen " - -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Bitte lade ein Profilbild hoch." - -#: include/security.php:26 -msgid "Welcome back " -msgstr "Willkommen zurück " - -#: include/security.php:375 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." - #: include/profile_selectors.php:6 msgid "Male" msgstr "Männlich" @@ -6746,7 +6399,7 @@ msgstr "Untreu" msgid "Sex Addict" msgstr "Sexbesessen" -#: include/profile_selectors.php:42 include/user.php:289 include/user.php:293 +#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 msgid "Friends" msgstr "Freunde" @@ -6834,53 +6487,137 @@ msgstr "Ist mir nicht wichtig" msgid "Ask me" msgstr "Frag mich" -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Fehler beim Verarbeiten der Account Datei" +#: include/Contact.php:119 +msgid "stopped following" +msgstr "wird nicht mehr gefolgt" -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?" +#: include/Contact.php:232 include/conversation.php:881 +msgid "Poke" +msgstr "Anstupsen" -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Fehler! Konnte den Nickname nicht überprüfen." +#: include/Contact.php:233 include/conversation.php:875 +msgid "View Status" +msgstr "Pinnwand anschauen" -#: include/uimport.php:120 include/uimport.php:131 +#: include/Contact.php:234 include/conversation.php:876 +msgid "View Profile" +msgstr "Profil anschauen" + +#: include/Contact.php:235 include/conversation.php:877 +msgid "View Photos" +msgstr "Bilder anschauen" + +#: include/Contact.php:236 include/Contact.php:259 +#: include/conversation.php:878 +msgid "Network Posts" +msgstr "Netzwerkbeiträge" + +#: include/Contact.php:237 include/Contact.php:259 +#: include/conversation.php:879 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" + +#: include/Contact.php:238 +msgid "Drop Contact" +msgstr "Kontakt löschen" + +#: include/Contact.php:239 include/Contact.php:259 +#: include/conversation.php:880 +msgid "Send PM" +msgstr "Private Nachricht senden" + +#: include/Scrape.php:608 +msgid " on Last.fm" +msgstr " bei Last.fm" + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "An E-Mail senden" + +#: include/acl_selectors.php:329 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "Nutzer '%s' existiert bereits auf diesem Server!" +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." -#: include/uimport.php:153 -msgid "User creation error" -msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" +#: include/acl_selectors.php:335 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" -#: include/uimport.php:171 -msgid "User profile creation error" -msgstr "Fehler beim Anlegen des Nutzerkontos" +#: include/api.php:310 include/api.php:321 include/api.php:430 +#: include/api.php:1133 include/api.php:1135 +msgid "User not found." +msgstr "Nutzer nicht gefunden." -#: include/uimport.php:220 +#: include/api.php:784 #, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d Kontakt nicht importiert" -msgstr[1] "%d Kontakte nicht importiert" +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." -#: include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden" +#: include/api.php:803 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." -#: include/plugin.php:455 include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Zum Upgraden hier klicken." +#: include/api.php:822 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." -#: include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." +#: include/api.php:1342 +msgid "There is no status with this id." +msgstr "Es gibt keinen Status mit dieser ID." -#: include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." +#: include/api.php:1416 +msgid "There is no conversation with this id." +msgstr "Es existiert keine Unterhaltung mit dieser ID." + +#: include/api.php:1686 +msgid "Invalid request." +msgstr "Ungültige Anfrage" + +#: include/api.php:1697 +msgid "Invalid item." +msgstr "Ungültiges Objekt" + +#: include/api.php:1707 +msgid "Invalid action. " +msgstr "Ungültige Aktion" + +#: include/api.php:1715 +msgid "DB error" +msgstr "DB Error" + +#: include/bb2diaspora.php:145 include/event.php:22 +msgid "Starts:" +msgstr "Beginnt:" + +#: include/bb2diaspora.php:153 include/event.php:32 +msgid "Finishes:" +msgstr "Endet:" + +#: include/bbcode.php:451 include/bbcode.php:1101 include/bbcode.php:1102 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: include/bbcode.php:549 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:583 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s schrieb den folgenden Beitrag" + +#: include/bbcode.php:1065 include/bbcode.php:1085 +msgid "$1 wrote:" +msgstr "$1 hat geschrieben:" + +#: include/bbcode.php:1110 include/bbcode.php:1111 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" #: include/conversation.php:206 #, php-format @@ -6908,37 +6645,6 @@ msgstr "Lösche die markierten Beiträge" msgid "Follow Thread" msgstr "Folge der Unterhaltung" -#: include/conversation.php:875 include/Contact.php:233 -msgid "View Status" -msgstr "Pinnwand anschauen" - -#: include/conversation.php:876 include/Contact.php:234 -msgid "View Profile" -msgstr "Profil anschauen" - -#: include/conversation.php:877 include/Contact.php:235 -msgid "View Photos" -msgstr "Bilder anschauen" - -#: include/conversation.php:878 include/Contact.php:236 -#: include/Contact.php:259 -msgid "Network Posts" -msgstr "Netzwerkbeiträge" - -#: include/conversation.php:879 include/Contact.php:237 -#: include/Contact.php:259 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: include/conversation.php:880 include/Contact.php:239 -#: include/Contact.php:259 -msgid "Send PM" -msgstr "Private Nachricht senden" - -#: include/conversation.php:881 include/Contact.php:232 -msgid "Poke" -msgstr "Anstupsen" - #: include/conversation.php:943 #, php-format msgid "%s likes this." @@ -7018,272 +6724,133 @@ msgstr "Poste an Kontakte" msgid "Private post" msgstr "Privater Beitrag" -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Neuen Kontakt hinzufügen" +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Verschiedenes" -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Adresse oder Web-Link eingeben" +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD oder MM-DD" -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@example.com, http://example.com/barbara" +#: include/datetime.php:256 +msgid "never" +msgstr "nie" -#: include/contact_widgets.php:24 +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "vor weniger als einer Sekunde" + +#: include/datetime.php:272 +msgid "year" +msgstr "Jahr" + +#: include/datetime.php:272 +msgid "years" +msgstr "Jahre" + +#: include/datetime.php:273 +msgid "month" +msgstr "Monat" + +#: include/datetime.php:273 +msgid "months" +msgstr "Monate" + +#: include/datetime.php:274 +msgid "week" +msgstr "Woche" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "Wochen" + +#: include/datetime.php:275 +msgid "day" +msgstr "Tag" + +#: include/datetime.php:275 +msgid "days" +msgstr "Tage" + +#: include/datetime.php:276 +msgid "hour" +msgstr "Stunde" + +#: include/datetime.php:276 +msgid "hours" +msgstr "Stunden" + +#: include/datetime.php:277 +msgid "minute" +msgstr "Minute" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "Minuten" + +#: include/datetime.php:278 +msgid "second" +msgstr "Sekunde" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "Sekunden" + +#: include/datetime.php:287 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s her" -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "Leute finden" +#: include/datetime.php:459 include/items.php:2431 +#, php-format +msgid "%s's birthday" +msgstr "%ss Geburtstag" -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" +#: include/datetime.php:460 include/items.php:2432 +#, php-format +msgid "Happy Birthday %s" +msgstr "Herzlichen Glückwunsch %s" -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" +#: include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiel: Robert Morgenstein, Angeln" +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Zufälliges Profil" +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." +msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." -#: include/contact_widgets.php:71 -msgid "Networks" -msgstr "Netzwerke" +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." +msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." -#: include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Alle Netzwerke" +#: include/delivery.php:456 include/notifier.php:825 +msgid "(no subject)" +msgstr "(kein Betreff)" -#: include/contact_widgets.php:107 include/contact_widgets.php:139 -msgid "Everything" -msgstr "Alles" +#: include/delivery.php:467 include/enotify.php:33 include/notifier.php:835 +msgid "noreply" +msgstr "noreply" -#: include/contact_widgets.php:136 -msgid "Categories" -msgstr "Kategorien" +#: include/diaspora.php:705 +msgid "Sharing notification from Diaspora network" +msgstr "Freigabe-Benachrichtigung von Diaspora" -#: include/nav.php:73 -msgid "End this session" -msgstr "Diese Sitzung beenden" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "Deine Videos" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "Deine persönlichen Notizen" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "Anmelden" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Homepage" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Nutzerkonto erstellen" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: include/nav.php:117 -msgid "Apps" -msgstr "Apps" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Addon Anwendungen, Dienstprogramme, Spiele" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "Inhalt der Seite durchsuchen" - -#: include/nav.php:129 -msgid "Conversations on this site" -msgstr "Unterhaltungen auf dieser Seite" - -#: include/nav.php:131 -msgid "Conversations on the network" -msgstr "Unterhaltungen im Netzwerk" - -#: include/nav.php:133 -msgid "Directory" -msgstr "Verzeichnis" - -#: include/nav.php:133 -msgid "People directory" -msgstr "Nutzerverzeichnis" - -#: include/nav.php:135 -msgid "Information" -msgstr "Information" - -#: include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "Informationen zu dieser Friendica Instanz" - -#: include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Unterhaltungen Deiner Kontakte" - -#: include/nav.php:146 -msgid "Network Reset" -msgstr "Netzwerk zurücksetzen" - -#: include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "Netzwerk-Seite ohne Filter laden" - -#: include/nav.php:153 -msgid "Friend Requests" -msgstr "Kontaktanfragen" - -#: include/nav.php:157 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen anzeigen" - -#: include/nav.php:158 -msgid "Mark all system notifications seen" -msgstr "Markiere alle Systembenachrichtigungen als gelesen" - -#: include/nav.php:162 -msgid "Private mail" -msgstr "Private E-Mail" - -#: include/nav.php:163 -msgid "Inbox" -msgstr "Eingang" - -#: include/nav.php:164 -msgid "Outbox" -msgstr "Ausgang" - -#: include/nav.php:168 -msgid "Manage" -msgstr "Verwalten" - -#: include/nav.php:168 -msgid "Manage other pages" -msgstr "Andere Seiten verwalten" - -#: include/nav.php:173 -msgid "Account settings" -msgstr "Kontoeinstellungen" - -#: include/nav.php:176 -msgid "Manage/Edit Profiles" -msgstr "Profile Verwalten/Editieren" - -#: include/nav.php:178 -msgid "Manage/edit friends and contacts" -msgstr "Freunde und Kontakte verwalten/editieren" - -#: include/nav.php:185 -msgid "Site setup and configuration" -msgstr "Einstellungen der Seite und Konfiguration" - -#: include/nav.php:189 -msgid "Navigation" -msgstr "Navigation" - -#: include/nav.php:189 -msgid "Site map" -msgstr "Sitemap" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Unbekannt | Nicht kategorisiert" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Sofort blockieren" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Zwielichtig, Spammer, Selbstdarsteller" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Ist mir bekannt, hab aber keine Meinung" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, wahrscheinlich harmlos" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Seriös, hat mein Vertrauen" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zott" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/Chat" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "StatusNet" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" +#: include/diaspora.php:2539 +msgid "Attachments:" +msgstr "Anhänge:" #: include/enotify.php:18 msgid "Friendica Notification" @@ -7568,157 +7135,60 @@ msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s) msgid "Please visit %s to approve or reject the request." msgstr "Bitte besuche %s um die Anfrage zu bearbeiten." -#: include/user.php:40 -msgid "An invitation is required." -msgstr "Du benötigst eine Einladung." +#: include/follow.php:32 +msgid "Connect URL missing." +msgstr "Connect-URL fehlt" -#: include/user.php:45 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht überprüft werden." - -#: include/user.php:53 -msgid "Invalid OpenID url" -msgstr "Ungültige OpenID URL" - -#: include/user.php:74 -msgid "Please enter the required information." -msgstr "Bitte trage die erforderlichen Informationen ein." - -#: include/user.php:88 -msgid "Please use a shorter name." -msgstr "Bitte verwende einen kürzeren Namen." - -#: include/user.php:90 -msgid "Name too short." -msgstr "Der Name ist zu kurz." - -#: include/user.php:105 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein." - -#: include/user.php:110 -msgid "Your email domain is not among those allowed on this site." -msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt." - -#: include/user.php:113 -msgid "Not a valid email address." -msgstr "Keine gültige E-Mail-Adresse." - -#: include/user.php:126 -msgid "Cannot use that email." -msgstr "Konnte diese E-Mail-Adresse nicht verwenden." - -#: include/user.php:132 +#: include/follow.php:59 msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen." +"This site is not configured to allow communications with other networks." +msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann." -#: include/user.php:138 include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." +#: include/follow.php:60 include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." -#: include/user.php:148 +#: include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." + +#: include/follow.php:82 +msgid "An author or name was not found." +msgstr "Es wurde kein Autor oder Name gefunden." + +#: include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." + +#: include/follow.php:86 msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." -#: include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." +#: include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." -#: include/user.php:222 -msgid "An error occurred during registration. Please try again." -msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." - -#: include/user.php:257 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." - -#: include/user.php:377 -#, php-format +#: include/follow.php:93 msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet." +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." -#: include/user.php:381 -#, php-format +#: include/follow.php:103 msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s." +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können." -#: include/acl_selectors.php:324 -msgid "Post to Email" -msgstr "An E-Mail senden" +#: include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Konnte die Kontaktinformationen nicht empfangen." -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" - -#: include/bbcode.php:451 include/bbcode.php:1101 include/bbcode.php:1102 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: include/bbcode.php:549 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:583 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s schrieb den folgenden Beitrag" - -#: include/bbcode.php:1065 include/bbcode.php:1085 -msgid "$1 wrote:" -msgstr "$1 hat geschrieben:" - -#: include/bbcode.php:1110 include/bbcode.php:1111 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: include/oembed.php:224 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - -#: include/oembed.php:233 -msgid "Embedding disabled" -msgstr "Einbettungen deaktiviert" +#: include/follow.php:258 +msgid "following" +msgstr "folgen" #: include/group.php:25 msgid "" @@ -7751,116 +7221,756 @@ msgstr "Neue Gruppe erstellen" msgid "Contacts not in any group" msgstr "Kontakte in keiner Gruppe" -#: include/Contact.php:119 -msgid "stopped following" -msgstr "wird nicht mehr gefolgt" +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "Kontakt löschen" +#: include/identity.php:121 include/identity.php:255 include/identity.php:607 +msgid "Edit profile" +msgstr "Profil bearbeiten" -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Verschiedenes" +#: include/identity.php:220 +msgid "Message" +msgstr "Nachricht" -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD oder MM-DD" +#: include/identity.php:226 include/nav.php:176 +msgid "Profiles" +msgstr "Profile" -#: include/datetime.php:256 -msgid "never" -msgstr "nie" +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/editieren" -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "vor weniger als einer Sekunde" +#: include/identity.php:341 +msgid "Network:" +msgstr "Netzwerk" -#: include/datetime.php:272 -msgid "year" -msgstr "Jahr" +#: include/identity.php:373 include/identity.php:459 +msgid "g A l F d" +msgstr "l, d. F G \\U\\h\\r" -#: include/datetime.php:272 -msgid "years" -msgstr "Jahre" +#: include/identity.php:374 include/identity.php:460 +msgid "F d" +msgstr "d. F" -#: include/datetime.php:273 -msgid "month" -msgstr "Monat" +#: include/identity.php:419 include/identity.php:506 +msgid "[today]" +msgstr "[heute]" -#: include/datetime.php:273 -msgid "months" -msgstr "Monate" +#: include/identity.php:431 +msgid "Birthday Reminders" +msgstr "Geburtstagserinnerungen" -#: include/datetime.php:274 -msgid "week" -msgstr "Woche" +#: include/identity.php:432 +msgid "Birthdays this week:" +msgstr "Geburtstage diese Woche:" -#: include/datetime.php:274 -msgid "weeks" -msgstr "Wochen" +#: include/identity.php:493 +msgid "[No description]" +msgstr "[keine Beschreibung]" -#: include/datetime.php:275 -msgid "day" -msgstr "Tag" +#: include/identity.php:517 +msgid "Event Reminders" +msgstr "Veranstaltungserinnerungen" -#: include/datetime.php:275 -msgid "days" -msgstr "Tage" +#: include/identity.php:518 +msgid "Events this week:" +msgstr "Veranstaltungen diese Woche" -#: include/datetime.php:276 -msgid "hour" -msgstr "Stunde" +#: include/identity.php:545 +msgid "j F, Y" +msgstr "j F, Y" -#: include/datetime.php:276 -msgid "hours" -msgstr "Stunden" +#: include/identity.php:546 +msgid "j F" +msgstr "j F" -#: include/datetime.php:277 -msgid "minute" -msgstr "Minute" +#: include/identity.php:553 +msgid "Birthday:" +msgstr "Geburtstag:" -#: include/datetime.php:277 -msgid "minutes" -msgstr "Minuten" +#: include/identity.php:557 +msgid "Age:" +msgstr "Alter:" -#: include/datetime.php:278 -msgid "second" -msgstr "Sekunde" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "Sekunden" - -#: include/datetime.php:287 +#: include/identity.php:566 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s her" +msgid "for %1$d %2$s" +msgstr "für %1$d %2$s" + +#: include/identity.php:575 +msgid "Tags:" +msgstr "Tags" + +#: include/identity.php:579 +msgid "Religion:" +msgstr "Religion:" + +#: include/identity.php:583 +msgid "Hobbies/Interests:" +msgstr "Hobbies/Interessen:" + +#: include/identity.php:590 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformationen und Soziale Netzwerke:" + +#: include/identity.php:592 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" + +#: include/identity.php:594 +msgid "Books, literature:" +msgstr "Literatur/Bücher:" + +#: include/identity.php:596 +msgid "Television:" +msgstr "Fernsehen:" + +#: include/identity.php:598 +msgid "Film/dance/culture/entertainment:" +msgstr "Filme/Tänze/Kultur/Unterhaltung:" + +#: include/identity.php:600 +msgid "Love/Romance:" +msgstr "Liebesleben:" + +#: include/identity.php:602 +msgid "Work/employment:" +msgstr "Arbeit/Beschäftigung:" + +#: include/identity.php:604 +msgid "School/education:" +msgstr "Schule/Ausbildung:" + +#: include/identity.php:632 include/nav.php:76 +msgid "Status" +msgstr "Status" + +#: include/identity.php:635 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: include/identity.php:642 +msgid "Profile Details" +msgstr "Profildetails" + +#: include/identity.php:653 include/identity.php:656 include/nav.php:79 +msgid "Videos" +msgstr "Videos" + +#: include/identity.php:666 +msgid "Events and Calendar" +msgstr "Ereignisse und Kalender" + +#: include/identity.php:673 +msgid "Only You Can See This" +msgstr "Nur Du kannst das sehen" + +#: include/items.php:4852 +msgid "Do you really want to delete this item?" +msgstr "Möchtest Du wirklich dieses Item löschen?" + +#: include/items.php:5127 +msgid "Archives" +msgstr "Archiv" + +#: include/nav.php:73 boot.php:1262 +msgid "Logout" +msgstr "Abmelden" + +#: include/nav.php:73 +msgid "End this session" +msgstr "Diese Sitzung beenden" + +#: include/nav.php:79 +msgid "Your videos" +msgstr "Deine Videos" + +#: include/nav.php:81 +msgid "Your personal notes" +msgstr "Deine persönlichen Notizen" + +#: include/nav.php:92 +msgid "Sign in" +msgstr "Anmelden" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Homepage" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Nutzerkonto erstellen" + +#: include/nav.php:114 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: include/nav.php:117 +msgid "Apps" +msgstr "Apps" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Addon Anwendungen, Dienstprogramme, Spiele" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "Inhalt der Seite durchsuchen" + +#: include/nav.php:129 +msgid "Conversations on this site" +msgstr "Unterhaltungen auf dieser Seite" + +#: include/nav.php:131 +msgid "Conversations on the network" +msgstr "Unterhaltungen im Netzwerk" + +#: include/nav.php:133 +msgid "Directory" +msgstr "Verzeichnis" + +#: include/nav.php:133 +msgid "People directory" +msgstr "Nutzerverzeichnis" + +#: include/nav.php:135 +msgid "Information" +msgstr "Information" + +#: include/nav.php:135 +msgid "Information about this friendica instance" +msgstr "Informationen zu dieser Friendica Instanz" + +#: include/nav.php:145 +msgid "Conversations from your friends" +msgstr "Unterhaltungen Deiner Kontakte" + +#: include/nav.php:146 +msgid "Network Reset" +msgstr "Netzwerk zurücksetzen" + +#: include/nav.php:146 +msgid "Load Network page with no filters" +msgstr "Netzwerk-Seite ohne Filter laden" + +#: include/nav.php:153 +msgid "Friend Requests" +msgstr "Kontaktanfragen" + +#: include/nav.php:157 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen anzeigen" + +#: include/nav.php:158 +msgid "Mark all system notifications seen" +msgstr "Markiere alle Systembenachrichtigungen als gelesen" + +#: include/nav.php:162 +msgid "Private mail" +msgstr "Private E-Mail" + +#: include/nav.php:163 +msgid "Inbox" +msgstr "Eingang" + +#: include/nav.php:164 +msgid "Outbox" +msgstr "Ausgang" + +#: include/nav.php:168 +msgid "Manage" +msgstr "Verwalten" + +#: include/nav.php:168 +msgid "Manage other pages" +msgstr "Andere Seiten verwalten" + +#: include/nav.php:173 +msgid "Account settings" +msgstr "Kontoeinstellungen" + +#: include/nav.php:176 +msgid "Manage/Edit Profiles" +msgstr "Profile Verwalten/Editieren" + +#: include/nav.php:178 +msgid "Manage/edit friends and contacts" +msgstr "Freunde und Kontakte verwalten/editieren" + +#: include/nav.php:185 +msgid "Site setup and configuration" +msgstr "Einstellungen der Seite und Konfiguration" + +#: include/nav.php:189 +msgid "Navigation" +msgstr "Navigation" + +#: include/nav.php:189 +msgid "Site map" +msgstr "Sitemap" #: include/network.php:959 msgid "view full size" msgstr "Volle Größe anzeigen" -#: include/dbstructure.php:26 +#: include/oembed.php:224 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" + +#: include/oembed.php:233 +msgid "Embedding disabled" +msgstr "Einbettungen deaktiviert" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Willkommen " + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Bitte lade ein Profilbild hoch." + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Willkommen zurück " + +#: include/security.php:375 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." + +#: include/text.php:299 +msgid "newer" +msgstr "neuer" + +#: include/text.php:301 +msgid "older" +msgstr "älter" + +#: include/text.php:306 +msgid "prev" +msgstr "vorige" + +#: include/text.php:308 +msgid "first" +msgstr "erste" + +#: include/text.php:340 +msgid "last" +msgstr "letzte" + +#: include/text.php:343 +msgid "next" +msgstr "nächste" + +#: include/text.php:398 +msgid "Loading more entries..." +msgstr "lade weitere Einträge..." + +#: include/text.php:399 +msgid "The end" +msgstr "Das Ende" + +#: include/text.php:878 +msgid "No contacts" +msgstr "Keine Kontakte" + +#: include/text.php:887 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d Kontakt" +msgstr[1] "%d Kontakte" + +#: include/text.php:1027 +msgid "poke" +msgstr "anstupsen" + +#: include/text.php:1027 +msgid "poked" +msgstr "stupste" + +#: include/text.php:1028 +msgid "ping" +msgstr "anpingen" + +#: include/text.php:1028 +msgid "pinged" +msgstr "pingte" + +#: include/text.php:1029 +msgid "prod" +msgstr "knuffen" + +#: include/text.php:1029 +msgid "prodded" +msgstr "knuffte" + +#: include/text.php:1030 +msgid "slap" +msgstr "ohrfeigen" + +#: include/text.php:1030 +msgid "slapped" +msgstr "ohrfeigte" + +#: include/text.php:1031 +msgid "finger" +msgstr "befummeln" + +#: include/text.php:1031 +msgid "fingered" +msgstr "befummelte" + +#: include/text.php:1032 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: include/text.php:1032 +msgid "rebuffed" +msgstr "abfuhrerteilte" + +#: include/text.php:1046 +msgid "happy" +msgstr "glücklich" + +#: include/text.php:1047 +msgid "sad" +msgstr "traurig" + +#: include/text.php:1048 +msgid "mellow" +msgstr "sanft" + +#: include/text.php:1049 +msgid "tired" +msgstr "müde" + +#: include/text.php:1050 +msgid "perky" +msgstr "frech" + +#: include/text.php:1051 +msgid "angry" +msgstr "sauer" + +#: include/text.php:1052 +msgid "stupified" +msgstr "verblüfft" + +#: include/text.php:1053 +msgid "puzzled" +msgstr "verwirrt" + +#: include/text.php:1054 +msgid "interested" +msgstr "interessiert" + +#: include/text.php:1055 +msgid "bitter" +msgstr "verbittert" + +#: include/text.php:1056 +msgid "cheerful" +msgstr "fröhlich" + +#: include/text.php:1057 +msgid "alive" +msgstr "lebendig" + +#: include/text.php:1058 +msgid "annoyed" +msgstr "verärgert" + +#: include/text.php:1059 +msgid "anxious" +msgstr "unruhig" + +#: include/text.php:1060 +msgid "cranky" +msgstr "schrullig" + +#: include/text.php:1061 +msgid "disturbed" +msgstr "verstört" + +#: include/text.php:1062 +msgid "frustrated" +msgstr "frustriert" + +#: include/text.php:1063 +msgid "motivated" +msgstr "motiviert" + +#: include/text.php:1064 +msgid "relaxed" +msgstr "entspannt" + +#: include/text.php:1065 +msgid "surprised" +msgstr "überrascht" + +#: include/text.php:1235 +msgid "Monday" +msgstr "Montag" + +#: include/text.php:1235 +msgid "Tuesday" +msgstr "Dienstag" + +#: include/text.php:1235 +msgid "Wednesday" +msgstr "Mittwoch" + +#: include/text.php:1235 +msgid "Thursday" +msgstr "Donnerstag" + +#: include/text.php:1235 +msgid "Friday" +msgstr "Freitag" + +#: include/text.php:1235 +msgid "Saturday" +msgstr "Samstag" + +#: include/text.php:1235 +msgid "Sunday" +msgstr "Sonntag" + +#: include/text.php:1239 +msgid "January" +msgstr "Januar" + +#: include/text.php:1239 +msgid "February" +msgstr "Februar" + +#: include/text.php:1239 +msgid "March" +msgstr "März" + +#: include/text.php:1239 +msgid "April" +msgstr "April" + +#: include/text.php:1239 +msgid "May" +msgstr "Mai" + +#: include/text.php:1239 +msgid "June" +msgstr "Juni" + +#: include/text.php:1239 +msgid "July" +msgstr "Juli" + +#: include/text.php:1239 +msgid "August" +msgstr "August" + +#: include/text.php:1239 +msgid "September" +msgstr "September" + +#: include/text.php:1239 +msgid "October" +msgstr "Oktober" + +#: include/text.php:1239 +msgid "November" +msgstr "November" + +#: include/text.php:1239 +msgid "December" +msgstr "Dezember" + +#: include/text.php:1461 +msgid "bytes" +msgstr "Byte" + +#: include/text.php:1493 include/text.php:1505 +msgid "Click to open/close" +msgstr "Zum öffnen/schließen klicken" + +#: include/text.php:1746 +msgid "Select an alternate language" +msgstr "Alternative Sprache auswählen" + +#: include/text.php:2002 +msgid "activity" +msgstr "Aktivität" + +#: include/text.php:2005 +msgid "post" +msgstr "Beitrag" + +#: include/text.php:2173 +msgid "Item filed" +msgstr "Beitrag abgelegt" + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Du benötigst eine Einladung." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht überprüft werden." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Ungültige OpenID URL" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Bitte trage die erforderlichen Informationen ein." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Bitte verwende einen kürzeren Namen." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Der Name ist zu kurz." + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "Keine gültige E-Mail-Adresse." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Konnte diese E-Mail-Adresse nicht verwenden." + +#: include/user.php:140 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen." + +#: include/user.php:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: include/user.php:156 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." + +#: include/user.php:265 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." + +#: include/user.php:385 #, php-format msgid "" "\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet." -#: include/dbstructure.php:31 +#: include/user.php:389 #, php-format msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s." -#: include/dbstructure.php:152 -msgid "Errors encountered creating database tables." -msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." +#: index.php:441 +msgid "toggle mobile" +msgstr "auf/von Mobile Ansicht wechseln" -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." -msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." +#: boot.php:753 +msgid "Delete this item?" +msgstr "Diesen Beitrag löschen?" + +#: boot.php:756 +msgid "show fewer" +msgstr "weniger anzeigen" + +#: boot.php:1130 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." + +#: boot.php:1237 +msgid "Create a New Account" +msgstr "Neues Konto erstellen" + +#: boot.php:1265 +msgid "Nickname or Email address: " +msgstr "Spitzname oder E-Mail-Adresse: " + +#: boot.php:1266 +msgid "Password: " +msgstr "Passwort: " + +#: boot.php:1267 +msgid "Remember me" +msgstr "Anmeldedaten merken" + +#: boot.php:1270 +msgid "Or login using OpenID: " +msgstr "Oder melde Dich mit Deiner OpenID an: " + +#: boot.php:1276 +msgid "Forgot your password?" +msgstr "Passwort vergessen?" + +#: boot.php:1279 +msgid "Website Terms of Service" +msgstr "Website Nutzungsbedingungen" + +#: boot.php:1280 +msgid "terms of service" +msgstr "Nutzungsbedingungen" + +#: boot.php:1282 +msgid "Website Privacy Policy" +msgstr "Website Datenschutzerklärung" + +#: boot.php:1283 +msgid "privacy policy" +msgstr "Datenschutzerklärung" diff --git a/view/de/strings.php b/view/de/strings.php index 61eb58620..915586ae9 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -56,76 +56,319 @@ $a->strings["Image"] = "Bild"; $a->strings["Link"] = "Link"; $a->strings["Video"] = "Video"; $a->strings["Preview"] = "Vorschau"; -$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können."; -$a->strings["Not Found"] = "Nicht gefunden"; -$a->strings["Page not found."] = "Seite nicht gefunden."; -$a->strings["Permission denied"] = "Zugriff verweigert"; +$a->strings["Clone this project:"] = "Dieses Projekt clonen"; +$a->strings["Click here to download"] = "Zum Download hier klicken"; +$a->strings["This project is empty!"] = "Dieses Projekt is leer!"; +$a->strings["Projects"] = "Projekte"; +$a->strings["add new"] = "neues hinzufügen"; +$a->strings["delete"] = "löschen"; +$a->strings["Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone."] = "Möchtest du das Projekt '%s' löschen?\\n\\nDies kann nicht rückgängig gemacht werden."; +$a->strings["Home"] = "Pinnwand"; +$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +$a->strings["Profile"] = "Profil"; +$a->strings["Your profile page"] = "Deine Profilseite"; +$a->strings["Photos"] = "Bilder"; +$a->strings["Your photos"] = "Deine Fotos"; +$a->strings["Events"] = "Veranstaltungen"; +$a->strings["Your events"] = "Deine Ereignisse"; +$a->strings["Personal notes"] = "Persönliche Notizen"; +$a->strings["Your personal photos"] = "Deine privaten Fotos"; +$a->strings["Community"] = "Gemeinschaft"; +$a->strings["don't show"] = "nicht zeigen"; +$a->strings["show"] = "zeigen"; +$a->strings["Theme settings"] = "Themeneinstellungen"; +$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; +$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen"; +$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen"; +$a->strings["Set color scheme"] = "Wähle Farbschema"; +$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer"; +$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer"; +$a->strings["Community Pages"] = "Foren"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Community Profiles"] = "Community-Profile"; +$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; +$a->strings["Connect Services"] = "Verbinde Dienste"; +$a->strings["Find Friends"] = "Freunde finden"; +$a->strings["Last users"] = "Letzte Nutzer"; +$a->strings["Last photos"] = "Letzte Fotos"; +$a->strings["Last likes"] = "Zuletzt gemocht"; +$a->strings["Contacts"] = "Kontakte"; +$a->strings["Your contacts"] = "Deine Kontakte"; +$a->strings["event"] = "Veranstaltung"; +$a->strings["status"] = "Status"; +$a->strings["photo"] = "Foto"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; +$a->strings["Contact Photos"] = "Kontaktbilder"; +$a->strings["Profile Photos"] = "Profilbilder"; +$a->strings["Local Directory"] = "Lokales Verzeichnis"; +$a->strings["Global Directory"] = "Weltweites Verzeichnis"; +$a->strings["Similar Interests"] = "Ähnliche Interessen"; +$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; +$a->strings["Invite Friends"] = "Freunde einladen"; +$a->strings["Settings"] = "Einstellungen"; +$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer"; +$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; +$a->strings["Alignment"] = "Ausrichtung"; +$a->strings["Left"] = "Links"; +$a->strings["Center"] = "Mitte"; +$a->strings["Color scheme"] = "Farbschema"; +$a->strings["Posts font size"] = "Schriftgröße in Beiträgen"; +$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"; +$a->strings["Set theme width"] = "Theme Breite festlegen"; +$a->strings["Set colour scheme"] = "Farbschema wählen"; +$a->strings["default"] = "Standard"; +$a->strings["Midnight"] = "Mitternacht"; +$a->strings["Zenburn"] = "Zenburn"; +$a->strings["Bootstrap"] = "Bootstrap"; +$a->strings["Shades of Pink"] = "Shades of Pink"; +$a->strings["Lime and Orange"] = "Lime and Orange"; +$a->strings["GeoCities Retro"] = "GeoCities Retro"; +$a->strings["Background Image"] = "Hintergrundbild"; +$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "Die URL des Bildes (z.B. aus deinem Fotoalbum), das als Hintergrundbild verwendet werden soll."; +$a->strings["Background Color"] = "Hintergrundfarbe"; +$a->strings["HEX value for the background color. Don't include the #"] = "HEX Wert der Hintergrundfarbe. Gib die # nicht mit an."; +$a->strings["font size"] = "Schriftgröße"; +$a->strings["base font size for your interface"] = "Grundschriftgröße für dein Web-Interface"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Variations"] = "Variationen"; +$a->strings["Set style"] = "Stil auswählen"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; $a->strings["Permission denied."] = "Zugriff verweigert."; -$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; +$a->strings["Mood"] = "Stimmung"; +$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden"; +$a->strings["Access denied."] = "Zugriff verweigert."; +$a->strings["Item not found."] = "Beitrag nicht gefunden."; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; +$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren"; +$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"; +$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"; +$a->strings["Yes"] = "Ja"; +$a->strings["No"] = "Nein"; +$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; +$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."; +$a->strings["Password Reset"] = "Passwort zurücksetzen"; +$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt."; +$a->strings["Your new password is"] = "Dein neues Passwort lautet"; +$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann"; +$a->strings["click here to login"] = "hier klicken, um Dich anzumelden"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."; +$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert"; +$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."; +$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:"; +$a->strings["Reset"] = "Zurücksetzen"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."; +$a->strings["No recipient selected."] = "Kein Empfänger gewählt."; +$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen."; +$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden."; +$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen."; +$a->strings["Message sent."] = "Nachricht gesendet."; +$a->strings["No recipient."] = "Kein Empfänger."; +$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; +$a->strings["Send Private Message"] = "Private Nachricht senden"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."; +$a->strings["To:"] = "An:"; +$a->strings["Subject:"] = "Betreff:"; +$a->strings["Your message:"] = "Deine Nachricht:"; +$a->strings["Upload photo"] = "Foto hochladen"; +$a->strings["Insert web link"] = "Einen Link einfügen"; +$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica"; +$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder"; +$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."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."; +$a->strings["Getting Started"] = "Einstieg"; +$a->strings["Friendica Walk-Through"] = "Friendica Rundgang"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."; +$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen"; +$a->strings["On your Settings 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."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."; +$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."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können."; +$a->strings["Upload Profile Photo"] = "Profilbild hochladen"; +$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."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."; +$a->strings["Edit Your Profile"] = "Editiere dein Profil"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils."; +$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe"; +$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."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."; +$a->strings["Connecting"] = "Verbindungen knüpfen"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten."; +$a->strings["Importing Emails"] = "Emails Importieren"; +$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"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst."; +$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite"; +$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 Add New Contact dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."; +$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."; +$a->strings["Finding New People"] = "Neue Leute kennenlernen"; +$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."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; +$a->strings["Groups"] = "Gruppen"; +$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; +$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."] = "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."; +$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."; +$a->strings["Getting Help"] = "Hilfe bekommen"; +$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."; +$a->strings["Remove term"] = "Begriff entfernen"; +$a->strings["Saved Searches"] = "Gespeicherte Suchen"; +$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert."; +$a->strings["Search"] = "Suche"; +$a->strings["No results."] = "Keine Ergebnisse."; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; +$a->strings["Item not available."] = "Beitrag nicht verfügbar."; +$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; +$a->strings["Account approved."] = "Konto freigegeben."; +$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen"; +$a->strings["Please login."] = "Bitte melde Dich an."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; +$a->strings["Import"] = "Import"; +$a->strings["Move account"] = "Account umziehen"; +$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"; +$a->strings["Account file"] = "Account Datei"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; +$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; +$a->strings["Visible to:"] = "Sichtbar für:"; +$a->strings["No profile"] = "Kein Profil"; $a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; +$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"; +$a->strings["Source input: "] = "Originaltext:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): "; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): "; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; +$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; +$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i"; +$a->strings["Time Conversion"] = "Zeitumrechnung"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."; +$a->strings["UTC time: %s"] = "UTC Zeit: %s"; +$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s"; +$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s"; +$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:"; +$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; +$a->strings["- select -"] = "- auswählen -"; +$a->strings["Save"] = "Speichern"; +$a->strings["Poke/Prod"] = "Anstupsen"; +$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; +$a->strings["Recipient"] = "Empfänger"; +$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:"; +$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; +$a->strings["Export account"] = "Account exportieren"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; +$a->strings["Export all"] = "Alles exportieren"; +$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)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."; +$a->strings["Export personal data"] = "Persönliche Daten exportieren"; +$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können."; +$a->strings["Applications"] = "Anwendungen"; +$a->strings["No installed applications."] = "Keine Applikationen installiert."; +$a->strings["Nothing new here"] = "Keine Neuigkeiten"; +$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; +$a->strings["Cancel"] = "Abbrechen"; +$a->strings["Tag removed"] = "Tag entfernt"; +$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; +$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; +$a->strings["Remove"] = "Entfernen"; +$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; +$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite"; +$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."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"; +$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; +$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; +$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; +$a->strings["Add"] = "Hinzufügen"; +$a->strings["No entries."] = "Keine Einträge."; +$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]"; +$a->strings["Edit contact"] = "Kontakt bearbeiten"; +$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; +$a->strings["Files"] = "Dateien"; +$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; +$a->strings["Remove My Account"] = "Konto löschen"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."; +$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:"; $a->strings["Contact not found."] = "Kontakt nicht gefunden."; $a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet."; $a->strings["Suggest Friends"] = "Kontakte vorschlagen"; $a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; -$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."; -$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden", - 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden", +$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht."; +$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse."; +$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."; +$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen."; +$a->strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", ); -$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen."; -$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler."; -$a->strings["Profile unavailable."] = "Profil nicht verfügbar."; -$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten."; -$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."; -$a->strings["Invalid locator"] = "Ungültiger Locator"; -$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse."; -$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."; -$a->strings["Unable to resolve your name at the provided location."] = "Konnte Deinen Namen an der angegebenen Stelle nicht finden."; -$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt."; -$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s befreundet bist."; -$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; -$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; -$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen."; -$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; -$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; -$a->strings["Confirm"] = "Bestätigen"; -$a->strings["Hide this contact"] = "Verberge diesen Kontakt"; -$a->strings["Welcome home %s."] = "Willkommen zurück %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s."; -$a->strings["[Name Withheld]"] = "[Name unterdrückt]"; -$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Wenn Du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; -$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; -$a->strings["Does %s know you?"] = "Kennt %s Dich?"; -$a->strings["No"] = "Nein"; -$a->strings["Yes"] = "Ja"; -$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."; -$a->strings["Your Identity Address:"] = "Adresse Deines Profils:"; -$a->strings["Submit Request"] = "Anfrage abschicken"; -$a->strings["Cancel"] = "Abbrechen"; -$a->strings["View Video"] = "Video ansehen"; -$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden."; -$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; -$a->strings["Tips for New Members"] = "Tipps für neue Nutzer"; +$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen"; +$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."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."; +$a->strings["Send invitations"] = "Einladungen senden"; +$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"; +$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."; +$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: "; +$a->strings["Welcome to %s"] = "Willkommen zu %s"; +$a->strings["New Message"] = "Neue Nachricht"; +$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; +$a->strings["Messages"] = "Nachrichten"; +$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?"; +$a->strings["Message deleted."] = "Nachricht gelöscht."; +$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; +$a->strings["No messages."] = "Keine Nachrichten."; +$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s"; +$a->strings["You and %s"] = "Du und %s"; +$a->strings["%s and You"] = "%s und Du"; +$a->strings["Delete conversation"] = "Unterhaltung löschen"; +$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d Nachricht", + 1 => "%d Nachrichten", +); +$a->strings["Message not available."] = "Nachricht nicht verfügbar."; +$a->strings["Delete message"] = "Nachricht löschen"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; +$a->strings["Send Reply"] = "Antwort senden"; +$a->strings["No contacts."] = "Keine Kontakte."; +$a->strings["View Contacts"] = "Kontakte anzeigen"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."; +$a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; +$a->strings["Not available."] = "Nicht verfügbar."; +$a->strings["Help:"] = "Hilfe:"; +$a->strings["Help"] = "Hilfe"; +$a->strings["Not Found"] = "Nicht gefunden"; +$a->strings["Page not found."] = "Seite nicht gefunden."; $a->strings["Invalid request identifier."] = "Invalid request identifier."; $a->strings["Discard"] = "Verwerfen"; $a->strings["Ignore"] = "Ignorieren"; $a->strings["System"] = "System"; $a->strings["Network"] = "Netzwerk"; $a->strings["Personal"] = "Persönlich"; -$a->strings["Home"] = "Pinnwand"; $a->strings["Introductions"] = "Kontaktanfragen"; $a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen"; $a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; @@ -161,25 +404,6 @@ $a->strings["No more personal notifications."] = "Keine weiteren persönlichen B $a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; $a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen"; $a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen"; -$a->strings["photo"] = "Foto"; -$a->strings["status"] = "Status"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."; -$a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; -$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"; -$a->strings["Source input: "] = "Originaltext:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): "; -$a->strings["bb2html: "] = "bb2html: "; -$a->strings["bb2html2bb: "] = "bb2html2bb: "; -$a->strings["bb2md: "] = "bb2md: "; -$a->strings["bb2md2html: "] = "bb2md2html: "; -$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): "; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; $a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert."; $a->strings["Site"] = "Seite"; $a->strings["Users"] = "Nutzer"; @@ -193,7 +417,6 @@ $a->strings["Admin"] = "Administration"; $a->strings["Plugin Features"] = "Plugin Features"; $a->strings["diagnostics"] = "Diagnose"; $a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten"; -$a->strings["Item not found."] = "Beitrag nicht gefunden."; $a->strings["Normal Account"] = "Normales Konto"; $a->strings["Soapbox Account"] = "Marktschreier-Konto"; $a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto"; @@ -405,7 +628,6 @@ $a->strings["Plugin %s enabled."] = "Plugin %s aktiviert."; $a->strings["Disable"] = "Ausschalten"; $a->strings["Enable"] = "Einschalten"; $a->strings["Toggle"] = "Umschalten"; -$a->strings["Settings"] = "Einstellungen"; $a->strings["Author: "] = "Autor:"; $a->strings["Maintainer: "] = "Betreuer:"; $a->strings["No themes found."] = "Keine Themen gefunden."; @@ -424,223 +646,10 @@ $a->strings["FTP Host"] = "FTP Host"; $a->strings["FTP Path"] = "FTP Pfad"; $a->strings["FTP User"] = "FTP Nutzername"; $a->strings["FTP Password"] = "FTP Passwort"; -$a->strings["New Message"] = "Neue Nachricht"; -$a->strings["No recipient selected."] = "Kein Empfänger gewählt."; -$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; -$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden."; -$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen."; -$a->strings["Message sent."] = "Nachricht gesendet."; -$a->strings["Messages"] = "Nachrichten"; -$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?"; -$a->strings["Message deleted."] = "Nachricht gelöscht."; -$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; -$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; -$a->strings["Send Private Message"] = "Private Nachricht senden"; -$a->strings["To:"] = "An:"; -$a->strings["Subject:"] = "Betreff:"; -$a->strings["Your message:"] = "Deine Nachricht:"; -$a->strings["Upload photo"] = "Foto hochladen"; -$a->strings["Insert web link"] = "Einen Link einfügen"; -$a->strings["No messages."] = "Keine Nachrichten."; -$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s"; -$a->strings["You and %s"] = "Du und %s"; -$a->strings["%s and You"] = "%s und Du"; -$a->strings["Delete conversation"] = "Unterhaltung löschen"; -$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d Nachricht", - 1 => "%d Nachrichten", -); -$a->strings["Message not available."] = "Nachricht nicht verfügbar."; -$a->strings["Delete message"] = "Nachricht löschen"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; -$a->strings["Send Reply"] = "Antwort senden"; -$a->strings["Item not found"] = "Beitrag nicht gefunden"; -$a->strings["Edit post"] = "Beitrag bearbeiten"; -$a->strings["Save"] = "Speichern"; -$a->strings["upload photo"] = "Bild hochladen"; -$a->strings["Attach file"] = "Datei anhängen"; -$a->strings["attach file"] = "Datei anhängen"; -$a->strings["web link"] = "Weblink"; -$a->strings["Insert video link"] = "Video-Adresse einfügen"; -$a->strings["video link"] = "Video-Link"; -$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; -$a->strings["audio link"] = "Audio-Link"; -$a->strings["Set your location"] = "Deinen Standort festlegen"; -$a->strings["set location"] = "Ort setzen"; -$a->strings["Clear browser location"] = "Browser-Standort leeren"; -$a->strings["clear location"] = "Ort löschen"; -$a->strings["Permission settings"] = "Berechtigungseinstellungen"; -$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; -$a->strings["Public post"] = "Öffentlicher Beitrag"; -$a->strings["Set title"] = "Titel setzen"; -$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; -$a->strings["Profile not found."] = "Profil nicht gefunden."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; -$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; -$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; -$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; -$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; -$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; -$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; -$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; -$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; -$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; -$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; -$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; -$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; -$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; -$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt."; -$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Veranstaltung bearbeiten"; -$a->strings["link to source"] = "Link zum Originalbeitrag"; -$a->strings["Events"] = "Veranstaltungen"; -$a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; -$a->strings["Previous"] = "Vorherige"; -$a->strings["Next"] = "Nächste"; -$a->strings["Event details"] = "Veranstaltungsdetails"; -$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt"; -$a->strings["Event Starts:"] = "Veranstaltungsbeginn:"; -$a->strings["Required"] = "Benötigt"; -$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant"; -$a->strings["Event Finishes:"] = "Veranstaltungsende:"; -$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen"; -$a->strings["Description:"] = "Beschreibung"; -$a->strings["Location:"] = "Ort:"; -$a->strings["Title:"] = "Titel:"; -$a->strings["Share this event"] = "Veranstaltung teilen"; -$a->strings["Photos"] = "Bilder"; -$a->strings["Files"] = "Dateien"; -$a->strings["Welcome to %s"] = "Willkommen zu %s"; -$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; -$a->strings["Visible to:"] = "Sichtbar für:"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."; -$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen."; -$a->strings["No recipient."] = "Kein Empfänger."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."; -$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]"; -$a->strings["Edit contact"] = "Kontakt bearbeiten"; -$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; -$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version"; -$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren."; -$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"; -$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps"; -$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert"; -$a->strings["Remove My Account"] = "Konto löschen"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."; -$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:"; -$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s"; -$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; -$a->strings["Wall Photos"] = "Pinnwand-Bilder"; -$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert."; -$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren"; -$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"; -$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; -$a->strings["Contact Photos"] = "Kontaktbilder"; -$a->strings["Photo Albums"] = "Fotoalben"; -$a->strings["Recent Photos"] = "Neueste Fotos"; -$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; -$a->strings["everybody"] = "jeder"; -$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; -$a->strings["Profile Photos"] = "Profilbilder"; -$a->strings["Album not found."] = "Album nicht gefunden."; -$a->strings["Delete Album"] = "Album löschen"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"; -$a->strings["Delete Photo"] = "Foto löschen"; -$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; -$a->strings["a photo"] = "einem Foto"; -$a->strings["Image file is empty."] = "Bilddatei ist leer."; -$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; -$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; -$a->strings["Upload Photos"] = "Bilder hochladen"; -$a->strings["New album name: "] = "Name des neuen Albums: "; -$a->strings["or existing album name: "] = "oder existierender Albumname: "; -$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; -$a->strings["Permissions"] = "Berechtigungen"; -$a->strings["Show to Groups"] = "Zeige den Gruppen"; -$a->strings["Show to Contacts"] = "Zeige den Kontakten"; -$a->strings["Private Photo"] = "Privates Foto"; -$a->strings["Public Photo"] = "Öffentliches Foto"; -$a->strings["Edit Album"] = "Album bearbeiten"; -$a->strings["Show Newest First"] = "Zeige neueste zuerst"; -$a->strings["Show Oldest First"] = "Zeige älteste zuerst"; -$a->strings["View Photo"] = "Foto betrachten"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; -$a->strings["Photo not available"] = "Foto nicht verfügbar"; -$a->strings["View photo"] = "Fotos ansehen"; -$a->strings["Edit photo"] = "Foto bearbeiten"; -$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; -$a->strings["View Full Size"] = "Betrachte Originalgröße"; -$a->strings["Tags: "] = "Tags: "; -$a->strings["[Remove any tag]"] = "[Tag entfernen]"; -$a->strings["New album name"] = "Name des neuen Albums"; -$a->strings["Caption"] = "Bildunterschrift"; -$a->strings["Add a Tag"] = "Tag hinzufügen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "Nicht rotieren"; -$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; -$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; -$a->strings["Private photo"] = "Privates Foto"; -$a->strings["Public photo"] = "Öffentliches Foto"; -$a->strings["Share"] = "Teilen"; -$a->strings["View Album"] = "Album betrachten"; -$a->strings["No profile"] = "Kein Profil"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; -$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."; -$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."; -$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; -$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"; -$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -$a->strings["Your invitation ID: "] = "ID Deiner Einladung: "; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): "; -$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: "; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@\$sitename' sein."; -$a->strings["Choose a nickname: "] = "Spitznamen wählen: "; -$a->strings["Register"] = "Registrieren"; -$a->strings["Import"] = "Import"; -$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz"; -$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; -$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."; -$a->strings["Password Reset"] = "Passwort zurücksetzen"; -$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt."; -$a->strings["Your new password is"] = "Dein neues Passwort lautet"; -$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann"; -$a->strings["click here to login"] = "hier klicken, um Dich anzumelden"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."; -$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert"; -$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."; -$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:"; -$a->strings["Reset"] = "Zurücksetzen"; -$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; -$a->strings["Item not available."] = "Beitrag nicht verfügbar."; -$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; -$a->strings["Applications"] = "Anwendungen"; -$a->strings["No installed applications."] = "Keine Applikationen installiert."; -$a->strings["Help:"] = "Hilfe:"; -$a->strings["Help"] = "Hilfe"; +$a->strings["Friends of %s"] = "Freunde von %s"; +$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; +$a->strings["Common Friends"] = "Gemeinsame Freunde"; +$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; $a->strings["%d contact edited."] = array( 0 => "%d Kontakt bearbeitet.", 1 => "%d Kontakte bearbeitet", @@ -648,6 +657,7 @@ $a->strings["%d contact edited."] = array( $a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen."; $a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden."; $a->strings["Contact updated."] = "Kontakt aktualisiert."; +$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen."; $a->strings["Contact has been blocked"] = "Kontakt wurde blockiert"; $a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben"; $a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert"; @@ -716,7 +726,6 @@ $a->strings["Archived"] = "Archiviert"; $a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen"; $a->strings["Hidden"] = "Verborgen"; $a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen"; -$a->strings["Contacts"] = "Kontakte"; $a->strings["Search your contacts"] = "Suche in deinen Kontakten"; $a->strings["Finding: "] = "Funde: "; $a->strings["Find"] = "Finde"; @@ -724,98 +733,451 @@ $a->strings["Update"] = "Aktualisierungen"; $a->strings["Mutual Friendship"] = "Beidseitige Freundschaft"; $a->strings["is a fan of yours"] = "ist ein Fan von dir"; $a->strings["you are a fan of"] = "Du bist Fan von"; +$a->strings["No such group"] = "Es gibt keine solche Gruppe"; +$a->strings["Group is empty"] = "Gruppe ist leer"; +$a->strings["Group: %s"] = "Gruppe: %s"; +$a->strings["View in context"] = "Im Zusammenhang betrachten"; +$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; +$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; +$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst."; +$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; +$a->strings["No mirroring"] = "Kein Spiegeln"; +$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge"; +$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge"; +$a->strings["Refetch contact data"] = "Kontaktdaten neu laden"; +$a->strings["Account Nickname"] = "Konto-Spitzname"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname"; +$a->strings["Account URL"] = "Konto-URL"; +$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen"; +$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen"; +$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen"; +$a->strings["Poll/Feed URL"] = "Pull/Feed-URL"; +$a->strings["New photo from this URL"] = "Neues Foto von dieser URL"; +$a->strings["Remote Self"] = "Entfernte Konten"; +$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."; +$a->strings["Profile not found."] = "Profil nicht gefunden."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; +$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; +$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; +$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; +$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; +$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; +$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; +$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; +$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; +$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; +$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; +$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; +$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; +$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden"; +$a->strings["[Name Withheld]"] = "[Name unterdrückt]"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; +$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."; +$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden", + 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden", +); +$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen."; +$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler."; +$a->strings["Profile unavailable."] = "Profil nicht verfügbar."; +$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten."; +$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."; +$a->strings["Invalid locator"] = "Ungültiger Locator"; +$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse."; +$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."; +$a->strings["Unable to resolve your name at the provided location."] = "Konnte Deinen Namen an der angegebenen Stelle nicht finden."; +$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt."; +$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s befreundet bist."; +$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; +$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; +$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; +$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; +$a->strings["Confirm"] = "Bestätigen"; +$a->strings["Hide this contact"] = "Verberge diesen Kontakt"; +$a->strings["Welcome home %s."] = "Willkommen zurück %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Wenn Du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; +$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; +$a->strings["Does %s know you?"] = "Kennt %s Dich?"; +$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."; +$a->strings["Your Identity Address:"] = "Adresse Deines Profils:"; +$a->strings["Submit Request"] = "Anfrage abschicken"; +$a->strings["Find on this site"] = "Auf diesem Server suchen"; +$a->strings["Site Directory"] = "Verzeichnis"; +$a->strings["Age: "] = "Alter: "; +$a->strings["Gender: "] = "Geschlecht:"; +$a->strings["Location:"] = "Ort:"; +$a->strings["Gender:"] = "Geschlecht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["About:"] = "Über:"; +$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; +$a->strings["People Search - %s"] = "Personensuche - %s"; +$a->strings["No matches"] = "Keine Übereinstimmungen"; +$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; +$a->strings["Item has been removed."] = "Eintrag wurde entfernt."; +$a->strings["Item not found"] = "Beitrag nicht gefunden"; +$a->strings["Edit post"] = "Beitrag bearbeiten"; +$a->strings["upload photo"] = "Bild hochladen"; +$a->strings["Attach file"] = "Datei anhängen"; +$a->strings["attach file"] = "Datei anhängen"; +$a->strings["web link"] = "Weblink"; +$a->strings["Insert video link"] = "Video-Adresse einfügen"; +$a->strings["video link"] = "Video-Link"; +$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; +$a->strings["audio link"] = "Audio-Link"; +$a->strings["Set your location"] = "Deinen Standort festlegen"; +$a->strings["set location"] = "Ort setzen"; +$a->strings["Clear browser location"] = "Browser-Standort leeren"; +$a->strings["clear location"] = "Ort löschen"; +$a->strings["Permission settings"] = "Berechtigungseinstellungen"; +$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; +$a->strings["Public post"] = "Öffentlicher Beitrag"; +$a->strings["Set title"] = "Titel setzen"; +$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; +$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt."; +$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Veranstaltung bearbeiten"; +$a->strings["link to source"] = "Link zum Originalbeitrag"; +$a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; +$a->strings["Previous"] = "Vorherige"; +$a->strings["Next"] = "Nächste"; +$a->strings["Event details"] = "Veranstaltungsdetails"; +$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt"; +$a->strings["Event Starts:"] = "Veranstaltungsbeginn:"; +$a->strings["Required"] = "Benötigt"; +$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant"; +$a->strings["Event Finishes:"] = "Veranstaltungsende:"; +$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen"; +$a->strings["Description:"] = "Beschreibung"; +$a->strings["Title:"] = "Titel:"; +$a->strings["Share this event"] = "Veranstaltung teilen"; +$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt."; +$a->strings["Contact added"] = "Kontakt hinzugefügt"; +$a->strings["Group created."] = "Gruppe erstellt."; +$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen."; +$a->strings["Group not found."] = "Gruppe nicht gefunden."; +$a->strings["Group name changed."] = "Gruppenname geändert."; +$a->strings["Permission denied"] = "Zugriff verweigert"; +$a->strings["Save Group"] = "Gruppe speichern"; +$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen."; +$a->strings["Group Name: "] = "Gruppenname:"; +$a->strings["Group removed."] = "Gruppe entfernt."; +$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; +$a->strings["Group Editor"] = "Gruppeneditor"; +$a->strings["Members"] = "Mitglieder"; +$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup"; +$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert."; +$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden."; +$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet."; +$a->strings["System check"] = "Systemtest"; +$a->strings["Check again"] = "Noch einmal testen"; +$a->strings["Database connection"] = "Datenbankverbindung"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."; +$a->strings["Database Server Name"] = "Datenbank-Server"; +$a->strings["Database Login Name"] = "Datenbank-Nutzer"; +$a->strings["Database Login Password"] = "Datenbank-Passwort"; +$a->strings["Database Name"] = "Datenbank-Name"; +$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."; +$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite"; +$a->strings["Site settings"] = "Server-Einstellungen"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'"; +$a->strings["PHP executable path"] = "Pfad zu PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."; +$a->strings["Command line PHP"] = "Kommandozeilen-PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"; +$a->strings["Found PHP version: "] = "Gefundene PHP Version:"; +$a->strings["PHP cli binary"] = "PHP CLI Binary"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."; +$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt."; +$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"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."; +$a->strings["Generate encryption keys"] = "Schlüssel erzeugen"; +$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul"; +$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul"; +$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul"; +$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul"; +$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."; +$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."; +$a->strings["Url rewrite is working"] = "URL rewrite funktioniert"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."; +$a->strings["

    What next

    "] = "

    Wie geht es weiter?

    "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."; +$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; +$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; +$a->strings["Wall Photos"] = "Pinnwand-Bilder"; +$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."; +$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."; +$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht."; +$a->strings["Profile Match"] = "Profilübereinstimmungen"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."; +$a->strings["is interested in:"] = "ist interessiert an:"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["Search Results For: %s"] = "Suchergebnisse für: %s"; +$a->strings["add"] = "hinzufügen"; +$a->strings["Commented Order"] = "Neueste Kommentare"; +$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren"; +$a->strings["Posted Order"] = "Neueste Beiträge"; +$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren"; +$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht"; +$a->strings["New"] = "Neue"; +$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum"; +$a->strings["Shared Links"] = "Geteilte Links"; +$a->strings["Interesting Links"] = "Interessante Links"; +$a->strings["Starred"] = "Markierte"; +$a->strings["Favourite Posts"] = "Favorisierte Beiträge"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.", + 1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."; +$a->strings["Contact: %s"] = "Kontakt: %s"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; +$a->strings["Invalid contact."] = "Ungültiger Kontakt."; +$a->strings["Personal Notes"] = "Persönliche Notizen"; +$a->strings["Not Extended"] = "Nicht erweitert."; +$a->strings["Photo Albums"] = "Fotoalben"; +$a->strings["Recent Photos"] = "Neueste Fotos"; +$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; +$a->strings["everybody"] = "jeder"; +$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; +$a->strings["Album not found."] = "Album nicht gefunden."; +$a->strings["Delete Album"] = "Album löschen"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"; +$a->strings["Delete Photo"] = "Foto löschen"; +$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; +$a->strings["a photo"] = "einem Foto"; +$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s"; +$a->strings["Image file is empty."] = "Bilddatei ist leer."; +$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; +$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert."; +$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; +$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; +$a->strings["Upload Photos"] = "Bilder hochladen"; +$a->strings["New album name: "] = "Name des neuen Albums: "; +$a->strings["or existing album name: "] = "oder existierender Albumname: "; +$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; +$a->strings["Permissions"] = "Berechtigungen"; +$a->strings["Show to Groups"] = "Zeige den Gruppen"; +$a->strings["Show to Contacts"] = "Zeige den Kontakten"; +$a->strings["Private Photo"] = "Privates Foto"; +$a->strings["Public Photo"] = "Öffentliches Foto"; +$a->strings["Edit Album"] = "Album bearbeiten"; +$a->strings["Show Newest First"] = "Zeige neueste zuerst"; +$a->strings["Show Oldest First"] = "Zeige älteste zuerst"; +$a->strings["View Photo"] = "Foto betrachten"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; +$a->strings["Photo not available"] = "Foto nicht verfügbar"; +$a->strings["View photo"] = "Fotos ansehen"; +$a->strings["Edit photo"] = "Foto bearbeiten"; +$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; +$a->strings["View Full Size"] = "Betrachte Originalgröße"; +$a->strings["Tags: "] = "Tags: "; +$a->strings["[Remove any tag]"] = "[Tag entfernen]"; +$a->strings["New album name"] = "Name des neuen Albums"; +$a->strings["Caption"] = "Bildunterschrift"; +$a->strings["Add a Tag"] = "Tag hinzufügen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Nicht rotieren"; +$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; +$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; +$a->strings["Private photo"] = "Privates Foto"; +$a->strings["Public photo"] = "Öffentliches Foto"; +$a->strings["Share"] = "Teilen"; +$a->strings["View Album"] = "Album betrachten"; +$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten"; +$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht"; +$a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; +$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden."; +$a->strings["Tips for New Members"] = "Tipps für neue Nutzer"; +$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl."; +$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."; +$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden"; +$a->strings["Upload File:"] = "Datei hochladen:"; +$a->strings["Select a profile:"] = "Profil auswählen:"; +$a->strings["Upload"] = "Hochladen"; +$a->strings["or"] = "oder"; +$a->strings["skip this step"] = "diesen Schritt überspringen"; +$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben"; +$a->strings["Crop Image"] = "Bild zurechtschneiden"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."; +$a->strings["Done Editing"] = "Bearbeitung abgeschlossen"; +$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; +$a->strings["Profile deleted."] = "Profil gelöscht."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Neues Profil angelegt."; +$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar."; +$a->strings["Profile Name is required."] = "Profilname ist erforderlich."; +$a->strings["Marital Status"] = "Familienstand"; +$a->strings["Romantic Partner"] = "Romanze"; +$a->strings["Likes"] = "Likes"; +$a->strings["Dislikes"] = "Dislikes"; +$a->strings["Work/Employment"] = "Arbeit / Beschäftigung"; +$a->strings["Religion"] = "Religion"; +$a->strings["Political Views"] = "Politische Ansichten"; +$a->strings["Gender"] = "Geschlecht"; +$a->strings["Sexual Preference"] = "Sexuelle Vorlieben"; +$a->strings["Homepage"] = "Webseite"; +$a->strings["Interests"] = "Interessen"; +$a->strings["Address"] = "Adresse"; +$a->strings["Location"] = "Wohnort"; +$a->strings["Profile updated."] = "Profil aktualisiert."; +$a->strings[" and "] = " und "; +$a->strings["public profile"] = "öffentliches Profil"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s."; +$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"; +$a->strings["Edit Profile Details"] = "Profil bearbeiten"; +$a->strings["Change Profile Photo"] = "Profilbild ändern"; +$a->strings["View this profile"] = "Dieses Profil anzeigen"; +$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden"; +$a->strings["Clone this profile"] = "Dieses Profil duplizieren"; +$a->strings["Delete this profile"] = "Dieses Profil löschen"; +$a->strings["Basic information"] = "Grundinformationen"; +$a->strings["Profile picture"] = "Profilbild"; +$a->strings["Preferences"] = "Vorlieben"; +$a->strings["Status information"] = "Status Informationen"; +$a->strings["Additional information"] = "Zusätzliche Informationen"; +$a->strings["Profile Name:"] = "Profilname:"; +$a->strings["Your Full Name:"] = "Dein kompletter Name:"; +$a->strings["Title/Description:"] = "Titel/Beschreibung:"; +$a->strings["Your Gender:"] = "Dein Geschlecht:"; +$a->strings["Birthday :"] = "Geburtstag :"; +$a->strings["Street Address:"] = "Adresse:"; +$a->strings["Locality/City:"] = "Wohnort:"; +$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Region/Bundesstaat:"; +$a->strings[" Marital Status:"] = " Beziehungsstatus:"; +$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Seit [Datum]:"; +$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:"; +$a->strings["Homepage URL:"] = "Adresse der Homepage:"; +$a->strings["Hometown:"] = "Heimatort:"; +$a->strings["Political Views:"] = "Politische Ansichten:"; +$a->strings["Religious Views:"] = "Religiöse Ansichten:"; +$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:"; +$a->strings["Private Keywords:"] = "Private Schlüsselwörter:"; +$a->strings["Likes:"] = "Likes:"; +$a->strings["Dislikes:"] = "Dislikes:"; +$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"; +$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …"; +$a->strings["Hobbies/Interests"] = "Hobbies/Interessen"; +$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke"; +$a->strings["Musical interests"] = "Musikalische Interessen"; +$a->strings["Books, literature"] = "Bücher, Literatur"; +$a->strings["Television"] = "Fernsehen"; +$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung"; +$a->strings["Love/romance"] = "Liebe/Romantik"; +$a->strings["Work/employment"] = "Arbeit/Anstellung"; +$a->strings["School/education"] = "Schule/Ausbildung"; +$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Dies ist Dein öffentliches Profil.
    Es könnte für jeden Nutzer des Internets sichtbar sein."; +$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile"; +$a->strings["Change profile photo"] = "Profilbild ändern"; +$a->strings["Create New Profile"] = "Neues Profil anlegen"; +$a->strings["Profile Image"] = "Profilbild"; +$a->strings["visible to everybody"] = "sichtbar für jeden"; +$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; +$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; +$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; +$a->strings["Visible To"] = "Sichtbar für"; +$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; +$a->strings["Items tagged with: %s"] = "Beiträge markiert mit: %s"; +$a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; +$a->strings["link"] = "Link"; +$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."; +$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; $a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?"; $a->strings["Delete Video"] = "Video Löschen"; $a->strings["No videos selected"] = "Keine Videos ausgewählt"; +$a->strings["View Video"] = "Video ansehen"; $a->strings["Recent Videos"] = "Neueste Videos"; $a->strings["Upload New Videos"] = "Neues Video hochladen"; -$a->strings["Common Friends"] = "Gemeinsame Freunde"; -$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; -$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt."; -$a->strings["Contact added"] = "Kontakt hinzugefügt"; -$a->strings["Login"] = "Anmeldung"; -$a->strings["The post was created"] = "Der Beitrag wurde angelegt"; -$a->strings["Move account"] = "Account umziehen"; -$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"; -$a->strings["Account file"] = "Account Datei"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; -$a->strings["Friends of %s"] = "Freunde von %s"; -$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; -$a->strings["Tag removed"] = "Tag entfernt"; -$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; -$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; -$a->strings["Remove"] = "Entfernen"; -$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica"; -$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder"; -$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."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."; -$a->strings["Getting Started"] = "Einstieg"; -$a->strings["Friendica Walk-Through"] = "Friendica Rundgang"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."; -$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen"; -$a->strings["On your Settings 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."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."; -$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."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können."; -$a->strings["Profile"] = "Profil"; -$a->strings["Upload Profile Photo"] = "Profilbild hochladen"; -$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."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."; -$a->strings["Edit Your Profile"] = "Editiere dein Profil"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils."; -$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe"; -$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."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."; -$a->strings["Connecting"] = "Verbindungen knüpfen"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten."; -$a->strings["Importing Emails"] = "Emails Importieren"; -$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"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst."; -$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite"; -$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 Add New Contact dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."; -$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."; -$a->strings["Finding New People"] = "Neue Leute kennenlernen"; -$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."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; -$a->strings["Groups"] = "Gruppen"; -$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; -$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."] = "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."; -$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."; -$a->strings["Getting Help"] = "Hilfe bekommen"; -$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."; -$a->strings["Remove term"] = "Begriff entfernen"; -$a->strings["Saved Searches"] = "Gespeicherte Suchen"; -$a->strings["Search"] = "Suche"; -$a->strings["No results."] = "Keine Ergebnisse."; -$a->strings["Items tagged with: %s"] = "Beiträge markiert mit: %s"; -$a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; -$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht."; -$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse."; -$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."; -$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen."; -$a->strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", -); -$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen"; -$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."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."; -$a->strings["Send invitations"] = "Einladungen senden"; -$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."; +$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?"; +$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s"; +$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; +$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."; +$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."; +$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; +$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"; +$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +$a->strings["Your invitation ID: "] = "ID Deiner Einladung: "; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): "; +$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: "; +$a->strings["New Password:"] = "Neues Passwort:"; +$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren."; +$a->strings["Confirm:"] = "Bestätigen:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@\$sitename' sein."; +$a->strings["Choose a nickname: "] = "Spitznamen wählen: "; +$a->strings["Register"] = "Registrieren"; +$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz"; $a->strings["Additional features"] = "Zusätzliche Features"; $a->strings["Display"] = "Anzeige"; $a->strings["Social Networks"] = "Soziale Netzwerke"; $a->strings["Delegations"] = "Delegationen"; $a->strings["Connected apps"] = "Verbundene Programme"; -$a->strings["Export personal data"] = "Persönliche Daten exportieren"; $a->strings["Remove account"] = "Konto löschen"; $a->strings["Missing some important data!"] = "Wichtige Daten fehlen!"; $a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."; @@ -909,7 +1271,6 @@ $a->strings["Allow friends to tag your posts?"] = "Dürfen Deine Kontakte Deine $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"; $a->strings["Permit unknown people to send you private mail?"] = "Dürfen Dir Unbekannte private Nachrichten schicken?"; $a->strings["Profile is not published."] = "Profil ist nicht veröffentlicht."; -$a->strings["or"] = "oder"; $a->strings["Your Identity Address is"] = "Die Adresse Deines Profils lautet:"; $a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"; $a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."; @@ -922,8 +1283,6 @@ $a->strings["Expire photos:"] = "Fotos verfallen lassen:"; $a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:"; $a->strings["Account Settings"] = "Kontoeinstellungen"; $a->strings["Password Settings"] = "Passwort-Einstellungen"; -$a->strings["New Password:"] = "Neues Passwort:"; -$a->strings["Confirm:"] = "Bestätigen:"; $a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"; $a->strings["Current Password:"] = "Aktuelles Passwort:"; $a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen"; @@ -966,370 +1325,72 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve $a->strings["Relocate"] = "Umziehen"; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button."; $a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden"; -$a->strings["Item has been removed."] = "Eintrag wurde entfernt."; -$a->strings["People Search - %s"] = "Personensuche - %s"; -$a->strings["No matches"] = "Keine Übereinstimmungen"; -$a->strings["Profile deleted."] = "Profil gelöscht."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Neues Profil angelegt."; -$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar."; -$a->strings["Profile Name is required."] = "Profilname ist erforderlich."; -$a->strings["Marital Status"] = "Familienstand"; -$a->strings["Romantic Partner"] = "Romanze"; -$a->strings["Likes"] = "Likes"; -$a->strings["Dislikes"] = "Dislikes"; -$a->strings["Work/Employment"] = "Arbeit / Beschäftigung"; -$a->strings["Religion"] = "Religion"; -$a->strings["Political Views"] = "Politische Ansichten"; -$a->strings["Gender"] = "Geschlecht"; -$a->strings["Sexual Preference"] = "Sexuelle Vorlieben"; -$a->strings["Homepage"] = "Webseite"; -$a->strings["Interests"] = "Interessen"; -$a->strings["Address"] = "Adresse"; -$a->strings["Location"] = "Wohnort"; -$a->strings["Profile updated."] = "Profil aktualisiert."; -$a->strings[" and "] = " und "; -$a->strings["public profile"] = "öffentliches Profil"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s."; -$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"; -$a->strings["Edit Profile Details"] = "Profil bearbeiten"; -$a->strings["Change Profile Photo"] = "Profilbild ändern"; -$a->strings["View this profile"] = "Dieses Profil anzeigen"; -$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden"; -$a->strings["Clone this profile"] = "Dieses Profil duplizieren"; -$a->strings["Delete this profile"] = "Dieses Profil löschen"; -$a->strings["Basic information"] = "Grundinformationen"; -$a->strings["Profile picture"] = "Profilbild"; -$a->strings["Preferences"] = "Vorlieben"; -$a->strings["Status information"] = "Status Informationen"; -$a->strings["Additional information"] = "Zusätzliche Informationen"; -$a->strings["Profile Name:"] = "Profilname:"; -$a->strings["Your Full Name:"] = "Dein kompletter Name:"; -$a->strings["Title/Description:"] = "Titel/Beschreibung:"; -$a->strings["Your Gender:"] = "Dein Geschlecht:"; -$a->strings["Birthday :"] = "Geburtstag :"; -$a->strings["Street Address:"] = "Adresse:"; -$a->strings["Locality/City:"] = "Wohnort:"; -$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Region/Bundesstaat:"; -$a->strings[" Marital Status:"] = " Beziehungsstatus:"; -$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Seit [Datum]:"; -$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:"; -$a->strings["Homepage URL:"] = "Adresse der Homepage:"; -$a->strings["Hometown:"] = "Heimatort:"; -$a->strings["Political Views:"] = "Politische Ansichten:"; -$a->strings["Religious Views:"] = "Religiöse Ansichten:"; -$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:"; -$a->strings["Private Keywords:"] = "Private Schlüsselwörter:"; -$a->strings["Likes:"] = "Likes:"; -$a->strings["Dislikes:"] = "Dislikes:"; -$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"; -$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …"; -$a->strings["Hobbies/Interests"] = "Hobbies/Interessen"; -$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke"; -$a->strings["Musical interests"] = "Musikalische Interessen"; -$a->strings["Books, literature"] = "Bücher, Literatur"; -$a->strings["Television"] = "Fernsehen"; -$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung"; -$a->strings["Love/romance"] = "Liebe/Romantik"; -$a->strings["Work/employment"] = "Arbeit/Anstellung"; -$a->strings["School/education"] = "Schule/Ausbildung"; -$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Dies ist Dein öffentliches Profil.
    Es könnte für jeden Nutzer des Internets sichtbar sein."; -$a->strings["Age: "] = "Alter: "; -$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile"; -$a->strings["Change profile photo"] = "Profilbild ändern"; -$a->strings["Create New Profile"] = "Neues Profil anlegen"; -$a->strings["Profile Image"] = "Profilbild"; -$a->strings["visible to everybody"] = "sichtbar für jeden"; -$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -$a->strings["link"] = "Link"; -$a->strings["Export account"] = "Account exportieren"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; -$a->strings["Export all"] = "Alles exportieren"; -$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)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."; -$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten"; -$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht"; -$a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; -$a->strings["Nothing new here"] = "Keine Neuigkeiten"; -$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; -$a->strings["Not available."] = "Nicht verfügbar."; -$a->strings["Community"] = "Gemeinschaft"; -$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; -$a->strings["- select -"] = "- auswählen -"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."; -$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?"; -$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s"; -$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; -$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; -$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; -$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; -$a->strings["Visible To"] = "Sichtbar für"; -$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; -$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?"; -$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."; -$a->strings["Connect"] = "Verbinden"; -$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; -$a->strings["Access denied."] = "Zugriff verweigert."; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; -$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."; -$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: "; -$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; -$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite"; -$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."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"; -$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; -$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; -$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; -$a->strings["Add"] = "Hinzufügen"; -$a->strings["No entries."] = "Keine Einträge."; -$a->strings["No contacts."] = "Keine Kontakte."; -$a->strings["View Contacts"] = "Kontakte anzeigen"; -$a->strings["Personal Notes"] = "Persönliche Notizen"; -$a->strings["Poke/Prod"] = "Anstupsen"; -$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; -$a->strings["Recipient"] = "Empfänger"; -$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:"; -$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; -$a->strings["Global Directory"] = "Weltweites Verzeichnis"; -$a->strings["Find on this site"] = "Auf diesem Server suchen"; -$a->strings["Site Directory"] = "Verzeichnis"; -$a->strings["Gender: "] = "Geschlecht:"; -$a->strings["Gender:"] = "Geschlecht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["About:"] = "Über:"; -$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; -$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i"; -$a->strings["Time Conversion"] = "Zeitumrechnung"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."; -$a->strings["UTC time: %s"] = "UTC Zeit: %s"; -$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s"; -$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s"; -$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:"; -$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; -$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl."; -$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."; -$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden"; -$a->strings["Upload File:"] = "Datei hochladen:"; -$a->strings["Select a profile:"] = "Profil auswählen:"; -$a->strings["Upload"] = "Hochladen"; -$a->strings["skip this step"] = "diesen Schritt überspringen"; -$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben"; -$a->strings["Crop Image"] = "Bild zurechtschneiden"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."; -$a->strings["Done Editing"] = "Bearbeitung abgeschlossen"; -$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; -$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup"; -$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert."; -$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden."; -$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet."; -$a->strings["System check"] = "Systemtest"; -$a->strings["Check again"] = "Noch einmal testen"; -$a->strings["Database connection"] = "Datenbankverbindung"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."; -$a->strings["Database Server Name"] = "Datenbank-Server"; -$a->strings["Database Login Name"] = "Datenbank-Nutzer"; -$a->strings["Database Login Password"] = "Datenbank-Passwort"; -$a->strings["Database Name"] = "Datenbank-Name"; -$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."; -$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite"; -$a->strings["Site settings"] = "Server-Einstellungen"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'"; -$a->strings["PHP executable path"] = "Pfad zu PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."; -$a->strings["Command line PHP"] = "Kommandozeilen-PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"; -$a->strings["Found PHP version: "] = "Gefundene PHP Version:"; -$a->strings["PHP cli binary"] = "PHP CLI Binary"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."; -$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt."; -$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"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."; -$a->strings["Generate encryption keys"] = "Schlüssel erzeugen"; -$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul"; -$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul"; -$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul"; -$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul"; -$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."; -$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."; -$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."; -$a->strings["Url rewrite is working"] = "URL rewrite funktioniert"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."; -$a->strings["

    What next

    "] = "

    Wie geht es weiter?

    "; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."; -$a->strings["Not Extended"] = "Nicht erweitert."; -$a->strings["Group created."] = "Gruppe erstellt."; -$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen."; -$a->strings["Group not found."] = "Gruppe nicht gefunden."; -$a->strings["Group name changed."] = "Gruppenname geändert."; -$a->strings["Save Group"] = "Gruppe speichern"; -$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen."; -$a->strings["Group Name: "] = "Gruppenname:"; -$a->strings["Group removed."] = "Gruppe entfernt."; -$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; -$a->strings["Group Editor"] = "Gruppeneditor"; -$a->strings["Members"] = "Mitglieder"; -$a->strings["No such group"] = "Es gibt keine solche Gruppe"; -$a->strings["Group is empty"] = "Gruppe ist leer"; -$a->strings["Group: %s"] = "Gruppe: %s"; -$a->strings["View in context"] = "Im Zusammenhang betrachten"; -$a->strings["Account approved."] = "Konto freigegeben."; -$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen"; -$a->strings["Please login."] = "Bitte melde Dich an."; -$a->strings["Profile Match"] = "Profilübereinstimmungen"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."; -$a->strings["is interested in:"] = "ist interessiert an:"; -$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; -$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; -$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."; -$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."; -$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht."; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; -$a->strings["Mood"] = "Stimmung"; -$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden"; -$a->strings["Search Results For: %s"] = "Suchergebnisse für: %s"; -$a->strings["add"] = "hinzufügen"; -$a->strings["Commented Order"] = "Neueste Kommentare"; -$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren"; -$a->strings["Posted Order"] = "Neueste Beiträge"; -$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren"; -$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht"; -$a->strings["New"] = "Neue"; -$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum"; -$a->strings["Shared Links"] = "Geteilte Links"; -$a->strings["Interesting Links"] = "Interessante Links"; -$a->strings["Starred"] = "Markierte"; -$a->strings["Favourite Posts"] = "Favorisierte Beiträge"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.", - 1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.", +$a->strings["Login"] = "Anmeldung"; +$a->strings["The post was created"] = "Der Beitrag wurde angelegt"; +$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version"; +$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren."; +$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +$a->strings["the bugtracker at github"] = "dem Bugtracker auf github"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps"; +$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert"; +$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen"; +$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d Einladung verfügbar", + 1 => "%d Einladungen verfügbar", ); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."; -$a->strings["Contact: %s"] = "Kontakt: %s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; -$a->strings["Invalid contact."] = "Ungültiger Kontakt."; -$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; -$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; -$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst."; -$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; -$a->strings["No mirroring"] = "Kein Spiegeln"; -$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge"; -$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge"; -$a->strings["Refetch contact data"] = "Kontaktdaten neu laden"; -$a->strings["Account Nickname"] = "Konto-Spitzname"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname"; -$a->strings["Account URL"] = "Konto-URL"; -$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen"; -$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen"; -$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen"; -$a->strings["Poll/Feed URL"] = "Pull/Feed-URL"; -$a->strings["New photo from this URL"] = "Neues Foto von dieser URL"; -$a->strings["Remote Self"] = "Entfernte Konten"; -$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."; -$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -$a->strings["Your profile page"] = "Deine Profilseite"; -$a->strings["Your contacts"] = "Deine Kontakte"; -$a->strings["Your photos"] = "Deine Fotos"; -$a->strings["Your events"] = "Deine Ereignisse"; -$a->strings["Personal notes"] = "Persönliche Notizen"; -$a->strings["Your personal photos"] = "Deine privaten Fotos"; -$a->strings["Community Pages"] = "Foren"; -$a->strings["Community Profiles"] = "Community-Profile"; -$a->strings["Last users"] = "Letzte Nutzer"; -$a->strings["Last likes"] = "Zuletzt gemocht"; -$a->strings["event"] = "Veranstaltung"; -$a->strings["Last photos"] = "Letzte Fotos"; -$a->strings["Find Friends"] = "Freunde finden"; -$a->strings["Local Directory"] = "Lokales Verzeichnis"; -$a->strings["Similar Interests"] = "Ähnliche Interessen"; -$a->strings["Invite Friends"] = "Freunde einladen"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer"; -$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer"; -$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; -$a->strings["Connect Services"] = "Verbinde Dienste"; -$a->strings["don't show"] = "nicht zeigen"; -$a->strings["show"] = "zeigen"; -$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; -$a->strings["Theme settings"] = "Themeneinstellungen"; -$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; -$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen"; -$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen"; -$a->strings["Set color scheme"] = "Wähle Farbschema"; -$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer"; -$a->strings["Set style"] = "Stil auswählen"; -$a->strings["Set colour scheme"] = "Farbschema wählen"; -$a->strings["default"] = "Standard"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Variationen"; -$a->strings["Alignment"] = "Ausrichtung"; -$a->strings["Left"] = "Links"; -$a->strings["Center"] = "Mitte"; -$a->strings["Color scheme"] = "Farbschema"; -$a->strings["Posts font size"] = "Schriftgröße in Beiträgen"; -$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"; -$a->strings["Set theme width"] = "Theme Breite festlegen"; -$a->strings["Drop contact"] = "Kontakt löschen"; -$a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; -$a->strings["show fewer"] = "weniger anzeigen"; -$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; -$a->strings["Create a New Account"] = "Neues Konto erstellen"; -$a->strings["Logout"] = "Abmelden"; -$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: "; -$a->strings["Password: "] = "Passwort: "; -$a->strings["Remember me"] = "Anmeldedaten merken"; -$a->strings["Or login using OpenID: "] = "Oder melde Dich mit Deiner OpenID an: "; -$a->strings["Forgot your password?"] = "Passwort vergessen?"; -$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen"; -$a->strings["terms of service"] = "Nutzungsbedingungen"; -$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung"; -$a->strings["privacy policy"] = "Datenschutzerklärung"; +$a->strings["Find People"] = "Leute finden"; +$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; +$a->strings["Connect/Follow"] = "Verbinden/Folgen"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; +$a->strings["Random Profile"] = "Zufälliges Profil"; +$a->strings["Networks"] = "Netzwerke"; +$a->strings["All Networks"] = "Alle Netzwerke"; +$a->strings["Saved Folders"] = "Gespeicherte Ordner"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Kategorien"; +$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements."; +$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar."; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; +$a->strings["Logged out."] = "Abgemeldet."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."; +$a->strings["The error message was:"] = "Die Fehlermeldung lautete:"; +$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"; +$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen."; +$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!"; +$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten"; +$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos"; +$a->strings["%d contact not imported"] = array( + 0 => "%d Kontakt nicht importiert", + 1 => "%d Kontakte nicht importiert", +); +$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"; +$a->strings["[no subject]"] = "[kein Betreff]"; +$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert"; +$a->strings["Block immediately"] = "Sofort blockieren"; +$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller"; +$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung"; +$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos"; +$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen"; +$a->strings["Weekly"] = "Wöchentlich"; +$a->strings["Monthly"] = "Monatlich"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zott"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/Chat"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora"; +$a->strings["Statusnet"] = "StatusNet"; +$a->strings["App.net"] = "App.net"; $a->strings["General Features"] = "Allgemeine Features"; $a->strings["Multiple Profiles"] = "Mehrere Profile"; $a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen"; @@ -1364,7 +1425,6 @@ $a->strings["Tagging"] = "Tagging"; $a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."; $a->strings["Post Categories"] = "Beitragskategorien"; $a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen"; -$a->strings["Saved Folders"] = "Gespeicherte Ordner"; $a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren"; $a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'"; $a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"; @@ -1372,13 +1432,302 @@ $a->strings["Star Posts"] = "Beiträge Markieren"; $a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"; $a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten"; $a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"; -$a->strings["Logged out."] = "Abgemeldet."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."; -$a->strings["The error message was:"] = "Die Fehlermeldung lautete:"; +$a->strings["Male"] = "Männlich"; +$a->strings["Female"] = "Weiblich"; +$a->strings["Currently Male"] = "Momentan männlich"; +$a->strings["Currently Female"] = "Momentan weiblich"; +$a->strings["Mostly Male"] = "Hauptsächlich männlich"; +$a->strings["Mostly Female"] = "Hauptsächlich weiblich"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transsexuell"; +$a->strings["Hermaphrodite"] = "Hermaphrodit"; +$a->strings["Neuter"] = "Neuter"; +$a->strings["Non-specific"] = "Nicht spezifiziert"; +$a->strings["Other"] = "Andere"; +$a->strings["Undecided"] = "Unentschieden"; +$a->strings["Males"] = "Männer"; +$a->strings["Females"] = "Frauen"; +$a->strings["Gay"] = "Schwul"; +$a->strings["Lesbian"] = "Lesbisch"; +$a->strings["No Preference"] = "Keine Vorlieben"; +$a->strings["Bisexual"] = "Bisexuell"; +$a->strings["Autosexual"] = "Autosexual"; +$a->strings["Abstinent"] = "Abstinent"; +$a->strings["Virgin"] = "Jungfrauen"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Fetish"; +$a->strings["Oodles"] = "Oodles"; +$a->strings["Nonsexual"] = "Nonsexual"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Einsam"; +$a->strings["Available"] = "Verfügbar"; +$a->strings["Unavailable"] = "Nicht verfügbar"; +$a->strings["Has crush"] = "verknallt"; +$a->strings["Infatuated"] = "verliebt"; +$a->strings["Dating"] = "Dating"; +$a->strings["Unfaithful"] = "Untreu"; +$a->strings["Sex Addict"] = "Sexbesessen"; +$a->strings["Friends"] = "Freunde"; +$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Verlobt"; +$a->strings["Married"] = "Verheiratet"; +$a->strings["Imaginarily married"] = "imaginär verheiratet"; +$a->strings["Partners"] = "Partner"; +$a->strings["Cohabiting"] = "zusammenlebend"; +$a->strings["Common law"] = "wilde Ehe"; +$a->strings["Happy"] = "Glücklich"; +$a->strings["Not looking"] = "Nicht auf der Suche"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Betrogen"; +$a->strings["Separated"] = "Getrennt"; +$a->strings["Unstable"] = "Unstabil"; +$a->strings["Divorced"] = "Geschieden"; +$a->strings["Imaginarily divorced"] = "imaginär geschieden"; +$a->strings["Widowed"] = "Verwitwet"; +$a->strings["Uncertain"] = "Unsicher"; +$a->strings["It's complicated"] = "Ist kompliziert"; +$a->strings["Don't care"] = "Ist mir nicht wichtig"; +$a->strings["Ask me"] = "Frag mich"; +$a->strings["stopped following"] = "wird nicht mehr gefolgt"; +$a->strings["Poke"] = "Anstupsen"; +$a->strings["View Status"] = "Pinnwand anschauen"; +$a->strings["View Profile"] = "Profil anschauen"; +$a->strings["View Photos"] = "Bilder anschauen"; +$a->strings["Network Posts"] = "Netzwerkbeiträge"; +$a->strings["Edit Contact"] = "Kontakt bearbeiten"; +$a->strings["Drop Contact"] = "Kontakt löschen"; +$a->strings["Send PM"] = "Private Nachricht senden"; +$a->strings[" on Last.fm"] = " bei Last.fm"; +$a->strings["Post to Email"] = "An E-Mail senden"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; +$a->strings["Visible to everybody"] = "Für jeden sichtbar"; +$a->strings["User not found."] = "Nutzer nicht gefunden."; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; +$a->strings["There is no status with this id."] = "Es gibt keinen Status mit dieser ID."; +$a->strings["There is no conversation with this id."] = "Es existiert keine Unterhaltung mit dieser ID."; +$a->strings["Invalid request."] = "Ungültige Anfrage"; +$a->strings["Invalid item."] = "Ungültiges Objekt"; +$a->strings["Invalid action. "] = "Ungültige Aktion"; +$a->strings["DB error"] = "DB Error"; $a->strings["Starts:"] = "Beginnt:"; $a->strings["Finishes:"] = "Endet:"; -$a->strings["[no subject]"] = "[kein Betreff]"; -$a->strings[" on Last.fm"] = " bei Last.fm"; +$a->strings["Image/photo"] = "Bild/Foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; +$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; +$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; +$a->strings["post/item"] = "Nachricht/Beitrag"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; +$a->strings["remove"] = "löschen"; +$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; +$a->strings["Follow Thread"] = "Folge der Unterhaltung"; +$a->strings["%s likes this."] = "%s mag das."; +$a->strings["%s doesn't like this."] = "%s mag das nicht."; +$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; +$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; +$a->strings["and"] = "und"; +$a->strings[", and %d other people"] = " und %d andere"; +$a->strings["%s like this."] = "%s mögen das."; +$a->strings["%s don't like this."] = "%s mögen das nicht."; +$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; +$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; +$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?"; +$a->strings["Delete item(s)?"] = "Einträge löschen?"; +$a->strings["permissions"] = "Zugriffsrechte"; +$a->strings["Post to Groups"] = "Poste an Gruppe"; +$a->strings["Post to Contacts"] = "Poste an Kontakte"; +$a->strings["Private post"] = "Privater Beitrag"; +$a->strings["Miscellaneous"] = "Verschiedenes"; +$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD"; +$a->strings["never"] = "nie"; +$a->strings["less than a second ago"] = "vor weniger als einer Sekunde"; +$a->strings["year"] = "Jahr"; +$a->strings["years"] = "Jahre"; +$a->strings["month"] = "Monat"; +$a->strings["months"] = "Monate"; +$a->strings["week"] = "Woche"; +$a->strings["weeks"] = "Wochen"; +$a->strings["day"] = "Tag"; +$a->strings["days"] = "Tage"; +$a->strings["hour"] = "Stunde"; +$a->strings["hours"] = "Stunden"; +$a->strings["minute"] = "Minute"; +$a->strings["minutes"] = "Minuten"; +$a->strings["second"] = "Sekunde"; +$a->strings["seconds"] = "Sekunden"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her"; +$a->strings["%s's birthday"] = "%ss Geburtstag"; +$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s"; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."; +$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."; +$a->strings["(no subject)"] = "(kein Betreff)"; +$a->strings["noreply"] = "noreply"; +$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; +$a->strings["Attachments:"] = "Anhänge:"; +$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung"; +$a->strings["Thank You,"] = "Danke,"; +$a->strings["%s Administrator"] = "der Administrator von %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht auf %2\$s geschickt."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s."; +$a->strings["a private message"] = "eine private Nachricht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]Deinen %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem Du folgst."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf Deine Pinnwand"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat Dich erwähnt"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte Dich auf %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte Dich[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat Dich angestupst"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat Dich auf %2\$s angestupst"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat Dich angestupst[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte Deinen Beitrag auf %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten."; +$a->strings["You may visit their profile at %s"] = "Hier kannst Du das Profil betrachten: %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit Dir auf %2\$s"; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten."; +$a->strings["Name:"] = "Name:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"; +$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf %2\$s bestätigt"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert."; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "; +$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten"; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten."; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten."; +$a->strings["Connect URL missing."] = "Connect-URL fehlt"; +$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."; +$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen."; +$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden."; +$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."; +$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."; +$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen."; +$a->strings["following"] = "folgen"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; +$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; +$a->strings["Everybody"] = "Alle Kontakte"; +$a->strings["edit"] = "bearbeiten"; +$a->strings["Edit group"] = "Gruppe bearbeiten"; +$a->strings["Create a new group"] = "Neue Gruppe erstellen"; +$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; +$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; +$a->strings["Edit profile"] = "Profil bearbeiten"; +$a->strings["Message"] = "Nachricht"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; +$a->strings["Network:"] = "Netzwerk"; +$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; +$a->strings["F d"] = "d. F"; +$a->strings["[today]"] = "[heute]"; +$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; +$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; +$a->strings["[No description]"] = "[keine Beschreibung]"; +$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; +$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Geburtstag:"; +$a->strings["Age:"] = "Alter:"; +$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; +$a->strings["Tags:"] = "Tags"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; +$a->strings["Musical interests:"] = "Musikalische Interessen:"; +$a->strings["Books, literature:"] = "Literatur/Bücher:"; +$a->strings["Television:"] = "Fernsehen:"; +$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; +$a->strings["Love/Romance:"] = "Liebesleben:"; +$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; +$a->strings["School/education:"] = "Schule/Ausbildung:"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +$a->strings["Profile Details"] = "Profildetails"; +$a->strings["Videos"] = "Videos"; +$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; +$a->strings["Only You Can See This"] = "Nur Du kannst das sehen"; +$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?"; +$a->strings["Archives"] = "Archiv"; +$a->strings["Logout"] = "Abmelden"; +$a->strings["End this session"] = "Diese Sitzung beenden"; +$a->strings["Your videos"] = "Deine Videos"; +$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; +$a->strings["Sign in"] = "Anmelden"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Create an account"] = "Nutzerkonto erstellen"; +$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; +$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; +$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; +$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk"; +$a->strings["Directory"] = "Verzeichnis"; +$a->strings["People directory"] = "Nutzerverzeichnis"; +$a->strings["Information"] = "Information"; +$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz"; +$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte"; +$a->strings["Network Reset"] = "Netzwerk zurücksetzen"; +$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden"; +$a->strings["Friend Requests"] = "Kontaktanfragen"; +$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; +$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; +$a->strings["Private mail"] = "Private E-Mail"; +$a->strings["Inbox"] = "Eingang"; +$a->strings["Outbox"] = "Ausgang"; +$a->strings["Manage"] = "Verwalten"; +$a->strings["Manage other pages"] = "Andere Seiten verwalten"; +$a->strings["Account settings"] = "Kontoeinstellungen"; +$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; +$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren"; +$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; +$a->strings["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Sitemap"; +$a->strings["view full size"] = "Volle Größe anzeigen"; +$a->strings["Embedded content"] = "Eingebetteter Inhalt"; +$a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; +$a->strings["Welcome "] = "Willkommen "; +$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; +$a->strings["Welcome back "] = "Willkommen zurück "; +$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."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."; $a->strings["newer"] = "neuer"; $a->strings["older"] = "älter"; $a->strings["prev"] = "vorige"; @@ -1449,306 +1798,6 @@ $a->strings["Select an alternate language"] = "Alternative Sprache auswählen"; $a->strings["activity"] = "Aktivität"; $a->strings["post"] = "Beitrag"; $a->strings["Item filed"] = "Beitrag abgelegt"; -$a->strings["User not found."] = "Nutzer nicht gefunden."; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; -$a->strings["There is no status with this id."] = "Es gibt keinen Status mit dieser ID."; -$a->strings["There is no conversation with this id."] = "Es existiert keine Unterhaltung mit dieser ID."; -$a->strings["Invalid request."] = "Ungültige Anfrage"; -$a->strings["Invalid item."] = "Ungültiges Objekt"; -$a->strings["Invalid action. "] = "Ungültige Aktion"; -$a->strings["DB error"] = "DB Error"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; -$a->strings["%s's birthday"] = "%ss Geburtstag"; -$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s"; -$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?"; -$a->strings["Archives"] = "Archiv"; -$a->strings["(no subject)"] = "(kein Betreff)"; -$a->strings["noreply"] = "noreply"; -$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; -$a->strings["Attachments:"] = "Anhänge:"; -$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; -$a->strings["Edit profile"] = "Profil bearbeiten"; -$a->strings["Message"] = "Nachricht"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; -$a->strings["Network:"] = "Netzwerk"; -$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; -$a->strings["F d"] = "d. F"; -$a->strings["[today]"] = "[heute]"; -$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; -$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; -$a->strings["[No description]"] = "[keine Beschreibung]"; -$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; -$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Geburtstag:"; -$a->strings["Age:"] = "Alter:"; -$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; -$a->strings["Tags:"] = "Tags"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; -$a->strings["Musical interests:"] = "Musikalische Interessen:"; -$a->strings["Books, literature:"] = "Literatur/Bücher:"; -$a->strings["Television:"] = "Fernsehen:"; -$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; -$a->strings["Love/Romance:"] = "Liebesleben:"; -$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; -$a->strings["School/education:"] = "Schule/Ausbildung:"; -$a->strings["Status"] = "Status"; -$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -$a->strings["Profile Details"] = "Profildetails"; -$a->strings["Videos"] = "Videos"; -$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; -$a->strings["Only You Can See This"] = "Nur Du kannst das sehen"; -$a->strings["Connect URL missing."] = "Connect-URL fehlt"; -$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."; -$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen."; -$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden."; -$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."; -$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."; -$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen."; -$a->strings["following"] = "folgen"; -$a->strings["Welcome "] = "Willkommen "; -$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; -$a->strings["Welcome back "] = "Willkommen zurück "; -$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."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."; -$a->strings["Male"] = "Männlich"; -$a->strings["Female"] = "Weiblich"; -$a->strings["Currently Male"] = "Momentan männlich"; -$a->strings["Currently Female"] = "Momentan weiblich"; -$a->strings["Mostly Male"] = "Hauptsächlich männlich"; -$a->strings["Mostly Female"] = "Hauptsächlich weiblich"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transsexuell"; -$a->strings["Hermaphrodite"] = "Hermaphrodit"; -$a->strings["Neuter"] = "Neuter"; -$a->strings["Non-specific"] = "Nicht spezifiziert"; -$a->strings["Other"] = "Andere"; -$a->strings["Undecided"] = "Unentschieden"; -$a->strings["Males"] = "Männer"; -$a->strings["Females"] = "Frauen"; -$a->strings["Gay"] = "Schwul"; -$a->strings["Lesbian"] = "Lesbisch"; -$a->strings["No Preference"] = "Keine Vorlieben"; -$a->strings["Bisexual"] = "Bisexuell"; -$a->strings["Autosexual"] = "Autosexual"; -$a->strings["Abstinent"] = "Abstinent"; -$a->strings["Virgin"] = "Jungfrauen"; -$a->strings["Deviant"] = "Deviant"; -$a->strings["Fetish"] = "Fetish"; -$a->strings["Oodles"] = "Oodles"; -$a->strings["Nonsexual"] = "Nonsexual"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Einsam"; -$a->strings["Available"] = "Verfügbar"; -$a->strings["Unavailable"] = "Nicht verfügbar"; -$a->strings["Has crush"] = "verknallt"; -$a->strings["Infatuated"] = "verliebt"; -$a->strings["Dating"] = "Dating"; -$a->strings["Unfaithful"] = "Untreu"; -$a->strings["Sex Addict"] = "Sexbesessen"; -$a->strings["Friends"] = "Freunde"; -$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Verlobt"; -$a->strings["Married"] = "Verheiratet"; -$a->strings["Imaginarily married"] = "imaginär verheiratet"; -$a->strings["Partners"] = "Partner"; -$a->strings["Cohabiting"] = "zusammenlebend"; -$a->strings["Common law"] = "wilde Ehe"; -$a->strings["Happy"] = "Glücklich"; -$a->strings["Not looking"] = "Nicht auf der Suche"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Betrogen"; -$a->strings["Separated"] = "Getrennt"; -$a->strings["Unstable"] = "Unstabil"; -$a->strings["Divorced"] = "Geschieden"; -$a->strings["Imaginarily divorced"] = "imaginär geschieden"; -$a->strings["Widowed"] = "Verwitwet"; -$a->strings["Uncertain"] = "Unsicher"; -$a->strings["It's complicated"] = "Ist kompliziert"; -$a->strings["Don't care"] = "Ist mir nicht wichtig"; -$a->strings["Ask me"] = "Frag mich"; -$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"; -$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen."; -$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!"; -$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten"; -$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos"; -$a->strings["%d contact not imported"] = array( - 0 => "%d Kontakt nicht importiert", - 1 => "%d Kontakte nicht importiert", -); -$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"; -$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements."; -$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar."; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; -$a->strings["post/item"] = "Nachricht/Beitrag"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; -$a->strings["remove"] = "löschen"; -$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; -$a->strings["Follow Thread"] = "Folge der Unterhaltung"; -$a->strings["View Status"] = "Pinnwand anschauen"; -$a->strings["View Profile"] = "Profil anschauen"; -$a->strings["View Photos"] = "Bilder anschauen"; -$a->strings["Network Posts"] = "Netzwerkbeiträge"; -$a->strings["Edit Contact"] = "Kontakt bearbeiten"; -$a->strings["Send PM"] = "Private Nachricht senden"; -$a->strings["Poke"] = "Anstupsen"; -$a->strings["%s likes this."] = "%s mag das."; -$a->strings["%s doesn't like this."] = "%s mag das nicht."; -$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; -$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; -$a->strings["and"] = "und"; -$a->strings[", and %d other people"] = " und %d andere"; -$a->strings["%s like this."] = "%s mögen das."; -$a->strings["%s don't like this."] = "%s mögen das nicht."; -$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; -$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; -$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?"; -$a->strings["Delete item(s)?"] = "Einträge löschen?"; -$a->strings["permissions"] = "Zugriffsrechte"; -$a->strings["Post to Groups"] = "Poste an Gruppe"; -$a->strings["Post to Contacts"] = "Poste an Kontakte"; -$a->strings["Private post"] = "Privater Beitrag"; -$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen"; -$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d Einladung verfügbar", - 1 => "%d Einladungen verfügbar", -); -$a->strings["Find People"] = "Leute finden"; -$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; -$a->strings["Connect/Follow"] = "Verbinden/Folgen"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; -$a->strings["Random Profile"] = "Zufälliges Profil"; -$a->strings["Networks"] = "Netzwerke"; -$a->strings["All Networks"] = "Alle Netzwerke"; -$a->strings["Everything"] = "Alles"; -$a->strings["Categories"] = "Kategorien"; -$a->strings["End this session"] = "Diese Sitzung beenden"; -$a->strings["Your videos"] = "Deine Videos"; -$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; -$a->strings["Sign in"] = "Anmelden"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Create an account"] = "Nutzerkonto erstellen"; -$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; -$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; -$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; -$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk"; -$a->strings["Directory"] = "Verzeichnis"; -$a->strings["People directory"] = "Nutzerverzeichnis"; -$a->strings["Information"] = "Information"; -$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz"; -$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte"; -$a->strings["Network Reset"] = "Netzwerk zurücksetzen"; -$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden"; -$a->strings["Friend Requests"] = "Kontaktanfragen"; -$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; -$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; -$a->strings["Private mail"] = "Private E-Mail"; -$a->strings["Inbox"] = "Eingang"; -$a->strings["Outbox"] = "Ausgang"; -$a->strings["Manage"] = "Verwalten"; -$a->strings["Manage other pages"] = "Andere Seiten verwalten"; -$a->strings["Account settings"] = "Kontoeinstellungen"; -$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; -$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren"; -$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; -$a->strings["Navigation"] = "Navigation"; -$a->strings["Site map"] = "Sitemap"; -$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert"; -$a->strings["Block immediately"] = "Sofort blockieren"; -$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller"; -$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung"; -$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos"; -$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen"; -$a->strings["Weekly"] = "Wöchentlich"; -$a->strings["Monthly"] = "Monatlich"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = "Zott"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/Chat"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Diaspora"; -$a->strings["Statusnet"] = "StatusNet"; -$a->strings["App.net"] = "App.net"; -$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung"; -$a->strings["Thank You,"] = "Danke,"; -$a->strings["%s Administrator"] = "der Administrator von %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht auf %2\$s geschickt."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s."; -$a->strings["a private message"] = "eine private Nachricht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]Deinen %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem Du folgst."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf Deine Pinnwand"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat Dich erwähnt"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte Dich auf %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte Dich[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat Dich angestupst"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat Dich auf %2\$s angestupst"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat Dich angestupst[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte Deinen Beitrag auf %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten."; -$a->strings["You may visit their profile at %s"] = "Hier kannst Du das Profil betrachten: %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"; -$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit Dir auf %2\$s"; -$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "; -$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s"; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten."; -$a->strings["Name:"] = "Name:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."; -$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"; -$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf %2\$s bestätigt"; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert."; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "; -$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage"; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten"; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten."; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"; -$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten."; $a->strings["An invitation is required."] = "Du benötigst eine Einladung."; $a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden."; $a->strings["Invalid OpenID url"] = "Ungültige OpenID URL"; @@ -1767,46 +1816,17 @@ $a->strings["An error occurred during registration. Please try again."] = "Währ $a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; $a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet."; $a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s."; -$a->strings["Post to Email"] = "An E-Mail senden"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; -$a->strings["Visible to everybody"] = "Für jeden sichtbar"; -$a->strings["Image/photo"] = "Bild/Foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; -$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; -$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; -$a->strings["Embedded content"] = "Eingebetteter Inhalt"; -$a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; -$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; -$a->strings["Everybody"] = "Alle Kontakte"; -$a->strings["edit"] = "bearbeiten"; -$a->strings["Edit group"] = "Gruppe bearbeiten"; -$a->strings["Create a new group"] = "Neue Gruppe erstellen"; -$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; -$a->strings["stopped following"] = "wird nicht mehr gefolgt"; -$a->strings["Drop Contact"] = "Kontakt löschen"; -$a->strings["Miscellaneous"] = "Verschiedenes"; -$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD"; -$a->strings["never"] = "nie"; -$a->strings["less than a second ago"] = "vor weniger als einer Sekunde"; -$a->strings["year"] = "Jahr"; -$a->strings["years"] = "Jahre"; -$a->strings["month"] = "Monat"; -$a->strings["months"] = "Monate"; -$a->strings["week"] = "Woche"; -$a->strings["weeks"] = "Wochen"; -$a->strings["day"] = "Tag"; -$a->strings["days"] = "Tage"; -$a->strings["hour"] = "Stunde"; -$a->strings["hours"] = "Stunden"; -$a->strings["minute"] = "Minute"; -$a->strings["minutes"] = "Minuten"; -$a->strings["second"] = "Sekunde"; -$a->strings["seconds"] = "Sekunden"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her"; -$a->strings["view full size"] = "Volle Größe anzeigen"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."; -$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."; +$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; +$a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; +$a->strings["show fewer"] = "weniger anzeigen"; +$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; +$a->strings["Create a New Account"] = "Neues Konto erstellen"; +$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: "; +$a->strings["Password: "] = "Passwort: "; +$a->strings["Remember me"] = "Anmeldedaten merken"; +$a->strings["Or login using OpenID: "] = "Oder melde Dich mit Deiner OpenID an: "; +$a->strings["Forgot your password?"] = "Passwort vergessen?"; +$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen"; +$a->strings["terms of service"] = "Nutzungsbedingungen"; +$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung"; +$a->strings["privacy policy"] = "Datenschutzerklärung"; From 3457f8583307367f6308e938eca0c09720387133 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 13 Jul 2015 14:34:28 +0200 Subject: [PATCH 026/239] Salmon: Don't store contact data before the message was authenticated. --- include/ostatus.php | 14 ++++++++------ mod/salmon.php | 31 ++++++++----------------------- 2 files changed, 16 insertions(+), 29 deletions(-) diff --git a/include/ostatus.php b/include/ostatus.php index 7b657577a..901ae95f7 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -12,7 +12,7 @@ define('OSTATUS_DEFAULT_POLL_INTERVAL', 30); // given in minutes define('OSTATUS_DEFAULT_POLL_TIMEFRAME', 1440); // given in minutes define('OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS', 14400); // given in minutes -function ostatus_fetchauthor($xpath, $context, $importer, &$contact) { +function ostatus_fetchauthor($xpath, $context, $importer, &$contact, $onlyfetch) { $author = array(); $author["author-link"] = $xpath->evaluate('atom:author/atom:uri/text()', $context)->item(0)->nodeValue; @@ -63,7 +63,7 @@ function ostatus_fetchauthor($xpath, $context, $importer, &$contact) { $author["owner-link"] = $author["author-link"]; $author["owner-avatar"] = $author["author-avatar"]; - if ($r) { + if ($r AND !$onlyfetch) { // Update contact data $update_contact = ($r[0]['name-date'] < datetime_convert('','','now -12 hours')); if ($update_contact) { @@ -132,7 +132,7 @@ function ostatus_salmon_author($xml, $importer) { foreach ($entries AS $entry) { // fetch the author - $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact); + $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact, true); return $author; } } @@ -201,9 +201,9 @@ function ostatus_import($xml,$importer,&$contact, &$hub) { // fetch the author if ($first_child == "feed") - $author = ostatus_fetchauthor($xpath, $doc->firstChild, $importer, $contact); + $author = ostatus_fetchauthor($xpath, $doc->firstChild, $importer, $contact, false); else - $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact); + $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact, false); $item = array_merge($header, $author); @@ -243,11 +243,13 @@ function ostatus_import($xml,$importer,&$contact, &$hub) { if ($item["verb"] == ACTIVITY_FOLLOW) { // ignore "Follow" messages + // new_follower($importer,$contact,$datarray,$item); continue; } if ($item["verb"] == NAMESPACE_OSTATUS."/unfollow") { // ignore "Unfollow" messages + // lose_follower($importer,$contact,$datarray,$item); continue; } @@ -399,7 +401,7 @@ function ostatus_import($xml,$importer,&$contact, &$hub) { $orig_created = $xpath->query('atom:published/text()', $activityobjects)->item(0)->nodeValue; $orig_contact = $contact; - $orig_author = ostatus_fetchauthor($xpath, $activityobjects, $importer, $orig_contact); + $orig_author = ostatus_fetchauthor($xpath, $activityobjects, $importer, $orig_contact, false); //if (!intval(get_config('system','wall-to-wall_share'))) { // $prefix = share_header($orig_author['author-name'], $orig_author['author-link'], $orig_author['author-avatar'], "", $orig_created, $orig_link); diff --git a/mod/salmon.php b/mod/salmon.php index f04a2e228..9c22e42d1 100644 --- a/mod/salmon.php +++ b/mod/salmon.php @@ -1,12 +1,10 @@ Date: Mon, 13 Jul 2015 23:50:33 +0200 Subject: [PATCH 027/239] Follow/Unfollow now works from OStatus. --- include/items.php | 9 ++++++--- include/ostatus.php | 12 ++++++++---- mod/wall_upload.php | 1 + 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/include/items.php b/include/items.php index 45d25e379..cba1ae236 100644 --- a/include/items.php +++ b/include/items.php @@ -4159,9 +4159,12 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) { $name = notags(trim($datarray['author-name'])); $photo = notags(trim($datarray['author-avatar'])); - $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor'); - if($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data']) - $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data']; + if (is_object($item)) { + $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor'); + if($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data']) + $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data']; + } else + $nick = $item; if(is_array($contact)) { if(($contact['network'] == NETWORK_OSTATUS && $contact['rel'] == CONTACT_IS_SHARING) diff --git a/include/ostatus.php b/include/ostatus.php index 901ae95f7..53887d535 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -205,6 +205,12 @@ function ostatus_import($xml,$importer,&$contact, &$hub) { else $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact, false); + $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()', $context)->item(0)->nodeValue; + if ($value != "") + $nickname = $value; + else + $nickname = $author["author-name"]; + $item = array_merge($header, $author); // Now get the item @@ -242,14 +248,12 @@ function ostatus_import($xml,$importer,&$contact, &$hub) { } if ($item["verb"] == ACTIVITY_FOLLOW) { - // ignore "Follow" messages - // new_follower($importer,$contact,$datarray,$item); + new_follower($importer, $contact, $item, $nickname); continue; } if ($item["verb"] == NAMESPACE_OSTATUS."/unfollow") { - // ignore "Unfollow" messages - // lose_follower($importer,$contact,$datarray,$item); + lose_follower($importer, $contact, $item, $dummy); continue; } diff --git a/mod/wall_upload.php b/mod/wall_upload.php index 44cfa0156..9abc1dd9f 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -119,6 +119,7 @@ function wall_upload_post(&$a, $desktopmode = true) { $maximagesize = get_config('system','maximagesize'); if(($maximagesize) && ($filesize > $maximagesize)) { + logger("Image exceeds size limit of ".$maximagesize); echo sprintf( t('Image exceeds size limit of %s'), formatBytes($maximagesize)) . EOL; @unlink($src); killme(); From 9ebaa45670bd6835d5c4de843530b4b0da84e028 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 13 Jul 2015 23:56:45 +0200 Subject: [PATCH 028/239] Removed unused template --- view/templates/fake_feed.tpl | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 view/templates/fake_feed.tpl diff --git a/view/templates/fake_feed.tpl b/view/templates/fake_feed.tpl deleted file mode 100644 index c4c45bf4d..000000000 --- a/view/templates/fake_feed.tpl +++ /dev/null @@ -1,14 +0,0 @@ - - - - - fake feed - fake title - - 1970-01-01T00:00:00Z - - - Fake Name - http://example.com - - From 0de192611319b891763ddbe484f82f1ccfaa5a3b Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 14 Jul 2015 08:52:54 +0200 Subject: [PATCH 029/239] removed logger entry --- mod/wall_upload.php | 1 - 1 file changed, 1 deletion(-) diff --git a/mod/wall_upload.php b/mod/wall_upload.php index 9abc1dd9f..44cfa0156 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -119,7 +119,6 @@ function wall_upload_post(&$a, $desktopmode = true) { $maximagesize = get_config('system','maximagesize'); if(($maximagesize) && ($filesize > $maximagesize)) { - logger("Image exceeds size limit of ".$maximagesize); echo sprintf( t('Image exceeds size limit of %s'), formatBytes($maximagesize)) . EOL; @unlink($src); killme(); From ba790def2272b91ee14c9062e00432dd79454619 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 14 Jul 2015 16:31:45 +0200 Subject: [PATCH 030/239] NL update to the strings --- view/nl/messages.po | 13397 +++++++++++++++++++++--------------------- view/nl/strings.php | 2786 ++++----- 2 files changed, 8120 insertions(+), 8063 deletions(-) diff --git a/view/nl/messages.po b/view/nl/messages.po index df4726983..52608625e 100644 --- a/view/nl/messages.po +++ b/view/nl/messages.po @@ -14,5358 +14,2374 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-04 17:54+0200\n" -"PO-Revision-Date: 2015-05-18 10:07+0000\n" +"POT-Creation-Date: 2015-07-08 13:18+0200\n" +"PO-Revision-Date: 2015-07-14 10:17+0000\n" "Last-Translator: Karel Vandecandelaere \n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/friendica/language/nl/)\n" +"Language-Team: Dutch (http://www.transifex.com/p/friendica/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/vier/config.php:56 -#: ../../view/theme/duepuntozero/config.php:59 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../object/Item.php:678 ../../mod/contacts.php:492 -#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 -#: ../../mod/photos.php:1084 ../../mod/photos.php:1203 -#: ../../mod/photos.php:1514 ../../mod/photos.php:1565 -#: ../../mod/photos.php:1609 ../../mod/photos.php:1697 -#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 -#: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/profiles.php:686 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/crepair.php:186 -#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 -msgid "Submit" -msgstr "Opslaan" - -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/vier/config.php:58 -#: ../../view/theme/duepuntozero/config.php:61 -#: ../../view/theme/diabook/config.php:150 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -msgid "Theme settings" -msgstr "Thema-instellingen" - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -msgid "Set font-size for posts and comments" -msgstr "Stel lettergrootte voor berichten en reacties in" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Stel breedte van het thema in" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Kleurschema" - -#: ../../view/theme/vier/config.php:59 -msgid "Set style" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719 -#: ../../include/user.php:247 -msgid "default" -msgstr "standaard" - -#: ../../view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "" - -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335 -msgid "don't show" -msgstr "niet tonen" - -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334 -msgid "show" -msgstr "tonen" - -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Stel lijnhoogte voor berichten en reacties in" - -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Stel resolutie in voor de middelste kolom. " - -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Stel kleurenschema in" - -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Forum/groepspagina's" - -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Forum/groepsprofielen" - -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "" - -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Diensten verbinden" - -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Zoek vrienden" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Laatste gebruikers" - -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Laatste foto's" - -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Recent leuk gevonden" - -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../mod/notifications.php:93 -msgid "Home" -msgstr "Tijdlijn" - -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:148 -msgid "Your posts and conversations" -msgstr "Jouw berichten en conversaties" - -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../mod/profperm.php:103 -#: ../../mod/newmember.php:32 -msgid "Profile" -msgstr "Profiel" - -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Jouw profiel pagina" - -#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177 -#: ../../mod/contacts.php:718 -msgid "Contacts" -msgstr "Contacten" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Jouw contacten" - -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140 -#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto's" - -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Jouw foto's" - -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157 -#: ../../include/nav.php:80 ../../mod/events.php:370 -msgid "Events" -msgstr "Gebeurtenissen" - -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 -msgid "Your events" -msgstr "Jouw gebeurtenissen" - -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 -msgid "Personal notes" -msgstr "Persoonlijke nota's" - -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Jouw persoonlijke foto's" - -#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../mod/community.php:32 -msgid "Community" -msgstr "Website" - -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:245 ../../include/text.php:1983 -msgid "event" -msgstr "gebeurtenis" - -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:248 ../../include/conversation.php:257 -#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 -#: ../../mod/tagger.php:62 -msgid "status" -msgstr "status" - -#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011 -#: ../../include/conversation.php:126 ../../include/conversation.php:253 -#: ../../include/text.php:1985 ../../mod/like.php:149 -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 -msgid "photo" -msgstr "foto" - -#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027 -#: ../../include/conversation.php:137 ../../mod/like.php:166 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s vindt het %3$s van %2$s leuk" - -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 -#: ../../mod/photos.php:155 ../../mod/photos.php:1064 -#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 -msgid "Contact Photos" -msgstr "Contactfoto's" - -#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335 -#: ../../include/user.php:342 ../../include/user.php:349 -#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 -#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 -msgid "Profile Photos" -msgstr "Profielfoto's" - -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokale gids" - -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51 -msgid "Global Directory" -msgstr "Globale gids" - -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Dezelfde interesses" - -#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35 -#: ../../mod/suggest.php:68 -msgid "Friend Suggestions" -msgstr "Vriendschapsvoorstellen" - -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" - -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172 -#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325 -#: ../../mod/newmember.php:22 -msgid "Settings" -msgstr "Instellingen" - -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Uitlijning" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Links" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Gecentreerd" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Lettergrootte berichten" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Lettergrootte tekstgebieden" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Stel kleurschema in" - -#: ../../index.php:211 ../../mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " - -#: ../../index.php:255 ../../mod/help.php:42 -msgid "Not Found" -msgstr "Niet gevonden" - -#: ../../index.php:258 ../../mod/help.php:45 -msgid "Page not found." -msgstr "Pagina niet gevonden" - -#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19 -msgid "Permission denied" -msgstr "Toegang geweigerd" - -#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33 -#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 -#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/group.php:19 ../../mod/delegate.php:12 -#: ../../mod/notifications.php:66 ../../mod/settings.php:20 -#: ../../mod/settings.php:107 ../../mod/settings.php:606 -#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55 -#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 -#: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 -#: ../../mod/viewcontacts.php:24 ../../mod/wall_upload.php:66 -#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 -#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/profiles.php:165 ../../mod/profiles.php:618 -#: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 -#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55 -#: ../../mod/item.php:169 ../../mod/item.php:185 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 -#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/allfriends.php:9 -msgid "Permission denied." -msgstr "Toegang geweigerd" - -#: ../../index.php:427 -msgid "toggle mobile" -msgstr "mobiel thema omwisselen" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:30 -#, php-format -msgid "Do you wish to confirm your identity (%s) with %s" -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:43 -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Bevestig" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:44 -msgid "Do not confirm" -msgstr "Bevestig niet" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:48 -msgid "Trust This Site" -msgstr "Vertrouw deze website" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:53 -msgid "No Identifier Sent" -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5 -msgid "Requested identity don't match logged in user." -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render.php:27 -#, php-format -msgid "Please wait; you are being redirected to <%s>" -msgstr "" - -#: ../../boot.php:749 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" - -#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677 -#: ../../mod/photos.php:1564 ../../mod/photos.php:1608 -#: ../../mod/photos.php:1696 ../../mod/content.php:709 -msgid "Comment" -msgstr "Reacties" - -#: ../../boot.php:751 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:390 ../../mod/content.php:606 -msgid "show more" -msgstr "toon meer" - -#: ../../boot.php:752 -msgid "show fewer" -msgstr "Minder tonen" - -#: ../../boot.php:1122 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Wijziging %s mislukt. Lees de error logbestanden." - -#: ../../boot.php:1229 -msgid "Create a New Account" -msgstr "Nieuwe account aanmaken" - -#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269 -msgid "Register" -msgstr "Registreer" - -#: ../../boot.php:1254 ../../include/nav.php:73 -msgid "Logout" -msgstr "Uitloggen" - -#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12 -msgid "Login" -msgstr "Login" - -#: ../../boot.php:1257 -msgid "Nickname or Email address: " -msgstr "Bijnaam of e-mailadres:" - -#: ../../boot.php:1258 -msgid "Password: " -msgstr "Wachtwoord:" - -#: ../../boot.php:1259 -msgid "Remember me" -msgstr "Onthou me" - -#: ../../boot.php:1262 -msgid "Or login using OpenID: " -msgstr "Of log in met OpenID:" - -#: ../../boot.php:1268 -msgid "Forgot your password?" -msgstr "Wachtwoord vergeten?" - -#: ../../boot.php:1269 ../../mod/lostpass.php:109 -msgid "Password Reset" -msgstr "Wachtwoord opnieuw instellen" - -#: ../../boot.php:1271 -msgid "Website Terms of Service" -msgstr "Gebruikersvoorwaarden website" - -#: ../../boot.php:1272 -msgid "terms of service" -msgstr "servicevoorwaarden" - -#: ../../boot.php:1274 -msgid "Website Privacy Policy" -msgstr "Privacybeleid website" - -#: ../../boot.php:1275 -msgid "privacy policy" -msgstr "privacybeleid" - -#: ../../boot.php:1408 -msgid "Requested account is not available." -msgstr "Gevraagde account is niet beschikbaar." - -#: ../../boot.php:1447 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Gevraagde profiel is niet beschikbaar." - -#: ../../boot.php:1490 ../../boot.php:1624 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Bewerk profiel" - -#: ../../boot.php:1557 ../../include/contact_widgets.php:10 -#: ../../mod/suggest.php:90 ../../mod/match.php:58 -msgid "Connect" -msgstr "Verbinden" - -#: ../../boot.php:1589 -msgid "Message" -msgstr "Bericht" - -#: ../../boot.php:1595 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Profielen" - -#: ../../boot.php:1595 -msgid "Manage/edit profiles" -msgstr "Beheer/wijzig profielen" - -#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804 -msgid "Change profile photo" -msgstr "Profiel foto wijzigen" - -#: ../../boot.php:1601 ../../mod/profiles.php:805 -msgid "Create New Profile" -msgstr "Maak nieuw profiel" - -#: ../../boot.php:1611 ../../mod/profiles.php:816 -msgid "Profile Image" -msgstr "Profiel afbeelding" - -#: ../../boot.php:1614 ../../mod/profiles.php:818 -msgid "visible to everybody" -msgstr "zichtbaar voor iedereen" - -#: ../../boot.php:1615 ../../mod/profiles.php:819 -msgid "Edit visibility" -msgstr "Pas zichtbaarheid aan" - -#: ../../boot.php:1637 ../../include/event.php:40 -#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471 -#: ../../mod/directory.php:136 -msgid "Location:" -msgstr "Plaats:" - -#: ../../boot.php:1639 ../../include/profile_advanced.php:17 -#: ../../mod/directory.php:138 -msgid "Gender:" -msgstr "Geslacht:" - -#: ../../boot.php:1642 ../../include/profile_advanced.php:37 -#: ../../mod/directory.php:140 -msgid "Status:" -msgstr "Tijdlijn:" - -#: ../../boot.php:1644 ../../include/profile_advanced.php:48 -#: ../../mod/directory.php:142 -msgid "Homepage:" -msgstr "Website:" - -#: ../../boot.php:1646 ../../include/profile_advanced.php:58 -#: ../../mod/directory.php:144 -msgid "About:" -msgstr "Over:" - -#: ../../boot.php:1711 -msgid "Network:" -msgstr "" - -#: ../../boot.php:1743 ../../boot.php:1829 -msgid "g A l F d" -msgstr "G l j F" - -#: ../../boot.php:1744 ../../boot.php:1830 -msgid "F d" -msgstr "d F" - -#: ../../boot.php:1789 ../../boot.php:1877 -msgid "[today]" -msgstr "[vandaag]" - -#: ../../boot.php:1801 -msgid "Birthday Reminders" -msgstr "Verjaardagsherinneringen" - -#: ../../boot.php:1802 -msgid "Birthdays this week:" -msgstr "Verjaardagen deze week:" - -#: ../../boot.php:1864 -msgid "[No description]" -msgstr "[Geen omschrijving]" - -#: ../../boot.php:1888 -msgid "Event Reminders" -msgstr "Gebeurtenisherinneringen" - -#: ../../boot.php:1889 -msgid "Events this week:" -msgstr "Gebeurtenissen deze week:" - -#: ../../boot.php:2126 ../../include/nav.php:76 -msgid "Status" -msgstr "Tijdlijn" - -#: ../../boot.php:2129 -msgid "Status Messages and Posts" -msgstr "Berichten op jouw tijdlijn" - -#: ../../boot.php:2136 -msgid "Profile Details" -msgstr "Profieldetails" - -#: ../../boot.php:2143 ../../mod/photos.php:52 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79 -msgid "Videos" -msgstr "Video's" - -#: ../../boot.php:2160 -msgid "Events and Calendar" -msgstr "Gebeurtenissen en kalender" - -#: ../../boot.php:2164 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Persoonlijke Nota's" - -#: ../../boot.php:2167 -msgid "Only You Can See This" -msgstr "Alleen jij kunt dit zien" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Algemene functies" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Meerdere profielen" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Mogelijkheid om meerdere profielen aan te maken" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Tekstverwerker met opmaak" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Voorvertoning bericht" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "" - -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "" - -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Zijbalkwidgets op netwerkpagina" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Zoeken op datum" - -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Groepsfilter" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen" - -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Netwerkfilter" - -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken" - -#: ../../include/features.php:42 ../../mod/network.php:194 -#: ../../mod/search.php:30 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" - -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Netwerktabs" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" - -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" - -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" - -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)" - -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "" - -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Bericht-/reactiehulpmiddelen" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Meervoudige verwijdering" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer" - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Bewerk verzonden berichten" - -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Bewerk en corrigeer berichten en reacties na verzending" - -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Labelen" - -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Mogelijkheid om bestaande berichten te labelen" - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Categorieën berichten" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" - -#: ../../include/features.php:60 ../../include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Bewaarde Mappen" - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen te bewaren" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Geef berichten een ster" - -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "" - -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "" - -#: ../../include/items.php:2307 ../../include/datetime.php:477 -#, php-format -msgid "%s's birthday" -msgstr "%s's verjaardag" - -#: ../../include/items.php:2308 ../../include/datetime.php:478 -#, php-format -msgid "Happy Birthday %s" -msgstr "Gefeliciteerd %s" - -#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717 -#: ../../mod/dfrn_confirm.php:752 -msgid "[Name Withheld]" -msgstr "[Naam achtergehouden]" - -#: ../../include/items.php:4619 ../../mod/admin.php:169 -#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15 -#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284 -#: ../../mod/display.php:503 -msgid "Item not found." -msgstr "Item niet gevonden." - -#: ../../include/items.php:4658 -msgid "Do you really want to delete this item?" -msgstr "Wil je echt dit item verwijderen?" - -#: ../../include/items.php:4660 ../../mod/settings.php:1015 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1029 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1038 -#: ../../mod/settings.php:1044 ../../mod/settings.php:1050 -#: ../../mod/settings.php:1056 ../../mod/settings.php:1086 -#: ../../mod/settings.php:1087 ../../mod/settings.php:1088 -#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 -#: ../../mod/contacts.php:341 ../../mod/register.php:233 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105 -#: ../../mod/suggest.php:29 ../../mod/message.php:209 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 -msgid "Yes" -msgstr "Ja" - -#: ../../include/items.php:4663 ../../include/conversation.php:1128 -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -#: ../../mod/contacts.php:344 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:844 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../mod/message.php:212 -msgid "Cancel" -msgstr "Annuleren" - -#: ../../include/items.php:4881 -msgid "Archives" -msgstr "Archieven" - -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. " - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Iedereen" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "verander" - -#: ../../include/group.php:270 ../../mod/newmember.php:66 -msgid "Groups" -msgstr "Groepen" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Verander groep" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Maak nieuwe groep" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "" - -#: ../../include/group.php:275 ../../mod/network.php:195 -msgid "add" -msgstr "toevoegen" - -#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 -#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 -#: ../../include/Photo.php:933 ../../include/Photo.php:948 -#: ../../include/Photo.php:955 ../../include/Photo.php:977 -#: ../../include/message.php:144 ../../mod/wall_upload.php:169 -#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../mod/item.php:485 -msgid "Wall Photos" -msgstr "" - -#: ../../include/dba.php:56 ../../include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Nieuw Contact toevoegen" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Voeg een webadres of -locatie in:" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara" - -#: ../../include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" - -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Zoek mensen" - -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" - -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Verbind/Volg" - -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeelden: Jan Peeters, Vissen" - -#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724 -#: ../../mod/directory.php:63 -msgid "Find" -msgstr "Zoek" - -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Willekeurig Profiel" - -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Netwerken" - -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Alle netwerken" - -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Alles" - -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Categorieën" - -#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d gedeeld contact" -msgstr[1] "%d gedeelde contacten" - -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Friendica Notificatie" - -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Bedankt" - -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "%s Beheerder" - -#: ../../include/enotify.php:33 ../../include/delivery.php:467 -#: ../../include/notifier.php:796 -msgid "noreply" -msgstr "geen reactie" - -#: ../../include/enotify.php:64 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:68 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s" - -#: ../../include/enotify.php:70 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s sent you a new private message at %2$s." - -#: ../../include/enotify.php:71 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s stuurde jou %2$s." - -#: ../../include/enotify.php:71 -msgid "a private message" -msgstr "een prive bericht" - -#: ../../include/enotify.php:72 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden." - -#: ../../include/enotify.php:124 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]" - -#: ../../include/enotify.php:131 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]" - -#: ../../include/enotify.php:139 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]" - -#: ../../include/enotify.php:149 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../include/enotify.php:150 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt." - -#: ../../include/enotify.php:153 ../../include/enotify.php:168 -#: ../../include/enotify.php:181 ../../include/enotify.php:194 -#: ../../include/enotify.php:212 ../../include/enotify.php:225 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bezoek %s om de conversatie te bekijken en/of te beantwoorden." - -#: ../../include/enotify.php:160 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../include/enotify.php:162 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: ../../include/enotify.php:164 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" - -#: ../../include/enotify.php:175 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notificatie] %s heeft jou genoemd" - -#: ../../include/enotify.php:176 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s heeft jou in %2$s genoemd" - -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]." - -#: ../../include/enotify.php:188 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "" - -#: ../../include/enotify.php:189 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "" - -#: ../../include/enotify.php:190 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" - -#: ../../include/enotify.php:202 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify] %1$s heeft jou aangestoten" - -#: ../../include/enotify.php:203 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s heeft jou aangestoten op %2$s" - -#: ../../include/enotify.php:204 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." +#: object/Item.php:95 +msgid "This entry was edited" msgstr "" -#: ../../include/enotify.php:219 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld" - -#: ../../include/enotify.php:220 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s heeft jouw bericht gelabeld in %2$s" - -#: ../../include/enotify.php:221 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]" - -#: ../../include/enotify.php:232 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen" - -#: ../../include/enotify.php:233 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s" - -#: ../../include/enotify.php:234 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s." - -#: ../../include/enotify.php:237 ../../include/enotify.php:279 -#, php-format -msgid "You may visit their profile at %s" -msgstr "U kunt hun profiel bezoeken op %s" - -#: ../../include/enotify.php:239 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Bezoek %s om het verzoek goed of af te keuren." - -#: ../../include/enotify.php:247 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" - -#: ../../include/enotify.php:248 ../../include/enotify.php:249 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" - -#: ../../include/enotify.php:255 -msgid "[Friendica:Notify] You have a new follower" -msgstr "" - -#: ../../include/enotify.php:256 ../../include/enotify.php:257 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "" - -#: ../../include/enotify.php:270 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:271 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "" - -#: ../../include/enotify.php:277 -msgid "Name:" -msgstr "Naam:" - -#: ../../include/enotify.php:278 -msgid "Photo:" -msgstr "Foto: " - -#: ../../include/enotify.php:281 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../include/enotify.php:289 ../../include/enotify.php:302 -msgid "[Friendica:Notify] Connection accepted" -msgstr "" - -#: ../../include/enotify.php:290 ../../include/enotify.php:303 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "" - -#: ../../include/enotify.php:291 ../../include/enotify.php:304 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" - -#: ../../include/enotify.php:294 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "" - -#: ../../include/enotify.php:297 ../../include/enotify.php:311 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" - -#: ../../include/enotify.php:307 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "" - -#: ../../include/enotify.php:309 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "" - -#: ../../include/enotify.php:322 -msgid "[Friendica System:Notify] registration request" -msgstr "" - -#: ../../include/enotify.php:323 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:324 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" - -#: ../../include/enotify.php:327 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "" - -#: ../../include/enotify.php:330 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "" - -#: ../../include/api.php:304 ../../include/api.php:315 -#: ../../include/api.php:416 ../../include/api.php:1063 -#: ../../include/api.php:1065 -msgid "User not found." -msgstr "Gebruiker niet gevonden" - -#: ../../include/api.php:770 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: ../../include/api.php:789 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: ../../include/api.php:808 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: ../../include/api.php:1271 -msgid "There is no status with this id." -msgstr "Er is geen status met dit kenmerk" - -#: ../../include/api.php:1341 -msgid "There is no conversation with this id." -msgstr "" - -#: ../../include/api.php:1613 -msgid "Invalid request." -msgstr "" - -#: ../../include/api.php:1624 -msgid "Invalid item." -msgstr "" - -#: ../../include/api.php:1634 -msgid "Invalid action. " -msgstr "" - -#: ../../include/api.php:1642 -msgid "DB error" -msgstr "" - -#: ../../include/network.php:890 -msgid "view full size" -msgstr "Volledig formaat" - -#: ../../include/Scrape.php:608 -msgid " on Last.fm" -msgstr " op Last.fm" - -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133 -msgid "Full Name:" -msgstr "Volledige Naam:" - -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "F j Y" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "F j" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Verjaardag:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Leeftijd:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" - -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714 -msgid "Sexual Preference:" -msgstr "Seksuele Voorkeur:" - -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716 -msgid "Hometown:" -msgstr "Woonplaats:" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Labels:" - -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717 -msgid "Political Views:" -msgstr "Politieke standpunten:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religie:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobby:" - -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721 -msgid "Likes:" -msgstr "Houdt van:" - -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722 -msgid "Dislikes:" -msgstr "Houdt niet van:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Muzikale interesse " - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televisie" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/cultuur/ontspanning:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Liefde/romance:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Werk/beroep:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "School/opleiding:" - -#: ../../include/nav.php:34 ../../mod/navigation.php:20 -msgid "Nothing new here" -msgstr "Niets nieuw hier" - -#: ../../include/nav.php:38 ../../mod/navigation.php:24 -msgid "Clear notifications" -msgstr "Notificaties verwijderen" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Deze sessie beëindigen" - -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "" - -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "" - -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Inloggen" - -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Jouw tijdlijn" - -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Maak een accoount" - -#: ../../include/nav.php:114 ../../mod/help.php:36 -msgid "Help" -msgstr "Help" - -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Hulp en documentatie" - -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Apps" - -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Extra toepassingen, hulpmiddelen of spelletjes" - -#: ../../include/nav.php:119 ../../include/text.php:968 -#: ../../include/text.php:969 ../../mod/search.php:99 -msgid "Search" -msgstr "Zoeken" - -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Doorzoek de inhoud van de website" - -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Conversaties op deze website" - -#: ../../include/nav.php:131 -msgid "Conversations on the network" -msgstr "" - -#: ../../include/nav.php:133 -msgid "Directory" -msgstr "Gids" - -#: ../../include/nav.php:133 -msgid "People directory" -msgstr "Personengids" - -#: ../../include/nav.php:135 -msgid "Information" -msgstr "Informatie" - -#: ../../include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "" - -#: ../../include/nav.php:145 ../../mod/notifications.php:83 -msgid "Network" -msgstr "Netwerk" - -#: ../../include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Conversaties van je vrienden" - -#: ../../include/nav.php:146 -msgid "Network Reset" -msgstr "Netwerkpagina opnieuw instellen" - -#: ../../include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "Laad de netwerkpagina zonder filters" - -#: ../../include/nav.php:154 ../../mod/notifications.php:98 -msgid "Introductions" -msgstr "Verzoeken" - -#: ../../include/nav.php:154 -msgid "Friend Requests" -msgstr "Vriendschapsverzoeken" - -#: ../../include/nav.php:155 ../../mod/notifications.php:224 -msgid "Notifications" -msgstr "Notificaties" - -#: ../../include/nav.php:156 -msgid "See all notifications" -msgstr "Toon alle notificaties" - -#: ../../include/nav.php:157 -msgid "Mark all system notifications seen" -msgstr "Alle systeemnotificaties als gelezen markeren" - -#: ../../include/nav.php:161 ../../mod/message.php:182 -msgid "Messages" -msgstr "Privéberichten" - -#: ../../include/nav.php:161 -msgid "Private mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:162 -msgid "Inbox" -msgstr "Inbox" - -#: ../../include/nav.php:163 -msgid "Outbox" -msgstr "Verzonden berichten" - -#: ../../include/nav.php:164 ../../mod/message.php:9 -msgid "New Message" -msgstr "Nieuw Bericht" - -#: ../../include/nav.php:167 -msgid "Manage" -msgstr "Beheren" - -#: ../../include/nav.php:167 -msgid "Manage other pages" -msgstr "Andere pagina's beheren" - -#: ../../include/nav.php:170 ../../mod/settings.php:67 -msgid "Delegations" -msgstr "" - -#: ../../include/nav.php:170 ../../mod/delegate.php:130 -msgid "Delegate Page Management" -msgstr "Paginabeheer uitbesteden" - -#: ../../include/nav.php:172 -msgid "Account settings" -msgstr "Account instellingen" - -#: ../../include/nav.php:175 -msgid "Manage/Edit Profiles" -msgstr "Beheer/Wijzig Profielen" - -#: ../../include/nav.php:177 -msgid "Manage/edit friends and contacts" -msgstr "Beheer/Wijzig vrienden en contacten" - -#: ../../include/nav.php:184 ../../mod/admin.php:130 -msgid "Admin" -msgstr "Beheer" - -#: ../../include/nav.php:184 -msgid "Site setup and configuration" -msgstr "Website opzetten en configureren" - -#: ../../include/nav.php:188 -msgid "Navigation" -msgstr "Navigatie" - -#: ../../include/nav.php:188 -msgid "Site map" -msgstr "Sitemap" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507 -msgid "Disallowed profile URL." -msgstr "Niet toegelaten profiel adres." - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "" - -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "" - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "" - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact." - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "" - -#: ../../include/follow.php:258 -msgid "following" -msgstr "volgend" - -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "" - -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "" - -#: ../../include/uimport.php:120 ../../include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Gebruiker '%s' bestaat al op deze server!" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Fout bij het aanmaken van de gebruiker" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Fout bij het aanmaken van het gebruikersprofiel" - -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contact werd niet geïmporteerd" -msgstr[1] "%d contacten werden niet geïmporteerd" - -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" - -#: ../../include/event.php:11 ../../include/bb2diaspora.php:133 -#: ../../mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 -msgid "Starts:" -msgstr "Begint:" - -#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 -msgid "Finishes:" -msgstr "Eindigt:" - -#: ../../include/Contact.php:119 -msgid "stopped following" -msgstr "" - -#: ../../include/Contact.php:232 ../../include/conversation.php:881 -msgid "Poke" -msgstr "Aanstoten" - -#: ../../include/Contact.php:233 ../../include/conversation.php:875 -msgid "View Status" -msgstr "Bekijk status" - -#: ../../include/Contact.php:234 ../../include/conversation.php:876 -msgid "View Profile" -msgstr "Bekijk profiel" - -#: ../../include/Contact.php:235 ../../include/conversation.php:877 -msgid "View Photos" -msgstr "Bekijk foto's" - -#: ../../include/Contact.php:236 ../../include/Contact.php:259 -#: ../../include/conversation.php:878 -msgid "Network Posts" -msgstr "Netwerkberichten" - -#: ../../include/Contact.php:237 ../../include/Contact.php:259 -#: ../../include/conversation.php:879 -msgid "Edit Contact" -msgstr "Bewerk contact" - -#: ../../include/Contact.php:238 -msgid "Drop Contact" -msgstr "Verwijder contact" - -#: ../../include/Contact.php:239 ../../include/Contact.php:259 -#: ../../include/conversation.php:880 -msgid "Send PM" -msgstr "Stuur een privébericht" - -#: ../../include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "" - -#: ../../include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "" - -#: ../../include/dbstructure.php:150 -msgid "Errors encountered creating database tables." -msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld." - -#: ../../include/dbstructure.php:208 -msgid "Errors encountered performing database changes." -msgstr "" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Diversen" - -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "jaar" - -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "maand" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "dag" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "nooit" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: ../../include/datetime.php:290 -msgid "years" -msgstr "jaren" - -#: ../../include/datetime.php:291 -msgid "months" -msgstr "maanden" - -#: ../../include/datetime.php:292 -msgid "week" -msgstr "week" - -#: ../../include/datetime.php:292 -msgid "weeks" -msgstr "weken" - -#: ../../include/datetime.php:293 -msgid "days" -msgstr "dagen" - -#: ../../include/datetime.php:294 -msgid "hour" -msgstr "uur" - -#: ../../include/datetime.php:294 -msgid "hours" -msgstr "uren" - -#: ../../include/datetime.php:295 -msgid "minute" -msgstr "minuut" - -#: ../../include/datetime.php:295 -msgid "minutes" -msgstr "minuten" - -#: ../../include/datetime.php:296 -msgid "second" -msgstr "seconde" - -#: ../../include/datetime.php:296 -msgid "seconds" -msgstr "secondes" - -#: ../../include/datetime.php:305 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[geen onderwerp]" - -#: ../../include/delivery.php:456 ../../include/notifier.php:786 -msgid "(no subject)" -msgstr "(geen onderwerp)" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Onbekend | Niet " - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Onmiddellijk blokkeren" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Onbetrouwbaar, spammer, zelfpromotor" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Bekend, maar geen mening" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, waarschijnlijk onschadelijk" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Gerenommeerd, heeft mijn vertrouwen" - -#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571 -msgid "Frequently" -msgstr "Frequent" - -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572 -msgid "Hourly" -msgstr "elk uur" - -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573 -msgid "Twice daily" -msgstr "Twee keer per dag" - -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574 -msgid "Daily" -msgstr "dagelijks" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "wekelijks" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "maandelijks" - -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1003 -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031 -msgid "Email" -msgstr "E-mail" - -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741 -#: ../../mod/dfrn_request.php:838 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 -#: ../../mod/newmember.php:51 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "Linkedln" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "Myspace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora-connector" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" - -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: ../../include/diaspora.php:621 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:486 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s is nu bevriend met %2$s" - -#: ../../include/diaspora.php:704 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: ../../include/diaspora.php:2444 -msgid "Attachments:" -msgstr "Bijlagen:" - -#: ../../include/conversation.php:140 ../../mod/like.php:168 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vindt het %3$s van %2$s niet leuk" - -#: ../../include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stootte %2$s aan" - -#: ../../include/conversation.php:226 ../../mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s is op dit moment %2$s" - -#: ../../include/conversation.php:265 ../../mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s labelde %3$s van %2$s met %4$s" - -#: ../../include/conversation.php:290 -msgid "post/item" -msgstr "bericht/item" +#: object/Item.php:117 mod/content.php:622 mod/photos.php:1379 +msgid "Private Message" +msgstr "Privébericht" -#: ../../include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s markeerde %2$s's %3$s als favoriet" +#: object/Item.php:121 mod/content.php:730 mod/settings.php:683 +msgid "Edit" +msgstr "Bewerken" -#: ../../include/conversation.php:612 ../../object/Item.php:129 -#: ../../mod/photos.php:1653 ../../mod/content.php:437 -#: ../../mod/content.php:740 +#: object/Item.php:130 mod/content.php:439 mod/content.php:742 +#: mod/photos.php:1672 include/conversation.php:612 msgid "Select" msgstr "Kies" -#: ../../include/conversation.php:613 ../../object/Item.php:130 -#: ../../mod/group.php:171 ../../mod/settings.php:682 -#: ../../mod/contacts.php:733 ../../mod/admin.php:1007 -#: ../../mod/photos.php:1654 ../../mod/content.php:438 -#: ../../mod/content.php:741 +#: object/Item.php:131 mod/admin.php:1017 mod/contacts.php:760 +#: mod/content.php:440 mod/content.php:743 mod/group.php:171 +#: mod/photos.php:1673 mod/settings.php:684 include/conversation.php:613 msgid "Delete" msgstr "Verwijder" -#: ../../include/conversation.php:653 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../mod/content.php:471 -#: ../../mod/content.php:852 ../../mod/content.php:853 +#: object/Item.php:134 mod/content.php:765 +msgid "save to folder" +msgstr "Bewaren in map" + +#: object/Item.php:196 mod/content.php:755 +msgid "add star" +msgstr "ster toevoegen" + +#: object/Item.php:197 mod/content.php:756 +msgid "remove star" +msgstr "ster verwijderen" + +#: object/Item.php:198 mod/content.php:757 +msgid "toggle star status" +msgstr "ster toevoegen of verwijderen" + +#: object/Item.php:201 mod/content.php:760 +msgid "starred" +msgstr "met ster" + +#: object/Item.php:209 +msgid "ignore thread" +msgstr "" + +#: object/Item.php:210 +msgid "unignore thread" +msgstr "" + +#: object/Item.php:211 +msgid "toggle ignore status" +msgstr "" + +#: object/Item.php:214 +msgid "ignored" +msgstr "" + +#: object/Item.php:221 mod/content.php:761 +msgid "add tag" +msgstr "label toevoegen" + +#: object/Item.php:232 mod/content.php:686 mod/photos.php:1561 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" + +#: object/Item.php:232 mod/content.php:686 +msgid "like" +msgstr "leuk" + +#: object/Item.php:233 mod/content.php:687 mod/photos.php:1562 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: object/Item.php:233 mod/content.php:687 +msgid "dislike" +msgstr "niet leuk" + +#: object/Item.php:235 mod/content.php:689 +msgid "Share this" +msgstr "Delen" + +#: object/Item.php:235 mod/content.php:689 +msgid "share" +msgstr "Delen" + +#: object/Item.php:319 include/conversation.php:665 +msgid "Categories:" +msgstr "Categorieën:" + +#: object/Item.php:320 include/conversation.php:666 +msgid "Filed under:" +msgstr "Bewaard onder:" + +#: object/Item.php:329 object/Item.php:330 mod/content.php:473 +#: mod/content.php:854 mod/content.php:855 include/conversation.php:653 #, php-format msgid "View %s's profile @ %s" msgstr "Bekijk het profiel van %s @ %s" -#: ../../include/conversation.php:665 ../../object/Item.php:316 -msgid "Categories:" -msgstr "Categorieën:" +#: object/Item.php:331 mod/content.php:856 +msgid "to" +msgstr "aan" -#: ../../include/conversation.php:666 ../../object/Item.php:317 -msgid "Filed under:" -msgstr "Bewaard onder:" +#: object/Item.php:332 +msgid "via" +msgstr "via" -#: ../../include/conversation.php:673 ../../object/Item.php:340 -#: ../../mod/content.php:481 ../../mod/content.php:864 +#: object/Item.php:333 mod/content.php:857 +msgid "Wall-to-Wall" +msgstr "wall-to-wall" + +#: object/Item.php:334 mod/content.php:858 +msgid "via Wall-To-Wall:" +msgstr "via wall-to-wall" + +#: object/Item.php:343 mod/content.php:483 mod/content.php:866 +#: include/conversation.php:673 #, php-format msgid "%s from %s" msgstr "%s van %s" -#: ../../include/conversation.php:689 ../../mod/content.php:497 -msgid "View in context" -msgstr "In context bekijken" +#: object/Item.php:364 object/Item.php:680 mod/content.php:711 +#: mod/photos.php:1583 mod/photos.php:1627 mod/photos.php:1715 boot.php:754 +msgid "Comment" +msgstr "Reacties" -#: ../../include/conversation.php:691 ../../include/conversation.php:1108 -#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/photos.php:1545 -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 +#: object/Item.php:367 mod/wallmessage.php:156 mod/message.php:334 +#: mod/message.php:565 mod/content.php:501 mod/content.php:885 +#: mod/editpost.php:124 mod/photos.php:1564 include/conversation.php:691 +#: include/conversation.php:1074 msgid "Please wait" msgstr "Even geduld" -#: ../../include/conversation.php:771 -msgid "remove" -msgstr "verwijder" - -#: ../../include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Geselecteerde items verwijderen" - -#: ../../include/conversation.php:874 -msgid "Follow Thread" -msgstr "Conversatie volgen" - -#: ../../include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." - -#: ../../include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." - -#: ../../include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d mensen vinden dit leuk" - -#: ../../include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d people vinden dit niet leuk" - -#: ../../include/conversation.php:965 -msgid "and" -msgstr "en" - -#: ../../include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr ", en %d andere mensen" - -#: ../../include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "%s vindt dit leuk." - -#: ../../include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "%s vindt dit niet leuk." - -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Zichtbaar voor iedereen" - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -msgid "Please enter a link URL:" -msgstr "Vul een internetadres/URL in:" - -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Vul een videolink/URL in:" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Vul een audiolink/URL in:" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Tag term:" -msgstr "Label:" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -#: ../../mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Bewaren in map:" - -#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Waar ben je nu?" - -#: ../../include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Item(s) verwijderen?" - -#: ../../include/conversation.php:1050 -msgid "Post to Email" -msgstr "Verzenden per e-mail" - -#: ../../include/conversation.php:1055 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: ../../include/conversation.php:1056 ../../mod/settings.php:1033 -msgid "Hide your profile details from unknown viewers?" -msgstr "Je profieldetails verbergen voor onbekende bezoekers?" - -#: ../../include/conversation.php:1089 ../../mod/photos.php:1544 -msgid "Share" -msgstr "Delen" - -#: ../../include/conversation.php:1090 ../../mod/wallmessage.php:154 -#: ../../mod/editpost.php:110 ../../mod/message.php:332 -#: ../../mod/message.php:562 -msgid "Upload photo" -msgstr "Foto uploaden" - -#: ../../include/conversation.php:1091 ../../mod/editpost.php:111 -msgid "upload photo" -msgstr "Foto uploaden" - -#: ../../include/conversation.php:1092 ../../mod/editpost.php:112 -msgid "Attach file" -msgstr "Bestand bijvoegen" - -#: ../../include/conversation.php:1093 ../../mod/editpost.php:113 -msgid "attach file" -msgstr "bestand bijvoegen" - -#: ../../include/conversation.php:1094 ../../mod/wallmessage.php:155 -#: ../../mod/editpost.php:114 ../../mod/message.php:333 -#: ../../mod/message.php:563 -msgid "Insert web link" -msgstr "Voeg een webadres in" - -#: ../../include/conversation.php:1095 ../../mod/editpost.php:115 -msgid "web link" -msgstr "webadres" - -#: ../../include/conversation.php:1096 ../../mod/editpost.php:116 -msgid "Insert video link" -msgstr "Voeg video toe" - -#: ../../include/conversation.php:1097 ../../mod/editpost.php:117 -msgid "video link" -msgstr "video adres" - -#: ../../include/conversation.php:1098 ../../mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Voeg audio adres toe" - -#: ../../include/conversation.php:1099 ../../mod/editpost.php:119 -msgid "audio link" -msgstr "audio adres" - -#: ../../include/conversation.php:1100 ../../mod/editpost.php:120 -msgid "Set your location" -msgstr "Stel uw locatie in" - -#: ../../include/conversation.php:1101 ../../mod/editpost.php:121 -msgid "set location" -msgstr "Stel uw locatie in" - -#: ../../include/conversation.php:1102 ../../mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Verwijder locatie uit uw webbrowser" - -#: ../../include/conversation.php:1103 ../../mod/editpost.php:123 -msgid "clear location" -msgstr "Verwijder locatie uit uw webbrowser" - -#: ../../include/conversation.php:1105 ../../mod/editpost.php:137 -msgid "Set title" -msgstr "Titel plaatsen" - -#: ../../include/conversation.php:1107 ../../mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (komma-gescheiden lijst)" - -#: ../../include/conversation.php:1109 ../../mod/editpost.php:125 -msgid "Permission settings" -msgstr "Instellingen van rechten" - -#: ../../include/conversation.php:1110 -msgid "permissions" -msgstr "rechten" - -#: ../../include/conversation.php:1118 ../../mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: e-mailadressen" - -#: ../../include/conversation.php:1119 ../../mod/editpost.php:134 -msgid "Public post" -msgstr "Openbare post" - -#: ../../include/conversation.php:1121 ../../mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" - -#: ../../include/conversation.php:1125 ../../object/Item.php:687 -#: ../../mod/editpost.php:145 ../../mod/photos.php:1566 -#: ../../mod/photos.php:1610 ../../mod/photos.php:1698 -#: ../../mod/content.php:719 -msgid "Preview" -msgstr "Voorvertoning" - -#: ../../include/conversation.php:1134 -msgid "Post to Groups" -msgstr "Verzenden naar Groepen" - -#: ../../include/conversation.php:1135 -msgid "Post to Contacts" -msgstr "Verzenden naar Contacten" - -#: ../../include/conversation.php:1136 -msgid "Private post" -msgstr "Privé verzending" - -#: ../../include/text.php:297 -msgid "newer" -msgstr "nieuwere berichten" - -#: ../../include/text.php:299 -msgid "older" -msgstr "oudere berichten" - -#: ../../include/text.php:304 -msgid "prev" -msgstr "vorige" - -#: ../../include/text.php:306 -msgid "first" -msgstr "eerste" - -#: ../../include/text.php:338 -msgid "last" -msgstr "laatste" - -#: ../../include/text.php:341 -msgid "next" -msgstr "volgende" - -#: ../../include/text.php:396 -msgid "Loading more entries..." -msgstr "" - -#: ../../include/text.php:397 -msgid "The end" -msgstr "" - -#: ../../include/text.php:870 -msgid "No contacts" -msgstr "Geen contacten" - -#: ../../include/text.php:879 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacten" - -#: ../../include/text.php:891 ../../mod/viewcontacts.php:78 -msgid "View Contacts" -msgstr "Bekijk contacten" - -#: ../../include/text.php:971 ../../mod/editpost.php:109 -#: ../../mod/notes.php:63 ../../mod/filer.php:31 -msgid "Save" -msgstr "Bewaren" - -#: ../../include/text.php:1020 -msgid "poke" -msgstr "aanstoten" - -#: ../../include/text.php:1020 -msgid "poked" -msgstr "aangestoten" - -#: ../../include/text.php:1021 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:1021 -msgid "pinged" -msgstr "gepingd" - -#: ../../include/text.php:1022 -msgid "prod" -msgstr "porren" - -#: ../../include/text.php:1022 -msgid "prodded" -msgstr "gepord" - -#: ../../include/text.php:1023 -msgid "slap" -msgstr "slaan" - -#: ../../include/text.php:1023 -msgid "slapped" -msgstr "geslagen" - -#: ../../include/text.php:1024 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:1024 -msgid "fingered" -msgstr "gerfingerd" - -#: ../../include/text.php:1025 -msgid "rebuff" -msgstr "afpoeieren" - -#: ../../include/text.php:1025 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: ../../include/text.php:1039 -msgid "happy" -msgstr "Blij" - -#: ../../include/text.php:1040 -msgid "sad" -msgstr "Verdrietig" - -#: ../../include/text.php:1041 -msgid "mellow" -msgstr "mellow" - -#: ../../include/text.php:1042 -msgid "tired" -msgstr "vermoeid" - -#: ../../include/text.php:1043 -msgid "perky" -msgstr "parmantig" - -#: ../../include/text.php:1044 -msgid "angry" -msgstr "boos" - -#: ../../include/text.php:1045 -msgid "stupified" -msgstr "verbijsterd" - -#: ../../include/text.php:1046 -msgid "puzzled" -msgstr "onzeker" - -#: ../../include/text.php:1047 -msgid "interested" -msgstr "Geïnteresseerd" - -#: ../../include/text.php:1048 -msgid "bitter" -msgstr "bitter" - -#: ../../include/text.php:1049 -msgid "cheerful" -msgstr "vrolijk" - -#: ../../include/text.php:1050 -msgid "alive" -msgstr "levend" - -#: ../../include/text.php:1051 -msgid "annoyed" -msgstr "verveeld" - -#: ../../include/text.php:1052 -msgid "anxious" -msgstr "bezorgd" - -#: ../../include/text.php:1053 -msgid "cranky" -msgstr "humeurig " - -#: ../../include/text.php:1054 -msgid "disturbed" -msgstr "verontrust" - -#: ../../include/text.php:1055 -msgid "frustrated" -msgstr "gefrustreerd" - -#: ../../include/text.php:1056 -msgid "motivated" -msgstr "gemotiveerd" - -#: ../../include/text.php:1057 -msgid "relaxed" -msgstr "ontspannen" - -#: ../../include/text.php:1058 -msgid "surprised" -msgstr "verbaasd" - -#: ../../include/text.php:1228 -msgid "Monday" -msgstr "Maandag" - -#: ../../include/text.php:1228 -msgid "Tuesday" -msgstr "Dinsdag" - -#: ../../include/text.php:1228 -msgid "Wednesday" -msgstr "Woensdag" - -#: ../../include/text.php:1228 -msgid "Thursday" -msgstr "Donderdag" - -#: ../../include/text.php:1228 -msgid "Friday" -msgstr "Vrijdag" - -#: ../../include/text.php:1228 -msgid "Saturday" -msgstr "Zaterdag" - -#: ../../include/text.php:1228 -msgid "Sunday" -msgstr "Zondag" - -#: ../../include/text.php:1232 -msgid "January" -msgstr "Januari" - -#: ../../include/text.php:1232 -msgid "February" -msgstr "Februari" - -#: ../../include/text.php:1232 -msgid "March" -msgstr "Maart" - -#: ../../include/text.php:1232 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1232 -msgid "May" -msgstr "Mei" - -#: ../../include/text.php:1232 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1232 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1232 -msgid "August" -msgstr "Augustus" - -#: ../../include/text.php:1232 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1232 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1232 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1232 -msgid "December" -msgstr "December" - -#: ../../include/text.php:1422 ../../mod/videos.php:301 -msgid "View Video" -msgstr "Bekijk Video" - -#: ../../include/text.php:1454 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1478 ../../include/text.php:1490 -msgid "Click to open/close" -msgstr "klik om te openen/sluiten" - -#: ../../include/text.php:1664 ../../include/text.php:1674 -#: ../../mod/events.php:335 -msgid "link to source" -msgstr "Verwijzing naar bron" - -#: ../../include/text.php:1731 -msgid "Select an alternate language" -msgstr "Kies een andere taal" - -#: ../../include/text.php:1987 -msgid "activity" -msgstr "activiteit" - -#: ../../include/text.php:1989 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../mod/content.php:605 -msgid "comment" -msgid_plural "comments" -msgstr[0] "reactie" -msgstr[1] "reacties" - -#: ../../include/text.php:1990 -msgid "post" -msgstr "bericht" - -#: ../../include/text.php:2158 -msgid "Item filed" -msgstr "Item bewaard" - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Uitgelogd." - -#: ../../include/auth.php:112 ../../include/auth.php:175 -#: ../../mod/openid.php:93 -msgid "Login failed." -msgstr "Login mislukt." - -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "De foutboodschap was:" - -#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066 -#: ../../include/bbcode.php:1067 -msgid "Image/photo" -msgstr "Afbeelding/foto" - -#: ../../include/bbcode.php:531 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:565 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050 -msgid "$1 wrote:" -msgstr "$1 schreef:" - -#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Welkom" - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Upload een profielfoto." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Welkom terug " - -#: ../../include/security.php:366 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "" - -#: ../../include/oembed.php:213 -msgid "Embedded content" -msgstr "Ingebedde inhoud" - -#: ../../include/oembed.php:222 -msgid "Embedding disabled" -msgstr "Inbedden uitgeschakeld" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Man" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Vrouw" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momenteel mannelijk" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momenteel vrouwelijk" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Meestal mannelijk" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Meestal vrouwelijk" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Interseksueel" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transseksueel" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodiet" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Genderneutraal" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Niet-specifiek" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Anders" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Onbeslist" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Manen" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Vrouwen" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Homo" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbie" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Geen voorkeur" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Biseksueel" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autoseksueel" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Onthouder" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Maagd" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Afwijkend" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetisj" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Veel" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Niet seksueel" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Alleenstaand" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Eenzaam" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Beschikbaar" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Onbeschikbaar" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Verliefd" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Smoorverliefd" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Aan het daten" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Ontrouw" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Seksverslaafd" - -#: ../../include/profile_selectors.php:42 ../../include/user.php:289 -#: ../../include/user.php:293 -msgid "Friends" -msgstr "Vrienden" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Vriendschap plus" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Ongebonden/vluchtig" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Verloofd" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Getrouwd" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Denkbeeldig getrouwd" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partners" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Samenwonend" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Common-law-huwelijk" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Blij" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Bedrogen" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Uit elkaar" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Onstabiel" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Gescheiden" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Denkbeeldig gescheiden" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Weduwnaar/weduwe" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Onzeker" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Het is gecompliceerd" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Kan me niet schelen" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Vraag me" - -#: ../../include/user.php:40 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist." - -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden." - -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "Ongeldige OpenID url" - -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." - -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "gebruik een kortere naam" - -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "Naam te kort" - -#: ../../include/user.php:105 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn." - -#: ../../include/user.php:110 -msgid "Your email domain is not among those allowed on this site." -msgstr "Je e-maildomein is op deze website niet toegestaan." - -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "Geen geldig e-mailadres." - -#: ../../include/user.php:126 -msgid "Cannot use that email." -msgstr "Ik kan die e-mail niet gebruiken." - -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen." - -#: ../../include/user.php:138 ../../include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "Bijnaam is al geregistreerd. Kies een andere." - -#: ../../include/user.php:148 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere." - -#: ../../include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." - -#: ../../include/user.php:222 -msgid "An error occurred during registration. Please try again." -msgstr "" - -#: ../../include/user.php:257 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" - -#: ../../include/user.php:377 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "" - -#: ../../include/user.php:381 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "" - -#: ../../include/user.php:413 ../../mod/admin.php:838 -#, php-format -msgid "Registration details for %s" -msgstr "Registratie details voor %s" - -#: ../../include/acl_selectors.php:333 -msgid "Visible to everybody" -msgstr "Zichtbaar voor iedereen" - -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "" - -#: ../../object/Item.php:116 ../../mod/photos.php:1359 -#: ../../mod/content.php:620 -msgid "Private Message" -msgstr "Privébericht" - -#: ../../object/Item.php:120 ../../mod/settings.php:681 -#: ../../mod/content.php:728 -msgid "Edit" -msgstr "Bewerken" - -#: ../../object/Item.php:133 ../../mod/content.php:763 -msgid "save to folder" -msgstr "Bewaren in map" - -#: ../../object/Item.php:195 ../../mod/content.php:753 -msgid "add star" -msgstr "ster toevoegen" - -#: ../../object/Item.php:196 ../../mod/content.php:754 -msgid "remove star" -msgstr "ster verwijderen" - -#: ../../object/Item.php:197 ../../mod/content.php:755 -msgid "toggle star status" -msgstr "ster toevoegen of verwijderen" - -#: ../../object/Item.php:200 ../../mod/content.php:758 -msgid "starred" -msgstr "met ster" - -#: ../../object/Item.php:208 -msgid "ignore thread" -msgstr "" - -#: ../../object/Item.php:209 -msgid "unignore thread" -msgstr "" - -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "" - -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "" - -#: ../../object/Item.php:220 ../../mod/content.php:759 -msgid "add tag" -msgstr "label toevoegen" - -#: ../../object/Item.php:231 ../../mod/photos.php:1542 -#: ../../mod/content.php:684 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" - -#: ../../object/Item.php:231 ../../mod/content.php:684 -msgid "like" -msgstr "leuk" - -#: ../../object/Item.php:232 ../../mod/photos.php:1543 -#: ../../mod/content.php:685 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" - -#: ../../object/Item.php:232 ../../mod/content.php:685 -msgid "dislike" -msgstr "niet leuk" - -#: ../../object/Item.php:234 ../../mod/content.php:687 -msgid "Share this" -msgstr "Delen" - -#: ../../object/Item.php:234 ../../mod/content.php:687 -msgid "share" -msgstr "Delen" - -#: ../../object/Item.php:328 ../../mod/content.php:854 -msgid "to" -msgstr "aan" - -#: ../../object/Item.php:329 -msgid "via" -msgstr "via" - -#: ../../object/Item.php:330 ../../mod/content.php:855 -msgid "Wall-to-Wall" -msgstr "wall-to-wall" - -#: ../../object/Item.php:331 ../../mod/content.php:856 -msgid "via Wall-To-Wall:" -msgstr "via wall-to-wall" - -#: ../../object/Item.php:387 ../../mod/content.php:603 +#: object/Item.php:390 mod/content.php:605 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d reactie" msgstr[1] "%d reacties" -#: ../../object/Item.php:675 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 -#: ../../mod/content.php:707 +#: object/Item.php:392 object/Item.php:405 mod/content.php:607 +#: include/text.php:2004 +msgid "comment" +msgid_plural "comments" +msgstr[0] "reactie" +msgstr[1] "reacties" + +#: object/Item.php:393 mod/content.php:608 include/contact_widgets.php:205 +#: include/items.php:5133 boot.php:755 +msgid "show more" +msgstr "toon meer" + +#: object/Item.php:678 mod/content.php:709 mod/photos.php:1581 +#: mod/photos.php:1625 mod/photos.php:1713 msgid "This is you" msgstr "Dit ben jij" -#: ../../object/Item.php:679 ../../mod/content.php:711 +#: object/Item.php:681 view/theme/perihel/config.php:95 +#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 +#: view/theme/quattro/config.php:64 +#: view/theme/zero-childs/cleanzero/config.php:80 +#: view/theme/dispy/config.php:70 view/theme/clean/config.php:83 +#: view/theme/duepuntozero/config.php:59 view/theme/cleanzero/config.php:80 +#: view/theme/vier/config.php:56 view/theme/vier-mobil/config.php:47 +#: mod/mood.php:137 mod/localtime.php:45 mod/poke.php:199 mod/fsuggest.php:107 +#: mod/invite.php:140 mod/manage.php:110 mod/message.php:335 +#: mod/message.php:564 mod/contacts.php:564 mod/content.php:712 +#: mod/crepair.php:191 mod/events.php:511 mod/install.php:250 +#: mod/install.php:288 mod/photos.php:1104 mod/photos.php:1223 +#: mod/photos.php:1533 mod/photos.php:1584 mod/photos.php:1628 +#: mod/photos.php:1716 mod/profiles.php:682 +msgid "Submit" +msgstr "Opslaan" + +#: object/Item.php:682 mod/content.php:713 msgid "Bold" msgstr "Vet" -#: ../../object/Item.php:680 ../../mod/content.php:712 +#: object/Item.php:683 mod/content.php:714 msgid "Italic" msgstr "Cursief" -#: ../../object/Item.php:681 ../../mod/content.php:713 +#: object/Item.php:684 mod/content.php:715 msgid "Underline" msgstr "Onderstrepen" -#: ../../object/Item.php:682 ../../mod/content.php:714 +#: object/Item.php:685 mod/content.php:716 msgid "Quote" msgstr "Citeren" -#: ../../object/Item.php:683 ../../mod/content.php:715 +#: object/Item.php:686 mod/content.php:717 msgid "Code" msgstr "Broncode" -#: ../../object/Item.php:684 ../../mod/content.php:716 +#: object/Item.php:687 mod/content.php:718 msgid "Image" msgstr "Afbeelding" -#: ../../object/Item.php:685 ../../mod/content.php:717 +#: object/Item.php:688 mod/content.php:719 msgid "Link" msgstr "Link" -#: ../../object/Item.php:686 ../../mod/content.php:718 +#: object/Item.php:689 mod/content.php:720 msgid "Video" msgstr "Video" -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Item niet beschikbaar" +#: object/Item.php:690 mod/content.php:721 mod/editpost.php:145 +#: mod/events.php:509 mod/photos.php:1585 mod/photos.php:1629 +#: mod/photos.php:1717 include/conversation.php:1089 +msgid "Preview" +msgstr "Voorvertoning" -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Item niet gevonden" +#: view/smarty3/compiled/a908c9746db77ea1b3b8583681c75a6737ae4de1.file.blob.tpl.php:76 +#: view/smarty3/compiled/3652bcbaa383153072aa300c238792d03867c262.file.tree.tpl.php:76 +#: view/smarty3/compiled/788b954cfdfbf400e0cd17e1e5629515d87eb32f.file.commit.tpl.php:77 +#: view/smarty3/compiled/c6d84f5d6190b86e81c93d71a9bb01aa32004841.file.project.tpl.php:76 +#: view/smarty3/compiled/75e3f44e184d57ada4cf6c86f0ab429f322f9b3e.file.project_empty.tpl.php:76 +#: view/smarty3/compiled/7fd1b71c8d07cc4e9605dd231482f4f114db46f5.file.commits.tpl.php:77 +msgid "Clone this project:" +msgstr "" -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#: view/smarty3/compiled/a908c9746db77ea1b3b8583681c75a6737ae4de1.file.blob.tpl.php:111 +msgid "Click here to download" +msgstr "" + +#: view/smarty3/compiled/75e3f44e184d57ada4cf6c86f0ab429f322f9b3e.file.project_empty.tpl.php:98 +msgid "This project is empty!" +msgstr "" + +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:31 +msgid "Projects" +msgstr "" + +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:32 +msgid "add new" +msgstr "" + +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:51 +msgid "delete" +msgstr "" + +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:68 +#, php-format +msgid "" +"Do you want to delete the project '%s'?\\n\\nThis operation cannot be " +"undone." +msgstr "" + +#: view/theme/perihel/theme.php:33 view/theme/diabook/theme.php:123 +#: mod/notifications.php:93 include/nav.php:105 include/nav.php:148 +msgid "Home" +msgstr "Tijdlijn" + +#: view/theme/perihel/theme.php:33 view/theme/diabook/theme.php:123 +#: include/nav.php:76 include/nav.php:148 +msgid "Your posts and conversations" +msgstr "Jouw berichten en conversaties" + +#: view/theme/perihel/theme.php:34 view/theme/diabook/theme.php:124 +#: mod/newmember.php:32 mod/profperm.php:104 include/identity.php:529 +#: include/identity.php:610 include/identity.php:639 include/nav.php:77 +msgid "Profile" +msgstr "Profiel" + +#: view/theme/perihel/theme.php:34 view/theme/diabook/theme.php:124 +#: include/nav.php:77 +msgid "Your profile page" +msgstr "Jouw profiel pagina" + +#: view/theme/perihel/theme.php:35 view/theme/diabook/theme.php:126 +#: mod/fbrowser.php:25 include/identity.php:646 include/nav.php:78 +msgid "Photos" +msgstr "Foto's" + +#: view/theme/perihel/theme.php:35 view/theme/diabook/theme.php:126 +#: include/nav.php:78 +msgid "Your photos" +msgstr "Jouw foto's" + +#: view/theme/perihel/theme.php:36 view/theme/diabook/theme.php:127 +#: mod/events.php:396 include/identity.php:663 include/nav.php:80 +msgid "Events" +msgstr "Gebeurtenissen" + +#: view/theme/perihel/theme.php:36 view/theme/diabook/theme.php:127 +#: include/nav.php:80 +msgid "Your events" +msgstr "Jouw gebeurtenissen" + +#: view/theme/perihel/theme.php:37 view/theme/diabook/theme.php:128 +#: include/nav.php:81 +msgid "Personal notes" +msgstr "Persoonlijke nota's" + +#: view/theme/perihel/theme.php:37 view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Jouw persoonlijke foto's" + +#: view/theme/perihel/theme.php:38 view/theme/diabook/theme.php:129 +#: mod/community.php:32 include/nav.php:129 include/nav.php:131 +msgid "Community" +msgstr "Website" + +#: view/theme/perihel/config.php:89 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 include/acl_selectors.php:337 +msgid "don't show" +msgstr "niet tonen" + +#: view/theme/perihel/config.php:89 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 include/acl_selectors.php:336 +msgid "show" +msgstr "tonen" + +#: view/theme/perihel/config.php:97 view/theme/diabook/config.php:150 +#: view/theme/quattro/config.php:66 +#: view/theme/zero-childs/cleanzero/config.php:82 +#: view/theme/dispy/config.php:72 view/theme/clean/config.php:85 +#: view/theme/duepuntozero/config.php:61 view/theme/cleanzero/config.php:82 +#: view/theme/vier/config.php:58 view/theme/vier-mobil/config.php:49 +#: mod/settings.php:919 +msgid "Theme settings" +msgstr "Thema-instellingen" + +#: view/theme/perihel/config.php:98 view/theme/diabook/config.php:151 +#: view/theme/zero-childs/cleanzero/config.php:84 +#: view/theme/dispy/config.php:73 view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Stel lettergrootte voor berichten en reacties in" + +#: view/theme/perihel/config.php:99 view/theme/diabook/config.php:152 +#: view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Stel lijnhoogte voor berichten en reacties in" + +#: view/theme/perihel/config.php:100 view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Stel resolutie in voor de middelste kolom. " + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Stel kleurenschema in" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "" + +#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "" + +#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 +msgid "Community Pages" +msgstr "Forum/groepspagina's" + +#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 +#: view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 +#: view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Forum/groepsprofielen" + +#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 +#: view/theme/diabook/theme.php:627 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 +#: view/theme/diabook/theme.php:628 +msgid "Connect Services" +msgstr "Diensten verbinden" + +#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 +#: view/theme/diabook/theme.php:629 +msgid "Find Friends" +msgstr "Zoek vrienden" + +#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 +#: view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "Laatste gebruikers" + +#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 +#: view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Laatste foto's" + +#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 +#: view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Recent leuk gevonden" + +#: view/theme/diabook/theme.php:125 mod/contacts.php:745 include/nav.php:178 +msgid "Contacts" +msgstr "Contacten" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Jouw contacten" + +#: view/theme/diabook/theme.php:463 include/conversation.php:118 +#: include/conversation.php:245 include/text.php:1998 +msgid "event" +msgstr "gebeurtenis" + +#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 +#: mod/tagger.php:62 mod/like.php:149 mod/like.php:319 mod/subthread.php:87 +#: include/conversation.php:121 include/conversation.php:130 +#: include/conversation.php:248 include/conversation.php:257 +#: include/diaspora.php:2106 +msgid "status" +msgstr "status" + +#: view/theme/diabook/theme.php:471 mod/tagger.php:62 mod/like.php:149 +#: mod/subthread.php:87 include/conversation.php:126 +#: include/conversation.php:253 include/diaspora.php:2106 +#: include/text.php:2000 +msgid "photo" +msgstr "foto" + +#: view/theme/diabook/theme.php:480 mod/like.php:166 +#: include/conversation.php:137 include/diaspora.php:2122 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt het %3$s van %2$s leuk" + +#: view/theme/diabook/theme.php:499 mod/photos.php:50 mod/photos.php:177 +#: mod/photos.php:1086 mod/photos.php:1207 mod/photos.php:1230 +#: mod/photos.php:1779 mod/photos.php:1791 +msgid "Contact Photos" +msgstr "Contactfoto's" + +#: view/theme/diabook/theme.php:500 mod/photos.php:177 mod/photos.php:753 +#: mod/photos.php:1207 mod/photos.php:1230 mod/profile_photo.php:74 +#: mod/profile_photo.php:81 mod/profile_photo.php:88 mod/profile_photo.php:204 +#: mod/profile_photo.php:296 mod/profile_photo.php:305 include/user.php:343 +#: include/user.php:350 include/user.php:357 +msgid "Profile Photos" +msgstr "Profielfoto's" + +#: view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokale gids" + +#: view/theme/diabook/theme.php:525 mod/directory.php:53 +msgid "Global Directory" +msgstr "Globale gids" + +#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "Dezelfde interesses" + +#: view/theme/diabook/theme.php:527 mod/suggest.php:69 +#: include/contact_widgets.php:35 +msgid "Friend Suggestions" +msgstr "Vriendschapsvoorstellen" + +#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" + +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648 +#: mod/newmember.php:22 mod/admin.php:1114 mod/admin.php:1335 +#: mod/settings.php:90 include/nav.php:173 +msgid "Settings" +msgstr "Instellingen" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Uitlijning" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Links" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Gecentreerd" + +#: view/theme/quattro/config.php:68 +#: view/theme/zero-childs/cleanzero/config.php:86 +#: view/theme/clean/config.php:88 view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Kleurschema" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Lettergrootte berichten" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Lettergrootte tekstgebieden" + +#: view/theme/zero-childs/cleanzero/config.php:83 +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "" + +#: view/theme/zero-childs/cleanzero/config.php:85 +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Stel breedte van het thema in" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Stel kleurschema in" + +#: view/theme/clean/config.php:56 view/theme/duepuntozero/config.php:44 +#: include/text.php:1734 include/user.php:255 +msgid "default" +msgstr "standaard" + +#: view/theme/clean/config.php:57 +msgid "Midnight" +msgstr "" + +#: view/theme/clean/config.php:58 +msgid "Zenburn" +msgstr "" + +#: view/theme/clean/config.php:59 +msgid "Bootstrap" +msgstr "" + +#: view/theme/clean/config.php:60 +msgid "Shades of Pink" +msgstr "" + +#: view/theme/clean/config.php:61 +msgid "Lime and Orange" +msgstr "" + +#: view/theme/clean/config.php:62 +msgid "GeoCities Retro" +msgstr "" + +#: view/theme/clean/config.php:86 +msgid "Background Image" +msgstr "" + +#: view/theme/clean/config.php:86 +msgid "" +"The URL to a picture (e.g. from your photo album) that should be used as " +"background image." +msgstr "" + +#: view/theme/clean/config.php:87 +msgid "Background Color" +msgstr "achtergrondkleur" + +#: view/theme/clean/config.php:87 +msgid "HEX value for the background color. Don't include the #" +msgstr "" + +#: view/theme/clean/config.php:89 +msgid "font size" +msgstr "" + +#: view/theme/clean/config.php:89 +msgid "base font size for your interface" +msgstr "" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "" + +#: view/theme/vier/config.php:59 view/theme/vier-mobil/config.php:50 +msgid "Set style" +msgstr "" + +#: mod/mood.php:62 include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s is op dit moment %2$s" + +#: mod/mood.php:114 mod/api.php:26 mod/api.php:31 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/attach.php:33 mod/regmod.php:110 mod/uimport.php:23 mod/poke.php:135 +#: mod/delegate.php:12 mod/nogroup.php:25 mod/fsuggest.php:78 +#: mod/invite.php:15 mod/invite.php:101 mod/manage.php:96 mod/message.php:38 +#: mod/message.php:174 mod/viewcontacts.php:24 mod/notifications.php:66 +#: mod/allfriends.php:9 mod/contacts.php:322 mod/crepair.php:120 +#: mod/dfrn_confirm.php:55 mod/display.php:508 mod/editpost.php:10 +#: mod/events.php:164 mod/follow.php:9 mod/follow.php:42 mod/follow.php:81 +#: mod/group.php:19 mod/item.php:170 mod/item.php:186 mod/network.php:4 +#: mod/notes.php:20 mod/photos.php:156 mod/photos.php:1072 +#: mod/profile_photo.php:19 mod/profile_photo.php:169 +#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/profiles.php:165 +#: mod/profiles.php:614 mod/suggest.php:58 mod/wall_attach.php:55 +#: mod/wall_upload.php:66 mod/register.php:42 mod/settings.php:20 +#: mod/settings.php:107 mod/settings.php:608 include/items.php:5022 +#: index.php:382 +msgid "Permission denied." +msgstr "Toegang geweigerd" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "Stemming" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Stel je huidige stemming in, en vertel het je vrienden" + +#: mod/decrypt.php:9 mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Toegang geweigerd" + +#: mod/decrypt.php:15 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:169 +#: mod/admin.php:1062 mod/admin.php:1275 mod/display.php:82 +#: mod/display.php:295 mod/display.php:512 include/items.php:4813 +msgid "Item not found." +msgstr "Item niet gevonden." + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s heet %2$s van harte welkom" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Log in om verder te gaan." + +#: mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?" + +#: mod/api.php:105 mod/message.php:209 mod/contacts.php:413 +#: mod/dfrn_request.php:845 mod/follow.php:57 mod/profiles.php:657 +#: mod/profiles.php:660 mod/suggest.php:29 mod/register.php:235 +#: mod/settings.php:1036 mod/settings.php:1042 mod/settings.php:1050 +#: mod/settings.php:1054 mod/settings.php:1059 mod/settings.php:1065 +#: mod/settings.php:1071 mod/settings.php:1077 mod/settings.php:1105 +#: mod/settings.php:1106 mod/settings.php:1107 mod/settings.php:1108 +#: mod/settings.php:1109 include/items.php:4854 +msgid "Yes" +msgstr "Ja" + +#: mod/api.php:106 mod/dfrn_request.php:845 mod/follow.php:57 +#: mod/profiles.php:657 mod/profiles.php:661 mod/register.php:236 +#: mod/settings.php:1036 mod/settings.php:1042 mod/settings.php:1050 +#: mod/settings.php:1054 mod/settings.php:1059 mod/settings.php:1065 +#: mod/settings.php:1071 mod/settings.php:1077 mod/settings.php:1105 +#: mod/settings.php:1106 mod/settings.php:1107 mod/settings.php:1108 +#: mod/settings.php:1109 +msgid "No" +msgstr "Nee" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na." + +#: mod/lostpass.php:42 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "" + +#: mod/lostpass.php:53 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld." + +#: mod/lostpass.php:109 boot.php:1277 +msgid "Password Reset" +msgstr "Wachtwoord opnieuw instellen" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Je nieuwe wachtwoord is" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "klik hier om in te loggen" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina." + +#: mod/lostpass.php:125 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\n\t\t\t\tBeste %1$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\n\t\t\t" + +#: mod/lostpass.php:131 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "" + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Je wachtwoord is veranderd op %s" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies." + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Bijnaam of e-mail:" + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Opnieuw" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 #, php-format msgid "Number of daily wall messages for %s exceeded. Message failed." msgstr "" -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 +#: mod/wallmessage.php:56 mod/message.php:63 msgid "No recipient selected." msgstr "Geen ontvanger geselecteerd." -#: ../../mod/wallmessage.php:59 +#: mod/wallmessage.php:59 msgid "Unable to check your home location." msgstr "Niet in staat om je tijdlijn-locatie vast te stellen" -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 +#: mod/wallmessage.php:62 mod/message.php:70 msgid "Message could not be sent." msgstr "Bericht kon niet verzonden worden." -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 +#: mod/wallmessage.php:65 mod/message.php:73 msgid "Message collection failure." msgstr "Fout bij het verzamelen van berichten." -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 +#: mod/wallmessage.php:68 mod/message.php:76 msgid "Message sent." msgstr "Bericht verzonden." -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +#: mod/wallmessage.php:86 mod/wallmessage.php:95 msgid "No recipient." msgstr "Geen ontvanger." -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:283 +#: mod/message.php:291 mod/message.php:466 mod/message.php:474 +#: include/conversation.php:1001 include/conversation.php:1019 +msgid "Please enter a link URL:" +msgstr "Vul een internetadres/URL in:" + +#: mod/wallmessage.php:142 mod/message.php:319 msgid "Send Private Message" msgstr "Verstuur privébericht" -#: ../../mod/wallmessage.php:143 +#: mod/wallmessage.php:143 #, php-format msgid "" "If you wish for %s to respond, please check that the privacy settings on " "your site allow private mail from unknown senders." msgstr "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat." -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 +#: mod/wallmessage.php:144 mod/message.php:320 mod/message.php:553 msgid "To:" msgstr "Aan:" -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 +#: mod/wallmessage.php:145 mod/message.php:325 mod/message.php:555 msgid "Subject:" msgstr "Onderwerp:" -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -#: ../../mod/message.php:329 ../../mod/message.php:558 +#: mod/wallmessage.php:151 mod/invite.php:134 mod/message.php:329 +#: mod/message.php:558 msgid "Your message:" msgstr "Jouw bericht:" -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Groep aangemaakt." +#: mod/wallmessage.php:154 mod/message.php:332 mod/message.php:562 +#: mod/editpost.php:110 include/conversation.php:1056 +msgid "Upload photo" +msgstr "Foto uploaden" -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Kon de groep niet aanmaken." +#: mod/wallmessage.php:155 mod/message.php:333 mod/message.php:563 +#: mod/editpost.php:114 include/conversation.php:1060 +msgid "Insert web link" +msgstr "Voeg een webadres in" -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Groep niet gevonden." +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Welkom bij Friendica" -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Groepsnaam gewijzigd." +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Checklist voor nieuwe leden" -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "" - -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Maak een groep contacten/vrienden aan." - -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Groepsnaam:" - -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Groep verwijderd." - -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Niet in staat om groep te verwijderen." - -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Groepsbewerker" - -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Leden" - -#: ../../mod/group.php:194 ../../mod/contacts.php:586 -msgid "All Contacts" -msgstr "Alle Contacten" - -#: ../../mod/group.php:224 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Klik op een contact om het toe te voegen of te verwijderen." - -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden." - -#: ../../mod/delegate.php:132 +#: mod/newmember.php:12 msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd." +"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." +msgstr "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen." -#: ../../mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Bestaande paginabeheerders" +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "Aan de slag" -#: ../../mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed" +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Doorloop Friendica" -#: ../../mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " - -#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Verwijderen" - -#: ../../mod/delegate.php:140 -msgid "Add" -msgstr "Toevoegen" - -#: ../../mod/delegate.php:141 -msgid "No entries." -msgstr "Geen gegevens." - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ongeldige request identifier." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:215 -msgid "Discard" -msgstr "Verwerpen" - -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:214 ../../mod/contacts.php:455 -#: ../../mod/contacts.php:519 ../../mod/contacts.php:731 -msgid "Ignore" -msgstr "Negeren" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "Systeem" - -#: ../../mod/notifications.php:88 ../../mod/network.php:371 -msgid "Personal" -msgstr "Persoonlijk" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Toon genegeerde verzoeken" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Verberg genegeerde verzoeken" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:199 -msgid "Notification type: " -msgstr "Notificatiesoort:" - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Vriendschapsvoorstel" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "Voorgesteld door %s" - -#: ../../mod/notifications.php:157 ../../mod/notifications.php:208 -#: ../../mod/contacts.php:525 -msgid "Hide this contact from others" -msgstr "Verberg dit contact voor anderen" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 -msgid "Post a new friend activity" -msgstr "Bericht over een nieuwe vriend" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 -msgid "if applicable" -msgstr "Indien toepasbaar" - -#: ../../mod/notifications.php:161 ../../mod/notifications.php:212 -#: ../../mod/admin.php:1005 -msgid "Approve" -msgstr "Goedkeuren" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Denkt dat u hem of haar kent:" - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "Ja" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "Nee" - -#: ../../mod/notifications.php:182 +#: mod/newmember.php:18 msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden." -#: ../../mod/notifications.php:185 +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Ga naar je instellingen" + +#: mod/newmember.php:26 msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "" +"On your Settings 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." +msgstr "Verander je initieel wachtwoord op je instellingenpagina. 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." -#: ../../mod/notifications.php:193 -msgid "Friend" -msgstr "Vriend" - -#: ../../mod/notifications.php:194 -msgid "Sharer" -msgstr "Deler" - -#: ../../mod/notifications.php:194 -msgid "Fan/Admirer" -msgstr "Fan/Bewonderaar" - -#: ../../mod/notifications.php:200 -msgid "Friend/Connect Request" -msgstr "Vriendschapsverzoek" - -#: ../../mod/notifications.php:200 -msgid "New Follower" -msgstr "Nieuwe Volger" - -#: ../../mod/notifications.php:221 -msgid "No introductions." -msgstr "Geen vriendschaps- of connectieverzoeken." - -#: ../../mod/notifications.php:262 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:482 -#, php-format -msgid "%s liked %s's post" -msgstr "%s vond het bericht van %s leuk" - -#: ../../mod/notifications.php:272 ../../mod/notifications.php:401 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s vond het bericht van %s niet leuk" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:416 -#: ../../mod/notifications.php:507 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s is nu bevriend met %s" - -#: ../../mod/notifications.php:294 ../../mod/notifications.php:423 -#, php-format -msgid "%s created a new post" -msgstr "%s schreef een nieuw bericht" - -#: ../../mod/notifications.php:295 ../../mod/notifications.php:424 -#: ../../mod/notifications.php:517 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s gaf een reactie op het bericht van %s" - -#: ../../mod/notifications.php:310 -msgid "No more network notifications." -msgstr "Geen netwerknotificaties meer" - -#: ../../mod/notifications.php:314 -msgid "Network Notifications" -msgstr "Netwerknotificaties" - -#: ../../mod/notifications.php:340 ../../mod/notify.php:75 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." - -#: ../../mod/notifications.php:344 ../../mod/notify.php:79 -msgid "System Notifications" -msgstr "Systeemnotificaties" - -#: ../../mod/notifications.php:439 -msgid "No more personal notifications." -msgstr "Geen persoonlijke notificaties meer" - -#: ../../mod/notifications.php:443 -msgid "Personal Notifications" -msgstr "Persoonlijke notificaties" - -#: ../../mod/notifications.php:524 -msgid "No more home notifications." -msgstr "Geen tijdlijn-notificaties meer" - -#: ../../mod/notifications.php:528 -msgid "Home Notifications" -msgstr "Tijdlijn-notificaties" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Geen profiel" - -#: ../../mod/settings.php:34 ../../mod/photos.php:80 -msgid "everybody" -msgstr "iedereen" - -#: ../../mod/settings.php:41 ../../mod/admin.php:1016 -msgid "Account" -msgstr "Account" - -#: ../../mod/settings.php:46 -msgid "Additional features" -msgstr "Extra functies" - -#: ../../mod/settings.php:51 -msgid "Display" -msgstr "Weergave" - -#: ../../mod/settings.php:57 ../../mod/settings.php:785 -msgid "Social Networks" -msgstr "Sociale netwerken" - -#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102 -#: ../../mod/admin.php:1155 -msgid "Plugins" -msgstr "Plugins" - -#: ../../mod/settings.php:72 -msgid "Connected apps" -msgstr "Verbonden applicaties" - -#: ../../mod/settings.php:77 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Persoonlijke gegevens exporteren" - -#: ../../mod/settings.php:82 -msgid "Remove account" -msgstr "Account verwijderen" - -#: ../../mod/settings.php:134 -msgid "Missing some important data!" -msgstr "Een belangrijk gegeven ontbreekt!" - -#: ../../mod/settings.php:137 ../../mod/settings.php:645 -#: ../../mod/contacts.php:729 -msgid "Update" -msgstr "Wijzigen" - -#: ../../mod/settings.php:243 -msgid "Failed to connect with email account using the settings provided." -msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen." - -#: ../../mod/settings.php:248 -msgid "Email settings updated." -msgstr "E-mail instellingen bijgewerkt.." - -#: ../../mod/settings.php:263 -msgid "Features updated" -msgstr "Functies bijgewerkt" - -#: ../../mod/settings.php:326 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: ../../mod/settings.php:340 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." - -#: ../../mod/settings.php:345 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd." - -#: ../../mod/settings.php:353 -msgid "Wrong password." -msgstr "Verkeerd wachtwoord." - -#: ../../mod/settings.php:364 -msgid "Password changed." -msgstr "Wachtwoord gewijzigd." - -#: ../../mod/settings.php:366 -msgid "Password update failed. Please try again." -msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." - -#: ../../mod/settings.php:433 -msgid " Please use a shorter name." -msgstr "Gebruik een kortere naam." - -#: ../../mod/settings.php:435 -msgid " Name too short." -msgstr "Naam te kort." - -#: ../../mod/settings.php:444 -msgid "Wrong Password" -msgstr "Verkeerd wachtwoord" - -#: ../../mod/settings.php:449 -msgid " Not valid email." -msgstr "Geen geldig e-mailadres." - -#: ../../mod/settings.php:455 -msgid " Cannot change to that email." -msgstr "Kan niet veranderen naar die e-mail." - -#: ../../mod/settings.php:511 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt." - -#: ../../mod/settings.php:515 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep." - -#: ../../mod/settings.php:545 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." - -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -#: ../../mod/settings.php:680 -msgid "Add application" -msgstr "Toepassing toevoegen" - -#: ../../mod/settings.php:619 ../../mod/settings.php:729 -#: ../../mod/settings.php:803 ../../mod/settings.php:885 -#: ../../mod/settings.php:1118 ../../mod/admin.php:620 -#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445 -msgid "Save Settings" -msgstr "Instellingen opslaan" - -#: ../../mod/settings.php:621 ../../mod/settings.php:647 -#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 -#: ../../mod/admin.php:1029 ../../mod/crepair.php:165 -msgid "Name" -msgstr "Naam" - -#: ../../mod/settings.php:622 ../../mod/settings.php:648 -msgid "Consumer Key" -msgstr "Gebruikerssleutel" - -#: ../../mod/settings.php:623 ../../mod/settings.php:649 -msgid "Consumer Secret" -msgstr "Gebruikersgeheim" - -#: ../../mod/settings.php:624 ../../mod/settings.php:650 -msgid "Redirect" -msgstr "Doorverwijzing" - -#: ../../mod/settings.php:625 ../../mod/settings.php:651 -msgid "Icon url" -msgstr "URL pictogram" - -#: ../../mod/settings.php:636 -msgid "You can't edit this application." -msgstr "Je kunt deze toepassing niet wijzigen." - -#: ../../mod/settings.php:679 -msgid "Connected Apps" -msgstr "Verbonden applicaties" - -#: ../../mod/settings.php:683 -msgid "Client key starts with" -msgstr "" - -#: ../../mod/settings.php:684 -msgid "No name" -msgstr "Geen naam" - -#: ../../mod/settings.php:685 -msgid "Remove authorization" -msgstr "Verwijder authorisatie" - -#: ../../mod/settings.php:697 -msgid "No Plugin settings configured" -msgstr "" - -#: ../../mod/settings.php:705 -msgid "Plugin Settings" -msgstr "Plugin Instellingen" - -#: ../../mod/settings.php:719 -msgid "Off" -msgstr "Uit" - -#: ../../mod/settings.php:719 -msgid "On" -msgstr "Aan" - -#: ../../mod/settings.php:727 -msgid "Additional Features" -msgstr "Extra functies" - -#: ../../mod/settings.php:741 ../../mod/settings.php:742 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s" - -#: ../../mod/settings.php:741 ../../mod/settings.php:742 -msgid "enabled" -msgstr "ingeschakeld" - -#: ../../mod/settings.php:741 ../../mod/settings.php:742 -msgid "disabled" -msgstr "uitgeschakeld" - -#: ../../mod/settings.php:742 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:778 -msgid "Email access is disabled on this site." -msgstr "E-mailtoegang is op deze website uitgeschakeld." - -#: ../../mod/settings.php:790 -msgid "Email/Mailbox Setup" -msgstr "E-mail Instellen" - -#: ../../mod/settings.php:791 +#: mod/newmember.php:28 msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken." +"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." +msgstr "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden." -#: ../../mod/settings.php:792 -msgid "Last successful email check:" -msgstr "Laatste succesvolle e-mail controle:" +#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:695 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" -#: ../../mod/settings.php:794 -msgid "IMAP server name:" -msgstr "IMAP server naam:" - -#: ../../mod/settings.php:795 -msgid "IMAP port:" -msgstr "IMAP poort:" - -#: ../../mod/settings.php:796 -msgid "Security:" -msgstr "Beveiliging:" - -#: ../../mod/settings.php:796 ../../mod/settings.php:801 -msgid "None" -msgstr "Geen" - -#: ../../mod/settings.php:797 -msgid "Email login name:" -msgstr "E-mail login naam:" - -#: ../../mod/settings.php:798 -msgid "Email password:" -msgstr "E-mail wachtwoord:" - -#: ../../mod/settings.php:799 -msgid "Reply-to address:" -msgstr "Antwoord adres:" - -#: ../../mod/settings.php:800 -msgid "Send public posts to all email contacts:" -msgstr "Openbare posts naar alle e-mail contacten versturen:" - -#: ../../mod/settings.php:801 -msgid "Action after import:" -msgstr "Actie na importeren:" - -#: ../../mod/settings.php:801 -msgid "Mark as seen" -msgstr "Als 'gelezen' markeren" - -#: ../../mod/settings.php:801 -msgid "Move to folder" -msgstr "Naar map verplaatsen" - -#: ../../mod/settings.php:802 -msgid "Move to folder:" -msgstr "Verplaatsen naar map:" - -#: ../../mod/settings.php:833 ../../mod/admin.php:545 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" - -#: ../../mod/settings.php:883 -msgid "Display Settings" -msgstr "Scherminstellingen" - -#: ../../mod/settings.php:889 ../../mod/settings.php:904 -msgid "Display Theme:" -msgstr "Schermthema:" - -#: ../../mod/settings.php:890 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" - -#: ../../mod/settings.php:891 -msgid "Update browser every xx seconds" -msgstr "Browser elke xx seconden verversen" - -#: ../../mod/settings.php:891 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 seconden, geen maximum" - -#: ../../mod/settings.php:892 -msgid "Number of items to display per page:" -msgstr "Aantal items te tonen per pagina:" - -#: ../../mod/settings.php:892 ../../mod/settings.php:893 -msgid "Maximum of 100 items" -msgstr "Maximum 100 items" - -#: ../../mod/settings.php:893 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:" - -#: ../../mod/settings.php:894 -msgid "Don't show emoticons" -msgstr "Emoticons niet tonen" - -#: ../../mod/settings.php:895 -msgid "Don't show notices" -msgstr "" - -#: ../../mod/settings.php:896 -msgid "Infinite scroll" -msgstr "Oneindig scrollen" - -#: ../../mod/settings.php:897 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: ../../mod/settings.php:974 -msgid "User Types" -msgstr "Gebruikerstypes" - -#: ../../mod/settings.php:975 -msgid "Community Types" -msgstr "Forum/groepstypes" - -#: ../../mod/settings.php:976 -msgid "Normal Account Page" -msgstr "Normale accountpagina" - -#: ../../mod/settings.php:977 -msgid "This account is a normal personal profile" -msgstr "Deze account is een normaal persoonlijk profiel" - -#: ../../mod/settings.php:980 -msgid "Soapbox Page" -msgstr "Zeepkist-pagina" - -#: ../../mod/settings.php:981 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen." - -#: ../../mod/settings.php:984 -msgid "Community Forum/Celebrity Account" -msgstr "Forum/groeps- of beroemdheid-account" - -#: ../../mod/settings.php:985 +#: mod/newmember.php:36 msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven." +"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." +msgstr "Upload een profielfoto, 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." -#: ../../mod/settings.php:988 -msgid "Automatic Friend Page" -msgstr "Automatisch Vriendschapspagina" +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Bewerk je profiel" -#: ../../mod/settings.php:989 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden." - -#: ../../mod/settings.php:992 -msgid "Private Forum [Experimental]" -msgstr "Privé-forum [experimenteel]" - -#: ../../mod/settings.php:993 -msgid "Private forum - approved members only" -msgstr "Privé-forum - enkel voor goedgekeurde leden" - -#: ../../mod/settings.php:1005 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:1005 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account." - -#: ../../mod/settings.php:1015 -msgid "Publish your default profile in your local site directory?" -msgstr "Je standaardprofiel in je lokale gids publiceren?" - -#: ../../mod/settings.php:1015 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1029 ../../mod/settings.php:1033 -#: ../../mod/settings.php:1038 ../../mod/settings.php:1044 -#: ../../mod/settings.php:1050 ../../mod/settings.php:1056 -#: ../../mod/settings.php:1086 ../../mod/settings.php:1087 -#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 -#: ../../mod/settings.php:1090 ../../mod/register.php:234 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:665 -msgid "No" -msgstr "Nee" - -#: ../../mod/settings.php:1021 -msgid "Publish your default profile in the global social directory?" -msgstr "Je standaardprofiel in de globale sociale gids publiceren?" - -#: ../../mod/settings.php:1029 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?" - -#: ../../mod/settings.php:1033 +#: mod/newmember.php:38 msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen." -#: ../../mod/settings.php:1038 -msgid "Allow friends to post to your profile page?" -msgstr "Vrienden toestaan om op jou profielpagina te posten?" +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Sleutelwoorden voor dit profiel" -#: ../../mod/settings.php:1044 -msgid "Allow friends to tag your posts?" -msgstr "Sta vrienden toe om jouw berichten te labelen?" - -#: ../../mod/settings.php:1050 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?" - -#: ../../mod/settings.php:1056 -msgid "Permit unknown people to send you private mail?" -msgstr "Mogen onbekende personen jou privé berichten sturen?" - -#: ../../mod/settings.php:1064 -msgid "Profile is not published." -msgstr "Profiel is niet gepubliceerd." - -#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "of" - -#: ../../mod/settings.php:1072 -msgid "Your Identity Address is" -msgstr "Jouw Identiteitsadres is" - -#: ../../mod/settings.php:1083 -msgid "Automatically expire posts after this many days:" -msgstr "Laat berichten automatisch vervallen na zo veel dagen:" - -#: ../../mod/settings.php:1083 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd." - -#: ../../mod/settings.php:1084 -msgid "Advanced expiration settings" -msgstr "Geavanceerde instellingen voor vervallen" - -#: ../../mod/settings.php:1085 -msgid "Advanced Expiration" -msgstr "Geavanceerd Verval:" - -#: ../../mod/settings.php:1086 -msgid "Expire posts:" -msgstr "Laat berichten vervallen:" - -#: ../../mod/settings.php:1087 -msgid "Expire personal notes:" -msgstr "Laat persoonlijke aantekeningen verlopen:" - -#: ../../mod/settings.php:1088 -msgid "Expire starred posts:" -msgstr "Laat berichten met ster verlopen" - -#: ../../mod/settings.php:1089 -msgid "Expire photos:" -msgstr "Laat foto's vervallen:" - -#: ../../mod/settings.php:1090 -msgid "Only expire posts by others:" -msgstr "Laat alleen berichten door anderen vervallen:" - -#: ../../mod/settings.php:1116 -msgid "Account Settings" -msgstr "Account Instellingen" - -#: ../../mod/settings.php:1124 -msgid "Password Settings" -msgstr "Wachtwoord Instellingen" - -#: ../../mod/settings.php:1125 -msgid "New Password:" -msgstr "Nieuw Wachtwoord:" - -#: ../../mod/settings.php:1126 -msgid "Confirm:" -msgstr "Bevestig:" - -#: ../../mod/settings.php:1126 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" - -#: ../../mod/settings.php:1127 -msgid "Current Password:" -msgstr "Huidig wachtwoord:" - -#: ../../mod/settings.php:1127 ../../mod/settings.php:1128 -msgid "Your current password to confirm the changes" -msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" - -#: ../../mod/settings.php:1128 -msgid "Password:" -msgstr "Wachtwoord:" - -#: ../../mod/settings.php:1132 -msgid "Basic Settings" -msgstr "Basis Instellingen" - -#: ../../mod/settings.php:1134 -msgid "Email Address:" -msgstr "E-mailadres:" - -#: ../../mod/settings.php:1135 -msgid "Your Timezone:" -msgstr "Je Tijdzone:" - -#: ../../mod/settings.php:1136 -msgid "Default Post Location:" -msgstr "Standaard locatie:" - -#: ../../mod/settings.php:1137 -msgid "Use Browser Location:" -msgstr "Gebruik Webbrowser Locatie:" - -#: ../../mod/settings.php:1140 -msgid "Security and Privacy Settings" -msgstr "Instellingen voor Beveiliging en Privacy" - -#: ../../mod/settings.php:1142 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal vriendschapsverzoeken per dag:" - -#: ../../mod/settings.php:1142 ../../mod/settings.php:1172 -msgid "(to prevent spam abuse)" -msgstr "(om spam misbruik te voorkomen)" - -#: ../../mod/settings.php:1143 -msgid "Default Post Permissions" -msgstr "Standaard rechten voor nieuwe berichten" - -#: ../../mod/settings.php:1144 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" - -#: ../../mod/settings.php:1153 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 -msgid "Show to Groups" -msgstr "Tonen aan groepen" - -#: ../../mod/settings.php:1154 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 -msgid "Show to Contacts" -msgstr "Tonen aan contacten" - -#: ../../mod/settings.php:1155 -msgid "Default Private Post" -msgstr "Standaard Privé Post" - -#: ../../mod/settings.php:1156 -msgid "Default Public Post" -msgstr "Standaard Publieke Post" - -#: ../../mod/settings.php:1160 -msgid "Default Permissions for New Posts" -msgstr "Standaard rechten voor nieuwe berichten" - -#: ../../mod/settings.php:1172 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" - -#: ../../mod/settings.php:1175 -msgid "Notification Settings" -msgstr "Notificatie Instellingen" - -#: ../../mod/settings.php:1176 -msgid "By default post a status message when:" -msgstr "Post automatisch een bericht op je tijdlijn wanneer:" - -#: ../../mod/settings.php:1177 -msgid "accepting a friend request" -msgstr "Een vriendschapsverzoek accepteren" - -#: ../../mod/settings.php:1178 -msgid "joining a forum/community" -msgstr "Lid worden van een groep/forum" - -#: ../../mod/settings.php:1179 -msgid "making an interesting profile change" -msgstr "Een interessante verandering aan je profiel" - -#: ../../mod/settings.php:1180 -msgid "Send a notification email when:" -msgstr "Stuur een notificatie e-mail wanneer:" - -#: ../../mod/settings.php:1181 -msgid "You receive an introduction" -msgstr "Je ontvangt een vriendschaps- of connectieverzoek" - -#: ../../mod/settings.php:1182 -msgid "Your introductions are confirmed" -msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" - -#: ../../mod/settings.php:1183 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op je tijdlijn schrijft" - -#: ../../mod/settings.php:1184 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" - -#: ../../mod/settings.php:1185 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" - -#: ../../mod/settings.php:1186 -msgid "You receive a friend suggestion" -msgstr "Je een suggestie voor een vriendschap ontvangt" - -#: ../../mod/settings.php:1187 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" - -#: ../../mod/settings.php:1188 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je in een bericht bent aangestoten/gepord/etc." - -#: ../../mod/settings.php:1190 -msgid "Text-only notification emails" -msgstr "" - -#: ../../mod/settings.php:1192 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: ../../mod/settings.php:1194 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../mod/settings.php:1195 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/settings.php:1198 -msgid "Relocate" -msgstr "" - -#: ../../mod/settings.php:1199 +#: mod/newmember.php:40 msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." +"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." +msgstr "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." + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "Verbinding aan het maken" + +#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren." + +#: mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Als dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken." + +#: mod/newmember.php:56 +msgid "Importing Emails" +msgstr "E-mails importeren" + +#: mod/newmember.php:56 +msgid "" +"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" +msgstr "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" + +#: mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Ga naar je contactenpagina" + +#: mod/newmember.php:58 +msgid "" +"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 Add New Contact dialog." +msgstr "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 Voeg nieuw contact toe dialoog." + +#: mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Ga naar de gids van je website" + +#: mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord Connect of Follow op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd." + +#: mod/newmember.php:62 +msgid "Finding New People" +msgstr "Nieuwe mensen vinden" + +#: mod/newmember.php:62 +msgid "" +"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." +msgstr "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden." + +#: mod/newmember.php:66 include/group.php:270 +msgid "Groups" +msgstr "Groepen" + +#: mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Groepeer je contacten" + +#: mod/newmember.php:70 +msgid "" +"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." +msgstr "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. " + +#: mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Waarom zijn mijn berichten niet openbaar?" + +#: mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie." + +#: mod/newmember.php:78 +msgid "Getting Help" +msgstr "Hulp krijgen" + +#: mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Ga naar de help" + +#: mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma." + +#: mod/_search.php:21 mod/network.php:187 mod/search.php:21 +msgid "Remove term" +msgstr "Verwijder zoekterm" + +#: mod/_search.php:30 mod/network.php:196 mod/search.php:30 +#: include/features.php:42 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" + +#: mod/_search.php:89 mod/viewcontacts.php:19 mod/community.php:18 +#: mod/dfrn_request.php:777 mod/directory.php:35 mod/display.php:223 +#: mod/photos.php:942 mod/search.php:89 mod/videos.php:187 +msgid "Public access denied." +msgstr "Niet vrij toegankelijk" + +#: mod/_search.php:99 mod/search.php:99 include/nav.php:119 +#: include/text.php:977 +msgid "Search" +msgstr "Zoeken" + +#: mod/_search.php:180 mod/_search.php:206 mod/community.php:62 +#: mod/community.php:71 mod/search.php:174 +msgid "No results." +msgstr "Geen resultaten." + +#: mod/tagger.php:95 include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s labelde %3$s van %2$s met %4$s" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Item niet beschikbaar" + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Item niet gevonden" + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Account goedgekeurd." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Inloggen." + +#: mod/uimport.php:50 mod/register.php:188 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw." + +#: mod/uimport.php:64 mod/register.php:283 +msgid "Import" +msgstr "Importeren" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Account verplaatsen" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Je kunt een account van een andere Friendica server importeren." + +#: mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent." + +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren." + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "Account bestand" + +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" msgstr "" -#: ../../mod/settings.php:1200 -msgid "Resend relocate message to contacts" -msgstr "" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Gedeelde Vrienden" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Geen gedeelde contacten." - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +#: mod/lockview.php:31 mod/lockview.php:39 msgid "Remote privacy information not available." msgstr "Privacyinformatie op afstand niet beschikbaar." -#: ../../mod/lockview.php:48 +#: mod/lockview.php:48 msgid "Visible to:" msgstr "Zichtbaar voor:" -#: ../../mod/contacts.php:112 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "" -msgstr[1] "" +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Geen profiel" -#: ../../mod/contacts.php:143 ../../mod/contacts.php:276 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de contactgegevens" - -#: ../../mod/contacts.php:157 -msgid "Could not locate selected profile." -msgstr "Kon het geselecteerde profiel niet vinden." - -#: ../../mod/contacts.php:190 -msgid "Contact updated." -msgstr "Contact bijgewerkt." - -#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Ik kon de contactgegevens niet aanpassen." - -#: ../../mod/contacts.php:291 -msgid "Contact has been blocked" -msgstr "Contact is geblokkeerd" - -#: ../../mod/contacts.php:291 -msgid "Contact has been unblocked" -msgstr "Contact is gedeblokkeerd" - -#: ../../mod/contacts.php:302 -msgid "Contact has been ignored" -msgstr "Contact wordt genegeerd" - -#: ../../mod/contacts.php:302 -msgid "Contact has been unignored" -msgstr "Contact wordt niet meer genegeerd" - -#: ../../mod/contacts.php:314 -msgid "Contact has been archived" -msgstr "Contact is gearchiveerd" - -#: ../../mod/contacts.php:314 -msgid "Contact has been unarchived" -msgstr "Contact is niet meer gearchiveerd" - -#: ../../mod/contacts.php:339 ../../mod/contacts.php:727 -msgid "Do you really want to delete this contact?" -msgstr "Wil je echt dit contact verwijderen?" - -#: ../../mod/contacts.php:356 -msgid "Contact has been removed." -msgstr "Contact is verwijderd." - -#: ../../mod/contacts.php:394 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Je bent wederzijds bevriend met %s" - -#: ../../mod/contacts.php:398 -#, php-format -msgid "You are sharing with %s" -msgstr "Je deelt met %s" - -#: ../../mod/contacts.php:403 -#, php-format -msgid "%s is sharing with you" -msgstr "%s deelt met jou" - -#: ../../mod/contacts.php:423 -msgid "Private communications are not available for this contact." -msgstr "Privécommunicatie met dit contact is niet beschikbaar." - -#: ../../mod/contacts.php:426 ../../mod/admin.php:569 -msgid "Never" -msgstr "Nooit" - -#: ../../mod/contacts.php:430 -msgid "(Update was successful)" -msgstr "(Wijziging is geslaagd)" - -#: ../../mod/contacts.php:430 -msgid "(Update was not successful)" -msgstr "(Wijziging is niet geslaagd)" - -#: ../../mod/contacts.php:432 -msgid "Suggest friends" -msgstr "Stel vrienden voor" - -#: ../../mod/contacts.php:436 -#, php-format -msgid "Network type: %s" -msgstr "Netwerk type: %s" - -#: ../../mod/contacts.php:444 -msgid "View all contacts" -msgstr "Alle contacten zien" - -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1009 -msgid "Unblock" -msgstr "Blokkering opheffen" - -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1008 -msgid "Block" -msgstr "Blokkeren" - -#: ../../mod/contacts.php:452 -msgid "Toggle Blocked status" -msgstr "Schakel geblokkeerde status" - -#: ../../mod/contacts.php:455 ../../mod/contacts.php:519 -#: ../../mod/contacts.php:731 -msgid "Unignore" -msgstr "Negeer niet meer" - -#: ../../mod/contacts.php:458 -msgid "Toggle Ignored status" -msgstr "Schakel negeerstatus" - -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 -msgid "Unarchive" -msgstr "Archiveer niet meer" - -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 -msgid "Archive" -msgstr "Archiveer" - -#: ../../mod/contacts.php:465 -msgid "Toggle Archive status" -msgstr "Schakel archiveringsstatus" - -#: ../../mod/contacts.php:468 -msgid "Repair" -msgstr "Herstellen" - -#: ../../mod/contacts.php:471 -msgid "Advanced Contact Settings" -msgstr "Geavanceerde instellingen voor contacten" - -#: ../../mod/contacts.php:477 -msgid "Communications lost with this contact!" -msgstr "Communicatie met dit contact is verbroken!" - -#: ../../mod/contacts.php:480 -msgid "Fetch further information for feeds" -msgstr "" - -#: ../../mod/contacts.php:481 -msgid "Disabled" -msgstr "" - -#: ../../mod/contacts.php:481 -msgid "Fetch information" -msgstr "" - -#: ../../mod/contacts.php:481 -msgid "Fetch information and keywords" -msgstr "" - -#: ../../mod/contacts.php:490 -msgid "Contact Editor" -msgstr "Contactbewerker" - -#: ../../mod/contacts.php:493 -msgid "Profile Visibility" -msgstr "Zichtbaarheid profiel" - -#: ../../mod/contacts.php:494 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. " - -#: ../../mod/contacts.php:495 -msgid "Contact Information / Notes" -msgstr "Contactinformatie / aantekeningen" - -#: ../../mod/contacts.php:496 -msgid "Edit contact notes" -msgstr "Wijzig aantekeningen over dit contact" - -#: ../../mod/contacts.php:501 ../../mod/contacts.php:695 -#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bekijk het profiel van %s [%s]" - -#: ../../mod/contacts.php:502 -msgid "Block/Unblock contact" -msgstr "Blokkeer/deblokkeer contact" - -#: ../../mod/contacts.php:503 -msgid "Ignore contact" -msgstr "Negeer contact" - -#: ../../mod/contacts.php:504 -msgid "Repair URL settings" -msgstr "Repareer URL-instellingen" - -#: ../../mod/contacts.php:505 -msgid "View conversations" -msgstr "Toon conversaties" - -#: ../../mod/contacts.php:507 -msgid "Delete contact" -msgstr "Verwijder contact" - -#: ../../mod/contacts.php:511 -msgid "Last update:" -msgstr "Laatste wijziging:" - -#: ../../mod/contacts.php:513 -msgid "Update public posts" -msgstr "Openbare posts aanpassen" - -#: ../../mod/contacts.php:515 ../../mod/admin.php:1503 -msgid "Update now" -msgstr "Wijzig nu" - -#: ../../mod/contacts.php:522 -msgid "Currently blocked" -msgstr "Op dit moment geblokkeerd" - -#: ../../mod/contacts.php:523 -msgid "Currently ignored" -msgstr "Op dit moment genegeerd" - -#: ../../mod/contacts.php:524 -msgid "Currently archived" -msgstr "Op dit moment gearchiveerd" - -#: ../../mod/contacts.php:525 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn" - -#: ../../mod/contacts.php:526 -msgid "Notification for new posts" -msgstr "Meldingen voor nieuwe berichten" - -#: ../../mod/contacts.php:526 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: ../../mod/contacts.php:529 -msgid "Blacklisted keywords" -msgstr "" - -#: ../../mod/contacts.php:529 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: ../../mod/contacts.php:580 -msgid "Suggestions" -msgstr "Voorstellen" - -#: ../../mod/contacts.php:583 -msgid "Suggest potential friends" -msgstr "Stel vrienden voor" - -#: ../../mod/contacts.php:589 -msgid "Show all contacts" -msgstr "Toon alle contacten" - -#: ../../mod/contacts.php:592 -msgid "Unblocked" -msgstr "Niet geblokkeerd" - -#: ../../mod/contacts.php:595 -msgid "Only show unblocked contacts" -msgstr "Toon alleen niet-geblokkeerde contacten" - -#: ../../mod/contacts.php:599 -msgid "Blocked" -msgstr "Geblokkeerd" - -#: ../../mod/contacts.php:602 -msgid "Only show blocked contacts" -msgstr "Toon alleen geblokkeerde contacten" - -#: ../../mod/contacts.php:606 -msgid "Ignored" -msgstr "Genegeerd" - -#: ../../mod/contacts.php:609 -msgid "Only show ignored contacts" -msgstr "Toon alleen genegeerde contacten" - -#: ../../mod/contacts.php:613 -msgid "Archived" -msgstr "Gearchiveerd" - -#: ../../mod/contacts.php:616 -msgid "Only show archived contacts" -msgstr "Toon alleen gearchiveerde contacten" - -#: ../../mod/contacts.php:620 -msgid "Hidden" -msgstr "Verborgen" - -#: ../../mod/contacts.php:623 -msgid "Only show hidden contacts" -msgstr "Toon alleen verborgen contacten" - -#: ../../mod/contacts.php:671 -msgid "Mutual Friendship" -msgstr "Wederzijdse vriendschap" - -#: ../../mod/contacts.php:675 -msgid "is a fan of yours" -msgstr "Is een fan van jou" - -#: ../../mod/contacts.php:679 -msgid "you are a fan of" -msgstr "Jij bent een fan van" - -#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Contact bewerken" - -#: ../../mod/contacts.php:722 -msgid "Search your contacts" -msgstr "Doorzoek je contacten" - -#: ../../mod/contacts.php:723 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Gevonden:" - -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Uploaden van bestand mislukt." - -#: ../../mod/update_community.php:18 ../../mod/update_network.php:25 -#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22 -#: ../../mod/update_profile.php:41 +#: mod/update_profile.php:41 mod/update_network.php:25 +#: mod/update_display.php:22 mod/update_community.php:18 +#: mod/update_notes.php:37 msgid "[Embedded content - reload page to view]" msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]" -#: ../../mod/uexport.php:77 +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Bron (bbcode) tekst:" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Bron (Diaspora) tekst om naar BBCode om te zetten:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Bron ingave:" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (ruwe HTML):" + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html:" + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Bron ingave (Diaspora formaat):" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/like.php:168 include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt het %3$s van %2$s niet leuk" + +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Bericht succesvol geplaatst." + +#: mod/localtime.php:12 include/bb2diaspora.php:139 include/event.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Tijdsconversie" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones." + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC tijd: %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Huidige Tijdzone: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Omgerekende lokale tijd: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Selecteer je tijdzone:" + +#: mod/filer.php:30 include/conversation.php:1005 +#: include/conversation.php:1023 +msgid "Save to Folder:" +msgstr "Bewaren in map:" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- Kies -" + +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:978 +msgid "Save" +msgstr "Bewaren" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "aanstoten, porren of andere dingen met iemand doen" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Ontvanger" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Dit bericht privé maken" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s volgt %3$s van %2$s" + +#: mod/uexport.php:77 msgid "Export account" msgstr "Account exporteren" -#: ../../mod/uexport.php:77 +#: mod/uexport.php:77 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server." -#: ../../mod/uexport.php:78 +#: mod/uexport.php:78 msgid "Export all" msgstr "Alles exporteren" -#: ../../mod/uexport.php:78 +#: mod/uexport.php:78 msgid "" "Export your accout info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)" -#: ../../mod/register.php:90 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." +#: mod/uexport.php:85 mod/settings.php:77 +msgid "Export personal data" +msgstr "Persoonlijke gegevens exporteren" -#: ../../mod/register.php:96 +#: mod/apps.php:7 index.php:225 +msgid "You must be logged in to use addons. " +msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Toepassingen" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Geen toepassingen geïnstalleerd" + +#: mod/navigation.php:20 include/nav.php:34 +msgid "Nothing new here" +msgstr "Niets nieuw hier" + +#: mod/navigation.php:24 include/nav.php:38 +msgid "Clear notifications" +msgstr "Notificaties verwijderen" + +#: mod/tagrm.php:11 mod/tagrm.php:94 mod/fbrowser.php:81 mod/fbrowser.php:116 +#: mod/message.php:212 mod/contacts.php:416 mod/dfrn_request.php:859 +#: mod/editpost.php:148 mod/follow.php:68 mod/photos.php:225 +#: mod/photos.php:314 mod/suggest.php:32 mod/videos.php:121 +#: mod/settings.php:622 mod/settings.php:648 include/conversation.php:1093 +#: include/items.php:4857 +msgid "Cancel" +msgstr "Annuleren" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Label verwijderd" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Verwijder label van item" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Selecteer een label om te verwijderen: " + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Verwijderen" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden." + +#: mod/delegate.php:130 include/nav.php:171 +msgid "Delegate Page Management" +msgstr "Paginabeheer uitbesteden" + +#: mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd." + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Bestaande paginabeheerders" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Toevoegen" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Geen gegevens." + +#: mod/nogroup.php:40 mod/viewcontacts.php:64 mod/contacts.php:573 +#: mod/contacts.php:797 #, php-format -msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "" +msgid "Visit %s's profile [%s]" +msgstr "Bekijk het profiel van %s [%s]" -#: ../../mod/register.php:105 -msgid "Your registration can not be processed." -msgstr "Je registratie kan niet verwerkt worden." +#: mod/nogroup.php:41 mod/contacts.php:798 +msgid "Edit contact" +msgstr "Contact bewerken" -#: ../../mod/register.php:148 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw registratie wacht op goedkeuring van de beheerder." +#: mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contacten die geen leden zijn van een groep" -#: ../../mod/register.php:186 ../../mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw." +#: mod/fbrowser.php:113 +msgid "Files" +msgstr "Bestanden" -#: ../../mod/register.php:214 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken." - -#: ../../mod/register.php:215 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in." - -#: ../../mod/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Je OpenID (optioneel):" - -#: ../../mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Je profiel in de ledengids opnemen?" - -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." - -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "Je uitnodigingsid:" - -#: ../../mod/register.php:255 ../../mod/admin.php:621 -msgid "Registration" -msgstr "Registratie" - -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Je volledige naam (bijv. Jan Jansens):" - -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "Je email adres:" - -#: ../../mod/register.php:265 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@$sitename' zijn." - -#: ../../mod/register.php:266 -msgid "Choose a nickname: " -msgstr "Kies een bijnaam:" - -#: ../../mod/register.php:275 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Importeren" - -#: ../../mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Bericht succesvol geplaatst." - -#: ../../mod/maintenance.php:5 +#: mod/maintenance.php:5 msgid "System down for maintenance" msgstr "Systeem onbeschikbaar wegens onderhoud" -#: ../../mod/profile.php:155 ../../mod/display.php:332 -msgid "Access to this profile has been restricted." -msgstr "Toegang tot dit profiel is beperkt." +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Verwijder mijn account" -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Tips voor nieuwe leden" +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is." -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762 -#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 -#: ../../mod/search.php:89 ../../mod/community.php:18 -#: ../../mod/display.php:212 ../../mod/directory.php:33 -msgid "Public access denied." -msgstr "Niet vrij toegankelijk" +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Voer je wachtwoord in voor verificatie:" -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Geen video's geselecteerd" +#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/crepair.php:134 +#: mod/dfrn_confirm.php:120 +msgid "Contact not found." +msgstr "Contact niet gevonden" -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Vriendschapsvoorstel verzonden." -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 -msgid "View Album" -msgstr "Album bekijken" +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Stel vrienden voor" -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Recente video's" +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Stel een vriend voor aan %s" -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Nieuwe video's uploaden" +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Totale uitnodigingslimiet overschreden." -#: ../../mod/manage.php:106 +#: mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Geen geldig e-mailadres." + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Kom bij ons op Friendica" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website." + +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Aflevering van bericht mislukt." + +#: mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." + +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Je kunt geen uitnodigingen meer sturen" + +#: mod/invite.php:120 +#, php-format +msgid "" +"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." +msgstr "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." + +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website." + +#: mod/invite.php:123 +#, php-format +msgid "" +"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." +msgstr "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." + +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen." + +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Verstuur uitnodigingen" + +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Vul e-mailadressen in, één per lijn:" + +#: mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "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." + +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:" + +#: mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken" + +#: mod/manage.php:106 msgid "Manage Identities and/or Pages" msgstr "Beheer Identiteiten en/of Pagina's" -#: ../../mod/manage.php:107 +#: mod/manage.php:107 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." -#: ../../mod/manage.php:108 +#: mod/manage.php:108 msgid "Select an identity to manage: " msgstr "Selecteer een identiteit om te beheren:" -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Item niet gevonden" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Bericht bewerken" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Mensen Zoeken" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Geen resultaten" - -#: ../../mod/regmod.php:55 -msgid "Account approved." -msgstr "Account goedgekeurd." - -#: ../../mod/regmod.php:92 +#: mod/home.php:35 #, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" +msgid "Welcome to %s" +msgstr "Welkom op %s" -#: ../../mod/regmod.php:104 -msgid "Please login." -msgstr "Inloggen." +#: mod/message.php:9 include/nav.php:165 +msgid "New Message" +msgstr "Nieuw Bericht" -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Verzoek is al goedgekeurd" +#: mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Ik kan geen contact informatie vinden." -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiel is ongeldig of bevat geen informatie" +#: mod/message.php:182 include/nav.php:162 +msgid "Messages" +msgstr "Privéberichten" -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar." +#: mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Wil je echt dit bericht verwijderen?" -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Waarschuwing: Profieladres heeft geen profielfoto." +#: mod/message.php:227 +msgid "Message deleted." +msgstr "Bericht verwijderd." -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#: mod/message.php:258 +msgid "Conversation removed." +msgstr "Gesprek verwijderd." + +#: mod/message.php:371 +msgid "No messages." +msgstr "Geen berichten." + +#: mod/message.php:378 #, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "De %d vereiste parameter is niet op het gegeven adres gevonden" -msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden" +msgid "Unknown sender - %s" +msgstr "Onbekende afzender - %s" -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Verzoek voltooid." - -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Onherstelbare protocolfout. " - -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profiel onbeschikbaar" - -#: ../../mod/dfrn_request.php:267 +#: mod/message.php:381 #, php-format -msgid "%s has received too many connection requests today." -msgstr "%s heeft te veel verzoeken gehad vandaag." +msgid "You and %s" +msgstr "Jij en %s" -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden." - -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen." - -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Ongeldige plaatsbepaler" - -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Geen geldig e-mailadres" - -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail." - -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Ik kan jouw naam op het opgegeven adres niet vinden." - -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Je hebt jezelf hier al voorgesteld." - -#: ../../mod/dfrn_request.php:480 +#: mod/message.php:384 #, php-format -msgid "Apparently you are already friends with %s." -msgstr "Blijkbaar bent u al bevriend met %s." +msgid "%s and You" +msgstr "%s en jij" -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Ongeldig profiel adres." +#: mod/message.php:405 mod/message.php:546 +msgid "Delete conversation" +msgstr "Verwijder gesprek" -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Je verzoek is verzonden." +#: mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Log in om je verzoek te bevestigen." +#: mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d bericht" +msgstr[1] "%d berichten" -#: ../../mod/dfrn_request.php:660 +#: mod/message.php:450 +msgid "Message not available." +msgstr "Bericht niet beschikbaar." + +#: mod/message.php:520 +msgid "Delete message" +msgstr "Verwijder bericht" + +#: mod/message.php:548 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Je huidige identiteit is niet de juiste. Log met dit profiel in." +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender." -#: ../../mod/dfrn_request.php:671 -msgid "Hide this contact" -msgstr "Verberg dit contact" +#: mod/message.php:552 +msgid "Send Reply" +msgstr "Verstuur Antwoord" -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Welcome home %s." -msgstr "Welkom terug %s." - -#: ../../mod/dfrn_request.php:675 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s." - -#: ../../mod/dfrn_request.php:804 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:" - -#: ../../mod/dfrn_request.php:824 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan." - -#: ../../mod/dfrn_request.php:827 -msgid "Friend/Connection Request" -msgstr "Vriendschaps-/connectieverzoek" - -#: ../../mod/dfrn_request.php:828 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:829 -msgid "Please answer the following:" -msgstr "Beantwoord het volgende:" - -#: ../../mod/dfrn_request.php:830 -#, php-format -msgid "Does %s know you?" -msgstr "Kent %s jou?" - -#: ../../mod/dfrn_request.php:834 -msgid "Add a personal note:" -msgstr "Voeg een persoonlijke opmerking toe:" - -#: ../../mod/dfrn_request.php:837 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Gefedereerde Sociale Web" - -#: ../../mod/dfrn_request.php:839 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk." - -#: ../../mod/dfrn_request.php:840 -msgid "Your Identity Address:" -msgstr "Adres van uw identiteit:" - -#: ../../mod/dfrn_request.php:843 -msgid "Submit Request" -msgstr "Aanvraag indienen" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Bestanden" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Log in om verder te gaan." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?" - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Wil je echt dit voorstel verwijderen?" - -#: ../../mod/suggest.php:74 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen." - -#: ../../mod/suggest.php:92 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contacten die geen leden zijn van een groep" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -#: ../../mod/crepair.php:133 ../../mod/dfrn_confirm.php:120 -msgid "Contact not found." -msgstr "Contact niet gevonden" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Vriendschapsvoorstel verzonden." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Stel vrienden voor" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Stel een vriend voor aan %s" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "link" - -#: ../../mod/viewcontacts.php:41 +#: mod/viewcontacts.php:41 msgid "No contacts." msgstr "Geen contacten." -#: ../../mod/admin.php:57 +#: mod/viewcontacts.php:78 include/text.php:899 +msgid "View Contacts" +msgstr "Bekijk contacten" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protocol fout. Geen ID Gevonden." + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website." + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Login mislukt." + +#: mod/community.php:23 +msgid "Not available." +msgstr "Niet beschikbaar" + +#: mod/help.php:31 +msgid "Help:" +msgstr "Help:" + +#: mod/help.php:36 include/nav.php:114 +msgid "Help" +msgstr "Help" + +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 +msgid "Not Found" +msgstr "Niet gevonden" + +#: mod/help.php:45 index.php:272 +msgid "Page not found." +msgstr "Pagina niet gevonden" + +#: mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ongeldige request identifier." + +#: mod/notifications.php:35 mod/notifications.php:165 +#: mod/notifications.php:215 +msgid "Discard" +msgstr "Verwerpen" + +#: mod/notifications.php:51 mod/notifications.php:164 +#: mod/notifications.php:214 mod/contacts.php:527 mod/contacts.php:591 +#: mod/contacts.php:758 +msgid "Ignore" +msgstr "Negeren" + +#: mod/notifications.php:78 +msgid "System" +msgstr "Systeem" + +#: mod/notifications.php:83 include/nav.php:145 +msgid "Network" +msgstr "Netwerk" + +#: mod/notifications.php:88 mod/network.php:373 +msgid "Personal" +msgstr "Persoonlijk" + +#: mod/notifications.php:98 include/nav.php:153 +msgid "Introductions" +msgstr "Verzoeken" + +#: mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Toon genegeerde verzoeken" + +#: mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Verberg genegeerde verzoeken" + +#: mod/notifications.php:149 mod/notifications.php:199 +msgid "Notification type: " +msgstr "Notificatiesoort:" + +#: mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Vriendschapsvoorstel" + +#: mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "Voorgesteld door %s" + +#: mod/notifications.php:157 mod/notifications.php:208 mod/contacts.php:597 +msgid "Hide this contact from others" +msgstr "Verberg dit contact voor anderen" + +#: mod/notifications.php:158 mod/notifications.php:209 +msgid "Post a new friend activity" +msgstr "Bericht over een nieuwe vriend" + +#: mod/notifications.php:158 mod/notifications.php:209 +msgid "if applicable" +msgstr "Indien toepasbaar" + +#: mod/notifications.php:161 mod/notifications.php:212 mod/admin.php:1015 +msgid "Approve" +msgstr "Goedkeuren" + +#: mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Denkt dat u hem of haar kent:" + +#: mod/notifications.php:181 +msgid "yes" +msgstr "Ja" + +#: mod/notifications.php:181 +msgid "no" +msgstr "Nee" + +#: mod/notifications.php:182 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:185 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:193 +msgid "Friend" +msgstr "Vriend" + +#: mod/notifications.php:194 +msgid "Sharer" +msgstr "Deler" + +#: mod/notifications.php:194 +msgid "Fan/Admirer" +msgstr "Fan/Bewonderaar" + +#: mod/notifications.php:200 +msgid "Friend/Connect Request" +msgstr "Vriendschapsverzoek" + +#: mod/notifications.php:200 +msgid "New Follower" +msgstr "Nieuwe Volger" + +#: mod/notifications.php:221 +msgid "No introductions." +msgstr "Geen vriendschaps- of connectieverzoeken." + +#: mod/notifications.php:224 include/nav.php:156 +msgid "Notifications" +msgstr "Notificaties" + +#: mod/notifications.php:262 mod/notifications.php:391 +#: mod/notifications.php:482 +#, php-format +msgid "%s liked %s's post" +msgstr "%s vond het bericht van %s leuk" + +#: mod/notifications.php:272 mod/notifications.php:401 +#: mod/notifications.php:492 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s vond het bericht van %s niet leuk" + +#: mod/notifications.php:287 mod/notifications.php:416 +#: mod/notifications.php:507 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s is nu bevriend met %s" + +#: mod/notifications.php:294 mod/notifications.php:423 +#, php-format +msgid "%s created a new post" +msgstr "%s schreef een nieuw bericht" + +#: mod/notifications.php:295 mod/notifications.php:424 +#: mod/notifications.php:517 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s gaf een reactie op het bericht van %s" + +#: mod/notifications.php:310 +msgid "No more network notifications." +msgstr "Geen netwerknotificaties meer" + +#: mod/notifications.php:314 +msgid "Network Notifications" +msgstr "Netwerknotificaties" + +#: mod/notifications.php:340 mod/notify.php:72 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." + +#: mod/notifications.php:344 mod/notify.php:76 +msgid "System Notifications" +msgstr "Systeemnotificaties" + +#: mod/notifications.php:439 +msgid "No more personal notifications." +msgstr "Geen persoonlijke notificaties meer" + +#: mod/notifications.php:443 +msgid "Personal Notifications" +msgstr "Persoonlijke notificaties" + +#: mod/notifications.php:524 +msgid "No more home notifications." +msgstr "Geen tijdlijn-notificaties meer" + +#: mod/notifications.php:528 +msgid "Home Notifications" +msgstr "Tijdlijn-notificaties" + +#: mod/admin.php:57 msgid "Theme settings updated." msgstr "Thema-instellingen aangepast." -#: ../../mod/admin.php:104 ../../mod/admin.php:619 +#: mod/admin.php:104 mod/admin.php:627 msgid "Site" msgstr "Website" -#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 +#: mod/admin.php:105 mod/admin.php:1008 mod/admin.php:1023 msgid "Users" msgstr "Gebruiker" -#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 +#: mod/admin.php:106 mod/admin.php:1112 mod/admin.php:1165 mod/settings.php:62 +msgid "Plugins" +msgstr "Plugins" + +#: mod/admin.php:107 mod/admin.php:1333 mod/admin.php:1367 msgid "Themes" msgstr "Thema's" -#: ../../mod/admin.php:108 +#: mod/admin.php:108 msgid "DB updates" msgstr "DB aanpassingen" -#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 +#: mod/admin.php:123 mod/admin.php:132 mod/admin.php:1454 msgid "Logs" msgstr "Logs" -#: ../../mod/admin.php:124 +#: mod/admin.php:124 msgid "probe address" msgstr "" -#: ../../mod/admin.php:125 +#: mod/admin.php:125 msgid "check webfinger" msgstr "" -#: ../../mod/admin.php:131 +#: mod/admin.php:130 include/nav.php:185 +msgid "Admin" +msgstr "Beheer" + +#: mod/admin.php:131 msgid "Plugin Features" msgstr "Plugin Functies" -#: ../../mod/admin.php:133 +#: mod/admin.php:133 msgid "diagnostics" msgstr "" -#: ../../mod/admin.php:134 +#: mod/admin.php:134 msgid "User registrations waiting for confirmation" msgstr "Gebruikersregistraties wachten op bevestiging" -#: ../../mod/admin.php:193 ../../mod/admin.php:952 +#: mod/admin.php:193 mod/admin.php:961 msgid "Normal Account" msgstr "Normaal account" -#: ../../mod/admin.php:194 ../../mod/admin.php:953 +#: mod/admin.php:194 mod/admin.php:962 msgid "Soapbox Account" msgstr "Zeepkist-account" -#: ../../mod/admin.php:195 ../../mod/admin.php:954 +#: mod/admin.php:195 mod/admin.php:963 msgid "Community/Celebrity Account" msgstr "Account voor een groep/forum of beroemdheid" -#: ../../mod/admin.php:196 ../../mod/admin.php:955 +#: mod/admin.php:196 mod/admin.php:964 msgid "Automatic Friend Account" msgstr "Automatisch Vriendschapsaccount" -#: ../../mod/admin.php:197 +#: mod/admin.php:197 msgid "Blog Account" msgstr "Blog Account" -#: ../../mod/admin.php:198 +#: mod/admin.php:198 msgid "Private Forum" msgstr "Privéforum/-groep" -#: ../../mod/admin.php:217 +#: mod/admin.php:217 msgid "Message queues" msgstr "Bericht-wachtrijen" -#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997 -#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322 -#: ../../mod/admin.php:1356 ../../mod/admin.php:1443 +#: mod/admin.php:222 mod/admin.php:626 mod/admin.php:1007 mod/admin.php:1111 +#: mod/admin.php:1164 mod/admin.php:1332 mod/admin.php:1366 mod/admin.php:1453 msgid "Administration" msgstr "Beheer" -#: ../../mod/admin.php:223 +#: mod/admin.php:223 msgid "Summary" msgstr "Samenvatting" -#: ../../mod/admin.php:225 +#: mod/admin.php:225 msgid "Registered users" msgstr "Geregistreerde gebruikers" -#: ../../mod/admin.php:227 +#: mod/admin.php:227 msgid "Pending registrations" msgstr "Registraties die in de wacht staan" -#: ../../mod/admin.php:228 +#: mod/admin.php:228 msgid "Version" msgstr "Versie" -#: ../../mod/admin.php:232 +#: mod/admin.php:232 msgid "Active plugins" msgstr "Actieve plug-ins" -#: ../../mod/admin.php:255 +#: mod/admin.php:255 msgid "Can not parse base url. Must have at least ://" msgstr "" -#: ../../mod/admin.php:516 +#: mod/admin.php:524 msgid "Site settings updated." msgstr "Site instellingen gewijzigd." -#: ../../mod/admin.php:562 +#: mod/admin.php:553 mod/settings.php:853 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" + +#: mod/admin.php:570 msgid "No community page" msgstr "" -#: ../../mod/admin.php:563 +#: mod/admin.php:571 msgid "Public postings from users of this site" msgstr "" -#: ../../mod/admin.php:564 +#: mod/admin.php:572 msgid "Global community page" msgstr "" -#: ../../mod/admin.php:570 +#: mod/admin.php:577 mod/contacts.php:498 +msgid "Never" +msgstr "Nooit" + +#: mod/admin.php:578 msgid "At post arrival" msgstr "" -#: ../../mod/admin.php:579 +#: mod/admin.php:579 include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frequent" + +#: mod/admin.php:580 include/contact_selectors.php:57 +msgid "Hourly" +msgstr "elk uur" + +#: mod/admin.php:581 include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Twee keer per dag" + +#: mod/admin.php:582 include/contact_selectors.php:59 +msgid "Daily" +msgstr "dagelijks" + +#: mod/admin.php:587 msgid "Multi user instance" msgstr "Server voor meerdere gebruikers" -#: ../../mod/admin.php:602 +#: mod/admin.php:610 msgid "Closed" msgstr "Gesloten" -#: ../../mod/admin.php:603 +#: mod/admin.php:611 msgid "Requires approval" msgstr "Toestemming vereist" -#: ../../mod/admin.php:604 +#: mod/admin.php:612 msgid "Open" msgstr "Open" -#: ../../mod/admin.php:608 +#: mod/admin.php:616 msgid "No SSL policy, links will track page SSL state" msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen" -#: ../../mod/admin.php:609 +#: mod/admin.php:617 msgid "Force all links to use SSL" msgstr "Verplicht alle links om SSL te gebruiken" -#: ../../mod/admin.php:610 +#: mod/admin.php:618 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)" -#: ../../mod/admin.php:622 +#: mod/admin.php:628 mod/admin.php:1166 mod/admin.php:1368 mod/admin.php:1455 +#: mod/settings.php:621 mod/settings.php:731 mod/settings.php:754 +#: mod/settings.php:823 mod/settings.php:905 mod/settings.php:1137 +msgid "Save Settings" +msgstr "Instellingen opslaan" + +#: mod/admin.php:629 mod/register.php:260 +msgid "Registration" +msgstr "Registratie" + +#: mod/admin.php:630 msgid "File upload" msgstr "Uploaden bestand" -#: ../../mod/admin.php:623 +#: mod/admin.php:631 msgid "Policies" msgstr "Beleid" -#: ../../mod/admin.php:624 +#: mod/admin.php:632 msgid "Advanced" msgstr "Geavanceerd" -#: ../../mod/admin.php:625 +#: mod/admin.php:633 msgid "Performance" msgstr "Performantie" -#: ../../mod/admin.php:626 +#: mod/admin.php:634 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: ../../mod/admin.php:629 +#: mod/admin.php:637 msgid "Site name" msgstr "Site naam" -#: ../../mod/admin.php:630 +#: mod/admin.php:638 msgid "Host name" msgstr "" -#: ../../mod/admin.php:631 +#: mod/admin.php:639 msgid "Sender Email" msgstr "" -#: ../../mod/admin.php:632 +#: mod/admin.php:640 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../mod/admin.php:633 +#: mod/admin.php:641 msgid "Shortcut icon" msgstr "" -#: ../../mod/admin.php:634 +#: mod/admin.php:642 msgid "Touch icon" msgstr "" -#: ../../mod/admin.php:635 +#: mod/admin.php:643 msgid "Additional Info" msgstr "" -#: ../../mod/admin.php:635 +#: mod/admin.php:643 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." msgstr "" -#: ../../mod/admin.php:636 +#: mod/admin.php:644 msgid "System language" msgstr "Systeemtaal" -#: ../../mod/admin.php:637 +#: mod/admin.php:645 msgid "System theme" msgstr "Systeem thema" -#: ../../mod/admin.php:637 +#: mod/admin.php:645 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - verander thema instellingen" -#: ../../mod/admin.php:638 +#: mod/admin.php:646 msgid "Mobile system theme" msgstr "Mobiel systeem thema" -#: ../../mod/admin.php:638 +#: mod/admin.php:646 msgid "Theme for mobile devices" msgstr "Thema voor mobiele apparaten" -#: ../../mod/admin.php:639 +#: mod/admin.php:647 msgid "SSL link policy" msgstr "Beleid SSL-links" -#: ../../mod/admin.php:639 +#: mod/admin.php:647 msgid "Determines whether generated links should be forced to use SSL" msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken" -#: ../../mod/admin.php:640 +#: mod/admin.php:648 msgid "Force SSL" msgstr "" -#: ../../mod/admin.php:640 +#: mod/admin.php:648 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "" -#: ../../mod/admin.php:641 +#: mod/admin.php:649 msgid "Old style 'Share'" msgstr "" -#: ../../mod/admin.php:641 +#: mod/admin.php:649 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "" -#: ../../mod/admin.php:642 +#: mod/admin.php:650 msgid "Hide help entry from navigation menu" msgstr "Verberg de 'help' uit het navigatiemenu" -#: ../../mod/admin.php:642 +#: mod/admin.php:650 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven." -#: ../../mod/admin.php:643 +#: mod/admin.php:651 msgid "Single user instance" msgstr "Server voor één gebruiker" -#: ../../mod/admin.php:643 +#: mod/admin.php:651 msgid "Make this instance multi-user or single-user for the named user" msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker." -#: ../../mod/admin.php:644 +#: mod/admin.php:652 msgid "Maximum image size" msgstr "Maximum afbeeldingsgrootte" -#: ../../mod/admin.php:644 +#: mod/admin.php:652 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking." -#: ../../mod/admin.php:645 +#: mod/admin.php:653 msgid "Maximum image length" msgstr "Maximum afbeeldingslengte" -#: ../../mod/admin.php:645 +#: mod/admin.php:653 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen." -#: ../../mod/admin.php:646 +#: mod/admin.php:654 msgid "JPEG image quality" msgstr "JPEG afbeeldingskwaliteit" -#: ../../mod/admin.php:646 +#: mod/admin.php:654 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit." -#: ../../mod/admin.php:648 +#: mod/admin.php:656 msgid "Register policy" msgstr "Registratiebeleid" -#: ../../mod/admin.php:649 +#: mod/admin.php:657 msgid "Maximum Daily Registrations" msgstr "Maximum aantal registraties per dag" -#: ../../mod/admin.php:649 +#: mod/admin.php:657 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect." -#: ../../mod/admin.php:650 +#: mod/admin.php:658 msgid "Register text" msgstr "Registratietekst" -#: ../../mod/admin.php:650 +#: mod/admin.php:658 msgid "Will be displayed prominently on the registration page." msgstr "Dit zal prominent op de registratiepagina getoond worden." -#: ../../mod/admin.php:651 +#: mod/admin.php:659 msgid "Accounts abandoned after x days" msgstr "Verlaten accounts na x dagen" -#: ../../mod/admin.php:651 +#: mod/admin.php:659 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet." -#: ../../mod/admin.php:652 +#: mod/admin.php:660 msgid "Allowed friend domains" msgstr "Toegelaten vriend domeinen" -#: ../../mod/admin.php:652 +#: mod/admin.php:660 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten." -#: ../../mod/admin.php:653 +#: mod/admin.php:661 msgid "Allowed email domains" msgstr "Toegelaten e-mail domeinen" -#: ../../mod/admin.php:653 +#: mod/admin.php:661 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan." -#: ../../mod/admin.php:654 +#: mod/admin.php:662 msgid "Block public" msgstr "Openbare toegang blokkeren" -#: ../../mod/admin.php:654 +#: mod/admin.php:662 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers." -#: ../../mod/admin.php:655 +#: mod/admin.php:663 msgid "Force publish" msgstr "Dwing publiceren af" -#: ../../mod/admin.php:655 +#: mod/admin.php:663 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden." -#: ../../mod/admin.php:656 +#: mod/admin.php:664 msgid "Global directory update URL" msgstr "Update-adres van de globale gids" -#: ../../mod/admin.php:656 +#: mod/admin.php:664 msgid "" "URL to update the global directory. If this is not set, the global directory" " is completely unavailable to the application." msgstr "URL om de globale gids aan te passen. Als dit niet is ingevuld, is de globale gids volledig onbeschikbaar voor deze toepassing." -#: ../../mod/admin.php:657 +#: mod/admin.php:665 msgid "Allow threaded items" msgstr "Sta threads in conversaties toe" -#: ../../mod/admin.php:657 +#: mod/admin.php:665 msgid "Allow infinite level threading for items on this site." msgstr "Sta oneindige niveaus threads in conversaties op deze website toe." -#: ../../mod/admin.php:658 +#: mod/admin.php:666 msgid "Private posts by default for new users" msgstr "Privéberichten als standaard voor nieuwe gebruikers" -#: ../../mod/admin.php:658 +#: mod/admin.php:666 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar." -#: ../../mod/admin.php:659 +#: mod/admin.php:667 msgid "Don't include post content in email notifications" msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties" -#: ../../mod/admin.php:659 +#: mod/admin.php:667 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy." -#: ../../mod/admin.php:660 +#: mod/admin.php:668 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: ../../mod/admin.php:660 +#: mod/admin.php:668 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: ../../mod/admin.php:661 +#: mod/admin.php:669 msgid "Don't embed private images in posts" msgstr "" -#: ../../mod/admin.php:661 +#: mod/admin.php:669 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -5373,319 +2389,335 @@ msgid "" "while." msgstr "" -#: ../../mod/admin.php:662 +#: mod/admin.php:670 msgid "Allow Users to set remote_self" msgstr "" -#: ../../mod/admin.php:662 +#: mod/admin.php:670 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "" -#: ../../mod/admin.php:663 +#: mod/admin.php:671 msgid "Block multiple registrations" msgstr "Blokkeer meerdere registraties" -#: ../../mod/admin.php:663 +#: mod/admin.php:671 msgid "Disallow users to register additional accounts for use as pages." msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken." -#: ../../mod/admin.php:664 +#: mod/admin.php:672 msgid "OpenID support" msgstr "OpenID ondersteuning" -#: ../../mod/admin.php:664 +#: mod/admin.php:672 msgid "OpenID support for registration and logins." msgstr "OpenID ondersteuning voor registraties en logins." -#: ../../mod/admin.php:665 +#: mod/admin.php:673 msgid "Fullname check" msgstr "Controleer volledige naam" -#: ../../mod/admin.php:665 +#: mod/admin.php:673 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel" -#: ../../mod/admin.php:666 +#: mod/admin.php:674 msgid "UTF-8 Regular expressions" msgstr "UTF-8 reguliere uitdrukkingen" -#: ../../mod/admin.php:666 +#: mod/admin.php:674 msgid "Use PHP UTF8 regular expressions" msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen" -#: ../../mod/admin.php:667 +#: mod/admin.php:675 msgid "Community Page Style" msgstr "" -#: ../../mod/admin.php:667 +#: mod/admin.php:675 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." msgstr "" -#: ../../mod/admin.php:668 +#: mod/admin.php:676 msgid "Posts per user on community page" msgstr "" -#: ../../mod/admin.php:668 +#: mod/admin.php:676 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "" -#: ../../mod/admin.php:669 +#: mod/admin.php:677 msgid "Enable OStatus support" msgstr "Activeer OStatus ondersteuning" -#: ../../mod/admin.php:669 +#: mod/admin.php:677 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "" -#: ../../mod/admin.php:670 +#: mod/admin.php:678 msgid "OStatus conversation completion interval" msgstr "" -#: ../../mod/admin.php:670 +#: mod/admin.php:678 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "" -#: ../../mod/admin.php:671 +#: mod/admin.php:679 msgid "Enable Diaspora support" msgstr "Activeer Diaspora ondersteuning" -#: ../../mod/admin.php:671 +#: mod/admin.php:679 msgid "Provide built-in Diaspora network compatibility." msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk." -#: ../../mod/admin.php:672 +#: mod/admin.php:680 msgid "Only allow Friendica contacts" msgstr "Laat alleen Friendica contacten toe" -#: ../../mod/admin.php:672 +#: mod/admin.php:680 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld." -#: ../../mod/admin.php:673 +#: mod/admin.php:681 msgid "Verify SSL" msgstr "Controleer SSL" -#: ../../mod/admin.php:673 +#: mod/admin.php:681 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken." -#: ../../mod/admin.php:674 +#: mod/admin.php:682 msgid "Proxy user" msgstr "Proxy-gebruiker" -#: ../../mod/admin.php:675 +#: mod/admin.php:683 msgid "Proxy URL" msgstr "Proxy-URL" -#: ../../mod/admin.php:676 +#: mod/admin.php:684 msgid "Network timeout" msgstr "Netwerk timeout" -#: ../../mod/admin.php:676 +#: mod/admin.php:684 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)." -#: ../../mod/admin.php:677 +#: mod/admin.php:685 msgid "Delivery interval" msgstr "Afleverinterval" -#: ../../mod/admin.php:677 +#: mod/admin.php:685 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers." -#: ../../mod/admin.php:678 +#: mod/admin.php:686 msgid "Poll interval" msgstr "Poll-interval" -#: ../../mod/admin.php:678 +#: mod/admin.php:686 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt." -#: ../../mod/admin.php:679 +#: mod/admin.php:687 msgid "Maximum Load Average" msgstr "Maximum gemiddelde belasting" -#: ../../mod/admin.php:679 +#: mod/admin.php:687 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50." -#: ../../mod/admin.php:681 +#: mod/admin.php:688 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:688 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:690 msgid "Use MySQL full text engine" msgstr "Gebruik de tekst-zoekfunctie van MySQL" -#: ../../mod/admin.php:681 +#: mod/admin.php:690 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters." -#: ../../mod/admin.php:682 +#: mod/admin.php:691 msgid "Suppress Language" msgstr "" -#: ../../mod/admin.php:682 +#: mod/admin.php:691 msgid "Suppress language information in meta information about a posting." msgstr "" -#: ../../mod/admin.php:683 +#: mod/admin.php:692 msgid "Suppress Tags" msgstr "" -#: ../../mod/admin.php:683 +#: mod/admin.php:692 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: ../../mod/admin.php:684 +#: mod/admin.php:693 msgid "Path to item cache" msgstr "Pad naar cache voor items" -#: ../../mod/admin.php:685 +#: mod/admin.php:694 msgid "Cache duration in seconds" msgstr "Cache tijdsduur in seconden" -#: ../../mod/admin.php:685 +#: mod/admin.php:694 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day). To disable the item cache, set the value to -1." msgstr "" -#: ../../mod/admin.php:686 +#: mod/admin.php:695 msgid "Maximum numbers of comments per post" msgstr "" -#: ../../mod/admin.php:686 +#: mod/admin.php:695 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: ../../mod/admin.php:687 +#: mod/admin.php:696 msgid "Path for lock file" msgstr "Pad voor lock bestand" -#: ../../mod/admin.php:688 +#: mod/admin.php:697 msgid "Temp path" msgstr "Tijdelijk pad" -#: ../../mod/admin.php:689 +#: mod/admin.php:698 msgid "Base path to installation" msgstr "Basispad voor installatie" -#: ../../mod/admin.php:690 +#: mod/admin.php:699 msgid "Disable picture proxy" msgstr "" -#: ../../mod/admin.php:690 +#: mod/admin.php:699 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwith." msgstr "" -#: ../../mod/admin.php:691 +#: mod/admin.php:700 msgid "Enable old style pager" msgstr "" -#: ../../mod/admin.php:691 +#: mod/admin.php:700 msgid "" "The old style pager has page numbers but slows down massively the page " "speed." msgstr "" -#: ../../mod/admin.php:692 +#: mod/admin.php:701 msgid "Only search in tags" msgstr "" -#: ../../mod/admin.php:692 +#: mod/admin.php:701 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: ../../mod/admin.php:694 +#: mod/admin.php:703 msgid "New base url" msgstr "" -#: ../../mod/admin.php:711 +#: mod/admin.php:705 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:705 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:723 msgid "Update has been marked successful" msgstr "Wijziging succesvol gemarkeerd " -#: ../../mod/admin.php:719 +#: mod/admin.php:731 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: ../../mod/admin.php:722 +#: mod/admin.php:734 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: ../../mod/admin.php:734 +#: mod/admin.php:746 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: ../../mod/admin.php:737 +#: mod/admin.php:749 #, php-format msgid "Update %s was successfully applied." msgstr "Wijziging %s geslaagd." -#: ../../mod/admin.php:741 +#: mod/admin.php:753 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is." -#: ../../mod/admin.php:743 +#: mod/admin.php:755 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: ../../mod/admin.php:762 +#: mod/admin.php:774 msgid "No failed updates." msgstr "Geen misluke wijzigingen" -#: ../../mod/admin.php:763 +#: mod/admin.php:775 msgid "Check database structure" msgstr "" -#: ../../mod/admin.php:768 +#: mod/admin.php:780 msgid "Failed Updates" msgstr "Misluke wijzigingen" -#: ../../mod/admin.php:769 +#: mod/admin.php:781 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven." -#: ../../mod/admin.php:770 +#: mod/admin.php:782 msgid "Mark success (if update was manually applied)" msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)" -#: ../../mod/admin.php:771 +#: mod/admin.php:783 msgid "Attempt to execute this update step automatically" msgstr "Probeer deze stap automatisch uit te voeren" -#: ../../mod/admin.php:803 +#: mod/admin.php:815 #, php-format msgid "" "\n" @@ -5693,7 +2725,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: ../../mod/admin.php:806 +#: mod/admin.php:818 #, php-format msgid "" "\n" @@ -5723,293 +2755,1635 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "" -#: ../../mod/admin.php:850 +#: mod/admin.php:850 include/user.php:421 +#, php-format +msgid "Registration details for %s" +msgstr "Registratie details voor %s" + +#: mod/admin.php:862 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd" msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd" -#: ../../mod/admin.php:857 +#: mod/admin.php:869 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s gebruiker verwijderd" msgstr[1] "%s gebruikers verwijderd" -#: ../../mod/admin.php:896 +#: mod/admin.php:908 #, php-format msgid "User '%s' deleted" msgstr "Gebruiker '%s' verwijderd" -#: ../../mod/admin.php:904 +#: mod/admin.php:916 #, php-format msgid "User '%s' unblocked" msgstr "Gebruiker '%s' niet meer geblokkeerd" -#: ../../mod/admin.php:904 +#: mod/admin.php:916 #, php-format msgid "User '%s' blocked" msgstr "Gebruiker '%s' geblokkeerd" -#: ../../mod/admin.php:999 +#: mod/admin.php:1009 msgid "Add User" msgstr "Gebruiker toevoegen" -#: ../../mod/admin.php:1000 +#: mod/admin.php:1010 msgid "select all" msgstr "Alles selecteren" -#: ../../mod/admin.php:1001 +#: mod/admin.php:1011 msgid "User registrations waiting for confirm" msgstr "Gebruikersregistraties wachten op een bevestiging" -#: ../../mod/admin.php:1002 +#: mod/admin.php:1012 msgid "User waiting for permanent deletion" msgstr "" -#: ../../mod/admin.php:1003 +#: mod/admin.php:1013 msgid "Request date" msgstr "Registratiedatum" -#: ../../mod/admin.php:1004 +#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1039 +#: mod/crepair.php:170 mod/settings.php:623 mod/settings.php:649 +msgid "Name" +msgstr "Naam" + +#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1041 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +msgid "Email" +msgstr "E-mail" + +#: mod/admin.php:1014 msgid "No registrations." msgstr "Geen registraties." -#: ../../mod/admin.php:1006 +#: mod/admin.php:1016 msgid "Deny" msgstr "Weiger" -#: ../../mod/admin.php:1010 +#: mod/admin.php:1018 mod/contacts.php:521 mod/contacts.php:590 +#: mod/contacts.php:757 +msgid "Block" +msgstr "Blokkeren" + +#: mod/admin.php:1019 mod/contacts.php:521 mod/contacts.php:590 +#: mod/contacts.php:757 +msgid "Unblock" +msgstr "Blokkering opheffen" + +#: mod/admin.php:1020 msgid "Site admin" msgstr "Sitebeheerder" -#: ../../mod/admin.php:1011 +#: mod/admin.php:1021 msgid "Account expired" msgstr "Account verlopen" -#: ../../mod/admin.php:1014 +#: mod/admin.php:1024 msgid "New User" msgstr "Nieuwe gebruiker" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1025 mod/admin.php:1026 msgid "Register date" msgstr "Registratiedatum" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1025 mod/admin.php:1026 msgid "Last login" msgstr "Laatste login" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1025 mod/admin.php:1026 msgid "Last item" msgstr "Laatste item" -#: ../../mod/admin.php:1015 +#: mod/admin.php:1025 msgid "Deleted since" msgstr "Verwijderd sinds" -#: ../../mod/admin.php:1018 +#: mod/admin.php:1026 mod/settings.php:41 +msgid "Account" +msgstr "Account" + +#: mod/admin.php:1028 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" -#: ../../mod/admin.php:1019 +#: mod/admin.php:1029 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" -#: ../../mod/admin.php:1029 +#: mod/admin.php:1039 msgid "Name of the new user." msgstr "Naam van nieuwe gebruiker" -#: ../../mod/admin.php:1030 +#: mod/admin.php:1040 msgid "Nickname" msgstr "Bijnaam" -#: ../../mod/admin.php:1030 +#: mod/admin.php:1040 msgid "Nickname of the new user." msgstr "Bijnaam van nieuwe gebruiker" -#: ../../mod/admin.php:1031 +#: mod/admin.php:1041 msgid "Email address of the new user." msgstr "E-mailadres van nieuwe gebruiker" -#: ../../mod/admin.php:1064 +#: mod/admin.php:1074 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s uitgeschakeld." -#: ../../mod/admin.php:1068 +#: mod/admin.php:1078 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s ingeschakeld." -#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 +#: mod/admin.php:1088 mod/admin.php:1304 msgid "Disable" msgstr "Uitschakelen" -#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 +#: mod/admin.php:1090 mod/admin.php:1306 msgid "Enable" msgstr "Inschakelen" -#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 +#: mod/admin.php:1113 mod/admin.php:1334 msgid "Toggle" msgstr "Schakelaar" -#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 +#: mod/admin.php:1121 mod/admin.php:1344 msgid "Author: " msgstr "Auteur:" -#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 +#: mod/admin.php:1122 mod/admin.php:1345 msgid "Maintainer: " msgstr "Onderhoud:" -#: ../../mod/admin.php:1254 +#: mod/admin.php:1264 msgid "No themes found." msgstr "Geen thema's gevonden." -#: ../../mod/admin.php:1316 +#: mod/admin.php:1326 msgid "Screenshot" msgstr "Schermafdruk" -#: ../../mod/admin.php:1362 +#: mod/admin.php:1372 msgid "[Experimental]" msgstr "[Experimenteel]" -#: ../../mod/admin.php:1363 +#: mod/admin.php:1373 msgid "[Unsupported]" msgstr "[Niet ondersteund]" -#: ../../mod/admin.php:1390 +#: mod/admin.php:1400 msgid "Log settings updated." msgstr "Log instellingen gewijzigd" -#: ../../mod/admin.php:1446 +#: mod/admin.php:1456 msgid "Clear" msgstr "Wis" -#: ../../mod/admin.php:1452 +#: mod/admin.php:1462 msgid "Enable Debugging" msgstr "" -#: ../../mod/admin.php:1453 +#: mod/admin.php:1463 msgid "Log file" msgstr "Logbestand" -#: ../../mod/admin.php:1453 +#: mod/admin.php:1463 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie." -#: ../../mod/admin.php:1454 +#: mod/admin.php:1464 msgid "Log level" msgstr "Log niveau" -#: ../../mod/admin.php:1504 +#: mod/admin.php:1513 mod/contacts.php:587 +msgid "Update now" +msgstr "Wijzig nu" + +#: mod/admin.php:1514 include/acl_selectors.php:347 msgid "Close" msgstr "Afsluiten" -#: ../../mod/admin.php:1510 +#: mod/admin.php:1520 msgid "FTP Host" msgstr "FTP Server" -#: ../../mod/admin.php:1511 +#: mod/admin.php:1521 msgid "FTP Path" msgstr "FTP Pad" -#: ../../mod/admin.php:1512 +#: mod/admin.php:1522 msgid "FTP User" msgstr "FTP Gebruiker" -#: ../../mod/admin.php:1513 +#: mod/admin.php:1523 msgid "FTP Password" msgstr "FTP wachtwoord" -#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 +#: mod/allfriends.php:37 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "Afbeelding is groter dan de toegestane %d" +msgid "Friends of %s" +msgstr "Vrienden van %s" -#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Niet in staat om de afbeelding te verwerken" +#: mod/allfriends.php:44 +msgid "No friends to display." +msgstr "Geen vrienden om te laten zien." -#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Uploaden van afbeelding mislukt." +#: mod/common.php:45 +msgid "Common Friends" +msgstr "Gedeelde Vrienden" -#: ../../mod/home.php:35 +#: mod/common.php:82 +msgid "No contacts in common." +msgstr "Geen gedeelde contacten." + +#: mod/contacts.php:114 #, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "" +msgstr[1] "" -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID protocol fout. Geen ID Gevonden." +#: mod/contacts.php:145 mod/contacts.php:340 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de contactgegevens" -#: ../../mod/openid.php:53 +#: mod/contacts.php:159 +msgid "Could not locate selected profile." +msgstr "Kon het geselecteerde profiel niet vinden." + +#: mod/contacts.php:192 +msgid "Contact updated." +msgstr "Contact bijgewerkt." + +#: mod/contacts.php:194 mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Ik kon de contactgegevens niet aanpassen." + +#: mod/contacts.php:361 +msgid "Contact has been blocked" +msgstr "Contact is geblokkeerd" + +#: mod/contacts.php:361 +msgid "Contact has been unblocked" +msgstr "Contact is gedeblokkeerd" + +#: mod/contacts.php:372 +msgid "Contact has been ignored" +msgstr "Contact wordt genegeerd" + +#: mod/contacts.php:372 +msgid "Contact has been unignored" +msgstr "Contact wordt niet meer genegeerd" + +#: mod/contacts.php:384 +msgid "Contact has been archived" +msgstr "Contact is gearchiveerd" + +#: mod/contacts.php:384 +msgid "Contact has been unarchived" +msgstr "Contact is niet meer gearchiveerd" + +#: mod/contacts.php:411 mod/contacts.php:754 +msgid "Do you really want to delete this contact?" +msgstr "Wil je echt dit contact verwijderen?" + +#: mod/contacts.php:428 +msgid "Contact has been removed." +msgstr "Contact is verwijderd." + +#: mod/contacts.php:466 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Je bent wederzijds bevriend met %s" + +#: mod/contacts.php:470 +#, php-format +msgid "You are sharing with %s" +msgstr "Je deelt met %s" + +#: mod/contacts.php:475 +#, php-format +msgid "%s is sharing with you" +msgstr "%s deelt met jou" + +#: mod/contacts.php:495 +msgid "Private communications are not available for this contact." +msgstr "Privécommunicatie met dit contact is niet beschikbaar." + +#: mod/contacts.php:502 +msgid "(Update was successful)" +msgstr "(Wijziging is geslaagd)" + +#: mod/contacts.php:502 +msgid "(Update was not successful)" +msgstr "(Wijziging is niet geslaagd)" + +#: mod/contacts.php:504 +msgid "Suggest friends" +msgstr "Stel vrienden voor" + +#: mod/contacts.php:508 +#, php-format +msgid "Network type: %s" +msgstr "Netwerk type: %s" + +#: mod/contacts.php:511 include/contact_widgets.php:200 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d gedeeld contact" +msgstr[1] "%d gedeelde contacten" + +#: mod/contacts.php:516 +msgid "View all contacts" +msgstr "Alle contacten zien" + +#: mod/contacts.php:524 +msgid "Toggle Blocked status" +msgstr "Schakel geblokkeerde status" + +#: mod/contacts.php:527 mod/contacts.php:591 mod/contacts.php:758 +msgid "Unignore" +msgstr "Negeer niet meer" + +#: mod/contacts.php:530 +msgid "Toggle Ignored status" +msgstr "Schakel negeerstatus" + +#: mod/contacts.php:534 mod/contacts.php:759 +msgid "Unarchive" +msgstr "Archiveer niet meer" + +#: mod/contacts.php:534 mod/contacts.php:759 +msgid "Archive" +msgstr "Archiveer" + +#: mod/contacts.php:537 +msgid "Toggle Archive status" +msgstr "Schakel archiveringsstatus" + +#: mod/contacts.php:540 +msgid "Repair" +msgstr "Herstellen" + +#: mod/contacts.php:543 +msgid "Advanced Contact Settings" +msgstr "Geavanceerde instellingen voor contacten" + +#: mod/contacts.php:549 +msgid "Communications lost with this contact!" +msgstr "Communicatie met dit contact is verbroken!" + +#: mod/contacts.php:552 +msgid "Fetch further information for feeds" +msgstr "" + +#: mod/contacts.php:553 +msgid "Disabled" +msgstr "" + +#: mod/contacts.php:553 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:553 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:562 +msgid "Contact Editor" +msgstr "Contactbewerker" + +#: mod/contacts.php:565 +msgid "Profile Visibility" +msgstr "Zichtbaarheid profiel" + +#: mod/contacts.php:566 +#, php-format msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. " -#: ../../mod/network.php:142 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" +#: mod/contacts.php:567 +msgid "Contact Information / Notes" +msgstr "Contactinformatie / aantekeningen" -#: ../../mod/network.php:185 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Verwijder zoekterm" +#: mod/contacts.php:568 +msgid "Edit contact notes" +msgstr "Wijzig aantekeningen over dit contact" -#: ../../mod/network.php:356 +#: mod/contacts.php:574 +msgid "Block/Unblock contact" +msgstr "Blokkeer/deblokkeer contact" + +#: mod/contacts.php:575 +msgid "Ignore contact" +msgstr "Negeer contact" + +#: mod/contacts.php:576 +msgid "Repair URL settings" +msgstr "Repareer URL-instellingen" + +#: mod/contacts.php:577 +msgid "View conversations" +msgstr "Toon conversaties" + +#: mod/contacts.php:579 +msgid "Delete contact" +msgstr "Verwijder contact" + +#: mod/contacts.php:583 +msgid "Last update:" +msgstr "Laatste wijziging:" + +#: mod/contacts.php:585 +msgid "Update public posts" +msgstr "Openbare posts aanpassen" + +#: mod/contacts.php:594 +msgid "Currently blocked" +msgstr "Op dit moment geblokkeerd" + +#: mod/contacts.php:595 +msgid "Currently ignored" +msgstr "Op dit moment genegeerd" + +#: mod/contacts.php:596 +msgid "Currently archived" +msgstr "Op dit moment gearchiveerd" + +#: mod/contacts.php:597 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn" + +#: mod/contacts.php:598 +msgid "Notification for new posts" +msgstr "Meldingen voor nieuwe berichten" + +#: mod/contacts.php:598 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:601 +msgid "Blacklisted keywords" +msgstr "" + +#: mod/contacts.php:601 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: mod/contacts.php:652 +msgid "Suggestions" +msgstr "Voorstellen" + +#: mod/contacts.php:655 +msgid "Suggest potential friends" +msgstr "Stel vrienden voor" + +#: mod/contacts.php:658 mod/group.php:192 +msgid "All Contacts" +msgstr "Alle Contacten" + +#: mod/contacts.php:661 +msgid "Show all contacts" +msgstr "Toon alle contacten" + +#: mod/contacts.php:664 +msgid "Unblocked" +msgstr "Niet geblokkeerd" + +#: mod/contacts.php:667 +msgid "Only show unblocked contacts" +msgstr "Toon alleen niet-geblokkeerde contacten" + +#: mod/contacts.php:671 +msgid "Blocked" +msgstr "Geblokkeerd" + +#: mod/contacts.php:674 +msgid "Only show blocked contacts" +msgstr "Toon alleen geblokkeerde contacten" + +#: mod/contacts.php:678 +msgid "Ignored" +msgstr "Genegeerd" + +#: mod/contacts.php:681 +msgid "Only show ignored contacts" +msgstr "Toon alleen genegeerde contacten" + +#: mod/contacts.php:685 +msgid "Archived" +msgstr "Gearchiveerd" + +#: mod/contacts.php:688 +msgid "Only show archived contacts" +msgstr "Toon alleen gearchiveerde contacten" + +#: mod/contacts.php:692 +msgid "Hidden" +msgstr "Verborgen" + +#: mod/contacts.php:695 +msgid "Only show hidden contacts" +msgstr "Toon alleen verborgen contacten" + +#: mod/contacts.php:749 +msgid "Search your contacts" +msgstr "Doorzoek je contacten" + +#: mod/contacts.php:750 mod/directory.php:63 +msgid "Finding: " +msgstr "Gevonden:" + +#: mod/contacts.php:751 mod/directory.php:65 include/contact_widgets.php:34 +msgid "Find" +msgstr "Zoek" + +#: mod/contacts.php:756 mod/settings.php:137 mod/settings.php:647 +msgid "Update" +msgstr "Wijzigen" + +#: mod/contacts.php:773 +msgid "Mutual Friendship" +msgstr "Wederzijdse vriendschap" + +#: mod/contacts.php:777 +msgid "is a fan of yours" +msgstr "Is een fan van jou" + +#: mod/contacts.php:781 +msgid "you are a fan of" +msgstr "Jij bent een fan van" + +#: mod/content.php:119 mod/network.php:526 +msgid "No such group" +msgstr "Zo'n groep bestaat niet" + +#: mod/content.php:130 mod/network.php:543 +msgid "Group is empty" +msgstr "De groep is leeg" + +#: mod/content.php:135 mod/network.php:554 +#, php-format +msgid "Group: %s" +msgstr "" + +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" +msgstr "In context bekijken" + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "Contactinstellingen toegepast." + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "Aanpassen van contact mislukt." + +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "Contactinstellingen herstellen" + +#: mod/crepair.php:142 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "" + +#: mod/crepair.php:143 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen." + +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "Ga terug naar contactbewerker" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:160 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "Bijnaam account" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "URL account" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "URL vriendschapsverzoek" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "URL vriendschapsbevestiging" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "URL poll/feed" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "Nieuwe foto van deze URL" + +#: mod/crepair.php:179 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:181 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:626 +msgid "Profile not found." +msgstr "Profiel niet gevonden" + +#: mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd." + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Antwoord van de website op afstand werd niet begrepen." + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Onverwacht antwoord van website op afstand:" + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Bevestiging werd correct voltooid." + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Website op afstand berichtte: " + +#: mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Tijdelijke fout. Wacht even en probeer opnieuw." + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Verzoek mislukt of herroepen." + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "Ik kan geen contact foto instellen." + +#: mod/dfrn_confirm.php:487 include/conversation.php:172 +#: include/diaspora.php:622 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s is nu bevriend met %2$s" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "Geen gebruiker gevonden voor '%s'" + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd." + +#: mod/dfrn_confirm.php:593 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons." + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "We vonden op onze webstek geen contactrecord voor jou." + +#: mod/dfrn_confirm.php:628 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s." + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken." + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen." + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4236 +msgid "[Name Withheld]" +msgstr "[Naam achtergehouden]" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s is toegetreden tot %2$s" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Verzoek is al goedgekeurd" + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiel is ongeldig of bevat geen informatie" + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar." + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Waarschuwing: Profieladres heeft geen profielfoto." + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "De %d vereiste parameter is niet op het gegeven adres gevonden" +msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden" + +#: mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Verzoek voltooid." + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Onherstelbare protocolfout. " + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profiel onbeschikbaar" + +#: mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s heeft te veel verzoeken gehad vandaag." + +#: mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden." + +#: mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen." + +#: mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Ongeldige plaatsbepaler" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Geen geldig e-mailadres" + +#: mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail." + +#: mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Ik kan jouw naam op het opgegeven adres niet vinden." + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Je hebt jezelf hier al voorgesteld." + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Blijkbaar bent u al bevriend met %s." + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Ongeldig profiel adres." + +#: mod/dfrn_request.php:507 include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Niet toegelaten profiel adres." + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Je verzoek is verzonden." + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Log in om je verzoek te bevestigen." + +#: mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Je huidige identiteit is niet de juiste. Log met dit profiel in." + +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Bevestig" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "Verberg dit contact" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "Welkom terug %s." + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s." + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:" + +#: mod/dfrn_request.php:839 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan." + +#: mod/dfrn_request.php:842 +msgid "Friend/Connection Request" +msgstr "Vriendschaps-/connectieverzoek" + +#: mod/dfrn_request.php:843 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:844 mod/follow.php:56 +msgid "Please answer the following:" +msgstr "Beantwoord het volgende:" + +#: mod/dfrn_request.php:845 mod/follow.php:57 +#, php-format +msgid "Does %s know you?" +msgstr "Kent %s jou?" + +#: mod/dfrn_request.php:849 mod/follow.php:58 +msgid "Add a personal note:" +msgstr "Voeg een persoonlijke opmerking toe:" + +#: mod/dfrn_request.php:851 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:852 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Gefedereerde Sociale Web" + +#: mod/dfrn_request.php:853 mod/settings.php:761 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/dfrn_request.php:854 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk." + +#: mod/dfrn_request.php:855 mod/follow.php:64 +msgid "Your Identity Address:" +msgstr "Adres van uw identiteit:" + +#: mod/dfrn_request.php:858 mod/follow.php:67 +msgid "Submit Request" +msgstr "Aanvraag indienen" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "Op deze website zoeken" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "Websitegids" + +#: mod/directory.php:129 mod/profiles.php:746 +msgid "Age: " +msgstr "Leeftijd:" + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "Geslacht:" + +#: mod/directory.php:152 mod/events.php:503 include/bb2diaspora.php:161 +#: include/event.php:42 include/identity.php:268 +msgid "Location:" +msgstr "Plaats:" + +#: mod/directory.php:154 include/identity.php:270 include/identity.php:540 +msgid "Gender:" +msgstr "Geslacht:" + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 +msgid "Status:" +msgstr "Tijdlijn:" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 +msgid "Homepage:" +msgstr "Website:" + +#: mod/directory.php:160 include/identity.php:277 include/identity.php:581 +msgid "About:" +msgstr "Over:" + +#: mod/directory.php:205 +msgid "No entries (some entries may be hidden)." +msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." + +#: mod/dirfind.php:27 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:62 mod/match.php:73 +msgid "No matches" +msgstr "Geen resultaten" + +#: mod/display.php:343 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Toegang tot dit profiel is beperkt." + +#: mod/display.php:505 +msgid "Item has been removed." +msgstr "Item is verwijderd." + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Item niet gevonden" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Bericht bewerken" + +#: mod/editpost.php:111 include/conversation.php:1057 +msgid "upload photo" +msgstr "Foto uploaden" + +#: mod/editpost.php:112 include/conversation.php:1058 +msgid "Attach file" +msgstr "Bestand bijvoegen" + +#: mod/editpost.php:113 include/conversation.php:1059 +msgid "attach file" +msgstr "bestand bijvoegen" + +#: mod/editpost.php:115 include/conversation.php:1061 +msgid "web link" +msgstr "webadres" + +#: mod/editpost.php:116 include/conversation.php:1062 +msgid "Insert video link" +msgstr "Voeg video toe" + +#: mod/editpost.php:117 include/conversation.php:1063 +msgid "video link" +msgstr "video adres" + +#: mod/editpost.php:118 include/conversation.php:1064 +msgid "Insert audio link" +msgstr "Voeg audio adres toe" + +#: mod/editpost.php:119 include/conversation.php:1065 +msgid "audio link" +msgstr "audio adres" + +#: mod/editpost.php:120 include/conversation.php:1066 +msgid "Set your location" +msgstr "Stel uw locatie in" + +#: mod/editpost.php:121 include/conversation.php:1067 +msgid "set location" +msgstr "Stel uw locatie in" + +#: mod/editpost.php:122 include/conversation.php:1068 +msgid "Clear browser location" +msgstr "Verwijder locatie uit uw webbrowser" + +#: mod/editpost.php:123 include/conversation.php:1069 +msgid "clear location" +msgstr "Verwijder locatie uit uw webbrowser" + +#: mod/editpost.php:125 include/conversation.php:1075 +msgid "Permission settings" +msgstr "Instellingen van rechten" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "CC: e-mailadressen" + +#: mod/editpost.php:134 include/conversation.php:1084 +msgid "Public post" +msgstr "Openbare post" + +#: mod/editpost.php:137 include/conversation.php:1071 +msgid "Set title" +msgstr "Titel plaatsen" + +#: mod/editpost.php:139 include/conversation.php:1073 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (komma-gescheiden lijst)" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" + +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:80 mod/events.php:82 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van de gebeurtenis zijn vereist." + +#: mod/events.php:317 +msgid "l, F j" +msgstr "l j F" + +#: mod/events.php:339 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" + +#: mod/events.php:361 include/text.php:1679 include/text.php:1689 +msgid "link to source" +msgstr "Verwijzing naar bron" + +#: mod/events.php:397 +msgid "Create New Event" +msgstr "Maak een nieuwe gebeurtenis" + +#: mod/events.php:398 +msgid "Previous" +msgstr "Vorige" + +#: mod/events.php:399 mod/install.php:209 +msgid "Next" +msgstr "Volgende" + +#: mod/events.php:491 +msgid "Event details" +msgstr "Gebeurtenis details" + +#: mod/events.php:492 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:493 +msgid "Event Starts:" +msgstr "Gebeurtenis begint:" + +#: mod/events.php:493 mod/events.php:505 +msgid "Required" +msgstr "Vereist" + +#: mod/events.php:495 +msgid "Finish date/time is not known or not relevant" +msgstr "Einddatum/tijd is niet gekend of niet relevant" + +#: mod/events.php:497 +msgid "Event Finishes:" +msgstr "Gebeurtenis eindigt:" + +#: mod/events.php:499 +msgid "Adjust for viewer timezone" +msgstr "Pas aan aan de tijdzone van de gebruiker" + +#: mod/events.php:501 +msgid "Description:" +msgstr "Beschrijving:" + +#: mod/events.php:505 +msgid "Title:" +msgstr "Titel:" + +#: mod/events.php:507 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: mod/follow.php:24 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:106 +msgid "Contact added" +msgstr "Contact toegevoegd" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Groep aangemaakt." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Kon de groep niet aanmaken." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Groep niet gevonden." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Groepsnaam gewijzigd." + +#: mod/group.php:72 mod/profperm.php:19 index.php:381 +msgid "Permission denied" +msgstr "Toegang geweigerd" + +#: mod/group.php:87 +msgid "Save Group" +msgstr "" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Maak een groep contacten/vrienden aan." + +#: mod/group.php:94 mod/group.php:178 include/group.php:273 +msgid "Group Name: " +msgstr "Groepsnaam:" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Groep verwijderd." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Niet in staat om groep te verwijderen." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Groepsbewerker" + +#: mod/group.php:190 +msgid "Members" +msgstr "Leden" + +#: mod/group.php:222 mod/profperm.php:106 +msgid "Click on a contact to add or remove." +msgstr "Klik op een contact om het toe te voegen of te verwijderen." + +#: mod/install.php:119 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: mod/install.php:125 +msgid "Could not connect to database." +msgstr "Kon geen toegang krijgen tot de database." + +#: mod/install.php:129 +msgid "Could not create table." +msgstr "Kon tabel niet aanmaken." + +#: mod/install.php:135 +msgid "Your Friendica site database has been installed." +msgstr "De database van je Friendica-website is geïnstalleerd." + +#: mod/install.php:140 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql." + +#: mod/install.php:141 mod/install.php:208 mod/install.php:530 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Zie het bestand \"INSTALL.txt\"." + +#: mod/install.php:153 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:205 +msgid "System check" +msgstr "Systeemcontrole" + +#: mod/install.php:210 +msgid "Check again" +msgstr "Controleer opnieuw" + +#: mod/install.php:229 +msgid "Database connection" +msgstr "Verbinding met database" + +#: mod/install.php:230 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken." + +#: mod/install.php:231 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. " + +#: mod/install.php:232 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat." + +#: mod/install.php:236 +msgid "Database Server Name" +msgstr "Servernaam database" + +#: mod/install.php:237 +msgid "Database Login Name" +msgstr "Gebruikersnaam database" + +#: mod/install.php:238 +msgid "Database Login Password" +msgstr "Wachtwoord database" + +#: mod/install.php:239 +msgid "Database Name" +msgstr "Naam database" + +#: mod/install.php:240 mod/install.php:279 +msgid "Site administrator email address" +msgstr "E-mailadres van de websitebeheerder" + +#: mod/install.php:240 mod/install.php:279 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken." + +#: mod/install.php:244 mod/install.php:282 +msgid "Please select a default timezone for your website" +msgstr "Selecteer een standaard tijdzone voor uw website" + +#: mod/install.php:269 +msgid "Site settings" +msgstr "Website-instellingen" + +#: mod/install.php:323 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver." + +#: mod/install.php:324 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie 'Activeren van geplande taken'" + +#: mod/install.php:328 +msgid "PHP executable path" +msgstr "PATH van het PHP commando" + +#: mod/install.php:328 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten." + +#: mod/install.php:333 +msgid "Command line PHP" +msgstr "PHP-opdrachtregel" + +#: mod/install.php:342 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:343 +msgid "Found PHP version: " +msgstr "Gevonden PHP versie:" + +#: mod/install.php:345 +msgid "PHP cli binary" +msgstr "" + +#: mod/install.php:356 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd." + +#: mod/install.php:357 +msgid "This is required for message delivery to work." +msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken." + +#: mod/install.php:359 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:380 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: mod/install.php:381 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait." + +#: mod/install.php:383 +msgid "Generate encryption keys" +msgstr "" + +#: mod/install.php:390 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" + +#: mod/install.php:391 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" + +#: mod/install.php:392 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" + +#: mod/install.php:393 +msgid "mysqli PHP module" +msgstr "mysqli PHP module" + +#: mod/install.php:394 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" + +#: mod/install.php:399 mod/install.php:401 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: mod/install.php:399 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd." + +#: mod/install.php:407 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd." + +#: mod/install.php:411 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd." + +#: mod/install.php:415 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd." + +#: mod/install.php:419 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd." + +#: mod/install.php:423 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd." + +#: mod/install.php:440 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen." + +#: mod/install.php:441 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel." + +#: mod/install.php:442 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map." + +#: mod/install.php:443 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies." + +#: mod/install.php:446 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is schrijfbaar" + +#: mod/install.php:456 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen." + +#: mod/install.php:457 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie." + +#: mod/install.php:458 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map." + +#: mod/install.php:459 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten." + +#: mod/install.php:462 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 is schrijfbaar" + +#: mod/install.php:478 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: mod/install.php:480 +msgid "Url rewrite is working" +msgstr "" + +#: mod/install.php:489 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver." + +#: mod/install.php:528 +msgid "

    What next

    " +msgstr "

    Wat nu

    " + +#: mod/install.php:529 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller." + +#: mod/item.php:115 +msgid "Unable to locate original post." +msgstr "Ik kan de originele post niet meer vinden." + +#: mod/item.php:347 +msgid "Empty post discarded." +msgstr "Lege post weggegooid." + +#: mod/item.php:486 mod/wall_upload.php:169 mod/wall_upload.php:178 +#: mod/wall_upload.php:185 include/message.php:144 include/Photo.php:951 +#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 +msgid "Wall Photos" +msgstr "" + +#: mod/item.php:860 +msgid "System error. Post not saved." +msgstr "Systeemfout. Post niet bewaard." + +#: mod/item.php:989 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk." + +#: mod/item.php:991 +#, php-format +msgid "You may visit them online at %s" +msgstr "Je kunt ze online bezoeken op %s" + +#: mod/item.php:992 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen." + +#: mod/item.php:996 +#, php-format +msgid "%s posted an update." +msgstr "%s heeft een wijziging geplaatst." + +#: mod/match.php:13 +msgid "Profile Match" +msgstr "Profielmatch" + +#: mod/match.php:22 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel." + +#: mod/match.php:64 +msgid "is interested in:" +msgstr "Is geïnteresseerd in:" + +#: mod/match.php:65 mod/suggest.php:92 include/contact_widgets.php:10 +#: include/identity.php:188 +msgid "Connect" +msgstr "Verbinden" + +#: mod/network.php:143 +#, php-format +msgid "Search Results For: %s" +msgstr "" + +#: mod/network.php:197 include/group.php:277 +msgid "add" +msgstr "toevoegen" + +#: mod/network.php:358 msgid "Commented Order" msgstr "Nieuwe reacties bovenaan" -#: ../../mod/network.php:359 +#: mod/network.php:361 msgid "Sort by Comment Date" msgstr "Berichten met nieuwe reacties bovenaan" -#: ../../mod/network.php:362 +#: mod/network.php:364 msgid "Posted Order" msgstr "Nieuwe berichten bovenaan" -#: ../../mod/network.php:365 +#: mod/network.php:367 msgid "Sort by Post Date" msgstr "Nieuwe berichten bovenaan" -#: ../../mod/network.php:374 +#: mod/network.php:376 msgid "Posts that mention or involve you" msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben" -#: ../../mod/network.php:380 +#: mod/network.php:382 msgid "New" msgstr "Nieuw" -#: ../../mod/network.php:383 +#: mod/network.php:385 msgid "Activity Stream - by date" msgstr "Activiteitenstroom - volgens datum" -#: ../../mod/network.php:389 +#: mod/network.php:391 msgid "Shared Links" msgstr "Gedeelde links" -#: ../../mod/network.php:392 +#: mod/network.php:394 msgid "Interesting Links" msgstr "Interessante links" -#: ../../mod/network.php:398 +#: mod/network.php:400 msgid "Starred" msgstr "Met ster" -#: ../../mod/network.php:401 +#: mod/network.php:403 msgid "Favourite Posts" msgstr "Favoriete berichten" -#: ../../mod/network.php:463 +#: mod/network.php:460 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -6017,1913 +4391,3570 @@ msgid_plural "" msgstr[0] "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk." msgstr[1] "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk." -#: ../../mod/network.php:466 +#: mod/network.php:463 msgid "Private messages to this group are at risk of public disclosure." msgstr "Privéberichten naar deze groep kunnen openbaar gemaakt worden." -#: ../../mod/network.php:520 ../../mod/content.php:119 -msgid "No such group" -msgstr "Zo'n groep bestaat niet" +#: mod/network.php:572 +#, php-format +msgid "Contact: %s" +msgstr "" -#: ../../mod/network.php:537 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "De groep is leeg" - -#: ../../mod/network.php:544 ../../mod/content.php:134 -msgid "Group: " -msgstr "Groep:" - -#: ../../mod/network.php:554 -msgid "Contact: " -msgstr "Contact: " - -#: ../../mod/network.php:556 +#: mod/network.php:576 msgid "Private messages to this person are at risk of public disclosure." msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden." -#: ../../mod/network.php:561 +#: mod/network.php:581 msgid "Invalid contact." msgstr "Ongeldig contact." -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- Kies -" +#: mod/notes.php:44 include/identity.php:670 +msgid "Personal Notes" +msgstr "Persoonlijke Nota's" -#: ../../mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Dit is Friendica, versie" +#: mod/p.php:9 +msgid "Not Extended" +msgstr "" -#: ../../mod/friendica.php:60 -msgid "running at web location" -msgstr "draaiend op web-adres" +#: mod/photos.php:84 include/identity.php:649 +msgid "Photo Albums" +msgstr "Fotoalbums" -#: ../../mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Bezoek Friendica.com om meer te leren over het Friendica project." +#: mod/photos.php:85 mod/photos.php:1836 +msgid "Recent Photos" +msgstr "Recente foto's" -#: ../../mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Bug rapporten en problemen: bezoek" - -#: ../../mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com" - -#: ../../mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Geïnstalleerde plugins/toepassingen:" - -#: ../../mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Geen plugins of toepassingen geïnstalleerd" - -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Toepassingen" - -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Geen toepassingen geïnstalleerd" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 +#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 msgid "Upload New Photos" msgstr "Nieuwe foto's uploaden" -#: ../../mod/photos.php:144 +#: mod/photos.php:102 mod/settings.php:34 +msgid "everybody" +msgstr "iedereen" + +#: mod/photos.php:166 msgid "Contact information unavailable" msgstr "Contactinformatie niet beschikbaar" -#: ../../mod/photos.php:165 +#: mod/photos.php:187 msgid "Album not found." msgstr "Album niet gevonden" -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 msgid "Delete Album" msgstr "Verwijder album" -#: ../../mod/photos.php:198 +#: mod/photos.php:220 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?" -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 +#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 msgid "Delete Photo" msgstr "Verwijder foto" -#: ../../mod/photos.php:287 +#: mod/photos.php:309 msgid "Do you really want to delete this photo?" msgstr "Wil je echt deze foto verwijderen?" -#: ../../mod/photos.php:662 +#: mod/photos.php:684 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s is gelabeld in %2$s door %3$s" -#: ../../mod/photos.php:662 +#: mod/photos.php:684 msgid "a photo" msgstr "een foto" -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "Afbeelding is groter dan de maximale afmeting van" +#: mod/photos.php:789 mod/profile_photo.php:144 mod/wall_upload.php:122 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" -#: ../../mod/photos.php:775 +#: mod/photos.php:797 msgid "Image file is empty." msgstr "Afbeeldingsbestand is leeg." -#: ../../mod/photos.php:930 +#: mod/photos.php:829 mod/profile_photo.php:153 mod/wall_upload.php:144 +msgid "Unable to process image." +msgstr "Niet in staat om de afbeelding te verwerken" + +#: mod/photos.php:856 mod/profile_photo.php:301 mod/wall_upload.php:172 +msgid "Image upload failed." +msgstr "Uploaden van afbeelding mislukt." + +#: mod/photos.php:952 msgid "No photos selected" msgstr "Geen foto's geselecteerd" -#: ../../mod/photos.php:1094 +#: mod/photos.php:1053 mod/videos.php:298 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." + +#: mod/photos.php:1114 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt." -#: ../../mod/photos.php:1129 +#: mod/photos.php:1149 msgid "Upload Photos" msgstr "Upload foto's" -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 +#: mod/photos.php:1153 mod/photos.php:1219 msgid "New album name: " msgstr "Nieuwe albumnaam: " -#: ../../mod/photos.php:1134 +#: mod/photos.php:1154 msgid "or existing album name: " msgstr "of bestaande albumnaam: " -#: ../../mod/photos.php:1135 +#: mod/photos.php:1155 msgid "Do not show a status post for this upload" msgstr "Toon geen bericht op je tijdlijn van deze upload" -#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 +#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 msgid "Permissions" msgstr "Rechten" -#: ../../mod/photos.php:1148 +#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1172 +msgid "Show to Groups" +msgstr "Tonen aan groepen" + +#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1173 +msgid "Show to Contacts" +msgstr "Tonen aan contacten" + +#: mod/photos.php:1168 msgid "Private Photo" msgstr "Privé foto" -#: ../../mod/photos.php:1149 +#: mod/photos.php:1169 msgid "Public Photo" msgstr "Publieke foto" -#: ../../mod/photos.php:1212 +#: mod/photos.php:1232 msgid "Edit Album" msgstr "Album wijzigen" -#: ../../mod/photos.php:1218 +#: mod/photos.php:1238 msgid "Show Newest First" msgstr "Toon niewste eerst" -#: ../../mod/photos.php:1220 +#: mod/photos.php:1240 msgid "Show Oldest First" msgstr "Toon oudste eerst" -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 +#: mod/photos.php:1268 mod/photos.php:1821 msgid "View Photo" msgstr "Bekijk foto" -#: ../../mod/photos.php:1294 +#: mod/photos.php:1314 msgid "Permission denied. Access to this item may be restricted." msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." -#: ../../mod/photos.php:1296 +#: mod/photos.php:1316 msgid "Photo not available" msgstr "Foto is niet beschikbaar" -#: ../../mod/photos.php:1352 +#: mod/photos.php:1372 msgid "View photo" msgstr "Bekijk foto" -#: ../../mod/photos.php:1352 +#: mod/photos.php:1372 msgid "Edit photo" msgstr "Bewerk foto" -#: ../../mod/photos.php:1353 +#: mod/photos.php:1373 msgid "Use as profile photo" msgstr "Gebruik als profielfoto" -#: ../../mod/photos.php:1378 +#: mod/photos.php:1398 msgid "View Full Size" msgstr "Bekijk in volledig formaat" -#: ../../mod/photos.php:1457 +#: mod/photos.php:1477 msgid "Tags: " msgstr "Labels: " -#: ../../mod/photos.php:1460 +#: mod/photos.php:1480 msgid "[Remove any tag]" msgstr "[Alle labels verwijderen]" -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Roteren met de klok mee (rechts)" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Roteren tegen de klok in (links)" - -#: ../../mod/photos.php:1503 +#: mod/photos.php:1520 msgid "New album name" msgstr "Nieuwe albumnaam" -#: ../../mod/photos.php:1506 +#: mod/photos.php:1521 msgid "Caption" msgstr "Onderschrift" -#: ../../mod/photos.php:1508 +#: mod/photos.php:1522 msgid "Add a Tag" msgstr "Een label toevoegen" -#: ../../mod/photos.php:1512 +#: mod/photos.php:1522 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " -#: ../../mod/photos.php:1521 +#: mod/photos.php:1523 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1524 +msgid "Rotate CW (right)" +msgstr "Roteren met de klok mee (rechts)" + +#: mod/photos.php:1525 +msgid "Rotate CCW (left)" +msgstr "Roteren tegen de klok in (links)" + +#: mod/photos.php:1540 msgid "Private photo" msgstr "Privé foto" -#: ../../mod/photos.php:1522 +#: mod/photos.php:1541 msgid "Public photo" msgstr "Publieke foto" -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Recente foto's" +#: mod/photos.php:1563 include/conversation.php:1055 +msgid "Share" +msgstr "Delen" -#: ../../mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" +#: mod/photos.php:1827 mod/videos.php:380 +msgid "View Album" +msgstr "Album bekijken" -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contact toegevoegd" - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Account verplaatsen" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Je kunt een account van een andere Friendica server importeren." - -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent." - -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren." - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Account bestand" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Totale uitnodigingslimiet overschreden." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Geen geldig e-mailadres." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Kom bij ons op Friendica" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website." - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Aflevering van bericht mislukt." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d bericht verzonden." -msgstr[1] "%d berichten verzonden." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Je kunt geen uitnodigingen meer sturen" - -#: ../../mod/invite.php:120 -#, php-format -msgid "" -"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." -msgstr "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." - -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website." - -#: ../../mod/invite.php:123 -#, php-format -msgid "" -"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." -msgstr "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." - -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen." - -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Verstuur uitnodigingen" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Vul e-mailadressen in, één per lijn:" - -#: ../../mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "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." - -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code" - -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:" - -#: ../../mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken" - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Toegang geweigerd" - -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." - -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na." - -#: ../../mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "" - -#: ../../mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "" - -#: ../../mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen" - -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld." - -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd." - -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Je nieuwe wachtwoord is" - -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan" - -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "klik hier om in te loggen" - -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina." - -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "" - -#: ../../mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "" - -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Je wachtwoord is veranderd op %s" - -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" - -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies." - -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Bijnaam of e-mail:" - -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Opnieuw" - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Bron (bbcode) tekst:" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Bron (Diaspora) tekst om naar BBCode om te zetten:" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Bron ingave:" - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (ruwe HTML):" - -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html:" - -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Bron ingave (Diaspora formaat):" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Label verwijderd" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Verwijder label van item" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Selecteer een label om te verwijderen: " - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Verwijder mijn account" - -#: ../../mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is." - -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Voer je wachtwoord in voor verificatie:" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificatie." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Zichtbaar voor" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Alle contacten (met veilige profieltoegang)" - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Profielmatch" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "Is geïnteresseerd in:" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van de gebeurtenis zijn vereist." - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Maak een nieuwe gebeurtenis" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Vorige" - -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Volgende" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "uur:minuut" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Gebeurtenis details" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Formaat is %s %s. Begindatum en titel zijn vereist." - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Gebeurtenis begint:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Vereist" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Einddatum/tijd is niet gekend of niet relevant" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Gebeurtenis eindigt:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Pas aan aan de tijdzone van de gebruiker" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Beschrijving:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: ../../mod/ping.php:240 +#: mod/ping.php:233 msgid "{0} wants to be your friend" msgstr "{0} wilt je vriend worden" -#: ../../mod/ping.php:245 +#: mod/ping.php:248 msgid "{0} sent you a message" msgstr "{0} stuurde jou een bericht" -#: ../../mod/ping.php:250 +#: mod/ping.php:263 msgid "{0} requested registration" msgstr "{0} vroeg om zich te registreren" -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} gaf een reactie op het bericht van %s" +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "Gevraagde profiel is niet beschikbaar." -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} vond het bericht van %s leuk" +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Tips voor nieuwe leden" -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} vond het bericht van %s niet leuk" - -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} is nu bevriend met %s" - -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} plaatste" - -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} labelde %s's bericht met #%s" - -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} vermeldde je in een bericht" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Stemming" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Stel je huidige stemming in, en vertel het je vrienden" - -#: ../../mod/search.php:174 ../../mod/community.php:62 -#: ../../mod/community.php:71 -msgid "No results." -msgstr "Geen resultaten." - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Ik kan geen contact informatie vinden." - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Wil je echt dit bericht verwijderen?" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Bericht verwijderd." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Gesprek verwijderd." - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Geen berichten." - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "Onbekende afzender - %s" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Jij en %s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s en jij" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Verwijder gesprek" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d bericht" -msgstr[1] "%d berichten" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Bericht niet beschikbaar." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Verwijder bericht" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Verstuur Antwoord" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Niet beschikbaar" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 -#: ../../mod/profiles.php:179 ../../mod/profiles.php:630 -#: ../../mod/dfrn_confirm.php:64 -msgid "Profile not found." -msgstr "Profiel niet gevonden" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profiel verwijderd" - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profiel-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen." - -#: ../../mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist." - -#: ../../mod/profiles.php:340 -msgid "Marital Status" -msgstr "Echtelijke staat" - -#: ../../mod/profiles.php:344 -msgid "Romantic Partner" -msgstr "Romantische Partner" - -#: ../../mod/profiles.php:348 -msgid "Likes" -msgstr "Houdt van" - -#: ../../mod/profiles.php:352 -msgid "Dislikes" -msgstr "Houdt niet van" - -#: ../../mod/profiles.php:356 -msgid "Work/Employment" -msgstr "Werk" - -#: ../../mod/profiles.php:359 -msgid "Religion" -msgstr "Godsdienst" - -#: ../../mod/profiles.php:363 -msgid "Political Views" -msgstr "Politieke standpunten" - -#: ../../mod/profiles.php:367 -msgid "Gender" -msgstr "Geslacht" - -#: ../../mod/profiles.php:371 -msgid "Sexual Preference" -msgstr "Seksuele Voorkeur" - -#: ../../mod/profiles.php:375 -msgid "Homepage" -msgstr "Tijdlijn" - -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 -msgid "Interests" -msgstr "Interesses" - -#: ../../mod/profiles.php:383 -msgid "Address" -msgstr "Adres" - -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 -msgid "Location" -msgstr "Plaats" - -#: ../../mod/profiles.php:473 -msgid "Profile updated." -msgstr "Profiel bijgewerkt." - -#: ../../mod/profiles.php:568 -msgid " and " -msgstr "en" - -#: ../../mod/profiles.php:576 -msgid "public profile" -msgstr "publiek profiel" - -#: ../../mod/profiles.php:579 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" - -#: ../../mod/profiles.php:580 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Bezoek %2$s van %1$s" - -#: ../../mod/profiles.php:583 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd." - -#: ../../mod/profiles.php:658 -msgid "Hide contacts and friends:" -msgstr "" - -#: ../../mod/profiles.php:663 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?" - -#: ../../mod/profiles.php:685 -msgid "Edit Profile Details" -msgstr "Profieldetails bewerken" - -#: ../../mod/profiles.php:687 -msgid "Change Profile Photo" -msgstr "Profielfoto wijzigen" - -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Dit profiel bekijken" - -#: ../../mod/profiles.php:689 -msgid "Create a new profile using these settings" -msgstr "Nieuw profiel aanmaken met deze instellingen" - -#: ../../mod/profiles.php:690 -msgid "Clone this profile" -msgstr "Dit profiel klonen" - -#: ../../mod/profiles.php:691 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" - -#: ../../mod/profiles.php:692 -msgid "Basic information" -msgstr "" - -#: ../../mod/profiles.php:693 -msgid "Profile picture" -msgstr "" - -#: ../../mod/profiles.php:695 -msgid "Preferences" -msgstr "" - -#: ../../mod/profiles.php:696 -msgid "Status information" -msgstr "" - -#: ../../mod/profiles.php:697 -msgid "Additional information" -msgstr "" - -#: ../../mod/profiles.php:699 ../../mod/newmember.php:36 -#: ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" - -#: ../../mod/profiles.php:700 -msgid "Profile Name:" -msgstr "Profiel Naam:" - -#: ../../mod/profiles.php:701 -msgid "Your Full Name:" -msgstr "Je volledige naam:" - -#: ../../mod/profiles.php:702 -msgid "Title/Description:" -msgstr "Titel/Beschrijving:" - -#: ../../mod/profiles.php:703 -msgid "Your Gender:" -msgstr "Je Geslacht:" - -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Geboortedatum (%s):" - -#: ../../mod/profiles.php:705 -msgid "Street Address:" -msgstr "Postadres:" - -#: ../../mod/profiles.php:706 -msgid "Locality/City:" -msgstr "Gemeente/Stad:" - -#: ../../mod/profiles.php:707 -msgid "Postal/Zip Code:" -msgstr "Postcode:" - -#: ../../mod/profiles.php:708 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:709 -msgid "Region/State:" -msgstr "Regio/Staat:" - -#: ../../mod/profiles.php:710 -msgid " Marital Status:" -msgstr " Echtelijke Staat:" - -#: ../../mod/profiles.php:711 -msgid "Who: (if applicable)" -msgstr "Wie: (indien toepasbaar)" - -#: ../../mod/profiles.php:712 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl" - -#: ../../mod/profiles.php:713 -msgid "Since [date]:" -msgstr "Sinds [datum]:" - -#: ../../mod/profiles.php:715 -msgid "Homepage URL:" -msgstr "Adres tijdlijn:" - -#: ../../mod/profiles.php:718 -msgid "Religious Views:" -msgstr "Geloof:" - -#: ../../mod/profiles.php:719 -msgid "Public Keywords:" -msgstr "Publieke Sleutelwoorden:" - -#: ../../mod/profiles.php:720 -msgid "Private Keywords:" -msgstr "Privé Sleutelwoorden:" - -#: ../../mod/profiles.php:723 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: vissen fotografie software" - -#: ../../mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" - -#: ../../mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" - -#: ../../mod/profiles.php:726 -msgid "Tell us about yourself..." -msgstr "Vertel iets over jezelf..." - -#: ../../mod/profiles.php:727 -msgid "Hobbies/Interests" -msgstr "Hobby's/Interesses" - -#: ../../mod/profiles.php:728 -msgid "Contact information and Social Networks" -msgstr "Contactinformatie en sociale netwerken" - -#: ../../mod/profiles.php:729 -msgid "Musical interests" -msgstr "Muzikale interesses" - -#: ../../mod/profiles.php:730 -msgid "Books, literature" -msgstr "Boeken, literatuur" - -#: ../../mod/profiles.php:731 -msgid "Television" -msgstr "Televisie" - -#: ../../mod/profiles.php:732 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultuur/ontspanning" - -#: ../../mod/profiles.php:733 -msgid "Love/romance" -msgstr "Liefde/romance" - -#: ../../mod/profiles.php:734 -msgid "Work/employment" -msgstr "Werk" - -#: ../../mod/profiles.php:735 -msgid "School/education" -msgstr "School/opleiding" - -#: ../../mod/profiles.php:740 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Dit is jouw publiek profiel.
    Het kan zichtbaar zijn voor iedereen op het internet." - -#: ../../mod/profiles.php:750 ../../mod/directory.php:113 -msgid "Age: " -msgstr "Leeftijd:" - -#: ../../mod/profiles.php:803 -msgid "Edit/Manage Profiles" -msgstr "Wijzig/Beheer Profielen" - -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "" - -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Kon geen toegang krijgen tot de database." - -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Kon tabel niet aanmaken." - -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "De database van je Friendica-website is geïnstalleerd." - -#: ../../mod/install.php:138 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql." - -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Zie het bestand \"INSTALL.txt\"." - -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Systeemcontrole" - -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Controleer opnieuw" - -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Verbinding met database" - -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken." - -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. " - -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat." - -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Servernaam database" - -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Gebruikersnaam database" - -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Wachtwoord database" - -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Naam database" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "E-mailadres van de websitebeheerder" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken." - -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Selecteer een standaard tijdzone voor uw website" - -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Website-instellingen" - -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver." - -#: ../../mod/install.php:322 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie 'Activeren van geplande taken'" - -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "PATH van het PHP commando" - -#: ../../mod/install.php:326 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten." - -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "PHP-opdrachtregel" - -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "Gevonden PHP versie:" - -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "" - -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd." - -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken." - -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: ../../mod/install.php:379 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait." - -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "" - -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "libCurl PHP module" - -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP module" - -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP module" - -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "mysqli PHP module" - -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "mb_string PHP module" - -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" - -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd." - -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd." - -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd." - -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd." - -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd." - -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd." - -#: ../../mod/install.php:438 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen." - -#: ../../mod/install.php:439 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel." - -#: ../../mod/install.php:440 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map." - -#: ../../mod/install.php:441 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies." - -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is schrijfbaar" - -#: ../../mod/install.php:454 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen." - -#: ../../mod/install.php:455 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie." - -#: ../../mod/install.php:456 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map." - -#: ../../mod/install.php:457 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten." - -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 is schrijfbaar" - -#: ../../mod/install.php:472 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: ../../mod/install.php:474 -msgid "Url rewrite is working" -msgstr "" - -#: ../../mod/install.php:484 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver." - -#: ../../mod/install.php:523 -msgid "

    What next

    " -msgstr "

    Wat nu

    " - -#: ../../mod/install.php:524 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller." - -#: ../../mod/help.php:31 -msgid "Help:" -msgstr "Help:" - -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." -msgstr "Contactinstellingen toegepast." - -#: ../../mod/crepair.php:108 -msgid "Contact update failed." -msgstr "Aanpassen van contact mislukt." - -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" -msgstr "Contactinstellingen herstellen" - -#: ../../mod/crepair.php:141 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "" - -#: ../../mod/crepair.php:142 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen." - -#: ../../mod/crepair.php:148 -msgid "Return to contact editor" -msgstr "Ga terug naar contactbewerker" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "No mirroring" -msgstr "" - -#: ../../mod/crepair.php:159 -msgid "Mirror as forwarded posting" -msgstr "" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "Mirror as my own posting" -msgstr "" - -#: ../../mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Bijnaam account" - -#: ../../mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam" - -#: ../../mod/crepair.php:168 -msgid "Account URL" -msgstr "URL account" - -#: ../../mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "URL vriendschapsverzoek" - -#: ../../mod/crepair.php:170 -msgid "Friend Confirm URL" -msgstr "URL vriendschapsbevestiging" - -#: ../../mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "" - -#: ../../mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "URL poll/feed" - -#: ../../mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Nieuwe foto van deze URL" - -#: ../../mod/crepair.php:174 -msgid "Remote Self" -msgstr "" - -#: ../../mod/crepair.php:176 -msgid "Mirror postings from this contact" -msgstr "" - -#: ../../mod/crepair.php:176 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Welkom bij Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Checklist voor nieuwe leden" - -#: ../../mod/newmember.php:12 -msgid "" -"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." -msgstr "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Aan de slag" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Doorloop Friendica" - -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden." - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Ga naar je instellingen" - -#: ../../mod/newmember.php:26 -msgid "" -"On your Settings 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." -msgstr "Verander je initieel wachtwoord op je instellingenpagina. 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." - -#: ../../mod/newmember.php:28 -msgid "" -"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." -msgstr "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden." - -#: ../../mod/newmember.php:36 -msgid "" -"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." -msgstr "Upload een profielfoto, 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." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Bewerk je profiel" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Sleutelwoorden voor dit profiel" - -#: ../../mod/newmember.php:40 -msgid "" -"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." -msgstr "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." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Verbinding aan het maken" - -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren." - -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "Als dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken." - -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "E-mails importeren" - -#: ../../mod/newmember.php:56 -msgid "" -"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" -msgstr "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" - -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Ga naar je contactenpagina" - -#: ../../mod/newmember.php:58 -msgid "" -"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 Add New Contact dialog." -msgstr "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 Voeg nieuw contact toe dialoog." - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Ga naar de gids van je website" - -#: ../../mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord Connect of Follow op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Nieuwe mensen vinden" - -#: ../../mod/newmember.php:62 -msgid "" -"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." -msgstr "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden." - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Groepeer je contacten" - -#: ../../mod/newmember.php:70 -msgid "" -"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." -msgstr "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. " - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Waarom zijn mijn berichten niet openbaar?" - -#: ../../mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie." - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Hulp krijgen" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Ga naar de help" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma." - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "aanstoten, porren of andere dingen met iemand doen" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Ontvanger" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Dit bericht privé maken" - -#: ../../mod/display.php:496 -msgid "Item has been removed." -msgstr "Item is verwijderd." - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s volgt %3$s van %2$s" - -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s heet %2$s van harte welkom" - -#: ../../mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd." - -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Antwoord van de website op afstand werd niet begrepen." - -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Onverwacht antwoord van website op afstand:" - -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Bevestiging werd correct voltooid." - -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Website op afstand berichtte: " - -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Tijdelijke fout. Wacht even en probeer opnieuw." - -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Verzoek mislukt of herroepen." - -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "Ik kan geen contact foto instellen." - -#: ../../mod/dfrn_confirm.php:571 -#, php-format -msgid "No user record found for '%s' " -msgstr "Geen gebruiker gevonden voor '%s'" - -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd." - -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons." - -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "We vonden op onze webstek geen contactrecord voor jou." - -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s." - -#: ../../mod/dfrn_confirm.php:647 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken." - -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen." - -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s is toegetreden tot %2$s" - -#: ../../mod/item.php:114 -msgid "Unable to locate original post." -msgstr "Ik kan de originele post niet meer vinden." - -#: ../../mod/item.php:346 -msgid "Empty post discarded." -msgstr "Lege post weggegooid." - -#: ../../mod/item.php:839 -msgid "System error. Post not saved." -msgstr "Systeemfout. Post niet bewaard." - -#: ../../mod/item.php:965 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk." - -#: ../../mod/item.php:967 -#, php-format -msgid "You may visit them online at %s" -msgstr "Je kunt ze online bezoeken op %s" - -#: ../../mod/item.php:968 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen." - -#: ../../mod/item.php:972 -#, php-format -msgid "%s posted an update." -msgstr "%s heeft een wijziging geplaatst." - -#: ../../mod/profile_photo.php:44 +#: mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." msgstr "Afbeelding opgeladen, maar bijsnijden mislukt." -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:308 #, php-format msgid "Image size reduction [%s] failed." msgstr "Verkleining van de afbeelding [%s] mislukt." -#: ../../mod/profile_photo.php:118 +#: mod/profile_photo.php:118 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen." -#: ../../mod/profile_photo.php:128 +#: mod/profile_photo.php:128 msgid "Unable to process image" msgstr "Ik kan de afbeelding niet verwerken" -#: ../../mod/profile_photo.php:242 +#: mod/profile_photo.php:242 msgid "Upload File:" msgstr "Upload bestand:" -#: ../../mod/profile_photo.php:243 +#: mod/profile_photo.php:243 msgid "Select a profile:" msgstr "Kies een profiel:" -#: ../../mod/profile_photo.php:245 +#: mod/profile_photo.php:245 msgid "Upload" msgstr "Uploaden" -#: ../../mod/profile_photo.php:248 +#: mod/profile_photo.php:248 mod/settings.php:1088 +msgid "or" +msgstr "of" + +#: mod/profile_photo.php:248 msgid "skip this step" msgstr "Deze stap overslaan" -#: ../../mod/profile_photo.php:248 +#: mod/profile_photo.php:248 msgid "select a photo from your photo albums" msgstr "Kies een foto uit je fotoalbums" -#: ../../mod/profile_photo.php:262 +#: mod/profile_photo.php:262 msgid "Crop Image" msgstr "Afbeelding bijsnijden" -#: ../../mod/profile_photo.php:263 +#: mod/profile_photo.php:263 msgid "Please adjust the image cropping for optimum viewing." msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat." -#: ../../mod/profile_photo.php:265 +#: mod/profile_photo.php:265 msgid "Done Editing" msgstr "Wijzigingen compleet" -#: ../../mod/profile_photo.php:299 +#: mod/profile_photo.php:299 msgid "Image uploaded successfully." msgstr "Uploaden van afbeelding gelukt." -#: ../../mod/allfriends.php:34 +#: mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profiel verwijderd" + +#: mod/profiles.php:55 mod/profiles.php:89 +msgid "Profile-" +msgstr "Profiel-" + +#: mod/profiles.php:74 mod/profiles.php:117 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." + +#: mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen." + +#: mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist." + +#: mod/profiles.php:336 +msgid "Marital Status" +msgstr "Echtelijke staat" + +#: mod/profiles.php:340 +msgid "Romantic Partner" +msgstr "Romantische Partner" + +#: mod/profiles.php:344 +msgid "Likes" +msgstr "Houdt van" + +#: mod/profiles.php:348 +msgid "Dislikes" +msgstr "Houdt niet van" + +#: mod/profiles.php:352 +msgid "Work/Employment" +msgstr "Werk" + +#: mod/profiles.php:355 +msgid "Religion" +msgstr "Godsdienst" + +#: mod/profiles.php:359 +msgid "Political Views" +msgstr "Politieke standpunten" + +#: mod/profiles.php:363 +msgid "Gender" +msgstr "Geslacht" + +#: mod/profiles.php:367 +msgid "Sexual Preference" +msgstr "Seksuele Voorkeur" + +#: mod/profiles.php:371 +msgid "Homepage" +msgstr "Tijdlijn" + +#: mod/profiles.php:375 mod/profiles.php:694 +msgid "Interests" +msgstr "Interesses" + +#: mod/profiles.php:379 +msgid "Address" +msgstr "Adres" + +#: mod/profiles.php:386 mod/profiles.php:690 +msgid "Location" +msgstr "Plaats" + +#: mod/profiles.php:469 +msgid "Profile updated." +msgstr "Profiel bijgewerkt." + +#: mod/profiles.php:564 +msgid " and " +msgstr "en" + +#: mod/profiles.php:572 +msgid "public profile" +msgstr "publiek profiel" + +#: mod/profiles.php:575 #, php-format -msgid "Friends of %s" -msgstr "Vrienden van %s" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Geen vrienden om te laten zien." +#: mod/profiles.php:576 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Bezoek %2$s van %1$s" -#: ../../mod/directory.php:59 -msgid "Find on this site" -msgstr "Op deze website zoeken" +#: mod/profiles.php:579 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd." -#: ../../mod/directory.php:62 -msgid "Site Directory" -msgstr "Websitegids" +#: mod/profiles.php:654 +msgid "Hide contacts and friends:" +msgstr "" -#: ../../mod/directory.php:116 -msgid "Gender: " -msgstr "Geslacht:" +#: mod/profiles.php:659 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?" -#: ../../mod/directory.php:189 -msgid "No entries (some entries may be hidden)." -msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." +#: mod/profiles.php:681 +msgid "Edit Profile Details" +msgstr "Profieldetails bewerken" -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Tijdsconversie" +#: mod/profiles.php:683 +msgid "Change Profile Photo" +msgstr "Profielfoto wijzigen" -#: ../../mod/localtime.php:26 +#: mod/profiles.php:684 +msgid "View this profile" +msgstr "Dit profiel bekijken" + +#: mod/profiles.php:685 +msgid "Create a new profile using these settings" +msgstr "Nieuw profiel aanmaken met deze instellingen" + +#: mod/profiles.php:686 +msgid "Clone this profile" +msgstr "Dit profiel klonen" + +#: mod/profiles.php:687 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" + +#: mod/profiles.php:688 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:689 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:691 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:692 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:693 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:696 +msgid "Profile Name:" +msgstr "Profiel Naam:" + +#: mod/profiles.php:697 +msgid "Your Full Name:" +msgstr "Je volledige naam:" + +#: mod/profiles.php:698 +msgid "Title/Description:" +msgstr "Titel/Beschrijving:" + +#: mod/profiles.php:699 +msgid "Your Gender:" +msgstr "Je Geslacht:" + +#: mod/profiles.php:700 +msgid "Birthday :" +msgstr "" + +#: mod/profiles.php:701 +msgid "Street Address:" +msgstr "Postadres:" + +#: mod/profiles.php:702 +msgid "Locality/City:" +msgstr "Gemeente/Stad:" + +#: mod/profiles.php:703 +msgid "Postal/Zip Code:" +msgstr "Postcode:" + +#: mod/profiles.php:704 +msgid "Country:" +msgstr "Land:" + +#: mod/profiles.php:705 +msgid "Region/State:" +msgstr "Regio/Staat:" + +#: mod/profiles.php:706 +msgid " Marital Status:" +msgstr " Echtelijke Staat:" + +#: mod/profiles.php:707 +msgid "Who: (if applicable)" +msgstr "Wie: (indien toepasbaar)" + +#: mod/profiles.php:708 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl" + +#: mod/profiles.php:709 +msgid "Since [date]:" +msgstr "Sinds [datum]:" + +#: mod/profiles.php:710 include/identity.php:569 +msgid "Sexual Preference:" +msgstr "Seksuele Voorkeur:" + +#: mod/profiles.php:711 +msgid "Homepage URL:" +msgstr "Adres tijdlijn:" + +#: mod/profiles.php:712 include/identity.php:573 +msgid "Hometown:" +msgstr "Woonplaats:" + +#: mod/profiles.php:713 include/identity.php:577 +msgid "Political Views:" +msgstr "Politieke standpunten:" + +#: mod/profiles.php:714 +msgid "Religious Views:" +msgstr "Geloof:" + +#: mod/profiles.php:715 +msgid "Public Keywords:" +msgstr "Publieke Sleutelwoorden:" + +#: mod/profiles.php:716 +msgid "Private Keywords:" +msgstr "Privé Sleutelwoorden:" + +#: mod/profiles.php:717 include/identity.php:585 +msgid "Likes:" +msgstr "Houdt van:" + +#: mod/profiles.php:718 include/identity.php:587 +msgid "Dislikes:" +msgstr "Houdt niet van:" + +#: mod/profiles.php:719 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: vissen fotografie software" + +#: mod/profiles.php:720 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" + +#: mod/profiles.php:721 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" + +#: mod/profiles.php:722 +msgid "Tell us about yourself..." +msgstr "Vertel iets over jezelf..." + +#: mod/profiles.php:723 +msgid "Hobbies/Interests" +msgstr "Hobby's/Interesses" + +#: mod/profiles.php:724 +msgid "Contact information and Social Networks" +msgstr "Contactinformatie en sociale netwerken" + +#: mod/profiles.php:725 +msgid "Musical interests" +msgstr "Muzikale interesses" + +#: mod/profiles.php:726 +msgid "Books, literature" +msgstr "Boeken, literatuur" + +#: mod/profiles.php:727 +msgid "Television" +msgstr "Televisie" + +#: mod/profiles.php:728 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultuur/ontspanning" + +#: mod/profiles.php:729 +msgid "Love/romance" +msgstr "Liefde/romance" + +#: mod/profiles.php:730 +msgid "Work/employment" +msgstr "Werk" + +#: mod/profiles.php:731 +msgid "School/education" +msgstr "School/opleiding" + +#: mod/profiles.php:736 msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones." +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "Dit is jouw publiek profiel.
    Het kan zichtbaar zijn voor iedereen op het internet." -#: ../../mod/localtime.php:30 +#: mod/profiles.php:799 +msgid "Edit/Manage Profiles" +msgstr "Wijzig/Beheer Profielen" + +#: mod/profiles.php:800 include/identity.php:231 include/identity.php:257 +msgid "Change profile photo" +msgstr "Profiel foto wijzigen" + +#: mod/profiles.php:801 include/identity.php:232 +msgid "Create New Profile" +msgstr "Maak nieuw profiel" + +#: mod/profiles.php:812 include/identity.php:242 +msgid "Profile Image" +msgstr "Profiel afbeelding" + +#: mod/profiles.php:814 include/identity.php:245 +msgid "visible to everybody" +msgstr "zichtbaar voor iedereen" + +#: mod/profiles.php:815 include/identity.php:246 +msgid "Edit visibility" +msgstr "Pas zichtbaarheid aan" + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificatie." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "" + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Zichtbaar voor" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Alle contacten (met veilige profieltoegang)" + +#: mod/search.php:180 #, php-format -msgid "UTC time: %s" -msgstr "UTC tijd: %s" +msgid "Items tagged with: %s" +msgstr "" -#: ../../mod/localtime.php:33 +#: mod/search.php:182 #, php-format -msgid "Current timezone: %s" -msgstr "Huidige Tijdzone: %s" +msgid "Search results for: %s" +msgstr "" -#: ../../mod/localtime.php:36 +#: mod/share.php:38 +msgid "link" +msgstr "link" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Wil je echt dit voorstel verwijderen?" + +#: mod/suggest.php:76 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen." + +#: mod/suggest.php:94 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" + +#: mod/videos.php:113 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:118 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:197 +msgid "No videos selected" +msgstr "Geen video's geselecteerd" + +#: mod/videos.php:373 include/text.php:1429 +msgid "View Video" +msgstr "Bekijk Video" + +#: mod/videos.php:389 +msgid "Recent Videos" +msgstr "Recente video's" + +#: mod/videos.php:391 +msgid "Upload New Videos" +msgstr "Nieuwe video's uploaden" + +#: mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: mod/wall_attach.php:81 #, php-format -msgid "Converted localtime: %s" -msgstr "Omgerekende lokale tijd: %s" +msgid "File exceeds size limit of %s" +msgstr "" -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Selecteer je tijdzone:" +#: mod/wall_attach.php:122 mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Uploaden van bestand mislukt." + +#: mod/register.php:92 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." + +#: mod/register.php:97 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "" + +#: mod/register.php:107 +msgid "Your registration can not be processed." +msgstr "Je registratie kan niet verwerkt worden." + +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw registratie wacht op goedkeuring van de beheerder." + +#: mod/register.php:216 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken." + +#: mod/register.php:217 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in." + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "Je OpenID (optioneel):" + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "Je profiel in de ledengids opnemen?" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "Je uitnodigingsid:" + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Je volledige naam (bijv. Jan Jansens):" + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "Je email adres:" + +#: mod/register.php:271 mod/settings.php:1144 +msgid "New Password:" +msgstr "Nieuw Wachtwoord:" + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:272 mod/settings.php:1145 +msgid "Confirm:" +msgstr "Bevestig:" + +#: mod/register.php:273 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@$sitename' zijn." + +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "Kies een bijnaam:" + +#: mod/register.php:277 include/nav.php:109 boot.php:1238 +msgid "Register" +msgstr "Registreer" + +#: mod/register.php:284 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/settings.php:46 +msgid "Additional features" +msgstr "Extra functies" + +#: mod/settings.php:51 +msgid "Display" +msgstr "Weergave" + +#: mod/settings.php:57 mod/settings.php:805 +msgid "Social Networks" +msgstr "Sociale netwerken" + +#: mod/settings.php:67 include/nav.php:171 +msgid "Delegations" +msgstr "" + +#: mod/settings.php:72 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: mod/settings.php:82 +msgid "Remove account" +msgstr "Account verwijderen" + +#: mod/settings.php:134 +msgid "Missing some important data!" +msgstr "Een belangrijk gegeven ontbreekt!" + +#: mod/settings.php:245 +msgid "Failed to connect with email account using the settings provided." +msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen." + +#: mod/settings.php:250 +msgid "Email settings updated." +msgstr "E-mail instellingen bijgewerkt.." + +#: mod/settings.php:265 +msgid "Features updated" +msgstr "Functies bijgewerkt" + +#: mod/settings.php:328 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:342 include/user.php:39 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." + +#: mod/settings.php:347 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd." + +#: mod/settings.php:355 +msgid "Wrong password." +msgstr "Verkeerd wachtwoord." + +#: mod/settings.php:366 +msgid "Password changed." +msgstr "Wachtwoord gewijzigd." + +#: mod/settings.php:368 +msgid "Password update failed. Please try again." +msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." + +#: mod/settings.php:435 +msgid " Please use a shorter name." +msgstr "Gebruik een kortere naam." + +#: mod/settings.php:437 +msgid " Name too short." +msgstr "Naam te kort." + +#: mod/settings.php:446 +msgid "Wrong Password" +msgstr "Verkeerd wachtwoord" + +#: mod/settings.php:451 +msgid " Not valid email." +msgstr "Geen geldig e-mailadres." + +#: mod/settings.php:457 +msgid " Cannot change to that email." +msgstr "Kan niet veranderen naar die e-mail." + +#: mod/settings.php:513 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt." + +#: mod/settings.php:517 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep." + +#: mod/settings.php:547 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." + +#: mod/settings.php:620 mod/settings.php:646 mod/settings.php:682 +msgid "Add application" +msgstr "Toepassing toevoegen" + +#: mod/settings.php:624 mod/settings.php:650 +msgid "Consumer Key" +msgstr "Gebruikerssleutel" + +#: mod/settings.php:625 mod/settings.php:651 +msgid "Consumer Secret" +msgstr "Gebruikersgeheim" + +#: mod/settings.php:626 mod/settings.php:652 +msgid "Redirect" +msgstr "Doorverwijzing" + +#: mod/settings.php:627 mod/settings.php:653 +msgid "Icon url" +msgstr "URL pictogram" + +#: mod/settings.php:638 +msgid "You can't edit this application." +msgstr "Je kunt deze toepassing niet wijzigen." + +#: mod/settings.php:681 +msgid "Connected Apps" +msgstr "Verbonden applicaties" + +#: mod/settings.php:685 +msgid "Client key starts with" +msgstr "" + +#: mod/settings.php:686 +msgid "No name" +msgstr "Geen naam" + +#: mod/settings.php:687 +msgid "Remove authorization" +msgstr "Verwijder authorisatie" + +#: mod/settings.php:699 +msgid "No Plugin settings configured" +msgstr "" + +#: mod/settings.php:707 +msgid "Plugin Settings" +msgstr "Plugin Instellingen" + +#: mod/settings.php:721 +msgid "Off" +msgstr "Uit" + +#: mod/settings.php:721 +msgid "On" +msgstr "Aan" + +#: mod/settings.php:729 +msgid "Additional Features" +msgstr "Extra functies" + +#: mod/settings.php:739 mod/settings.php:743 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:749 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:751 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:761 mod/settings.php:762 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s" + +#: mod/settings.php:761 mod/settings.php:762 +msgid "enabled" +msgstr "ingeschakeld" + +#: mod/settings.php:761 mod/settings.php:762 +msgid "disabled" +msgstr "uitgeschakeld" + +#: mod/settings.php:762 +msgid "StatusNet" +msgstr "StatusNet" + +#: mod/settings.php:798 +msgid "Email access is disabled on this site." +msgstr "E-mailtoegang is op deze website uitgeschakeld." + +#: mod/settings.php:810 +msgid "Email/Mailbox Setup" +msgstr "E-mail Instellen" + +#: mod/settings.php:811 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken." + +#: mod/settings.php:812 +msgid "Last successful email check:" +msgstr "Laatste succesvolle e-mail controle:" + +#: mod/settings.php:814 +msgid "IMAP server name:" +msgstr "IMAP server naam:" + +#: mod/settings.php:815 +msgid "IMAP port:" +msgstr "IMAP poort:" + +#: mod/settings.php:816 +msgid "Security:" +msgstr "Beveiliging:" + +#: mod/settings.php:816 mod/settings.php:821 +msgid "None" +msgstr "Geen" + +#: mod/settings.php:817 +msgid "Email login name:" +msgstr "E-mail login naam:" + +#: mod/settings.php:818 +msgid "Email password:" +msgstr "E-mail wachtwoord:" + +#: mod/settings.php:819 +msgid "Reply-to address:" +msgstr "Antwoord adres:" + +#: mod/settings.php:820 +msgid "Send public posts to all email contacts:" +msgstr "Openbare posts naar alle e-mail contacten versturen:" + +#: mod/settings.php:821 +msgid "Action after import:" +msgstr "Actie na importeren:" + +#: mod/settings.php:821 +msgid "Mark as seen" +msgstr "Als 'gelezen' markeren" + +#: mod/settings.php:821 +msgid "Move to folder" +msgstr "Naar map verplaatsen" + +#: mod/settings.php:822 +msgid "Move to folder:" +msgstr "Verplaatsen naar map:" + +#: mod/settings.php:903 +msgid "Display Settings" +msgstr "Scherminstellingen" + +#: mod/settings.php:909 mod/settings.php:925 +msgid "Display Theme:" +msgstr "Schermthema:" + +#: mod/settings.php:910 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" + +#: mod/settings.php:911 +msgid "Update browser every xx seconds" +msgstr "Browser elke xx seconden verversen" + +#: mod/settings.php:911 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 seconden, geen maximum" + +#: mod/settings.php:912 +msgid "Number of items to display per page:" +msgstr "Aantal items te tonen per pagina:" + +#: mod/settings.php:912 mod/settings.php:913 +msgid "Maximum of 100 items" +msgstr "Maximum 100 items" + +#: mod/settings.php:913 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:" + +#: mod/settings.php:914 +msgid "Don't show emoticons" +msgstr "Emoticons niet tonen" + +#: mod/settings.php:915 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:916 +msgid "Infinite scroll" +msgstr "Oneindig scrollen" + +#: mod/settings.php:917 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:995 +msgid "User Types" +msgstr "Gebruikerstypes" + +#: mod/settings.php:996 +msgid "Community Types" +msgstr "Forum/groepstypes" + +#: mod/settings.php:997 +msgid "Normal Account Page" +msgstr "Normale accountpagina" + +#: mod/settings.php:998 +msgid "This account is a normal personal profile" +msgstr "Deze account is een normaal persoonlijk profiel" + +#: mod/settings.php:1001 +msgid "Soapbox Page" +msgstr "Zeepkist-pagina" + +#: mod/settings.php:1002 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen." + +#: mod/settings.php:1005 +msgid "Community Forum/Celebrity Account" +msgstr "Forum/groeps- of beroemdheid-account" + +#: mod/settings.php:1006 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven." + +#: mod/settings.php:1009 +msgid "Automatic Friend Page" +msgstr "Automatisch Vriendschapspagina" + +#: mod/settings.php:1010 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden." + +#: mod/settings.php:1013 +msgid "Private Forum [Experimental]" +msgstr "Privé-forum [experimenteel]" + +#: mod/settings.php:1014 +msgid "Private forum - approved members only" +msgstr "Privé-forum - enkel voor goedgekeurde leden" + +#: mod/settings.php:1026 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1026 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account." + +#: mod/settings.php:1036 +msgid "Publish your default profile in your local site directory?" +msgstr "Je standaardprofiel in je lokale gids publiceren?" + +#: mod/settings.php:1042 +msgid "Publish your default profile in the global social directory?" +msgstr "Je standaardprofiel in de globale sociale gids publiceren?" + +#: mod/settings.php:1050 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?" + +#: mod/settings.php:1054 include/acl_selectors.php:330 +msgid "Hide your profile details from unknown viewers?" +msgstr "Je profieldetails verbergen voor onbekende bezoekers?" + +#: mod/settings.php:1054 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1059 +msgid "Allow friends to post to your profile page?" +msgstr "Vrienden toestaan om op jou profielpagina te posten?" + +#: mod/settings.php:1065 +msgid "Allow friends to tag your posts?" +msgstr "Sta vrienden toe om jouw berichten te labelen?" + +#: mod/settings.php:1071 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?" + +#: mod/settings.php:1077 +msgid "Permit unknown people to send you private mail?" +msgstr "Mogen onbekende personen jou privé berichten sturen?" + +#: mod/settings.php:1085 +msgid "Profile is not published." +msgstr "Profiel is niet gepubliceerd." + +#: mod/settings.php:1093 +msgid "Your Identity Address is" +msgstr "Jouw Identiteitsadres is" + +#: mod/settings.php:1102 +msgid "Automatically expire posts after this many days:" +msgstr "Laat berichten automatisch vervallen na zo veel dagen:" + +#: mod/settings.php:1102 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd." + +#: mod/settings.php:1103 +msgid "Advanced expiration settings" +msgstr "Geavanceerde instellingen voor vervallen" + +#: mod/settings.php:1104 +msgid "Advanced Expiration" +msgstr "Geavanceerd Verval:" + +#: mod/settings.php:1105 +msgid "Expire posts:" +msgstr "Laat berichten vervallen:" + +#: mod/settings.php:1106 +msgid "Expire personal notes:" +msgstr "Laat persoonlijke aantekeningen verlopen:" + +#: mod/settings.php:1107 +msgid "Expire starred posts:" +msgstr "Laat berichten met ster verlopen" + +#: mod/settings.php:1108 +msgid "Expire photos:" +msgstr "Laat foto's vervallen:" + +#: mod/settings.php:1109 +msgid "Only expire posts by others:" +msgstr "Laat alleen berichten door anderen vervallen:" + +#: mod/settings.php:1135 +msgid "Account Settings" +msgstr "Account Instellingen" + +#: mod/settings.php:1143 +msgid "Password Settings" +msgstr "Wachtwoord Instellingen" + +#: mod/settings.php:1145 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" + +#: mod/settings.php:1146 +msgid "Current Password:" +msgstr "Huidig wachtwoord:" + +#: mod/settings.php:1146 mod/settings.php:1147 +msgid "Your current password to confirm the changes" +msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" + +#: mod/settings.php:1147 +msgid "Password:" +msgstr "Wachtwoord:" + +#: mod/settings.php:1151 +msgid "Basic Settings" +msgstr "Basis Instellingen" + +#: mod/settings.php:1152 include/identity.php:538 +msgid "Full Name:" +msgstr "Volledige Naam:" + +#: mod/settings.php:1153 +msgid "Email Address:" +msgstr "E-mailadres:" + +#: mod/settings.php:1154 +msgid "Your Timezone:" +msgstr "Je Tijdzone:" + +#: mod/settings.php:1155 +msgid "Default Post Location:" +msgstr "Standaard locatie:" + +#: mod/settings.php:1156 +msgid "Use Browser Location:" +msgstr "Gebruik Webbrowser Locatie:" + +#: mod/settings.php:1159 +msgid "Security and Privacy Settings" +msgstr "Instellingen voor Beveiliging en Privacy" + +#: mod/settings.php:1161 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal vriendschapsverzoeken per dag:" + +#: mod/settings.php:1161 mod/settings.php:1191 +msgid "(to prevent spam abuse)" +msgstr "(om spam misbruik te voorkomen)" + +#: mod/settings.php:1162 +msgid "Default Post Permissions" +msgstr "Standaard rechten voor nieuwe berichten" + +#: mod/settings.php:1163 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + +#: mod/settings.php:1174 +msgid "Default Private Post" +msgstr "Standaard Privé Post" + +#: mod/settings.php:1175 +msgid "Default Public Post" +msgstr "Standaard Publieke Post" + +#: mod/settings.php:1179 +msgid "Default Permissions for New Posts" +msgstr "Standaard rechten voor nieuwe berichten" + +#: mod/settings.php:1191 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" + +#: mod/settings.php:1194 +msgid "Notification Settings" +msgstr "Notificatie Instellingen" + +#: mod/settings.php:1195 +msgid "By default post a status message when:" +msgstr "Post automatisch een bericht op je tijdlijn wanneer:" + +#: mod/settings.php:1196 +msgid "accepting a friend request" +msgstr "Een vriendschapsverzoek accepteren" + +#: mod/settings.php:1197 +msgid "joining a forum/community" +msgstr "Lid worden van een groep/forum" + +#: mod/settings.php:1198 +msgid "making an interesting profile change" +msgstr "Een interessante verandering aan je profiel" + +#: mod/settings.php:1199 +msgid "Send a notification email when:" +msgstr "Stuur een notificatie e-mail wanneer:" + +#: mod/settings.php:1200 +msgid "You receive an introduction" +msgstr "Je ontvangt een vriendschaps- of connectieverzoek" + +#: mod/settings.php:1201 +msgid "Your introductions are confirmed" +msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" + +#: mod/settings.php:1202 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op je tijdlijn schrijft" + +#: mod/settings.php:1203 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" + +#: mod/settings.php:1204 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" + +#: mod/settings.php:1205 +msgid "You receive a friend suggestion" +msgstr "Je een suggestie voor een vriendschap ontvangt" + +#: mod/settings.php:1206 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" + +#: mod/settings.php:1207 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je in een bericht bent aangestoten/gepord/etc." + +#: mod/settings.php:1209 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1209 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1211 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1213 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1215 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: mod/settings.php:1216 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: mod/settings.php:1219 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1220 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: mod/settings.php:1221 +msgid "Resend relocate message to contacts" +msgstr "" + +#: mod/bookmarklet.php:12 include/nav.php:92 boot.php:1263 +msgid "Login" +msgstr "Login" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Dit is Friendica, versie" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "draaiend op web-adres" + +#: mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Bezoek Friendica.com om meer te leren over het Friendica project." + +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Bug rapporten en problemen: bezoek" + +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com" + +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Geïnstalleerde plugins/toepassingen:" + +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Geen plugins of toepassingen geïnstalleerd" + +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Nieuw Contact toevoegen" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Voeg een webadres of -locatie in:" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara" + +#: include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d uitnodiging beschikbaar" +msgstr[1] "%d uitnodigingen beschikbaar" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Zoek mensen" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" + +#: include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Verbind/Volg" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeelden: Jan Peeters, Vissen" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Willekeurig Profiel" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "Netwerken" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Alle netwerken" + +#: include/contact_widgets.php:104 include/features.php:60 +msgid "Saved Folders" +msgstr "Bewaarde Mappen" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "Alles" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "Categorieën" + +#: include/plugin.php:455 include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "" + +#: include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: include/dba_pdo.php:72 include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" + +#: include/auth.php:38 +msgid "Logged out." +msgstr "Uitgelogd." + +#: include/auth.php:128 include/user.php:75 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: include/auth.php:128 include/user.php:75 +msgid "The error message was:" +msgstr "De foutboodschap was:" + +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "" + +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "" + +#: include/uimport.php:120 include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Gebruiker '%s' bestaat al op deze server!" + +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Fout bij het aanmaken van de gebruiker" + +#: include/uimport.php:171 +msgid "User profile creation error" +msgstr "Fout bij het aanmaken van het gebruikersprofiel" + +#: include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contact werd niet geïmporteerd" +msgstr[1] "%d contacten werden niet geïmporteerd" + +#: include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" + +#: include/message.php:15 include/message.php:172 +msgid "[no subject]" +msgstr "[geen onderwerp]" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Onbekend | Niet " + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Onmiddellijk blokkeren" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Onbetrouwbaar, spammer, zelfpromotor" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Bekend, maar geen mening" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, waarschijnlijk onschadelijk" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Gerenommeerd, heeft mijn vertrouwen" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "wekelijks" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "maandelijks" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "Linkedln" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "Myspace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora-connector" + +#: include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "" + +#: include/features.php:23 +msgid "General Features" +msgstr "Algemene functies" + +#: include/features.php:25 +msgid "Multiple Profiles" +msgstr "Meerdere profielen" + +#: include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Mogelijkheid om meerdere profielen aan te maken" + +#: include/features.php:30 +msgid "Post Composition Features" +msgstr "Functies voor het opstellen van berichten" + +#: include/features.php:31 +msgid "Richtext Editor" +msgstr "Tekstverwerker met opmaak" + +#: include/features.php:31 +msgid "Enable richtext editor" +msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties" + +#: include/features.php:32 +msgid "Post Preview" +msgstr "Voorvertoning bericht" + +#: include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: include/features.php:33 +msgid "Auto-mention Forums" +msgstr "" + +#: include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "" + +#: include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Zijbalkwidgets op netwerkpagina" + +#: include/features.php:39 +msgid "Search by Date" +msgstr "Zoeken op datum" + +#: include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik" + +#: include/features.php:40 +msgid "Group Filter" +msgstr "Groepsfilter" + +#: include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen" + +#: include/features.php:41 +msgid "Network Filter" +msgstr "Netwerkfilter" + +#: include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken" + +#: include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" + +#: include/features.php:47 +msgid "Network Tabs" +msgstr "Netwerktabs" + +#: include/features.php:48 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" + +#: include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" + +#: include/features.php:49 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" + +#: include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)" + +#: include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "" + +#: include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" + +#: include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Bericht-/reactiehulpmiddelen" + +#: include/features.php:56 +msgid "Multiple Deletion" +msgstr "Meervoudige verwijdering" + +#: include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer" + +#: include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Bewerk verzonden berichten" + +#: include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Bewerk en corrigeer berichten en reacties na verzending" + +#: include/features.php:58 +msgid "Tagging" +msgstr "Labelen" + +#: include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Mogelijkheid om bestaande berichten te labelen" + +#: include/features.php:59 +msgid "Post Categories" +msgstr "Categorieën berichten" + +#: include/features.php:59 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" + +#: include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen te bewaren" + +#: include/features.php:61 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" + +#: include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden" + +#: include/features.php:62 +msgid "Star Posts" +msgstr "Geef berichten een ster" + +#: include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: include/features.php:63 +msgid "Mute Post Notifications" +msgstr "" + +#: include/features.php:63 +msgid "Ability to mute notifications for a thread" +msgstr "" + +#: include/profile_selectors.php:6 +msgid "Male" +msgstr "Man" + +#: include/profile_selectors.php:6 +msgid "Female" +msgstr "Vrouw" + +#: include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Momenteel mannelijk" + +#: include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Momenteel vrouwelijk" + +#: include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Meestal mannelijk" + +#: include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Meestal vrouwelijk" + +#: include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Interseksueel" + +#: include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transseksueel" + +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodiet" + +#: include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Genderneutraal" + +#: include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Niet-specifiek" + +#: include/profile_selectors.php:6 +msgid "Other" +msgstr "Anders" + +#: include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Onbeslist" + +#: include/profile_selectors.php:23 +msgid "Males" +msgstr "Mannen" + +#: include/profile_selectors.php:23 +msgid "Females" +msgstr "Vrouwen" + +#: include/profile_selectors.php:23 +msgid "Gay" +msgstr "Homo" + +#: include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbienne" + +#: include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Geen voorkeur" + +#: include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Biseksueel" + +#: include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autoseksueel" + +#: include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Onthouder" + +#: include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Maagd" + +#: include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Afwijkend" + +#: include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetisj" + +#: include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Veel" + +#: include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Niet seksueel" + +#: include/profile_selectors.php:42 +msgid "Single" +msgstr "Alleenstaand" + +#: include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Eenzaam" + +#: include/profile_selectors.php:42 +msgid "Available" +msgstr "Beschikbaar" + +#: include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Onbeschikbaar" + +#: include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Verliefd" + +#: include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Smoorverliefd" + +#: include/profile_selectors.php:42 +msgid "Dating" +msgstr "Aan het daten" + +#: include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Ontrouw" + +#: include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Seksverslaafd" + +#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 +msgid "Friends" +msgstr "Vrienden" + +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Vriendschap plus" + +#: include/profile_selectors.php:42 +msgid "Casual" +msgstr "Ongebonden/vluchtig" + +#: include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Verloofd" + +#: include/profile_selectors.php:42 +msgid "Married" +msgstr "Getrouwd" + +#: include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Denkbeeldig getrouwd" + +#: include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partners" + +#: include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Samenwonend" + +#: include/profile_selectors.php:42 +msgid "Common law" +msgstr "getrouwd voor-de-wet" + +#: include/profile_selectors.php:42 +msgid "Happy" +msgstr "Blij" + +#: include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Niet op zoek" + +#: include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Bedrogen" + +#: include/profile_selectors.php:42 +msgid "Separated" +msgstr "Uit elkaar" + +#: include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Onstabiel" + +#: include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Gescheiden" + +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Denkbeeldig gescheiden" + +#: include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Weduwnaar/weduwe" + +#: include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Onzeker" + +#: include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Het is gecompliceerd" + +#: include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Kan me niet schelen" + +#: include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Vraag me" + +#: include/Contact.php:119 +msgid "stopped following" +msgstr "" + +#: include/Contact.php:232 include/conversation.php:881 +msgid "Poke" +msgstr "Aanstoten" + +#: include/Contact.php:233 include/conversation.php:875 +msgid "View Status" +msgstr "Bekijk status" + +#: include/Contact.php:234 include/conversation.php:876 +msgid "View Profile" +msgstr "Bekijk profiel" + +#: include/Contact.php:235 include/conversation.php:877 +msgid "View Photos" +msgstr "Bekijk foto's" + +#: include/Contact.php:236 include/Contact.php:259 +#: include/conversation.php:878 +msgid "Network Posts" +msgstr "Netwerkberichten" + +#: include/Contact.php:237 include/Contact.php:259 +#: include/conversation.php:879 +msgid "Edit Contact" +msgstr "Bewerk contact" + +#: include/Contact.php:238 +msgid "Drop Contact" +msgstr "Verwijder contact" + +#: include/Contact.php:239 include/Contact.php:259 +#: include/conversation.php:880 +msgid "Send PM" +msgstr "Stuur een privébericht" + +#: include/Scrape.php:608 +msgid " on Last.fm" +msgstr " op Last.fm" + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "Verzenden per e-mail" + +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: include/acl_selectors.php:335 +msgid "Visible to everybody" +msgstr "Zichtbaar voor iedereen" + +#: include/api.php:310 include/api.php:321 include/api.php:430 +#: include/api.php:1133 include/api.php:1135 +msgid "User not found." +msgstr "Gebruiker niet gevonden" + +#: include/api.php:784 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:803 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:822 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1342 +msgid "There is no status with this id." +msgstr "Er is geen status met dit kenmerk" + +#: include/api.php:1416 +msgid "There is no conversation with this id." +msgstr "" + +#: include/api.php:1686 +msgid "Invalid request." +msgstr "" + +#: include/api.php:1697 +msgid "Invalid item." +msgstr "" + +#: include/api.php:1707 +msgid "Invalid action. " +msgstr "" + +#: include/api.php:1715 +msgid "DB error" +msgstr "" + +#: include/bb2diaspora.php:145 include/event.php:22 +msgid "Starts:" +msgstr "Begint:" + +#: include/bb2diaspora.php:153 include/event.php:32 +msgid "Finishes:" +msgstr "Eindigt:" + +#: include/bbcode.php:451 include/bbcode.php:1101 include/bbcode.php:1102 +msgid "Image/photo" +msgstr "Afbeelding/foto" + +#: include/bbcode.php:549 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: include/bbcode.php:583 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "" + +#: include/bbcode.php:1065 include/bbcode.php:1085 +msgid "$1 wrote:" +msgstr "$1 schreef:" + +#: include/bbcode.php:1110 include/bbcode.php:1111 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stootte %2$s aan" + +#: include/conversation.php:290 +msgid "post/item" +msgstr "bericht/item" + +#: include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s markeerde %2$s's %3$s als favoriet" + +#: include/conversation.php:771 +msgid "remove" +msgstr "verwijder" + +#: include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Geselecteerde items verwijderen" + +#: include/conversation.php:874 +msgid "Follow Thread" +msgstr "Conversatie volgen" + +#: include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "%s vindt dit leuk." + +#: include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." + +#: include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d mensen vinden dit leuk" + +#: include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d people vinden dit niet leuk" + +#: include/conversation.php:965 +msgid "and" +msgstr "en" + +#: include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr ", en %d andere mensen" + +#: include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "%s vindt dit leuk." + +#: include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "%s vindt dit niet leuk." + +#: include/conversation.php:1000 include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Zichtbaar voor iedereen" + +#: include/conversation.php:1002 include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Vul een videolink/URL in:" + +#: include/conversation.php:1003 include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Vul een audiolink/URL in:" + +#: include/conversation.php:1004 include/conversation.php:1022 +msgid "Tag term:" +msgstr "Label:" + +#: include/conversation.php:1006 include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Waar ben je nu?" + +#: include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Item(s) verwijderen?" + +#: include/conversation.php:1076 +msgid "permissions" +msgstr "rechten" + +#: include/conversation.php:1099 +msgid "Post to Groups" +msgstr "Verzenden naar Groepen" + +#: include/conversation.php:1100 +msgid "Post to Contacts" +msgstr "Verzenden naar Contacten" + +#: include/conversation.php:1101 +msgid "Private post" +msgstr "Privé verzending" + +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Diversen" + +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: include/datetime.php:256 +msgid "never" +msgstr "nooit" + +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" + +#: include/datetime.php:272 +msgid "year" +msgstr "jaar" + +#: include/datetime.php:272 +msgid "years" +msgstr "jaren" + +#: include/datetime.php:273 +msgid "month" +msgstr "maand" + +#: include/datetime.php:273 +msgid "months" +msgstr "maanden" + +#: include/datetime.php:274 +msgid "week" +msgstr "week" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "weken" + +#: include/datetime.php:275 +msgid "day" +msgstr "dag" + +#: include/datetime.php:275 +msgid "days" +msgstr "dagen" + +#: include/datetime.php:276 +msgid "hour" +msgstr "uur" + +#: include/datetime.php:276 +msgid "hours" +msgstr "uren" + +#: include/datetime.php:277 +msgid "minute" +msgstr "minuut" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "minuten" + +#: include/datetime.php:278 +msgid "second" +msgstr "seconde" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "secondes" + +#: include/datetime.php:287 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" + +#: include/datetime.php:459 include/items.php:2431 +#, php-format +msgid "%s's birthday" +msgstr "%s's verjaardag" + +#: include/datetime.php:460 include/items.php:2432 +#, php-format +msgid "Happy Birthday %s" +msgstr "Gefeliciteerd %s" + +#: include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "" + +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "" + +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." +msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld." + +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." +msgstr "" + +#: include/delivery.php:456 include/notifier.php:825 +msgid "(no subject)" +msgstr "(geen onderwerp)" + +#: include/delivery.php:467 include/enotify.php:33 include/notifier.php:835 +msgid "noreply" +msgstr "geen reactie" + +#: include/diaspora.php:705 +msgid "Sharing notification from Diaspora network" +msgstr "" + +#: include/diaspora.php:2539 +msgid "Attachments:" +msgstr "Bijlagen:" + +#: include/enotify.php:18 +msgid "Friendica Notification" +msgstr "Friendica Notificatie" + +#: include/enotify.php:21 +msgid "Thank You," +msgstr "Bedankt" + +#: include/enotify.php:23 +#, php-format +msgid "%s Administrator" +msgstr "%s Beheerder" + +#: include/enotify.php:64 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:78 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s" + +#: include/enotify.php:80 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s sent you a new private message at %2$s." + +#: include/enotify.php:81 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s stuurde jou %2$s." + +#: include/enotify.php:81 +msgid "a private message" +msgstr "een prive bericht" + +#: include/enotify.php:82 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden." + +#: include/enotify.php:134 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]" + +#: include/enotify.php:141 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]" + +#: include/enotify.php:149 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]" + +#: include/enotify.php:159 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: include/enotify.php:160 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt." + +#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191 +#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bezoek %s om de conversatie te bekijken en/of te beantwoorden." + +#: include/enotify.php:170 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "" + +#: include/enotify.php:172 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: include/enotify.php:174 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notificatie] %s heeft jou genoemd" + +#: include/enotify.php:186 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s heeft jou in %2$s genoemd" + +#: include/enotify.php:187 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]." + +#: include/enotify.php:198 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: include/enotify.php:199 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: include/enotify.php:200 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: include/enotify.php:212 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s heeft jou aangestoten" + +#: include/enotify.php:213 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s heeft jou aangestoten op %2$s" + +#: include/enotify.php:214 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: include/enotify.php:229 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld" + +#: include/enotify.php:230 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s heeft jouw bericht gelabeld in %2$s" + +#: include/enotify.php:231 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]" + +#: include/enotify.php:242 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen" + +#: include/enotify.php:243 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s" + +#: include/enotify.php:244 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s." + +#: include/enotify.php:247 include/enotify.php:289 +#, php-format +msgid "You may visit their profile at %s" +msgstr "U kunt hun profiel bezoeken op %s" + +#: include/enotify.php:249 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Bezoek %s om het verzoek goed of af te keuren." + +#: include/enotify.php:257 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "" + +#: include/enotify.php:258 include/enotify.php:259 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: include/enotify.php:265 +msgid "[Friendica:Notify] You have a new follower" +msgstr "" + +#: include/enotify.php:266 include/enotify.php:267 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: include/enotify.php:280 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "" + +#: include/enotify.php:281 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:282 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" + +#: include/enotify.php:287 +msgid "Name:" +msgstr "Naam:" + +#: include/enotify.php:288 +msgid "Photo:" +msgstr "Foto: " + +#: include/enotify.php:291 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: include/enotify.php:299 include/enotify.php:312 +msgid "[Friendica:Notify] Connection accepted" +msgstr "" + +#: include/enotify.php:300 include/enotify.php:313 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "" + +#: include/enotify.php:301 include/enotify.php:314 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" + +#: include/enotify.php:304 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and email\n" +"\twithout restriction." +msgstr "" + +#: include/enotify.php:307 include/enotify.php:321 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:317 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "" + +#: include/enotify.php:319 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "" + +#: include/enotify.php:332 +msgid "[Friendica System:Notify] registration request" +msgstr "" + +#: include/enotify.php:333 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:334 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: include/enotify.php:337 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "" + +#: include/enotify.php:340 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "" + +#: include/follow.php:32 +msgid "Connect URL missing." +msgstr "" + +#: include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken." + +#: include/follow.php:60 include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." + +#: include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "" + +#: include/follow.php:82 +msgid "An author or name was not found." +msgstr "" + +#: include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "" + +#: include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact." + +#: include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." + +#: include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" + +#: include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "" + +#: include/follow.php:258 +msgid "following" +msgstr "volgend" + +#: include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. " + +#: include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "" + +#: include/group.php:226 +msgid "Everybody" +msgstr "Iedereen" + +#: include/group.php:249 +msgid "edit" +msgstr "verander" + +#: include/group.php:271 +msgid "Edit group" +msgstr "Verander groep" + +#: include/group.php:272 +msgid "Create a new group" +msgstr "Maak nieuwe groep" + +#: include/group.php:275 +msgid "Contacts not in any group" +msgstr "" + +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "Gevraagde account is niet beschikbaar." + +#: include/identity.php:121 include/identity.php:255 include/identity.php:607 +msgid "Edit profile" +msgstr "Bewerk profiel" + +#: include/identity.php:220 +msgid "Message" +msgstr "Bericht" + +#: include/identity.php:226 include/nav.php:176 +msgid "Profiles" +msgstr "Profielen" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "Beheer/wijzig profielen" + +#: include/identity.php:341 +msgid "Network:" +msgstr "" + +#: include/identity.php:373 include/identity.php:459 +msgid "g A l F d" +msgstr "G l j F" + +#: include/identity.php:374 include/identity.php:460 +msgid "F d" +msgstr "d F" + +#: include/identity.php:419 include/identity.php:506 +msgid "[today]" +msgstr "[vandaag]" + +#: include/identity.php:431 +msgid "Birthday Reminders" +msgstr "Verjaardagsherinneringen" + +#: include/identity.php:432 +msgid "Birthdays this week:" +msgstr "Verjaardagen deze week:" + +#: include/identity.php:493 +msgid "[No description]" +msgstr "[Geen omschrijving]" + +#: include/identity.php:517 +msgid "Event Reminders" +msgstr "Gebeurtenisherinneringen" + +#: include/identity.php:518 +msgid "Events this week:" +msgstr "Gebeurtenissen deze week:" + +#: include/identity.php:545 +msgid "j F, Y" +msgstr "F j Y" + +#: include/identity.php:546 +msgid "j F" +msgstr "F j" + +#: include/identity.php:553 +msgid "Birthday:" +msgstr "Verjaardag:" + +#: include/identity.php:557 +msgid "Age:" +msgstr "Leeftijd:" + +#: include/identity.php:566 +#, php-format +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" + +#: include/identity.php:575 +msgid "Tags:" +msgstr "Labels:" + +#: include/identity.php:579 +msgid "Religion:" +msgstr "Religie:" + +#: include/identity.php:583 +msgid "Hobbies/Interests:" +msgstr "Hobby:" + +#: include/identity.php:590 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" + +#: include/identity.php:592 +msgid "Musical interests:" +msgstr "Muzikale interesse " + +#: include/identity.php:594 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" + +#: include/identity.php:596 +msgid "Television:" +msgstr "Televisie" + +#: include/identity.php:598 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/cultuur/ontspanning:" + +#: include/identity.php:600 +msgid "Love/Romance:" +msgstr "Liefde/romance:" + +#: include/identity.php:602 +msgid "Work/employment:" +msgstr "Werk/beroep:" + +#: include/identity.php:604 +msgid "School/education:" +msgstr "School/opleiding:" + +#: include/identity.php:632 include/nav.php:76 +msgid "Status" +msgstr "Tijdlijn" + +#: include/identity.php:635 +msgid "Status Messages and Posts" +msgstr "Berichten op jouw tijdlijn" + +#: include/identity.php:642 +msgid "Profile Details" +msgstr "Profieldetails" + +#: include/identity.php:653 include/identity.php:656 include/nav.php:79 +msgid "Videos" +msgstr "Video's" + +#: include/identity.php:666 +msgid "Events and Calendar" +msgstr "Gebeurtenissen en kalender" + +#: include/identity.php:673 +msgid "Only You Can See This" +msgstr "Alleen jij kunt dit zien" + +#: include/items.php:4852 +msgid "Do you really want to delete this item?" +msgstr "Wil je echt dit item verwijderen?" + +#: include/items.php:5127 +msgid "Archives" +msgstr "Archieven" + +#: include/nav.php:73 boot.php:1262 +msgid "Logout" +msgstr "Uitloggen" + +#: include/nav.php:73 +msgid "End this session" +msgstr "Deze sessie beëindigen" + +#: include/nav.php:79 +msgid "Your videos" +msgstr "" + +#: include/nav.php:81 +msgid "Your personal notes" +msgstr "" + +#: include/nav.php:92 +msgid "Sign in" +msgstr "Inloggen" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Jouw tijdlijn" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Maak een accoount" + +#: include/nav.php:114 +msgid "Help and documentation" +msgstr "Hulp en documentatie" + +#: include/nav.php:117 +msgid "Apps" +msgstr "Apps" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Extra toepassingen, hulpmiddelen of spelletjes" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "Doorzoek de inhoud van de website" + +#: include/nav.php:129 +msgid "Conversations on this site" +msgstr "Conversaties op deze website" + +#: include/nav.php:131 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:133 +msgid "Directory" +msgstr "Gids" + +#: include/nav.php:133 +msgid "People directory" +msgstr "Personengids" + +#: include/nav.php:135 +msgid "Information" +msgstr "Informatie" + +#: include/nav.php:135 +msgid "Information about this friendica instance" +msgstr "" + +#: include/nav.php:145 +msgid "Conversations from your friends" +msgstr "Conversaties van je vrienden" + +#: include/nav.php:146 +msgid "Network Reset" +msgstr "Netwerkpagina opnieuw instellen" + +#: include/nav.php:146 +msgid "Load Network page with no filters" +msgstr "Laad de netwerkpagina zonder filters" + +#: include/nav.php:153 +msgid "Friend Requests" +msgstr "Vriendschapsverzoeken" + +#: include/nav.php:157 +msgid "See all notifications" +msgstr "Toon alle notificaties" + +#: include/nav.php:158 +msgid "Mark all system notifications seen" +msgstr "Alle systeemnotificaties als gelezen markeren" + +#: include/nav.php:162 +msgid "Private mail" +msgstr "Privéberichten" + +#: include/nav.php:163 +msgid "Inbox" +msgstr "Inbox" + +#: include/nav.php:164 +msgid "Outbox" +msgstr "Verzonden berichten" + +#: include/nav.php:168 +msgid "Manage" +msgstr "Beheren" + +#: include/nav.php:168 +msgid "Manage other pages" +msgstr "Andere pagina's beheren" + +#: include/nav.php:173 +msgid "Account settings" +msgstr "Account instellingen" + +#: include/nav.php:176 +msgid "Manage/Edit Profiles" +msgstr "Beheer/Wijzig Profielen" + +#: include/nav.php:178 +msgid "Manage/edit friends and contacts" +msgstr "Beheer/Wijzig vrienden en contacten" + +#: include/nav.php:185 +msgid "Site setup and configuration" +msgstr "Website opzetten en configureren" + +#: include/nav.php:189 +msgid "Navigation" +msgstr "Navigatie" + +#: include/nav.php:189 +msgid "Site map" +msgstr "Sitemap" + +#: include/network.php:959 +msgid "view full size" +msgstr "Volledig formaat" + +#: include/oembed.php:224 +msgid "Embedded content" +msgstr "Ingebedde inhoud" + +#: include/oembed.php:233 +msgid "Embedding disabled" +msgstr "Inbedden uitgeschakeld" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Welkom" + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Upload een profielfoto." + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Welkom terug " + +#: include/security.php:375 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + +#: include/text.php:299 +msgid "newer" +msgstr "nieuwere berichten" + +#: include/text.php:301 +msgid "older" +msgstr "oudere berichten" + +#: include/text.php:306 +msgid "prev" +msgstr "vorige" + +#: include/text.php:308 +msgid "first" +msgstr "eerste" + +#: include/text.php:340 +msgid "last" +msgstr "laatste" + +#: include/text.php:343 +msgid "next" +msgstr "volgende" + +#: include/text.php:398 +msgid "Loading more entries..." +msgstr "" + +#: include/text.php:399 +msgid "The end" +msgstr "" + +#: include/text.php:878 +msgid "No contacts" +msgstr "Geen contacten" + +#: include/text.php:887 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacten" + +#: include/text.php:1027 +msgid "poke" +msgstr "aanstoten" + +#: include/text.php:1027 +msgid "poked" +msgstr "aangestoten" + +#: include/text.php:1028 +msgid "ping" +msgstr "ping" + +#: include/text.php:1028 +msgid "pinged" +msgstr "gepingd" + +#: include/text.php:1029 +msgid "prod" +msgstr "porren" + +#: include/text.php:1029 +msgid "prodded" +msgstr "gepord" + +#: include/text.php:1030 +msgid "slap" +msgstr "slaan" + +#: include/text.php:1030 +msgid "slapped" +msgstr "geslagen" + +#: include/text.php:1031 +msgid "finger" +msgstr "finger" + +#: include/text.php:1031 +msgid "fingered" +msgstr "gerfingerd" + +#: include/text.php:1032 +msgid "rebuff" +msgstr "afpoeieren" + +#: include/text.php:1032 +msgid "rebuffed" +msgstr "afgepoeierd" + +#: include/text.php:1046 +msgid "happy" +msgstr "Blij" + +#: include/text.php:1047 +msgid "sad" +msgstr "Verdrietig" + +#: include/text.php:1048 +msgid "mellow" +msgstr "mellow" + +#: include/text.php:1049 +msgid "tired" +msgstr "vermoeid" + +#: include/text.php:1050 +msgid "perky" +msgstr "parmantig" + +#: include/text.php:1051 +msgid "angry" +msgstr "boos" + +#: include/text.php:1052 +msgid "stupified" +msgstr "verbijsterd" + +#: include/text.php:1053 +msgid "puzzled" +msgstr "onzeker" + +#: include/text.php:1054 +msgid "interested" +msgstr "Geïnteresseerd" + +#: include/text.php:1055 +msgid "bitter" +msgstr "bitter" + +#: include/text.php:1056 +msgid "cheerful" +msgstr "vrolijk" + +#: include/text.php:1057 +msgid "alive" +msgstr "levend" + +#: include/text.php:1058 +msgid "annoyed" +msgstr "verveeld" + +#: include/text.php:1059 +msgid "anxious" +msgstr "bezorgd" + +#: include/text.php:1060 +msgid "cranky" +msgstr "humeurig " + +#: include/text.php:1061 +msgid "disturbed" +msgstr "verontrust" + +#: include/text.php:1062 +msgid "frustrated" +msgstr "gefrustreerd" + +#: include/text.php:1063 +msgid "motivated" +msgstr "gemotiveerd" + +#: include/text.php:1064 +msgid "relaxed" +msgstr "ontspannen" + +#: include/text.php:1065 +msgid "surprised" +msgstr "verbaasd" + +#: include/text.php:1235 +msgid "Monday" +msgstr "Maandag" + +#: include/text.php:1235 +msgid "Tuesday" +msgstr "Dinsdag" + +#: include/text.php:1235 +msgid "Wednesday" +msgstr "Woensdag" + +#: include/text.php:1235 +msgid "Thursday" +msgstr "Donderdag" + +#: include/text.php:1235 +msgid "Friday" +msgstr "Vrijdag" + +#: include/text.php:1235 +msgid "Saturday" +msgstr "Zaterdag" + +#: include/text.php:1235 +msgid "Sunday" +msgstr "Zondag" + +#: include/text.php:1239 +msgid "January" +msgstr "Januari" + +#: include/text.php:1239 +msgid "February" +msgstr "Februari" + +#: include/text.php:1239 +msgid "March" +msgstr "Maart" + +#: include/text.php:1239 +msgid "April" +msgstr "April" + +#: include/text.php:1239 +msgid "May" +msgstr "Mei" + +#: include/text.php:1239 +msgid "June" +msgstr "Juni" + +#: include/text.php:1239 +msgid "July" +msgstr "Juli" + +#: include/text.php:1239 +msgid "August" +msgstr "Augustus" + +#: include/text.php:1239 +msgid "September" +msgstr "September" + +#: include/text.php:1239 +msgid "October" +msgstr "Oktober" + +#: include/text.php:1239 +msgid "November" +msgstr "November" + +#: include/text.php:1239 +msgid "December" +msgstr "December" + +#: include/text.php:1461 +msgid "bytes" +msgstr "bytes" + +#: include/text.php:1493 include/text.php:1505 +msgid "Click to open/close" +msgstr "klik om te openen/sluiten" + +#: include/text.php:1746 +msgid "Select an alternate language" +msgstr "Kies een andere taal" + +#: include/text.php:2002 +msgid "activity" +msgstr "activiteit" + +#: include/text.php:2005 +msgid "post" +msgstr "bericht" + +#: include/text.php:2173 +msgid "Item filed" +msgstr "Item bewaard" + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Ongeldige OpenID url" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "gebruik een kortere naam" + +#: include/user.php:98 +msgid "Name too short." +msgstr "Naam te kort" + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Je e-maildomein is op deze website niet toegestaan." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "Geen geldig e-mailadres." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Ik kan die e-mail niet gebruiken." + +#: include/user.php:140 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen." + +#: include/user.php:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "Bijnaam is al geregistreerd. Kies een andere." + +#: include/user.php:156 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere." + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: include/user.php:265 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: include/user.php:385 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "" + +#: include/user.php:389 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "" + +#: index.php:441 +msgid "toggle mobile" +msgstr "mobiel thema omwisselen" + +#: boot.php:753 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" + +#: boot.php:756 +msgid "show fewer" +msgstr "Minder tonen" + +#: boot.php:1130 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Wijziging %s mislukt. Lees de error logbestanden." + +#: boot.php:1237 +msgid "Create a New Account" +msgstr "Nieuwe account aanmaken" + +#: boot.php:1265 +msgid "Nickname or Email address: " +msgstr "Bijnaam of e-mailadres:" + +#: boot.php:1266 +msgid "Password: " +msgstr "Wachtwoord:" + +#: boot.php:1267 +msgid "Remember me" +msgstr "Onthou me" + +#: boot.php:1270 +msgid "Or login using OpenID: " +msgstr "Of log in met OpenID:" + +#: boot.php:1276 +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" + +#: boot.php:1279 +msgid "Website Terms of Service" +msgstr "Gebruikersvoorwaarden website" + +#: boot.php:1280 +msgid "terms of service" +msgstr "servicevoorwaarden" + +#: boot.php:1282 +msgid "Website Privacy Policy" +msgstr "Privacybeleid website" + +#: boot.php:1283 +msgid "privacy policy" +msgstr "privacybeleid" diff --git a/view/nl/strings.php b/view/nl/strings.php index 1e5f5687f..66937c644 100644 --- a/view/nl/strings.php +++ b/view/nl/strings.php @@ -5,23 +5,79 @@ function string_plural_select_nl($n){ return ($n != 1);; }} ; +$a->strings["This entry was edited"] = ""; +$a->strings["Private Message"] = "Privébericht"; +$a->strings["Edit"] = "Bewerken"; +$a->strings["Select"] = "Kies"; +$a->strings["Delete"] = "Verwijder"; +$a->strings["save to folder"] = "Bewaren in map"; +$a->strings["add star"] = "ster toevoegen"; +$a->strings["remove star"] = "ster verwijderen"; +$a->strings["toggle star status"] = "ster toevoegen of verwijderen"; +$a->strings["starred"] = "met ster"; +$a->strings["ignore thread"] = ""; +$a->strings["unignore thread"] = ""; +$a->strings["toggle ignore status"] = ""; +$a->strings["ignored"] = ""; +$a->strings["add tag"] = "label toevoegen"; +$a->strings["I like this (toggle)"] = "Vind ik leuk"; +$a->strings["like"] = "leuk"; +$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; +$a->strings["dislike"] = "niet leuk"; +$a->strings["Share this"] = "Delen"; +$a->strings["share"] = "Delen"; +$a->strings["Categories:"] = "Categorieën:"; +$a->strings["Filed under:"] = "Bewaard onder:"; +$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; +$a->strings["to"] = "aan"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "wall-to-wall"; +$a->strings["via Wall-To-Wall:"] = "via wall-to-wall"; +$a->strings["%s from %s"] = "%s van %s"; +$a->strings["Comment"] = "Reacties"; +$a->strings["Please wait"] = "Even geduld"; +$a->strings["%d comment"] = array( + 0 => "%d reactie", + 1 => "%d reacties", +); +$a->strings["comment"] = array( + 0 => "reactie", + 1 => "reacties", +); +$a->strings["show more"] = "toon meer"; +$a->strings["This is you"] = "Dit ben jij"; $a->strings["Submit"] = "Opslaan"; -$a->strings["Theme settings"] = "Thema-instellingen"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; -$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in"; -$a->strings["Set theme width"] = "Stel breedte van het thema in"; -$a->strings["Color scheme"] = "Kleurschema"; -$a->strings["Set style"] = ""; -$a->strings["default"] = "standaard"; -$a->strings["greenzero"] = ""; -$a->strings["purplezero"] = ""; -$a->strings["easterbunny"] = ""; -$a->strings["darkzero"] = ""; -$a->strings["comix"] = ""; -$a->strings["slackr"] = ""; -$a->strings["Variations"] = ""; +$a->strings["Bold"] = "Vet"; +$a->strings["Italic"] = "Cursief"; +$a->strings["Underline"] = "Onderstrepen"; +$a->strings["Quote"] = "Citeren"; +$a->strings["Code"] = "Broncode"; +$a->strings["Image"] = "Afbeelding"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Preview"] = "Voorvertoning"; +$a->strings["Clone this project:"] = ""; +$a->strings["Click here to download"] = ""; +$a->strings["This project is empty!"] = ""; +$a->strings["Projects"] = ""; +$a->strings["add new"] = ""; +$a->strings["delete"] = ""; +$a->strings["Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone."] = ""; +$a->strings["Home"] = "Tijdlijn"; +$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; +$a->strings["Profile"] = "Profiel"; +$a->strings["Your profile page"] = "Jouw profiel pagina"; +$a->strings["Photos"] = "Foto's"; +$a->strings["Your photos"] = "Jouw foto's"; +$a->strings["Events"] = "Gebeurtenissen"; +$a->strings["Your events"] = "Jouw gebeurtenissen"; +$a->strings["Personal notes"] = "Persoonlijke nota's"; +$a->strings["Your personal photos"] = "Jouw persoonlijke foto's"; +$a->strings["Community"] = "Website"; $a->strings["don't show"] = "niet tonen"; $a->strings["show"] = "tonen"; +$a->strings["Theme settings"] = "Thema-instellingen"; +$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in"; $a->strings["Set line-height for posts and comments"] = "Stel lijnhoogte voor berichten en reacties in"; $a->strings["Set resolution for middle column"] = "Stel resolutie in voor de middelste kolom. "; $a->strings["Set color scheme"] = "Stel kleurenschema in"; @@ -37,19 +93,8 @@ $a->strings["Find Friends"] = "Zoek vrienden"; $a->strings["Last users"] = "Laatste gebruikers"; $a->strings["Last photos"] = "Laatste foto's"; $a->strings["Last likes"] = "Recent leuk gevonden"; -$a->strings["Home"] = "Tijdlijn"; -$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; -$a->strings["Profile"] = "Profiel"; -$a->strings["Your profile page"] = "Jouw profiel pagina"; $a->strings["Contacts"] = "Contacten"; $a->strings["Your contacts"] = "Jouw contacten"; -$a->strings["Photos"] = "Foto's"; -$a->strings["Your photos"] = "Jouw foto's"; -$a->strings["Events"] = "Gebeurtenissen"; -$a->strings["Your events"] = "Jouw gebeurtenissen"; -$a->strings["Personal notes"] = "Persoonlijke nota's"; -$a->strings["Your personal photos"] = "Jouw persoonlijke foto's"; -$a->strings["Community"] = "Website"; $a->strings["event"] = "gebeurtenis"; $a->strings["status"] = "status"; $a->strings["photo"] = "foto"; @@ -67,660 +112,65 @@ $a->strings["Show/hide boxes at right-hand column:"] = ""; $a->strings["Alignment"] = "Uitlijning"; $a->strings["Left"] = "Links"; $a->strings["Center"] = "Gecentreerd"; +$a->strings["Color scheme"] = "Kleurschema"; $a->strings["Posts font size"] = "Lettergrootte berichten"; $a->strings["Textareas font size"] = "Lettergrootte tekstgebieden"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; +$a->strings["Set theme width"] = "Stel breedte van het thema in"; $a->strings["Set colour scheme"] = "Stel kleurschema in"; -$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "; -$a->strings["Not Found"] = "Niet gevonden"; -$a->strings["Page not found."] = "Pagina niet gevonden"; -$a->strings["Permission denied"] = "Toegang geweigerd"; -$a->strings["Permission denied."] = "Toegang geweigerd"; -$a->strings["toggle mobile"] = "mobiel thema omwisselen"; -$a->strings["Do you wish to confirm your identity (%s) with %s"] = ""; -$a->strings["Confirm"] = "Bevestig"; -$a->strings["Do not confirm"] = "Bevestig niet"; -$a->strings["Trust This Site"] = "Vertrouw deze website"; -$a->strings["No Identifier Sent"] = ""; -$a->strings["Requested identity don't match logged in user."] = ""; -$a->strings["Please wait; you are being redirected to <%s>"] = ""; -$a->strings["Delete this item?"] = "Dit item verwijderen?"; -$a->strings["Comment"] = "Reacties"; -$a->strings["show more"] = "toon meer"; -$a->strings["show fewer"] = "Minder tonen"; -$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden."; -$a->strings["Create a New Account"] = "Nieuwe account aanmaken"; -$a->strings["Register"] = "Registreer"; -$a->strings["Logout"] = "Uitloggen"; -$a->strings["Login"] = "Login"; -$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:"; -$a->strings["Password: "] = "Wachtwoord:"; -$a->strings["Remember me"] = "Onthou me"; -$a->strings["Or login using OpenID: "] = "Of log in met OpenID:"; -$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; -$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen"; -$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website"; -$a->strings["terms of service"] = "servicevoorwaarden"; -$a->strings["Website Privacy Policy"] = "Privacybeleid website"; -$a->strings["privacy policy"] = "privacybeleid"; -$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar."; -$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar."; -$a->strings["Edit profile"] = "Bewerk profiel"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["Message"] = "Bericht"; -$a->strings["Profiles"] = "Profielen"; -$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen"; -$a->strings["Change profile photo"] = "Profiel foto wijzigen"; -$a->strings["Create New Profile"] = "Maak nieuw profiel"; -$a->strings["Profile Image"] = "Profiel afbeelding"; -$a->strings["visible to everybody"] = "zichtbaar voor iedereen"; -$a->strings["Edit visibility"] = "Pas zichtbaarheid aan"; -$a->strings["Location:"] = "Plaats:"; -$a->strings["Gender:"] = "Geslacht:"; -$a->strings["Status:"] = "Tijdlijn:"; -$a->strings["Homepage:"] = "Website:"; -$a->strings["About:"] = "Over:"; -$a->strings["Network:"] = ""; -$a->strings["g A l F d"] = "G l j F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[vandaag]"; -$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; -$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; -$a->strings["[No description]"] = "[Geen omschrijving]"; -$a->strings["Event Reminders"] = "Gebeurtenisherinneringen"; -$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; -$a->strings["Status"] = "Tijdlijn"; -$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn"; -$a->strings["Profile Details"] = "Profieldetails"; -$a->strings["Photo Albums"] = "Fotoalbums"; -$a->strings["Videos"] = "Video's"; -$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender"; -$a->strings["Personal Notes"] = "Persoonlijke Nota's"; -$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien"; -$a->strings["General Features"] = "Algemene functies"; -$a->strings["Multiple Profiles"] = "Meerdere profielen"; -$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; -$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; -$a->strings["Richtext Editor"] = "Tekstverwerker met opmaak"; -$a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"; -$a->strings["Post Preview"] = "Voorvertoning bericht"; -$a->strings["Allow previewing posts and comments before publishing them"] = ""; -$a->strings["Auto-mention Forums"] = ""; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; -$a->strings["Network Sidebar Widgets"] = "Zijbalkwidgets op netwerkpagina"; -$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["Group Filter"] = "Groepsfilter"; -$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"] = "Netwerkfilter"; -$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["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; -$a->strings["Network Tabs"] = "Netwerktabs"; -$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; -$a->strings["Network New Tab"] = "Nieuwe netwerktab"; -$a->strings["Enable tab to display 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["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen"; -$a->strings["Multiple Deletion"] = "Meervoudige verwijdering"; -$a->strings["Select and delete multiple posts/comments at once"] = "Selecteer en verwijder meerdere berichten/reacties in een keer"; -$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten"; -$a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties na verzending"; -$a->strings["Tagging"] = "Labelen"; -$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen"; -$a->strings["Post Categories"] = "Categorieën berichten"; -$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; -$a->strings["Saved Folders"] = "Bewaarde Mappen"; -$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren"; -$a->strings["Dislike Posts"] = "Vind berichten niet leuk"; -$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten of reacties niet leuk te vinden"; -$a->strings["Star Posts"] = "Geef berichten een ster"; -$a->strings["Ability to mark special posts with a star indicator"] = ""; -$a->strings["Mute Post Notifications"] = ""; -$a->strings["Ability to mute notifications for a thread"] = ""; -$a->strings["%s's birthday"] = "%s's verjaardag"; -$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s"; -$a->strings["[Name Withheld]"] = "[Naam achtergehouden]"; -$a->strings["Item not found."] = "Item niet gevonden."; -$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?"; -$a->strings["Yes"] = "Ja"; -$a->strings["Cancel"] = "Annuleren"; -$a->strings["Archives"] = "Archieven"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "; -$a->strings["Default privacy group for new contacts"] = ""; -$a->strings["Everybody"] = "Iedereen"; -$a->strings["edit"] = "verander"; -$a->strings["Groups"] = "Groepen"; -$a->strings["Edit group"] = "Verander groep"; -$a->strings["Create a new group"] = "Maak nieuwe groep"; -$a->strings["Contacts not in any group"] = ""; -$a->strings["add"] = "toevoegen"; -$a->strings["Wall Photos"] = ""; -$a->strings["Cannot locate DNS info for database server '%s'"] = ""; -$a->strings["Add New Contact"] = "Nieuw Contact toevoegen"; -$a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d uitnodiging beschikbaar", - 1 => "%d uitnodigingen beschikbaar", -); -$a->strings["Find People"] = "Zoek mensen"; -$a->strings["Enter name or interest"] = "Vul naam of interesse in"; -$a->strings["Connect/Follow"] = "Verbind/Volg"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen"; -$a->strings["Find"] = "Zoek"; -$a->strings["Random Profile"] = "Willekeurig Profiel"; -$a->strings["Networks"] = "Netwerken"; -$a->strings["All Networks"] = "Alle netwerken"; -$a->strings["Everything"] = "Alles"; -$a->strings["Categories"] = "Categorieën"; -$a->strings["%d contact in common"] = array( - 0 => "%d gedeeld contact", - 1 => "%d gedeelde contacten", -); -$a->strings["Friendica Notification"] = "Friendica Notificatie"; -$a->strings["Thank You,"] = "Bedankt"; -$a->strings["%s Administrator"] = "%s Beheerder"; -$a->strings["noreply"] = "geen reactie"; -$a->strings["%s "] = "%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."] = "%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["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["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]a %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]%3\$s's %4\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]jouw %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; -$a->strings["%s commented on an item/conversation you have been following."] = "%s gaf een reactie op een bericht/conversatie die jij volgt."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of te beantwoorden."; -$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 [url=%2\$s]your wall[/url]"] = ""; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificatie] %s heeft jou genoemd"; -$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]."] = "%1\$s [url=%2\$s]heeft jou genoemd[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = ""; -$a->strings["%1\$s shared a new post at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = ""; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s heeft jou aangestoten"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s heeft jou aangestoten op %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; -$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"] = "%1\$s heeft jouw bericht gelabeld in %2\$s"; -$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"] = "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"; -$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."] = "Je ontving [url=%1\$s]een vriendschaps- of connectieverzoek[/url] van %2\$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."] = "Bezoek %s om het verzoek goed of af te keuren."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = ""; -$a->strings["%1\$s is sharing with you at %2\$s"] = ""; -$a->strings["[Friendica:Notify] You have a new follower"] = ""; -$a->strings["You have a new follower at %2\$s : %1\$s"] = ""; -$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 [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; -$a->strings["Name:"] = "Naam:"; -$a->strings["Photo:"] = "Foto: "; -$a->strings["Please visit %s to approve or reject the suggestion."] = ""; -$a->strings["[Friendica:Notify] Connection accepted"] = ""; -$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = ""; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = ""; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = ""; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = ""; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = ""; -$a->strings["[Friendica System:Notify] registration request"] = ""; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = ""; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = ""; -$a->strings["Please visit %s to approve or reject the request."] = ""; -$a->strings["User not found."] = "Gebruiker niet gevonden"; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = ""; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = ""; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = ""; -$a->strings["There is no status with this id."] = "Er is geen status met dit kenmerk"; -$a->strings["There is no conversation with this id."] = ""; -$a->strings["Invalid request."] = ""; -$a->strings["Invalid item."] = ""; -$a->strings["Invalid action. "] = ""; -$a->strings["DB error"] = ""; -$a->strings["view full size"] = "Volledig formaat"; -$a->strings[" on Last.fm"] = " op Last.fm"; -$a->strings["Full Name:"] = "Volledige Naam:"; -$a->strings["j F, Y"] = "F j Y"; -$a->strings["j F"] = "F j"; -$a->strings["Birthday:"] = "Verjaardag:"; -$a->strings["Age:"] = "Leeftijd:"; -$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Seksuele Voorkeur:"; -$a->strings["Hometown:"] = "Woonplaats:"; -$a->strings["Tags:"] = "Labels:"; -$a->strings["Political Views:"] = "Politieke standpunten:"; -$a->strings["Religion:"] = "Religie:"; -$a->strings["Hobbies/Interests:"] = "Hobby:"; -$a->strings["Likes:"] = "Houdt van:"; -$a->strings["Dislikes:"] = "Houdt niet van:"; -$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -$a->strings["Musical interests:"] = "Muzikale interesse "; -$a->strings["Books, literature:"] = "Boeken, literatuur:"; -$a->strings["Television:"] = "Televisie"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:"; -$a->strings["Love/Romance:"] = "Liefde/romance:"; -$a->strings["Work/employment:"] = "Werk/beroep:"; -$a->strings["School/education:"] = "School/opleiding:"; -$a->strings["Nothing new here"] = "Niets nieuw hier"; -$a->strings["Clear notifications"] = "Notificaties verwijderen"; -$a->strings["End this session"] = "Deze sessie beëindigen"; -$a->strings["Your videos"] = ""; -$a->strings["Your personal notes"] = ""; -$a->strings["Sign in"] = "Inloggen"; -$a->strings["Home Page"] = "Jouw tijdlijn"; -$a->strings["Create an account"] = "Maak een accoount"; -$a->strings["Help"] = "Help"; -$a->strings["Help and documentation"] = "Hulp en documentatie"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes"; -$a->strings["Search"] = "Zoeken"; -$a->strings["Search site content"] = "Doorzoek de inhoud van de website"; -$a->strings["Conversations on this site"] = "Conversaties op deze website"; -$a->strings["Conversations on the network"] = ""; -$a->strings["Directory"] = "Gids"; -$a->strings["People directory"] = "Personengids"; -$a->strings["Information"] = "Informatie"; -$a->strings["Information about this friendica instance"] = ""; -$a->strings["Network"] = "Netwerk"; -$a->strings["Conversations from your friends"] = "Conversaties van je vrienden"; -$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen"; -$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters"; -$a->strings["Introductions"] = "Verzoeken"; -$a->strings["Friend Requests"] = "Vriendschapsverzoeken"; -$a->strings["Notifications"] = "Notificaties"; -$a->strings["See all notifications"] = "Toon alle notificaties"; -$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren"; -$a->strings["Messages"] = "Privéberichten"; -$a->strings["Private mail"] = "Privéberichten"; -$a->strings["Inbox"] = "Inbox"; -$a->strings["Outbox"] = "Verzonden berichten"; -$a->strings["New Message"] = "Nieuw Bericht"; -$a->strings["Manage"] = "Beheren"; -$a->strings["Manage other pages"] = "Andere pagina's beheren"; -$a->strings["Delegations"] = ""; -$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden"; -$a->strings["Account settings"] = "Account instellingen"; -$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen"; -$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten"; -$a->strings["Admin"] = "Beheer"; -$a->strings["Site setup and configuration"] = "Website opzetten en configureren"; -$a->strings["Navigation"] = "Navigatie"; -$a->strings["Site map"] = "Sitemap"; -$a->strings["Click here to upgrade."] = ""; -$a->strings["This action exceeds the limits set by your subscription plan."] = ""; -$a->strings["This action is not available under your subscription plan."] = ""; -$a->strings["Disallowed profile URL."] = "Niet toegelaten profiel adres."; -$a->strings["Connect URL missing."] = ""; -$a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt."; -$a->strings["The profile address specified does not provide adequate information."] = ""; -$a->strings["An author or name was not found."] = ""; -$a->strings["No browser URL could be matched to this address."] = ""; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."; -$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = ""; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = ""; -$a->strings["Unable to retrieve contact information."] = ""; -$a->strings["following"] = "volgend"; -$a->strings["Error decoding account file"] = ""; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; -$a->strings["Error! Cannot check nickname"] = ""; -$a->strings["User '%s' already exists on this server!"] = "Gebruiker '%s' bestaat al op deze server!"; -$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker"; -$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contact werd niet geïmporteerd", - 1 => "%d contacten werden niet geïmporteerd", -); -$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Starts:"] = "Begint:"; -$a->strings["Finishes:"] = "Eindigt:"; -$a->strings["stopped following"] = ""; -$a->strings["Poke"] = "Aanstoten"; -$a->strings["View Status"] = "Bekijk status"; -$a->strings["View Profile"] = "Bekijk profiel"; -$a->strings["View Photos"] = "Bekijk foto's"; -$a->strings["Network Posts"] = "Netwerkberichten"; -$a->strings["Edit Contact"] = "Bewerk contact"; -$a->strings["Drop Contact"] = "Verwijder contact"; -$a->strings["Send PM"] = "Stuur een privébericht"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; -$a->strings["The error message is\n[pre]%s[/pre]"] = ""; -$a->strings["Errors encountered creating database tables."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."; -$a->strings["Errors encountered performing database changes."] = ""; -$a->strings["Miscellaneous"] = "Diversen"; -$a->strings["year"] = "jaar"; -$a->strings["month"] = "maand"; -$a->strings["day"] = "dag"; -$a->strings["never"] = "nooit"; -$a->strings["less than a second ago"] = "minder dan een seconde geleden"; -$a->strings["years"] = "jaren"; -$a->strings["months"] = "maanden"; -$a->strings["week"] = "week"; -$a->strings["weeks"] = "weken"; -$a->strings["days"] = "dagen"; -$a->strings["hour"] = "uur"; -$a->strings["hours"] = "uren"; -$a->strings["minute"] = "minuut"; -$a->strings["minutes"] = "minuten"; -$a->strings["second"] = "seconde"; -$a->strings["seconds"] = "secondes"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; -$a->strings["[no subject]"] = "[geen onderwerp]"; -$a->strings["(no subject)"] = "(geen onderwerp)"; -$a->strings["Unknown | Not categorised"] = "Onbekend | Niet "; -$a->strings["Block immediately"] = "Onmiddellijk blokkeren"; -$a->strings["Shady, spammer, self-marketer"] = "Onbetrouwbaar, spammer, zelfpromotor"; -$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening"; -$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk"; -$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen"; -$a->strings["Frequently"] = "Frequent"; -$a->strings["Hourly"] = "elk uur"; -$a->strings["Twice daily"] = "Twee keer per dag"; -$a->strings["Daily"] = "dagelijks"; -$a->strings["Weekly"] = "wekelijks"; -$a->strings["Monthly"] = "maandelijks"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-mail"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "Linkedln"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "Myspace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Diaspora-connector"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = ""; -$a->strings["%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["Attachments:"] = "Bijlagen:"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s niet leuk"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan"; +$a->strings["default"] = "standaard"; +$a->strings["Midnight"] = ""; +$a->strings["Zenburn"] = ""; +$a->strings["Bootstrap"] = ""; +$a->strings["Shades of Pink"] = ""; +$a->strings["Lime and Orange"] = ""; +$a->strings["GeoCities Retro"] = ""; +$a->strings["Background Image"] = ""; +$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = ""; +$a->strings["Background Color"] = "achtergrondkleur"; +$a->strings["HEX value for the background color. Don't include the #"] = ""; +$a->strings["font size"] = ""; +$a->strings["base font size for your interface"] = ""; +$a->strings["greenzero"] = ""; +$a->strings["purplezero"] = ""; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = ""; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = ""; +$a->strings["Set style"] = ""; $a->strings["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s"; -$a->strings["%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"] = "bericht/item"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet"; -$a->strings["Select"] = "Kies"; -$a->strings["Delete"] = "Verwijder"; -$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; -$a->strings["Categories:"] = "Categorieën:"; -$a->strings["Filed under:"] = "Bewaard onder:"; -$a->strings["%s from %s"] = "%s van %s"; -$a->strings["View in context"] = "In context bekijken"; -$a->strings["Please wait"] = "Even geduld"; -$a->strings["remove"] = "verwijder"; -$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen"; -$a->strings["Follow Thread"] = "Conversatie volgen"; -$a->strings["%s likes this."] = "%s vindt dit leuk."; -$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; -$a->strings["%2\$d people like this"] = "%2\$d mensen vinden dit leuk"; -$a->strings["%2\$d people don't like this"] = "%2\$d people vinden dit niet leuk"; -$a->strings["and"] = "en"; -$a->strings[", and %d other people"] = ", en %d andere mensen"; -$a->strings["%s like this."] = "%s vindt dit leuk."; -$a->strings["%s don't like this."] = "%s vindt dit niet leuk."; -$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; -$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; -$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; -$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; -$a->strings["Tag term:"] = "Label:"; -$a->strings["Save to Folder:"] = "Bewaren in map:"; -$a->strings["Where are you right now?"] = "Waar ben je nu?"; -$a->strings["Delete item(s)?"] = "Item(s) verwijderen?"; -$a->strings["Post to Email"] = "Verzenden per e-mail"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["Hide your profile details from unknown viewers?"] = "Je profieldetails verbergen voor onbekende bezoekers?"; -$a->strings["Share"] = "Delen"; -$a->strings["Upload photo"] = "Foto uploaden"; -$a->strings["upload photo"] = "Foto uploaden"; -$a->strings["Attach file"] = "Bestand bijvoegen"; -$a->strings["attach file"] = "bestand bijvoegen"; -$a->strings["Insert web link"] = "Voeg een webadres in"; -$a->strings["web link"] = "webadres"; -$a->strings["Insert video link"] = "Voeg video toe"; -$a->strings["video link"] = "video adres"; -$a->strings["Insert audio link"] = "Voeg audio adres toe"; -$a->strings["audio link"] = "audio adres"; -$a->strings["Set your location"] = "Stel uw locatie in"; -$a->strings["set location"] = "Stel uw locatie in"; -$a->strings["Clear browser location"] = "Verwijder locatie uit uw webbrowser"; -$a->strings["clear location"] = "Verwijder locatie uit uw webbrowser"; -$a->strings["Set title"] = "Titel plaatsen"; -$a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)"; -$a->strings["Permission settings"] = "Instellingen van rechten"; -$a->strings["permissions"] = "rechten"; -$a->strings["CC: email addresses"] = "CC: e-mailadressen"; -$a->strings["Public post"] = "Openbare post"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"; -$a->strings["Preview"] = "Voorvertoning"; -$a->strings["Post to Groups"] = "Verzenden naar Groepen"; -$a->strings["Post to Contacts"] = "Verzenden naar Contacten"; -$a->strings["Private post"] = "Privé verzending"; -$a->strings["newer"] = "nieuwere berichten"; -$a->strings["older"] = "oudere berichten"; -$a->strings["prev"] = "vorige"; -$a->strings["first"] = "eerste"; -$a->strings["last"] = "laatste"; -$a->strings["next"] = "volgende"; -$a->strings["Loading more entries..."] = ""; -$a->strings["The end"] = ""; -$a->strings["No contacts"] = "Geen contacten"; -$a->strings["%d Contact"] = array( - 0 => "%d contact", - 1 => "%d contacten", -); -$a->strings["View Contacts"] = "Bekijk contacten"; -$a->strings["Save"] = "Bewaren"; -$a->strings["poke"] = "aanstoten"; -$a->strings["poked"] = "aangestoten"; -$a->strings["ping"] = "ping"; -$a->strings["pinged"] = "gepingd"; -$a->strings["prod"] = "porren"; -$a->strings["prodded"] = "gepord"; -$a->strings["slap"] = "slaan"; -$a->strings["slapped"] = "geslagen"; -$a->strings["finger"] = "finger"; -$a->strings["fingered"] = "gerfingerd"; -$a->strings["rebuff"] = "afpoeieren"; -$a->strings["rebuffed"] = "afgepoeierd"; -$a->strings["happy"] = "Blij"; -$a->strings["sad"] = "Verdrietig"; -$a->strings["mellow"] = "mellow"; -$a->strings["tired"] = "vermoeid"; -$a->strings["perky"] = "parmantig"; -$a->strings["angry"] = "boos"; -$a->strings["stupified"] = "verbijsterd"; -$a->strings["puzzled"] = "onzeker"; -$a->strings["interested"] = "Geïnteresseerd"; -$a->strings["bitter"] = "bitter"; -$a->strings["cheerful"] = "vrolijk"; -$a->strings["alive"] = "levend"; -$a->strings["annoyed"] = "verveeld"; -$a->strings["anxious"] = "bezorgd"; -$a->strings["cranky"] = "humeurig "; -$a->strings["disturbed"] = "verontrust"; -$a->strings["frustrated"] = "gefrustreerd"; -$a->strings["motivated"] = "gemotiveerd"; -$a->strings["relaxed"] = "ontspannen"; -$a->strings["surprised"] = "verbaasd"; -$a->strings["Monday"] = "Maandag"; -$a->strings["Tuesday"] = "Dinsdag"; -$a->strings["Wednesday"] = "Woensdag"; -$a->strings["Thursday"] = "Donderdag"; -$a->strings["Friday"] = "Vrijdag"; -$a->strings["Saturday"] = "Zaterdag"; -$a->strings["Sunday"] = "Zondag"; -$a->strings["January"] = "Januari"; -$a->strings["February"] = "Februari"; -$a->strings["March"] = "Maart"; -$a->strings["April"] = "April"; -$a->strings["May"] = "Mei"; -$a->strings["June"] = "Juni"; -$a->strings["July"] = "Juli"; -$a->strings["August"] = "Augustus"; -$a->strings["September"] = "September"; -$a->strings["October"] = "Oktober"; -$a->strings["November"] = "November"; -$a->strings["December"] = "December"; -$a->strings["View Video"] = "Bekijk Video"; -$a->strings["bytes"] = "bytes"; -$a->strings["Click to open/close"] = "klik om te openen/sluiten"; -$a->strings["link to source"] = "Verwijzing naar bron"; -$a->strings["Select an alternate language"] = "Kies een andere taal"; -$a->strings["activity"] = "activiteit"; -$a->strings["comment"] = array( - 0 => "reactie", - 1 => "reacties", -); -$a->strings["post"] = "bericht"; -$a->strings["Item filed"] = "Item bewaard"; -$a->strings["Logged out."] = "Uitgelogd."; -$a->strings["Login failed."] = "Login mislukt."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; -$a->strings["The error message was:"] = "De foutboodschap was:"; -$a->strings["Image/photo"] = "Afbeelding/foto"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["%s wrote the following post"] = ""; -$a->strings["$1 wrote:"] = "$1 schreef:"; -$a->strings["Encrypted content"] = "Versleutelde inhoud"; -$a->strings["Welcome "] = "Welkom"; -$a->strings["Please upload a profile photo."] = "Upload een profielfoto."; -$a->strings["Welcome back "] = "Welkom terug "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; -$a->strings["Embedded content"] = "Ingebedde inhoud"; -$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld"; -$a->strings["Male"] = "Man"; -$a->strings["Female"] = "Vrouw"; -$a->strings["Currently Male"] = "Momenteel mannelijk"; -$a->strings["Currently Female"] = "Momenteel vrouwelijk"; -$a->strings["Mostly Male"] = "Meestal mannelijk"; -$a->strings["Mostly Female"] = "Meestal vrouwelijk"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Interseksueel"; -$a->strings["Transsexual"] = "Transseksueel"; -$a->strings["Hermaphrodite"] = "Hermafrodiet"; -$a->strings["Neuter"] = "Genderneutraal"; -$a->strings["Non-specific"] = "Niet-specifiek"; -$a->strings["Other"] = "Anders"; -$a->strings["Undecided"] = "Onbeslist"; -$a->strings["Males"] = "Manen"; -$a->strings["Females"] = "Vrouwen"; -$a->strings["Gay"] = "Homo"; -$a->strings["Lesbian"] = "Lesbie"; -$a->strings["No Preference"] = "Geen voorkeur"; -$a->strings["Bisexual"] = "Biseksueel"; -$a->strings["Autosexual"] = "Autoseksueel"; -$a->strings["Abstinent"] = "Onthouder"; -$a->strings["Virgin"] = "Maagd"; -$a->strings["Deviant"] = "Afwijkend"; -$a->strings["Fetish"] = "Fetisj"; -$a->strings["Oodles"] = "Veel"; -$a->strings["Nonsexual"] = "Niet seksueel"; -$a->strings["Single"] = "Alleenstaand"; -$a->strings["Lonely"] = "Eenzaam"; -$a->strings["Available"] = "Beschikbaar"; -$a->strings["Unavailable"] = "Onbeschikbaar"; -$a->strings["Has crush"] = "Verliefd"; -$a->strings["Infatuated"] = "Smoorverliefd"; -$a->strings["Dating"] = "Aan het daten"; -$a->strings["Unfaithful"] = "Ontrouw"; -$a->strings["Sex Addict"] = "Seksverslaafd"; -$a->strings["Friends"] = "Vrienden"; -$a->strings["Friends/Benefits"] = "Vriendschap plus"; -$a->strings["Casual"] = "Ongebonden/vluchtig"; -$a->strings["Engaged"] = "Verloofd"; -$a->strings["Married"] = "Getrouwd"; -$a->strings["Imaginarily married"] = "Denkbeeldig getrouwd"; -$a->strings["Partners"] = "Partners"; -$a->strings["Cohabiting"] = "Samenwonend"; -$a->strings["Common law"] = "Common-law-huwelijk"; -$a->strings["Happy"] = "Blij"; -$a->strings["Not looking"] = ""; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Bedrogen"; -$a->strings["Separated"] = "Uit elkaar"; -$a->strings["Unstable"] = "Onstabiel"; -$a->strings["Divorced"] = "Gescheiden"; -$a->strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; -$a->strings["Widowed"] = "Weduwnaar/weduwe"; -$a->strings["Uncertain"] = "Onzeker"; -$a->strings["It's complicated"] = "Het is gecompliceerd"; -$a->strings["Don't care"] = "Kan me niet schelen"; -$a->strings["Ask me"] = "Vraag me"; -$a->strings["An invitation is required."] = "Een uitnodiging is vereist."; -$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden."; -$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url"; -$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; -$a->strings["Please use a shorter name."] = "gebruik een kortere naam"; -$a->strings["Name too short."] = "Naam te kort"; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."; -$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan."; -$a->strings["Not a valid email address."] = "Geen geldig e-mailadres."; -$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen."; -$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."; -$a->strings["An error occurred during registration. Please try again."] = ""; -$a->strings["An error occurred creating your default profile. Please try again."] = ""; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; -$a->strings["Registration details for %s"] = "Registratie details voor %s"; -$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; -$a->strings["This entry was edited"] = ""; -$a->strings["Private Message"] = "Privébericht"; -$a->strings["Edit"] = "Bewerken"; -$a->strings["save to folder"] = "Bewaren in map"; -$a->strings["add star"] = "ster toevoegen"; -$a->strings["remove star"] = "ster verwijderen"; -$a->strings["toggle star status"] = "ster toevoegen of verwijderen"; -$a->strings["starred"] = "met ster"; -$a->strings["ignore thread"] = ""; -$a->strings["unignore thread"] = ""; -$a->strings["toggle ignore status"] = ""; -$a->strings["ignored"] = ""; -$a->strings["add tag"] = "label toevoegen"; -$a->strings["I like this (toggle)"] = "Vind ik leuk"; -$a->strings["like"] = "leuk"; -$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; -$a->strings["dislike"] = "niet leuk"; -$a->strings["Share this"] = "Delen"; -$a->strings["share"] = "Delen"; -$a->strings["to"] = "aan"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "wall-to-wall"; -$a->strings["via Wall-To-Wall:"] = "via wall-to-wall"; -$a->strings["%d comment"] = array( - 0 => "%d reactie", - 1 => "%d reacties", -); -$a->strings["This is you"] = "Dit ben jij"; -$a->strings["Bold"] = "Vet"; -$a->strings["Italic"] = "Cursief"; -$a->strings["Underline"] = "Onderstrepen"; -$a->strings["Quote"] = "Citeren"; -$a->strings["Code"] = "Broncode"; -$a->strings["Image"] = "Afbeelding"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Item not available."] = "Item niet beschikbaar"; -$a->strings["Item was not found."] = "Item niet gevonden"; +$a->strings["Permission denied."] = "Toegang geweigerd"; +$a->strings["Mood"] = "Stemming"; +$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden"; +$a->strings["Access denied."] = "Toegang geweigerd"; +$a->strings["Item not found."] = "Item niet gevonden."; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom"; +$a->strings["Authorize application connection"] = ""; +$a->strings["Return to your app and insert this Securty Code:"] = ""; +$a->strings["Please login to continue."] = "Log in om verder te gaan."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"; +$a->strings["Yes"] = "Ja"; +$a->strings["No"] = "Nee"; +$a->strings["No valid account found."] = "Geen geldige account gevonden."; +$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; +$a->strings["Password reset requested at %s"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."; +$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen"; +$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd."; +$a->strings["Your new password is"] = "Je nieuwe wachtwoord is"; +$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan"; +$a->strings["click here to login"] = "klik hier om in te loggen"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tBeste %1\$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\n\t\t\t"; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = ""; +$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s"; +$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."; +$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:"; +$a->strings["Reset"] = "Opnieuw"; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; $a->strings["No recipient selected."] = "Geen ontvanger geselecteerd."; $a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen"; @@ -728,37 +178,198 @@ $a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden." $a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten."; $a->strings["Message sent."] = "Bericht verzonden."; $a->strings["No recipient."] = "Geen ontvanger."; +$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; $a->strings["Send Private Message"] = "Verstuur privébericht"; $a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."; $a->strings["To:"] = "Aan:"; $a->strings["Subject:"] = "Onderwerp:"; $a->strings["Your message:"] = "Jouw bericht:"; -$a->strings["Group created."] = "Groep aangemaakt."; -$a->strings["Could not create group."] = "Kon de groep niet aanmaken."; -$a->strings["Group not found."] = "Groep niet gevonden."; -$a->strings["Group name changed."] = "Groepsnaam gewijzigd."; -$a->strings["Save Group"] = ""; -$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan."; -$a->strings["Group Name: "] = "Groepsnaam:"; -$a->strings["Group removed."] = "Groep verwijderd."; -$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen."; -$a->strings["Group Editor"] = "Groepsbewerker"; -$a->strings["Members"] = "Leden"; -$a->strings["All Contacts"] = "Alle Contacten"; -$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen."; +$a->strings["Upload photo"] = "Foto uploaden"; +$a->strings["Insert web link"] = "Voeg een webadres in"; +$a->strings["Welcome to Friendica"] = "Welkom bij Friendica"; +$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen."; +$a->strings["Getting Started"] = "Aan de slag"; +$a->strings["Friendica Walk-Through"] = "Doorloop Friendica"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Op je Snelstart 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["On your Settings 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 instellingenpagina. 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["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."] = "Upload een profielfoto, 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["Edit Your Profile"] = "Bewerk je profiel"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."; +$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["Connecting"] = "Verbinding aan het maken"; +$a->strings["Facebook"] = "Facebook"; +$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["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Als 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["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["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 Add New Contact 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 Voeg nieuw contact toe dialoog."; +$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 Connect or Follow 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 Connect of Follow 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["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["Groups"] = "Groepen"; +$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["Why Aren't My Posts Public?"] = "Waarom zijn mijn berichten niet openbaar?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie."; +$a->strings["Getting Help"] = "Hulp krijgen"; +$a->strings["Go to the Help Section"] = "Ga naar de help"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."; +$a->strings["Remove term"] = "Verwijder zoekterm"; +$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +$a->strings["Public access denied."] = "Niet vrij toegankelijk"; +$a->strings["Search"] = "Zoeken"; +$a->strings["No results."] = "Geen resultaten."; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s"; +$a->strings["Item not available."] = "Item niet beschikbaar"; +$a->strings["Item was not found."] = "Item niet gevonden"; +$a->strings["Account approved."] = "Account goedgekeurd."; +$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +$a->strings["Please login."] = "Inloggen."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."; +$a->strings["Import"] = "Importeren"; +$a->strings["Move account"] = "Account verplaatsen"; +$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren."; +$a->strings["Account file"] = "Account bestand"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; +$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar."; +$a->strings["Visible to:"] = "Zichtbaar voor:"; +$a->strings["No profile"] = "Geen profiel"; +$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]"; +$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:"; +$a->strings["Source input: "] = "Bron ingave:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe HTML):"; +$a->strings["bb2html: "] = "bb2html:"; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Bron ingave (Diaspora formaat):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s niet leuk"; +$a->strings["Post successful."] = "Bericht succesvol geplaatst."; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "Tijdsconversie"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."; +$a->strings["UTC time: %s"] = "UTC tijd: %s"; +$a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s"; +$a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s"; +$a->strings["Please select your timezone:"] = "Selecteer je tijdzone:"; +$a->strings["Save to Folder:"] = "Bewaren in map:"; +$a->strings["- select -"] = "- Kies -"; +$a->strings["Save"] = "Bewaren"; +$a->strings["Poke/Prod"] = "Aanstoten/porren"; +$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; +$a->strings["Recipient"] = "Ontvanger"; +$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; +$a->strings["Make this post private"] = "Dit bericht privé maken"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s"; +$a->strings["Export account"] = "Account exporteren"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."; +$a->strings["Export all"] = "Alles exporteren"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"; +$a->strings["Export personal data"] = "Persoonlijke gegevens exporteren"; +$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "; +$a->strings["Applications"] = "Toepassingen"; +$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd"; +$a->strings["Nothing new here"] = "Niets nieuw hier"; +$a->strings["Clear notifications"] = "Notificaties verwijderen"; +$a->strings["Cancel"] = "Annuleren"; +$a->strings["Tag removed"] = "Label verwijderd"; +$a->strings["Remove Item Tag"] = "Verwijder label van item"; +$a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: "; +$a->strings["Remove"] = "Verwijderen"; $a->strings["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."; +$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden"; $a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."; $a->strings["Existing Page Managers"] = "Bestaande paginabeheerders"; $a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed"; $a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "; -$a->strings["Remove"] = "Verwijderen"; $a->strings["Add"] = "Toevoegen"; $a->strings["No entries."] = "Geen gegevens."; +$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]"; +$a->strings["Edit contact"] = "Contact bewerken"; +$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep"; +$a->strings["Files"] = "Bestanden"; +$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud"; +$a->strings["Remove My Account"] = "Verwijder mijn account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."; +$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:"; +$a->strings["Contact not found."] = "Contact niet gevonden"; +$a->strings["Friend suggestion sent."] = "Vriendschapsvoorstel verzonden."; +$a->strings["Suggest Friends"] = "Stel vrienden voor"; +$a->strings["Suggest a friend for %s"] = "Stel een vriend voor aan %s"; +$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden."; +$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres."; +$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."; +$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt."; +$a->strings["%d message sent."] = array( + 0 => "%d bericht verzonden.", + 1 => "%d berichten verzonden.", +); +$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."; +$a->strings["Send invitations"] = "Verstuur uitnodigingen"; +$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"; +$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."; +$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:"; +$a->strings["Welcome to %s"] = "Welkom op %s"; +$a->strings["New Message"] = "Nieuw Bericht"; +$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden."; +$a->strings["Messages"] = "Privéberichten"; +$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?"; +$a->strings["Message deleted."] = "Bericht verwijderd."; +$a->strings["Conversation removed."] = "Gesprek verwijderd."; +$a->strings["No messages."] = "Geen berichten."; +$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s"; +$a->strings["You and %s"] = "Jij en %s"; +$a->strings["%s and You"] = "%s en jij"; +$a->strings["Delete conversation"] = "Verwijder gesprek"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d bericht", + 1 => "%d berichten", +); +$a->strings["Message not available."] = "Bericht niet beschikbaar."; +$a->strings["Delete message"] = "Verwijder bericht"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender."; +$a->strings["Send Reply"] = "Verstuur Antwoord"; +$a->strings["No contacts."] = "Geen contacten."; +$a->strings["View Contacts"] = "Bekijk contacten"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."; +$a->strings["Login failed."] = "Login mislukt."; +$a->strings["Not available."] = "Niet beschikbaar"; +$a->strings["Help:"] = "Help:"; +$a->strings["Help"] = "Help"; +$a->strings["Not Found"] = "Niet gevonden"; +$a->strings["Page not found."] = "Pagina niet gevonden"; $a->strings["Invalid request identifier."] = "Ongeldige request identifier."; $a->strings["Discard"] = "Verwerpen"; $a->strings["Ignore"] = "Negeren"; $a->strings["System"] = "Systeem"; +$a->strings["Network"] = "Netwerk"; $a->strings["Personal"] = "Persoonlijk"; +$a->strings["Introductions"] = "Verzoeken"; $a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken"; $a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken"; $a->strings["Notification type: "] = "Notificatiesoort:"; @@ -779,6 +390,7 @@ $a->strings["Fan/Admirer"] = "Fan/Bewonderaar"; $a->strings["Friend/Connect Request"] = "Vriendschapsverzoek"; $a->strings["New Follower"] = "Nieuwe Volger"; $a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken."; +$a->strings["Notifications"] = "Notificaties"; $a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk"; $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"; @@ -792,359 +404,16 @@ $a->strings["No more personal notifications."] = "Geen persoonlijke notificaties $a->strings["Personal Notifications"] = "Persoonlijke notificaties"; $a->strings["No more home notifications."] = "Geen tijdlijn-notificaties meer"; $a->strings["Home Notifications"] = "Tijdlijn-notificaties"; -$a->strings["No profile"] = "Geen profiel"; -$a->strings["everybody"] = "iedereen"; -$a->strings["Account"] = "Account"; -$a->strings["Additional features"] = "Extra functies"; -$a->strings["Display"] = "Weergave"; -$a->strings["Social Networks"] = "Sociale netwerken"; -$a->strings["Plugins"] = "Plugins"; -$a->strings["Connected apps"] = "Verbonden applicaties"; -$a->strings["Export personal data"] = "Persoonlijke gegevens exporteren"; -$a->strings["Remove account"] = "Account verwijderen"; -$a->strings["Missing some important data!"] = "Een belangrijk gegeven ontbreekt!"; -$a->strings["Update"] = "Wijzigen"; -$a->strings["Failed to connect with email account using the settings provided."] = "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen."; -$a->strings["Email settings updated."] = "E-mail instellingen bijgewerkt.."; -$a->strings["Features updated"] = "Functies bijgewerkt"; -$a->strings["Relocate message has been send to your contacts"] = ""; -$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd."; -$a->strings["Wrong password."] = "Verkeerd wachtwoord."; -$a->strings["Password changed."] = "Wachtwoord gewijzigd."; -$a->strings["Password update failed. Please try again."] = "Wachtwoord-)wijziging mislukt. Probeer opnieuw."; -$a->strings[" Please use a shorter name."] = "Gebruik een kortere naam."; -$a->strings[" Name too short."] = "Naam te kort."; -$a->strings["Wrong Password"] = "Verkeerd wachtwoord"; -$a->strings[" Not valid email."] = "Geen geldig e-mailadres."; -$a->strings[" Cannot change to that email."] = "Kan niet veranderen naar die e-mail."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep."; -$a->strings["Settings updated."] = "Instellingen bijgewerkt."; -$a->strings["Add application"] = "Toepassing toevoegen"; -$a->strings["Save Settings"] = "Instellingen opslaan"; -$a->strings["Name"] = "Naam"; -$a->strings["Consumer Key"] = "Gebruikerssleutel"; -$a->strings["Consumer Secret"] = "Gebruikersgeheim"; -$a->strings["Redirect"] = "Doorverwijzing"; -$a->strings["Icon url"] = "URL pictogram"; -$a->strings["You can't edit this application."] = "Je kunt deze toepassing niet wijzigen."; -$a->strings["Connected Apps"] = "Verbonden applicaties"; -$a->strings["Client key starts with"] = ""; -$a->strings["No name"] = "Geen naam"; -$a->strings["Remove authorization"] = "Verwijder authorisatie"; -$a->strings["No Plugin settings configured"] = ""; -$a->strings["Plugin Settings"] = "Plugin Instellingen"; -$a->strings["Off"] = "Uit"; -$a->strings["On"] = "Aan"; -$a->strings["Additional Features"] = "Extra functies"; -$a->strings["Built-in support for %s connectivity is %s"] = "Ingebouwde ondersteuning voor connectiviteit met %s is %s"; -$a->strings["enabled"] = "ingeschakeld"; -$a->strings["disabled"] = "uitgeschakeld"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "E-mailtoegang is op deze website uitgeschakeld."; -$a->strings["Email/Mailbox Setup"] = "E-mail Instellen"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken."; -$a->strings["Last successful email check:"] = "Laatste succesvolle e-mail controle:"; -$a->strings["IMAP server name:"] = "IMAP server naam:"; -$a->strings["IMAP port:"] = "IMAP poort:"; -$a->strings["Security:"] = "Beveiliging:"; -$a->strings["None"] = "Geen"; -$a->strings["Email login name:"] = "E-mail login naam:"; -$a->strings["Email password:"] = "E-mail wachtwoord:"; -$a->strings["Reply-to address:"] = "Antwoord adres:"; -$a->strings["Send public posts to all email contacts:"] = "Openbare posts naar alle e-mail contacten versturen:"; -$a->strings["Action after import:"] = "Actie na importeren:"; -$a->strings["Mark as seen"] = "Als 'gelezen' markeren"; -$a->strings["Move to folder"] = "Naar map verplaatsen"; -$a->strings["Move to folder:"] = "Verplaatsen naar map:"; -$a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; -$a->strings["Display Settings"] = "Scherminstellingen"; -$a->strings["Display Theme:"] = "Schermthema:"; -$a->strings["Mobile Theme:"] = "Mobiel thema:"; -$a->strings["Update browser every xx seconds"] = "Browser elke xx seconden verversen"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 seconden, geen maximum"; -$a->strings["Number of items to display per page:"] = "Aantal items te tonen per pagina:"; -$a->strings["Maximum of 100 items"] = "Maximum 100 items"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Aantal items per pagina als je een mobiel toestel gebruikt:"; -$a->strings["Don't show emoticons"] = "Emoticons niet tonen"; -$a->strings["Don't show notices"] = ""; -$a->strings["Infinite scroll"] = "Oneindig scrollen"; -$a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["User Types"] = "Gebruikerstypes"; -$a->strings["Community Types"] = "Forum/groepstypes"; -$a->strings["Normal Account Page"] = "Normale accountpagina"; -$a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel"; -$a->strings["Soapbox Page"] = "Zeepkist-pagina"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen."; -$a->strings["Community Forum/Celebrity Account"] = "Forum/groeps- of beroemdheid-account"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven."; -$a->strings["Automatic Friend Page"] = "Automatisch Vriendschapspagina"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden."; -$a->strings["Private Forum [Experimental]"] = "Privé-forum [experimenteel]"; -$a->strings["Private forum - approved members only"] = "Privé-forum - enkel voor goedgekeurde leden"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."; -$a->strings["Publish your default profile in your local site directory?"] = "Je standaardprofiel in je lokale gids publiceren?"; -$a->strings["No"] = "Nee"; -$a->strings["Publish your default profile in the global social directory?"] = "Je standaardprofiel in de globale sociale gids publiceren?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"; -$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; -$a->strings["Allow friends to post to your profile page?"] = "Vrienden toestaan om op jou profielpagina te posten?"; -$a->strings["Allow friends to tag your posts?"] = "Sta vrienden toe om jouw berichten te labelen?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?"; -$a->strings["Permit unknown people to send you private mail?"] = "Mogen onbekende personen jou privé berichten sturen?"; -$a->strings["Profile is not published."] = "Profiel is niet gepubliceerd."; -$a->strings["or"] = "of"; -$a->strings["Your Identity Address is"] = "Jouw Identiteitsadres is"; -$a->strings["Automatically expire posts after this many days:"] = "Laat berichten automatisch vervallen na zo veel dagen:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."; -$a->strings["Advanced expiration settings"] = "Geavanceerde instellingen voor vervallen"; -$a->strings["Advanced Expiration"] = "Geavanceerd Verval:"; -$a->strings["Expire posts:"] = "Laat berichten vervallen:"; -$a->strings["Expire personal notes:"] = "Laat persoonlijke aantekeningen verlopen:"; -$a->strings["Expire starred posts:"] = "Laat berichten met ster verlopen"; -$a->strings["Expire photos:"] = "Laat foto's vervallen:"; -$a->strings["Only expire posts by others:"] = "Laat alleen berichten door anderen vervallen:"; -$a->strings["Account Settings"] = "Account Instellingen"; -$a->strings["Password Settings"] = "Wachtwoord Instellingen"; -$a->strings["New Password:"] = "Nieuw Wachtwoord:"; -$a->strings["Confirm:"] = "Bevestig:"; -$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"; -$a->strings["Current Password:"] = "Huidig wachtwoord:"; -$a->strings["Your current password to confirm the changes"] = "Je huidig wachtwoord om de wijzigingen te bevestigen"; -$a->strings["Password:"] = "Wachtwoord:"; -$a->strings["Basic Settings"] = "Basis Instellingen"; -$a->strings["Email Address:"] = "E-mailadres:"; -$a->strings["Your Timezone:"] = "Je Tijdzone:"; -$a->strings["Default Post Location:"] = "Standaard locatie:"; -$a->strings["Use Browser Location:"] = "Gebruik Webbrowser Locatie:"; -$a->strings["Security and Privacy Settings"] = "Instellingen voor Beveiliging en Privacy"; -$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal vriendschapsverzoeken per dag:"; -$a->strings["(to prevent spam abuse)"] = "(om spam misbruik te voorkomen)"; -$a->strings["Default Post Permissions"] = "Standaard rechten voor nieuwe berichten"; -$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -$a->strings["Show to Groups"] = "Tonen aan groepen"; -$a->strings["Show to Contacts"] = "Tonen aan contacten"; -$a->strings["Default Private Post"] = "Standaard Privé Post"; -$a->strings["Default Public Post"] = "Standaard Publieke Post"; -$a->strings["Default Permissions for New Posts"] = "Standaard rechten voor nieuwe berichten"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; -$a->strings["Notification Settings"] = "Notificatie Instellingen"; -$a->strings["By default post a status message when:"] = "Post automatisch een bericht op je tijdlijn wanneer:"; -$a->strings["accepting a friend request"] = "Een vriendschapsverzoek accepteren"; -$a->strings["joining a forum/community"] = "Lid worden van een groep/forum"; -$a->strings["making an interesting profile change"] = "Een interessante verandering aan je profiel"; -$a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:"; -$a->strings["You receive an introduction"] = "Je ontvangt een vriendschaps- of connectieverzoek"; -$a->strings["Your introductions are confirmed"] = "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"; -$a->strings["Someone writes on your profile wall"] = "Iemand iets op je tijdlijn schrijft"; -$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; -$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; -$a->strings["You receive a friend suggestion"] = "Je een suggestie voor een vriendschap ontvangt"; -$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; -$a->strings["You are poked/prodded/etc. in a post"] = "Je in een bericht bent aangestoten/gepord/etc."; -$a->strings["Text-only notification emails"] = ""; -$a->strings["Send text only notification emails, without the html part"] = ""; -$a->strings["Advanced Account/Page Type Settings"] = ""; -$a->strings["Change the behaviour of this account for special situations"] = ""; -$a->strings["Relocate"] = ""; -$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; -$a->strings["Resend relocate message to contacts"] = ""; -$a->strings["Common Friends"] = "Gedeelde Vrienden"; -$a->strings["No contacts in common."] = "Geen gedeelde contacten."; -$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar."; -$a->strings["Visible to:"] = "Zichtbaar voor:"; -$a->strings["%d contact edited."] = array( - 0 => "", - 1 => "", -); -$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de contactgegevens"; -$a->strings["Could not locate selected profile."] = "Kon het geselecteerde profiel niet vinden."; -$a->strings["Contact updated."] = "Contact bijgewerkt."; -$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen."; -$a->strings["Contact has been blocked"] = "Contact is geblokkeerd"; -$a->strings["Contact has been unblocked"] = "Contact is gedeblokkeerd"; -$a->strings["Contact has been ignored"] = "Contact wordt genegeerd"; -$a->strings["Contact has been unignored"] = "Contact wordt niet meer genegeerd"; -$a->strings["Contact has been archived"] = "Contact is gearchiveerd"; -$a->strings["Contact has been unarchived"] = "Contact is niet meer gearchiveerd"; -$a->strings["Do you really want to delete this contact?"] = "Wil je echt dit contact verwijderen?"; -$a->strings["Contact has been removed."] = "Contact is verwijderd."; -$a->strings["You are mutual friends with %s"] = "Je bent wederzijds bevriend met %s"; -$a->strings["You are sharing with %s"] = "Je deelt met %s"; -$a->strings["%s is sharing with you"] = "%s deelt met jou"; -$a->strings["Private communications are not available for this contact."] = "Privécommunicatie met dit contact is niet beschikbaar."; -$a->strings["Never"] = "Nooit"; -$a->strings["(Update was successful)"] = "(Wijziging is geslaagd)"; -$a->strings["(Update was not successful)"] = "(Wijziging is niet geslaagd)"; -$a->strings["Suggest friends"] = "Stel vrienden voor"; -$a->strings["Network type: %s"] = "Netwerk type: %s"; -$a->strings["View all contacts"] = "Alle contacten zien"; -$a->strings["Unblock"] = "Blokkering opheffen"; -$a->strings["Block"] = "Blokkeren"; -$a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status"; -$a->strings["Unignore"] = "Negeer niet meer"; -$a->strings["Toggle Ignored status"] = "Schakel negeerstatus"; -$a->strings["Unarchive"] = "Archiveer niet meer"; -$a->strings["Archive"] = "Archiveer"; -$a->strings["Toggle Archive status"] = "Schakel archiveringsstatus"; -$a->strings["Repair"] = "Herstellen"; -$a->strings["Advanced Contact Settings"] = "Geavanceerde instellingen voor contacten"; -$a->strings["Communications lost with this contact!"] = "Communicatie met dit contact is verbroken!"; -$a->strings["Fetch further information for feeds"] = ""; -$a->strings["Disabled"] = ""; -$a->strings["Fetch information"] = ""; -$a->strings["Fetch information and keywords"] = ""; -$a->strings["Contact Editor"] = "Contactbewerker"; -$a->strings["Profile Visibility"] = "Zichtbaarheid profiel"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "; -$a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen"; -$a->strings["Edit contact notes"] = "Wijzig aantekeningen over dit contact"; -$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]"; -$a->strings["Block/Unblock contact"] = "Blokkeer/deblokkeer contact"; -$a->strings["Ignore contact"] = "Negeer contact"; -$a->strings["Repair URL settings"] = "Repareer URL-instellingen"; -$a->strings["View conversations"] = "Toon conversaties"; -$a->strings["Delete contact"] = "Verwijder contact"; -$a->strings["Last update:"] = "Laatste wijziging:"; -$a->strings["Update public posts"] = "Openbare posts aanpassen"; -$a->strings["Update now"] = "Wijzig nu"; -$a->strings["Currently blocked"] = "Op dit moment geblokkeerd"; -$a->strings["Currently ignored"] = "Op dit moment genegeerd"; -$a->strings["Currently archived"] = "Op dit moment gearchiveerd"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn"; -$a->strings["Notification for new posts"] = "Meldingen voor nieuwe berichten"; -$a->strings["Send a notification of every new post of this contact"] = ""; -$a->strings["Blacklisted keywords"] = ""; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; -$a->strings["Suggestions"] = "Voorstellen"; -$a->strings["Suggest potential friends"] = "Stel vrienden voor"; -$a->strings["Show all contacts"] = "Toon alle contacten"; -$a->strings["Unblocked"] = "Niet geblokkeerd"; -$a->strings["Only show unblocked contacts"] = "Toon alleen niet-geblokkeerde contacten"; -$a->strings["Blocked"] = "Geblokkeerd"; -$a->strings["Only show blocked contacts"] = "Toon alleen geblokkeerde contacten"; -$a->strings["Ignored"] = "Genegeerd"; -$a->strings["Only show ignored contacts"] = "Toon alleen genegeerde contacten"; -$a->strings["Archived"] = "Gearchiveerd"; -$a->strings["Only show archived contacts"] = "Toon alleen gearchiveerde contacten"; -$a->strings["Hidden"] = "Verborgen"; -$a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten"; -$a->strings["Mutual Friendship"] = "Wederzijdse vriendschap"; -$a->strings["is a fan of yours"] = "Is een fan van jou"; -$a->strings["you are a fan of"] = "Jij bent een fan van"; -$a->strings["Edit contact"] = "Contact bewerken"; -$a->strings["Search your contacts"] = "Doorzoek je contacten"; -$a->strings["Finding: "] = "Gevonden:"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; -$a->strings["Or - did you try to upload an empty file?"] = ""; -$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -$a->strings["File upload failed."] = "Uploaden van bestand mislukt."; -$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]"; -$a->strings["Export account"] = "Account exporteren"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."; -$a->strings["Export all"] = "Alles exporteren"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."; -$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = ""; -$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden."; -$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."; -$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):"; -$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?"; -$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging."; -$a->strings["Your invitation ID: "] = "Je uitnodigingsid:"; -$a->strings["Registration"] = "Registratie"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Je volledige naam (bijv. Jan Jansens):"; -$a->strings["Your Email Address: "] = "Je email adres:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@\$sitename' zijn."; -$a->strings["Choose a nickname: "] = "Kies een bijnaam:"; -$a->strings["Import"] = "Importeren"; -$a->strings["Import your profile to this friendica instance"] = ""; -$a->strings["Post successful."] = "Bericht succesvol geplaatst."; -$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud"; -$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt."; -$a->strings["Tips for New Members"] = "Tips voor nieuwe leden"; -$a->strings["Public access denied."] = "Niet vrij toegankelijk"; -$a->strings["No videos selected"] = "Geen video's geselecteerd"; -$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; -$a->strings["View Album"] = "Album bekijken"; -$a->strings["Recent Videos"] = "Recente video's"; -$a->strings["Upload New Videos"] = "Nieuwe video's uploaden"; -$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."; -$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:"; -$a->strings["Item not found"] = "Item niet gevonden"; -$a->strings["Edit post"] = "Bericht bewerken"; -$a->strings["People Search"] = "Mensen Zoeken"; -$a->strings["No matches"] = "Geen resultaten"; -$a->strings["Account approved."] = "Account goedgekeurd."; -$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -$a->strings["Please login."] = "Inloggen."; -$a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd"; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie"; -$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."; -$a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto."; -$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", - 1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden", -); -$a->strings["Introduction complete."] = "Verzoek voltooid."; -$a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. "; -$a->strings["Profile unavailable."] = "Profiel onbeschikbaar"; -$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["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 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["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["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s."; -$a->strings["Invalid profile URL."] = "Ongeldig profiel adres."; -$a->strings["Your introduction has been sent."] = "Je verzoek is verzonden."; -$a->strings["Please login to confirm introduction."] = "Log in om je verzoek te bevestigen."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Je huidige identiteit is niet de juiste. Log met dit profiel in."; -$a->strings["Hide this contact"] = "Verberg dit contact"; -$a->strings["Welcome home %s."] = "Welkom terug %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan."; -$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Beantwoord het volgende:"; -$a->strings["Does %s know you?"] = "Kent %s jou?"; -$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:"; -$a->strings["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 niet dit formulier. Vul %s in in je Diaspora zoekbalk."; -$a->strings["Your Identity Address:"] = "Adres van uw identiteit:"; -$a->strings["Submit Request"] = "Aanvraag indienen"; -$a->strings["Files"] = "Bestanden"; -$a->strings["Authorize application connection"] = ""; -$a->strings["Return to your app and insert this Securty Code:"] = ""; -$a->strings["Please login to continue."] = "Log in om verder te gaan."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"; -$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."; -$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; -$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep"; -$a->strings["Contact not found."] = "Contact niet gevonden"; -$a->strings["Friend suggestion sent."] = "Vriendschapsvoorstel verzonden."; -$a->strings["Suggest Friends"] = "Stel vrienden voor"; -$a->strings["Suggest a friend for %s"] = "Stel een vriend voor aan %s"; -$a->strings["link"] = "link"; -$a->strings["No contacts."] = "Geen contacten."; $a->strings["Theme settings updated."] = "Thema-instellingen aangepast."; $a->strings["Site"] = "Website"; $a->strings["Users"] = "Gebruiker"; +$a->strings["Plugins"] = "Plugins"; $a->strings["Themes"] = "Thema's"; $a->strings["DB updates"] = "DB aanpassingen"; $a->strings["Logs"] = "Logs"; $a->strings["probe address"] = ""; $a->strings["check webfinger"] = ""; +$a->strings["Admin"] = "Beheer"; $a->strings["Plugin Features"] = "Plugin Functies"; $a->strings["diagnostics"] = ""; $a->strings["User registrations waiting for confirmation"] = "Gebruikersregistraties wachten op bevestiging"; @@ -1163,10 +432,16 @@ $a->strings["Version"] = "Versie"; $a->strings["Active plugins"] = "Actieve plug-ins"; $a->strings["Can not parse base url. Must have at least ://"] = ""; $a->strings["Site settings updated."] = "Site instellingen gewijzigd."; +$a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; $a->strings["No community page"] = ""; $a->strings["Public postings from users of this site"] = ""; $a->strings["Global community page"] = ""; +$a->strings["Never"] = "Nooit"; $a->strings["At post arrival"] = ""; +$a->strings["Frequently"] = "Frequent"; +$a->strings["Hourly"] = "elk uur"; +$a->strings["Twice daily"] = "Twee keer per dag"; +$a->strings["Daily"] = "dagelijks"; $a->strings["Multi user instance"] = "Server voor meerdere gebruikers"; $a->strings["Closed"] = "Gesloten"; $a->strings["Requires approval"] = "Toestemming vereist"; @@ -1174,6 +449,8 @@ $a->strings["Open"] = "Open"; $a->strings["No SSL policy, links will track page SSL state"] = "Geen SSL beleid, links zullen SSL status van pagina volgen"; $a->strings["Force all links to use SSL"] = "Verplicht alle links om SSL te gebruiken"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)"; +$a->strings["Save Settings"] = "Instellingen opslaan"; +$a->strings["Registration"] = "Registratie"; $a->strings["File upload"] = "Uploaden bestand"; $a->strings["Policies"] = "Beleid"; $a->strings["Advanced"] = "Geavanceerd"; @@ -1269,6 +546,8 @@ $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."] = "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt."; $a->strings["Maximum Load Average"] = "Maximum gemiddelde belasting"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50."; +$a->strings["Maximum Load Average (Frontend)"] = ""; +$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; $a->strings["Use MySQL full text engine"] = "Gebruik de tekst-zoekfunctie van MySQL"; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters."; $a->strings["Suppress Language"] = ""; @@ -1290,6 +569,8 @@ $a->strings["The old style pager has page numbers but slows down massively the p $a->strings["Only search in tags"] = ""; $a->strings["On large systems the text search can slow down the system extremely."] = ""; $a->strings["New base url"] = ""; +$a->strings["RINO Encryption"] = ""; +$a->strings["Encryption layer between nodes."] = ""; $a->strings["Update has been marked successful"] = "Wijziging succesvol gemarkeerd "; $a->strings["Database structure update %s was successfully applied."] = ""; $a->strings["Executing of database structure update %s failed with error: %s"] = ""; @@ -1305,6 +586,7 @@ $a->strings["Mark success (if update was manually applied)"] = "Markeren als suc $a->strings["Attempt to execute this update step automatically"] = "Probeer deze stap automatisch uit te voeren"; $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; $a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = ""; +$a->strings["Registration details for %s"] = "Registratie details voor %s"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s gebruiker geblokkeerd/niet geblokkeerd", 1 => "%s gebruikers geblokkeerd/niet geblokkeerd", @@ -1321,8 +603,12 @@ $a->strings["select all"] = "Alles selecteren"; $a->strings["User registrations waiting for confirm"] = "Gebruikersregistraties wachten op een bevestiging"; $a->strings["User waiting for permanent deletion"] = ""; $a->strings["Request date"] = "Registratiedatum"; +$a->strings["Name"] = "Naam"; +$a->strings["Email"] = "E-mail"; $a->strings["No registrations."] = "Geen registraties."; $a->strings["Deny"] = "Weiger"; +$a->strings["Block"] = "Blokkeren"; +$a->strings["Unblock"] = "Blokkering opheffen"; $a->strings["Site admin"] = "Sitebeheerder"; $a->strings["Account expired"] = "Account verlopen"; $a->strings["New User"] = "Nieuwe gebruiker"; @@ -1330,6 +616,7 @@ $a->strings["Register date"] = "Registratiedatum"; $a->strings["Last login"] = "Laatste login"; $a->strings["Last item"] = "Laatste item"; $a->strings["Deleted since"] = "Verwijderd sinds"; +$a->strings["Account"] = "Account"; $a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"; $a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"; $a->strings["Name of the new user."] = "Naam van nieuwe gebruiker"; @@ -1353,173 +640,230 @@ $a->strings["Enable Debugging"] = ""; $a->strings["Log file"] = "Logbestand"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie."; $a->strings["Log level"] = "Log niveau"; +$a->strings["Update now"] = "Wijzig nu"; $a->strings["Close"] = "Afsluiten"; $a->strings["FTP Host"] = "FTP Server"; $a->strings["FTP Path"] = "FTP Pad"; $a->strings["FTP User"] = "FTP Gebruiker"; $a->strings["FTP Password"] = "FTP wachtwoord"; -$a->strings["Image exceeds size limit of %d"] = "Afbeelding is groter dan de toegestane %d"; -$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["Welcome to %s"] = "Welkom op %s"; -$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["Search Results For:"] = "Zoekresultaten voor:"; -$a->strings["Remove term"] = "Verwijder zoekterm"; -$a->strings["Commented Order"] = "Nieuwe reacties bovenaan"; -$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; -$a->strings["Posted Order"] = "Nieuwe berichten bovenaan"; -$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; -$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben"; -$a->strings["New"] = "Nieuw"; -$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; -$a->strings["Shared Links"] = "Gedeelde links"; -$a->strings["Interesting Links"] = "Interessante links"; -$a->strings["Starred"] = "Met ster"; -$a->strings["Favourite Posts"] = "Favoriete berichten"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk.", - 1 => "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk.", +$a->strings["Friends of %s"] = "Vrienden van %s"; +$a->strings["No friends to display."] = "Geen vrienden om te laten zien."; +$a->strings["Common Friends"] = "Gedeelde Vrienden"; +$a->strings["No contacts in common."] = "Geen gedeelde contacten."; +$a->strings["%d contact edited."] = array( + 0 => "", + 1 => "", ); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden."; +$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de contactgegevens"; +$a->strings["Could not locate selected profile."] = "Kon het geselecteerde profiel niet vinden."; +$a->strings["Contact updated."] = "Contact bijgewerkt."; +$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen."; +$a->strings["Contact has been blocked"] = "Contact is geblokkeerd"; +$a->strings["Contact has been unblocked"] = "Contact is gedeblokkeerd"; +$a->strings["Contact has been ignored"] = "Contact wordt genegeerd"; +$a->strings["Contact has been unignored"] = "Contact wordt niet meer genegeerd"; +$a->strings["Contact has been archived"] = "Contact is gearchiveerd"; +$a->strings["Contact has been unarchived"] = "Contact is niet meer gearchiveerd"; +$a->strings["Do you really want to delete this contact?"] = "Wil je echt dit contact verwijderen?"; +$a->strings["Contact has been removed."] = "Contact is verwijderd."; +$a->strings["You are mutual friends with %s"] = "Je bent wederzijds bevriend met %s"; +$a->strings["You are sharing with %s"] = "Je deelt met %s"; +$a->strings["%s is sharing with you"] = "%s deelt met jou"; +$a->strings["Private communications are not available for this contact."] = "Privécommunicatie met dit contact is niet beschikbaar."; +$a->strings["(Update was successful)"] = "(Wijziging is geslaagd)"; +$a->strings["(Update was not successful)"] = "(Wijziging is niet geslaagd)"; +$a->strings["Suggest friends"] = "Stel vrienden voor"; +$a->strings["Network type: %s"] = "Netwerk type: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d gedeeld contact", + 1 => "%d gedeelde contacten", +); +$a->strings["View all contacts"] = "Alle contacten zien"; +$a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status"; +$a->strings["Unignore"] = "Negeer niet meer"; +$a->strings["Toggle Ignored status"] = "Schakel negeerstatus"; +$a->strings["Unarchive"] = "Archiveer niet meer"; +$a->strings["Archive"] = "Archiveer"; +$a->strings["Toggle Archive status"] = "Schakel archiveringsstatus"; +$a->strings["Repair"] = "Herstellen"; +$a->strings["Advanced Contact Settings"] = "Geavanceerde instellingen voor contacten"; +$a->strings["Communications lost with this contact!"] = "Communicatie met dit contact is verbroken!"; +$a->strings["Fetch further information for feeds"] = ""; +$a->strings["Disabled"] = ""; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; +$a->strings["Contact Editor"] = "Contactbewerker"; +$a->strings["Profile Visibility"] = "Zichtbaarheid profiel"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "; +$a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen"; +$a->strings["Edit contact notes"] = "Wijzig aantekeningen over dit contact"; +$a->strings["Block/Unblock contact"] = "Blokkeer/deblokkeer contact"; +$a->strings["Ignore contact"] = "Negeer contact"; +$a->strings["Repair URL settings"] = "Repareer URL-instellingen"; +$a->strings["View conversations"] = "Toon conversaties"; +$a->strings["Delete contact"] = "Verwijder contact"; +$a->strings["Last update:"] = "Laatste wijziging:"; +$a->strings["Update public posts"] = "Openbare posts aanpassen"; +$a->strings["Currently blocked"] = "Op dit moment geblokkeerd"; +$a->strings["Currently ignored"] = "Op dit moment genegeerd"; +$a->strings["Currently archived"] = "Op dit moment gearchiveerd"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn"; +$a->strings["Notification for new posts"] = "Meldingen voor nieuwe berichten"; +$a->strings["Send a notification of every new post of this contact"] = ""; +$a->strings["Blacklisted keywords"] = ""; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; +$a->strings["Suggestions"] = "Voorstellen"; +$a->strings["Suggest potential friends"] = "Stel vrienden voor"; +$a->strings["All Contacts"] = "Alle Contacten"; +$a->strings["Show all contacts"] = "Toon alle contacten"; +$a->strings["Unblocked"] = "Niet geblokkeerd"; +$a->strings["Only show unblocked contacts"] = "Toon alleen niet-geblokkeerde contacten"; +$a->strings["Blocked"] = "Geblokkeerd"; +$a->strings["Only show blocked contacts"] = "Toon alleen geblokkeerde contacten"; +$a->strings["Ignored"] = "Genegeerd"; +$a->strings["Only show ignored contacts"] = "Toon alleen genegeerde contacten"; +$a->strings["Archived"] = "Gearchiveerd"; +$a->strings["Only show archived contacts"] = "Toon alleen gearchiveerde contacten"; +$a->strings["Hidden"] = "Verborgen"; +$a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten"; +$a->strings["Search your contacts"] = "Doorzoek je contacten"; +$a->strings["Finding: "] = "Gevonden:"; +$a->strings["Find"] = "Zoek"; +$a->strings["Update"] = "Wijzigen"; +$a->strings["Mutual Friendship"] = "Wederzijdse vriendschap"; +$a->strings["is a fan of yours"] = "Is een fan van jou"; +$a->strings["you are a fan of"] = "Jij bent een fan van"; $a->strings["No such group"] = "Zo'n groep bestaat niet"; $a->strings["Group is empty"] = "De groep is leeg"; -$a->strings["Group: "] = "Groep:"; -$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["Invalid contact."] = "Ongeldig contact."; -$a->strings["- select -"] = "- Kies -"; -$a->strings["This is Friendica, version"] = "Dit is Friendica, versie"; -$a->strings["running at web location"] = "draaiend op web-adres"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bezoek Friendica.com om meer te leren over het Friendica project."; -$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"; -$a->strings["Installed plugins/addons/apps:"] = "Geïnstalleerde plugins/toepassingen:"; -$a->strings["No installed plugins/addons/apps"] = "Geen plugins of toepassingen geïnstalleerd"; -$a->strings["Applications"] = "Toepassingen"; -$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd"; -$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar"; -$a->strings["Album not found."] = "Album niet gevonden"; -$a->strings["Delete Album"] = "Verwijder album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"; -$a->strings["Delete Photo"] = "Verwijder foto"; -$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s"; -$a->strings["a photo"] = "een foto"; -$a->strings["Image exceeds size limit of "] = "Afbeelding is groter dan de maximale afmeting van"; -$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg."; -$a->strings["No photos selected"] = "Geen foto's geselecteerd"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."; -$a->strings["Upload Photos"] = "Upload foto's"; -$a->strings["New album name: "] = "Nieuwe albumnaam: "; -$a->strings["or existing album name: "] = "of bestaande albumnaam: "; -$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload"; -$a->strings["Permissions"] = "Rechten"; -$a->strings["Private Photo"] = "Privé foto"; -$a->strings["Public Photo"] = "Publieke foto"; -$a->strings["Edit Album"] = "Album wijzigen"; -$a->strings["Show Newest First"] = "Toon niewste eerst"; -$a->strings["Show Oldest First"] = "Toon oudste eerst"; -$a->strings["View Photo"] = "Bekijk foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."; -$a->strings["Photo not available"] = "Foto is niet beschikbaar"; -$a->strings["View photo"] = "Bekijk foto"; -$a->strings["Edit photo"] = "Bewerk foto"; -$a->strings["Use as profile photo"] = "Gebruik als profielfoto"; -$a->strings["View Full Size"] = "Bekijk in volledig formaat"; -$a->strings["Tags: "] = "Labels: "; -$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]"; -$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)"; -$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)"; -$a->strings["New album name"] = "Nieuwe albumnaam"; -$a->strings["Caption"] = "Onderschrift"; -$a->strings["Add a Tag"] = "Een label toevoegen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "; -$a->strings["Private photo"] = "Privé foto"; -$a->strings["Public photo"] = "Publieke foto"; -$a->strings["Recent Photos"] = "Recente foto's"; -$a->strings["The post was created"] = ""; -$a->strings["Contact added"] = "Contact toegevoegd"; -$a->strings["Move account"] = "Account verplaatsen"; -$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren."; -$a->strings["Account file"] = "Account bestand"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; -$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden."; -$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres."; -$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."; -$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt."; -$a->strings["%d message sent."] = array( - 0 => "%d bericht verzonden.", - 1 => "%d berichten verzonden.", +$a->strings["Group: %s"] = ""; +$a->strings["View in context"] = "In context bekijken"; +$a->strings["Contact settings applied."] = "Contactinstellingen toegepast."; +$a->strings["Contact update failed."] = "Aanpassen van contact mislukt."; +$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = ""; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."; +$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker"; +$a->strings["No mirroring"] = ""; +$a->strings["Mirror as forwarded posting"] = ""; +$a->strings["Mirror as my own posting"] = ""; +$a->strings["Refetch contact data"] = ""; +$a->strings["Account Nickname"] = "Bijnaam account"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam"; +$a->strings["Account URL"] = "URL account"; +$a->strings["Friend Request URL"] = "URL vriendschapsverzoek"; +$a->strings["Friend Confirm URL"] = "URL vriendschapsbevestiging"; +$a->strings["Notification Endpoint URL"] = ""; +$a->strings["Poll/Feed URL"] = "URL poll/feed"; +$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL"; +$a->strings["Remote Self"] = ""; +$a->strings["Mirror postings from this contact"] = ""; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; +$a->strings["Profile not found."] = "Profiel niet gevonden"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."; +$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen."; +$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:"; +$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid."; +$a->strings["Remote site reported: "] = "Website op afstand berichtte: "; +$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw."; +$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen."; +$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s"; +$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."; +$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou."; +$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."; +$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen."; +$a->strings["Unable to update your contact profile details on our system"] = ""; +$a->strings["[Name Withheld]"] = "[Naam achtergehouden]"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s"; +$a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd"; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie"; +$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."; +$a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto."; +$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", + 1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden", ); -$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."; -$a->strings["Send invitations"] = "Verstuur uitnodigingen"; -$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"; -$a->strings["Access denied."] = "Toegang geweigerd"; -$a->strings["No valid account found."] = "Geen geldige account gevonden."; -$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; -$a->strings["Password reset requested at %s"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."; -$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd."; -$a->strings["Your new password is"] = "Je nieuwe wachtwoord is"; -$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan"; -$a->strings["click here to login"] = "klik hier om in te loggen"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = ""; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = ""; -$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s"; -$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."; -$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:"; -$a->strings["Reset"] = "Opnieuw"; -$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:"; -$a->strings["Source input: "] = "Bron ingave:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe HTML):"; -$a->strings["bb2html: "] = "bb2html:"; -$a->strings["bb2html2bb: "] = "bb2html2bb: "; -$a->strings["bb2md: "] = "bb2md: "; -$a->strings["bb2md2html: "] = "bb2md2html: "; -$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Bron ingave (Diaspora formaat):"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Tag removed"] = "Label verwijderd"; -$a->strings["Remove Item Tag"] = "Verwijder label van item"; -$a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: "; -$a->strings["Remove My Account"] = "Verwijder mijn account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."; -$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:"; -$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie."; -$a->strings["Profile Visibility Editor"] = ""; -$a->strings["Visible To"] = "Zichtbaar voor"; -$a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)"; -$a->strings["Profile Match"] = "Profielmatch"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."; -$a->strings["is interested in:"] = "Is geïnteresseerd in:"; +$a->strings["Introduction complete."] = "Verzoek voltooid."; +$a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. "; +$a->strings["Profile unavailable."] = "Profiel onbeschikbaar"; +$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["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 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["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["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s."; +$a->strings["Invalid profile URL."] = "Ongeldig profiel adres."; +$a->strings["Disallowed profile URL."] = "Niet toegelaten profiel adres."; +$a->strings["Your introduction has been sent."] = "Je verzoek is verzonden."; +$a->strings["Please login to confirm introduction."] = "Log in om je verzoek te bevestigen."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Je huidige identiteit is niet de juiste. Log met dit profiel in."; +$a->strings["Confirm"] = "Bevestig"; +$a->strings["Hide this contact"] = "Verberg dit contact"; +$a->strings["Welcome home %s."] = "Welkom terug %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan."; +$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Beantwoord het volgende:"; +$a->strings["Does %s know you?"] = "Kent %s jou?"; +$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk."; +$a->strings["Your Identity Address:"] = "Adres van uw identiteit:"; +$a->strings["Submit Request"] = "Aanvraag indienen"; +$a->strings["Find on this site"] = "Op deze website zoeken"; +$a->strings["Site Directory"] = "Websitegids"; +$a->strings["Age: "] = "Leeftijd:"; +$a->strings["Gender: "] = "Geslacht:"; +$a->strings["Location:"] = "Plaats:"; +$a->strings["Gender:"] = "Geslacht:"; +$a->strings["Status:"] = "Tijdlijn:"; +$a->strings["Homepage:"] = "Website:"; +$a->strings["About:"] = "Over:"; +$a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn)."; +$a->strings["People Search - %s"] = ""; +$a->strings["No matches"] = "Geen resultaten"; +$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt."; +$a->strings["Item has been removed."] = "Item is verwijderd."; +$a->strings["Item not found"] = "Item niet gevonden"; +$a->strings["Edit post"] = "Bericht bewerken"; +$a->strings["upload photo"] = "Foto uploaden"; +$a->strings["Attach file"] = "Bestand bijvoegen"; +$a->strings["attach file"] = "bestand bijvoegen"; +$a->strings["web link"] = "webadres"; +$a->strings["Insert video link"] = "Voeg video toe"; +$a->strings["video link"] = "video adres"; +$a->strings["Insert audio link"] = "Voeg audio adres toe"; +$a->strings["audio link"] = "audio adres"; +$a->strings["Set your location"] = "Stel uw locatie in"; +$a->strings["set location"] = "Stel uw locatie in"; +$a->strings["Clear browser location"] = "Verwijder locatie uit uw webbrowser"; +$a->strings["clear location"] = "Verwijder locatie uit uw webbrowser"; +$a->strings["Permission settings"] = "Instellingen van rechten"; +$a->strings["CC: email addresses"] = "CC: e-mailadressen"; +$a->strings["Public post"] = "Openbare post"; +$a->strings["Set title"] = "Titel plaatsen"; +$a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"; +$a->strings["Event can not end before it has started."] = ""; $a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist."; $a->strings["l, F j"] = "l j F"; $a->strings["Edit event"] = "Gebeurtenis bewerken"; +$a->strings["link to source"] = "Verwijzing naar bron"; $a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis"; $a->strings["Previous"] = "Vorige"; $a->strings["Next"] = "Volgende"; -$a->strings["hour:minute"] = "uur:minuut"; $a->strings["Event details"] = "Gebeurtenis details"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Formaat is %s %s. Begindatum en titel zijn vereist."; +$a->strings["Starting date and Title are required."] = ""; $a->strings["Event Starts:"] = "Gebeurtenis begint:"; $a->strings["Required"] = "Vereist"; $a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd is niet gekend of niet relevant"; @@ -1528,117 +872,28 @@ $a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebr $a->strings["Description:"] = "Beschrijving:"; $a->strings["Title:"] = "Titel:"; $a->strings["Share this event"] = "Deel deze gebeurtenis"; -$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden"; -$a->strings["{0} sent you a message"] = "{0} stuurde jou een bericht"; -$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren"; -$a->strings["{0} commented %s's post"] = "{0} gaf een reactie op het bericht van %s"; -$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} is now friends with %s"] = "{0} is nu bevriend met %s"; -$a->strings["{0} posted"] = "{0} plaatste"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} labelde %s's bericht met #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} vermeldde je in een bericht"; -$a->strings["Mood"] = "Stemming"; -$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden"; -$a->strings["No results."] = "Geen resultaten."; -$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden."; -$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?"; -$a->strings["Message deleted."] = "Bericht verwijderd."; -$a->strings["Conversation removed."] = "Gesprek verwijderd."; -$a->strings["No messages."] = "Geen berichten."; -$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s"; -$a->strings["You and %s"] = "Jij en %s"; -$a->strings["%s and You"] = "%s en jij"; -$a->strings["Delete conversation"] = "Verwijder gesprek"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d bericht", - 1 => "%d berichten", -); -$a->strings["Message not available."] = "Bericht niet beschikbaar."; -$a->strings["Delete message"] = "Verwijder bericht"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender."; -$a->strings["Send Reply"] = "Verstuur Antwoord"; -$a->strings["Not available."] = "Niet beschikbaar"; -$a->strings["Profile not found."] = "Profiel niet gevonden"; -$a->strings["Profile deleted."] = "Profiel verwijderd"; -$a->strings["Profile-"] = "Profiel-"; -$a->strings["New profile created."] = "Nieuw profiel aangemaakt."; -$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen."; -$a->strings["Profile Name is required."] = "Profielnaam is vereist."; -$a->strings["Marital Status"] = "Echtelijke staat"; -$a->strings["Romantic Partner"] = "Romantische Partner"; -$a->strings["Likes"] = "Houdt van"; -$a->strings["Dislikes"] = "Houdt niet van"; -$a->strings["Work/Employment"] = "Werk"; -$a->strings["Religion"] = "Godsdienst"; -$a->strings["Political Views"] = "Politieke standpunten"; -$a->strings["Gender"] = "Geslacht"; -$a->strings["Sexual Preference"] = "Seksuele Voorkeur"; -$a->strings["Homepage"] = "Tijdlijn"; -$a->strings["Interests"] = "Interesses"; -$a->strings["Address"] = "Adres"; -$a->strings["Location"] = "Plaats"; -$a->strings["Profile updated."] = "Profiel bijgewerkt."; -$a->strings[" and "] = "en"; -$a->strings["public profile"] = "publiek profiel"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " - Bezoek %2\$s van %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepast %2\$s, %3\$s veranderd."; -$a->strings["Hide contacts and friends:"] = ""; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Je vrienden/contacten verbergen voor bezoekers van dit profiel?"; -$a->strings["Edit Profile Details"] = "Profieldetails bewerken"; -$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; -$a->strings["View this profile"] = "Dit profiel bekijken"; -$a->strings["Create a new profile using these settings"] = "Nieuw profiel aanmaken met deze instellingen"; -$a->strings["Clone this profile"] = "Dit profiel klonen"; -$a->strings["Delete this profile"] = "Dit profiel verwijderen"; -$a->strings["Basic information"] = ""; -$a->strings["Profile picture"] = ""; -$a->strings["Preferences"] = ""; -$a->strings["Status information"] = ""; -$a->strings["Additional information"] = ""; -$a->strings["Upload Profile Photo"] = "Profielfoto uploaden"; -$a->strings["Profile Name:"] = "Profiel Naam:"; -$a->strings["Your Full Name:"] = "Je volledige naam:"; -$a->strings["Title/Description:"] = "Titel/Beschrijving:"; -$a->strings["Your Gender:"] = "Je Geslacht:"; -$a->strings["Birthday (%s):"] = "Geboortedatum (%s):"; -$a->strings["Street Address:"] = "Postadres:"; -$a->strings["Locality/City:"] = "Gemeente/Stad:"; -$a->strings["Postal/Zip Code:"] = "Postcode:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Regio/Staat:"; -$a->strings[" Marital Status:"] = " Echtelijke Staat:"; -$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["Since [date]:"] = "Sinds [datum]:"; -$a->strings["Homepage URL:"] = "Adres tijdlijn:"; -$a->strings["Religious Views:"] = "Geloof:"; -$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:"; -$a->strings["Private Keywords:"] = "Privé Sleutelwoorden:"; -$a->strings["Example: fishing photography software"] = "Voorbeeld: vissen fotografie software"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"; -$a->strings["Tell us about yourself..."] = "Vertel iets over jezelf..."; -$a->strings["Hobbies/Interests"] = "Hobby's/Interesses"; -$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; -$a->strings["Musical interests"] = "Muzikale interesses"; -$a->strings["Books, literature"] = "Boeken, literatuur"; -$a->strings["Television"] = "Televisie"; -$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/ontspanning"; -$a->strings["Love/romance"] = "Liefde/romance"; -$a->strings["Work/employment"] = "Werk"; -$a->strings["School/education"] = "School/opleiding"; -$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Dit is jouw publiek profiel.
    Het kan zichtbaar zijn voor iedereen op het internet."; -$a->strings["Age: "] = "Leeftijd:"; -$a->strings["Edit/Manage Profiles"] = "Wijzig/Beheer Profielen"; +$a->strings["You already added this contact."] = ""; +$a->strings["Contact added"] = "Contact toegevoegd"; +$a->strings["Group created."] = "Groep aangemaakt."; +$a->strings["Could not create group."] = "Kon de groep niet aanmaken."; +$a->strings["Group not found."] = "Groep niet gevonden."; +$a->strings["Group name changed."] = "Groepsnaam gewijzigd."; +$a->strings["Permission denied"] = "Toegang geweigerd"; +$a->strings["Save Group"] = ""; +$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan."; +$a->strings["Group Name: "] = "Groepsnaam:"; +$a->strings["Group removed."] = "Groep verwijderd."; +$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen."; +$a->strings["Group Editor"] = "Groepsbewerker"; +$a->strings["Members"] = "Leden"; +$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen."; $a->strings["Friendica Communications Server - Setup"] = ""; $a->strings["Could not connect to database."] = "Kon geen toegang krijgen tot de database."; $a->strings["Could not create table."] = "Kon tabel niet aanmaken."; $a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd."; $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql."; $a->strings["Please see the file \"INSTALL.txt\"."] = "Zie het bestand \"INSTALL.txt\"."; +$a->strings["Database already in use."] = ""; $a->strings["System check"] = "Systeemcontrole"; $a->strings["Check again"] = "Controleer opnieuw"; $a->strings["Database connection"] = "Verbinding met database"; @@ -1694,91 +949,97 @@ $a->strings["Url rewrite is working"] = ""; $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver."; $a->strings["

    What next

    "] = "

    Wat nu

    "; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller."; -$a->strings["Help:"] = "Help:"; -$a->strings["Contact settings applied."] = "Contactinstellingen toegepast."; -$a->strings["Contact update failed."] = "Aanpassen van contact mislukt."; -$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = ""; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."; -$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker"; -$a->strings["No mirroring"] = ""; -$a->strings["Mirror as forwarded posting"] = ""; -$a->strings["Mirror as my own posting"] = ""; -$a->strings["Account Nickname"] = "Bijnaam account"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam"; -$a->strings["Account URL"] = "URL account"; -$a->strings["Friend Request URL"] = "URL vriendschapsverzoek"; -$a->strings["Friend Confirm URL"] = "URL vriendschapsbevestiging"; -$a->strings["Notification Endpoint URL"] = ""; -$a->strings["Poll/Feed URL"] = "URL poll/feed"; -$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL"; -$a->strings["Remote Self"] = ""; -$a->strings["Mirror postings from this contact"] = ""; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; -$a->strings["Welcome to Friendica"] = "Welkom bij Friendica"; -$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen."; -$a->strings["Getting Started"] = "Aan de slag"; -$a->strings["Friendica Walk-Through"] = "Doorloop Friendica"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Op je Snelstart 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["On your Settings 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 instellingenpagina. 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["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."] = "Upload een profielfoto, 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["Edit Your Profile"] = "Bewerk je profiel"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."; -$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["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."] = "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Als 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["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["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 Add New Contact 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 Voeg nieuw contact toe dialoog."; -$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 Connect or Follow 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 Connect of Follow 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["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["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["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie."; -$a->strings["Getting Help"] = "Hulp krijgen"; -$a->strings["Go to the Help Section"] = "Ga naar de help"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."; -$a->strings["Poke/Prod"] = "Aanstoten/porren"; -$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; -$a->strings["Recipient"] = "Ontvanger"; -$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; -$a->strings["Make this post private"] = "Dit bericht privé maken"; -$a->strings["Item has been removed."] = "Item is verwijderd."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom"; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."; -$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen."; -$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:"; -$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid."; -$a->strings["Remote site reported: "] = "Website op afstand berichtte: "; -$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw."; -$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen."; -$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen."; -$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."; -$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou."; -$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."; -$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen."; -$a->strings["Unable to update your contact profile details on our system"] = ""; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s"; $a->strings["Unable to locate original post."] = "Ik kan de originele post niet meer vinden."; $a->strings["Empty post discarded."] = "Lege post weggegooid."; +$a->strings["Wall Photos"] = ""; $a->strings["System error. Post not saved."] = "Systeemfout. Post niet bewaard."; $a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."; $a->strings["You may visit them online at %s"] = "Je kunt ze online bezoeken op %s"; $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen."; $a->strings["%s posted an update."] = "%s heeft een wijziging geplaatst."; +$a->strings["Profile Match"] = "Profielmatch"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."; +$a->strings["is interested in:"] = "Is geïnteresseerd in:"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["Search Results For: %s"] = ""; +$a->strings["add"] = "toevoegen"; +$a->strings["Commented Order"] = "Nieuwe reacties bovenaan"; +$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; +$a->strings["Posted Order"] = "Nieuwe berichten bovenaan"; +$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; +$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben"; +$a->strings["New"] = "Nieuw"; +$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; +$a->strings["Shared Links"] = "Gedeelde links"; +$a->strings["Interesting Links"] = "Interessante links"; +$a->strings["Starred"] = "Met ster"; +$a->strings["Favourite Posts"] = "Favoriete berichten"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk.", + 1 => "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden."; +$a->strings["Contact: %s"] = ""; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."; +$a->strings["Invalid contact."] = "Ongeldig contact."; +$a->strings["Personal Notes"] = "Persoonlijke Nota's"; +$a->strings["Not Extended"] = ""; +$a->strings["Photo Albums"] = "Fotoalbums"; +$a->strings["Recent Photos"] = "Recente foto's"; +$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +$a->strings["everybody"] = "iedereen"; +$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar"; +$a->strings["Album not found."] = "Album niet gevonden"; +$a->strings["Delete Album"] = "Verwijder album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"; +$a->strings["Delete Photo"] = "Verwijder foto"; +$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s"; +$a->strings["a photo"] = "een foto"; +$a->strings["Image exceeds size limit of %s"] = ""; +$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg."; +$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken"; +$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt."; +$a->strings["No photos selected"] = "Geen foto's geselecteerd"; +$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."; +$a->strings["Upload Photos"] = "Upload foto's"; +$a->strings["New album name: "] = "Nieuwe albumnaam: "; +$a->strings["or existing album name: "] = "of bestaande albumnaam: "; +$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload"; +$a->strings["Permissions"] = "Rechten"; +$a->strings["Show to Groups"] = "Tonen aan groepen"; +$a->strings["Show to Contacts"] = "Tonen aan contacten"; +$a->strings["Private Photo"] = "Privé foto"; +$a->strings["Public Photo"] = "Publieke foto"; +$a->strings["Edit Album"] = "Album wijzigen"; +$a->strings["Show Newest First"] = "Toon niewste eerst"; +$a->strings["Show Oldest First"] = "Toon oudste eerst"; +$a->strings["View Photo"] = "Bekijk foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."; +$a->strings["Photo not available"] = "Foto is niet beschikbaar"; +$a->strings["View photo"] = "Bekijk foto"; +$a->strings["Edit photo"] = "Bewerk foto"; +$a->strings["Use as profile photo"] = "Gebruik als profielfoto"; +$a->strings["View Full Size"] = "Bekijk in volledig formaat"; +$a->strings["Tags: "] = "Labels: "; +$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]"; +$a->strings["New album name"] = "Nieuwe albumnaam"; +$a->strings["Caption"] = "Onderschrift"; +$a->strings["Add a Tag"] = "Een label toevoegen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "; +$a->strings["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)"; +$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)"; +$a->strings["Private photo"] = "Privé foto"; +$a->strings["Public photo"] = "Publieke foto"; +$a->strings["Share"] = "Delen"; +$a->strings["View Album"] = "Album bekijken"; +$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden"; +$a->strings["{0} sent you a message"] = "{0} stuurde jou een bericht"; +$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren"; +$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar."; +$a->strings["Tips for New Members"] = "Tips voor nieuwe leden"; $a->strings["Image uploaded but image cropping failed."] = "Afbeelding opgeladen, maar bijsnijden mislukt."; $a->strings["Image size reduction [%s] failed."] = "Verkleining van de afbeelding [%s] mislukt."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen."; @@ -1786,21 +1047,786 @@ $a->strings["Unable to process image"] = "Ik kan de afbeelding niet verwerken"; $a->strings["Upload File:"] = "Upload bestand:"; $a->strings["Select a profile:"] = "Kies een profiel:"; $a->strings["Upload"] = "Uploaden"; +$a->strings["or"] = "of"; $a->strings["skip this step"] = "Deze stap overslaan"; $a->strings["select a photo from your photo albums"] = "Kies een foto uit je fotoalbums"; $a->strings["Crop Image"] = "Afbeelding bijsnijden"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Pas het afsnijden van de afbeelding aan voor het beste resultaat."; $a->strings["Done Editing"] = "Wijzigingen compleet"; $a->strings["Image uploaded successfully."] = "Uploaden van afbeelding gelukt."; -$a->strings["Friends of %s"] = "Vrienden van %s"; -$a->strings["No friends to display."] = "Geen vrienden om te laten zien."; -$a->strings["Find on this site"] = "Op deze website zoeken"; -$a->strings["Site Directory"] = "Websitegids"; -$a->strings["Gender: "] = "Geslacht:"; -$a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn)."; -$a->strings["Time Conversion"] = "Tijdsconversie"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."; -$a->strings["UTC time: %s"] = "UTC tijd: %s"; -$a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s"; -$a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s"; -$a->strings["Please select your timezone:"] = "Selecteer je tijdzone:"; +$a->strings["Profile deleted."] = "Profiel verwijderd"; +$a->strings["Profile-"] = "Profiel-"; +$a->strings["New profile created."] = "Nieuw profiel aangemaakt."; +$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen."; +$a->strings["Profile Name is required."] = "Profielnaam is vereist."; +$a->strings["Marital Status"] = "Echtelijke staat"; +$a->strings["Romantic Partner"] = "Romantische Partner"; +$a->strings["Likes"] = "Houdt van"; +$a->strings["Dislikes"] = "Houdt niet van"; +$a->strings["Work/Employment"] = "Werk"; +$a->strings["Religion"] = "Godsdienst"; +$a->strings["Political Views"] = "Politieke standpunten"; +$a->strings["Gender"] = "Geslacht"; +$a->strings["Sexual Preference"] = "Seksuele Voorkeur"; +$a->strings["Homepage"] = "Tijdlijn"; +$a->strings["Interests"] = "Interesses"; +$a->strings["Address"] = "Adres"; +$a->strings["Location"] = "Plaats"; +$a->strings["Profile updated."] = "Profiel bijgewerkt."; +$a->strings[" and "] = "en"; +$a->strings["public profile"] = "publiek profiel"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Bezoek %2\$s van %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepast %2\$s, %3\$s veranderd."; +$a->strings["Hide contacts and friends:"] = ""; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Je vrienden/contacten verbergen voor bezoekers van dit profiel?"; +$a->strings["Edit Profile Details"] = "Profieldetails bewerken"; +$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; +$a->strings["View this profile"] = "Dit profiel bekijken"; +$a->strings["Create a new profile using these settings"] = "Nieuw profiel aanmaken met deze instellingen"; +$a->strings["Clone this profile"] = "Dit profiel klonen"; +$a->strings["Delete this profile"] = "Dit profiel verwijderen"; +$a->strings["Basic information"] = ""; +$a->strings["Profile picture"] = ""; +$a->strings["Preferences"] = ""; +$a->strings["Status information"] = ""; +$a->strings["Additional information"] = ""; +$a->strings["Profile Name:"] = "Profiel Naam:"; +$a->strings["Your Full Name:"] = "Je volledige naam:"; +$a->strings["Title/Description:"] = "Titel/Beschrijving:"; +$a->strings["Your Gender:"] = "Je Geslacht:"; +$a->strings["Birthday :"] = ""; +$a->strings["Street Address:"] = "Postadres:"; +$a->strings["Locality/City:"] = "Gemeente/Stad:"; +$a->strings["Postal/Zip Code:"] = "Postcode:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Regio/Staat:"; +$a->strings[" Marital Status:"] = " Echtelijke Staat:"; +$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["Since [date]:"] = "Sinds [datum]:"; +$a->strings["Sexual Preference:"] = "Seksuele Voorkeur:"; +$a->strings["Homepage URL:"] = "Adres tijdlijn:"; +$a->strings["Hometown:"] = "Woonplaats:"; +$a->strings["Political Views:"] = "Politieke standpunten:"; +$a->strings["Religious Views:"] = "Geloof:"; +$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:"; +$a->strings["Private Keywords:"] = "Privé Sleutelwoorden:"; +$a->strings["Likes:"] = "Houdt van:"; +$a->strings["Dislikes:"] = "Houdt niet van:"; +$a->strings["Example: fishing photography software"] = "Voorbeeld: vissen fotografie software"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"; +$a->strings["Tell us about yourself..."] = "Vertel iets over jezelf..."; +$a->strings["Hobbies/Interests"] = "Hobby's/Interesses"; +$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; +$a->strings["Musical interests"] = "Muzikale interesses"; +$a->strings["Books, literature"] = "Boeken, literatuur"; +$a->strings["Television"] = "Televisie"; +$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/ontspanning"; +$a->strings["Love/romance"] = "Liefde/romance"; +$a->strings["Work/employment"] = "Werk"; +$a->strings["School/education"] = "School/opleiding"; +$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Dit is jouw publiek profiel.
    Het kan zichtbaar zijn voor iedereen op het internet."; +$a->strings["Edit/Manage Profiles"] = "Wijzig/Beheer Profielen"; +$a->strings["Change profile photo"] = "Profiel foto wijzigen"; +$a->strings["Create New Profile"] = "Maak nieuw profiel"; +$a->strings["Profile Image"] = "Profiel afbeelding"; +$a->strings["visible to everybody"] = "zichtbaar voor iedereen"; +$a->strings["Edit visibility"] = "Pas zichtbaarheid aan"; +$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie."; +$a->strings["Profile Visibility Editor"] = ""; +$a->strings["Visible To"] = "Zichtbaar voor"; +$a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)"; +$a->strings["Items tagged with: %s"] = ""; +$a->strings["Search results for: %s"] = ""; +$a->strings["link"] = "link"; +$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."; +$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; +$a->strings["Do you really want to delete this video?"] = ""; +$a->strings["Delete Video"] = ""; +$a->strings["No videos selected"] = "Geen video's geselecteerd"; +$a->strings["View Video"] = "Bekijk Video"; +$a->strings["Recent Videos"] = "Recente video's"; +$a->strings["Upload New Videos"] = "Nieuwe video's uploaden"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; +$a->strings["Or - did you try to upload an empty file?"] = ""; +$a->strings["File exceeds size limit of %s"] = ""; +$a->strings["File upload failed."] = "Uploaden van bestand mislukt."; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."; +$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = ""; +$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden."; +$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."; +$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):"; +$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?"; +$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging."; +$a->strings["Your invitation ID: "] = "Je uitnodigingsid:"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Je volledige naam (bijv. Jan Jansens):"; +$a->strings["Your Email Address: "] = "Je email adres:"; +$a->strings["New Password:"] = "Nieuw Wachtwoord:"; +$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Confirm:"] = "Bevestig:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@\$sitename' zijn."; +$a->strings["Choose a nickname: "] = "Kies een bijnaam:"; +$a->strings["Register"] = "Registreer"; +$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["Additional features"] = "Extra functies"; +$a->strings["Display"] = "Weergave"; +$a->strings["Social Networks"] = "Sociale netwerken"; +$a->strings["Delegations"] = ""; +$a->strings["Connected apps"] = "Verbonden applicaties"; +$a->strings["Remove account"] = "Account verwijderen"; +$a->strings["Missing some important data!"] = "Een belangrijk gegeven ontbreekt!"; +$a->strings["Failed to connect with email account using the settings provided."] = "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen."; +$a->strings["Email settings updated."] = "E-mail instellingen bijgewerkt.."; +$a->strings["Features updated"] = "Functies bijgewerkt"; +$a->strings["Relocate message has been send to your contacts"] = ""; +$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd."; +$a->strings["Wrong password."] = "Verkeerd wachtwoord."; +$a->strings["Password changed."] = "Wachtwoord gewijzigd."; +$a->strings["Password update failed. Please try again."] = "Wachtwoord-)wijziging mislukt. Probeer opnieuw."; +$a->strings[" Please use a shorter name."] = "Gebruik een kortere naam."; +$a->strings[" Name too short."] = "Naam te kort."; +$a->strings["Wrong Password"] = "Verkeerd wachtwoord"; +$a->strings[" Not valid email."] = "Geen geldig e-mailadres."; +$a->strings[" Cannot change to that email."] = "Kan niet veranderen naar die e-mail."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep."; +$a->strings["Settings updated."] = "Instellingen bijgewerkt."; +$a->strings["Add application"] = "Toepassing toevoegen"; +$a->strings["Consumer Key"] = "Gebruikerssleutel"; +$a->strings["Consumer Secret"] = "Gebruikersgeheim"; +$a->strings["Redirect"] = "Doorverwijzing"; +$a->strings["Icon url"] = "URL pictogram"; +$a->strings["You can't edit this application."] = "Je kunt deze toepassing niet wijzigen."; +$a->strings["Connected Apps"] = "Verbonden applicaties"; +$a->strings["Client key starts with"] = ""; +$a->strings["No name"] = "Geen naam"; +$a->strings["Remove authorization"] = "Verwijder authorisatie"; +$a->strings["No Plugin settings configured"] = ""; +$a->strings["Plugin Settings"] = "Plugin Instellingen"; +$a->strings["Off"] = "Uit"; +$a->strings["On"] = "Aan"; +$a->strings["Additional Features"] = "Extra functies"; +$a->strings["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = "Ingebouwde ondersteuning voor connectiviteit met %s is %s"; +$a->strings["enabled"] = "ingeschakeld"; +$a->strings["disabled"] = "uitgeschakeld"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "E-mailtoegang is op deze website uitgeschakeld."; +$a->strings["Email/Mailbox Setup"] = "E-mail Instellen"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken."; +$a->strings["Last successful email check:"] = "Laatste succesvolle e-mail controle:"; +$a->strings["IMAP server name:"] = "IMAP server naam:"; +$a->strings["IMAP port:"] = "IMAP poort:"; +$a->strings["Security:"] = "Beveiliging:"; +$a->strings["None"] = "Geen"; +$a->strings["Email login name:"] = "E-mail login naam:"; +$a->strings["Email password:"] = "E-mail wachtwoord:"; +$a->strings["Reply-to address:"] = "Antwoord adres:"; +$a->strings["Send public posts to all email contacts:"] = "Openbare posts naar alle e-mail contacten versturen:"; +$a->strings["Action after import:"] = "Actie na importeren:"; +$a->strings["Mark as seen"] = "Als 'gelezen' markeren"; +$a->strings["Move to folder"] = "Naar map verplaatsen"; +$a->strings["Move to folder:"] = "Verplaatsen naar map:"; +$a->strings["Display Settings"] = "Scherminstellingen"; +$a->strings["Display Theme:"] = "Schermthema:"; +$a->strings["Mobile Theme:"] = "Mobiel thema:"; +$a->strings["Update browser every xx seconds"] = "Browser elke xx seconden verversen"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 seconden, geen maximum"; +$a->strings["Number of items to display per page:"] = "Aantal items te tonen per pagina:"; +$a->strings["Maximum of 100 items"] = "Maximum 100 items"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Aantal items per pagina als je een mobiel toestel gebruikt:"; +$a->strings["Don't show emoticons"] = "Emoticons niet tonen"; +$a->strings["Don't show notices"] = ""; +$a->strings["Infinite scroll"] = "Oneindig scrollen"; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["User Types"] = "Gebruikerstypes"; +$a->strings["Community Types"] = "Forum/groepstypes"; +$a->strings["Normal Account Page"] = "Normale accountpagina"; +$a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel"; +$a->strings["Soapbox Page"] = "Zeepkist-pagina"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen."; +$a->strings["Community Forum/Celebrity Account"] = "Forum/groeps- of beroemdheid-account"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven."; +$a->strings["Automatic Friend Page"] = "Automatisch Vriendschapspagina"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden."; +$a->strings["Private Forum [Experimental]"] = "Privé-forum [experimenteel]"; +$a->strings["Private forum - approved members only"] = "Privé-forum - enkel voor goedgekeurde leden"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."; +$a->strings["Publish your default profile in your local site directory?"] = "Je standaardprofiel in je lokale gids publiceren?"; +$a->strings["Publish your default profile in the global social directory?"] = "Je standaardprofiel in de globale sociale gids publiceren?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"; +$a->strings["Hide your profile details from unknown viewers?"] = "Je profieldetails verbergen voor onbekende bezoekers?"; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; +$a->strings["Allow friends to post to your profile page?"] = "Vrienden toestaan om op jou profielpagina te posten?"; +$a->strings["Allow friends to tag your posts?"] = "Sta vrienden toe om jouw berichten te labelen?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?"; +$a->strings["Permit unknown people to send you private mail?"] = "Mogen onbekende personen jou privé berichten sturen?"; +$a->strings["Profile is not published."] = "Profiel is niet gepubliceerd."; +$a->strings["Your Identity Address is"] = "Jouw Identiteitsadres is"; +$a->strings["Automatically expire posts after this many days:"] = "Laat berichten automatisch vervallen na zo veel dagen:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."; +$a->strings["Advanced expiration settings"] = "Geavanceerde instellingen voor vervallen"; +$a->strings["Advanced Expiration"] = "Geavanceerd Verval:"; +$a->strings["Expire posts:"] = "Laat berichten vervallen:"; +$a->strings["Expire personal notes:"] = "Laat persoonlijke aantekeningen verlopen:"; +$a->strings["Expire starred posts:"] = "Laat berichten met ster verlopen"; +$a->strings["Expire photos:"] = "Laat foto's vervallen:"; +$a->strings["Only expire posts by others:"] = "Laat alleen berichten door anderen vervallen:"; +$a->strings["Account Settings"] = "Account Instellingen"; +$a->strings["Password Settings"] = "Wachtwoord Instellingen"; +$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"; +$a->strings["Current Password:"] = "Huidig wachtwoord:"; +$a->strings["Your current password to confirm the changes"] = "Je huidig wachtwoord om de wijzigingen te bevestigen"; +$a->strings["Password:"] = "Wachtwoord:"; +$a->strings["Basic Settings"] = "Basis Instellingen"; +$a->strings["Full Name:"] = "Volledige Naam:"; +$a->strings["Email Address:"] = "E-mailadres:"; +$a->strings["Your Timezone:"] = "Je Tijdzone:"; +$a->strings["Default Post Location:"] = "Standaard locatie:"; +$a->strings["Use Browser Location:"] = "Gebruik Webbrowser Locatie:"; +$a->strings["Security and Privacy Settings"] = "Instellingen voor Beveiliging en Privacy"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal vriendschapsverzoeken per dag:"; +$a->strings["(to prevent spam abuse)"] = "(om spam misbruik te voorkomen)"; +$a->strings["Default Post Permissions"] = "Standaard rechten voor nieuwe berichten"; +$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; +$a->strings["Default Private Post"] = "Standaard Privé Post"; +$a->strings["Default Public Post"] = "Standaard Publieke Post"; +$a->strings["Default Permissions for New Posts"] = "Standaard rechten voor nieuwe berichten"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; +$a->strings["Notification Settings"] = "Notificatie Instellingen"; +$a->strings["By default post a status message when:"] = "Post automatisch een bericht op je tijdlijn wanneer:"; +$a->strings["accepting a friend request"] = "Een vriendschapsverzoek accepteren"; +$a->strings["joining a forum/community"] = "Lid worden van een groep/forum"; +$a->strings["making an interesting profile change"] = "Een interessante verandering aan je profiel"; +$a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:"; +$a->strings["You receive an introduction"] = "Je ontvangt een vriendschaps- of connectieverzoek"; +$a->strings["Your introductions are confirmed"] = "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"; +$a->strings["Someone writes on your profile wall"] = "Iemand iets op je tijdlijn schrijft"; +$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; +$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; +$a->strings["You receive a friend suggestion"] = "Je een suggestie voor een vriendschap ontvangt"; +$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; +$a->strings["You are poked/prodded/etc. in a post"] = "Je in een bericht bent aangestoten/gepord/etc."; +$a->strings["Activate desktop notifications"] = ""; +$a->strings["Show desktop popup on new notifications"] = ""; +$a->strings["Text-only notification emails"] = ""; +$a->strings["Send text only notification emails, without the html part"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = ""; +$a->strings["Change the behaviour of this account for special situations"] = ""; +$a->strings["Relocate"] = ""; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; +$a->strings["Resend relocate message to contacts"] = ""; +$a->strings["Login"] = "Login"; +$a->strings["The post was created"] = ""; +$a->strings["This is Friendica, version"] = "Dit is Friendica, versie"; +$a->strings["running at web location"] = "draaiend op web-adres"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bezoek Friendica.com om meer te leren over het Friendica project."; +$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek"; +$a->strings["the bugtracker at github"] = ""; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Geïnstalleerde plugins/toepassingen:"; +$a->strings["No installed plugins/addons/apps"] = "Geen plugins of toepassingen geïnstalleerd"; +$a->strings["Add New Contact"] = "Nieuw Contact toevoegen"; +$a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d uitnodiging beschikbaar", + 1 => "%d uitnodigingen beschikbaar", +); +$a->strings["Find People"] = "Zoek mensen"; +$a->strings["Enter name or interest"] = "Vul naam of interesse in"; +$a->strings["Connect/Follow"] = "Verbind/Volg"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen"; +$a->strings["Random Profile"] = "Willekeurig Profiel"; +$a->strings["Networks"] = "Netwerken"; +$a->strings["All Networks"] = "Alle netwerken"; +$a->strings["Saved Folders"] = "Bewaarde Mappen"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Categorieën"; +$a->strings["Click here to upgrade."] = ""; +$a->strings["This action exceeds the limits set by your subscription plan."] = ""; +$a->strings["This action is not available under your subscription plan."] = ""; +$a->strings["Cannot locate DNS info for database server '%s'"] = ""; +$a->strings["Logged out."] = "Uitgelogd."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; +$a->strings["The error message was:"] = "De foutboodschap was:"; +$a->strings["Error decoding account file"] = ""; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; +$a->strings["Error! Cannot check nickname"] = ""; +$a->strings["User '%s' already exists on this server!"] = "Gebruiker '%s' bestaat al op deze server!"; +$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker"; +$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contact werd niet geïmporteerd", + 1 => "%d contacten werden niet geïmporteerd", +); +$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"; +$a->strings["[no subject]"] = "[geen onderwerp]"; +$a->strings["Unknown | Not categorised"] = "Onbekend | Niet "; +$a->strings["Block immediately"] = "Onmiddellijk blokkeren"; +$a->strings["Shady, spammer, self-marketer"] = "Onbetrouwbaar, spammer, zelfpromotor"; +$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening"; +$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk"; +$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen"; +$a->strings["Weekly"] = "wekelijks"; +$a->strings["Monthly"] = "maandelijks"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "Linkedln"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "Myspace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora-connector"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["App.net"] = ""; +$a->strings["General Features"] = "Algemene functies"; +$a->strings["Multiple Profiles"] = "Meerdere profielen"; +$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; +$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; +$a->strings["Richtext Editor"] = "Tekstverwerker met opmaak"; +$a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"; +$a->strings["Post Preview"] = "Voorvertoning bericht"; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = "Zijbalkwidgets op netwerkpagina"; +$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["Group Filter"] = "Groepsfilter"; +$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"] = "Netwerkfilter"; +$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["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; +$a->strings["Network Tabs"] = "Netwerktabs"; +$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; +$a->strings["Network New Tab"] = "Nieuwe netwerktab"; +$a->strings["Enable tab to display 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["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen"; +$a->strings["Multiple Deletion"] = "Meervoudige verwijdering"; +$a->strings["Select and delete multiple posts/comments at once"] = "Selecteer en verwijder meerdere berichten/reacties in een keer"; +$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten"; +$a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties na verzending"; +$a->strings["Tagging"] = "Labelen"; +$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen"; +$a->strings["Post Categories"] = "Categorieën berichten"; +$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; +$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren"; +$a->strings["Dislike Posts"] = "Vind berichten niet leuk"; +$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten of reacties niet leuk te vinden"; +$a->strings["Star Posts"] = "Geef berichten een ster"; +$a->strings["Ability to mark special posts with a star indicator"] = ""; +$a->strings["Mute Post Notifications"] = ""; +$a->strings["Ability to mute notifications for a thread"] = ""; +$a->strings["Male"] = "Man"; +$a->strings["Female"] = "Vrouw"; +$a->strings["Currently Male"] = "Momenteel mannelijk"; +$a->strings["Currently Female"] = "Momenteel vrouwelijk"; +$a->strings["Mostly Male"] = "Meestal mannelijk"; +$a->strings["Mostly Female"] = "Meestal vrouwelijk"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Interseksueel"; +$a->strings["Transsexual"] = "Transseksueel"; +$a->strings["Hermaphrodite"] = "Hermafrodiet"; +$a->strings["Neuter"] = "Genderneutraal"; +$a->strings["Non-specific"] = "Niet-specifiek"; +$a->strings["Other"] = "Anders"; +$a->strings["Undecided"] = "Onbeslist"; +$a->strings["Males"] = "Mannen"; +$a->strings["Females"] = "Vrouwen"; +$a->strings["Gay"] = "Homo"; +$a->strings["Lesbian"] = "Lesbienne"; +$a->strings["No Preference"] = "Geen voorkeur"; +$a->strings["Bisexual"] = "Biseksueel"; +$a->strings["Autosexual"] = "Autoseksueel"; +$a->strings["Abstinent"] = "Onthouder"; +$a->strings["Virgin"] = "Maagd"; +$a->strings["Deviant"] = "Afwijkend"; +$a->strings["Fetish"] = "Fetisj"; +$a->strings["Oodles"] = "Veel"; +$a->strings["Nonsexual"] = "Niet seksueel"; +$a->strings["Single"] = "Alleenstaand"; +$a->strings["Lonely"] = "Eenzaam"; +$a->strings["Available"] = "Beschikbaar"; +$a->strings["Unavailable"] = "Onbeschikbaar"; +$a->strings["Has crush"] = "Verliefd"; +$a->strings["Infatuated"] = "Smoorverliefd"; +$a->strings["Dating"] = "Aan het daten"; +$a->strings["Unfaithful"] = "Ontrouw"; +$a->strings["Sex Addict"] = "Seksverslaafd"; +$a->strings["Friends"] = "Vrienden"; +$a->strings["Friends/Benefits"] = "Vriendschap plus"; +$a->strings["Casual"] = "Ongebonden/vluchtig"; +$a->strings["Engaged"] = "Verloofd"; +$a->strings["Married"] = "Getrouwd"; +$a->strings["Imaginarily married"] = "Denkbeeldig getrouwd"; +$a->strings["Partners"] = "Partners"; +$a->strings["Cohabiting"] = "Samenwonend"; +$a->strings["Common law"] = "getrouwd voor-de-wet"; +$a->strings["Happy"] = "Blij"; +$a->strings["Not looking"] = "Niet op zoek"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Bedrogen"; +$a->strings["Separated"] = "Uit elkaar"; +$a->strings["Unstable"] = "Onstabiel"; +$a->strings["Divorced"] = "Gescheiden"; +$a->strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; +$a->strings["Widowed"] = "Weduwnaar/weduwe"; +$a->strings["Uncertain"] = "Onzeker"; +$a->strings["It's complicated"] = "Het is gecompliceerd"; +$a->strings["Don't care"] = "Kan me niet schelen"; +$a->strings["Ask me"] = "Vraag me"; +$a->strings["stopped following"] = ""; +$a->strings["Poke"] = "Aanstoten"; +$a->strings["View Status"] = "Bekijk status"; +$a->strings["View Profile"] = "Bekijk profiel"; +$a->strings["View Photos"] = "Bekijk foto's"; +$a->strings["Network Posts"] = "Netwerkberichten"; +$a->strings["Edit Contact"] = "Bewerk contact"; +$a->strings["Drop Contact"] = "Verwijder contact"; +$a->strings["Send PM"] = "Stuur een privébericht"; +$a->strings[" on Last.fm"] = " op Last.fm"; +$a->strings["Post to Email"] = "Verzenden per e-mail"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; +$a->strings["User not found."] = "Gebruiker niet gevonden"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["There is no status with this id."] = "Er is geen status met dit kenmerk"; +$a->strings["There is no conversation with this id."] = ""; +$a->strings["Invalid request."] = ""; +$a->strings["Invalid item."] = ""; +$a->strings["Invalid action. "] = ""; +$a->strings["DB error"] = ""; +$a->strings["Starts:"] = "Begint:"; +$a->strings["Finishes:"] = "Eindigt:"; +$a->strings["Image/photo"] = "Afbeelding/foto"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["%s wrote the following post"] = ""; +$a->strings["$1 wrote:"] = "$1 schreef:"; +$a->strings["Encrypted content"] = "Versleutelde inhoud"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan"; +$a->strings["post/item"] = "bericht/item"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet"; +$a->strings["remove"] = "verwijder"; +$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen"; +$a->strings["Follow Thread"] = "Conversatie volgen"; +$a->strings["%s likes this."] = "%s vindt dit leuk."; +$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; +$a->strings["%2\$d people like this"] = "%2\$d mensen vinden dit leuk"; +$a->strings["%2\$d people don't like this"] = "%2\$d people vinden dit niet leuk"; +$a->strings["and"] = "en"; +$a->strings[", and %d other people"] = ", en %d andere mensen"; +$a->strings["%s like this."] = "%s vindt dit leuk."; +$a->strings["%s don't like this."] = "%s vindt dit niet leuk."; +$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; +$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; +$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; +$a->strings["Tag term:"] = "Label:"; +$a->strings["Where are you right now?"] = "Waar ben je nu?"; +$a->strings["Delete item(s)?"] = "Item(s) verwijderen?"; +$a->strings["permissions"] = "rechten"; +$a->strings["Post to Groups"] = "Verzenden naar Groepen"; +$a->strings["Post to Contacts"] = "Verzenden naar Contacten"; +$a->strings["Private post"] = "Privé verzending"; +$a->strings["Miscellaneous"] = "Diversen"; +$a->strings["YYYY-MM-DD or MM-DD"] = ""; +$a->strings["never"] = "nooit"; +$a->strings["less than a second ago"] = "minder dan een seconde geleden"; +$a->strings["year"] = "jaar"; +$a->strings["years"] = "jaren"; +$a->strings["month"] = "maand"; +$a->strings["months"] = "maanden"; +$a->strings["week"] = "week"; +$a->strings["weeks"] = "weken"; +$a->strings["day"] = "dag"; +$a->strings["days"] = "dagen"; +$a->strings["hour"] = "uur"; +$a->strings["hours"] = "uren"; +$a->strings["minute"] = "minuut"; +$a->strings["minutes"] = "minuten"; +$a->strings["second"] = "seconde"; +$a->strings["seconds"] = "secondes"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; +$a->strings["%s's birthday"] = "%s's verjaardag"; +$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s"; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; +$a->strings["The error message is\n[pre]%s[/pre]"] = ""; +$a->strings["Errors encountered creating database tables."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."; +$a->strings["Errors encountered performing database changes."] = ""; +$a->strings["(no subject)"] = "(geen onderwerp)"; +$a->strings["noreply"] = "geen reactie"; +$a->strings["Sharing notification from Diaspora network"] = ""; +$a->strings["Attachments:"] = "Bijlagen:"; +$a->strings["Friendica Notification"] = "Friendica Notificatie"; +$a->strings["Thank You,"] = "Bedankt"; +$a->strings["%s Administrator"] = "%s Beheerder"; +$a->strings["%s "] = "%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."] = "%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["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["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]%3\$s's %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]jouw %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; +$a->strings["%s commented on an item/conversation you have been following."] = "%s gaf een reactie op een bericht/conversatie die jij volgt."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of te beantwoorden."; +$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 [url=%2\$s]your wall[/url]"] = ""; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificatie] %s heeft jou genoemd"; +$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]."] = "%1\$s [url=%2\$s]heeft jou genoemd[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = ""; +$a->strings["%1\$s shared a new post at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = ""; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s heeft jou aangestoten"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s heeft jou aangestoten op %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; +$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"] = "%1\$s heeft jouw bericht gelabeld in %2\$s"; +$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"] = "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"; +$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."] = "Je ontving [url=%1\$s]een vriendschaps- of connectieverzoek[/url] van %2\$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."] = "Bezoek %s om het verzoek goed of af te keuren."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = ""; +$a->strings["%1\$s is sharing with you at %2\$s"] = ""; +$a->strings["[Friendica:Notify] You have a new follower"] = ""; +$a->strings["You have a new follower at %2\$s : %1\$s"] = ""; +$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 [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; +$a->strings["Name:"] = "Naam:"; +$a->strings["Photo:"] = "Foto: "; +$a->strings["Please visit %s to approve or reject the suggestion."] = ""; +$a->strings["[Friendica:Notify] Connection accepted"] = ""; +$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = ""; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = ""; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = ""; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = ""; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = ""; +$a->strings["[Friendica System:Notify] registration request"] = ""; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = ""; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = ""; +$a->strings["Please visit %s to approve or reject the request."] = ""; +$a->strings["Connect URL missing."] = ""; +$a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt."; +$a->strings["The profile address specified does not provide adequate information."] = ""; +$a->strings["An author or name was not found."] = ""; +$a->strings["No browser URL could be matched to this address."] = ""; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."; +$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = ""; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = ""; +$a->strings["Unable to retrieve contact information."] = ""; +$a->strings["following"] = "volgend"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "; +$a->strings["Default privacy group for new contacts"] = ""; +$a->strings["Everybody"] = "Iedereen"; +$a->strings["edit"] = "verander"; +$a->strings["Edit group"] = "Verander groep"; +$a->strings["Create a new group"] = "Maak nieuwe groep"; +$a->strings["Contacts not in any group"] = ""; +$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar."; +$a->strings["Edit profile"] = "Bewerk profiel"; +$a->strings["Message"] = "Bericht"; +$a->strings["Profiles"] = "Profielen"; +$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen"; +$a->strings["Network:"] = ""; +$a->strings["g A l F d"] = "G l j F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[vandaag]"; +$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; +$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; +$a->strings["[No description]"] = "[Geen omschrijving]"; +$a->strings["Event Reminders"] = "Gebeurtenisherinneringen"; +$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; +$a->strings["j F, Y"] = "F j Y"; +$a->strings["j F"] = "F j"; +$a->strings["Birthday:"] = "Verjaardag:"; +$a->strings["Age:"] = "Leeftijd:"; +$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; +$a->strings["Tags:"] = "Labels:"; +$a->strings["Religion:"] = "Religie:"; +$a->strings["Hobbies/Interests:"] = "Hobby:"; +$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; +$a->strings["Musical interests:"] = "Muzikale interesse "; +$a->strings["Books, literature:"] = "Boeken, literatuur:"; +$a->strings["Television:"] = "Televisie"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:"; +$a->strings["Love/Romance:"] = "Liefde/romance:"; +$a->strings["Work/employment:"] = "Werk/beroep:"; +$a->strings["School/education:"] = "School/opleiding:"; +$a->strings["Status"] = "Tijdlijn"; +$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn"; +$a->strings["Profile Details"] = "Profieldetails"; +$a->strings["Videos"] = "Video's"; +$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender"; +$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien"; +$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?"; +$a->strings["Archives"] = "Archieven"; +$a->strings["Logout"] = "Uitloggen"; +$a->strings["End this session"] = "Deze sessie beëindigen"; +$a->strings["Your videos"] = ""; +$a->strings["Your personal notes"] = ""; +$a->strings["Sign in"] = "Inloggen"; +$a->strings["Home Page"] = "Jouw tijdlijn"; +$a->strings["Create an account"] = "Maak een accoount"; +$a->strings["Help and documentation"] = "Hulp en documentatie"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes"; +$a->strings["Search site content"] = "Doorzoek de inhoud van de website"; +$a->strings["Conversations on this site"] = "Conversaties op deze website"; +$a->strings["Conversations on the network"] = ""; +$a->strings["Directory"] = "Gids"; +$a->strings["People directory"] = "Personengids"; +$a->strings["Information"] = "Informatie"; +$a->strings["Information about this friendica instance"] = ""; +$a->strings["Conversations from your friends"] = "Conversaties van je vrienden"; +$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen"; +$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters"; +$a->strings["Friend Requests"] = "Vriendschapsverzoeken"; +$a->strings["See all notifications"] = "Toon alle notificaties"; +$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren"; +$a->strings["Private mail"] = "Privéberichten"; +$a->strings["Inbox"] = "Inbox"; +$a->strings["Outbox"] = "Verzonden berichten"; +$a->strings["Manage"] = "Beheren"; +$a->strings["Manage other pages"] = "Andere pagina's beheren"; +$a->strings["Account settings"] = "Account instellingen"; +$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen"; +$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten"; +$a->strings["Site setup and configuration"] = "Website opzetten en configureren"; +$a->strings["Navigation"] = "Navigatie"; +$a->strings["Site map"] = "Sitemap"; +$a->strings["view full size"] = "Volledig formaat"; +$a->strings["Embedded content"] = "Ingebedde inhoud"; +$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld"; +$a->strings["Welcome "] = "Welkom"; +$a->strings["Please upload a profile photo."] = "Upload een profielfoto."; +$a->strings["Welcome back "] = "Welkom terug "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; +$a->strings["newer"] = "nieuwere berichten"; +$a->strings["older"] = "oudere berichten"; +$a->strings["prev"] = "vorige"; +$a->strings["first"] = "eerste"; +$a->strings["last"] = "laatste"; +$a->strings["next"] = "volgende"; +$a->strings["Loading more entries..."] = ""; +$a->strings["The end"] = ""; +$a->strings["No contacts"] = "Geen contacten"; +$a->strings["%d Contact"] = array( + 0 => "%d contact", + 1 => "%d contacten", +); +$a->strings["poke"] = "aanstoten"; +$a->strings["poked"] = "aangestoten"; +$a->strings["ping"] = "ping"; +$a->strings["pinged"] = "gepingd"; +$a->strings["prod"] = "porren"; +$a->strings["prodded"] = "gepord"; +$a->strings["slap"] = "slaan"; +$a->strings["slapped"] = "geslagen"; +$a->strings["finger"] = "finger"; +$a->strings["fingered"] = "gerfingerd"; +$a->strings["rebuff"] = "afpoeieren"; +$a->strings["rebuffed"] = "afgepoeierd"; +$a->strings["happy"] = "Blij"; +$a->strings["sad"] = "Verdrietig"; +$a->strings["mellow"] = "mellow"; +$a->strings["tired"] = "vermoeid"; +$a->strings["perky"] = "parmantig"; +$a->strings["angry"] = "boos"; +$a->strings["stupified"] = "verbijsterd"; +$a->strings["puzzled"] = "onzeker"; +$a->strings["interested"] = "Geïnteresseerd"; +$a->strings["bitter"] = "bitter"; +$a->strings["cheerful"] = "vrolijk"; +$a->strings["alive"] = "levend"; +$a->strings["annoyed"] = "verveeld"; +$a->strings["anxious"] = "bezorgd"; +$a->strings["cranky"] = "humeurig "; +$a->strings["disturbed"] = "verontrust"; +$a->strings["frustrated"] = "gefrustreerd"; +$a->strings["motivated"] = "gemotiveerd"; +$a->strings["relaxed"] = "ontspannen"; +$a->strings["surprised"] = "verbaasd"; +$a->strings["Monday"] = "Maandag"; +$a->strings["Tuesday"] = "Dinsdag"; +$a->strings["Wednesday"] = "Woensdag"; +$a->strings["Thursday"] = "Donderdag"; +$a->strings["Friday"] = "Vrijdag"; +$a->strings["Saturday"] = "Zaterdag"; +$a->strings["Sunday"] = "Zondag"; +$a->strings["January"] = "Januari"; +$a->strings["February"] = "Februari"; +$a->strings["March"] = "Maart"; +$a->strings["April"] = "April"; +$a->strings["May"] = "Mei"; +$a->strings["June"] = "Juni"; +$a->strings["July"] = "Juli"; +$a->strings["August"] = "Augustus"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Oktober"; +$a->strings["November"] = "November"; +$a->strings["December"] = "December"; +$a->strings["bytes"] = "bytes"; +$a->strings["Click to open/close"] = "klik om te openen/sluiten"; +$a->strings["Select an alternate language"] = "Kies een andere taal"; +$a->strings["activity"] = "activiteit"; +$a->strings["post"] = "bericht"; +$a->strings["Item filed"] = "Item bewaard"; +$a->strings["An invitation is required."] = "Een uitnodiging is vereist."; +$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden."; +$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url"; +$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; +$a->strings["Please use a shorter name."] = "gebruik een kortere naam"; +$a->strings["Name too short."] = "Naam te kort"; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."; +$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan."; +$a->strings["Not a valid email address."] = "Geen geldig e-mailadres."; +$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen."; +$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."; +$a->strings["An error occurred during registration. Please try again."] = ""; +$a->strings["An error occurred creating your default profile. Please try again."] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; +$a->strings["toggle mobile"] = "mobiel thema omwisselen"; +$a->strings["Delete this item?"] = "Dit item verwijderen?"; +$a->strings["show fewer"] = "Minder tonen"; +$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden."; +$a->strings["Create a New Account"] = "Nieuwe account aanmaken"; +$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:"; +$a->strings["Password: "] = "Wachtwoord:"; +$a->strings["Remember me"] = "Onthou me"; +$a->strings["Or login using OpenID: "] = "Of log in met OpenID:"; +$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; +$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website"; +$a->strings["terms of service"] = "servicevoorwaarden"; +$a->strings["Website Privacy Policy"] = "Privacybeleid website"; +$a->strings["privacy policy"] = "privacybeleid"; From 6800b07fc5177badb4b6f3e007ab642ecb0e50c0 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 14 Jul 2015 22:24:43 +0200 Subject: [PATCH 031/239] Update the name in the "self" contact when it is changed. --- mod/profiles.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mod/profiles.php b/mod/profiles.php index 30b419545..993504a71 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -470,7 +470,8 @@ function profiles_post(&$a) { if($namechanged && $is_default) { - $r = q("UPDATE `contact` SET `name-date` = '%s' WHERE `self` = 1 AND `uid` = %d", + $r = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `self` = 1 AND `uid` = %d", + dbesc($name), dbesc(datetime_convert()), intval(local_user()) ); From 52c4b8684bcbe9eea0b939a54ba7b142a7ee1308 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 15 Jul 2015 08:16:41 +0200 Subject: [PATCH 032/239] OStatus: Support for "Favorite" (like) --- include/ostatus.php | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/include/ostatus.php b/include/ostatus.php index 53887d535..181b9e297 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -239,11 +239,13 @@ function ostatus_import($xml,$importer,&$contact, &$hub) { // Delete a message if ($item["verb"] == "qvitter-delete-notice") { // ignore "Delete" messages (by now) + logger("Ignore delete message ".print_r($item, true)); continue; } if ($item["verb"] == ACTIVITY_JOIN) { // ignore "Join" messages + logger("Ignore join message ".print_r($item, true)); continue; } @@ -258,10 +260,25 @@ function ostatus_import($xml,$importer,&$contact, &$hub) { } if ($item["verb"] == ACTIVITY_FAVORITE) { - // ignore "Favorite" messages + $orig_uri = $xpath->query("activity:object/atom:id", $entry)->item(0)->nodeValue; + logger("Favorite ".$orig_uri." ".print_r($item, true)); + + $item["verb"] = ACTIVITY_LIKE; + $item["parent-uri"] = $orig_uri; + $item["gravity"] = GRAVITY_LIKE; + } + + if ($item["verb"] == NAMESPACE_OSTATUS."/unfavorite") { + // Ignore "Unfavorite" message + logger("Ignore unfavorite message ".print_r($item, true)); continue; } + // http://activitystrea.ms/schema/1.0/rsvp-yes + // http://activitystrea.ms/schema/1.0/share + if (!in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_LIKE))) + logger("Unhandled verb ".$item["verb"]." ".print_r($item, true)); + $item["created"] = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue; $item["edited"] = $xpath->query('atom:updated/text()', $entry)->item(0)->nodeValue; $conversation = $xpath->query('ostatus:conversation/text()', $entry)->item(0)->nodeValue; From 05f8abcfa6e3fe62d14c151926c687a54074a74b Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 15 Jul 2015 18:27:44 +0200 Subject: [PATCH 033/239] OStatus: Handling of unsupported verbs --- boot.php | 1 + include/ostatus.php | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/boot.php b/boot.php index 0e50e8c0e..42498a6cc 100644 --- a/boot.php +++ b/boot.php @@ -274,6 +274,7 @@ define ( 'ACTIVITY_POST', NAMESPACE_ACTIVITY_SCHEMA . 'post' ); define ( 'ACTIVITY_UPDATE', NAMESPACE_ACTIVITY_SCHEMA . 'update' ); define ( 'ACTIVITY_TAG', NAMESPACE_ACTIVITY_SCHEMA . 'tag' ); define ( 'ACTIVITY_FAVORITE', NAMESPACE_ACTIVITY_SCHEMA . 'favorite' ); +define ( 'ACTIVITY_SHARE', NAMESPACE_ACTIVITY_SCHEMA . 'share' ); define ( 'ACTIVITY_POKE', NAMESPACE_ZOT . '/activity/poke' ); define ( 'ACTIVITY_MOOD', NAMESPACE_ZOT . '/activity/mood' ); diff --git a/include/ostatus.php b/include/ostatus.php index 181b9e297..369659f2d 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -275,8 +275,7 @@ function ostatus_import($xml,$importer,&$contact, &$hub) { } // http://activitystrea.ms/schema/1.0/rsvp-yes - // http://activitystrea.ms/schema/1.0/share - if (!in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_LIKE))) + if (!in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_LIKE, ACTIVITY_SHARE))) logger("Unhandled verb ".$item["verb"]." ".print_r($item, true)); $item["created"] = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue; From fca8aecc9b12a8aed3e11c176de0d0b4d24943e9 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 16 Jul 2015 10:09:59 +0200 Subject: [PATCH 034/239] Show "Redmatrix" as network name. --- include/api.php | 20 ++++++++++---------- include/contact_selectors.php | 10 +++++++--- include/identity.php | 2 +- include/items.php | 3 --- include/onepoll.php | 4 ++++ include/socgraph.php | 5 +++-- mod/contacts.php | 8 ++++---- mod/nogroup.php | 8 ++++---- mod/viewcontacts.php | 2 +- object/Item.php | 4 ++-- 10 files changed, 36 insertions(+), 30 deletions(-) diff --git a/include/api.php b/include/api.php index b5d8f9cf3..106983581 100644 --- a/include/api.php +++ b/include/api.php @@ -505,7 +505,7 @@ } require_once('include/contact_selectors.php'); - $network_name = network_to_name($uinfo[0]['network']); + $network_name = network_to_name($uinfo[0]['network'], $uinfo[0]['url']); $ret = Array( 'id' => intval($r[0]['id']), @@ -996,9 +996,9 @@ $status_info["entities"] = $converted["entities"]; if (($lastwall['item_network'] != "") AND ($status["source"] == 'web')) - $status_info["source"] = network_to_name($lastwall['item_network']); - elseif (($lastwall['item_network'] != "") AND (network_to_name($lastwall['item_network']) != $status_info["source"])) - $status_info["source"] = trim($status_info["source"].' ('.network_to_name($lastwall['item_network']).')'); + $status_info["source"] = network_to_name($lastwall['item_network'], $user_info['url']); + elseif (($lastwall['item_network'] != "") AND (network_to_name($lastwall['item_network'], $user_info['url']) != $status_info["source"])) + $status_info["source"] = trim($status_info["source"].' ('.network_to_name($lastwall['item_network'], $user_info['url']).')'); // "uid" and "self" are only needed for some internal stuff, so remove it from here unset($status_info["user"]["uid"]); @@ -1095,9 +1095,9 @@ $user_info["status"]["entities"] = $converted["entities"]; if (($lastwall['item_network'] != "") AND ($user_info["status"]["source"] == 'web')) - $user_info["status"]["source"] = network_to_name($lastwall['item_network']); - if (($lastwall['item_network'] != "") AND (network_to_name($lastwall['item_network']) != $user_info["status"]["source"])) - $user_info["status"]["source"] = trim($user_info["status"]["source"].' ('.network_to_name($lastwall['item_network']).')'); + $user_info["status"]["source"] = network_to_name($lastwall['item_network'], $user_info['url']); + if (($lastwall['item_network'] != "") AND (network_to_name($lastwall['item_network'], $user_info['url']) != $user_info["status"]["source"])) + $user_info["status"]["source"] = trim($user_info["status"]["source"].' ('.network_to_name($lastwall['item_network'], $user_info['url']).')'); } @@ -2214,9 +2214,9 @@ $status["entities"] = $converted["entities"]; if (($item['item_network'] != "") AND ($status["source"] == 'web')) - $status["source"] = network_to_name($item['item_network']); - else if (($item['item_network'] != "") AND (network_to_name($item['item_network']) != $status["source"])) - $status["source"] = trim($status["source"].' ('.network_to_name($item['item_network']).')'); + $status["source"] = network_to_name($item['item_network'], $user_info['url']); + else if (($item['item_network'] != "") AND (network_to_name($item['item_network'], $user_info['url']) != $status["source"])) + $status["source"] = trim($status["source"].' ('.network_to_name($item['item_network'], $user_info['url']).')'); // Retweets are only valid for top postings diff --git a/include/contact_selectors.php b/include/contact_selectors.php index c04b07fb6..f0ac87a09 100644 --- a/include/contact_selectors.php +++ b/include/contact_selectors.php @@ -1,5 +1,5 @@ t('Friendica'), @@ -97,6 +97,10 @@ function network_to_name($s) { $search = array_keys($nets); $replace = array_values($nets); - return str_replace($search,$replace,$s); + $networkname = str_replace($search,$replace,$s); + if (($s == NETWORK_DIASPORA) AND ($profile != "") AND diaspora_is_redmatrix($profile)) + $networkname = t("Redmatrix"); + + return $networkname; } diff --git a/include/identity.php b/include/identity.php index bf5d96927..b584896d3 100644 --- a/include/identity.php +++ b/include/identity.php @@ -175,7 +175,7 @@ if(! function_exists('profile_sidebar')) { if (($profile['network'] != "") AND ($profile['network'] != NETWORK_DFRN)) { require_once('include/contact_selectors.php'); if ($profile['url'] != "") - $profile['network_name'] = ''.network_to_name($profile['network']).""; + $profile['network_name'] = ''.network_to_name($profile['network'], $profile['url']).""; else $profile['network_name'] = network_to_name($profile['network']); } else diff --git a/include/items.php b/include/items.php index cba1ae236..848c21df3 100644 --- a/include/items.php +++ b/include/items.php @@ -2977,9 +2977,6 @@ function item_is_remote_self($contact, &$datarray) { $datarray['private'] = 0; } - //if (!isset($datarray["app"]) OR ($datarray["app"] == "")) - // $datarray["app"] = network_to_name($contact['network']); - if ($contact['network'] != NETWORK_FEED) { // Store the original post $r = item_store($datarray2, false, false); diff --git a/include/onepoll.php b/include/onepoll.php index d1f41d65f..9723fadd5 100644 --- a/include/onepoll.php +++ b/include/onepoll.php @@ -92,6 +92,10 @@ function onepoll_run(&$argv, &$argc){ ); if(! count($contacts)) { + // Maybe it is a Redmatrix account. Then we can fetch their contacts via poco + $contacts = q("SELECT `id`, `poco` FROM `contact` WHERE `id` = %d AND `poco` != ''", intval($contact_id)); + if ($contacts) + poco_load($contacts[0]['id'],$importer_uid,0,$contacts[0]['poco']); return; } diff --git a/include/socgraph.php b/include/socgraph.php index 23db35cab..1e1b6076f 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -124,8 +124,9 @@ function poco_load($cid,$uid = 0,$zcid = 0,$url = null) { $keywords = implode(", ", $tag); // If you query a Friendica server for its profiles, the network has to be Friendica - if ($uid == 0) - $network = NETWORK_DFRN; + // To-Do: It could also be a Redmatrix server + //if ($uid == 0) + // $network = NETWORK_DFRN; poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $generation, $cid, $uid, $zcid); diff --git a/mod/contacts.php b/mod/contacts.php index 6ee9a4a92..ffb9f1a46 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -505,7 +505,7 @@ function contacts_content(&$a) { $poll_enabled = in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_FEED, NETWORK_MAIL, NETWORK_MAIL2)); - $nettype = sprintf( t('Network type: %s'),network_to_name($contact['network'])); + $nettype = sprintf( t('Network type: %s'),network_to_name($contact['network'], $contact["url"])); $common = count_common_friends(local_user(),$contact['id']); $common_text = (($common) ? sprintf( tt('%d contact in common','%d contacts in common', $common),$common) : ''); @@ -806,7 +806,7 @@ function _contact_detail_for_template($rr){ 'sparkle' => $sparkle, 'itemurl' => $rr['url'], 'url' => $url, - 'network' => network_to_name($rr['network']), + 'network' => network_to_name($rr['network'], $rr['url']), ); - -} \ No newline at end of file + +} diff --git a/mod/nogroup.php b/mod/nogroup.php index 24d99a59b..adbcfcb51 100644 --- a/mod/nogroup.php +++ b/mod/nogroup.php @@ -43,13 +43,13 @@ function nogroup_content(&$a) { 'id' => $rr['id'], 'alt_text' => $alt_text, 'dir_icon' => $dir_icon, - 'thumb' => $rr['thumb'], + 'thumb' => $rr['thumb'], 'name' => $rr['name'], 'username' => $rr['name'], 'sparkle' => $sparkle, 'itemurl' => $rr['url'], 'url' => $url, - 'network' => network_to_name($rr['network']), + 'network' => network_to_name($rr['network'], $url), ); } } @@ -59,8 +59,8 @@ function nogroup_content(&$a) { '$header' => t('Contacts who are not members of a group'), '$contacts' => $contacts, '$paginate' => paginate($a), - )); - + )); + return $o; } diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index 3a6c48a3b..b84856701 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -68,7 +68,7 @@ function viewcontacts_content(&$a) { 'url' => $url, 'sparkle' => '', 'itemurl' => $rr['url'], - 'network' => network_to_name($rr['network']), + 'network' => network_to_name($rr['network'], $rr['url']), ); } diff --git a/object/Item.php b/object/Item.php index 7f9762581..8d364e602 100644 --- a/object/Item.php +++ b/object/Item.php @@ -4,6 +4,7 @@ if(class_exists('Item')) require_once('object/BaseObject.php'); require_once('include/text.php'); +require_once('include/diaspora.php'); require_once('boot.php'); /** @@ -82,7 +83,6 @@ class Item extends BaseObject { */ public function get_template_data($alike, $dlike, $thread_level=1) { require_once("mod/proxy.php"); - require_once("include/diaspora.php"); $result = array(); @@ -368,7 +368,7 @@ class Item extends BaseObject { 'postopts' => $langstr, 'edited' => $edited, 'network' => $item["item_network"], - 'network_name' => network_to_name($item['item_network']), + 'network_name' => network_to_name($item['item_network'], $profile_link), ); $arr = array('item' => $item, 'output' => $tmp_item); From 54a5a80b2425fe575643530b00c28578f1610448 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 17 Jul 2015 01:08:28 +0200 Subject: [PATCH 035/239] Poco: New fields for last contact and last failure of a contact. --- boot.php | 2 +- include/dbstructure.php | 2 + include/plaintext.php | 4 +- include/socgraph.php | 129 ++++++++++++++++++++++++++++++++++++---- mod/parse_url.php | 15 +++++ update.php | 2 +- 6 files changed, 139 insertions(+), 15 deletions(-) diff --git a/boot.php b/boot.php index 42498a6cc..ec803a157 100644 --- a/boot.php +++ b/boot.php @@ -19,7 +19,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Lily of the valley'); define ( 'FRIENDICA_VERSION', '3.4.1' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1185 ); +define ( 'DB_UPDATE_VERSION', 1186 ); define ( 'EOL', "
    \r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/include/dbstructure.php b/include/dbstructure.php index 0f81ee624..8688903ba 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -630,6 +630,8 @@ function db_definition() { "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "connect" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "updated" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), + "last_contact" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), + "last_failure" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "about" => array("type" => "text", "not null" => "1"), "keywords" => array("type" => "text", "not null" => "1"), diff --git a/include/plaintext.php b/include/plaintext.php index c8cdfa57d..4f435fc6a 100644 --- a/include/plaintext.php +++ b/include/plaintext.php @@ -52,7 +52,7 @@ function get_attached_data($body) { if (preg_match_all("(\[url=([$URLSearchString]*)\]\s*\[img\]([$URLSearchString]*)\[\/img\]\s*\[\/url\])ism", $body, $pictures, PREG_SET_ORDER)) { if (count($pictures) == 1) { // Checking, if the link goes to a picture - $data = parseurl_getsiteinfo($pictures[0][1], true); + $data = parseurl_getsiteinfo_cached($pictures[0][1], true); if ($data["type"] == "photo") { $post["type"] = "photo"; if (isset($data["images"][0])) @@ -95,7 +95,7 @@ function get_attached_data($body) { } } elseif (isset($post["url"]) AND ($post["type"] == "video")) { require_once("mod/parse_url.php"); - $data = parseurl_getsiteinfo($post["url"], true); + $data = parseurl_getsiteinfo_cached($post["url"], true); if (isset($data["images"][0])) $post["image"] = $data["images"][0]["src"]; diff --git a/include/socgraph.php b/include/socgraph.php index 1e1b6076f..1e8bd97aa 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -195,8 +195,20 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca $x = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1", dbesc(normalise_link($profile_url)) ); - if(count($x) AND ($network == "") AND ($x[0]["network"] != NETWORK_STATUSNET)) - $network = $x[0]["network"]; + + if (count($x)) { + if (($network == "") AND ($x[0]["network"] != NETWORK_STATUSNET)) + $network = $x[0]["network"]; + + if ($updated = "0000-00-00 00:00:00") + $updated = $x[0]["updated"]; + + $last_contact = $x[0]["last_contact"]; + $last_failure = $x[0]["last_failure"]; + } else { + $last_contact = "0000-00-00 00:00:00"; + $last_failure = "0000-00-00 00:00:00"; + } if (($network == "") OR ($name == "") OR ($profile_photo == "")) { require_once("include/Scrape.php"); @@ -223,6 +235,23 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca logger("profile-check generation: ".$generation." Network: ".$network." URL: ".$profile_url." name: ".$name." avatar: ".$profile_photo, LOGGER_DEBUG); + if (poco_do_update($updated, $last_contact, $last_failure)) { + $last_updated = poco_last_updated($profile_url); + if ($last_updated) { + $updated = $last_updated; + $last_contact = datetime_convert(); + logger("Last updated for profile ".$profile_url.": ".$updated, LOGGER_DEBUG); + + if (count($x)) + q("UPDATE `gcontact` SET `last_contact` = '%s' WHERE `nurl` = '%s'", dbesc($last_contact), dbesc(normalise_link($profile_url))); + } else { + $last_failure = datetime_convert(); + + if (count($x)) + q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", dbesc($last_failure), dbesc(normalise_link($profile_url))); + } + } + if(count($x)) { $gcid = $x[0]['id']; @@ -241,6 +270,9 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca if (($generation == 0) AND ($x[0]['generation'] > 0)) $generation = $x[0]['generation']; + if ($last_contact < $x[0]['last_contact']) + $last_contact = $x[0]['last_contact']; + if($x[0]['name'] != $name || $x[0]['photo'] != $profile_photo || $x[0]['updated'] < $updated) { q("UPDATE `gcontact` SET `name` = '%s', `network` = '%s', `photo` = '%s', `connect` = '%s', `url` = '%s', `updated` = '%s', `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s', `generation` = %d @@ -261,7 +293,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca ); } } else { - q("INSERT INTO `gcontact` (`name`,`network`, `url`,`nurl`,`photo`,`connect`, `updated`, `location`, `about`, `keywords`, `gender`, `generation`) + q("INSERT INTO `gcontact` (`name`,`network`, `url`,`nurl`,`photo`,`connect`, `updated`, `last_contact`, `last_failure`, `location`, `about`, `keywords`, `gender`, `generation`) VALUES ('%s', '%s', '%s', '%s', '%s','%s', '%s', '%s', '%s', '%s', '%s', %d)", dbesc($name), dbesc($network), @@ -270,6 +302,8 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca dbesc($profile_photo), dbesc($connect_url), dbesc($updated), + dbesc($last_contact), + dbesc($last_failure), dbesc($location), dbesc($about), dbesc($keywords), @@ -320,6 +354,79 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca return $gcid; } +function poco_last_updated($profile) { + $data = probe_url($profile); + + if (($data["poll"] == "") OR ($data["network"] == NETWORK_FEED)) + return false; + + $feedret = z_fetch_url($data["poll"]); + + if (!$feedret["success"]) + return false; + + $doc = new DOMDocument(); + @$doc->loadXML($feedret["body"]); + + $xpath = new DomXPath($doc); + $xpath->registerNamespace('atom', "http://www.w3.org/2005/Atom"); + + $entries = $xpath->query('/atom:feed/atom:entry'); + + $last_updated = ""; + + foreach ($entries AS $entry) { + $published = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue; + $updated = $xpath->query('atom:updated/text()', $entry)->item(0)->nodeValue; + + if ($last_updated < $published) + $last_updated = $published; + + if ($last_updated < $updated) + $last_updated = $updated; + } + + // Maybe there aren't any entries. Then check if it is a valid feed + if ($last_updated == "") + if ($xpath->query('/atom:feed')->length > 0) + $last_updated = "0000-00-00 00:00:00"; + + return($last_updated); +} + +function poco_do_update($updated, $last_contact, $last_failure) { + $now = strtotime(datetime_convert()); + + if ($updated > $last_contact) + $contact_time = strtotime($updated); + else + $contact_time = strtotime($last_contact); + + $failure_time = strtotime($last_failure); + + // If the last contact was less than 24 hours then don't update + if (($now - $contact_time) < (60 * 60 * 24)) + return false; + + // If the last failure was less than 24 hours then don't update + if (($now - $failure_time) < (60 * 60 * 24)) + return false; + + // If the last contact was less than a week ago and the last failure is older than a week then don't update + if ((($now - $contact_time) < (60 * 60 * 24 * 7)) AND ($contact_time > $failure_time)) + return false; + + // If the last contact time was more than a week ago, then only try once a week + if (($now - $contact_time) > (60 * 60 * 24 * 7) AND ($now - $failure_time) < (60 * 60 * 24 * 7)) + return false; + + // If the last contact time was more than a month ago, then only try once a month + if (($now - $contact_time) > (60 * 60 * 24 * 30) AND ($now - $failure_time) < (60 * 60 * 24 * 30)) + return false; + + return true; +} + function poco_contact_from_body($body, $created, $cid, $uid) { preg_replace_callback("/\[share(.*?)\].*?\[\/share\]/ism", function ($match) use ($created, $cid, $uid){ @@ -328,20 +435,20 @@ function poco_contact_from_body($body, $created, $cid, $uid) { } function sub_poco_from_share($share, $created, $cid, $uid) { - $profile = ""; - preg_match("/profile='(.*?)'/ism", $share[1], $matches); - if ($matches[1] != "") - $profile = $matches[1]; + $profile = ""; + preg_match("/profile='(.*?)'/ism", $share[1], $matches); + if ($matches[1] != "") + $profile = $matches[1]; - preg_match('/profile="(.*?)"/ism', $share[1], $matches); - if ($matches[1] != "") - $profile = $matches[1]; + preg_match('/profile="(.*?)"/ism', $share[1], $matches); + if ($matches[1] != "") + $profile = $matches[1]; if ($profile == "") return; logger("prepare poco_check for profile ".$profile, LOGGER_DEBUG); - poco_check($profile, "", "", "", "", "", "", "", "", $created, 3, $cid, $uid); + poco_check($profile, "", "", "", "", "", "", "", "", $created, 3, $cid, $uid); } function poco_store($item) { diff --git a/mod/parse_url.php b/mod/parse_url.php index 71d767675..50c6a15b0 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -50,6 +50,21 @@ function completeurl($url, $scheme) { return($complete); } +function parseurl_getsiteinfo_cached($url, $no_guessing = false, $do_oembed = true) { + + $data = Cache::get("parse_url:".$no_guessing.":".$do_oembed.":".$url); + if (!is_null($data)) { + $data = unserialize($data); + return $data; + } + + $data = parseurl_getsiteinfo($url, $no_guessing, $do_oembed); + + Cache::set("parse_url:".$no_guessing.":".$do_oembed.":".$url,serialize($data)); + + return $data; +} + function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $count = 1) { require_once("include/network.php"); diff --git a/update.php b/update.php index c182eb590..4f762661a 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ Date: Fri, 17 Jul 2015 08:38:20 +0200 Subject: [PATCH 036/239] Only suggest contacts that haven't failed recently --- include/socgraph.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/include/socgraph.php b/include/socgraph.php index 1e8bd97aa..6d14df613 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -2,6 +2,13 @@ require_once('include/datetime.php'); +/* + To-Do: + - noscrape for updating contact fields and "last updated" + - use /poco/@global for discovering contacts from other servers + - Make search for last activity optional +*/ + /* * poco_load * @@ -270,9 +277,6 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca if (($generation == 0) AND ($x[0]['generation'] > 0)) $generation = $x[0]['generation']; - if ($last_contact < $x[0]['last_contact']) - $last_contact = $x[0]['last_contact']; - if($x[0]['name'] != $name || $x[0]['photo'] != $profile_photo || $x[0]['updated'] < $updated) { q("UPDATE `gcontact` SET `name` = '%s', `network` = '%s', `photo` = '%s', `connect` = '%s', `url` = '%s', `updated` = '%s', `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s', `generation` = %d @@ -360,6 +364,8 @@ function poco_last_updated($profile) { if (($data["poll"] == "") OR ($data["network"] == NETWORK_FEED)) return false; + // To-Do: Use noscrape + $feedret = z_fetch_url($data["poll"]); if (!$feedret["success"]) @@ -649,6 +655,7 @@ function suggestion_query($uid, $start = 0, $limit = 80) { and not gcontact.name in ( select name from contact where uid = %d ) and not gcontact.id in ( select gcid from gcign where uid = %d ) AND `gcontact`.`updated` != '0000-00-00 00:00:00' + AND `gcontact`.`last_contact` >= `gcontact`.`last_failure` AND `gcontact`.`network` IN (%s) group by glink.gcid order by gcontact.updated desc,total desc limit %d, %d ", intval($uid), From 09d71abbfc507791124140ae6b21e92ffb050a5c Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 17 Jul 2015 08:58:42 +0200 Subject: [PATCH 037/239] poco: Only fetch last update manually if it wasn't provided --- include/socgraph.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/socgraph.php b/include/socgraph.php index 6d14df613..3ff934f72 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -174,6 +174,8 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca if ($profile_url == "") return $gcid; + $orig_updated = $updated; + // Don't store the statusnet connector as network // We can't simply set this to NETWORK_OSTATUS since the connector could have fetched posts from friendica as well if ($network == NETWORK_STATUSNET) @@ -207,7 +209,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca if (($network == "") AND ($x[0]["network"] != NETWORK_STATUSNET)) $network = $x[0]["network"]; - if ($updated = "0000-00-00 00:00:00") + if ($updated == "0000-00-00 00:00:00") $updated = $x[0]["updated"]; $last_contact = $x[0]["last_contact"]; @@ -242,7 +244,8 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca logger("profile-check generation: ".$generation." Network: ".$network." URL: ".$profile_url." name: ".$name." avatar: ".$profile_photo, LOGGER_DEBUG); - if (poco_do_update($updated, $last_contact, $last_failure)) { + // Only fetch last update manually if it wasn't provided + if (($orig_updated == "0000-00-00 00:00:00") AND poco_do_update($updated, $last_contact, $last_failure)) { $last_updated = poco_last_updated($profile_url); if ($last_updated) { $updated = $last_updated; From bbd2e4abc192afc48650713887a987ae4b55c25f Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 17 Jul 2015 17:05:55 +0200 Subject: [PATCH 038/239] make the 'noshare' checkbox checked by default for photo upload --- view/templates/photos_upload.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/templates/photos_upload.tpl b/view/templates/photos_upload.tpl index 4431dd280..aeb6e5957 100644 --- a/view/templates/photos_upload.tpl +++ b/view/templates/photos_upload.tpl @@ -20,7 +20,7 @@
    - +
    From 639f94f8b90ce23420be40d9f183e57190a4ecf4 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 17 Jul 2015 23:05:50 +0200 Subject: [PATCH 039/239] Onepoll: mark the last request failure for this contact --- include/dbstructure.php | 1 + include/onepoll.php | 117 +++++++++++++++++++++++++++++----------- include/socgraph.php | 5 +- 3 files changed, 89 insertions(+), 34 deletions(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index 8688903ba..98e225bf8 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -451,6 +451,7 @@ function db_definition() { "hub-verify" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "last-update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), "success_update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), + "failure_update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), "name-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), "uri-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), "avatar-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), diff --git a/include/onepoll.php b/include/onepoll.php index 9723fadd5..73668126a 100644 --- a/include/onepoll.php +++ b/include/onepoll.php @@ -79,28 +79,69 @@ function onepoll_run(&$argv, &$argc){ $contacts = q("SELECT `contact`.* FROM `contact` WHERE ( `rel` = %d OR `rel` = %d ) AND `poll` != '' - AND NOT `network` IN ( '%s', '%s', '%s' ) + AND NOT `network` IN ( '%s', '%s' ) AND `contact`.`id` = %d AND `self` = 0 AND `contact`.`blocked` = 0 AND `contact`.`readonly` = 0 AND `contact`.`archive` = 0 LIMIT 1", intval(CONTACT_IS_SHARING), intval(CONTACT_IS_FRIEND), - dbesc(NETWORK_DIASPORA), dbesc(NETWORK_FACEBOOK), dbesc(NETWORK_PUMPIO), intval($contact_id) ); - if(! count($contacts)) { - // Maybe it is a Redmatrix account. Then we can fetch their contacts via poco - $contacts = q("SELECT `id`, `poco` FROM `contact` WHERE `id` = %d AND `poco` != ''", intval($contact_id)); - if ($contacts) - poco_load($contacts[0]['id'],$importer_uid,0,$contacts[0]['poco']); + if(! count($contacts)) return; - } $contact = $contacts[0]; + // load current friends if possible. + if (($contact['poco'] != "") AND ($contact['success_update'] > $contact['failure_update'])) { + $r = q("SELECT count(*) as total from glink + where `cid` = %d and updated > UTC_TIMESTAMP() - INTERVAL 1 DAY", + intval($contact['id']) + ); + if (count($r)) + if (!$r[0]['total']) + poco_load($contact['id'],$importer_uid,0,$contact['poco']); + } + + // To-Do: + // - Check why we don't poll the Diaspora feed at the moment (some guid problem in the items?) + // - Check whether this is possible with Redmatrix + if ($contact["network"] == NETWORK_DIASPORA) { + if (poco_do_update($contact["last-item"], $contact["success_update"], $contact["failure_update"])) { + $last_updated = poco_last_updated($contact["url"]); + $updated = datetime_convert(); + if ($last_updated) { + q("UPDATE `contact` SET `last-item` = '%s', `last-update` = '%s', `success_update` = '%s' WHERE `id` = %d", + dbesc($last_updated), + dbesc($updated), + dbesc($updated), + intval($contact['id']) + ); + + q("UPDATE `gcontact` SET `updated` = '%s', `last_contact` = '%s' WHERE `nurl` = '%s'", + dbesc($last_updated), + dbesc($updated), + dbesc($contact['nurl']) + ); + } else { + q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d", + dbesc($updated), + dbesc($updated), + intval($contact['id']) + ); + + q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", + dbesc($updated), + dbesc($contact['nurl']) + ); + } + } + return; + } + $xml = false; $t = $contact['last-update']; @@ -177,7 +218,8 @@ function onepoll_run(&$argv, &$argc){ mark_for_death($contact); // set the last-update so we don't keep polling - $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d", + $r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d", + dbesc(datetime_convert()), dbesc(datetime_convert()), intval($contact['id']) ); @@ -190,7 +232,8 @@ function onepoll_run(&$argv, &$argc){ mark_for_death($contact); - $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d", + $r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d", + dbesc(datetime_convert()), dbesc(datetime_convert()), intval($contact['id']) ); @@ -207,7 +250,8 @@ function onepoll_run(&$argv, &$argc){ // set the last-update so we don't keep polling - $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d", + $r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d", + dbesc(datetime_convert()), dbesc(datetime_convert()), intval($contact['id']) ); @@ -554,14 +598,14 @@ function onepoll_run(&$argv, &$argc){ logger('poller: received xml : ' . $xml, LOGGER_DATA); if(! strstr($xml,'<')) { logger('poller: post_handshake: response from ' . $url . ' did not contain XML.'); - $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d", + $r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d", + dbesc(datetime_convert()), dbesc(datetime_convert()), intval($contact['id']) ); return; } - consume_feed($xml,$importer,$contact,$hub,1,1); @@ -588,29 +632,38 @@ function onepoll_run(&$argv, &$argc){ } } } - } - $updated = datetime_convert(); + $updated = datetime_convert(); - $r = q("UPDATE `contact` SET `last-update` = '%s', `success_update` = '%s' WHERE `id` = %d", - dbesc($updated), - dbesc($updated), - intval($contact['id']) - ); - - - // load current friends if possible. - - if($contact['poco']) { - $r = q("SELECT count(*) as total from glink - where `cid` = %d and updated > UTC_TIMESTAMP() - INTERVAL 1 DAY", + $r = q("UPDATE `contact` SET `last-update` = '%s', `success_update` = '%s' WHERE `id` = %d", + dbesc($updated), + dbesc($updated), + intval($contact['id']) + ); + + q("UPDATE `gcontact` SET `last_contact` = '%s' WHERE `nurl` = '%s'", + dbesc($updated), + dbesc($contact['nurl']) + ); + + } elseif (in_array($contact["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, NETWORK_FEED))) { + $updated = datetime_convert(); + + $r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d", + dbesc($updated), + dbesc($updated), + intval($contact['id']) + ); + + q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", + dbesc($updated), + dbesc($contact['nurl']) + ); + } else { + $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d", + dbesc($updated), intval($contact['id']) ); - } - if(count($r)) { - if(! $r[0]['total']) { - poco_load($contact['id'],$importer_uid,0,$contact['poco']); - } } return; diff --git a/include/socgraph.php b/include/socgraph.php index 3ff934f72..c676157ea 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -1,12 +1,15 @@ Date: Sat, 18 Jul 2015 00:48:42 +0200 Subject: [PATCH 040/239] Poco: Option to activate and deactivate detection of last activity. --- include/socgraph.php | 7 ++----- mod/admin.php | 5 +++++ mod/poco.php | 10 ++++++---- view/templates/admin_site.tpl | 11 +++++++---- 4 files changed, 20 insertions(+), 13 deletions(-) diff --git a/include/socgraph.php b/include/socgraph.php index c676157ea..5c9b1d98a 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -7,9 +7,6 @@ require_once("include/Scrape.php"); To-Do: - noscrape for updating contact fields and "last updated" - use /poco/@global for discovering contacts from other servers - - Make search for last activity optional - - only export contacts via poco where update is higher than failure - - check your own contacts in some way as well */ /* @@ -245,8 +242,8 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca logger("profile-check generation: ".$generation." Network: ".$network." URL: ".$profile_url." name: ".$name." avatar: ".$profile_photo, LOGGER_DEBUG); - // Only fetch last update manually if it wasn't provided - if (($orig_updated == "0000-00-00 00:00:00") AND poco_do_update($updated, $last_contact, $last_failure)) { + // Only fetch last update manually if it wasn't provided and enabled in the system + if (get_config('system','ld_discover_activity') AND ($orig_updated == "0000-00-00 00:00:00") AND poco_do_update($updated, $last_contact, $last_failure)) { $last_updated = poco_last_updated($profile_url); if ($last_updated) { $updated = $last_updated; diff --git a/mod/admin.php b/mod/admin.php index 28a7a91e4..214ce62ea 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -358,6 +358,7 @@ function admin_page_site_post(&$a){ $poll_interval = ((x($_POST,'poll_interval')) ? intval(trim($_POST['poll_interval'])) : 0); $maxloadavg = ((x($_POST,'maxloadavg')) ? intval(trim($_POST['maxloadavg'])) : 50); $maxloadavg_frontend = ((x($_POST,'maxloadavg_frontend')) ? intval(trim($_POST['maxloadavg_frontend'])) : 50); + $ld_discover_activity = ((x($_POST,'ld_discover_activity')) ? intval(trim($_POST['ld_discover_activity'])) : false); $dfrn_only = ((x($_POST,'dfrn_only')) ? True : False); $ostatus_disabled = !((x($_POST,'ostatus_disabled')) ? True : False); $ostatus_poll_interval = ((x($_POST,'ostatus_poll_interval')) ? intval(trim($_POST['ostatus_poll_interval'])) : 0); @@ -427,6 +428,7 @@ function admin_page_site_post(&$a){ set_config('system','poll_interval',$poll_interval); set_config('system','maxloadavg',$maxloadavg); set_config('system','maxloadavg_frontend',$maxloadavg_frontend); + set_config('system','ld_discover_activity',$ld_discover_activity); set_config('config','sitename',$sitename); set_config('config','hostname',$hostname); set_config('config','sender_email', $sender_email); @@ -630,6 +632,7 @@ function admin_page_site(&$a) { '$upload' => t('File upload'), '$corporate' => t('Policies'), '$advanced' => t('Advanced'), + '$local_directory' => t('Local Directory (Portable Contacts)'), '$performance' => t('Performance'), '$relocate'=> t('Relocate - WARNING: advanced function. Could make this server unreachable.'), '$baseurl' => $a->get_baseurl(true), @@ -687,6 +690,8 @@ function admin_page_site(&$a) { '$maxloadavg' => array('maxloadavg', t("Maximum Load Average"), ((intval(get_config('system','maxloadavg')) > 0)?get_config('system','maxloadavg'):50), t("Maximum system load before delivery and poll processes are deferred - default 50.")), '$maxloadavg_frontend' => array('maxloadavg_frontend', t("Maximum Load Average (Frontend)"), ((intval(get_config('system','maxloadavg_frontend')) > 0)?get_config('system','maxloadavg_frontend'):50), t("Maximum system load before the frontend quits service - default 50.")), + '$ld_discover_activity' => array('ld_discover_activity', t("Discover last activity"), get_config('system','ld_discover_activity'), t("Update the last activity when this isn't provided via the 'portable contacts' functionality. (Useful for poco exchange with Redmatrix and friendica servers before 3.3)")), + '$use_fulltext_engine' => array('use_fulltext_engine', t("Use MySQL full text engine"), get_config('system','use_fulltext_engine'), t("Activates the full text engine. Speeds up search - but can only search for four and more characters.")), '$suppress_language' => array('suppress_language', t("Suppress Language"), get_config('system','suppress_language'), t("Suppress language information in meta information about a posting.")), '$suppress_tags' => array('suppress_tags', t("Suppress Tags"), get_config('system','suppress_tags'), t("Suppress showing a list of hashtags at the end of the posting.")), diff --git a/mod/poco.php b/mod/poco.php index 89f2f879a..0b62e93e3 100644 --- a/mod/poco.php +++ b/mod/poco.php @@ -61,12 +61,13 @@ function poco_init(&$a) { $update_limit = date("Y-m-d H:i:s",strtotime($_GET['updatedSince'])); if ($global) { - $r = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `updated` >= '%s' AND `network` IN ('%s')", + $r = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `updated` >= '%s' AND `last_contact` >= `last_failure` AND `network` IN ('%s')", dbesc($update_limit), dbesc(NETWORK_DFRN) ); } elseif($system_mode) { $r = q("SELECT count(*) AS `total` FROM `contact` WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s', '') + AND `success_update` >= `failure_update` AND `uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) ", dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), @@ -75,7 +76,7 @@ function poco_init(&$a) { ); } else { $r = q("SELECT count(*) AS `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 - AND `network` IN ('%s', '%s', '%s', '%s', '') $sql_extra", + AND `success_update` >= `failure_update` AND `network` IN ('%s', '%s', '%s', '%s', '') $sql_extra", intval($user['uid']), dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), @@ -95,7 +96,7 @@ function poco_init(&$a) { if ($global) { - $r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND `network` IN ('%s') LIMIT %d, %d", + $r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND `network` IN ('%s') AND `last_contact` >= `last_failure` LIMIT %d, %d", dbesc($update_limit), dbesc(NETWORK_DFRN), intval($startIndex), @@ -106,6 +107,7 @@ function poco_init(&$a) { `profile`.`address` AS `paddress`, `profile`.`region` AS `pregion`, `profile`.`postal-code` AS `ppostalcode`, `profile`.`country-name` AS `pcountry` FROM `contact` INNER JOIN `profile` ON `profile`.`uid` = `contact`.`uid` WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s', '') AND `profile`.`is-default` + AND `contact`.`success_update` >= `contact`.`failure_update` AND `contact`.`uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) LIMIT %d, %d", dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), @@ -116,7 +118,7 @@ function poco_init(&$a) { ); } else { $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 - AND `network` IN ('%s', '%s', '%s', '%s', '') $sql_extra LIMIT %d, %d", + AND `success_update` >= `failure_update` AND `network` IN ('%s', '%s', '%s', '%s', '') $sql_extra LIMIT %d, %d", intval($user['uid']), dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), diff --git a/view/templates/admin_site.tpl b/view/templates/admin_site.tpl index 34c590b2e..5809d5ac6 100644 --- a/view/templates/admin_site.tpl +++ b/view/templates/admin_site.tpl @@ -59,8 +59,6 @@ {{include file="field_checkbox.tpl" field=$old_share}} {{include file="field_checkbox.tpl" field=$hide_help}} {{include file="field_select.tpl" field=$singleuser}} - -

    {{$registration}}

    @@ -70,13 +68,13 @@ {{include file="field_checkbox.tpl" field=$no_multi_reg}} {{include file="field_checkbox.tpl" field=$no_openid}} {{include file="field_checkbox.tpl" field=$no_regfullname}} -

    {{$upload}}

    {{include file="field_input.tpl" field=$maximagesize}} {{include file="field_input.tpl" field=$maximagelength}} {{include file="field_input.tpl" field=$jpegimagequality}} +

    {{$corporate}}

    {{include file="field_input.tpl" field=$allowed_sites}} @@ -99,7 +97,7 @@

    {{$advanced}}

    - {{include file="field_select.tpl" field=$rino}} + {{include file="field_select.tpl" field=$rino}} {{include file="field_checkbox.tpl" field=$no_utf}} {{include file="field_checkbox.tpl" field=$verifyssl}} {{include file="field_input.tpl" field=$proxy}} @@ -115,6 +113,11 @@ {{include file="field_input.tpl" field=$basepath}} {{include file="field_checkbox.tpl" field=$suppress_language}} {{include file="field_checkbox.tpl" field=$suppress_tags}} +
    + +

    {{$local_directory}}

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

    {{$performance}}

    {{include file="field_checkbox.tpl" field=$use_fulltext_engine}} From 9bb805f3dc3441aed56ab4f5f03d4a7a67163925 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 18 Jul 2015 10:57:31 +0200 Subject: [PATCH 041/239] show profile url in contact-edit overview listing --- mod/contacts.php | 2 ++ view/templates/contact_edit.tpl | 1 + 2 files changed, 3 insertions(+) diff --git a/mod/contacts.php b/mod/contacts.php index ffb9f1a46..63dffab67 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -605,6 +605,8 @@ function contacts_content(&$a) { '$alt_text' => $alt_text, '$sparkle' => $sparkle, '$url' => $url, + '$profileurllabel' => t('Profile URL'), + '$profileurl' => $contact['url'], )); diff --git a/view/templates/contact_edit.tpl b/view/templates/contact_edit.tpl index 1b13dcdad..06141081c 100644 --- a/view/templates/contact_edit.tpl +++ b/view/templates/contact_edit.tpl @@ -20,6 +20,7 @@
  • {{$relation_text}}
  • {{/if}}
  • {{$nettype}}
  • +
  • {{$profileurllabel}}: {{$profileurl}}
  • {{if $lost_contact}}
  • {{$lost_contact}}
  • {{/if}} From 38d7b5e32641cccfbdcfb9ed11c2ece0243f7698 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 18 Jul 2015 20:15:21 +0200 Subject: [PATCH 042/239] New table "gserver" for server data of the global contacts --- database.sql | 27 ++++- include/dbstructure.php | 21 ++++ include/socgraph.php | 251 +++++++++++++++++++++++++++++++++++++++- 3 files changed, 293 insertions(+), 6 deletions(-) diff --git a/database.sql b/database.sql index b65dee657..ce5f051cd 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ --- Friendica 3.4.0 (Lily of the valley) --- DB_UPDATE_VERSION 1185 +-- Friendica 3.4.1 (Lily of the valley) +-- DB_UPDATE_VERSION 1186 -- ------------------------------------------ @@ -136,6 +136,7 @@ CREATE TABLE IF NOT EXISTS `contact` ( `hub-verify` varchar(255) NOT NULL DEFAULT '', `last-update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `success_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `failure_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `name-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `uri-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `avatar-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', @@ -305,12 +306,15 @@ CREATE TABLE IF NOT EXISTS `gcontact` ( `photo` varchar(255) NOT NULL DEFAULT '', `connect` varchar(255) NOT NULL DEFAULT '', `updated` datetime DEFAULT '0000-00-00 00:00:00', + `last_contact` datetime DEFAULT '0000-00-00 00:00:00', + `last_failure` datetime DEFAULT '0000-00-00 00:00:00', `location` varchar(255) NOT NULL DEFAULT '', `about` text NOT NULL, `keywords` text NOT NULL, `gender` varchar(32) NOT NULL DEFAULT '', `network` varchar(255) NOT NULL DEFAULT '', `generation` tinyint(3) NOT NULL DEFAULT 0, + `server_url` varchar(255) NOT NULL DEFAULT '', INDEX `nurl` (`nurl`) ) DEFAULT CHARSET=utf8; @@ -352,6 +356,25 @@ CREATE TABLE IF NOT EXISTS `group_member` ( INDEX `uid_gid_contactid` (`uid`,`gid`,`contact-id`) ) DEFAULT CHARSET=utf8; +-- +-- TABLE gserver +-- +CREATE TABLE IF NOT EXISTS `gserver` ( + `url` varchar(255) NOT NULL DEFAULT '', + `nurl` varchar(255) NOT NULL DEFAULT '', + `version` varchar(255) NOT NULL DEFAULT '', + `site_name` varchar(255) NOT NULL DEFAULT '', + `info` text NOT NULL, + `register_policy` tinyint(1) NOT NULL DEFAULT 0, + `poco` varchar(255) NOT NULL DEFAULT '', + `noscrape` varchar(255) NOT NULL DEFAULT '', + `network` varchar(32) NOT NULL DEFAULT '', + `platform` varchar(255) NOT NULL DEFAULT '', + `last_poco_query` datetime DEFAULT '0000-00-00 00:00:00', + `last_contact` datetime DEFAULT '0000-00-00 00:00:00', + `last_failure` datetime DEFAULT '0000-00-00 00:00:00' +) DEFAULT CHARSET=utf8; + -- -- TABLE guid -- diff --git a/include/dbstructure.php b/include/dbstructure.php index 98e225bf8..9d0856c25 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -639,6 +639,7 @@ function db_definition() { "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""), "network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "generation" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"), + "server_url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), ), "indexes" => array( "PRIMARY" => array("id"), @@ -686,6 +687,26 @@ function db_definition() { "uid_gid_contactid" => array("uid","gid","contact-id"), ) ); + $database["gserver"] = array( + "fields" => array( + "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "version" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "site_name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "info" => array("type" => "text", "not null" => "1"), + "register_policy" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"), + "poco" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "noscrape" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""), + "platform" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "last_poco_query" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), + "last_contact" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), + "last_failure" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), + ), + "indexes" => array( + "PRIMARY" => array("nurl"), + ) + ); $database["guid"] = array( "fields" => array( "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"), diff --git a/include/socgraph.php b/include/socgraph.php index 5c9b1d98a..a6899e952 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -214,17 +214,20 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca $last_contact = $x[0]["last_contact"]; $last_failure = $x[0]["last_failure"]; + $server_url = $x[0]["server_url"]; } else { $last_contact = "0000-00-00 00:00:00"; $last_failure = "0000-00-00 00:00:00"; + $server_url = ""; } - if (($network == "") OR ($name == "") OR ($profile_photo == "")) { + if (($network == "") OR ($name == "") OR ($profile_photo == "") OR ($server_url == "")) { $data = probe_url($profile_url); $network = $data["network"]; $name = $data["name"]; $profile_url = $data["url"]; $profile_photo = $data["photo"]; + $server_url = $data["baseurl"]; } if (count($x) AND ($x[0]["network"] == "") AND ($network != "")) { @@ -260,6 +263,14 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca } } + poco_check_server($server_url, $network); + + // Test - remove before flight + if ($last_contact > $last_failure) + q("UPDATE `gserver` SET `last_contact` = '%s' WHERE `nurl` = '%s'", dbesc($last_contact), dbesc(normalise_link($server_url))); + else + q("UPDATE `gserver` SET `last_failure` = '%s' WHERE `nurl` = '%s'", dbesc($last_failure), dbesc(normalise_link($server_url))); + if(count($x)) { $gcid = $x[0]['id']; @@ -279,7 +290,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca $generation = $x[0]['generation']; if($x[0]['name'] != $name || $x[0]['photo'] != $profile_photo || $x[0]['updated'] < $updated) { - q("UPDATE `gcontact` SET `name` = '%s', `network` = '%s', `photo` = '%s', `connect` = '%s', `url` = '%s', + q("UPDATE `gcontact` SET `name` = '%s', `network` = '%s', `photo` = '%s', `connect` = '%s', `url` = '%s', `server_url` = '%s', `updated` = '%s', `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s', `generation` = %d WHERE (`generation` >= %d OR `generation` = 0) AND `nurl` = '%s'", dbesc($name), @@ -287,6 +298,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca dbesc($profile_photo), dbesc($connect_url), dbesc($profile_url), + dbesc($server_url), dbesc($updated), dbesc($location), dbesc($about), @@ -298,14 +310,15 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca ); } } else { - q("INSERT INTO `gcontact` (`name`,`network`, `url`,`nurl`,`photo`,`connect`, `updated`, `last_contact`, `last_failure`, `location`, `about`, `keywords`, `gender`, `generation`) - VALUES ('%s', '%s', '%s', '%s', '%s','%s', '%s', '%s', '%s', '%s', '%s', %d)", + q("INSERT INTO `gcontact` (`name`,`network`, `url`,`nurl`,`photo`,`connect`, `server_url`, `updated`, `last_contact`, `last_failure`, `location`, `about`, `keywords`, `gender`, `generation`) + VALUES ('%s', '%s', '%s', '%s', '%s','%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d)", dbesc($name), dbesc($network), dbesc($profile_url), dbesc(normalise_link($profile_url)), dbesc($profile_photo), dbesc($connect_url), + dbesc($server_url), dbesc($updated), dbesc($last_contact), dbesc($last_failure), @@ -434,6 +447,236 @@ function poco_do_update($updated, $last_contact, $last_failure) { return true; } +function poco_to_boolean($val) { + if (($val == "true") OR ($val == 1)) + return(true); + if (($val == "false") OR ($val == 0)) + return(false); + + return ($val); +} + +function poco_check_server($server_url, $network = "") { + + if ($server_url == "") + return; + + $servers = q("SELECT * FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url))); + if ($servers) { + $poco = $servers[0]["poco"]; + $noscrape = $servers[0]["noscrape"]; + + if ($network == "") + $network = $servers[0]["network"]; + + $last_contact = $servers[0]["last_contact"]; + $last_failure = $servers[0]["last_failure"]; + $version = $servers[0]["version"]; + $platform = $servers[0]["platform"]; + $site_name = $servers[0]["site_name"]; + $info = $servers[0]["info"]; + $register_policy = $servers[0]["register_policy"]; + + // Only check the server once a week + if (strtotime(datetime_convert()) < (strtotime($last_contact) + (60 * 60 * 24 * 7))) + return; + + if (strtotime(datetime_convert()) < (strtotime($last_failure) + (60 * 60 * 24 * 7))) + return; + } else { + $poco = ""; + $noscrape = ""; + $version = ""; + $platform = ""; + $site_name = ""; + $info = ""; + $register_policy = -1; + + $last_contact = "0000-00-00 00:00:00"; + $last_failure = "0000-00-00 00:00:00"; + } + + $failure = false; + $orig_last_failure = $last_failure; + + // Check if the page is accessible via SSL. + $server_url = str_replace("http://", "https://", $server_url); + $serverret = z_fetch_url($server_url."/.well-known/host-meta"); + + // Maybe the page is unencrypted only? + $xmlobj = @simplexml_load_string($serverret["body"],'SimpleXMLElement',0, "http://docs.oasis-open.org/ns/xri/xrd-1.0"); + if (!$serverret["success"] OR ($serverret["body"] == "") OR (@sizeof($xmlobj) == 0) OR !is_object($xmlobj)) { + $server_url = str_replace("https://", "http://", $server_url); + $serverret = z_fetch_url($server_url."/.well-known/host-meta"); + + $xmlobj = @simplexml_load_string($serverret["body"],'SimpleXMLElement',0, "http://docs.oasis-open.org/ns/xri/xrd-1.0"); + } + + if (!$serverret["success"] OR ($serverret["body"] == "") OR (sizeof($xmlobj) == 0) OR !is_object($xmlobj)) { + $last_failure = datetime_convert(); + $failure = true; + } elseif ($network == NETWORK_DIASPORA) + $last_contact = datetime_convert(); + + if (!$failure) { + // Test for Statusnet + // Will also return data for Friendica and GNU Social - but it will be overwritten later + // The "not implemented" is a special treatment for really, really old Friendica versions + $serverret = z_fetch_url($server_url."/api/statusnet/version.json"); + if ($serverret["success"] AND ($serverret["body"] != '{"error":"not implemented"}') AND ($serverret["body"] != '') AND (strlen($serverret["body"]) < 250)) { + $platform = "StatusNet"; + $version = trim($serverret["body"], '"'); + $network = NETWORK_OSTATUS; + } + + // Test for GNU Social + $serverret = z_fetch_url($server_url."/api/gnusocial/version.json"); + if ($serverret["success"] AND ($serverret["body"] != '{"error":"not implemented"}') AND ($serverret["body"] != '') AND (strlen($serverret["body"]) < 250)) { + $platform = "GNU Social"; + $version = trim($serverret["body"], '"'); + $network = NETWORK_OSTATUS; + } + + $serverret = z_fetch_url($server_url."/api/statusnet/config.json"); + if ($serverret["success"]) { + $data = json_decode($serverret["body"]); + + if (isset($data->site->server)) { + $last_contact = datetime_convert(); + + if (isset($data->site->redmatrix)) { + if (isset($data->site->redmatrix->PLATFORM_NAME)) + $platform = $data->site->redmatrix->PLATFORM_NAME; + elseif (isset($data->site->redmatrix->RED_PLATFORM)) + $platform = $data->site->redmatrix->RED_PLATFORM; + + $version = $data->site->redmatrix->RED_VERSION; + $network = NETWORK_DIASPORA; + } + if (isset($data->site->friendica)) { + $platform = $data->site->friendica->FRIENDICA_PLATFORM; + $version = $data->site->friendica->FRIENDICA_VERSION; + $network = NETWORK_DFRN; + } + + $site_name = $data->site->name; + + $data->site->closed = poco_to_boolean($data->site->closed); + $data->site->private = poco_to_boolean($data->site->private); + $data->site->inviteonly = poco_to_boolean($data->site->inviteonly); + + if (!$data->site->closed AND !$data->site->private and $data->site->inviteonly) + $register_policy = REGISTER_APPROVE; + elseif (!$data->site->closed AND !$data->site->private) + $register_policy = REGISTER_OPEN; + else + $register_policy = REGISTER_CLOSED; + } + } + } + + // Query statistics.json. Optional package for Diaspora, Friendica and Redmatrix + if (!$failure) { + $serverret = z_fetch_url($server_url."/statistics.json"); + if ($serverret["success"]) { + $data = json_decode($serverret["body"]); + if ($version == "") + $version = $data->version; + + $site_name = $data->name; + + if (isset($data->network) AND ($platform == "")) + $platform = $data->network; + + if ($data->registrations_open) + $register_policy = REGISTER_OPEN; + else + $register_policy = REGISTER_CLOSED; + + if (isset($data->version)) + $last_contact = datetime_convert(); + } + } + + // Check for noscrape + // Friendica servers could be detected as OStatus servers + if (!$failure AND in_array($network, array(NETWORK_DFRN, NETWORK_OSTATUS))) { + $serverret = z_fetch_url($server_url."/friendica/json"); + + if ($serverret["success"]) { + $data = json_decode($serverret["body"]); + + if (isset($data->version)) { + $last_contact = datetime_convert(); + $network = NETWORK_DFRN; + + $noscrape = $data->no_scrape_url; + $version = $data->version; + $site_name = $data->site_name; + $info = $data->info; + $register_policy_str = $data->register_policy; + $platform = $data->platform; + + switch ($register_policy_str) { + case "REGISTER_CLOSED": + $register_policy = REGISTER_CLOSED; + break; + case "REGISTER_APPROVE": + $register_policy = REGISTER_APPROVE; + break; + case "REGISTER_OPEN": + $register_policy = REGISTER_OPEN; + break; + } + } + } + } + + // Look for poco + if (!$failure) { + $serverret = z_fetch_url($server_url."/poco"); + if ($serverret["success"]) { + $data = json_decode($serverret["body"]); + if (isset($data->totalResults)) { + $poco = $server_url."/poco"; + $last_contact = datetime_convert(); + } + } + } + + if ($servers) + q("UPDATE `gserver` SET `url` = '%s', `version` = '%s', `site_name` = '%s', `info` = '%s', `register_policy` = %d, `poco` = '%s', `noscrape` = '%s', + `network` = '%s', `platform` = '%s', `last_contact` = '%s', `last_failure` = '%s' WHERE `nurl` = '%s'", + dbesc($server_url), + dbesc($version), + dbesc($site_name), + dbesc($info), + intval($register_policy), + dbesc($poco), + dbesc($noscrape), + dbesc($network), + dbesc($platform), + dbesc($last_contact), + dbesc($last_failure), + dbesc(normalise_link($server_url)) + ); + else + q("INSERT INTO `gserver` (`url`, `nurl`, `version`, `site_name`, `info`, `register_policy`, `poco`, `noscrape`, `network`, `platform`, `last_contact`) + VALUES ('%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s', '%s')", + dbesc($server_url), + dbesc(normalise_link($server_url)), + dbesc($version), + dbesc($site_name), + dbesc($info), + intval($register_policy), + dbesc($poco), + dbesc($noscrape), + dbesc($network), + dbesc($platform), + dbesc(datetime_convert()) + ); +} + function poco_contact_from_body($body, $created, $cid, $uid) { preg_replace_callback("/\[share(.*?)\].*?\[\/share\]/ism", function ($match) use ($created, $cid, $uid){ From cf3214c9040d84102cfe30943ee42211305412d3 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 18 Jul 2015 22:26:06 +0200 Subject: [PATCH 043/239] Query other servers periodically for their known contacts --- include/discover_poco.php | 71 +++++++++++++++++++++ include/poller.php | 4 ++ include/socgraph.php | 115 ++++++++++++++++++++++++++++------ mod/admin.php | 13 ++-- view/templates/admin_site.tpl | 5 +- 5 files changed, 183 insertions(+), 25 deletions(-) create mode 100644 include/discover_poco.php diff --git a/include/discover_poco.php b/include/discover_poco.php new file mode 100644 index 000000000..5a493ab96 --- /dev/null +++ b/include/discover_poco.php @@ -0,0 +1,71 @@ + $maxsysload) { + logger('system: load ' . $load[0] . ' too high. discover_poco deferred to next scheduled run.'); + return; + } + } + + $lockpath = get_lockpath(); + if ($lockpath != '') { + $pidfile = new pidfile($lockpath, 'discover_poco'); + if($pidfile->is_already_running()) { + logger("discover_poco: Already running"); + if ($pidfile->running_time() > 19*60) { + $pidfile->kill(); + logger("discover_poco: killed stale process"); + // Calling a new instance + proc_run('php','include/discover_poco.php'); + } + exit; + } + } + + $a->set_baseurl(get_config('system','url')); + + load_hooks(); + + logger('start'); + + if (get_config('system','poco_discovery')) + poco_discover(); + + logger('end'); + + return; +} + +if (array_search(__file__,get_included_files())===0){ + discover_poco_run($_SERVER["argv"],$_SERVER["argc"]); + killme(); +} diff --git a/include/poller.php b/include/poller.php index d971d4f00..44ac94daa 100644 --- a/include/poller.php +++ b/include/poller.php @@ -82,6 +82,10 @@ function poller_run(&$argv, &$argc){ proc_run('php',"include/dsprphotoq.php"); + // run the process to discover global contacts in the background + + proc_run('php',"include/discover_poco.php"); + // expire any expired accounts q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0 diff --git a/include/socgraph.php b/include/socgraph.php index a6899e952..1d0dfd6f7 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -2,12 +2,7 @@ require_once('include/datetime.php'); require_once("include/Scrape.php"); - -/* - To-Do: - - noscrape for updating contact fields and "last updated" - - use /poco/@global for discovering contacts from other servers -*/ +require_once("include/html2bbcode.php"); /* * poco_load @@ -28,8 +23,6 @@ require_once("include/Scrape.php"); function poco_load($cid,$uid = 0,$zcid = 0,$url = null) { - require_once("include/html2bbcode.php"); - $a = get_app(); if($cid) { @@ -246,7 +239,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca logger("profile-check generation: ".$generation." Network: ".$network." URL: ".$profile_url." name: ".$name." avatar: ".$profile_photo, LOGGER_DEBUG); // Only fetch last update manually if it wasn't provided and enabled in the system - if (get_config('system','ld_discover_activity') AND ($orig_updated == "0000-00-00 00:00:00") AND poco_do_update($updated, $last_contact, $last_failure)) { + if (get_config('system','poco_completion') AND ($orig_updated == "0000-00-00 00:00:00") AND poco_do_update($updated, $last_contact, $last_failure)) { $last_updated = poco_last_updated($profile_url); if ($last_updated) { $updated = $last_updated; @@ -266,10 +259,10 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca poco_check_server($server_url, $network); // Test - remove before flight - if ($last_contact > $last_failure) - q("UPDATE `gserver` SET `last_contact` = '%s' WHERE `nurl` = '%s'", dbesc($last_contact), dbesc(normalise_link($server_url))); - else - q("UPDATE `gserver` SET `last_failure` = '%s' WHERE `nurl` = '%s'", dbesc($last_failure), dbesc(normalise_link($server_url))); + //if ($last_contact > $last_failure) + // q("UPDATE `gserver` SET `last_contact` = '%s' WHERE `nurl` = '%s'", dbesc($last_contact), dbesc(normalise_link($server_url))); + //else + // q("UPDATE `gserver` SET `last_failure` = '%s' WHERE `nurl` = '%s'", dbesc($last_failure), dbesc(normalise_link($server_url))); if(count($x)) { $gcid = $x[0]['id']; @@ -448,12 +441,12 @@ function poco_do_update($updated, $last_contact, $last_failure) { } function poco_to_boolean($val) { - if (($val == "true") OR ($val == 1)) - return(true); - if (($val == "false") OR ($val == 0)) - return(false); + if (($val == "true") OR ($val == 1)) + return(true); + if (($val == "false") OR ($val == 0)) + return(false); - return ($val); + return ($val); } function poco_check_server($server_url, $network = "") { @@ -976,3 +969,89 @@ function update_suggestions() { } } } + +function poco_discover() { + + $last_update = date("c", time() - (60 * 60 * 24)); + + $r = q("SELECT `poco`, `nurl` FROM `gserver` WHERE `last_contact` > `last_failure` AND `poco` != '' AND `last_poco_query` < '%s' ORDER BY RAND()", dbesc($last_update)); + if ($r) + foreach ($r AS $server) { + $url = $server["poco"]."/@global?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; + + $retdata = z_fetch_url($url); + if ($retdata["success"]) { + poco_discover_server(json_decode($retdata["body"])); + q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); + break; + } else + q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); + + } +} + +function poco_discover_server($data) { + + foreach ($data->entry AS $entry) { + $profile_url = ''; + $profile_photo = ''; + $connect_url = ''; + $name = ''; + $network = ''; + $updated = '0000-00-00 00:00:00'; + $location = ''; + $about = ''; + $keywords = ''; + $gender = ''; + $generation = 0; + + $name = $entry->displayName; + + if(isset($entry->urls)) { + foreach($entry->urls as $url) { + if($url->type == 'profile') { + $profile_url = $url->value; + continue; + } + if($url->type == 'webfinger') { + $connect_url = str_replace('acct:' , '', $url->value); + continue; + } + } + } + if(isset($entry->photos)) { + foreach($entry->photos as $photo) { + if($photo->type == 'profile') { + $profile_photo = $photo->value; + continue; + } + } + } + + if(isset($entry->updated)) + $updated = date("Y-m-d H:i:s", strtotime($entry->updated)); + + if(isset($entry->network)) + $network = $entry->network; + + if(isset($entry->currentLocation)) + $location = $entry->currentLocation; + + if(isset($entry->aboutMe)) + $about = html2bbcode($entry->aboutMe); + + if(isset($entry->gender)) + $gender = $entry->gender; + + if(isset($entry->generation) AND ($entry->generation > 0)) + $generation = ++$entry->generation; + + if(isset($entry->tags)) + foreach($entry->tags as $tag) + $keywords = implode(", ", $tag); + + if ($generation > 0) + poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $generation); + } +} +?> diff --git a/mod/admin.php b/mod/admin.php index 214ce62ea..393fe1614 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -358,7 +358,8 @@ function admin_page_site_post(&$a){ $poll_interval = ((x($_POST,'poll_interval')) ? intval(trim($_POST['poll_interval'])) : 0); $maxloadavg = ((x($_POST,'maxloadavg')) ? intval(trim($_POST['maxloadavg'])) : 50); $maxloadavg_frontend = ((x($_POST,'maxloadavg_frontend')) ? intval(trim($_POST['maxloadavg_frontend'])) : 50); - $ld_discover_activity = ((x($_POST,'ld_discover_activity')) ? intval(trim($_POST['ld_discover_activity'])) : false); + $poco_completion = ((x($_POST,'poco_completion')) ? intval(trim($_POST['poco_completion'])) : false); + $poco_discovery = ((x($_POST,'poco_discovery')) ? intval(trim($_POST['poco_discovery'])) : false); $dfrn_only = ((x($_POST,'dfrn_only')) ? True : False); $ostatus_disabled = !((x($_POST,'ostatus_disabled')) ? True : False); $ostatus_poll_interval = ((x($_POST,'ostatus_poll_interval')) ? intval(trim($_POST['ostatus_poll_interval'])) : 0); @@ -428,7 +429,8 @@ function admin_page_site_post(&$a){ set_config('system','poll_interval',$poll_interval); set_config('system','maxloadavg',$maxloadavg); set_config('system','maxloadavg_frontend',$maxloadavg_frontend); - set_config('system','ld_discover_activity',$ld_discover_activity); + set_config('system','poco_completion',$poco_completion); + set_config('system','poco_discovery',$poco_discovery); set_config('config','sitename',$sitename); set_config('config','hostname',$hostname); set_config('config','sender_email', $sender_email); @@ -436,7 +438,7 @@ function admin_page_site_post(&$a){ set_config('system','suppress_tags',$suppress_tags); set_config('system','shortcut_icon',$shortcut_icon); set_config('system','touch_icon',$touch_icon); - + if ($banner==""){ // don't know why, but del_config doesn't work... q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1", @@ -632,7 +634,7 @@ function admin_page_site(&$a) { '$upload' => t('File upload'), '$corporate' => t('Policies'), '$advanced' => t('Advanced'), - '$local_directory' => t('Local Directory (Portable Contacts)'), + '$portable_contacts' => t('Portable Contact Directory'), '$performance' => t('Performance'), '$relocate'=> t('Relocate - WARNING: advanced function. Could make this server unreachable.'), '$baseurl' => $a->get_baseurl(true), @@ -690,7 +692,8 @@ function admin_page_site(&$a) { '$maxloadavg' => array('maxloadavg', t("Maximum Load Average"), ((intval(get_config('system','maxloadavg')) > 0)?get_config('system','maxloadavg'):50), t("Maximum system load before delivery and poll processes are deferred - default 50.")), '$maxloadavg_frontend' => array('maxloadavg_frontend', t("Maximum Load Average (Frontend)"), ((intval(get_config('system','maxloadavg_frontend')) > 0)?get_config('system','maxloadavg_frontend'):50), t("Maximum system load before the frontend quits service - default 50.")), - '$ld_discover_activity' => array('ld_discover_activity', t("Discover last activity"), get_config('system','ld_discover_activity'), t("Update the last activity when this isn't provided via the 'portable contacts' functionality. (Useful for poco exchange with Redmatrix and friendica servers before 3.3)")), + '$poco_completion' => array('poco_completion', t("Completion of incoming contacts"), get_config('system','poco_completion'), t("Complete data of incomplete incoming contacts that are provided by the 'portable contacts' functionality. (Useful for poco exchange with Redmatrix and friendica servers before 3.3)")), + '$poco_discovery' => array('poco_discovery', t("Discover contacts from other servers"), get_config('system','poco_discovery'), t("Periodically query other friendica servers for their recent contacts.")), '$use_fulltext_engine' => array('use_fulltext_engine', t("Use MySQL full text engine"), get_config('system','use_fulltext_engine'), t("Activates the full text engine. Speeds up search - but can only search for four and more characters.")), '$suppress_language' => array('suppress_language', t("Suppress Language"), get_config('system','suppress_language'), t("Suppress language information in meta information about a posting.")), diff --git a/view/templates/admin_site.tpl b/view/templates/admin_site.tpl index 5809d5ac6..22d785f6f 100644 --- a/view/templates/admin_site.tpl +++ b/view/templates/admin_site.tpl @@ -115,8 +115,9 @@ {{include file="field_checkbox.tpl" field=$suppress_tags}}
    -

    {{$local_directory}}

    - {{include file="field_checkbox.tpl" field=$ld_discover_activity}} +

    {{$portable_contacts}}

    + {{include file="field_checkbox.tpl" field=$poco_completion}} + {{include file="field_checkbox.tpl" field=$poco_discovery}}

    {{$performance}}

    From e47c65eb1357aeb4d0471914336574e02194c979 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 18 Jul 2015 23:33:54 +0200 Subject: [PATCH 044/239] Query the other servers for their users. --- include/socgraph.php | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/include/socgraph.php b/include/socgraph.php index 1d0dfd6f7..99d72d41c 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -977,20 +977,27 @@ function poco_discover() { $r = q("SELECT `poco`, `nurl` FROM `gserver` WHERE `last_contact` > `last_failure` AND `poco` != '' AND `last_poco_query` < '%s' ORDER BY RAND()", dbesc($last_update)); if ($r) foreach ($r AS $server) { - $url = $server["poco"]."/@global?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; + // Fetch all users from the other server + $url = $server["poco"]."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; $retdata = z_fetch_url($url); if ($retdata["success"]) { - poco_discover_server(json_decode($retdata["body"])); + poco_discover_server(json_decode($retdata["body"]), 2); + + // Fetch all global contacts from the other server (Not working with Redmatrix and Friendica versions before 3.3) + $url = $server["poco"]."/@global?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; + + $retdata = z_fetch_url($url); + if ($retdata["success"]) + poco_discover_server(json_decode($retdata["body"])); + q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); break; - } else - q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); - + } } } -function poco_discover_server($data) { +function poco_discover_server($data, $default_generation = 0) { foreach ($data->entry AS $entry) { $profile_url = ''; @@ -1003,7 +1010,7 @@ function poco_discover_server($data) { $about = ''; $keywords = ''; $gender = ''; - $generation = 0; + $generation = $default_generation; $name = $entry->displayName; From 2a5fb7b175f487b277254a76a484687f7e491e05 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 19 Jul 2015 09:41:36 +0200 Subject: [PATCH 045/239] Option to discover contacts from remote users (fallback option) --- include/discover_poco.php | 2 +- include/socgraph.php | 60 +++++++++++++++++++++++++++++------ mod/admin.php | 15 ++++++--- view/templates/admin_site.tpl | 2 +- 4 files changed, 64 insertions(+), 15 deletions(-) diff --git a/include/discover_poco.php b/include/discover_poco.php index 5a493ab96..c69e27fef 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -57,7 +57,7 @@ function discover_poco_run(&$argv, &$argc){ logger('start'); - if (get_config('system','poco_discovery')) + if (get_config('system','poco_discovery') > 0) poco_discover(); logger('end'); diff --git a/include/socgraph.php b/include/socgraph.php index 99d72d41c..18c2c7c4c 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -970,7 +970,7 @@ function update_suggestions() { } } -function poco_discover() { +function poco_discover($complete = false) { $last_update = date("c", time() - (60 * 60 * 24)); @@ -980,25 +980,64 @@ function poco_discover() { // Fetch all users from the other server $url = $server["poco"]."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; + logger("Fetch all users from the server ".$server["nurl"], LOGGER_DEBUG); + $retdata = z_fetch_url($url); if ($retdata["success"]) { - poco_discover_server(json_decode($retdata["body"]), 2); + $data = json_decode($retdata["body"]); + poco_discover_server($data, 2); - // Fetch all global contacts from the other server (Not working with Redmatrix and Friendica versions before 3.3) - $url = $server["poco"]."/@global?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; + if (get_config('system','poco_discovery') > 1) { - $retdata = z_fetch_url($url); - if ($retdata["success"]) - poco_discover_server(json_decode($retdata["body"])); + // Fetch all global contacts from the other server (Not working with Redmatrix and Friendica versions before 3.3) + $url = $server["poco"]."/@global?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; + + $retdata = z_fetch_url($url); + if ($retdata["success"]) { + logger("Fetch all global contacts from the server ".$server["nurl"], LOGGER_DEBUG); + poco_discover_server(json_decode($retdata["body"])); + } elseif (get_config('system','poco_discovery') > 2) { + logger("Fetch contacts from users of the server ".$server["nurl"], LOGGER_DEBUG); + poco_discover_server_users($data); + } + } q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); - break; + if (!$complete) + break; } } } +function poco_discover_server_users($data) { + foreach ($data->entry AS $entry) { + $username = ""; + if (isset($entry->urls)) { + foreach($entry->urls as $url) + if($url->type == 'profile') { + $profile_url = $url->value; + $urlparts = parse_url($profile_url); + $username = end(explode("/", $urlparts["path"])); + } + } + if ($username != "") { + logger("Fetch contacts for the user ".$username." from the server ".$server["nurl"], LOGGER_DEBUG); + + // Fetch all contacts from a given user from the other server + $url = $server["poco"]."/".$username."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; + + $retdata = z_fetch_url($url); + if ($retdata["success"]) + poco_discover_server(json_decode($retdata["body"]), 3); + } + } +} + function poco_discover_server($data, $default_generation = 0) { + if (!isset($data->entry) OR !count($data->entry)) + return; + foreach ($data->entry AS $entry) { $profile_url = ''; $profile_photo = ''; @@ -1057,8 +1096,11 @@ function poco_discover_server($data, $default_generation = 0) { foreach($entry->tags as $tag) $keywords = implode(", ", $tag); - if ($generation > 0) + if ($generation > 0) { + logger("Store profile ".$profile_url, LOGGER_DEBUG); poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $generation); + logger("Done for profile ".$profile_url, LOGGER_DEBUG); + } } } ?> diff --git a/mod/admin.php b/mod/admin.php index 393fe1614..8c3e2441b 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -359,7 +359,7 @@ function admin_page_site_post(&$a){ $maxloadavg = ((x($_POST,'maxloadavg')) ? intval(trim($_POST['maxloadavg'])) : 50); $maxloadavg_frontend = ((x($_POST,'maxloadavg_frontend')) ? intval(trim($_POST['maxloadavg_frontend'])) : 50); $poco_completion = ((x($_POST,'poco_completion')) ? intval(trim($_POST['poco_completion'])) : false); - $poco_discovery = ((x($_POST,'poco_discovery')) ? intval(trim($_POST['poco_discovery'])) : false); + $poco_discovery = ((x($_POST,'poco_discovery')) ? intval(trim($_POST['poco_discovery'])) : 0); $dfrn_only = ((x($_POST,'dfrn_only')) ? True : False); $ostatus_disabled = !((x($_POST,'ostatus_disabled')) ? True : False); $ostatus_poll_interval = ((x($_POST,'ostatus_poll_interval')) ? intval(trim($_POST['ostatus_poll_interval'])) : 0); @@ -382,8 +382,8 @@ function admin_page_site_post(&$a){ $old_pager = ((x($_POST,'old_pager')) ? True : False); $only_tag_search = ((x($_POST,'only_tag_search')) ? True : False); $rino = ((x($_POST,'rino')) ? intval($_POST['rino']) : 0); - - + + if($ssl_policy != intval(get_config('system','ssl_policy'))) { if($ssl_policy == SSL_POLICY_FULL) { q("update `contact` set @@ -586,6 +586,13 @@ function admin_page_site(&$a) { "1440" => t("Daily") ); + $poco_discovery_choices = array( + "0" => t("Disabled"), + "1" => t("Users"), + "2" => t("Users, Global Contacts"), + "3" => t("Users, Global Contacts/fallback"), + ); + /* get user names to make the install a personal install of X */ $user_names = array(); $user_names['---'] = t('Multi user instance'); @@ -693,7 +700,7 @@ function admin_page_site(&$a) { '$maxloadavg_frontend' => array('maxloadavg_frontend', t("Maximum Load Average (Frontend)"), ((intval(get_config('system','maxloadavg_frontend')) > 0)?get_config('system','maxloadavg_frontend'):50), t("Maximum system load before the frontend quits service - default 50.")), '$poco_completion' => array('poco_completion', t("Completion of incoming contacts"), get_config('system','poco_completion'), t("Complete data of incomplete incoming contacts that are provided by the 'portable contacts' functionality. (Useful for poco exchange with Redmatrix and friendica servers before 3.3)")), - '$poco_discovery' => array('poco_discovery', t("Discover contacts from other servers"), get_config('system','poco_discovery'), t("Periodically query other friendica servers for their recent contacts.")), + '$poco_discovery' => array('poco_discovery', t("Discover contacts from other servers"), (string) intval(get_config('system','poco_discovery')), t("Periodically query other servers for profiles. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available."), $poco_discovery_choices), '$use_fulltext_engine' => array('use_fulltext_engine', t("Use MySQL full text engine"), get_config('system','use_fulltext_engine'), t("Activates the full text engine. Speeds up search - but can only search for four and more characters.")), '$suppress_language' => array('suppress_language', t("Suppress Language"), get_config('system','suppress_language'), t("Suppress language information in meta information about a posting.")), diff --git a/view/templates/admin_site.tpl b/view/templates/admin_site.tpl index 22d785f6f..f0461e1b8 100644 --- a/view/templates/admin_site.tpl +++ b/view/templates/admin_site.tpl @@ -117,7 +117,7 @@

    {{$portable_contacts}}

    {{include file="field_checkbox.tpl" field=$poco_completion}} - {{include file="field_checkbox.tpl" field=$poco_discovery}} + {{include file="field_select.tpl" field=$poco_discovery}}

    {{$performance}}

    From 93e93f58bd703dc4dbe254e1e6ca80fc41739971 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 19 Jul 2015 10:40:33 +0200 Subject: [PATCH 046/239] Query Redmatrix contacts for their contacts as well. --- include/socgraph.php | 9 +++++++-- mod/admin.php | 6 +++--- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/include/socgraph.php b/include/socgraph.php index 18c2c7c4c..c97a0f15c 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -939,6 +939,7 @@ function update_suggestions() { $done = array(); + // To-Do: Check if it is really neccessary to poll the own server poco_load(0,0,0,$a->get_baseurl() . '/poco'); $done[] = $a->get_baseurl() . '/poco'; @@ -949,6 +950,9 @@ function update_suggestions() { $j = json_decode($x); if($j->entries) { foreach($j->entries as $entry) { + + poco_check_server($entry->url); + $url = $entry->url . '/poco'; if(! in_array($url,$done)) poco_load(0,0,0,$entry->url . '/poco'); @@ -957,8 +961,9 @@ function update_suggestions() { } } - $r = q("select distinct(poco) as poco from contact where network = '%s'", - dbesc(NETWORK_DFRN) + // Query your contacts from Friendica and Redmatrix/Hubzilla for their contacts + $r = q("SELECT DISTINCT(`poco`) AS `poco` FROM `contact` WHERE `network` IN ('%s', '%s')", + dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA) ); if(count($r)) { diff --git a/mod/admin.php b/mod/admin.php index 8c3e2441b..a079bdabf 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -641,7 +641,7 @@ function admin_page_site(&$a) { '$upload' => t('File upload'), '$corporate' => t('Policies'), '$advanced' => t('Advanced'), - '$portable_contacts' => t('Portable Contact Directory'), + '$portable_contacts' => t('Auto Discovered Contact Directory'), '$performance' => t('Performance'), '$relocate'=> t('Relocate - WARNING: advanced function. Could make this server unreachable.'), '$baseurl' => $a->get_baseurl(true), @@ -699,8 +699,8 @@ function admin_page_site(&$a) { '$maxloadavg' => array('maxloadavg', t("Maximum Load Average"), ((intval(get_config('system','maxloadavg')) > 0)?get_config('system','maxloadavg'):50), t("Maximum system load before delivery and poll processes are deferred - default 50.")), '$maxloadavg_frontend' => array('maxloadavg_frontend', t("Maximum Load Average (Frontend)"), ((intval(get_config('system','maxloadavg_frontend')) > 0)?get_config('system','maxloadavg_frontend'):50), t("Maximum system load before the frontend quits service - default 50.")), - '$poco_completion' => array('poco_completion', t("Completion of incoming contacts"), get_config('system','poco_completion'), t("Complete data of incomplete incoming contacts that are provided by the 'portable contacts' functionality. (Useful for poco exchange with Redmatrix and friendica servers before 3.3)")), - '$poco_discovery' => array('poco_discovery', t("Discover contacts from other servers"), (string) intval(get_config('system','poco_discovery')), t("Periodically query other servers for profiles. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available."), $poco_discovery_choices), + '$poco_completion' => array('poco_completion', t("Completion of incoming contacts"), get_config('system','poco_completion'), t("Complete data of incomplete incoming contacts that are provided by the 'portable contacts' functionality. (Useful when communicating with Redmatrix and friendica servers before 3.3)")), + '$poco_discovery' => array('poco_discovery', t("Discover contacts from other servers"), (string) intval(get_config('system','poco_discovery')), t("Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available."), $poco_discovery_choices), '$use_fulltext_engine' => array('use_fulltext_engine', t("Use MySQL full text engine"), get_config('system','use_fulltext_engine'), t("Activates the full text engine. Speeds up search - but can only search for four and more characters.")), '$suppress_language' => array('suppress_language', t("Suppress Language"), get_config('system','suppress_language'), t("Suppress language information in meta information about a posting.")), From 8bfbb935c7922a4f537b9ed0d3e7d9666d753991 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 19 Jul 2015 10:56:40 +0200 Subject: [PATCH 047/239] add missing icons to quattros event view --- view/theme/quattro/dark/style.css | 40 ++++++++++++++++++++++++++---- view/theme/quattro/green/style.css | 40 ++++++++++++++++++++++++++---- view/theme/quattro/icons.less | 4 ++- view/theme/quattro/lilac/style.css | 40 ++++++++++++++++++++++++++---- view/theme/quattro/quattro.less | 5 ++++ 5 files changed, 113 insertions(+), 16 deletions(-) diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index 7a335ff4b..fe3864c38 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -43,6 +43,9 @@ .icon.edit { background-image: url("../../../images/icons/22/edit.png"); } +.icon.pencil { + background-image: url("../../../images/icons/22/edit.png"); +} .icon.star { background-image: url("../../../images/icons/22/star.png"); } @@ -52,6 +55,9 @@ .icon.link { background-image: url("../../../images/icons/22/link.png"); } +.icon.remote-link { + background-image: url("../../../images/icons/22/link.png"); +} .icon.lock { background-image: url("../../../images/icons/22/lock.png"); } @@ -116,6 +122,9 @@ .icon.s10.edit { background-image: url("../../../images/icons/10/edit.png"); } +.icon.s10.pencil { + background-image: url("../../../images/icons/10/edit.png"); +} .icon.s10.star { background-image: url("../../../images/icons/10/star.png"); } @@ -125,6 +134,9 @@ .icon.s10.link { background-image: url("../../../images/icons/10/link.png"); } +.icon.s10.remote-link { + background-image: url("../../../images/icons/10/link.png"); +} .icon.s10.lock { background-image: url("../../../images/icons/10/lock.png"); } @@ -189,6 +201,9 @@ .icon.s16.edit { background-image: url("../../../images/icons/16/edit.png"); } +.icon.s16.pencil { + background-image: url("../../../images/icons/16/edit.png"); +} .icon.s16.star { background-image: url("../../../images/icons/16/star.png"); } @@ -198,6 +213,9 @@ .icon.s16.link { background-image: url("../../../images/icons/16/link.png"); } +.icon.s16.remote-link { + background-image: url("../../../images/icons/16/link.png"); +} .icon.s16.lock { background-image: url("../../../images/icons/16/lock.png"); } @@ -262,6 +280,9 @@ .icon.s22.edit { background-image: url("../../../images/icons/22/edit.png"); } +.icon.s22.pencil { + background-image: url("../../../images/icons/22/edit.png"); +} .icon.s22.star { background-image: url("../../../images/icons/22/star.png"); } @@ -271,6 +292,9 @@ .icon.s22.link { background-image: url("../../../images/icons/22/link.png"); } +.icon.s22.remote-link { + background-image: url("../../../images/icons/22/link.png"); +} .icon.s22.lock { background-image: url("../../../images/icons/22/lock.png"); } @@ -335,6 +359,9 @@ .icon.s48.edit { background-image: url("../../../images/icons/48/edit.png"); } +.icon.s48.pencil { + background-image: url("../../../images/icons/48/edit.png"); +} .icon.s48.star { background-image: url("../../../images/icons/48/star.png"); } @@ -344,6 +371,9 @@ .icon.s48.link { background-image: url("../../../images/icons/48/link.png"); } +.icon.s48.remote-link { + background-image: url("../../../images/icons/48/link.png"); +} .icon.s48.lock { background-image: url("../../../images/icons/48/lock.png"); } @@ -514,7 +544,6 @@ header { margin: 0px; padding: 0px; /*width: 100%; height: 12px; */ - z-index: 110; color: #ffffff; } @@ -847,7 +876,6 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ - } #contact-block .contact-block-h4 { float: left; @@ -929,7 +957,6 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - } .widget h3 { padding: 0px; @@ -1211,7 +1238,6 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -2081,7 +2107,6 @@ ul.tabs li .active { min-height: 22px; padding-top: 6px; /* a { display: block;}*/ - } #photo-caption { display: block; @@ -2450,3 +2475,8 @@ footer { border: 0px; color: #999999; } +/* buttons for the event view */ +.plink-event-link { + float: left; + margin-left: 2px; +} diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index 0fdbbbbbd..b0822f9b7 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -43,6 +43,9 @@ .icon.edit { background-image: url("../../../images/icons/22/edit.png"); } +.icon.pencil { + background-image: url("../../../images/icons/22/edit.png"); +} .icon.star { background-image: url("../../../images/icons/22/star.png"); } @@ -52,6 +55,9 @@ .icon.link { background-image: url("../../../images/icons/22/link.png"); } +.icon.remote-link { + background-image: url("../../../images/icons/22/link.png"); +} .icon.lock { background-image: url("../../../images/icons/22/lock.png"); } @@ -116,6 +122,9 @@ .icon.s10.edit { background-image: url("../../../images/icons/10/edit.png"); } +.icon.s10.pencil { + background-image: url("../../../images/icons/10/edit.png"); +} .icon.s10.star { background-image: url("../../../images/icons/10/star.png"); } @@ -125,6 +134,9 @@ .icon.s10.link { background-image: url("../../../images/icons/10/link.png"); } +.icon.s10.remote-link { + background-image: url("../../../images/icons/10/link.png"); +} .icon.s10.lock { background-image: url("../../../images/icons/10/lock.png"); } @@ -189,6 +201,9 @@ .icon.s16.edit { background-image: url("../../../images/icons/16/edit.png"); } +.icon.s16.pencil { + background-image: url("../../../images/icons/16/edit.png"); +} .icon.s16.star { background-image: url("../../../images/icons/16/star.png"); } @@ -198,6 +213,9 @@ .icon.s16.link { background-image: url("../../../images/icons/16/link.png"); } +.icon.s16.remote-link { + background-image: url("../../../images/icons/16/link.png"); +} .icon.s16.lock { background-image: url("../../../images/icons/16/lock.png"); } @@ -262,6 +280,9 @@ .icon.s22.edit { background-image: url("../../../images/icons/22/edit.png"); } +.icon.s22.pencil { + background-image: url("../../../images/icons/22/edit.png"); +} .icon.s22.star { background-image: url("../../../images/icons/22/star.png"); } @@ -271,6 +292,9 @@ .icon.s22.link { background-image: url("../../../images/icons/22/link.png"); } +.icon.s22.remote-link { + background-image: url("../../../images/icons/22/link.png"); +} .icon.s22.lock { background-image: url("../../../images/icons/22/lock.png"); } @@ -335,6 +359,9 @@ .icon.s48.edit { background-image: url("../../../images/icons/48/edit.png"); } +.icon.s48.pencil { + background-image: url("../../../images/icons/48/edit.png"); +} .icon.s48.star { background-image: url("../../../images/icons/48/star.png"); } @@ -344,6 +371,9 @@ .icon.s48.link { background-image: url("../../../images/icons/48/link.png"); } +.icon.s48.remote-link { + background-image: url("../../../images/icons/48/link.png"); +} .icon.s48.lock { background-image: url("../../../images/icons/48/lock.png"); } @@ -514,7 +544,6 @@ header { margin: 0px; padding: 0px; /*width: 100%; height: 12px; */ - z-index: 110; color: #ffffff; } @@ -847,7 +876,6 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ - } #contact-block .contact-block-h4 { float: left; @@ -929,7 +957,6 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - } .widget h3 { padding: 0px; @@ -1211,7 +1238,6 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -2081,7 +2107,6 @@ ul.tabs li .active { min-height: 22px; padding-top: 6px; /* a { display: block;}*/ - } #photo-caption { display: block; @@ -2450,3 +2475,8 @@ footer { border: 0px; color: #999999; } +/* buttons for the event view */ +.plink-event-link { + float: left; + margin-left: 2px; +} diff --git a/view/theme/quattro/icons.less b/view/theme/quattro/icons.less index 830e64782..af8f4ef9f 100644 --- a/view/theme/quattro/icons.less +++ b/view/theme/quattro/icons.less @@ -7,15 +7,17 @@ &.mail { background-image: url("icons/messages_off.png"); } &.gear { background-image: url("../../../images/icons/@{size}/gear.png"); } - &.like { background-image: url("icons/like.png"); } + &.like { background-image: url("icons/like.png"); } &.dislike { background-image: url("icons/dislike.png"); } &.add { background-image: url("../../../images/icons/@{size}/add.png"); } &.delete { background-image: url("../../../images/icons/@{size}/delete.png"); } &.edit { background-image: url("../../../images/icons/@{size}/edit.png"); } + &.pencil { background-image: url("../../../images/icons/@{size}/edit.png"); } &.star { background-image: url("../../../images/icons/@{size}/star.png"); } &.menu { background-image: url("../../../images/icons/@{size}/menu.png"); } &.link { background-image: url("../../../images/icons/@{size}/link.png"); } + &.remote-link { background-image: url("../../../images/icons/@{size}/link.png"); } &.lock { background-image: url("../../../images/icons/@{size}/lock.png"); } &.unlock { background-image: url("../../../images/icons/@{size}/unlock.png"); } &.plugin { background-image: url("../../../images/icons/@{size}/plugin.png"); } diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index 7a0f7e537..3bfbcd002 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -43,6 +43,9 @@ .icon.edit { background-image: url("../../../images/icons/22/edit.png"); } +.icon.pencil { + background-image: url("../../../images/icons/22/edit.png"); +} .icon.star { background-image: url("../../../images/icons/22/star.png"); } @@ -52,6 +55,9 @@ .icon.link { background-image: url("../../../images/icons/22/link.png"); } +.icon.remote-link { + background-image: url("../../../images/icons/22/link.png"); +} .icon.lock { background-image: url("../../../images/icons/22/lock.png"); } @@ -116,6 +122,9 @@ .icon.s10.edit { background-image: url("../../../images/icons/10/edit.png"); } +.icon.s10.pencil { + background-image: url("../../../images/icons/10/edit.png"); +} .icon.s10.star { background-image: url("../../../images/icons/10/star.png"); } @@ -125,6 +134,9 @@ .icon.s10.link { background-image: url("../../../images/icons/10/link.png"); } +.icon.s10.remote-link { + background-image: url("../../../images/icons/10/link.png"); +} .icon.s10.lock { background-image: url("../../../images/icons/10/lock.png"); } @@ -189,6 +201,9 @@ .icon.s16.edit { background-image: url("../../../images/icons/16/edit.png"); } +.icon.s16.pencil { + background-image: url("../../../images/icons/16/edit.png"); +} .icon.s16.star { background-image: url("../../../images/icons/16/star.png"); } @@ -198,6 +213,9 @@ .icon.s16.link { background-image: url("../../../images/icons/16/link.png"); } +.icon.s16.remote-link { + background-image: url("../../../images/icons/16/link.png"); +} .icon.s16.lock { background-image: url("../../../images/icons/16/lock.png"); } @@ -262,6 +280,9 @@ .icon.s22.edit { background-image: url("../../../images/icons/22/edit.png"); } +.icon.s22.pencil { + background-image: url("../../../images/icons/22/edit.png"); +} .icon.s22.star { background-image: url("../../../images/icons/22/star.png"); } @@ -271,6 +292,9 @@ .icon.s22.link { background-image: url("../../../images/icons/22/link.png"); } +.icon.s22.remote-link { + background-image: url("../../../images/icons/22/link.png"); +} .icon.s22.lock { background-image: url("../../../images/icons/22/lock.png"); } @@ -335,6 +359,9 @@ .icon.s48.edit { background-image: url("../../../images/icons/48/edit.png"); } +.icon.s48.pencil { + background-image: url("../../../images/icons/48/edit.png"); +} .icon.s48.star { background-image: url("../../../images/icons/48/star.png"); } @@ -344,6 +371,9 @@ .icon.s48.link { background-image: url("../../../images/icons/48/link.png"); } +.icon.s48.remote-link { + background-image: url("../../../images/icons/48/link.png"); +} .icon.s48.lock { background-image: url("../../../images/icons/48/lock.png"); } @@ -514,7 +544,6 @@ header { margin: 0px; padding: 0px; /*width: 100%; height: 12px; */ - z-index: 110; color: #ffffff; } @@ -847,7 +876,6 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ - } #contact-block .contact-block-h4 { float: left; @@ -929,7 +957,6 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - } .widget h3 { padding: 0px; @@ -1211,7 +1238,6 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -2081,7 +2107,6 @@ ul.tabs li .active { min-height: 22px; padding-top: 6px; /* a { display: block;}*/ - } #photo-caption { display: block; @@ -2450,3 +2475,8 @@ footer { border: 0px; color: #999999; } +/* buttons for the event view */ +.plink-event-link { + float: left; + margin-left: 2px; +} diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 142bdc190..f876ac1c6 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -1700,3 +1700,8 @@ footer { height: 100px; display: table-row; } color: @FieldHelpColor; } +/* buttons for the event view */ +.plink-event-link { + float: left; + margin-left: 2px; +} From 0bede65a6b26826158703a0a6a164c2e0dac9851 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 19 Jul 2015 13:23:01 +0200 Subject: [PATCH 048/239] Use local search --- mod/dirfind.php | 65 ++++++++++++++++++++++++++++------- view/templates/match.tpl | 2 +- view/templates/peoplefind.tpl | 2 +- 3 files changed, 54 insertions(+), 15 deletions(-) diff --git a/mod/dirfind.php b/mod/dirfind.php index 0c6d79480..c49d37e48 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -16,11 +16,13 @@ function dirfind_init(&$a) { function dirfind_content(&$a) { + $local = true; + $search = notags(trim($_REQUEST['search'])); if(strpos($search,'@') === 0) $search = substr($search,1); - + $o = ''; $o .= replace_macros(get_markup_template("section_title.tpl"),array( @@ -29,16 +31,53 @@ function dirfind_content(&$a) { if($search) { - $p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : ''); - - if(strlen(get_config('system','directory_submit_url'))) - $x = fetch_url('http://dir.friendica.com/lsearch?f=' . $p . '&search=' . urlencode($search)); + if ($local) { -//TODO fallback local search if global dir not available. -// else -// $x = post_url($a->get_baseurl() . '/lsearch', $params); + $perpage = 80; + $startrec = (($a->pager['page']) * $perpage) - $perpage; - $j = json_decode($x); + $count = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `network` IN ('%s', '%s', '%s') AND + (`url` REGEXP '%s' OR `name` REGEXP '%s' OR `location` REGEXP '%s' OR + `about` REGEXP '%s' OR `keywords` REGEXP '%s')", + dbesc(NETWORK_DFRN), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), + dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)), + dbesc(escape_tags($search)), dbesc(escape_tags($search))); + + $results = q("SELECT `url`, `name`, `photo`, `keywords` FROM `gcontact`WHERE `network` IN ('%s', '%s', '%s') AND + (`url` REGEXP '%s' OR `name` REGEXP '%s' OR `location` REGEXP '%s' OR `about` REGEXP '%s' OR + `keywords` REGEXP '%s') ORDER BY `name` ASC LIMIT %d, %d", + dbesc(NETWORK_DFRN), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), + dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)), + dbesc(escape_tags($search)), dbesc(escape_tags($search)), + intval($startrec), intval($perpage)); + + $j = new stdClass(); + $j->total = $count[0]["total"]; + $j->items_page = $perpage; + $j->page = $a->pager['page']; + foreach ($results AS $result) { + if ($result["name"] == "") { + $urlparts = parse_url($result["url"]); + $result["name"] = end(explode("/", $urlparts["path"])); + } + + $objresult = new stdClass(); + $objresult->name = $result["name"]; + $objresult->url = $result["url"]; + $objresult->photo = $result["photo"]; + $objresult->tags = $result["keywords"]; + + $j->results[] = $objresult; + } + } else { + + $p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : ''); + + if(strlen(get_config('system','directory_submit_url'))) + $x = fetch_url('http://dir.friendica.com/lsearch?f=' . $p . '&search=' . urlencode($search)); + + $j = json_decode($x); + } if($j->total) { $a->set_pager_total($j->total); @@ -46,21 +85,21 @@ function dirfind_content(&$a) { } if(count($j->results)) { - + $tpl = get_markup_template('match.tpl'); foreach($j->results as $jj) { - + $o .= replace_macros($tpl,array( '$url' => zrl($jj->url), '$name' => $jj->name, - '$photo' => $jj->photo, + '$photo' => proxy_url($jj->photo), '$tags' => $jj->tags )); } } else { info( t('No matches') . EOL); - } + } } diff --git a/view/templates/match.tpl b/view/templates/match.tpl index f4bbc3c1b..32f046e6a 100644 --- a/view/templates/match.tpl +++ b/view/templates/match.tpl @@ -2,7 +2,7 @@
    diff --git a/view/templates/peoplefind.tpl b/view/templates/peoplefind.tpl index de8cd011b..45c4c0b62 100644 --- a/view/templates/peoplefind.tpl +++ b/view/templates/peoplefind.tpl @@ -2,7 +2,7 @@

    {{$findpeople}}

    {{$desc}}
    -
    +
    From f3c83fb51479c1aca19fd2528dc6d68d1f160739 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 19 Jul 2015 18:02:24 +0200 Subject: [PATCH 049/239] Automatically updating the searched contacts while searching it. --- include/discover_poco.php | 68 ++++++++++++++++++++++++++++++++--- mod/admin.php | 3 ++ mod/dirfind.php | 33 +++++++++++++---- view/templates/admin_site.tpl | 1 + 4 files changed, 94 insertions(+), 11 deletions(-) diff --git a/include/discover_poco.php b/include/discover_poco.php index c69e27fef..504d97287 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -36,9 +36,18 @@ function discover_poco_run(&$argv, &$argc){ } } + if(($argc > 2) && ($argv[1] == "dirsearch")) { + $search = urldecode($argv[2]); + $searchmode = 1; + } elseif ($argc == 1) { + $search = ""; + $searchmode = 0; + } else + die("Unknown or missing parameter ".$argv[1]."\n"); + $lockpath = get_lockpath(); if ($lockpath != '') { - $pidfile = new pidfile($lockpath, 'discover_poco'); + $pidfile = new pidfile($lockpath, 'discover_poco'.urlencode($search)); if($pidfile->is_already_running()) { logger("discover_poco: Already running"); if ($pidfile->running_time() > 19*60) { @@ -55,16 +64,67 @@ function discover_poco_run(&$argv, &$argc){ load_hooks(); - logger('start'); + logger('start '.$search); - if (get_config('system','poco_discovery') > 0) + if (($search != "") and get_config('system','poco_local_search')) + discover_directory($search); + elseif (($search == "") and get_config('system','poco_discovery') > 0) poco_discover(); - logger('end'); + logger('end '.$search); return; } +function discover_directory($search) { + + $data = Cache::get("dirsearch:".$search); + if (!is_null($data)){ + // Only search for the same item every 24 hours + if (time() < $data + (60 * 60 * 24)) { + logger("Already searched for ".$search." in the last 24 hours", LOGGER_DEBUG); + return; + } + } + + $x = fetch_url("http://dir.friendica.com/lsearch?p=1&n=500&search=".urlencode($search)); + $j = json_decode($x); + + if(count($j->results)) + foreach($j->results as $jj) { + // Check if the contact already exists + $exists = q("SELECT `id`, `last_contact`, `last_failure` FROM `gcontact` WHERE `nurl` = '%s'", normalise_link($jj->url)); + if ($exists) { + logger("Profile ".$jj->url." already exists (".$search.")", LOGGER_DEBUG); + + if ($exists[0]["last_contact"] < $exists[0]["last_failure"]) + continue; + + $last_updated = poco_last_updated($jj->url); + $last_contact = datetime_convert(); + + if ($last_updated) { + logger("Mark profile ".$jj->url." as accessible (".$search.")", LOGGER_DEBUG); + q("UPDATE `gcontact` SET `updated` = '%s', `last_contact` = '%s' WHERE `nurl` = '%s'", + dbesc($last_updated), dbesc($last_contact), dbesc(normalise_link($jj->url))); + } else { + logger("Mark profile ".$jj->url." as unaccessible (".$search.")", LOGGER_DEBUG); + q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", + dbesc($last_contact), dbesc(normalise_link($jj->url))); + } + continue; + } + + logger("Check if profile ".$jj->url." is reachable (".$search.")", LOGGER_DEBUG); + $data = probe_url($jj->url); + if ($data["network"] == NETWORK_DFRN) { + logger("Add profile ".$jj->url." to local directory (".$search.")", LOGGER_DEBUG); + poco_check($data["url"], $data["name"], $data["network"], $data["photo"], "", "", "", $jj->tags, $data["addr"], "", 0); + } + } + Cache::set("dirsearch:".$search, time()); +} + if (array_search(__file__,get_included_files())===0){ discover_poco_run($_SERVER["argv"],$_SERVER["argc"]); killme(); diff --git a/mod/admin.php b/mod/admin.php index a079bdabf..ea0196db8 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -360,6 +360,7 @@ function admin_page_site_post(&$a){ $maxloadavg_frontend = ((x($_POST,'maxloadavg_frontend')) ? intval(trim($_POST['maxloadavg_frontend'])) : 50); $poco_completion = ((x($_POST,'poco_completion')) ? intval(trim($_POST['poco_completion'])) : false); $poco_discovery = ((x($_POST,'poco_discovery')) ? intval(trim($_POST['poco_discovery'])) : 0); + $poco_local_search = ((x($_POST,'poco_local_search')) ? intval(trim($_POST['poco_local_search'])) : false); $dfrn_only = ((x($_POST,'dfrn_only')) ? True : False); $ostatus_disabled = !((x($_POST,'ostatus_disabled')) ? True : False); $ostatus_poll_interval = ((x($_POST,'ostatus_poll_interval')) ? intval(trim($_POST['ostatus_poll_interval'])) : 0); @@ -431,6 +432,7 @@ function admin_page_site_post(&$a){ set_config('system','maxloadavg_frontend',$maxloadavg_frontend); set_config('system','poco_completion',$poco_completion); set_config('system','poco_discovery',$poco_discovery); + set_config('system','poco_local_search',$poco_local_search); set_config('config','sitename',$sitename); set_config('config','hostname',$hostname); set_config('config','sender_email', $sender_email); @@ -701,6 +703,7 @@ function admin_page_site(&$a) { '$poco_completion' => array('poco_completion', t("Completion of incoming contacts"), get_config('system','poco_completion'), t("Complete data of incomplete incoming contacts that are provided by the 'portable contacts' functionality. (Useful when communicating with Redmatrix and friendica servers before 3.3)")), '$poco_discovery' => array('poco_discovery', t("Discover contacts from other servers"), (string) intval(get_config('system','poco_discovery')), t("Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available."), $poco_discovery_choices), + '$poco_local_search' => array('poco_local_search', t("Search the local directory"), get_config('system','poco_local_search'), t("Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated.")), '$use_fulltext_engine' => array('use_fulltext_engine', t("Use MySQL full text engine"), get_config('system','use_fulltext_engine'), t("Activates the full text engine. Speeds up search - but can only search for four and more characters.")), '$suppress_language' => array('suppress_language', t("Suppress Language"), get_config('system','suppress_language'), t("Suppress language information in meta information about a posting.")), diff --git a/mod/dirfind.php b/mod/dirfind.php index c49d37e48..996d2a464 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -16,7 +16,7 @@ function dirfind_init(&$a) { function dirfind_content(&$a) { - $local = true; + $local = get_config('system','poco_local_search'); $search = notags(trim($_REQUEST['search'])); @@ -43,14 +43,18 @@ function dirfind_content(&$a) { dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search))); - $results = q("SELECT `url`, `name`, `photo`, `keywords` FROM `gcontact`WHERE `network` IN ('%s', '%s', '%s') AND - (`url` REGEXP '%s' OR `name` REGEXP '%s' OR `location` REGEXP '%s' OR `about` REGEXP '%s' OR - `keywords` REGEXP '%s') ORDER BY `name` ASC LIMIT %d, %d", - dbesc(NETWORK_DFRN), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), + $results = q("SELECT `contact`.`id` AS `cid`, `gcontact`.`url`, `gcontact`.`name`, `gcontact`.`photo`, `gcontact`.`keywords` + FROM `gcontact` + LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl` AND `contact`.`uid` = %d + WHERE `gcontact`.`network` IN ('%s', '%s', '%s') AND `gcontact`.`last_contact` >= `gcontact`.`last_failure` AND + (`gcontact`.`url` REGEXP '%s' OR `gcontact`.`name` REGEXP '%s' OR `gcontact`.`location` REGEXP '%s' OR + `gcontact`.`about` REGEXP '%s' OR `gcontact`.`keywords` REGEXP '%s') + GROUP BY `gcontact`.`nurl` + ORDER BY `gcontact`.`updated` DESC LIMIT %d, %d", + intval(local_user()), dbesc(NETWORK_DFRN), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)), intval($startrec), intval($perpage)); - $j = new stdClass(); $j->total = $count[0]["total"]; $j->items_page = $perpage; @@ -62,6 +66,7 @@ function dirfind_content(&$a) { } $objresult = new stdClass(); + $objresult->cid = $result["cid"]; $objresult->name = $result["name"]; $objresult->url = $result["url"]; $objresult->photo = $result["photo"]; @@ -69,6 +74,9 @@ function dirfind_content(&$a) { $j->results[] = $objresult; } + + // Add found profiles from the global directory to the local directory + proc_run('php','include/discover_poco.php', "dirsearch", urlencode($search)); } else { $p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : ''); @@ -89,11 +97,22 @@ function dirfind_content(&$a) { $tpl = get_markup_template('match.tpl'); foreach($j->results as $jj) { + // If We already know this contact then don't show the "connect" button + if ($jj->cid > 0) { + $connlnk = ""; + $conntxt = ""; + } else { + $connlnk = $a->get_baseurl().'/follow/?url='.(($jj->connect) ? $jj->connect : $jj->url); + $conntxt = t('Connect'); + } + $o .= replace_macros($tpl,array( '$url' => zrl($jj->url), '$name' => $jj->name, '$photo' => proxy_url($jj->photo), - '$tags' => $jj->tags + '$tags' => $jj->tags, + '$conntxt' => $conntxt, + '$connlnk' => $connlnk, )); } } diff --git a/view/templates/admin_site.tpl b/view/templates/admin_site.tpl index f0461e1b8..2f448d1b9 100644 --- a/view/templates/admin_site.tpl +++ b/view/templates/admin_site.tpl @@ -118,6 +118,7 @@

    {{$portable_contacts}}

    {{include file="field_checkbox.tpl" field=$poco_completion}} {{include file="field_select.tpl" field=$poco_discovery}} + {{include file="field_checkbox.tpl" field=$poco_local_search}}

    {{$performance}}

    From 3622f1a335998c8052be78d83b1e18708a509bbe Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 19 Jul 2015 21:29:24 +0200 Subject: [PATCH 050/239] Do some caching --- include/discover_poco.php | 25 +++++++------ include/onepoll.php | 11 ------ include/socgraph.php | 79 +++++++++++++++++++++++++-------------- 3 files changed, 64 insertions(+), 51 deletions(-) diff --git a/include/discover_poco.php b/include/discover_poco.php index 504d97287..74ed83b47 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -100,21 +100,22 @@ function discover_directory($search) { if ($exists[0]["last_contact"] < $exists[0]["last_failure"]) continue; - $last_updated = poco_last_updated($jj->url); - $last_contact = datetime_convert(); - - if ($last_updated) { - logger("Mark profile ".$jj->url." as accessible (".$search.")", LOGGER_DEBUG); - q("UPDATE `gcontact` SET `updated` = '%s', `last_contact` = '%s' WHERE `nurl` = '%s'", - dbesc($last_updated), dbesc($last_contact), dbesc(normalise_link($jj->url))); - } else { - logger("Mark profile ".$jj->url." as unaccessible (".$search.")", LOGGER_DEBUG); - q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", - dbesc($last_contact), dbesc(normalise_link($jj->url))); - } + // Update the contact + poco_last_updated($jj->url); continue; } + // Harcoded paths aren't so good. But in this case it is okay. + // First: We only will get Friendica contacts (which always are using this url schema) + // Second: There will be no further problems if we are doing a mistake + $server_url = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $jj->url); + if ($server_url != $jj->url) + if (!poco_check_server($server_url)) { + logger("Friendica server ".$server_url." doesn't answer.", LOGGER_DEBUG); + continue; + } + logger("Friendica server ".$server_url." seems to be okay.", LOGGER_DEBUG); + logger("Check if profile ".$jj->url." is reachable (".$search.")", LOGGER_DEBUG); $data = probe_url($jj->url); if ($data["network"] == NETWORK_DFRN) { diff --git a/include/onepoll.php b/include/onepoll.php index 73668126a..c0c2f1a34 100644 --- a/include/onepoll.php +++ b/include/onepoll.php @@ -120,23 +120,12 @@ function onepoll_run(&$argv, &$argc){ dbesc($updated), intval($contact['id']) ); - - q("UPDATE `gcontact` SET `updated` = '%s', `last_contact` = '%s' WHERE `nurl` = '%s'", - dbesc($last_updated), - dbesc($updated), - dbesc($contact['nurl']) - ); } else { q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d", dbesc($updated), dbesc($updated), intval($contact['id']) ); - - q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", - dbesc($updated), - dbesc($contact['nurl']) - ); } } return; diff --git a/include/socgraph.php b/include/socgraph.php index c97a0f15c..9ccae5040 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -238,6 +238,8 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca logger("profile-check generation: ".$generation." Network: ".$network." URL: ".$profile_url." name: ".$name." avatar: ".$profile_photo, LOGGER_DEBUG); + poco_check_server($server_url, $network); + // Only fetch last update manually if it wasn't provided and enabled in the system if (get_config('system','poco_completion') AND ($orig_updated == "0000-00-00 00:00:00") AND poco_do_update($updated, $last_contact, $last_failure)) { $last_updated = poco_last_updated($profile_url); @@ -245,25 +247,10 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca $updated = $last_updated; $last_contact = datetime_convert(); logger("Last updated for profile ".$profile_url.": ".$updated, LOGGER_DEBUG); - - if (count($x)) - q("UPDATE `gcontact` SET `last_contact` = '%s' WHERE `nurl` = '%s'", dbesc($last_contact), dbesc(normalise_link($profile_url))); - } else { + } else $last_failure = datetime_convert(); - - if (count($x)) - q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", dbesc($last_failure), dbesc(normalise_link($profile_url))); - } } - poco_check_server($server_url, $network); - - // Test - remove before flight - //if ($last_contact > $last_failure) - // q("UPDATE `gserver` SET `last_contact` = '%s' WHERE `nurl` = '%s'", dbesc($last_contact), dbesc(normalise_link($server_url))); - //else - // q("UPDATE `gserver` SET `last_failure` = '%s' WHERE `nurl` = '%s'", dbesc($last_failure), dbesc(normalise_link($server_url))); - if(count($x)) { $gcid = $x[0]['id']; @@ -366,17 +353,53 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca } function poco_last_updated($profile) { + + $gcontacts = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s'", + dbesc(normalise_link($profile))); + + if ($gcontacts[0]["server_url"] != "") { + $servers = q("SELECT * FROM `gserver` WHERE `nurl` = '%s' AND `last_contact` < `last_failure`", dbesc(normalise_link($gcontacts[0]["server_url"]))); + + if ($servers) + return false; + } + $data = probe_url($profile); - if (($data["poll"] == "") OR ($data["network"] == NETWORK_FEED)) + if (($data["poll"] == "") OR ($data["network"] == NETWORK_FEED)) { + q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", + dbesc(datetime_convert()), dbesc(normalise_link($profile))); return false; + } + + if (($data["name"] != "") AND ($data["name"] != $gcontacts[0]["name"])) + q("UPDATE `gcontact` SET `name` = '%s' WHERE `nurl` = '%s'", + dbesc($data["name"]), dbesc(normalise_link($profile))); + + if (($data["addr"] != "") AND ($data["addr"] != $gcontacts[0]["connect"])) + q("UPDATE `gcontact` SET `connect` = '%s' WHERE `nurl` = '%s'", + dbesc($data["addr"]), dbesc(normalise_link($profile))); + + if (($data["photo"] != "") AND ($data["photo"] != $gcontacts[0]["photo"])) + q("UPDATE `gcontact` SET `photo` = '%s' WHERE `nurl` = '%s'", + dbesc($data["photo"]), dbesc(normalise_link($profile))); + + if (($data["baseurl"] != "") AND ($data["baseurl"] != $gcontacts[0]["server_url"])) + q("UPDATE `gcontact` SET `server_url` = '%s' WHERE `nurl` = '%s'", + dbesc($data["baseurl"]), dbesc(normalise_link($profile))); + + if ($data["baseurl"] != "") + poco_check_server($data["baseurl"], $data["network"]); // To-Do: Use noscrape $feedret = z_fetch_url($data["poll"]); - if (!$feedret["success"]) + if (!$feedret["success"]) { + q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", + dbesc(datetime_convert()), dbesc(normalise_link($profile))); return false; + } $doc = new DOMDocument(); @$doc->loadXML($feedret["body"]); @@ -404,6 +427,9 @@ function poco_last_updated($profile) { if ($xpath->query('/atom:feed')->length > 0) $last_updated = "0000-00-00 00:00:00"; + q("UPDATE `gcontact` SET `updated` = '%s', `last_contact` = '%s' WHERE `nurl` = '%s'", + dbesc($last_updated), dbesc(datetime_convert()), dbesc(normalise_link($profile))); + return($last_updated); } @@ -430,11 +456,11 @@ function poco_do_update($updated, $last_contact, $last_failure) { return false; // If the last contact time was more than a week ago, then only try once a week - if (($now - $contact_time) > (60 * 60 * 24 * 7) AND ($now - $failure_time) < (60 * 60 * 24 * 7)) + if ((($now - $contact_time) > (60 * 60 * 24 * 7)) AND (($now - $failure_time) < (60 * 60 * 24 * 7))) return false; - // If the last contact time was more than a month ago, then only try once a month - if (($now - $contact_time) > (60 * 60 * 24 * 30) AND ($now - $failure_time) < (60 * 60 * 24 * 30)) + // If the last contact time was more than a month ago, then only try once a month - but only if there ever was a contact time + if (($contact_time > 0) AND (($now - $contact_time) > (60 * 60 * 24 * 30)) AND (($now - $failure_time) < (60 * 60 * 24 * 30))) return false; return true; @@ -452,7 +478,7 @@ function poco_to_boolean($val) { function poco_check_server($server_url, $network = "") { if ($server_url == "") - return; + return false; $servers = q("SELECT * FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url))); if ($servers) { @@ -470,12 +496,8 @@ function poco_check_server($server_url, $network = "") { $info = $servers[0]["info"]; $register_policy = $servers[0]["register_policy"]; - // Only check the server once a week - if (strtotime(datetime_convert()) < (strtotime($last_contact) + (60 * 60 * 24 * 7))) - return; - - if (strtotime(datetime_convert()) < (strtotime($last_failure) + (60 * 60 * 24 * 7))) - return; + if (!poco_do_update("", $last_contact, $last_failure)) + return ($last_contact >= $last_failure); } else { $poco = ""; $noscrape = ""; @@ -668,6 +690,7 @@ function poco_check_server($server_url, $network = "") { dbesc($platform), dbesc(datetime_convert()) ); + return $failure; } function poco_contact_from_body($body, $created, $cid, $uid) { From a4aec06e5b7064433bff87e115ad7b63107c6d0a Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 20 Jul 2015 00:14:14 +0200 Subject: [PATCH 051/239] Support for detecting "Hubzilla" (and some bugfixing in the server detection) --- include/socgraph.php | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/include/socgraph.php b/include/socgraph.php index 9ccae5040..064fc182b 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -430,6 +430,10 @@ function poco_last_updated($profile) { q("UPDATE `gcontact` SET `updated` = '%s', `last_contact` = '%s' WHERE `nurl` = '%s'", dbesc($last_updated), dbesc(datetime_convert()), dbesc(normalise_link($profile))); + if (($gcontacts[0]["generation"] == 0)) + q("UPDATE `gcontact` SET `generation` = 9 WHERE `nurl` = '%s'", + dbesc(normalise_link($profile))); + return($last_updated); } @@ -559,6 +563,11 @@ function poco_check_server($server_url, $network = "") { if (isset($data->site->server)) { $last_contact = datetime_convert(); + if (isset($data->site->hubzilla)) { + $platform = $data->site->hubzilla->PLATFORM_NAME; + $version = $data->site->hubzilla->RED_VERSION; + $network = NETWORK_DFRN; + } if (isset($data->site->redmatrix)) { if (isset($data->site->redmatrix->PLATFORM_NAME)) $platform = $data->site->redmatrix->PLATFORM_NAME; @@ -676,8 +685,8 @@ function poco_check_server($server_url, $network = "") { dbesc(normalise_link($server_url)) ); else - q("INSERT INTO `gserver` (`url`, `nurl`, `version`, `site_name`, `info`, `register_policy`, `poco`, `noscrape`, `network`, `platform`, `last_contact`) - VALUES ('%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s', '%s')", + q("INSERT INTO `gserver` (`url`, `nurl`, `version`, `site_name`, `info`, `register_policy`, `poco`, `noscrape`, `network`, `platform`, `last_contact`, `last_failure`) + VALUES ('%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s')", dbesc($server_url), dbesc(normalise_link($server_url)), dbesc($version), @@ -688,9 +697,11 @@ function poco_check_server($server_url, $network = "") { dbesc($noscrape), dbesc($network), dbesc($platform), + dbesc($last_contact), + dbesc($last_failure), dbesc(datetime_convert()) ); - return $failure; + return !$failure; } function poco_contact_from_body($body, $created, $cid, $uid) { From 9717fa82fe02413bf007cff4698538121d71b611 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 21 Jul 2015 00:05:44 +0200 Subject: [PATCH 052/239] New field "created" in gcontacts. New option for timeframe when polling global contacts --- include/dbstructure.php | 3 + include/onepoll.php | 2 +- include/socgraph.php | 131 ++++++++++++++++++++++++++++------ mod/admin.php | 10 +++ view/templates/admin_site.tpl | 1 + 5 files changed, 126 insertions(+), 21 deletions(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index 9d0856c25..c079efeb5 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -626,10 +626,12 @@ function db_definition() { "fields" => array( "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"), "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "connect" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), "updated" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), "last_contact" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), "last_failure" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), @@ -699,6 +701,7 @@ function db_definition() { "noscrape" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""), "platform" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), "last_poco_query" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), "last_contact" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), "last_failure" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), diff --git a/include/onepoll.php b/include/onepoll.php index c0c2f1a34..464a50fb9 100644 --- a/include/onepoll.php +++ b/include/onepoll.php @@ -110,7 +110,7 @@ function onepoll_run(&$argv, &$argc){ // - Check why we don't poll the Diaspora feed at the moment (some guid problem in the items?) // - Check whether this is possible with Redmatrix if ($contact["network"] == NETWORK_DIASPORA) { - if (poco_do_update($contact["last-item"], $contact["success_update"], $contact["failure_update"])) { + if (poco_do_update($contact["created"], $contact["last-item"], $contact["failure_update"], $contact["success_update"])) { $last_updated = poco_last_updated($contact["url"]); $updated = datetime_convert(); if ($last_updated) { diff --git a/include/socgraph.php b/include/socgraph.php index 064fc182b..45cf3a650 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -205,19 +205,26 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca if ($updated == "0000-00-00 00:00:00") $updated = $x[0]["updated"]; + $created = $x[0]["created"]; $last_contact = $x[0]["last_contact"]; $last_failure = $x[0]["last_failure"]; $server_url = $x[0]["server_url"]; + $nick = $x[0]["nick"]; } else { + $created = "0000-00-00 00:00:00"; $last_contact = "0000-00-00 00:00:00"; $last_failure = "0000-00-00 00:00:00"; $server_url = ""; + + $urlparts = parse_url($profile_url); + $nick = end(explode("/", $urlparts["path"])); } if (($network == "") OR ($name == "") OR ($profile_photo == "") OR ($server_url == "")) { $data = probe_url($profile_url); $network = $data["network"]; $name = $data["name"]; + $nick = $data["nick"]; $profile_url = $data["url"]; $profile_photo = $data["photo"]; $server_url = $data["baseurl"]; @@ -241,7 +248,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca poco_check_server($server_url, $network); // Only fetch last update manually if it wasn't provided and enabled in the system - if (get_config('system','poco_completion') AND ($orig_updated == "0000-00-00 00:00:00") AND poco_do_update($updated, $last_contact, $last_failure)) { + if (get_config('system','poco_completion') AND ($orig_updated == "0000-00-00 00:00:00") AND poco_do_update($created, $updated, $last_failure, $last_contact)) { $last_updated = poco_last_updated($profile_url); if ($last_updated) { $updated = $last_updated; @@ -290,15 +297,17 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca ); } } else { - q("INSERT INTO `gcontact` (`name`,`network`, `url`,`nurl`,`photo`,`connect`, `server_url`, `updated`, `last_contact`, `last_failure`, `location`, `about`, `keywords`, `gender`, `generation`) - VALUES ('%s', '%s', '%s', '%s', '%s','%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d)", + q("INSERT INTO `gcontact` (`name`, `nick`, `network`, `url`, `nurl`, `photo`, `connect`, `server_url`, `created`, `updated`, `last_contact`, `last_failure`, `location`, `about`, `keywords`, `gender`, `generation`) + VALUES ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d)", dbesc($name), + dbesc($nick), dbesc($network), dbesc($profile_url), dbesc(normalise_link($profile_url)), dbesc($profile_photo), dbesc($connect_url), dbesc($server_url), + dbesc(datetime_convert()), dbesc($updated), dbesc($last_contact), dbesc($last_failure), @@ -357,13 +366,79 @@ function poco_last_updated($profile) { $gcontacts = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s'", dbesc(normalise_link($profile))); - if ($gcontacts[0]["server_url"] != "") { - $servers = q("SELECT * FROM `gserver` WHERE `nurl` = '%s' AND `last_contact` < `last_failure`", dbesc(normalise_link($gcontacts[0]["server_url"]))); + if ($gcontacts[0]["created"] == "0000-00-00 00:00:00") + q("UPDATE `gcontact` SET `created` = '%s' WHERE `nurl` = '%s'", + dbesc(datetime_convert()), dbesc(normalise_link($profile))); - if ($servers) + if (($gcontacts[0]["server_url"] != "") AND ($gcontacts[0]["network"] != "")) + if (!poco_check_server($gcontacts[0]["server_url"], $gcontacts[0]["network"])) return false; + + // noscrape is really fast so we don't cache the call. + if (($gcontacts[0]["server_url"] != "") AND ($gcontacts[0]["nick"] != "")) { + + // Use noscrape if possible + $server = q("SELECT `noscrape` FROM `gserver` WHERE `nurl` = '%s' AND `noscrape` != ''", dbesc(normalise_link($gcontacts[0]["server_url"]))); + + if ($server) { + $noscraperet = z_fetch_url($server[0]["noscrape"]."/".$gcontacts[0]["nick"]); + if ($noscraperet["success"]) { + $noscrape = json_decode($noscraperet["body"], true); + + if (($noscrape["name"] != "") AND ($noscrape["name"] != $gcontacts[0]["name"])) + q("UPDATE `gcontact` SET `name` = '%s' WHERE `nurl` = '%s'", + dbesc($noscrape["name"]), dbesc(normalise_link($profile))); + + if (($noscrape["photo"] != "") AND ($noscrape["photo"] != $gcontacts[0]["photo"])) + q("UPDATE `gcontact` SET `photo` = '%s' WHERE `nurl` = '%s'", + dbesc($noscrape["photo"]), dbesc(normalise_link($profile))); + + if (($noscrape["updated"] != "") AND ($noscrape["updated"] != $gcontacts[0]["updated"])) + q("UPDATE `gcontact` SET `updated` = '%s' WHERE `nurl` = '%s'", + dbesc($noscrape["updated"]), dbesc(normalise_link($profile))); + + if (($noscrape["gender"] != "") AND ($noscrape["gender"] != $gcontacts[0]["gender"])) + q("UPDATE `gcontact` SET `gender` = '%s' WHERE `nurl` = '%s'", + dbesc($noscrape["gender"]), dbesc(normalise_link($profile))); + + if (($noscrape["about"] != "") AND ($noscrape["about"] != $gcontacts[0]["name"])) + q("UPDATE `gcontact` SET `about` = '%s' WHERE `nurl` = '%s'", + dbesc($noscrape["about"]), dbesc(normalise_link($profile))); + + $keywords = implode(" ", $noscrape["tags"]); + if (($keywords != "") AND ($keywords != $gcontacts[0]["keywords"])) + q("UPDATE `gcontact` SET `keywords` = '%s' WHERE `nurl` = '%s'", + dbesc($keywords), dbesc(normalise_link($profile))); + + $location = $noscrape["locality"]; + + if ($noscrape["region"] != "") { + if ($location != "") + $location .= ", "; + + $location .= $noscrape["region"]; + } + + if ($noscrape["country-name"] != "") { + if ($location != "") + $location .= ", "; + + $location .= $noscrape["country-name"]; + } + + if (($location != "") AND ($location != $gcontacts[0]["location"])) + q("UPDATE `gcontact` SET `location` = '%s' WHERE `nurl` = '%s'", + dbesc($location), dbesc(normalise_link($profile))); + + return $noscrape["updated"]; + } + } } + // If we only can poll the feed, then we only do this once a while + if (!poco_do_update($gcontacts[0]["created"], $gcontacts[0]["updated"], $gcontacts[0]["last_failure"], $gcontacts[0]["last_contact"])) +/ return $gcontacts[0]["updated"]; + $data = probe_url($profile); if (($data["poll"] == "") OR ($data["network"] == NETWORK_FEED)) { @@ -376,6 +451,10 @@ function poco_last_updated($profile) { q("UPDATE `gcontact` SET `name` = '%s' WHERE `nurl` = '%s'", dbesc($data["name"]), dbesc(normalise_link($profile))); + if (($data["nick"] != "") AND ($data["nick"] != $gcontacts[0]["nick"])) + q("UPDATE `gcontact` SET `nick` = '%s' WHERE `nurl` = '%s'", + dbesc($data["nick"]), dbesc(normalise_link($profile))); + if (($data["addr"] != "") AND ($data["addr"] != $gcontacts[0]["connect"])) q("UPDATE `gcontact` SET `connect` = '%s' WHERE `nurl` = '%s'", dbesc($data["addr"]), dbesc(normalise_link($profile))); @@ -388,11 +467,6 @@ function poco_last_updated($profile) { q("UPDATE `gcontact` SET `server_url` = '%s' WHERE `nurl` = '%s'", dbesc($data["baseurl"]), dbesc(normalise_link($profile))); - if ($data["baseurl"] != "") - poco_check_server($data["baseurl"], $data["network"]); - - // To-Do: Use noscrape - $feedret = z_fetch_url($data["poll"]); if (!$feedret["success"]) { @@ -437,7 +511,7 @@ function poco_last_updated($profile) { return($last_updated); } -function poco_do_update($updated, $last_contact, $last_failure) { +function poco_do_update($created, $updated, $last_failure, $last_contact) { $now = strtotime(datetime_convert()); if ($updated > $last_contact) @@ -446,6 +520,11 @@ function poco_do_update($updated, $last_contact, $last_failure) { $contact_time = strtotime($last_contact); $failure_time = strtotime($last_failure); + $created_time = strtotime($created); + + // If there is no "created" time then use the current time + if ($created_time <= 0) + $created_time = $now; // If the last contact was less than 24 hours then don't update if (($now - $contact_time) < (60 * 60 * 24)) @@ -459,12 +538,12 @@ function poco_do_update($updated, $last_contact, $last_failure) { if ((($now - $contact_time) < (60 * 60 * 24 * 7)) AND ($contact_time > $failure_time)) return false; - // If the last contact time was more than a week ago, then only try once a week - if ((($now - $contact_time) > (60 * 60 * 24 * 7)) AND (($now - $failure_time) < (60 * 60 * 24 * 7))) + // If the last contact time was more than a week ago and the contact was created more than a week ago, then only try once a week + if ((($now - $contact_time) > (60 * 60 * 24 * 7)) AND (($now - $created_time) > (60 * 60 * 24 * 7)) AND (($now - $failure_time) < (60 * 60 * 24 * 7))) return false; - // If the last contact time was more than a month ago, then only try once a month - but only if there ever was a contact time - if (($contact_time > 0) AND (($now - $contact_time) > (60 * 60 * 24 * 30)) AND (($now - $failure_time) < (60 * 60 * 24 * 30))) + // If the last contact time was more than a month ago and the contact was created more than a month ago, then only try once a month + if ((($now - $contact_time) > (60 * 60 * 24 * 30)) AND (($now - $created_time) > (60 * 60 * 24 * 30)) AND (($now - $failure_time) < (60 * 60 * 24 * 30))) return false; return true; @@ -486,6 +565,11 @@ function poco_check_server($server_url, $network = "") { $servers = q("SELECT * FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url))); if ($servers) { + + if ($servers[0]["created"] == "0000-00-00 00:00:00") + q("UPDATE `gserver` SET `created` = '%s' WHERE `nurl` = '%s'", + dbesc(datetime_convert()), dbesc(normalise_link($server_url))); + $poco = $servers[0]["poco"]; $noscrape = $servers[0]["noscrape"]; @@ -500,7 +584,7 @@ function poco_check_server($server_url, $network = "") { $info = $servers[0]["info"]; $register_policy = $servers[0]["register_policy"]; - if (!poco_do_update("", $last_contact, $last_failure)) + if (!poco_do_update($servers[0]["created"], "", $last_failure, $last_contact)) return ($last_contact >= $last_failure); } else { $poco = ""; @@ -566,7 +650,7 @@ function poco_check_server($server_url, $network = "") { if (isset($data->site->hubzilla)) { $platform = $data->site->hubzilla->PLATFORM_NAME; $version = $data->site->hubzilla->RED_VERSION; - $network = NETWORK_DFRN; + $network = NETWORK_DIASPORA; } if (isset($data->site->redmatrix)) { if (isset($data->site->redmatrix->PLATFORM_NAME)) @@ -685,7 +769,7 @@ function poco_check_server($server_url, $network = "") { dbesc(normalise_link($server_url)) ); else - q("INSERT INTO `gserver` (`url`, `nurl`, `version`, `site_name`, `info`, `register_policy`, `poco`, `noscrape`, `network`, `platform`, `last_contact`, `last_failure`) + q("INSERT INTO `gserver` (`url`, `nurl`, `version`, `site_name`, `info`, `register_policy`, `poco`, `noscrape`, `network`, `platform`, `created`, `last_contact`, `last_failure`) VALUES ('%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s')", dbesc($server_url), dbesc(normalise_link($server_url)), @@ -697,6 +781,7 @@ function poco_check_server($server_url, $network = "") { dbesc($noscrape), dbesc($network), dbesc($platform), + dbesc(datetime_convert()), dbesc($last_contact), dbesc($last_failure), dbesc(datetime_convert()) @@ -1028,8 +1113,14 @@ function poco_discover($complete = false) { if (get_config('system','poco_discovery') > 1) { + $timeframe = get_config('system','poco_discovery_since'); + if ($timeframe == 0) + $timeframe = 30; + + $updatedSince = date("Y-m-d H:i:s", time() - $timeframe * 86400); + // Fetch all global contacts from the other server (Not working with Redmatrix and Friendica versions before 3.3) - $url = $server["poco"]."/@global?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; + $url = $server["poco"]."/@global?updatedSince=".$updatedSince."&fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; $retdata = z_fetch_url($url); if ($retdata["success"]) { diff --git a/mod/admin.php b/mod/admin.php index ea0196db8..cdfd3b5a6 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -360,6 +360,7 @@ function admin_page_site_post(&$a){ $maxloadavg_frontend = ((x($_POST,'maxloadavg_frontend')) ? intval(trim($_POST['maxloadavg_frontend'])) : 50); $poco_completion = ((x($_POST,'poco_completion')) ? intval(trim($_POST['poco_completion'])) : false); $poco_discovery = ((x($_POST,'poco_discovery')) ? intval(trim($_POST['poco_discovery'])) : 0); + $poco_discovery_since = ((x($_POST,'poco_discovery_since')) ? intval(trim($_POST['poco_discovery_since'])) : 30); $poco_local_search = ((x($_POST,'poco_local_search')) ? intval(trim($_POST['poco_local_search'])) : false); $dfrn_only = ((x($_POST,'dfrn_only')) ? True : False); $ostatus_disabled = !((x($_POST,'ostatus_disabled')) ? True : False); @@ -432,6 +433,7 @@ function admin_page_site_post(&$a){ set_config('system','maxloadavg_frontend',$maxloadavg_frontend); set_config('system','poco_completion',$poco_completion); set_config('system','poco_discovery',$poco_discovery); + set_config('system','poco_discovery_since',$poco_discovery_since); set_config('system','poco_local_search',$poco_local_search); set_config('config','sitename',$sitename); set_config('config','hostname',$hostname); @@ -595,6 +597,13 @@ function admin_page_site(&$a) { "3" => t("Users, Global Contacts/fallback"), ); + $poco_discovery_since_choices = array( + "30" => t("One month"), + "91" => t("Three months"), + "182" => t("Half a year"), + "365" => t("One year"), + ); + /* get user names to make the install a personal install of X */ $user_names = array(); $user_names['---'] = t('Multi user instance'); @@ -703,6 +712,7 @@ function admin_page_site(&$a) { '$poco_completion' => array('poco_completion', t("Completion of incoming contacts"), get_config('system','poco_completion'), t("Complete data of incomplete incoming contacts that are provided by the 'portable contacts' functionality. (Useful when communicating with Redmatrix and friendica servers before 3.3)")), '$poco_discovery' => array('poco_discovery', t("Discover contacts from other servers"), (string) intval(get_config('system','poco_discovery')), t("Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available."), $poco_discovery_choices), + '$poco_discovery_since' => array('poco_discovery_since', t("Timeframe for fetching global contacts"), (string) intval(get_config('system','poco_discovery_since')), t("When the discovery is activated, this value defines the timeframe for the global contacts that are fetched from other servers."), $poco_discovery_since_choices), '$poco_local_search' => array('poco_local_search', t("Search the local directory"), get_config('system','poco_local_search'), t("Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated.")), '$use_fulltext_engine' => array('use_fulltext_engine', t("Use MySQL full text engine"), get_config('system','use_fulltext_engine'), t("Activates the full text engine. Speeds up search - but can only search for four and more characters.")), diff --git a/view/templates/admin_site.tpl b/view/templates/admin_site.tpl index 2f448d1b9..9b3c75a0e 100644 --- a/view/templates/admin_site.tpl +++ b/view/templates/admin_site.tpl @@ -118,6 +118,7 @@

    {{$portable_contacts}}

    {{include file="field_checkbox.tpl" field=$poco_completion}} {{include file="field_select.tpl" field=$poco_discovery}} + {{include file="field_select.tpl" field=$poco_discovery_since}} {{include file="field_checkbox.tpl" field=$poco_local_search}}
    From 749a646480f6352af3b9a912811fdc182c0b7c4e Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 22 Jul 2015 11:51:37 +0200 Subject: [PATCH 053/239] Improved scraping and poco discovery. --- include/Scrape.php | 74 +++++++++++++-------------- include/socgraph.php | 118 +++++++++++++++++++++++++++++++++++++------ 2 files changed, 137 insertions(+), 55 deletions(-) diff --git a/include/Scrape.php b/include/Scrape.php index 90fb1a9e3..83c099769 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -249,7 +249,7 @@ function scrape_feed($url) { $ret['feed_atom'] = $url; return $ret; } - if(stristr($line,'application/rss+xml') || stristr($s,'loadHTML($s); + $xpath = new DomXPath($doc); + + $base = $xpath->query("//base"); + foreach ($base as $node) { + $attr = array(); + + if ($node->attributes->length) + foreach ($node->attributes as $attribute) + $attr[$attribute->name] = $attribute->value; + + if ($attr["href"] != "") + $basename = $attr["href"] ; } - if(! $dom) { - logger('scrape_feed: failed to parse.'); - return $ret; + $list = $xpath->query("//link"); + foreach ($list as $node) { + $attr = array(); + + if ($node->attributes->length) + foreach ($node->attributes as $attribute) + $attr[$attribute->name] = $attribute->value; + + if (($attr["rel"] == "alternate") AND ($attr["type"] == "application/atom+xml")) + $ret["feed_atom"] = $attr["href"]; + + if (($attr["rel"] == "alternate") AND ($attr["type"] == "application/rss+xml")) + $ret["feed_rss"] = $attr["href"]; } - - $head = $dom->getElementsByTagName('base'); - if($head) { - foreach($head as $head0) { - $basename = $head0->getAttribute('href'); - break; - } - } - if(! $basename) - $basename = implode('/', array_slice(explode('/',$url),0,3)) . '/'; - - $items = $dom->getElementsByTagName('link'); - - // get Atom/RSS link elements, take the first one of either. - - if($items) { - foreach($items as $item) { - $x = $item->getAttribute('rel'); - if(($x === 'alternate') && ($item->getAttribute('type') === 'application/atom+xml')) { - if(! x($ret,'feed_atom')) - $ret['feed_atom'] = $item->getAttribute('href'); - } - if(($x === 'alternate') && ($item->getAttribute('type') === 'application/rss+xml')) { - if(! x($ret,'feed_rss')) - $ret['feed_rss'] = $item->getAttribute('href'); - } - } - } - - // Drupal and perhaps others only provide relative URL's. Turn them into absolute. + // Drupal and perhaps others only provide relative URLs. Turn them into absolute. if(x($ret,'feed_atom') && (! strstr($ret['feed_atom'],'://'))) $ret['feed_atom'] = $basename . $ret['feed_atom']; @@ -509,6 +502,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { } if($mode == PROBE_NORMAL) { + if(strlen($zot)) { $s = fetch_url($zot); if($s) { @@ -528,6 +522,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { } } + if(strlen($dfrn)) { $ret = scrape_dfrn(($hcard) ? $hcard : $dfrn); if(is_array($ret) && x($ret,'dfrn-request')) { @@ -634,6 +629,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { if($check_feed) { $feedret = scrape_feed(($poll) ? $poll : $url); + logger('probe_url: scrape_feed ' . (($poll)? $poll : $url) . ' returns: ' . print_r($feedret,true), LOGGER_DATA); if(count($feedret) && ($feedret['feed_atom'] || $feedret['feed_rss'])) { $poll = ((x($feedret,'feed_atom')) ? unamp($feedret['feed_atom']) : unamp($feedret['feed_rss'])); @@ -653,7 +649,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { logger('probe_url: scrape_feed: headers: ' . $a->get_curl_headers(), LOGGER_DATA); // Don't try and parse an empty string - $feed->set_raw_data(($xml) ? $xml : ''); + $feed->set_raw_data(($xml) ? $xml : ''); $feed->init(); if($feed->error()) diff --git a/include/socgraph.php b/include/socgraph.php index 45cf3a650..9348cb67b 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -4,6 +4,11 @@ require_once('include/datetime.php'); require_once("include/Scrape.php"); require_once("include/html2bbcode.php"); +/* + To-Do: + - Move GNU Social URL schemata (http://server.tld/user/number) to http://server.tld/username +*/ + /* * poco_load * @@ -167,6 +172,14 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca if ($profile_url == "") return $gcid; + $urlparts = parse_url($profile_url); + if (!isset($urlparts["scheme"])) + return $gcid; + + if (in_array($urlparts["host"], array("facebook.com", "twitter.com", "www.twitter-rss.com", + "identi.ca", "alpha.app.net"))) + return $gcid; + $orig_updated = $updated; // Don't store the statusnet connector as network @@ -220,7 +233,8 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca $nick = end(explode("/", $urlparts["path"])); } - if (($network == "") OR ($name == "") OR ($profile_photo == "") OR ($server_url == "")) { + if ((($network == "") OR ($name == "") OR ($profile_photo == "") OR ($server_url == "")) + AND poco_reachable($profile_url, $server_url, $network)) { $data = probe_url($profile_url); $network = $data["network"]; $name = $data["name"]; @@ -248,7 +262,9 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca poco_check_server($server_url, $network); // Only fetch last update manually if it wasn't provided and enabled in the system - if (get_config('system','poco_completion') AND ($orig_updated == "0000-00-00 00:00:00") AND poco_do_update($created, $updated, $last_failure, $last_contact)) { + if (get_config('system','poco_completion') AND ($orig_updated == "0000-00-00 00:00:00") + AND poco_do_update($created, $updated, $last_failure, $last_contact) + AND poco_reachable($profile_url, $server_url, $network)) { $last_updated = poco_last_updated($profile_url); if ($last_updated) { $updated = $last_updated; @@ -361,6 +377,49 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca return $gcid; } +function poco_reachable($profile, $server = "", $network = "") { + + if ($server == "") + $server = poco_detect_server($profile); + + if ($server == "") + return true; + + return poco_check_server($server, $network); +} + +function poco_detect_server($profile) { + + // Try to detect the server path based upon some known standard paths + $server_url = ""; + + if ($server_url == "") { + $friendica = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $profile); + if ($friendica != $profile) { + $server_url = $friendica; + $network = NETWORK_DFRN; + } + } + + if ($server_url == "") { + $diaspora = preg_replace("=(https?://)(.*)/u/(.*)=ism", "$1$2", $profile); + if ($diaspora != $profile) { + $server_url = $diaspora; + $network = NETWORK_DIASPORA; + } + } + + if ($server_url == "") { + $red = preg_replace("=(https?://)(.*)/channel/(.*)=ism", "$1$2", $profile); + if ($red != $profile) { + $server_url = $red; + $network = NETWORK_DIASPORA; + } + } + + return $server_url; +} + function poco_last_updated($profile) { $gcontacts = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s'", @@ -437,7 +496,7 @@ function poco_last_updated($profile) { // If we only can poll the feed, then we only do this once a while if (!poco_do_update($gcontacts[0]["created"], $gcontacts[0]["updated"], $gcontacts[0]["last_failure"], $gcontacts[0]["last_contact"])) -/ return $gcontacts[0]["updated"]; + return $gcontacts[0]["updated"]; $data = probe_url($profile); @@ -558,7 +617,7 @@ function poco_to_boolean($val) { return ($val); } -function poco_check_server($server_url, $network = "") { +function poco_check_server($server_url, $network = "", $force = false) { if ($server_url == "") return false; @@ -584,8 +643,10 @@ function poco_check_server($server_url, $network = "") { $info = $servers[0]["info"]; $register_policy = $servers[0]["register_policy"]; - if (!poco_do_update($servers[0]["created"], "", $last_failure, $last_contact)) + if (!$force AND !poco_do_update($servers[0]["created"], "", $last_failure, $last_contact)) { + logger("Use cached data for server ".$server_url, LOGGER_DEBUG); return ($last_contact >= $last_failure); + } } else { $poco = ""; $noscrape = ""; @@ -598,6 +659,7 @@ function poco_check_server($server_url, $network = "") { $last_contact = "0000-00-00 00:00:00"; $last_failure = "0000-00-00 00:00:00"; } + logger("Server ".$server_url." is unknown. Start discovery.", LOGGER_DEBUG); $failure = false; $orig_last_failure = $last_failure; @@ -752,6 +814,9 @@ function poco_check_server($server_url, $network = "") { } } + // Check again if the server exists + $servers = q("SELECT `nurl` FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url))); + if ($servers) q("UPDATE `gserver` SET `url` = '%s', `version` = '%s', `site_name` = '%s', `info` = '%s', `register_policy` = %d, `poco` = '%s', `noscrape` = '%s', `network` = '%s', `platform` = '%s', `last_contact` = '%s', `last_failure` = '%s' WHERE `nurl` = '%s'", @@ -770,7 +835,7 @@ function poco_check_server($server_url, $network = "") { ); else q("INSERT INTO `gserver` (`url`, `nurl`, `version`, `site_name`, `info`, `register_policy`, `poco`, `noscrape`, `network`, `platform`, `created`, `last_contact`, `last_failure`) - VALUES ('%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s')", + VALUES ('%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s')", dbesc($server_url), dbesc(normalise_link($server_url)), dbesc($version), @@ -786,6 +851,9 @@ function poco_check_server($server_url, $network = "") { dbesc($last_failure), dbesc(datetime_convert()) ); + + logger("End discovery for server ".$server_url, LOGGER_DEBUG); + return !$failure; } @@ -1096,11 +1164,17 @@ function update_suggestions() { function poco_discover($complete = false) { - $last_update = date("c", time() - (60 * 60 * 24)); + $no_of_queries = 5; - $r = q("SELECT `poco`, `nurl` FROM `gserver` WHERE `last_contact` > `last_failure` AND `poco` != '' AND `last_poco_query` < '%s' ORDER BY RAND()", dbesc($last_update)); + $last_update = date("c", time() - (60 * 60 * 6)); // 24 + + $r = q("SELECT `poco`, `nurl`, `url`, `network` FROM `gserver` WHERE `last_contact` > `last_failure` AND `poco` != '' AND `last_poco_query` < '%s' ORDER BY RAND()", dbesc($last_update)); if ($r) foreach ($r AS $server) { + + if (!poco_check_server($server["url"], $server["network"])) + continue; + // Fetch all users from the other server $url = $server["poco"]."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; @@ -1109,6 +1183,7 @@ function poco_discover($complete = false) { $retdata = z_fetch_url($url); if ($retdata["success"]) { $data = json_decode($retdata["body"]); + poco_discover_server($data, 2); if (get_config('system','poco_discovery') > 1) { @@ -1122,24 +1197,29 @@ function poco_discover($complete = false) { // Fetch all global contacts from the other server (Not working with Redmatrix and Friendica versions before 3.3) $url = $server["poco"]."/@global?updatedSince=".$updatedSince."&fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; + $success = false; + $retdata = z_fetch_url($url); if ($retdata["success"]) { logger("Fetch all global contacts from the server ".$server["nurl"], LOGGER_DEBUG); - poco_discover_server(json_decode($retdata["body"])); - } elseif (get_config('system','poco_discovery') > 2) { + $success = poco_discover_server(json_decode($retdata["body"])); + } + + if (!$success AND (get_config('system','poco_discovery') > 2)) { logger("Fetch contacts from users of the server ".$server["nurl"], LOGGER_DEBUG); - poco_discover_server_users($data); + poco_discover_server_users($data, $server); } } q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); - if (!$complete) + if (!$complete AND (--$no_of_queries == 0)) break; - } + } else // If the server hadn't replied correctly, then force a sanity check + poco_check_server($server["url"], $server["network"], true); } } -function poco_discover_server_users($data) { +function poco_discover_server_users($data, $server) { foreach ($data->entry AS $entry) { $username = ""; if (isset($entry->urls)) { @@ -1166,7 +1246,9 @@ function poco_discover_server_users($data) { function poco_discover_server($data, $default_generation = 0) { if (!isset($data->entry) OR !count($data->entry)) - return; + return false; + + $success = false; foreach ($data->entry AS $entry) { $profile_url = ''; @@ -1195,6 +1277,7 @@ function poco_discover_server($data, $default_generation = 0) { } } } + if(isset($entry->photos)) { foreach($entry->photos as $photo) { if($photo->type == 'profile') { @@ -1227,10 +1310,13 @@ function poco_discover_server($data, $default_generation = 0) { $keywords = implode(", ", $tag); if ($generation > 0) { + $success = true; + logger("Store profile ".$profile_url, LOGGER_DEBUG); - poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $generation); + poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $generation, 0, 0, 0); logger("Done for profile ".$profile_url, LOGGER_DEBUG); } } + return $success; } ?> From 8dcebf005947b39e672169032b798a176adca49d Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 22 Jul 2015 12:03:14 +0200 Subject: [PATCH 054/239] email settings for the FAQ --- doc/FAQ.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/doc/FAQ.md b/doc/FAQ.md index fd2012c7e..f9e5cacd3 100644 --- a/doc/FAQ.md +++ b/doc/FAQ.md @@ -19,6 +19,8 @@ Admins * **[Can I configure multiple domains with the same code instance?](help/FAQ#multiple)** * **[Where can I find the source code of friendica, addons and themes?](help/FAQ#sources)** +* **[I've changed the my email address now the admin panel is gone?](help/FAQ#adminaccount1)** +* **[Can there be more then just one admin for a node?](help/FAQ#adminaccount2)** User -------- @@ -198,3 +200,14 @@ There you will always find the current stable version of friendica. Addons are listed at [this page](https://github.com/friendica/friendica-addons). If you are searching for new themes, you can find them at [Friendica-Themes.com](http://friendica-themes.com/) + + +###I've changed the my email address now the admin panel is gone? + +Have a look into your .htconfig.php and fix your email address there. + + +###Can there be more then just one admin for a node? + +Yes. You just have to list more then one email address in the +.htconfig.php file. The listed emails need to be separated by a comma. From 56a43dcbdf1cfb6d45acc1eb6f96c6183467acb4 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 23 Jul 2015 00:32:41 +0200 Subject: [PATCH 055/239] New Diaspora detection --- include/socgraph.php | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/include/socgraph.php b/include/socgraph.php index 9348cb67b..f72fe5f6f 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -464,7 +464,11 @@ function poco_last_updated($profile) { q("UPDATE `gcontact` SET `about` = '%s' WHERE `nurl` = '%s'", dbesc($noscrape["about"]), dbesc(normalise_link($profile))); - $keywords = implode(" ", $noscrape["tags"]); + if (isset($noscrape["tags"])) + $keywords = implode(" ", $noscrape["tags"]); + else + $keywords = ""; + if (($keywords != "") AND ($keywords != $gcontacts[0]["keywords"])) q("UPDATE `gcontact` SET `keywords` = '%s' WHERE `nurl` = '%s'", dbesc($keywords), dbesc(normalise_link($profile))); @@ -683,6 +687,23 @@ function poco_check_server($server_url, $network = "", $force = false) { } elseif ($network == NETWORK_DIASPORA) $last_contact = datetime_convert(); + if (!$failure) { + // Test for Diaspora + $serverret = z_fetch_url($server_url); + + $lines = explode("\n",$serverret["header"]); + if(count($lines)) + foreach($lines as $line) { + $line = trim($line); + if(stristr($line,'X-Diaspora-Version:')) { + $platform = "Diaspora"; + $version = trim(str_replace("X-Diaspora-Version:", "", $line)); + $version = trim(str_replace("x-diaspora-version:", "", $version)); + $network = NETWORK_DIASPORA; + } + } + } + if (!$failure) { // Test for Statusnet // Will also return data for Friendica and GNU Social - but it will be overwritten later @@ -758,6 +779,9 @@ function poco_check_server($server_url, $network = "", $force = false) { if (isset($data->network) AND ($platform == "")) $platform = $data->network; + if ($platform == "Diaspora") + $network = NETWORK_DIASPORA; + if ($data->registrations_open) $register_policy = REGISTER_OPEN; else @@ -773,6 +797,9 @@ function poco_check_server($server_url, $network = "", $force = false) { if (!$failure AND in_array($network, array(NETWORK_DFRN, NETWORK_OSTATUS))) { $serverret = z_fetch_url($server_url."/friendica/json"); + if (!$serverret["success"]) + $serverret = z_fetch_url($server_url."/friendika/json"); + if ($serverret["success"]) { $data = json_decode($serverret["body"]); @@ -1220,6 +1247,10 @@ function poco_discover($complete = false) { } function poco_discover_server_users($data, $server) { + + if (!isset($data->entry)) + return; + foreach ($data->entry AS $entry) { $username = ""; if (isset($entry->urls)) { From bb5186ae277c500614fab54df3255c869af9ec53 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 23 Jul 2015 08:35:45 +0200 Subject: [PATCH 056/239] Use an ID as a primary field. --- include/dbstructure.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index c079efeb5..7d6d015a3 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -691,6 +691,7 @@ function db_definition() { ); $database["gserver"] = array( "fields" => array( + "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"), "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "version" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), @@ -707,7 +708,8 @@ function db_definition() { "last_failure" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), ), "indexes" => array( - "PRIMARY" => array("nurl"), + "PRIMARY" => array("id"), + "nurl" => array("nurl"), ) ); $database["guid"] = array( From 5989b5dd68d380f22df25dc324f75b504ccf5760 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 23 Jul 2015 08:37:10 +0200 Subject: [PATCH 057/239] Adopted changes to database.sql --- database.sql | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/database.sql b/database.sql index ce5f051cd..67bc71822 100644 --- a/database.sql +++ b/database.sql @@ -301,10 +301,12 @@ CREATE TABLE IF NOT EXISTS `gcign` ( CREATE TABLE IF NOT EXISTS `gcontact` ( `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL DEFAULT '', + `nick` varchar(255) NOT NULL DEFAULT '', `url` varchar(255) NOT NULL DEFAULT '', `nurl` varchar(255) NOT NULL DEFAULT '', `photo` varchar(255) NOT NULL DEFAULT '', `connect` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `updated` datetime DEFAULT '0000-00-00 00:00:00', `last_contact` datetime DEFAULT '0000-00-00 00:00:00', `last_failure` datetime DEFAULT '0000-00-00 00:00:00', @@ -360,6 +362,7 @@ CREATE TABLE IF NOT EXISTS `group_member` ( -- TABLE gserver -- CREATE TABLE IF NOT EXISTS `gserver` ( + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, `url` varchar(255) NOT NULL DEFAULT '', `nurl` varchar(255) NOT NULL DEFAULT '', `version` varchar(255) NOT NULL DEFAULT '', @@ -370,9 +373,11 @@ CREATE TABLE IF NOT EXISTS `gserver` ( `noscrape` varchar(255) NOT NULL DEFAULT '', `network` varchar(32) NOT NULL DEFAULT '', `platform` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `last_poco_query` datetime DEFAULT '0000-00-00 00:00:00', `last_contact` datetime DEFAULT '0000-00-00 00:00:00', - `last_failure` datetime DEFAULT '0000-00-00 00:00:00' + `last_failure` datetime DEFAULT '0000-00-00 00:00:00', + INDEX `nurl` (`nurl`) ) DEFAULT CHARSET=utf8; -- From 201d95a8558506ede370e3f4d1986428fd6826bb Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 23 Jul 2015 10:28:40 +0200 Subject: [PATCH 058/239] Set contact as reachable when there was data from noscrape --- include/socgraph.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/include/socgraph.php b/include/socgraph.php index f72fe5f6f..272fcea99 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -429,8 +429,13 @@ function poco_last_updated($profile) { q("UPDATE `gcontact` SET `created` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc(normalise_link($profile))); - if (($gcontacts[0]["server_url"] != "") AND ($gcontacts[0]["network"] != "")) - if (!poco_check_server($gcontacts[0]["server_url"], $gcontacts[0]["network"])) + if ($gcontacts[0]["server_url"] != "") + $server_url = $gcontacts[0]["server_url"]; + else + $server_url = poco_detect_server($profile); + + if ($server_url != "") + if (!poco_check_server($pserver_url, $gcontacts[0]["network"])) return false; // noscrape is really fast so we don't cache the call. @@ -493,6 +498,11 @@ function poco_last_updated($profile) { q("UPDATE `gcontact` SET `location` = '%s' WHERE `nurl` = '%s'", dbesc($location), dbesc(normalise_link($profile))); + // If we got data from noscrape then mark the contact as reachable + if (is_array($noscrape) AND count($noscrape)) + q("UPDATE `gcontact` SET `last_contact` = '%s' WHERE `nurl` = '%s'", + dbesc(datetime_convert()), dbesc(normalise_link($profile))); + return $noscrape["updated"]; } } From cbd2fc1572028a4b7e6753d4abebb46995328145 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 23 Jul 2015 20:57:08 +0200 Subject: [PATCH 059/239] "last_contact" is now set automatically if it is lower than the update value. --- include/socgraph.php | 6 +++++- mod/poco.php | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/include/socgraph.php b/include/socgraph.php index 272fcea99..b9028724a 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -223,6 +223,9 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca $last_failure = $x[0]["last_failure"]; $server_url = $x[0]["server_url"]; $nick = $x[0]["nick"]; + + if ($updated > $last_contact) + $last_contact = $updated; } else { $created = "0000-00-00 00:00:00"; $last_contact = "0000-00-00 00:00:00"; @@ -294,7 +297,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca if($x[0]['name'] != $name || $x[0]['photo'] != $profile_photo || $x[0]['updated'] < $updated) { q("UPDATE `gcontact` SET `name` = '%s', `network` = '%s', `photo` = '%s', `connect` = '%s', `url` = '%s', `server_url` = '%s', - `updated` = '%s', `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s', `generation` = %d + `updated` = '%s', `last_contact` = '%s', `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s', `generation` = %d WHERE (`generation` >= %d OR `generation` = 0) AND `nurl` = '%s'", dbesc($name), dbesc($network), @@ -303,6 +306,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca dbesc($profile_url), dbesc($server_url), dbesc($updated), + dbesc($last_contact), dbesc($location), dbesc($about), dbesc($keywords), diff --git a/mod/poco.php b/mod/poco.php index 0b62e93e3..250add179 100644 --- a/mod/poco.php +++ b/mod/poco.php @@ -61,7 +61,7 @@ function poco_init(&$a) { $update_limit = date("Y-m-d H:i:s",strtotime($_GET['updatedSince'])); if ($global) { - $r = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `updated` >= '%s' AND `last_contact` >= `last_failure` AND `network` IN ('%s')", + $r = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `updated` >= '%s' AND ((`last_contact` >= `last_failure`) OR (`updated` > `last_failure`)) AND `network` IN ('%s')", dbesc($update_limit), dbesc(NETWORK_DFRN) ); From c56ccd225cee6a73cb06bb3bd45324f63a843ea2 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Thu, 23 Jul 2015 22:06:18 +0200 Subject: [PATCH 060/239] Vagrant user doesn't have to tun the actual installation anymore. Test database is imported, htconfig is set, not generated to prevent installation routine. --- util/htconfig.vagrant.php | 71 +++++++++++++++++++++++++++++++++++++++ util/vagrant_provision.sh | 13 ++++--- 2 files changed, 77 insertions(+), 7 deletions(-) create mode 100644 util/htconfig.vagrant.php diff --git a/util/htconfig.vagrant.php b/util/htconfig.vagrant.php new file mode 100644 index 000000000..36fd4b9c9 --- /dev/null +++ b/util/htconfig.vagrant.php @@ -0,0 +1,71 @@ +path = ''; + +// Choose a legal default timezone. If you are unsure, use "America/Los_Angeles". +// It can be changed later and only applies to timestamps for anonymous viewers. + +$default_timezone = 'Europe/Berlin'; + +// What is your site name? + +$a->config['sitename'] = "My Friend Network"; + +// Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED. +// Be certain to create your own personal account before setting +// REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on +// the registration page. REGISTER_APPROVE requires you set 'admin_email' +// to the email address of an already registered person who can authorise +// and/or approve/deny the request. + +$a->config['register_policy'] = REGISTER_OPEN; +$a->config['register_text'] = ''; +$a->config['admin_email'] = 'vagrant@friendica.dev'; + +// Maximum size of an imported message, 0 is unlimited + +$a->config['max_import_size'] = 200000; + +// maximum size of uploaded photos + +$a->config['system']['maximagesize'] = 800000; + +// Location of PHP command line processor + +$a->config['php_path'] = '/usr/bin/php'; + +// Location of global directory submission page. + +$a->config['system']['directory_submit_url'] = 'http://dir.friendica.com/submit'; +$a->config['system']['directory_search_url'] = 'http://dir.friendica.com/directory?search='; + +// PuSH - aka pubsubhubbub URL. This makes delivery of public posts as fast as private posts + +$a->config['system']['huburl'] = '[internal]'; + +// Server-to-server private message encryption (RINO) is allowed by default. +// Encryption will only be provided if this setting is true and the +// PHP mcrypt extension is installed on both systems + +$a->config['system']['rino_encrypt'] = true; + +// default system theme + +$a->config['system']['theme'] = 'duepuntozero'; + +// By default allow pseudonyms + +$a->config['system']['no_regfullname'] = true; diff --git a/util/vagrant_provision.sh b/util/vagrant_provision.sh index b964d2243..ac2465966 100644 --- a/util/vagrant_provision.sh +++ b/util/vagrant_provision.sh @@ -63,6 +63,7 @@ SQL="${Q1}${Q2}" $MYSQL -uroot -proot -e "$SQL" service mysql restart + #configure rudimentary mail server (local delivery only) #add Friendica accounts for local user accounts, use email address like vagrant@friendica.dev, read the email with 'mail'. debconf-set-selections <<< "postfix postfix/mailname string friendica.dev" @@ -74,15 +75,13 @@ sudo echo -e "friendica1: vagrant\nfriendica2: vagrant\nfriendica3: vagrant\nfri sudo rm -rf /var/www/ sudo ln -fs /vagrant /var/www -#delete .htconfig.php file if it exists to have a fresh friendica -#installation -if [ -f /vagrant/.htconfig.php ] - then - sudo rm /vagrant/.htconfig.php -fi +# initial config file for friendica in vagrant +cp /vagrant/util/htconfig.vagrant.php /vagrant/.htconfig.php -#create the friendica database +# create the friendica database echo "create database friendica" | mysql -u root -proot +# import test database +$MYSQL -uroot -proot friendica < /vagrant/friendica_test_data.sql #create cronjob echo "*/10 * * * * cd /vagrant; /usr/bin/php include/poller.php" >> friendicacron From ef9ceec12c62cd75f54ae45a281e989cabce31dc Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Thu, 23 Jul 2015 22:11:09 +0200 Subject: [PATCH 061/239] Updated vagrant docs. --- doc/Vagrant.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/doc/Vagrant.md b/doc/Vagrant.md index 979c5c49b..1d23ace13 100644 --- a/doc/Vagrant.md +++ b/doc/Vagrant.md @@ -17,7 +17,7 @@ Inside, you'll find a "Vagrantfile" and some scripts in the utils folder. 3. Run "vagrant up" from inside the friendica clone. Be patient: When it runs for the first time, it downloads an Ubuntu Server image. 4. Run "vagrant ssh" to log into the virtual machine to log in to the VM. -5. Open 192.168.22.10 in a browser to finish the Friendica installation. +5. Open 192.168.22.10 in a browser. The mysql database is called "friendica", the mysql user and password both are "root". 6. Work on Friendica's code in your git clone on your machine (not in the VM). 7. Check the changes in your browser in the VM. @@ -30,13 +30,7 @@ If you want to stop vagrant after finishing your work, run the following command in the development directory. -Import test data ----------------- - -If you want some test data in your vagrant Friendica instance import the database dump friendica_test_data.sql like so (inside the VM): - - $> mysql -u root -p friendica < /vagrant/friendica_test_data.sql - +The vagrant Friendica instance contains a test database. You will then have the following accounts to login: * admin, password admin From 880f486044a519e4dd22c7e7f52ebf6e5f50b723 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 23 Jul 2015 22:21:22 +0200 Subject: [PATCH 062/239] Check not only for the last contact but also for the last update for the sanity check. --- include/discover_poco.php | 5 +++-- mod/dirfind.php | 3 ++- mod/poco.php | 6 +++--- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/include/discover_poco.php b/include/discover_poco.php index 74ed83b47..7dbafcafd 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -93,11 +93,12 @@ function discover_directory($search) { if(count($j->results)) foreach($j->results as $jj) { // Check if the contact already exists - $exists = q("SELECT `id`, `last_contact`, `last_failure` FROM `gcontact` WHERE `nurl` = '%s'", normalise_link($jj->url)); + $exists = q("SELECT `id`, `last_contact`, `last_failure`, `updated` FROM `gcontact` WHERE `nurl` = '%s'", normalise_link($jj->url)); if ($exists) { logger("Profile ".$jj->url." already exists (".$search.")", LOGGER_DEBUG); - if ($exists[0]["last_contact"] < $exists[0]["last_failure"]) + if (($exists[0]["last_contact"] < $exists[0]["last_failure"]) AND + ($exists[0]["updated"] < $exists[0]["last_failure"])) continue; // Update the contact diff --git a/mod/dirfind.php b/mod/dirfind.php index 996d2a464..45fc93b7e 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -46,7 +46,8 @@ function dirfind_content(&$a) { $results = q("SELECT `contact`.`id` AS `cid`, `gcontact`.`url`, `gcontact`.`name`, `gcontact`.`photo`, `gcontact`.`keywords` FROM `gcontact` LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl` AND `contact`.`uid` = %d - WHERE `gcontact`.`network` IN ('%s', '%s', '%s') AND `gcontact`.`last_contact` >= `gcontact`.`last_failure` AND + WHERE `gcontact`.`network` IN ('%s', '%s', '%s') AND + ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`)) AND (`gcontact`.`url` REGEXP '%s' OR `gcontact`.`name` REGEXP '%s' OR `gcontact`.`location` REGEXP '%s' OR `gcontact`.`about` REGEXP '%s' OR `gcontact`.`keywords` REGEXP '%s') GROUP BY `gcontact`.`nurl` diff --git a/mod/poco.php b/mod/poco.php index 250add179..0b08e30bf 100644 --- a/mod/poco.php +++ b/mod/poco.php @@ -61,7 +61,7 @@ function poco_init(&$a) { $update_limit = date("Y-m-d H:i:s",strtotime($_GET['updatedSince'])); if ($global) { - $r = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `updated` >= '%s' AND ((`last_contact` >= `last_failure`) OR (`updated` > `last_failure`)) AND `network` IN ('%s')", + $r = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `updated` >= '%s' AND ((`last_contact` >= `last_failure`) OR (`updated` >= `last_failure`)) AND `network` IN ('%s')", dbesc($update_limit), dbesc(NETWORK_DFRN) ); @@ -96,7 +96,7 @@ function poco_init(&$a) { if ($global) { - $r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND `network` IN ('%s') AND `last_contact` >= `last_failure` LIMIT %d, %d", + $r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND `network` IN ('%s') AND ((`last_contact` >= `last_failure`) OR (`updated` > `last_failure`)) LIMIT %d, %d", dbesc($update_limit), dbesc(NETWORK_DFRN), intval($startIndex), @@ -107,7 +107,7 @@ function poco_init(&$a) { `profile`.`address` AS `paddress`, `profile`.`region` AS `pregion`, `profile`.`postal-code` AS `ppostalcode`, `profile`.`country-name` AS `pcountry` FROM `contact` INNER JOIN `profile` ON `profile`.`uid` = `contact`.`uid` WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s', '') AND `profile`.`is-default` - AND `contact`.`success_update` >= `contact`.`failure_update` + AND ((`contact`.`success_update` >= `contact`.`failure_update`) OR (`contact`.`last-item` >= `contact`.`failure_update`)) AND `contact`.`uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) LIMIT %d, %d", dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), From 39d2720e7b9d7674cbdf4c76bc579f3819691528 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 23 Jul 2015 23:27:15 +0200 Subject: [PATCH 063/239] Update the contact when activated --- include/socgraph.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/socgraph.php b/include/socgraph.php index b9028724a..7d4cca18a 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -264,8 +264,9 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca poco_check_server($server_url, $network); - // Only fetch last update manually if it wasn't provided and enabled in the system - if (get_config('system','poco_completion') AND ($orig_updated == "0000-00-00 00:00:00") + // Fetch last update manually if it is enabled in the system + // AND ($orig_updated == "0000-00-00 00:00:00") + if (get_config('system','poco_completion') AND poco_do_update($created, $updated, $last_failure, $last_contact) AND poco_reachable($profile_url, $server_url, $network)) { $last_updated = poco_last_updated($profile_url); From e3e9de2e74b623a6843ee684a7978d7aa51e34b6 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 24 Jul 2015 07:23:57 +0200 Subject: [PATCH 064/239] Export all federation contacts through poco --- include/dbstructure.php | 1 + include/socgraph.php | 4 ++-- mod/poco.php | 12 +++++++++--- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index 7d6d015a3..e14ce64d8 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -646,6 +646,7 @@ function db_definition() { "indexes" => array( "PRIMARY" => array("id"), "nurl" => array("nurl"), + "updated" => array("updated"), ) ); $database["glink"] = array( diff --git a/include/socgraph.php b/include/socgraph.php index 7d4cca18a..1f3536a9f 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -613,8 +613,8 @@ function poco_do_update($created, $updated, $last_failure, $last_contact) { return false; // If the last contact was less than a week ago and the last failure is older than a week then don't update - if ((($now - $contact_time) < (60 * 60 * 24 * 7)) AND ($contact_time > $failure_time)) - return false; + //if ((($now - $contact_time) < (60 * 60 * 24 * 7)) AND ($contact_time > $failure_time)) + // return false; // If the last contact time was more than a week ago and the contact was created more than a week ago, then only try once a week if ((($now - $contact_time) > (60 * 60 * 24 * 7)) AND (($now - $created_time) > (60 * 60 * 24 * 7)) AND (($now - $failure_time) < (60 * 60 * 24 * 7))) diff --git a/mod/poco.php b/mod/poco.php index 0b08e30bf..53c7f5b0b 100644 --- a/mod/poco.php +++ b/mod/poco.php @@ -61,9 +61,12 @@ function poco_init(&$a) { $update_limit = date("Y-m-d H:i:s",strtotime($_GET['updatedSince'])); if ($global) { - $r = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `updated` >= '%s' AND ((`last_contact` >= `last_failure`) OR (`updated` >= `last_failure`)) AND `network` IN ('%s')", + //$r = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `updated` >= '%s' AND ((`last_contact` >= `last_failure`) OR (`updated` >= `last_failure`)) AND `network` IN ('%s')", + $r = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `updated` >= '%s' AND `updated` >= `last_failure` AND `network` IN ('%s', '%s', '%s')", dbesc($update_limit), - dbesc(NETWORK_DFRN) + dbesc(NETWORK_DFRN), + dbesc(NETWORK_DIASPORA), + dbesc(NETWORK_OSTATUS) ); } elseif($system_mode) { $r = q("SELECT count(*) AS `total` FROM `contact` WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s', '') @@ -96,9 +99,12 @@ function poco_init(&$a) { if ($global) { - $r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND `network` IN ('%s') AND ((`last_contact` >= `last_failure`) OR (`updated` > `last_failure`)) LIMIT %d, %d", + //$r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND `network` IN ('%s') AND ((`last_contact` >= `last_failure`) OR (`updated` > `last_failure`)) LIMIT %d, %d", + $r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND `network` IN ('%s', '%1', '%1') and `updated` > `last_failure` LIMIT %d, %d", dbesc($update_limit), dbesc(NETWORK_DFRN), + dbesc(NETWORK_DIASPORA), + dbesc(NETWORK_OSTATUS), intval($startIndex), intval($itemsPerPage) ); From 68e318e3162e992acbc31fe4d2efeff26ae6d3d5 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 25 Jul 2015 10:50:00 +0200 Subject: [PATCH 065/239] Don't export contacts with empty network --- mod/poco.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/mod/poco.php b/mod/poco.php index 53c7f5b0b..d180650a4 100644 --- a/mod/poco.php +++ b/mod/poco.php @@ -69,8 +69,8 @@ function poco_init(&$a) { dbesc(NETWORK_OSTATUS) ); } elseif($system_mode) { - $r = q("SELECT count(*) AS `total` FROM `contact` WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s', '') - AND `success_update` >= `failure_update` + $r = q("SELECT count(*) AS `total` FROM `contact` WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s') + AND (`success_update` >= `failure_update` OR `last-item` >= `failure_update`) AND `uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) ", dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), @@ -79,7 +79,8 @@ function poco_init(&$a) { ); } else { $r = q("SELECT count(*) AS `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 - AND `success_update` >= `failure_update` AND `network` IN ('%s', '%s', '%s', '%s', '') $sql_extra", + AND (`success_update` >= `failure_update` OR `last-item` >= `failure_update`) + AND `network` IN ('%s', '%s', '%s', '%s') $sql_extra", intval($user['uid']), dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), @@ -112,7 +113,7 @@ function poco_init(&$a) { $r = q("SELECT `contact`.*, `profile`.`about` AS `pabout`, `profile`.`locality` AS `plocation`, `profile`.`pub_keywords`, `profile`.`gender` AS `pgender`, `profile`.`address` AS `paddress`, `profile`.`region` AS `pregion`, `profile`.`postal-code` AS `ppostalcode`, `profile`.`country-name` AS `pcountry` FROM `contact` INNER JOIN `profile` ON `profile`.`uid` = `contact`.`uid` - WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s', '') AND `profile`.`is-default` + WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s') AND `profile`.`is-default` AND ((`contact`.`success_update` >= `contact`.`failure_update`) OR (`contact`.`last-item` >= `contact`.`failure_update`)) AND `contact`.`uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) LIMIT %d, %d", dbesc(NETWORK_DFRN), @@ -124,7 +125,8 @@ function poco_init(&$a) { ); } else { $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 - AND `success_update` >= `failure_update` AND `network` IN ('%s', '%s', '%s', '%s', '') $sql_extra LIMIT %d, %d", + AND (`success_update` >= `failure_update` OR `last-item` >= `failure_update`) + AND `network` IN ('%s', '%s', '%s', '%s') $sql_extra LIMIT %d, %d", intval($user['uid']), dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), From dcfcd6f906e9b7a10d4e733ff53879149c05e80a Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 25 Jul 2015 12:05:27 +0200 Subject: [PATCH 066/239] Poco: added caching --- mod/poco.php | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/mod/poco.php b/mod/poco.php index d180650a4..f84fc964d 100644 --- a/mod/poco.php +++ b/mod/poco.php @@ -98,10 +98,11 @@ function poco_init(&$a) { $startIndex = 0; $itemsPerPage = ((x($_GET,'count') && intval($_GET['count'])) ? intval($_GET['count']) : $totalResults); - if ($global) { + logger("Start global query", LOGGER_DEBUG); //$r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND `network` IN ('%s') AND ((`last_contact` >= `last_failure`) OR (`updated` > `last_failure`)) LIMIT %d, %d", - $r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND `network` IN ('%s', '%1', '%1') and `updated` > `last_failure` LIMIT %d, %d", + $r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND `network` IN ('%s', '%s', '%s') AND `updated` > `last_failure` + ORDER BY `updated` DESC LIMIT %d, %d", dbesc($update_limit), dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), @@ -110,6 +111,7 @@ function poco_init(&$a) { intval($itemsPerPage) ); } elseif($system_mode) { + logger("Start system mode query", LOGGER_DEBUG); $r = q("SELECT `contact`.*, `profile`.`about` AS `pabout`, `profile`.`locality` AS `plocation`, `profile`.`pub_keywords`, `profile`.`gender` AS `pgender`, `profile`.`address` AS `paddress`, `profile`.`region` AS `pregion`, `profile`.`postal-code` AS `ppostalcode`, `profile`.`country-name` AS `pcountry` FROM `contact` INNER JOIN `profile` ON `profile`.`uid` = `contact`.`uid` @@ -124,6 +126,7 @@ function poco_init(&$a) { intval($itemsPerPage) ); } else { + logger("Start query for user ".$user['nickname'], LOGGER_DEBUG); $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 AND (`success_update` >= `failure_update` OR `last-item` >= `failure_update`) AND `network` IN ('%s', '%s', '%s', '%s') $sql_extra LIMIT %d, %d", @@ -136,6 +139,7 @@ function poco_init(&$a) { intval($itemsPerPage) ); } + logger("Query done", LOGGER_DEBUG); $ret = array(); if(x($_GET,'sorted')) @@ -216,13 +220,19 @@ function poco_init(&$a) { if (($rr['keywords'] == "") AND isset($rr['pub_keywords'])) $rr['keywords'] = $rr['pub_keywords']; + $about = Cache::get("about:".$rr['updated'].":".$rr['nurl']); + if (is_null($about)) { + $about = bbcode($rr['about'], false, false); + Cache::set("about:".$rr['updated'].":".$rr['nurl'],$about); + } + $entry = array(); if($fields_ret['id']) $entry['id'] = (int)$rr['id']; if($fields_ret['displayName']) $entry['displayName'] = $rr['name']; if($fields_ret['aboutMe']) - $entry['aboutMe'] = bbcode($rr['about'], false, false); + $entry['aboutMe'] = $about; if($fields_ret['currentLocation']) $entry['currentLocation'] = $rr['location']; if($fields_ret['gender']) @@ -305,6 +315,8 @@ function poco_init(&$a) { else http_status_exit(500); + logger("End of poco", LOGGER_DEBUG); + if($format === 'xml') { header('Content-type: text/xml'); echo replace_macros(get_markup_template('poco_xml.tpl'),array_xmlify(array('$response' => $ret))); From 5f524006dd058dd913510bfb6604aefaf1f27c9b Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 25 Jul 2015 14:51:56 +0200 Subject: [PATCH 067/239] Poco: Only fetch the latest post if it wasn't provided. --- include/socgraph.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/socgraph.php b/include/socgraph.php index 1f3536a9f..6111e0779 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -265,8 +265,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca poco_check_server($server_url, $network); // Fetch last update manually if it is enabled in the system - // AND ($orig_updated == "0000-00-00 00:00:00") - if (get_config('system','poco_completion') + if (get_config('system','poco_completion') AND ($orig_updated == "0000-00-00 00:00:00") AND poco_do_update($created, $updated, $last_failure, $last_contact) AND poco_reachable($profile_url, $server_url, $network)) { $last_updated = poco_last_updated($profile_url); From 072d7f6b3c9ee2b3a01f91044dfa95771320a633 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 25 Jul 2015 19:59:27 +0200 Subject: [PATCH 068/239] Do a recheck when the server isn't available. --- include/socgraph.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/include/socgraph.php b/include/socgraph.php index 6111e0779..a84d2d7be 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -239,6 +239,18 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca if ((($network == "") OR ($name == "") OR ($profile_photo == "") OR ($server_url == "")) AND poco_reachable($profile_url, $server_url, $network)) { $data = probe_url($profile_url); + + // If the system doesn't seem to react, recheck the server + if ($data["network"] == NETWORK_FEED) { + logger("Recheck the server for profile ".$profile_url, LOGGER_DEBUG); + if ($server_url == "") + $url_check = poco_detect_server($profile_url); + else + $url_check = $server_url; + + poco_check_server($url_check, $network, true); + } + $network = $data["network"]; $name = $data["name"]; $nick = $data["nick"]; @@ -1208,6 +1220,7 @@ function poco_discover($complete = false) { $no_of_queries = 5; $last_update = date("c", time() - (60 * 60 * 6)); // 24 + $last_update = date("c", time() - (60 * 60 * 24)); // 24 $r = q("SELECT `poco`, `nurl`, `url`, `network` FROM `gserver` WHERE `last_contact` > `last_failure` AND `poco` != '' AND `last_poco_query` < '%s' ORDER BY RAND()", dbesc($last_update)); if ($r) From fc9c6e6bfd1cf31959d79077e701b086c5d8c713 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 25 Jul 2015 20:10:42 +0200 Subject: [PATCH 069/239] Poco: always do a forced check for availability of the server --- include/socgraph.php | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/include/socgraph.php b/include/socgraph.php index a84d2d7be..0c78cfe23 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -237,20 +237,9 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca } if ((($network == "") OR ($name == "") OR ($profile_photo == "") OR ($server_url == "")) - AND poco_reachable($profile_url, $server_url, $network)) { + AND poco_reachable($profile_url, $server_url, $network, true)) { $data = probe_url($profile_url); - // If the system doesn't seem to react, recheck the server - if ($data["network"] == NETWORK_FEED) { - logger("Recheck the server for profile ".$profile_url, LOGGER_DEBUG); - if ($server_url == "") - $url_check = poco_detect_server($profile_url); - else - $url_check = $server_url; - - poco_check_server($url_check, $network, true); - } - $network = $data["network"]; $name = $data["name"]; $nick = $data["nick"]; @@ -393,7 +382,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca return $gcid; } -function poco_reachable($profile, $server = "", $network = "") { +function poco_reachable($profile, $server = "", $network = "", $force = false) { if ($server == "") $server = poco_detect_server($profile); @@ -401,7 +390,7 @@ function poco_reachable($profile, $server = "", $network = "") { if ($server == "") return true; - return poco_check_server($server, $network); + return poco_check_server($server, $network, $force); } function poco_detect_server($profile) { From 166519fc4db8eec57ce17c4ab7b094d2252b65e1 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 26 Jul 2015 14:41:34 +0200 Subject: [PATCH 070/239] Move the contact discovery into the background --- include/discover_poco.php | 32 ++++++++++++++++++++++++++------ include/poller.php | 4 ++++ include/socgraph.php | 22 +++++++++++----------- 3 files changed, 41 insertions(+), 17 deletions(-) diff --git a/include/discover_poco.php b/include/discover_poco.php index 7dbafcafd..68f483dab 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -38,23 +38,26 @@ function discover_poco_run(&$argv, &$argc){ if(($argc > 2) && ($argv[1] == "dirsearch")) { $search = urldecode($argv[2]); - $searchmode = 1; + $mode = 1; + } elseif(($argc == 2) && ($argv[1] == "checkcontact")) { + $mode = 2; } elseif ($argc == 1) { $search = ""; - $searchmode = 0; + $mode = 0; } else die("Unknown or missing parameter ".$argv[1]."\n"); $lockpath = get_lockpath(); if ($lockpath != '') { - $pidfile = new pidfile($lockpath, 'discover_poco'.urlencode($search)); + $pidfile = new pidfile($lockpath, 'discover_poco'.$mode.urlencode($search)); if($pidfile->is_already_running()) { logger("discover_poco: Already running"); if ($pidfile->running_time() > 19*60) { $pidfile->kill(); logger("discover_poco: killed stale process"); // Calling a new instance - proc_run('php','include/discover_poco.php'); + if ($mode == 0) + proc_run('php','include/discover_poco.php'); } exit; } @@ -66,9 +69,11 @@ function discover_poco_run(&$argv, &$argc){ logger('start '.$search); - if (($search != "") and get_config('system','poco_local_search')) + if (($mode == 2) AND get_config('system','poco_completion')) + discover_users(); + elseif (($mode == 1) AND ($search != "") and get_config('system','poco_local_search')) discover_directory($search); - elseif (($search == "") and get_config('system','poco_discovery') > 0) + elseif (($mode == 0) AND ($search == "") and (get_config('system','poco_discovery') > 0)) poco_discover(); logger('end '.$search); @@ -76,6 +81,21 @@ function discover_poco_run(&$argv, &$argc){ return; } +function discover_users() { + $users = q("SELECT `url` FROM `gcontact` WHERE `updated` = '0000-00-00 00:00:00' AND + `last_contact` = '0000-00-00 00:00:00' AND `last_failure` = '0000-00-00 00:00:00' AND + `network` IN ('%s', '%s', '%s') ORDER BY rand() LIMIT 50", + dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS)); + + if (!$users) + return; + + foreach ($users AS $user) { + logger('Check user '.$user["url"]); + poco_last_updated($user["url"]); + } +} + function discover_directory($search) { $data = Cache::get("dirsearch:".$search); diff --git a/include/poller.php b/include/poller.php index 44ac94daa..7cc1a2852 100644 --- a/include/poller.php +++ b/include/poller.php @@ -86,6 +86,10 @@ function poller_run(&$argv, &$argc){ proc_run('php',"include/discover_poco.php"); + // run the process to update locally stored global contacts in the background + + proc_run('php',"include/discover_poco.php", "checkcontact"); + // expire any expired accounts q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0 diff --git a/include/socgraph.php b/include/socgraph.php index 0c78cfe23..53763626d 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -266,17 +266,17 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca poco_check_server($server_url, $network); // Fetch last update manually if it is enabled in the system - if (get_config('system','poco_completion') AND ($orig_updated == "0000-00-00 00:00:00") - AND poco_do_update($created, $updated, $last_failure, $last_contact) - AND poco_reachable($profile_url, $server_url, $network)) { - $last_updated = poco_last_updated($profile_url); - if ($last_updated) { - $updated = $last_updated; - $last_contact = datetime_convert(); - logger("Last updated for profile ".$profile_url.": ".$updated, LOGGER_DEBUG); - } else - $last_failure = datetime_convert(); - } + //if (get_config('system','poco_completion') AND ($orig_updated == "0000-00-00 00:00:00") + // AND poco_do_update($created, $updated, $last_failure, $last_contact) + // AND poco_reachable($profile_url, $server_url, $network)) { + // $last_updated = poco_last_updated($profile_url); + // if ($last_updated) { + // $updated = $last_updated; + // $last_contact = datetime_convert(); + // logger("Last updated for profile ".$profile_url.": ".$updated, LOGGER_DEBUG); + // } else + // $last_failure = datetime_convert(); + //} if(count($x)) { $gcid = $x[0]['id']; From 7136a39f9e4dd7adce5adb3bc13ec3ccd4c3483d Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 26 Jul 2015 16:37:05 +0200 Subject: [PATCH 071/239] Discovery for unchecked contacts --- include/discover_poco.php | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/include/discover_poco.php b/include/discover_poco.php index 68f483dab..bc5ee5d32 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -82,17 +82,21 @@ function discover_poco_run(&$argv, &$argc){ } function discover_users() { - $users = q("SELECT `url` FROM `gcontact` WHERE `updated` = '0000-00-00 00:00:00' AND - `last_contact` = '0000-00-00 00:00:00' AND `last_failure` = '0000-00-00 00:00:00' AND - `network` IN ('%s', '%s', '%s') ORDER BY rand() LIMIT 50", + // To-Do: Maybe we should check old contact as well. + $users = q("SELECT `url`, `created`, `updated`, `last_failure`, `last_contact` FROM `gcontact` + WHERE `updated` = '0000-00-00 00:00:00' AND `last_contact` = '0000-00-00 00:00:00' AND + `last_failure` = '0000-00-00 00:00:00' AND `network` IN ('%s', '%s', '%s') + ORDER BY rand() LIMIT 100", dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS)); if (!$users) return; foreach ($users AS $user) { - logger('Check user '.$user["url"]); - poco_last_updated($user["url"]); + if (poco_do_update($user["created"], $user["updated"], $user["last_failure"], $user["last_contact"])) { + logger('Check user '.$user["url"]); + poco_last_updated($user["url"]); + } } } From e5bf7bae7b2e2d670744e4b5ec6fa82b28ca59e2 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 26 Jul 2015 16:52:37 +0200 Subject: [PATCH 072/239] Just some improvements ... --- include/discover_poco.php | 21 +++++++++++++++++---- include/socgraph.php | 2 +- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/include/discover_poco.php b/include/discover_poco.php index bc5ee5d32..481bedcf9 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -83,19 +83,32 @@ function discover_poco_run(&$argv, &$argc){ function discover_users() { // To-Do: Maybe we should check old contact as well. - $users = q("SELECT `url`, `created`, `updated`, `last_failure`, `last_contact` FROM `gcontact` + $users = q("SELECT `url`, `created`, `updated`, `last_failure`, `last_contact`, `server_url` FROM `gcontact` WHERE `updated` = '0000-00-00 00:00:00' AND `last_contact` = '0000-00-00 00:00:00' AND `last_failure` = '0000-00-00 00:00:00' AND `network` IN ('%s', '%s', '%s') - ORDER BY rand() LIMIT 100", + ORDER BY rand()", dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS)); if (!$users) return; + $checked = 0; + foreach ($users AS $user) { if (poco_do_update($user["created"], $user["updated"], $user["last_failure"], $user["last_contact"])) { - logger('Check user '.$user["url"]); - poco_last_updated($user["url"]); + + if ($user[0]["server_url"] != "") + $server_url = $user[0]["server_url"]; + else + $server_url = poco_detect_server($user["url"]); + + if (poco_check_server($server_url, $gcontacts[0]["network"])) { + logger('Check user '.$user["url"]); + poco_last_updated($user["url"]); + + if (++$checked > 100) + return; + } } } } diff --git a/include/socgraph.php b/include/socgraph.php index 53763626d..04374f3e5 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -440,7 +440,7 @@ function poco_last_updated($profile) { $server_url = poco_detect_server($profile); if ($server_url != "") - if (!poco_check_server($pserver_url, $gcontacts[0]["network"])) + if (!poco_check_server($server_url, $gcontacts[0]["network"])) return false; // noscrape is really fast so we don't cache the call. From a0011ba58e7503a90e643268b63db173e9b1a268 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 26 Jul 2015 17:14:32 +0200 Subject: [PATCH 073/239] Discover users who never are contacted. --- include/discover_poco.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/discover_poco.php b/include/discover_poco.php index 481bedcf9..bd3483307 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -82,11 +82,11 @@ function discover_poco_run(&$argv, &$argc){ } function discover_users() { + logger("Discover users", LOGGER_DEBUG); // To-Do: Maybe we should check old contact as well. $users = q("SELECT `url`, `created`, `updated`, `last_failure`, `last_contact`, `server_url` FROM `gcontact` - WHERE `updated` = '0000-00-00 00:00:00' AND `last_contact` = '0000-00-00 00:00:00' AND - `last_failure` = '0000-00-00 00:00:00' AND `network` IN ('%s', '%s', '%s') - ORDER BY rand()", + WHERE `last_contact` = '0000-00-00 00:00:00' AND `last_failure` = '0000-00-00 00:00:00' AND + `network` IN ('%s', '%s', '%s') ORDER BY rand()", dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS)); if (!$users) From e0955535902b13982f58c063d47ab00a9d4d1db9 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 27 Jul 2015 07:16:06 +0200 Subject: [PATCH 074/239] Mark contacts from not reachable servers as unreachable --- include/discover_poco.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/discover_poco.php b/include/discover_poco.php index bd3483307..687698b44 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -108,7 +108,9 @@ function discover_users() { if (++$checked > 100) return; - } + } else + q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", + dbesc(datetime_convert()), dbesc(normalise_link($user["url"]))); } } } From 4b2c2c480231cdccc40fea0e31aaac5811507ae7 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 27 Jul 2015 08:14:04 +0200 Subject: [PATCH 075/239] Check all contacts that we haven't contacted in a month --- include/discover_poco.php | 7 ++++--- include/socgraph.php | 6 +++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/include/discover_poco.php b/include/discover_poco.php index 687698b44..e93b449b9 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -83,9 +83,10 @@ function discover_poco_run(&$argv, &$argc){ function discover_users() { logger("Discover users", LOGGER_DEBUG); - // To-Do: Maybe we should check old contact as well. + $users = q("SELECT `url`, `created`, `updated`, `last_failure`, `last_contact`, `server_url` FROM `gcontact` - WHERE `last_contact` = '0000-00-00 00:00:00' AND `last_failure` = '0000-00-00 00:00:00' AND + WHERE `last_contact` < UTC_TIMESTAMP - INTERVAL 1 MONTH AND + `last_failure` < UTC_TIMESTAMP - INTERVAL 1 MONTH AND `network` IN ('%s', '%s', '%s') ORDER BY rand()", dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS)); @@ -104,7 +105,7 @@ function discover_users() { if (poco_check_server($server_url, $gcontacts[0]["network"])) { logger('Check user '.$user["url"]); - poco_last_updated($user["url"]); + poco_last_updated($user["url"], true); if (++$checked > 100) return; diff --git a/include/socgraph.php b/include/socgraph.php index 04374f3e5..5671891df 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -425,7 +425,7 @@ function poco_detect_server($profile) { return $server_url; } -function poco_last_updated($profile) { +function poco_last_updated($profile, $force = false) { $gcontacts = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s'", dbesc(normalise_link($profile))); @@ -451,7 +451,7 @@ function poco_last_updated($profile) { if ($server) { $noscraperet = z_fetch_url($server[0]["noscrape"]."/".$gcontacts[0]["nick"]); - if ($noscraperet["success"]) { + if ($noscraperet["success"] AND ($noscraperet["body"] = "")) { $noscrape = json_decode($noscraperet["body"], true); if (($noscrape["name"] != "") AND ($noscrape["name"] != $gcontacts[0]["name"])) @@ -514,7 +514,7 @@ function poco_last_updated($profile) { } // If we only can poll the feed, then we only do this once a while - if (!poco_do_update($gcontacts[0]["created"], $gcontacts[0]["updated"], $gcontacts[0]["last_failure"], $gcontacts[0]["last_contact"])) + if (!$force AND !poco_do_update($gcontacts[0]["created"], $gcontacts[0]["updated"], $gcontacts[0]["last_failure"], $gcontacts[0]["last_contact"])) return $gcontacts[0]["updated"]; $data = probe_url($profile); From ec161d798f426e53e3c1b963624ce6852c4ddd2a Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 28 Jul 2015 08:25:30 +0200 Subject: [PATCH 076/239] The discovery should check all profiles. --- include/discover_poco.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/discover_poco.php b/include/discover_poco.php index e93b449b9..47c0cc2cd 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -96,7 +96,7 @@ function discover_users() { $checked = 0; foreach ($users AS $user) { - if (poco_do_update($user["created"], $user["updated"], $user["last_failure"], $user["last_contact"])) { + //if (poco_do_update($user["created"], $user["updated"], $user["last_failure"], $user["last_contact"])) { if ($user[0]["server_url"] != "") $server_url = $user[0]["server_url"]; @@ -112,7 +112,7 @@ function discover_users() { } else q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc(normalise_link($user["url"]))); - } + //} } } From 9f073f2fd58df9dee38991efbf4e44a66c0fc03a Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 28 Jul 2015 15:28:58 +0200 Subject: [PATCH 077/239] Some correction stuff for old entries in the global contacts --- include/discover_poco.php | 5 +++-- include/socgraph.php | 30 ++++++++++++++++++++++++++++-- 2 files changed, 31 insertions(+), 4 deletions(-) diff --git a/include/discover_poco.php b/include/discover_poco.php index 47c0cc2cd..d4564ae4a 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -87,8 +87,9 @@ function discover_users() { $users = q("SELECT `url`, `created`, `updated`, `last_failure`, `last_contact`, `server_url` FROM `gcontact` WHERE `last_contact` < UTC_TIMESTAMP - INTERVAL 1 MONTH AND `last_failure` < UTC_TIMESTAMP - INTERVAL 1 MONTH AND - `network` IN ('%s', '%s', '%s') ORDER BY rand()", - dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS)); + `network` IN ('%s', '%s', '%s', '%s', '') ORDER BY rand()", + dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), + dbesc(NETWORK_OSTATUS), dbesc(NETWORK_FEED)); if (!$users) return; diff --git a/include/socgraph.php b/include/socgraph.php index 5671891df..5e7cded9c 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -176,7 +176,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca if (!isset($urlparts["scheme"])) return $gcid; - if (in_array($urlparts["host"], array("facebook.com", "twitter.com", "www.twitter-rss.com", + if (in_array($urlparts["host"], array("www.facebook.com", "facebook.com", "twitter.com", "identi.ca", "alpha.app.net"))) return $gcid; @@ -434,15 +434,41 @@ function poco_last_updated($profile, $force = false) { q("UPDATE `gcontact` SET `created` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc(normalise_link($profile))); + $urlparts = parse_url($profile); + if (!isset($urlparts["scheme"])) + return; + + if (in_array($urlparts["host"], array("www.facebook.com", "facebook.com", "twitter.com", + "identi.ca", "alpha.app.net"))) { + q("UPDATE `gcontact` SET `network` = '%s' WHERE `nurl` = '%s'", + dbesc(NETWORK_PHANTOM), dbesc(normalise_link($profile))); + return; + } + if ($gcontacts[0]["server_url"] != "") $server_url = $gcontacts[0]["server_url"]; else $server_url = poco_detect_server($profile); - if ($server_url != "") + if ($server_url != "") { if (!poco_check_server($server_url, $gcontacts[0]["network"])) return false; + q("UPDATE `gcontact` SET `server_url` = '%s' WHERE `nurl` = '%s'", + dbesc($server_url), dbesc(normalise_link($profile))); + } + + if (in_array($gcontacts[0]["network"], array("", NETWORK_FEED))) { + $server = q("SELECT `network` FROM `gserver` WHERE `nurl` = '%s' AND `network` != ''", + dbesc(normalise_link($server_url))); + + if ($server) + q("UPDATE `gcontact` SET `network` = '%s' WHERE `nurl` = '%s'", + dbesc($server[0]["network"]), dbesc(normalise_link($profile))); + else + return; + } + // noscrape is really fast so we don't cache the call. if (($gcontacts[0]["server_url"] != "") AND ($gcontacts[0]["nick"] != "")) { From 70b7de39a751934056ca5744ae4327d94b4a80f9 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Tue, 28 Jul 2015 17:20:40 +0200 Subject: [PATCH 078/239] Upload/Browse popup for files and images Jot buttons to upload images and files show a popup, where the user can select a previously uploaded item o upload a new one --- mod/fbrowser.php | 37 ++++++++---- view/global.css | 18 +++++- view/templates/filebrowser.tpl | 7 ++- view/templates/filebrowser_plain.tpl | 86 ++++++++++++++++++++++++++++ view/templates/jot-header.tpl | 77 +++++++++++++++++-------- view/theme/duepuntozero/style.css | 3 + view/theme/quattro/dark/style.css | 67 ++++++++++++++++++++++ view/theme/quattro/green/style.css | 67 ++++++++++++++++++++++ view/theme/quattro/lilac/style.css | 67 ++++++++++++++++++++++ view/theme/quattro/quattro.less | 25 ++++++++ view/theme/vier/style.css | 6 ++ 11 files changed, 422 insertions(+), 38 deletions(-) create mode 100644 view/templates/filebrowser_plain.tpl diff --git a/mod/fbrowser.php b/mod/fbrowser.php index 075846e50..bf6842faf 100644 --- a/mod/fbrowser.php +++ b/mod/fbrowser.php @@ -18,11 +18,18 @@ function fbrowser_content($a){ if ($a->argc==1) killme(); + $template_file = "filebrowser.tpl"; + $mode = ""; + if (x($_GET,'mode')) { + $template_file = "filebrowser_plain.tpl"; + $mode = "?mode=".$_GET['mode']; + } + //echo "
    "; var_dump($a->argv); killme();	
     	
     	switch($a->argv[1]){
     		case "image":
    -			$path = array( array($a->get_baseurl()."/fbrowser/image/", t("Photos")));
    +			$path = array( array($a->get_baseurl()."/fbrowser/image/".$mode, t("Photos")));
     			$albums = false;
     			$sql_extra = "";
     			$sql_extra2 = " ORDER BY created DESC LIMIT 0, 10";
    @@ -32,8 +39,8 @@ function fbrowser_content($a){
     					intval(local_user())
     				);
     				// anon functions only from 5.3.0... meglio tardi che mai..
    -				function folder1($el){return array(bin2hex($el['album']),$el['album']);}	
    -				$albums = array_map( "folder1" , $albums);
    +				$folder1 = function($el) use ($mode) {return array(bin2hex($el['album']).$mode,$el['album']);};
    +				$albums = array_map( $folder1 , $albums);
     				
     			}
     			
    @@ -42,7 +49,7 @@ function fbrowser_content($a){
     				$album = hex2bin($a->argv[2]);
     				$sql_extra = sprintf("AND `album` = '%s' ",dbesc($album));
     				$sql_extra2 = "";
    -				$path[]=array($a->get_baseurl()."/fbrowser/image/".$a->argv[2]."/", $album);
    +				$path[]=array($a->get_baseurl()."/fbrowser/image/".$a->argv[2]."/".$mode, $album);
     			}
     				
     			$r = q("SELECT `resource-id`, `id`, `filename`, type, min(`scale`) AS `hiq`,max(`scale`) AS `loq`, `desc`  
    @@ -71,14 +78,16 @@ function fbrowser_content($a){
     			}
     			$files = array_map("files1", $r);
     			
    -			$tpl = get_markup_template("filebrowser.tpl");
    -			echo replace_macros($tpl, array(
    +			$tpl = get_markup_template($template_file);
    +			
    +			$o =  replace_macros($tpl, array(
     				'$type' => 'image',
     				'$baseurl' => $a->get_baseurl(),
     				'$path' => $path,
     				'$folders' => $albums,
     				'$files' =>$files,
     				'$cancel' => t('Cancel'),
    +				'$nickname' => $a->user['nickname'],
     			));
     				
     				
    @@ -106,14 +115,15 @@ function fbrowser_content($a){
     				//echo "
    "; var_dump($files); killme();
     			
     							
    -				$tpl = get_markup_template("filebrowser.tpl");
    -				echo replace_macros($tpl, array(
    +				$tpl = get_markup_template($template_file);
    +				$o = replace_macros($tpl, array(
     					'$type' => 'file',
     					'$baseurl' => $a->get_baseurl(),
    -					'$path' => array( array($a->get_baseurl()."/fbrowser/image/", t("Files")) ),
    +					'$path' => array( array($a->get_baseurl()."/fbrowser/file/", t("Files")) ),
     					'$folders' => false,
     					'$files' =>$files,
     					'$cancel' => t('Cancel'),
    +					'$nickname' => $a->user['nickname'],
     				));
     				
     			}
    @@ -121,7 +131,12 @@ function fbrowser_content($a){
     			break;
     	}
     	
    -
    -	killme();
    +	if (x($_GET,'mode')) {
    +		return $o;
    +	} else {
    +		echo $o;
    +		killme();
    +	}
    +	
     	
     }
    diff --git a/view/global.css b/view/global.css
    index 9bcd30229..dd41b9935 100644
    --- a/view/global.css
    +++ b/view/global.css
    @@ -176,4 +176,20 @@ span.oembed, h4 {
     }
     
     /* notifications unseen */
    -.notify-unseen { background-color: #cceeFF; }
    \ No newline at end of file
    +.notify-unseen { background-color: #cceeFF; }
    +
    +
    +/* plain text editor upload/select popup */
    +
    +.fbrowser .path a { padding: 5px; }
    +.fbrowser .path a:before { content: "/"; padding-right: 5px;}
    +.fbrowser .folders ul { list-style-type: none; padding-left: 10px;}
    +.fbrowser .list { height: auto; overflow-y: hidden; margin: 10px 0px; }
    +.fbrowser.image .photo-album-image-wrapper { float: left; }
    +.fbrowser.image a img { height: 48px; }
    +.fbrowser.image a p { display: none;}
    +.fbrowser.file .photo-album-image-wrapper { float:none;  white-space: nowrap; }
    +.fbrowser.file img { display: inline; }
    +.fbrowser.file p  { display: inline; white-space: nowrap; }
    +
    +.fbrowser .upload { clear: both; padding-top: 1em;}
    \ No newline at end of file
    diff --git a/view/templates/filebrowser.tpl b/view/templates/filebrowser.tpl
    index b207277a7..2122e27fc 100644
    --- a/view/templates/filebrowser.tpl
    +++ b/view/templates/filebrowser.tpl
    @@ -1,6 +1,9 @@
    -
     
     
    +